[Libhugetlbfs-devel] [PATCH 1/1] hugeedit: report any unparsed options

2008-10-09 Thread Andy Whitcroft
Ensure we report any unparsed options that getopts_long recognises but which have no implementation. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugeedit.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/hugeedit.c b/hugeedit.c index 2785200..17b052c 100644 -

Re: [Libhugetlbfs-devel] [PATCH 3/3] hugectl: suppress false warning at the end of all arguments

2008-10-09 Thread Andy Whitcroft
On Thu, Oct 09, 2008 at 09:05:08AM -0500, Adam Litke wrote: > On Thu, 2008-10-09 at 11:47 +0100, Andy Whitcroft wrote: > > When we hit the end of the arguments we will get a valid -1 return > > from getopts_long. We should suppress this to prevent confusion. > > Does this affect hugeedit as well?

[Libhugetlbfs-devel] [PATCH 11/16] hpoolcfg: allow pools to be resized

2008-10-09 Thread Andy Whitcroft
Allow resize of specific pools via the --pool-minimum-adjust and --pool-maximum-adjust commands. The first affects the number of static pages in the pool, the second affects the number of overcommit pages for the pool. These are exposed as lower and upper bound on the pool to match the display in

[Libhugetlbfs-devel] [PATCH 12/16] hpoolcfg: expose the available and possible page sizes

2008-10-09 Thread Andy Whitcroft
Expose possible page sizes. Expose the page sizes which are available (have pages assigned to them) via --page-sizes. Expose all possible page sizes (supported by the processor) via --page-sizes-all. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hpoolcfg.c | 37 +++

[Libhugetlbfs-devel] [PATCH 10/16] hugeutils: export the pool counter update interface

2008-10-09 Thread Andy Whitcroft
Rename and export the pool counter update interface. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugetlbfs.h |2 ++ hugeutils.c | 28 ++-- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/hugetlbfs.h b/hugetlbfs.h index 2103515..fbff43b 1006

[Libhugetlbfs-devel] [PATCH 14/16] lib: add a getpagesizes call returning all page sizes

2008-10-09 Thread Andy Whitcroft
Utilise the new gethugepagesizes call to implement getpagesizes() call returning all page sizes on the system, both base page sizes and all hugepage sizes. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugetlbfs.h |1 + hugeutils.c | 27 ++ test

[Libhugetlbfs-devel] [PATCH 13/16] lib: Add gethugepagesizes() API call

2008-10-09 Thread Andy Whitcroft
From: Adam Litke <[EMAIL PROTECTED]> Now that libhugetlbfs supports multiple huge page sizes, it would be nice to have a way to discover the huge page sizes that are supported by the system. This new call should adhere to the semantics established by precedent implementations (see http://docs.sun.

[Libhugetlbfs-devel] [PATCH 15/16] hugeutils: gethugepagesizes -- ensure we ignore unrepresentable page sizes

2008-10-09 Thread Andy Whitcroft
When calling gethugepagesizes in a 32 bit environment it is possible that some page sizeds will not be representable in the result. Ensure we detect and elide these. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugeutils.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) d

[Libhugetlbfs-devel] [PATCH 16/16] pagesize: add utility to list page sizes

2008-10-09 Thread Andy Whitcroft
Add a new utility to list page sizes supported on the system. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- Makefile |8 +++- pagesize.c | 143 2 files changed, 150 insertions(+), 1 deletions(-) create mode 100644 pagesi

[Libhugetlbfs-devel] [PATCH 04/16] hugeutils: size_to_smaller_unit should allow 2GB pages

2008-10-09 Thread Andy Whitcroft
When page sizes become very large they may overflow a long as we convert them from giga-, mega-, or kilo-bytes to bytes. When doing the conversion if we hit an error we return LONG_MAX. On 32bit this is 2GB is is potentially a sensible page size for a 32bit application. As page size is a long we

