diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-11-28 02:15:55 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2010-11-28 02:15:55 +0100 |
commit | c66395c972f3588db110f6545ccfe85318df19e8 (patch) | |
tree | 6028e02dbf2647066989b7c48241a93421d93134 /scullc/main.c | |
parent | 588e07e13bcc59058fc80c11df10a2b69bc5393c (diff) | |
download | ldd3-c66395c972f3588db110f6545ccfe85318df19e8.tar.gz |
scullc: main: Removes slab destructor argument for kmem_cache_create invocation
Diffstat (limited to 'scullc/main.c')
-rw-r--r-- | scullc/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scullc/main.c b/scullc/main.c index 5bfbbac..abd43ea 100644 --- a/scullc/main.c +++ b/scullc/main.c @@ -557,7 +557,7 @@ int scullc_init(void) } scullc_cache = kmem_cache_create("scullc", scullc_quantum, - 0, SLAB_HWCACHE_ALIGN, NULL, NULL); /* no ctor/dtor */ + 0, SLAB_HWCACHE_ALIGN, NULL); /* no ctor/dtor */ if (!scullc_cache) { scullc_cleanup(); return -ENOMEM; |