From: Grant Grundler <grundler@parisc-linux.org>
To: parisc-linux@lists.parisc-linux.org
Subject: [parisc-linux] byte swapping redux
Date: Sun, 29 Jun 2003 12:14:15 -0600 [thread overview]
Message-ID: <20030629181415.GA21094@dsl2.external.hp.com> (raw)
Hi all,
Can someone explain why include/asm-parisc/byteorder.h uses the following?
#if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
# define __BYTEORDER_HAS_U64__
# define __SWAB_64_THRU_32__
#endif
vs include/asm-sparc64/byeorder.h:
#define __BYTEORDER_HAS_U64__
I'm pretty sure we don't want __SWAB_64_THRU_32__ defined.
PA-RISC version of ___arch__swab64() is appropriately defined for
both 32 and 64-bit compiles.
For reference include/linux/byteorder/swab.h says:
#ifdef __BYTEORDER_HAS_U64__
static __inline__ __const__ __u64 __fswab64(__u64 x)
{
# ifdef __SWAB_64_THRU_32__
__u32 h = x >> 32;
__u32 l = x & ((1ULL<<32)-1);
return (((__u64)__swab32(l)) << 32) |
((__u64)(__swab32(h)));
# else
return __arch__swab64(x);
# endif
}
...
thanks,
grant
next reply other threads:[~2003-06-29 18:14 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-29 18:14 Grant Grundler [this message]
2003-06-29 18:33 ` [parisc-linux] byte swapping redux Grant Grundler
2003-06-29 18:41 ` Matthew Wilcox
2003-06-29 21:33 ` Grant Grundler
2003-06-30 10:19 ` Joel Soete
2003-06-30 16:39 ` Grant Grundler
2003-07-01 7:29 ` Joel Soete
[not found] <3ED70CF10000BCAA@ocpmta2.freegates.net>
2003-06-30 16:36 ` Grant Grundler
2003-07-01 16:33 ` Joel Soete
2003-07-01 18:13 ` Grant Grundler
2003-07-02 15:10 ` Joel Soete
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=20030629181415.GA21094@dsl2.external.hp.com \
--to=grundler@parisc-linux.org \
--cc=parisc-linux@lists.parisc-linux.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.