public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 16/22] advansys: Eliminate prototypes
       [not found] ` <11893498072821-git-send-email-matthew@wil.cx>
@ 2007-09-09 15:29   ` Jeff Garzik
  2007-09-09 17:48     ` Matthew Wilcox
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff Garzik @ 2007-09-09 15:29 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-scsi, Linux Kernel Mailing List

Matthew Wilcox wrote:
> Rearrange a lot of the functions in the file to get rid of all the forward
> declarations.

What thoughts, if any, have been given to post-patch code arrangement, 
besides eliminating prototypes?

This always struck me as a counterproductive exercise when taken by 
itself.  Sure, prototypes were eliminated, but was code packed together 
in an efficient way afterwards?  Ideally hot path code should be close 
together, ditto for various other things like error handling code.

Without further explanation or details about your post-patch analysis, 
how do we even know the new code arrangement doesn't negatively impact 
i-cache overall?

	Jeff



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH 16/22] advansys: Eliminate prototypes
  2007-09-09 15:29   ` [PATCH 16/22] advansys: Eliminate prototypes Jeff Garzik
@ 2007-09-09 17:48     ` Matthew Wilcox
  0 siblings, 0 replies; 2+ messages in thread
From: Matthew Wilcox @ 2007-09-09 17:48 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-scsi, Linux Kernel Mailing List

On Sun, Sep 09, 2007 at 11:29:34AM -0400, Jeff Garzik wrote:
> What thoughts, if any, have been given to post-patch code arrangement, 
> besides eliminating prototypes?
> This always struck me as a counterproductive exercise when taken by 
> itself.

Eliminating prototypes saves me from an extra go round of the edit-compile
testcycle when I change the signature of a function.  It probably doesn't
matter to you, but it adds a small amount of annoyance to my day.

> Sure, prototypes were eliminated, but was code packed together 
> in an efficient way afterwards?  Ideally hot path code should be close 
> together, ditto for various other things like error handling code.

I tried to place functions close together that seemed like they were
called together and called from each other.   It's hard to know,
of course, because GCC will make its own decisions about inlining,
for example.  At the end of the day, this is an NP problem.  I remmber
Nat writing grope and using simulated annealing to solve the problem.

> Without further explanation or details about your post-patch analysis, 
> how do we even know the new code arrangement doesn't negatively impact 
> i-cache overall?

We don't, but the new layout is more likely to be good than bad, given
how I did the rearrangement (delete prototypes, try to compile.  Move
called function to before its first caller.  Repeat).  Plus, with all
the other changes I'm making, there's a serious reduction in driver
size.  I haven't compared i-cache sizes specifically, but I'm mostly
removing code, so it should be better.

-- 
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours.  We can't possibly take such
a retrograde step."

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-09-09 17:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20070909145358.GG6809@parisc-linux.org>
     [not found] ` <11893498072821-git-send-email-matthew@wil.cx>
2007-09-09 15:29   ` [PATCH 16/22] advansys: Eliminate prototypes Jeff Garzik
2007-09-09 17:48     ` Matthew Wilcox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox