datapath: Use kmem_cache_free() instead of kfree()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Wed, 8 Jan 2014 14:07:52 +0000 (06:07 -0800)
committerJesse Gross <jesse@nicira.com>
Wed, 8 Jan 2014 14:10:55 +0000 (06:10 -0800)
commit1595a8ce12948e50cc89c304daf3750a9a7ede5a
tree958ae895372e1e7a3ec5e05822070799994b94c6
parent6268d087e343fb624d647084007fc430849e062f
datapath: Use kmem_cache_free() instead of kfree()

memory allocated by kmem_cache_alloc() should be freed using
kmem_cache_free(), not kfree().

Fixes: e298e5057006 ('openvswitch: Per cpu flow stats.')
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Jesse Gross <jesse@nicira.com>
datapath/flow_table.c