2019-12-21 12:51:21

by Arnd Bergmann

[permalink] [raw]
Subject: [PATCH] compat_ioctl: block: add missing include

As the 0day bot pointed out, a header inclusion is missing in
my earlier bugfixes:

block/compat_ioctl.c: In function 'compat_blkdev_ioctl':
block/compat_ioctl.c:411:7: error: 'IOC_PR_REGISTER' undeclared (first use in this function); did you mean 'TRACE_REG_REGISTER'?

Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
---
block/compat_ioctl.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/block/compat_ioctl.c b/block/compat_ioctl.c
index f16ae92..3ed7a0f 100644
--- a/block/compat_ioctl.c
+++ b/block/compat_ioctl.c
@@ -6,6 +6,7 @@
#include <linux/compat.h>
#include <linux/elevator.h>
#include <linux/hdreg.h>
+#include <linux/pr.h>
#include <linux/slab.h>
#include <linux/syscalls.h>
#include <linux/types.h>
--
2.7.4


2019-12-21 14:55:39

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] compat_ioctl: block: add missing include

On 12/21/19 5:45 AM, Arnd Bergmann wrote:
> As the 0day bot pointed out, a header inclusion is missing in
> my earlier bugfixes:
>
> block/compat_ioctl.c: In function 'compat_blkdev_ioctl':
> block/compat_ioctl.c:411:7: error: 'IOC_PR_REGISTER' undeclared (first use in this function); did you mean 'TRACE_REG_REGISTER'?

Folded in, here's the update series on top of block-5.5:

https://git.kernel.dk/cgit/linux-block/log/?h=block-5.5-next

--
Jens Axboe