The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/mm/percpu_up.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * mm/percpu_up.c - dummy percpu memory allocator implementation for UP
    3  */
    4 
    5 #include <linux/module.h>
    6 #include <linux/percpu.h>
    7 #include <linux/slab.h>
    8 
    9 void __percpu *__alloc_percpu(size_t size, size_t align)
   10 {
   11         /*
   12          * Can't easily make larger alignment work with kmalloc.  WARN
   13          * on it.  Larger alignment should only be used for module
   14          * percpu sections on SMP for which this path isn't used.
   15          */
   16         WARN_ON_ONCE(align > SMP_CACHE_BYTES);
   17         return kzalloc(size, GFP_KERNEL);
   18 }
   19 EXPORT_SYMBOL_GPL(__alloc_percpu);
   20 
   21 void free_percpu(void __percpu *p)
   22 {
   23         kfree(p);
   24 }
   25 EXPORT_SYMBOL_GPL(free_percpu);
   26 
   27 phys_addr_t per_cpu_ptr_to_phys(void *addr)
   28 {
   29         return __pa(addr);
   30 }

Cache object: b07c70cad95ec33b554f0844fb163e91


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.