Re: bit field endian vs endian

Richard B. Johnson (root@chaos.analogic.com)
Thu, 30 Aug 2001 08:27:17 -0400 (EDT)


On Thu, 30 Aug 2001, Do-Han Kim wrote:

> Hello,
> In the linux kernel source tcp.h
> bit field endian is appeared.
> if the machine is the big endian machine, highest bit is alligned in the
> lowest location in byte?
>
> Thank you.

Big endian:

Given: unsigned long = 0xdeadface;
Low memory <--- ---> High memory

It looks in memory, just like you typed it with your editor.
BUT... The high vs. low bits of the individual bytes are not
changed. In other words, 0xde, the high byte, still has 'd'
as the high nibble and 'e' as the low nibble. Therefore the
MSB of a longword, in big endian format, is truly at the lowest
memory location occupied by that longword.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.1 on an i686 machine (799.53 BogoMips).

I was going to compile a list of innovations that could be
attributed to Microsoft. Once I realized that Ctrl-Alt-Del
was handled in the BIOS, I found that there aren't any.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/