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
This commit is contained in:
parent
4fd2f7eea5
commit
e966e04fd5
|
@ -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(strcmp(node_type, DDI_PSEUDO));
|
||||||
BUG_ON(flag != 0);
|
BUG_ON(flag != 0);
|
||||||
|
|
||||||
fops = kmalloc(sizeof(struct file_operations), GFP_KERNEL);
|
fops = kzalloc(sizeof(struct file_operations), GFP_KERNEL);
|
||||||
if (fops == NULL)
|
if (fops == NULL)
|
||||||
return DDI_FAILURE;
|
return DDI_FAILURE;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue