linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Li YanBo" <dreamfly281@gmail.com>
To: Arjan van de Ven <arjan@infradead.org>
Cc: linux-c-programming@vger.kernel.org, kernelnewbies@nl.linux.org
Subject: Re: Confuse with big endian bitwise field
Date: Thu, 28 Jun 2007 22:59:47 +0800	[thread overview]
Message-ID: <1197ff4c0706280759h3eb57b90k87fd985172695a24@mail.gmail.com> (raw)
In-Reply-To: <1183041556.14676.13.camel@laptopd505.fenrus.org>

On 6/28/07, Arjan van de Ven <arjan@infradead.org> wrote:
> On Tue, 2007-06-26 at 18:20 +0800, Li YanBo wrote:
> > hi all,
> >
> > I am try  to define a hardware specific struct, it is like below:
> >
> > struct xxx {
> >         __be32 pdu_cnt:6;
> >         __be32 y:3;
> >         __be32 wep_key:2;
> >         __be32 uses_wep_key:1;
> >         __be32 keep_alive:1;
> >         __be32 buff_tail_addr:19;
> >
> >         __be32 cts_11g:1;
> >         __be32 rts_11g:1;
> >         __be32 x:2;
> >         __be32 frag_size:12;
> >         __be32 payload_len:12;
> >         __be32 frag_num:4;
> > }
>
> this isn't safe if you want to mimic hardware layout; the order of the
> bits in the struct is different for little endian and big endian
> machines...
>

Yes, I realize it now, and maybe shifting bits is a more portability solution.

> Kristof wrote:
>You'll need to use cpu_to_be32, to make sure the values you assign
arebig endian too. >You'll need to do this for every field larger than
8 bits (as endianness is not an issue if >there's only one byte).

I have done many tests and it seemed by using cpu_to_be32 to the field
larger than 8 bits is not a correct solution. it will generate wrong
data too. Anywhere the switch between Be to Le or from Le to Be is a
complex thing, because it is not just the order of bytes but also the
order of bits, I found a good article to describe this problem
"http://www.linuxjournal.com/article/6788"

Thank for all your suggestion.

BR

LiYanBo

  reply	other threads:[~2007-06-28 14:59 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-26 10:20 Confuse with big endian bitwise field Li YanBo
2007-06-26 18:09 ` Kristof Provost
2007-06-28 14:39 ` Arjan van de Ven
2007-06-28 14:59   ` Li YanBo [this message]
2007-06-28 15:25   ` Ranjan Sinha
2007-07-03  4:12     ` Li YanBo
2007-07-10  3:58       ` Li YanBo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1197ff4c0706280759h3eb57b90k87fd985172695a24@mail.gmail.com \
    --to=dreamfly281@gmail.com \
    --cc=arjan@infradead.org \
    --cc=kernelnewbies@nl.linux.org \
    --cc=linux-c-programming@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).