| To: | Eric Sandeen <sandeen@xxxxxxxxxxx> |
|---|---|
| Subject: | Re: likely and unlikely was: Re: [PATCH] split xfs_ioc_xattr |
| From: | David Chinner <dgc@xxxxxxx> |
| Date: | Mon, 21 Apr 2008 10:33:43 +1000 |
| Cc: | Timothy Shimmin <tes@xxxxxxx>, Andi Kleen <andi@xxxxxxxxxxxxxx>, David Chinner <dgc@xxxxxxx>, Niv Sardi <xaiki@xxxxxxxxxxxxx>, Christoph Hellwig <hch@xxxxxx>, xfs@xxxxxxxxxxx |
| In-reply-to: | <4808AAA5.1060201@xxxxxxxxxxx> |
| References: | <20080319204014.GA23644@xxxxxx> <ncciqylf7q0.fsf@xxxxxxx> <20080414032940.GA10579@xxxxxx> <ncclk3ejwam.fsf@xxxxxxx> <20080416063712.GN108924158@xxxxxxx> <4805A589.7080906@xxxxxxx> <87ve2i5kbs.fsf@xxxxxxxxxxxxxxxxx> <4808488A.7010204@xxxxxxx> <4808AAA5.1060201@xxxxxxxxxxx> |
| Sender: | xfs-bounce@xxxxxxxxxxx |
| User-agent: | Mutt/1.4.2.1i |
On Fri, Apr 18, 2008 at 09:05:25AM -0500, Eric Sandeen wrote:
> ISTR that the dir2 code on Irix had tons of compiler pragmas for likely
> and unlikely paths, and that it actually was well-profiled and tested.
> Did that ever get translated into Linux hints?
The Irix code (#pragma mips_frequency_hint [FREQUENT|NEVER|INIT])
only controllered physical placement of code, it never issued
branch hints. i.e. a "never" block gets moved out of line,
while a "frequent" block is left inline. Realistically, the way
this is used in the Irix dir2 code is completely useless - code like
this:
if (namelen >= MAXNAMELEN) {
#pragma mips_frequency_hint NEVER
return XFS_ERROR(EINVAL);
}
if (rval = xfs_dir_ino_validate(tp->t_mountp, inum)) {
#pragma mips_frequency_hint NEVER
return rval;
}
Never needed those hints in the first place, it's damn messy, and
the places where it might actually be useful it doesn't get used.
I'd prefer to avoid the hints unless we really have a performance
critical path that we want to have as much straight line code as
possible. That will require profiling to get right....
Cheers,
Dave.
--
Dave Chinner
Principal Engineer
SGI Australian Software Group
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: review: add a splice command to xfs_io, Nathan Scott |
|---|---|
| Next by Date: | Re: [GIT PULL] XFS update for 2.6.26-rc1, Lachlan McIlroy |
| Previous by Thread: | Re: likely and unlikely was: Re: [PATCH] split xfs_ioc_xattr, Eric Sandeen |
| Next by Thread: | Re: likely and unlikely was: Re: [PATCH] split xfs_ioc_xattr, Andi Kleen |
| Indexes: | [Date] [Thread] [Top] [All Lists] |