[PATCH] USB: remove empty destructor from drivers/usb/mon/mon_text.c
Remove destructor and call kmem_cache_create with NULL for the destructor. Acked-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Cc: Pete Zaitcev <zaitcev@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
b33488eb5c
commit
028d2a39d1
|
@ -64,7 +64,6 @@ struct mon_reader_text {
|
|||
};
|
||||
|
||||
static void mon_text_ctor(void *, kmem_cache_t *, unsigned long);
|
||||
static void mon_text_dtor(void *, kmem_cache_t *, unsigned long);
|
||||
|
||||
/*
|
||||
* mon_text_submit
|
||||
|
@ -268,7 +267,7 @@ static int mon_text_open(struct inode *inode, struct file *file)
|
|||
(long)rp);
|
||||
rp->e_slab = kmem_cache_create(rp->slab_name,
|
||||
sizeof(struct mon_event_text), sizeof(long), 0,
|
||||
mon_text_ctor, mon_text_dtor);
|
||||
mon_text_ctor, NULL);
|
||||
if (rp->e_slab == NULL) {
|
||||
rc = -ENOMEM;
|
||||
goto err_slab;
|
||||
|
@ -459,7 +458,3 @@ static void mon_text_ctor(void *mem, kmem_cache_t *slab, unsigned long sflags)
|
|||
memset(mem, 0xe5, sizeof(struct mon_event_text));
|
||||
}
|
||||
|
||||
static void mon_text_dtor(void *mem, kmem_cache_t *slab, unsigned long sflags)
|
||||
{
|
||||
;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue