From: behlendo Date: Tue, 1 Apr 2008 03:24:17 +0000 (+0000) Subject: Ensure all file ops pointer are NULL or we may end up X-Git-Tag: zfs-0.8.0-rc1~152^2~918 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e966e04fd52e0a80ec191b8f784d84b436877667;p=zfs Ensure all file ops pointer are NULL or we may end up calling garbage pointers on open/close etc and get what look like random crashes. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@61 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c --- diff --git a/modules/spl/spl-module.c b/modules/spl/spl-module.c index 309188ce5..59183d864 100644 --- a/modules/spl/spl-module.c +++ b/modules/spl/spl-module.c @@ -56,7 +56,7 @@ __ddi_create_minor_node(dev_info_t *di, char *name, int spec_type, BUG_ON(strcmp(node_type, DDI_PSEUDO)); BUG_ON(flag != 0); - fops = kmalloc(sizeof(struct file_operations), GFP_KERNEL); + fops = kzalloc(sizeof(struct file_operations), GFP_KERNEL); if (fops == NULL) return DDI_FAILURE;