Re: [Libhugetlbfs-devel] [PATCH 2/7] Audit verbosity of messages in elflink.c (V2)

2008-11-18 Thread Eric B Munson
On Tue, 18 Nov 2008, Adam Litke wrote: > Changes since V1: > - When find_or_create_share_path() fails, segment remapping is disabled. >Print a message to make this clear to the user. > > Signed-off-by: Adam Litke <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital

Re: [Libhugetlbfs-devel] [PATCH 2/7] Audit verbosity of messages in elflink.c

2008-11-17 Thread Mel Gorman
On Mon, Nov 17, 2008 at 12:48:58PM -0600, Adam Litke wrote: > On Mon, 2008-11-17 at 17:23 +, Mel Gorman wrote: > > > @@ -276,7 +276,7 @@ static int find_or_create_share_path(long page_size) > > > > > > ret = mkdir(share_readonly_path, 0700); > > > if ((ret != 0) && (errno != EEXIST)) { >

Re: [Libhugetlbfs-devel] [PATCH 2/7] Audit verbosity of messages in elflink.c

2008-11-17 Thread Adam Litke
On Mon, 2008-11-17 at 17:23 +, Mel Gorman wrote: > > @@ -276,7 +276,7 @@ static int find_or_create_share_path(long page_size) > > > > ret = mkdir(share_readonly_path, 0700); > > if ((ret != 0) && (errno != EEXIST)) { > > - ERROR("Error creating share directory %s\n", > > +

Re: [Libhugetlbfs-devel] [PATCH 2/7] Audit verbosity of messages in elflink.c

2008-11-17 Thread Mel Gorman
On Fri, Nov 14, 2008 at 09:00:38PM +, Adam Litke wrote: > > --- > > elflink.c | 101 > - > 1 files changed, 53 insertions(+), 48 deletions(-) > > diff --git a/elflink.c b/elflink.c > index 63229f6..e38e796 100644 > --- a/elflink.