public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jeff Garzik <jgarzik@mandrakesoft.com>
To: Roman Zippel <zippel@linux-m68k.org>
Cc: "David S. Miller" <davem@redhat.com>,
	davidm@hpl.hp.com, anton@samba.org, linux-kernel@vger.kernel.org
Subject: Re: thread_info implementation
Date: Tue, 12 Feb 2002 04:30:43 -0500	[thread overview]
Message-ID: <3C68E0C3.543A1AD6@mandrakesoft.com> (raw)
In-Reply-To: <Pine.LNX.4.33.0202120947270.11317-100000@serv>

Roman Zippel wrote:
> 
> Hi,
> 
> On Mon, 11 Feb 2002, David S. Miller wrote:
> 
> > It keeps your platform the same, and it does help other platforms.
> > It is the nature of any abstraction change we make in the kernel
> > that platforms have to deal with.
> 
> Of what "abstraction change" are you talking about?
> Any change should usually help most architectures and so far the
> thread_info change has only be done a few.
> 
> > 2) pointer dereference causes performance problems
> >
> >    ummm no, not really, go test it for yourself if you don't
> >    believe me
> >
> > This only leaves "I don't want to do the conversion because it has
> > no benefit to ia64."  Well, it doesn't hurt your platform either,
> > so just cope :-)
> 
> That's simply not true. An extra load might be cheap, maybe on sparc it's
> even free, but on most architectures it has a cost. Additionally every
> access to current requires an extra load, so every function which uses
> current will be larger, all embedded targets will thank you for that.
> Where is the problem to allow these two implementations:
> 1.
> #define current_thread_info() asm(...)
> #define current current_thread_info()->task
> 2.
> #define current asm(...)
> #define current_thread_info() &current->thread_info

...or number 3, do a conversion to 2.5.4 thread_info then embed the task
structure inside struct thread_info, like what was just done with VFS
inodes.  (embedding the general struct in the arch-specific struct would
make sense to me, whereas I can definitely see how embedding the
arch-specific struct in the general struct would be annoying)

	Jeff



-- 
Jeff Garzik      | "I went through my candy like hot oatmeal
Building 1024    |  through an internally-buttered weasel."
MandrakeSoft     |             - goats.com

  reply	other threads:[~2002-02-12  9:31 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-02-11 21:08 thread_info implementation Roman Zippel
2002-02-11 20:50 ` Anton Blanchard
2002-02-12  0:46   ` David S. Miller
2002-02-12  0:57     ` Roman Zippel
2002-02-12  0:57       ` David S. Miller
2002-02-12  1:10         ` Roman Zippel
2002-02-12 13:01         ` Bjorn Wesen
2002-02-12 13:49           ` David S. Miller
2002-02-12  1:01     ` David Mosberger
2002-02-12  1:07       ` David S. Miller
2002-02-12  1:21         ` David Mosberger
2002-02-12  1:32           ` David S. Miller
2002-02-12  1:36             ` David Mosberger
2002-02-12  1:41               ` David S. Miller
2002-02-12  1:53                 ` David Mosberger
2002-02-12  2:22                   ` David S. Miller
2002-02-12  2:30                     ` David Mosberger
2002-02-12  2:36                       ` David S. Miller
2002-02-12  2:46                         ` David Mosberger
2002-02-12  2:51                           ` David S. Miller
2002-02-12  3:01                             ` David Mosberger
2002-02-12  3:04                               ` David S. Miller
2002-02-12  3:18                                 ` David Mosberger
2002-02-12  3:23                                   ` David S. Miller
2002-02-12  3:32                                     ` David Mosberger
2002-02-12  3:42                                       ` David S. Miller
2002-02-12  4:16                                         ` David Mosberger
2002-02-12  4:21                                           ` David S. Miller
2002-02-12  4:33                                             ` David Mosberger
2002-02-12  5:26                                       ` Richard Henderson
2002-02-12  5:32                                         ` David S. Miller
2002-02-12  5:50                                           ` David Mosberger
2002-02-12  5:57                                           ` Richard Henderson
2002-02-13 11:18                                         ` Anton Blanchard
2002-02-12 17:14                                 ` Pavel Machek
2002-02-13  0:46                                   ` David S. Miller
2002-02-13  1:30                                     ` Roman Zippel
2002-02-12  9:12                             ` Roman Zippel
2002-02-12  9:30                               ` Jeff Garzik [this message]
2002-02-12 10:14                                 ` Roman Zippel
2002-02-12 13:21                             ` David Howells
2002-02-12 19:15                               ` David Mosberger
2002-02-12 19:38                                 ` David Howells
2002-02-12  2:49                       ` Davide Libenzi
2002-02-12  0:01 ` Roman Zippel
2002-02-12  0:10   ` David Howells
2002-02-12  0:22     ` Roman Zippel
  -- strict thread matches above, loose matches on Subject: below --
2002-02-11 17:39 Arkadiy Chapkis - Arc
2002-02-11 20:19 ` Robert Love
2002-02-11 20:42   ` Luigi Genoni
2002-02-11 20:48     ` Robert Love
2002-02-11 23:37       ` Jeff Garzik
2002-02-11 23:49         ` Richard Henderson
2002-02-12  0:09           ` Dave Jones
2002-02-12  0:20             ` Jeff Garzik
2002-02-12  0:24               ` Dave Jones

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=3C68E0C3.543A1AD6@mandrakesoft.com \
    --to=jgarzik@mandrakesoft.com \
    --cc=anton@samba.org \
    --cc=davem@redhat.com \
    --cc=davidm@hpl.hp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=zippel@linux-m68k.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