mirror of https://gitee.com/openkylin/linux.git
mm/slab: Fix typo _RET_IP -> _RET_IP_
The bug was introduced by commit 7c0cb9c64f
("mm, slab: Replace
'caller' type, void* -> unsigned long").
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
parent
2b847c3cb4
commit
592f41450d
|
@ -3869,7 +3869,7 @@ void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
|
||||||
{
|
{
|
||||||
void *ret;
|
void *ret;
|
||||||
|
|
||||||
ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP);
|
ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
|
||||||
|
|
||||||
trace_kmalloc_node(_RET_IP_, ret,
|
trace_kmalloc_node(_RET_IP_, ret,
|
||||||
size, cachep->size,
|
size, cachep->size,
|
||||||
|
|
Loading…
Reference in New Issue