Skip to content

Commit

Permalink
pid_namespace.c/.h: simplify defines
Browse files Browse the repository at this point in the history
Move BITS_PER_PAGE from pid_namespace.c to pid_namespace.h, since we can
simplify the define PID_MAP_ENTRIES by using the BITS_PER_PAGE.

[akpm@linux-foundation.org: kernel/pid.c:54:1: warning: "BITS_PER_PAGE" redefined]
Signed-off-by: Raphael S.Carvalho <raphael.scarv@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
raphaelsc authored and torvalds committed May 1, 2013
1 parent 8db049b commit 5cc5445
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion include/linux/pid_namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ struct pidmap {
void *page;
};

#define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8)
#define BITS_PER_PAGE (PAGE_SIZE * 8)
#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)
#define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE)

struct bsd_acct_struct;

Expand Down
3 changes: 0 additions & 3 deletions kernel/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ int pid_max = PID_MAX_DEFAULT;
int pid_max_min = RESERVED_PIDS + 1;
int pid_max_max = PID_MAX_LIMIT;

#define BITS_PER_PAGE (PAGE_SIZE*8)
#define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1)

static inline int mk_pid(struct pid_namespace *pid_ns,
struct pidmap *map, int off)
{
Expand Down
2 changes: 0 additions & 2 deletions kernel/pid_namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
#include <linux/reboot.h>
#include <linux/export.h>

#define BITS_PER_PAGE (PAGE_SIZE*8)

struct pid_cache {
int nr_ids;
char name[16];
Expand Down

0 comments on commit 5cc5445

Please sign in to comment.