From: Gerd Hoffmann Date: Tue, 11 Sep 2018 13:42:12 +0000 (+0200) Subject: udmabuf: use EBADFD in case we didn't got a memfd X-Git-Tag: v4.20-rc1~21^2~30^2~7 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7a1c67d78094236e8ba0c5f6f83a8baf33a53860;p=uclinux-h8%2Flinux.git udmabuf: use EBADFD in case we didn't got a memfd Reported-by: Laurent Pinchart Signed-off-by: Gerd Hoffmann Acked-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20180911134216.9760-10-kraxel@redhat.com --- diff --git a/drivers/dma-buf/udmabuf.c b/drivers/dma-buf/udmabuf.c index a3d225fd4d90..e0465a9bf3f9 100644 --- a/drivers/dma-buf/udmabuf.c +++ b/drivers/dma-buf/udmabuf.c @@ -154,14 +154,17 @@ static long udmabuf_create(const struct udmabuf_create_list *head, pgbuf = 0; for (i = 0; i < head->count; i++) { + ret = -EBADFD; memfd = fget(list[i].memfd); if (!memfd) goto err; if (!shmem_mapping(file_inode(memfd)->i_mapping)) goto err; seals = memfd_fcntl(memfd, F_GET_SEALS, 0); - if (seals == -EINVAL || - (seals & SEALS_WANTED) != SEALS_WANTED || + if (seals == -EINVAL) + goto err; + ret = -EINVAL; + if ((seals & SEALS_WANTED) != SEALS_WANTED || (seals & SEALS_DENIED) != 0) goto err; pgoff = list[i].offset >> PAGE_SHIFT;