提交 6a1f3b84 编写于 作者: S Sukadev Bhattiprolu 提交者: Linus Torvalds

[PATCH] pids: coding style: use struct pidmap

Use struct pidmap instead of pidmap_t.

Its a subset of Eric Biederman's patch http://lkml.org/lkml/2006/2/6/271.
Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
Signed-off-by: NSukadev Bhattiprolu <sukadev@us.ibm.com>
Cc: Dave Hansen <haveblue@us.ibm.com>
Cc: Serge Hallyn <serue@us.ibm.com>
Cc: Cedric Le Goater <clg@fr.ibm.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 b68e31d0
...@@ -53,12 +53,12 @@ int pid_max_max = PID_MAX_LIMIT; ...@@ -53,12 +53,12 @@ int pid_max_max = PID_MAX_LIMIT;
* value does not cause lots of bitmaps to be allocated, but * value does not cause lots of bitmaps to be allocated, but
* the scheme scales to up to 4 million PIDs, runtime. * the scheme scales to up to 4 million PIDs, runtime.
*/ */
typedef struct pidmap { struct pidmap {
atomic_t nr_free; atomic_t nr_free;
void *page; void *page;
} pidmap_t; };
static pidmap_t pidmap_array[PIDMAP_ENTRIES] = static struct pidmap pidmap_array[PIDMAP_ENTRIES] =
{ [ 0 ... PIDMAP_ENTRIES-1 ] = { ATOMIC_INIT(BITS_PER_PAGE), NULL } }; { [ 0 ... PIDMAP_ENTRIES-1 ] = { ATOMIC_INIT(BITS_PER_PAGE), NULL } };
/* /*
...@@ -78,7 +78,7 @@ static __cacheline_aligned_in_smp DEFINE_SPINLOCK(pidmap_lock); ...@@ -78,7 +78,7 @@ static __cacheline_aligned_in_smp DEFINE_SPINLOCK(pidmap_lock);
static fastcall void free_pidmap(int pid) static fastcall void free_pidmap(int pid)
{ {
pidmap_t *map = pidmap_array + pid / BITS_PER_PAGE; struct pidmap *map = pidmap_array + pid / BITS_PER_PAGE;
int offset = pid & BITS_PER_PAGE_MASK; int offset = pid & BITS_PER_PAGE_MASK;
clear_bit(offset, map->page); clear_bit(offset, map->page);
...@@ -88,7 +88,7 @@ static fastcall void free_pidmap(int pid) ...@@ -88,7 +88,7 @@ static fastcall void free_pidmap(int pid)
static int alloc_pidmap(void) static int alloc_pidmap(void)
{ {
int i, offset, max_scan, pid, last = last_pid; int i, offset, max_scan, pid, last = last_pid;
pidmap_t *map; struct pidmap *map;
pid = last + 1; pid = last + 1;
if (pid >= pid_max) if (pid >= pid_max)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册