[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1576932330-32095-1-git-send-email-arnd@arndb.de>
Date: Sat, 21 Dec 2019 12:45:30 +0000
From: Arnd Bergmann <arnd@...db.de>
To: Jens Axboe <axboe@...nel.dk>, linux-block@...r.kernel.org
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
linux-kernel@...r.kernel.org, Arnd Bergmann <arnd@...db.de>
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 <lkp@...el.com>
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
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
Powered by blists - more mailing lists