Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7367d99b authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

SRP: Fix typo in ib_srpt.c



Correct spelling "alocate" to "allocate" in
drivers/infiniband/ulp/srpt/ib_srpt.c

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 58642a24
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3450,7 +3450,7 @@ static struct se_node_acl *srpt_alloc_fabric_acl(struct se_portal_group *se_tpg)

	nacl = kzalloc(sizeof(struct srpt_node_acl), GFP_KERNEL);
	if (!nacl) {
		printk(KERN_ERR "Unable to alocate struct srpt_node_acl\n");
		printk(KERN_ERR "Unable to allocate struct srpt_node_acl\n");
		return NULL;
	}