[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171201204956.8332-1-palmer@sifive.com>
Date: Fri, 1 Dec 2017 12:49:56 -0800
From: Palmer Dabbelt <palmer@...ive.com>
To: Arnd Bergmann <arnd@...db.de>, linux-arch@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: Palmer Dabbelt <palmer@...ive.com>, Olof Johansson <olof@...om.net>
Subject: [PATCH] audit: Avoid build failures on systems without renameat
renameat has been deprecated in favor of renameat2 for new ports. This
allows the audit tests to build on RISC-V.
Reviewed-by: Christoph Hellwig <hch@....de>
CC: Olof Johansson <olof@...om.net>
Signed-off-by: Palmer Dabbelt <palmer@...ive.com>
---
include/asm-generic/audit_dir_write.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/asm-generic/audit_dir_write.h b/include/asm-generic/audit_dir_write.h
index da09fb986459..dd5a9dd7a102 100644
--- a/include/asm-generic/audit_dir_write.h
+++ b/include/asm-generic/audit_dir_write.h
@@ -27,7 +27,9 @@ __NR_mknod,
__NR_mkdirat,
__NR_mknodat,
__NR_unlinkat,
+#ifdef __NR_renameat
__NR_renameat,
+#endif
__NR_linkat,
__NR_symlinkat,
#endif
--
2.13.6
Powered by blists - more mailing lists