~ubuntu-branches/ubuntu/jaunty/ndiswrapper/jaunty

« back to all changes in this revision

Viewing changes to driver/wrapmem.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-11-21 14:17:35 UTC
  • mfrom: (1.2.11 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20081121141735-hzymcfoy3up8hego
Tags: 1.53-2ubuntu1
* Merge with Debian; remaining changes:
  - Build for lpia.
  - debian/control:
    + Update description to point out that the kernel source package is
      not required with the standard Ubuntu kernel.
    + Change the Maintainer address.
  - debian/control:
    + Drop ndiswrapper-source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
void wrapmem_info(void);
41
41
 
42
42
#ifdef ALLOC_DEBUG
43
 
void *wrap_kmalloc(size_t size, unsigned int flags, const char *file, int line);
44
 
void *wrap_kzalloc(size_t size, unsigned int flags, const char *file, int line);
 
43
void *wrap_kmalloc(size_t size, gfp_t flags, const char *file, int line);
 
44
void *wrap_kzalloc(size_t size, gfp_t flags, const char *file, int line);
45
45
void wrap_kfree(void *ptr);
46
46
void *wrap_vmalloc(unsigned long size, const char *file, int line);
47
 
void *wrap__vmalloc(unsigned long size, unsigned int flags, pgprot_t prot,
 
47
void *wrap__vmalloc(unsigned long size, gfp_t flags, pgprot_t prot,
48
48
                    const char *file, int line);
49
49
void wrap_vfree(void *ptr);
50
 
void *wrap_alloc_pages(unsigned flags, unsigned int size,
 
50
void *wrap_alloc_pages(gfp_t flags, unsigned int size,
51
51
                       const char *file, int line);
52
52
void wrap_free_pages(unsigned long ptr, int order);
53
53
int alloc_size(enum alloc_type type);