Commit ce7db282 authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu:
  percpu: fix a mismatch between code and comment
  percpu: fix a memory leak in pcpu_extend_area_map()
  percpu: add __percpu notations to UP allocator
  percpu: handle __percpu notations in UP accessors
parents cd4d4fc4 54157c44
...@@ -70,11 +70,16 @@ extern void setup_per_cpu_areas(void); ...@@ -70,11 +70,16 @@ extern void setup_per_cpu_areas(void);
#else /* ! SMP */ #else /* ! SMP */
#define per_cpu(var, cpu) (*((void)(cpu), &(var))) #define VERIFY_PERCPU_PTR(__p) ({ \
#define __get_cpu_var(var) (var) __verify_pcpu_ptr((__p)); \
#define __raw_get_cpu_var(var) (var) (typeof(*(__p)) __kernel __force *)(__p); \
#define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0) })
#define __this_cpu_ptr(ptr) this_cpu_ptr(ptr)
#define per_cpu(var, cpu) (*((void)(cpu), VERIFY_PERCPU_PTR(&(var))))
#define __get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var)))
#define __raw_get_cpu_var(var) (*VERIFY_PERCPU_PTR(&(var)))
#define this_cpu_ptr(ptr) per_cpu_ptr(ptr, 0)
#define __this_cpu_ptr(ptr) this_cpu_ptr(ptr)
#endif /* SMP */ #endif /* SMP */
......
...@@ -149,7 +149,7 @@ extern void __init percpu_init_late(void); ...@@ -149,7 +149,7 @@ extern void __init percpu_init_late(void);
#else /* CONFIG_SMP */ #else /* CONFIG_SMP */
#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) #define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR((ptr)); })
/* can't distinguish from other static vars, always false */ /* can't distinguish from other static vars, always false */
static inline bool is_kernel_percpu_address(unsigned long addr) static inline bool is_kernel_percpu_address(unsigned long addr)
......
...@@ -393,7 +393,9 @@ static int pcpu_extend_area_map(struct pcpu_chunk *chunk, int new_alloc) ...@@ -393,7 +393,9 @@ static int pcpu_extend_area_map(struct pcpu_chunk *chunk, int new_alloc)
goto out_unlock; goto out_unlock;
old_size = chunk->map_alloc * sizeof(chunk->map[0]); old_size = chunk->map_alloc * sizeof(chunk->map[0]);
memcpy(new, chunk->map, old_size); old = chunk->map;
memcpy(new, old, old_size);
chunk->map_alloc = new_alloc; chunk->map_alloc = new_alloc;
chunk->map = new; chunk->map = new;
...@@ -1162,7 +1164,7 @@ static struct pcpu_alloc_info * __init pcpu_build_alloc_info( ...@@ -1162,7 +1164,7 @@ static struct pcpu_alloc_info * __init pcpu_build_alloc_info(
} }
/* /*
* Don't accept if wastage is over 25%. The * Don't accept if wastage is over 1/3. The
* greater-than comparison ensures upa==1 always * greater-than comparison ensures upa==1 always
* passes the following check. * passes the following check.
*/ */
......
...@@ -14,13 +14,13 @@ void __percpu *__alloc_percpu(size_t size, size_t align) ...@@ -14,13 +14,13 @@ void __percpu *__alloc_percpu(size_t size, size_t align)
* percpu sections on SMP for which this path isn't used. * percpu sections on SMP for which this path isn't used.
*/ */
WARN_ON_ONCE(align > SMP_CACHE_BYTES); WARN_ON_ONCE(align > SMP_CACHE_BYTES);
return kzalloc(size, GFP_KERNEL); return (void __percpu __force *)kzalloc(size, GFP_KERNEL);
} }
EXPORT_SYMBOL_GPL(__alloc_percpu); EXPORT_SYMBOL_GPL(__alloc_percpu);
void free_percpu(void __percpu *p) void free_percpu(void __percpu *p)
{ {
kfree(p); kfree(this_cpu_ptr(p));
} }
EXPORT_SYMBOL_GPL(free_percpu); EXPORT_SYMBOL_GPL(free_percpu);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment