vmalloc.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #ifndef _LINUX_VMALLOC_H
  2. #define _LINUX_VMALLOC_H
  3. #include <linux/spinlock.h>
  4. #include <asm/page.h> /* pgprot_t */
  5. struct vm_area_struct;
  6. /* bits in vm_struct->flags */
  7. #define VM_IOREMAP 0x00000001 /* ioremap() and friends */
  8. #define VM_ALLOC 0x00000002 /* vmalloc() */
  9. #define VM_MAP 0x00000004 /* vmap()ed pages */
  10. #define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */
  11. #define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */
  12. /* bits [20..32] reserved for arch specific ioremap internals */
  13. /*
  14. * Maximum alignment for ioremap() regions.
  15. * Can be overriden by arch-specific value.
  16. */
  17. #ifndef IOREMAP_MAX_ORDER
  18. #define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* 128 pages */
  19. #endif
  20. struct vm_struct {
  21. void *addr;
  22. unsigned long size;
  23. unsigned long flags;
  24. struct page **pages;
  25. unsigned int nr_pages;
  26. unsigned long phys_addr;
  27. struct vm_struct *next;
  28. };
  29. /*
  30. * Highlevel APIs for driver use
  31. */
  32. extern void *vmalloc(unsigned long size);
  33. extern void *vmalloc_user(unsigned long size);
  34. extern void *vmalloc_node(unsigned long size, int node);
  35. extern void *vmalloc_exec(unsigned long size);
  36. extern void *vmalloc_32(unsigned long size);
  37. extern void *vmalloc_32_user(unsigned long size);
  38. extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
  39. extern void *__vmalloc_area(struct vm_struct *area, gfp_t gfp_mask,
  40. pgprot_t prot);
  41. extern void *__vmalloc_node(unsigned long size, gfp_t gfp_mask,
  42. pgprot_t prot, int node);
  43. extern void vfree(void *addr);
  44. extern void *vmap(struct page **pages, unsigned int count,
  45. unsigned long flags, pgprot_t prot);
  46. extern void vunmap(void *addr);
  47. extern int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
  48. unsigned long pgoff);
  49. /*
  50. * Lowlevel-APIs (not for driver use!)
  51. */
  52. extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags);
  53. extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
  54. unsigned long start, unsigned long end);
  55. extern struct vm_struct *get_vm_area_node(unsigned long size,
  56. unsigned long flags, int node);
  57. extern struct vm_struct *remove_vm_area(void *addr);
  58. extern struct vm_struct *__remove_vm_area(void *addr);
  59. extern int map_vm_area(struct vm_struct *area, pgprot_t prot,
  60. struct page ***pages);
  61. extern void unmap_vm_area(struct vm_struct *area);
  62. /*
  63. * Internals. Dont't use..
  64. */
  65. extern rwlock_t vmlist_lock;
  66. extern struct vm_struct *vmlist;
  67. #endif /* _LINUX_VMALLOC_H */