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
1 changed files with 1 additions and 4 deletions
|
@ -685,10 +685,7 @@ static inline void *cxgbi_alloc_big_mem(unsigned int size,
|
||||||
|
|
||||||
static inline void cxgbi_free_big_mem(void *addr)
|
static inline void cxgbi_free_big_mem(void *addr)
|
||||||
{
|
{
|
||||||
if (is_vmalloc_addr(addr))
|
kvfree(addr);
|
||||||
vfree(addr);
|
|
||||||
else
|
|
||||||
kfree(addr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void cxgbi_set_iscsi_ipv4(struct cxgbi_hba *chba, __be32 ipaddr)
|
static inline void cxgbi_set_iscsi_ipv4(struct cxgbi_hba *chba, __be32 ipaddr)
|
||||||
|
|
Loading…
Reference in a new issue