diff mbox series

compat_ioctl: block: add missing include

Message ID 1576932330-32095-1-git-send-email-arnd@arndb.de
State New
Headers show
Series compat_ioctl: block: add missing include | expand

Commit Message

Arnd Bergmann Dec. 21, 2019, 12:45 p.m. UTC
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 <lkp@intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 block/compat_ioctl.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.7.4

Comments

Jens Axboe Dec. 21, 2019, 2:28 p.m. UTC | #1
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
diff mbox series

Patch

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>