-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 189454 b: refs/heads/master c: de380b5 h: refs/heads/master v: v3
- Loading branch information
Tejun Heo
committed
Mar 30, 2010
1 parent
bcf2280
commit 3ac1398
Showing
4 changed files
with
41 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ea5a9f0c3447889abceb7482c391bb977472eab9 | ||
refs/heads/master: de380b55f92986c1a84198149cb71b7228d15fbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* mm/percpu_up.c - dummy percpu memory allocator implementation for UP | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include <linux/percpu.h> | ||
#include <linux/slab.h> | ||
|
||
void __percpu *__alloc_percpu(size_t size, size_t align) | ||
{ | ||
/* | ||
* Can't easily make larger alignment work with kmalloc. WARN | ||
* on it. Larger alignment should only be used for module | ||
* percpu sections on SMP for which this path isn't used. | ||
*/ | ||
WARN_ON_ONCE(align > SMP_CACHE_BYTES); | ||
return kzalloc(size, GFP_KERNEL); | ||
} | ||
EXPORT_SYMBOL_GPL(__alloc_percpu); | ||
|
||
void free_percpu(void __percpu *p) | ||
{ | ||
kfree(p); | ||
} | ||
EXPORT_SYMBOL_GPL(free_percpu); | ||
|
||
phys_addr_t per_cpu_ptr_to_phys(void *addr) | ||
{ | ||
return __pa(addr); | ||
} |