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>
This commit is contained in:
parent
de64d3a6c7
commit
32a78facdd
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue