Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 105223
b: refs/heads/master
c: 77586c2
h: refs/heads/master
i:
  105221: e9d0d42
  105219: c29f68e
  105215: f6ea963
v: v3
  • Loading branch information
Mike Travis authored and Ingo Molnar committed Jul 18, 2008
1 parent 21a749b commit d79c472
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4755b9291204982ac908e069674d6e5eb45815b3
refs/heads/master: 77586c2bdad0798cb24e35de5a878e7c6b200574
21 changes: 21 additions & 0 deletions trunk/include/linux/cpumask.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@
* CPU_MASK_NONE Initializer - no bits set
* unsigned long *cpus_addr(mask) Array of unsigned long's in mask
*
*if NR_CPUS > BITS_PER_LONG
* CPUMASK_ALLOC(m) Declares and allocates struct m *m =
* (struct m *)kmalloc(sizeof(*m), ...)
* CPUMASK_FREE(m) Macro for kfree(v)
*else
* CPUMASK_ALLOC(m) Declares struct m _m, *m = &_m
* CPUMASK_FREE(m) Nop
*endif
* CPUMASK_VAR(v, m) Declares cpumask_t *v =
* m + offset(struct m, v)
*
* int cpumask_scnprintf(buf, len, mask) Format cpumask for printing
* int cpumask_parse_user(ubuf, ulen, mask) Parse ascii string as cpumask
* int cpulist_scnprintf(buf, len, mask) Format cpumask as list for printing
Expand Down Expand Up @@ -311,6 +322,16 @@ extern cpumask_t cpu_mask_all;

#define cpus_addr(src) ((src).bits)

#if NR_CPUS > BITS_PER_LONG
#define CPUMASK_ALLOC(m) struct m *m = kmalloc(sizeof(*m), GFP_KERNEL)
#define CPUMASK_FREE(m) kfree(m)
#else
#define CPUMASK_ALLOC(m) struct allmasks _m, *m = &_m
#define CPUMASK_FREE(m)
#endif
#define CPUMASK_VAR(v, m) cpumask_t *v = (cpumask_t *) \
((unsigned long)(m) + offsetof(struct m, v))

#define cpumask_scnprintf(buf, len, src) \
__cpumask_scnprintf((buf), (len), &(src), NR_CPUS)
static inline int __cpumask_scnprintf(char *buf, int len,
Expand Down

0 comments on commit d79c472

Please sign in to comment.