Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-23 Thread Nishanth Aravamudan
On 23.01.2007 [13:47:07 -0600], Adam Litke wrote: > On Tue, 2007-01-23 at 12:47 -0600, Adam Litke wrote: > > Here ye' here ye' > Get your S-o-b lines here! > > Signed-off-by: Adam Litke <[EMAIL PROTECTED]> Applied, thanks, Nish -- Nishanth Aravamudan <[EMAIL PROTECTED]> IBM Linux Technology Cen

Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-23 Thread Adam Litke
On Tue, 2007-01-23 at 12:47 -0600, Adam Litke wrote: > Here ye' here ye' Get your S-o-b lines here! Signed-off-by: Adam Litke <[EMAIL PROTECTED]> > diff --git a/elflink.c b/elflink.c > index 6b260c9..6316563 100644 > --- a/elflink.c > +++ b/elflink.c > @@ -464,6 +464,32 @@ static int find_numsyms

Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-23 Thread Adam Litke
On Tue, 2007-01-23 at 08:20 -0800, Nishanth Aravamudan wrote: > > Sure. I am fine with that too. Want to handle it directly or shall I > > spin another patch? > > If you could spin one more, I'd appreciate it. Here ye' here ye' diff --git a/elflink.c b/elflink.c index 6b260c9..6316563 100644 -

Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-23 Thread Nishanth Aravamudan
On 23.01.2007 [09:57:01 -0600], Adam Litke wrote: > On Mon, 2007-01-22 at 16:20 -0800, Nishanth Aravamudan wrote: > > On 22.01.2007 [17:08:34 -0600], Adam Litke wrote: > > > The current extracopysize detection algorithm does not include weak > > > objects in the copy window. These are symbols mark

Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-23 Thread Adam Litke
On Mon, 2007-01-22 at 16:20 -0800, Nishanth Aravamudan wrote: > On 22.01.2007 [17:08:34 -0600], Adam Litke wrote: > > The current extracopysize detection algorithm does not include weak > > objects in the copy window. These are symbols marked with 'W' and 'V' > > in nm output. These can in fact b

Re: [Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-22 Thread Nishanth Aravamudan
On 22.01.2007 [17:08:34 -0600], Adam Litke wrote: > The current extracopysize detection algorithm does not include weak > objects in the copy window. These are symbols marked with 'W' and 'V' > in nm output. These can in fact be initialized global variables (just > like STB_GLOBAL symbols) and sh

[Libhugetlbfs-devel] [PATCH] Fix extracopsize detection algorithm

2007-01-22 Thread Adam Litke
The current extracopysize detection algorithm does not include weak objects in the copy window. These are symbols marked with 'W' and 'V' in nm output. These can in fact be initialized global variables (just like STB_GLOBAL symbols) and should be included in the extracopy window. The following p