aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/cxgbi
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2015-06-30 14:59:27 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2015-06-30 19:45:00 -0700
commit32a78facdd0a5e77d18d03dbe53e0823d249b0bb (patch)
treeec91a9e2cf0a3ef66778dd586e43d81b2d065095 /drivers/scsi/cxgbi
parenttarget: use kvfree() in session alloc and free (diff)
downloadlinux-dev-32a78facdd0a5e77d18d03dbe53e0823d249b0bb.tar.xz
linux-dev-32a78facdd0a5e77d18d03dbe53e0823d249b0bb.zip
libcxgbi: use kvfree() in cxgbi_free_big_mem()
Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@kernel.org> Cc: "James E.J. Bottomley" <JBottomley@odin.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/scsi/cxgbi')
-rw-r--r--drivers/scsi/cxgbi/libcxgbi.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/scsi/cxgbi/libcxgbi.h b/drivers/scsi/cxgbi/libcxgbi.h
index b3e5bd1d5d9c..9842301f7980 100644
--- a/drivers/scsi/cxgbi/libcxgbi.h
+++ b/drivers/scsi/cxgbi/libcxgbi.h
@@ -685,10 +685,7 @@ static inline void *cxgbi_alloc_big_mem(unsigned int size,
static inline void cxgbi_free_big_mem(void *addr)
{
- if (is_vmalloc_addr(addr))
- vfree(addr);
- else
- kfree(addr);
+ kvfree(addr);
}
static inline void cxgbi_set_iscsi_ipv4(struct cxgbi_hba *chba, __be32 ipaddr)