From: Arnd Bergmann <arnd@arndb.de>
To: Sam Ravnborg <sam@ravnborg.org>
Cc: liqin.chen@sunplusct.com, linux-arch@vger.kernel.org,
linux-kernel@vger.kernel.org, torvalds@linux-foundation.org
Subject: Re: [PATCH 5/13] score - New architecure port to SunplusCT S+CORE processor
Date: Fri, 27 Mar 2009 21:53:05 +0100 [thread overview]
Message-ID: <200903272153.05622.arnd@arndb.de> (raw)
In-Reply-To: <20090327202614.GA22054@uranus.ravnborg.org>
On Friday 27 March 2009, Sam Ravnborg wrote:
> Thats strange indeed.
> This structure will then change layout depending on the target bit-size
> of the compiler.
>
> From x86:
> #ifdef __i386__
> unsigned long __unused1;
> #endif
> __kernel_time_t shm_dtime; /* last detach time */
> #ifdef __i386__
> unsigned long __unused2;
> #endif
>
> long is 64 bit in one case and 32 bit in another case.
> I'm confused..
The idea here is to have the same layout for both by adding
long (32 bit) padding between 32 bit members on i386 and not
having the padding along the __kernel_time_t (which is also
long) members on x86_64. The problem is that some architectures
copying this didn't understand the part about the padding,
while others (big-endian ones) put the padding in the wrong
place by copying from i386.
By now, most of the existing architectures copied the i386
file, which is at least consistent and we've learned to
deal with it. I recommend just using this one as the
asm-generic version and letting all new archs fall back
to that.
> I would expect it to be safer to be bit-size neutral in our
> exported headers.
> But the score people know there userlend best so let them decide.
> Still they should audit all their exported headers.
> They cannot assume it was right because they copied them from
> somewhere.
Yes, I agree. Hopefully I'll manage to get my patches into
shape to post the generic versions in the next days so we can use
them on microblaze and score as well as all future versions.
Arnd <><
next prev parent reply other threads:[~2009-03-27 20:53 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-27 1:37 [PATCH 5/13] score - New architecure port to SunplusCT S+CORE processor liqin.chen
2009-03-27 18:40 ` Sam Ravnborg
2009-03-27 19:19 ` Arnd Bergmann
2009-03-27 20:26 ` Sam Ravnborg
2009-03-27 20:53 ` Arnd Bergmann [this message]
2009-03-27 21:22 ` Sam Ravnborg
2009-03-29 13:46 ` Michal Simek
2009-03-30 2:25 ` liqin.chen
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=200903272153.05622.arnd@arndb.de \
--to=arnd@arndb.de \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=liqin.chen@sunplusct.com \
--cc=sam@ravnborg.org \
--cc=torvalds@linux-foundation.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