[Libhugetlbfs-devel] [PATCH 09/16] hpoolcfg: expose the pool configuration

2008-10-09 Thread Andy Whitcroft
Expose pool allocations for each of the available page sizes via the --pool-list command. Exposes the miniumum and maximimum values indicating the dedicated pages and the size of the overcommit for all supported page sizes. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hpoolcfg.c

[Libhugetlbfs-devel] [PATCH 06/16] build: allow utilities to consist of more than one file

2008-10-09 Thread Andy Whitcroft
Allow a utility control which source files it is made up of. This allows us to reuse some of the utility functions from within libhugetlbfs directly without linking against the library. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- Makefile | 14 -- 1 files changed, 12 inse

[Libhugetlbfs-devel] [PATCH 05/16] hugeutils: pull out common filenames

2008-10-09 Thread Andy Whitcroft
Pull out all the common filenames and prefixes to a common set of defines. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugeutils.c | 16 ++-- 1 files changed, 10 insertions(+), 6 deletions(-) diff --git a/hugeutils.c b/hugeutils.c index 7b10f60..d6c54a2 100644 --- a/hugeu

[Libhugetlbfs-devel] [RFC PATCH 00/16] V2 hpoolcfg framework

2008-10-09 Thread Andy Whitcroft
[This version includes a lot of feedback from Mel and Adam. If you think I've ignored your feedback please assume I missed it somewhere as there really was a lot of good feedback in there.] Currently the admin has to understand how to configure pools directly. They must know how to find the curre

[Libhugetlbfs-devel] [PATCH 07/16] debug: allow utilities to share the common debug reporter

2008-10-09 Thread Andy Whitcroft
Where utilities are going to use routines out of the library directly it is helpful to share the debugging routines whilst maintaining the identity of the message producer. Allow the utilities to override the name shown. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> Acked-by: Adam Litke <[EMA

[Libhugetlbfs-devel] [PATCH 03/16] Do not allow zero as an explicit page size

2008-10-09 Thread Andy Whitcroft
From: Adam Litke <[EMAIL PROTECTED]> As originally written, the functions hugetlbfs_find_path_for_size() and hugetlbfs_unlinked_fd_for_size() accepted 0 as a valid page size. A page size of zero was interpreted to mean the default size (as defined by libhugetlbfs, not the kernel). This behavior

[Libhugetlbfs-devel] [PATCH 08/16] hpoolcfg: initial basic framework

2008-10-09 Thread Andy Whitcroft
Add a very basic framework for hpoolcfg, the administrator pool configuration helper. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- Makefile |8 - hpoolcfg.c | 95 2 files changed, 102 insertions(+), 1 deletions(-)

[Libhugetlbfs-devel] [PATCH 01/16] utils: Make pool counter manipulation code part of the library API

2008-10-09 Thread Andy Whitcroft
From: Adam Litke <[EMAIL PROTECTED]> The need to set and get pool counters for multiple huge page sizes is about to extend beyond just the libhugetlbfs tests. Move the counter code into hugeutils.c and make the top-level functions part of the libhugetlbfs pool and mount configuration API. This i

[Libhugetlbfs-devel] [PATCH 02/16] shm: Shared memory always uses the meminfo page size

2008-10-09 Thread Andy Whitcroft
From: Adam Litke <[EMAIL PROTECTED]> This patch fixes two intertwined issues: When the SHM_HUGETLB flag is passed to shmget(), the system default huge page size is used to back the shared memory segment. Unlike with mmap() there is not yet a way to use an alternate huge page size for shared memo

Re: [Libhugetlbfs-devel] [PATCH 12/15] hpoolcfg: expose the pool configuration

2008-10-09 Thread Mel Gorman
On (09/10/08 19:19), Andy Whitcroft didst pronounce: > On Mon, Oct 06, 2008 at 03:57:08PM +0100, Mel Gorman wrote: > > On (03/10/08 18:37), Andy Whitcroft didst pronounce: > > > Expose pool allocations for each of the available page sizes via the > > > --pool-list command. Exposes the miniumum and

Re: [Libhugetlbfs-devel] [PATCH 13/15] hpoolcfg: expose the available and possible page sizes

2008-10-09 Thread Andy Whitcroft
On Tue, Oct 07, 2008 at 03:08:32PM -0500, Adam Litke wrote: > On Fri, 2008-10-03 at 18:37 +0100, Andy Whitcroft wrote: > > Expose possible page sizes. Expose the page sizes which are available > > (have pages assigned to them) via --page-sizes. Expose all possible page > > sizes (supported by the

Re: [Libhugetlbfs-devel] [PATCH 13/15] hpoolcfg: expose the available and possible page sizes

2008-10-09 Thread Andy Whitcroft
On Mon, Oct 06, 2008 at 04:03:35PM +0100, Mel Gorman wrote: > On (03/10/08 18:37), Andy Whitcroft didst pronounce: > > Expose possible page sizes. Expose the page sizes which are available > > (have pages assigned to them) via --page-sizes. Expose all possible page > > sizes (supported by the pro

Re: [Libhugetlbfs-devel] [PATCH 12/15] hpoolcfg: expose the pool configuration

2008-10-09 Thread Andy Whitcroft
On Tue, Oct 07, 2008 at 03:03:07PM -0500, Adam Litke wrote: > On Fri, 2008-10-03 at 18:37 +0100, Andy Whitcroft wrote: > > @@ -446,6 +447,91 @@ void __lh_setup_mounts(void) > > debug_show_page_sizes(); > > } > > > > +#define MAX_POOLS 32 > > +int __lh_hpool_sizes(struct hpage_pool *po

Re: [Libhugetlbfs-devel] [PATCH 12/15] hpoolcfg: expose the pool configuration

2008-10-09 Thread Andy Whitcroft
On Mon, Oct 06, 2008 at 03:57:08PM +0100, Mel Gorman wrote: > On (03/10/08 18:37), Andy Whitcroft didst pronounce: > > Expose pool allocations for each of the available page sizes via the > > --pool-list command. Exposes the miniumum and maximimum values indicating > > the dedicated pages and the

Re: [Libhugetlbfs-devel] [PATCH 11/15] hpoolcfg: initial basic framework

2008-10-09 Thread Mel Gorman
On (09/10/08 19:08), Andy Whitcroft didst pronounce: > On Mon, Oct 06, 2008 at 03:37:29PM +0100, Mel Gorman wrote: > > On (03/10/08 18:37), Andy Whitcroft didst pronounce: > > > Add a very basic framework for hpoolcfg, the administrator pool > > > configuration > > > helper. > > > > > > Signed-of

Re: [Libhugetlbfs-devel] [PATCH 11/15] hpoolcfg: initial basic framework

2008-10-09 Thread Andy Whitcroft
On Mon, Oct 06, 2008 at 03:37:29PM +0100, Mel Gorman wrote: > On (03/10/08 18:37), Andy Whitcroft didst pronounce: > > Add a very basic framework for hpoolcfg, the administrator pool > > configuration > > helper. > > > > Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> > > --- > > Makefile |

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Mel Gorman
On (09/10/08 14:19), Andy Whitcroft didst pronounce: > On Thu, Oct 09, 2008 at 12:31:36PM +0100, Mel Gorman wrote: > > On (09/10/08 12:14), Andy Whitcroft didst pronounce: > > > > > > +For \fBget_huge_pages()\fP, return a pointer to the allocated > > > > > > memory. On > > > > > > +error, NULL is

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Mel Gorman wrote: > This patch adds a basic manual page for get_huge_pages and > free_huge_pages(). > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital signature

Re: [Libhugetlbfs-devel] [PATCH 2/3] hugectl: add backing of shared memory segments via --shm

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Andy Whitcroft wrote: > Add support for mapping shared memory segments via the --shm option. > > Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> > Acked-by: Mel Gorman <[EMAIL PROTECTED]> > Acked-by: Adam Litke <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Desc

Re: [Libhugetlbfs-devel] [PATCH 1/3] hugectl: add verbosity control via --verbose

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Andy Whitcroft wrote: > Add control over verbosity and debugging both in the hugectl and in the > library when invoked. Allows the level to be set directly via > --verbose and may be incremented via -v. Where the level is set > to 99 debugging is also enabled. > > Signed-o

Re: [Libhugetlbfs-devel] [PATCH 3/4] Add a manual page for hugeedit

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Mel Gorman wrote: > This patch adds a basic manual page for hugeedit. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital signature - This SF.Net

Re: [Libhugetlbfs-devel] [PATCH 3/3] hugectl: suppress false warning at the end of all arguments

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Andy Whitcroft wrote: > When we hit the end of the arguments we will get a valid -1 return > from getopts_long. We should suppress this to prevent confusion. > > Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital sig

Re: [Libhugetlbfs-devel] [PATCH 2/4] Add a manual page for hugectl

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Mel Gorman wrote: > This patch adds a basic manual page for hugectl. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital signature - This SF.Net e

Re: [Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Eric B Munson
On Thu, 09 Oct 2008, Mel Gorman wrote: > This patch adds a basic manual page for libhugetlbfs. It points the user > to the HOWTO for detailed instructions and is intended as a brief synopisis > for the environment variables. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> Applied, thanks. Eric

Re: [Libhugetlbfs-devel] [PATCH] must compile explicitly for 32 bit

2008-10-09 Thread Eric B Munson
On Wed, 08 Oct 2008, Jon Tollefson wrote: > In order to compile the 32 bit versions of the test programs correctly you > must explicitly specify 32 bit to gcc. > This is a fix for some distros that compile 64 bit by default. The switch > should be backwards compatible. > > > Signed-off-by: Jo

Re: [Libhugetlbfs-devel] [PATCH 2/3] tests: Avoid call to gethugepagesize it could be unsafe

2008-10-09 Thread Eric B Munson
On Mon, 06 Oct 2008, Adam Litke wrote: > The function select_pool_counter() may be called by a test that does not link > to libhugetlbfs. Therefore it is unsafe to call gethugepagesize because that > function may not always be available. Also, the default size is already known > so just use the

Re: [Libhugetlbfs-devel] [PATCH 3/3] elflink: Handle PF_LINUX_HUGETLB correctly

2008-10-09 Thread Eric B Munson
On Mon, 06 Oct 2008, Adam Litke wrote: > A few small oversights in the elflink.c multiple page sizes code have broken > handling of the PF_LINUX_HUGETLB flag. > > * Rather than using hpage_default_size, just call gethugepagesize() when >needed. > > * The function get_segment_hpage_size() w

Re: [Libhugetlbfs-devel] [PATCH 1/3] build: Include the correct dirent.h

2008-10-09 Thread Eric B Munson
On Mon, 06 Oct 2008, Adam Litke wrote: > Avoid linking directly against the kernel header files and use the dirent.h in > /usr/include. > > Signed-off-by: Adam Litke <[EMAIL PROTECTED]> Applied, thanks. Eric signature.asc Description: Digital signature -

Re: [Libhugetlbfs-devel] [PATCH 3/3] hugectl: suppress false warning at the end of all arguments

2008-10-09 Thread Adam Litke
On Thu, 2008-10-09 at 11:47 +0100, Andy Whitcroft wrote: > When we hit the end of the arguments we will get a valid -1 return > from getopts_long. We should suppress this to prevent confusion. Does this affect hugeedit as well? > Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> Acked-by: Adam L

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Andy Whitcroft
On Thu, Oct 09, 2008 at 12:31:36PM +0100, Mel Gorman wrote: > On (09/10/08 12:14), Andy Whitcroft didst pronounce: > > > > > +For \fBget_huge_pages()\fP, return a pointer to the allocated > > > > > memory. On > > > > > +error, NULL is returned. > > > > > > > > Is errno set to anything? > > > > >

[Libhugetlbfs-devel] [PATCH 1/3] hugectl: add verbosity control via --verbose

2008-10-09 Thread Andy Whitcroft
Add control over verbosity and debugging both in the hugectl and in the library when invoked. Allows the level to be set directly via --verbose and may be incremented via -v. Where the level is set to 99 debugging is also enabled. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> Acked-by: Adam

[Libhugetlbfs-devel] [PATCH 0/3] V2 hugectl updates

2008-10-09 Thread Andy Whitcroft
We have a couple of outstanding anomolies in the hugectl interface. Firstly it does not allow control over verbosity/debug. Second it does not allow request of backing for shared memory segments. We also have a false warning triggered in options parsing. This patch series is designed to address

[Libhugetlbfs-devel] [PATCH 3/3] hugectl: suppress false warning at the end of all arguments

2008-10-09 Thread Andy Whitcroft
When we hit the end of the arguments we will get a valid -1 return from getopts_long. We should suppress this to prevent confusion. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> --- hugectl.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/hugectl.c b/hugectl.c ind

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Mel Gorman
On (09/10/08 12:14), Andy Whitcroft didst pronounce: > > > > +For \fBget_huge_pages()\fP, return a pointer to the allocated memory. > > > > On > > > > +error, NULL is returned. > > > > > > Is errno set to anything? > > > > > > > Yes oddly enough. It'll be set to whatever the mmap() failure was

Re: [Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Mel Gorman
On (09/10/08 12:03), Andy Whitcroft didst pronounce: > > > > +For applications that are hugepage-aware and linked to the library > > > > +\fBget_huge_pages()\fP can be used for the direct allocation of > > > > +hugepage-backed regions. > > > > + > > > > +Unless otherwise specified, \fBlibhugetlbfs\

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Andy Whitcroft
On Thu, Oct 09, 2008 at 10:35:26AM +0100, Mel Gorman wrote: > On (09/10/08 10:03), Andy Whitcroft didst pronounce: > > On Wed, Oct 08, 2008 at 03:39:37PM +0100, Mel Gorman wrote: > > > This patch adds a basic manual page for get_huge_pages() and > > > free_huge_pages(). > > > > > > Signed-off-by:

[Libhugetlbfs-devel] [PATCH 2/3] hugectl: add backing of shared memory segments via --shm

2008-10-09 Thread Andy Whitcroft
Add support for mapping shared memory segments via the --shm option. Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> Acked-by: Mel Gorman <[EMAIL PROTECTED]> Acked-by: Adam Litke <[EMAIL PROTECTED]> --- hugectl.c | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/

Re: [Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Andy Whitcroft
On Thu, Oct 09, 2008 at 10:20:57AM +0100, Mel Gorman wrote: > On (09/10/08 09:56), Andy Whitcroft didst pronounce: > > On Wed, Oct 08, 2008 at 03:39:34PM +0100, Mel Gorman wrote: > > > This patch adds a basic manual page for libhugetlbfs. It points the user > > > to the HOWTO for detailed instructi

Re: [Libhugetlbfs-devel] [PATCH 03/15] shm: Shared memory always uses the meminfo page size

2008-10-09 Thread Mel Gorman
On (07/10/08 12:50), Adam Litke didst pronounce: > On Tue, 2008-10-07 at 00:14 +0100, Mel Gorman wrote: > > On (06/10/08 17:02), Adam Litke didst pronounce: > > > On Mon, 2008-10-06 at 14:59 +0100, Mel Gorman wrote: > > > > On (03/10/08 18:36), Andy Whitcroft didst pronounce: > > > > > From: Adam L

Re: [Libhugetlbfs-devel] [PATCH 14/15] hugeutils: export the pool counter update interface

2008-10-09 Thread Mel Gorman
On (07/10/08 15:11), Adam Litke didst pronounce: > On Fri, 2008-10-03 at 18:37 +0100, Andy Whitcroft wrote: > > Rename and export the pool counter update interface. > > > > Signed-off-by: Andy Whitcroft <[EMAIL PROTECTED]> > > Ok. > Acked-by: Adam Litke <[EMAIL PROTECTED]> > > Mel does have a po

[Libhugetlbfs-devel] [PATCH 2/4] Add a manual page for hugectl

2008-10-09 Thread Mel Gorman
This patch adds a basic manual page for hugectl. Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> --- Makefile |7 man/hugectl.8 | 105 + 2 files changed, 112 insertions(+), 0 deletions(-) create mode 100644 man/hugectl.8 diff

Re: [Libhugetlbfs-devel] [PATCH 1/2] hugectl: add verbosity control via --verbose

2008-10-09 Thread Mel Gorman
On (09/10/08 10:41), Andy Whitcroft didst pronounce: > On Wed, Oct 08, 2008 at 02:47:00PM +0100, Mel Gorman wrote: > > On (08/10/08 13:52), Andy Whitcroft didst pronounce: > > > Add control over verbosity and debugging both in the hugectl and in the > > > library when invoked. Allows the level to

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Andy Whitcroft
On Wed, Oct 08, 2008 at 03:39:37PM +0100, Mel Gorman wrote: > This patch adds a basic manual page for get_huge_pages() and > free_huge_pages(). > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> > --- > Makefile |8 ++ > man/get_huge_pages.3 | 68 > ++

[Libhugetlbfs-devel] 美国拉斯维加斯国际消费类 电子展

2008-10-09 Thread yanghui
¹ØÓÚ×éÍŲμÓ2009ÄêÃÀ¹úÀ­Ë¹Î¬¼Ó˹ ¹ú¼ÊÏû·ÑÀàµç×Ó²úÆ·Õ¹ÀÀ»á£¨CES£©µÄ֪ͨ ¸÷Óйص¥Î»£º ¾­¹úÎñÔºÅú×¼£¬ÊÜÖйúó´Ù»áµÄίÍÐ,Öйúó´Ù»áµç×ÓÐÅÏ¢ÐÐÒµ·Ö»á½«×éÍŲμÓ2009ÄêÃÀ¹úÀ­Ë¹Î¬¼Ó˹¹ú¼ÊÏû·ÑÀàµç×Ó²úÆ·Õ¹ÀÀ»á£¨2009International Consumer Electronics Show ¼ò³Æ CES 2009£©¡£ ¸ÃÕ¹ÓÉÃÀ¹úµç×ÓÏû·ÑÆ·ÖÆÔìÉÌЭ»á(¼ò³ÆC

[Libhugetlbfs-devel] 美国拉斯维加斯国际消费类 电子展

2008-10-09 Thread yanghui
¹ØÓÚ×éÍŲμÓ2009ÄêÃÀ¹úÀ­Ë¹Î¬¼Ó˹ ¹ú¼ÊÏû·ÑÀàµç×Ó²úÆ·Õ¹ÀÀ»á£¨CES£©µÄ֪ͨ ¸÷Óйص¥Î»£º ¾­¹úÎñÔºÅú×¼£¬ÊÜÖйúó´Ù»áµÄίÍÐ,Öйúó´Ù»áµç×ÓÐÅÏ¢ÐÐÒµ·Ö»á½«×éÍŲμÓ2009ÄêÃÀ¹úÀ­Ë¹Î¬¼Ó˹¹ú¼ÊÏû·ÑÀàµç×Ó²úÆ·Õ¹ÀÀ»á£¨2009International Consumer Electronics Show ¼ò³Æ CES 2009£©¡£ ¸ÃÕ¹ÓÉÃÀ¹úµç×ÓÏû·ÑÆ·ÖÆÔìÉÌЭ»á(¼ò³ÆC

[Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Mel Gorman
This patch adds a basic manual page for get_huge_pages and free_huge_pages(). Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> --- Makefile |8 ++ man/get_huge_pages.3 | 69 ++ 2 files changed, 77 insertions(+), 0 deletions(-) cr

[Libhugetlbfs-devel] [PATCH 0/4] Add manual pages for libhugetlbfs v2

2008-10-09 Thread Mel Gorman
The following four patches add manual pages for the libhugetlbfs libraries, utilities and the allocation APIs. Changelog since V1 o Corrections/clarifications from Andy Makefile | 23 +++ man/get_huge_pages.3 | 69 man/hugectl.8| 105 ++

Re: [Libhugetlbfs-devel] [PATCH 1/2] hugectl: add verbosity control via --verbose

2008-10-09 Thread Andy Whitcroft
On Wed, Oct 08, 2008 at 02:47:00PM +0100, Mel Gorman wrote: > On (08/10/08 13:52), Andy Whitcroft didst pronounce: > > Add control over verbosity and debugging both in the hugectl and in the > > library when invoked. Allows the level to be set directly via > > --verbose and may be incremented via

[Libhugetlbfs-devel] [PATCH 3/4] Add a manual page for hugeedit

2008-10-09 Thread Mel Gorman
This patch adds a basic manual page for hugeedit. Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> --- Makefile |2 +- man/hugeedit.8 | 57 2 files changed, 58 insertions(+), 1 deletions(-) create mode 100644 man/hugeedit.8 diff

[Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Mel Gorman
This patch adds a basic manual page for libhugetlbfs. It points the user to the HOWTO for detailed instructions and is intended as a brief synopisis for the environment variables. Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> --- Makefile |8 +++ man/libhugetlbfs.7 | 168 ++

Re: [Libhugetlbfs-devel] [PATCH 4/4] Add a manual page for get_huge_pages() and free_huge_pages()

2008-10-09 Thread Mel Gorman
On (09/10/08 10:03), Andy Whitcroft didst pronounce: > On Wed, Oct 08, 2008 at 03:39:37PM +0100, Mel Gorman wrote: > > This patch adds a basic manual page for get_huge_pages() and > > free_huge_pages(). > > > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> > > --- > > Makefile |8

Re: [Libhugetlbfs-devel] [PATCH 2/4] Add a manual page for hugectl

2008-10-09 Thread Andy Whitcroft
On Wed, Oct 08, 2008 at 03:39:35PM +0100, Mel Gorman wrote: > This patch adds a basic manual page for hugectl. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> > --- > Makefile |7 > man/hugectl.8 | 97 > + > 2 files change

Re: [Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Mel Gorman
On (09/10/08 09:56), Andy Whitcroft didst pronounce: > On Wed, Oct 08, 2008 at 03:39:34PM +0100, Mel Gorman wrote: > > This patch adds a basic manual page for libhugetlbfs. It points the user > > to the HOWTO for detailed instructions and is intended as a brief synopisis > > for the environment var

Re: [Libhugetlbfs-devel] [PATCH 3/4] Add a manual page for hugeedit

2008-10-09 Thread Andy Whitcroft
On Wed, Oct 08, 2008 at 03:39:36PM +0100, Mel Gorman wrote: > This patch adds a basic manual page for hugeedit. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> > --- > Makefile |2 +- > man/hugeedit.8 | 56 > > 2 files change

Re: [Libhugetlbfs-devel] [PATCH 1/4] Add a manual page for libhugetlbfs

2008-10-09 Thread Andy Whitcroft
On Wed, Oct 08, 2008 at 03:39:34PM +0100, Mel Gorman wrote: > This patch adds a basic manual page for libhugetlbfs. It points the user > to the HOWTO for detailed instructions and is intended as a brief synopisis > for the environment variables. > > Signed-off-by: Mel Gorman <[EMAIL PROTECTED]> >