diff options
| author | Wei Yongjun <weiyongjun1@huawei.com> | 2019-04-04 04:44:05 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-04 20:13:59 -0400 |
| commit | 6af1c849dfb1f1d326fbdd157c9bc882b921f450 (patch) | |
| tree | c18cbae2df9acef4118d5d0475ff2b72b0227958 | |
| parent | 27fad74a5a77fe2e1f876db7bf27efcf2ec304b2 (diff) | |
aio: use kmem_cache_free() instead of kfree()
memory allocated by kmem_cache_alloc() should be freed using
kmem_cache_free(), not kfree().
Fixes: fa0ca2aee3be ("deal with get_reqs_available() in aio_get_req() itself")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
| -rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1034,7 +1034,7 @@ static inline struct aio_kiocb *aio_get_req(struct kioctx *ctx) | |||
| 1034 | return NULL; | 1034 | return NULL; |
| 1035 | 1035 | ||
| 1036 | if (unlikely(!get_reqs_available(ctx))) { | 1036 | if (unlikely(!get_reqs_available(ctx))) { |
| 1037 | kfree(req); | 1037 | kmem_cache_free(kiocb_cachep, req); |
| 1038 | return NULL; | 1038 | return NULL; |
| 1039 | } | 1039 | } |
| 1040 | 1040 | ||
