diff options
author | Enrico Weigelt, metux IT consult <info@metux.net> | 2019-04-24 12:34:39 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-04-25 16:47:03 +0200 |
commit | a5dffbb66d250a7ef07e27a2e75b8d9d7af2ab41 (patch) | |
tree | d384ff93925a6352d2bf28db9e70d10af0b864b6 /Documentation/remoteproc.txt | |
parent | nvmet: return a specified error it subsys_alloc fails (diff) | |
download | linux-a5dffbb66d250a7ef07e27a2e75b8d9d7af2ab41.tar.xz linux-a5dffbb66d250a7ef07e27a2e75b8d9d7af2ab41.zip |
nvmet: include <linux/scatterlist.h>
Build breaks:
drivers/nvme/target/core.c: In function 'nvmet_req_alloc_sgl':
drivers/nvme/target/core.c:939:12: error: implicit declaration of \
function 'sgl_alloc'; did you mean 'bio_alloc'? \
[-Werror=implicit-function-declaration]
req->sg = sgl_alloc(req->transfer_len, GFP_KERNEL, &req->sg_cnt);
^~~~~~~~~
bio_alloc
drivers/nvme/target/core.c:939:10: warning: assignment makes pointer \
from integer without a cast [-Wint-conversion]
req->sg = sgl_alloc(req->transfer_len, GFP_KERNEL, &req->sg_cnt);
^
drivers/nvme/target/core.c: In function 'nvmet_req_free_sgl':
drivers/nvme/target/core.c:952:3: error: implicit declaration of \
function 'sgl_free'; did you mean 'ida_free'? [-Werror=implicit-function-declaration]
sgl_free(req->sg);
^~~~~~~~
ida_free
Cause:
1. missing include to <linux/scatterlist.h>
2. SGL_ALLOC needs to be enabled
Therefore adding the missing include, as well as Kconfig dependency.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Minwoo Im <minwoo.im@samsung.com>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'Documentation/remoteproc.txt')
0 files changed, 0 insertions, 0 deletions