* [PATCH -next] x86, kaslr: remove unused including <linux/version.h>
@ 2013-12-07 13:02 Wei Yongjun
2013-12-09 18:03 ` Kees Cook
2014-01-14 18:48 ` [tip:x86/kaslr] x86, kaslr: Remove unused including <linux/ version.h> tip-bot for Wei Yongjun
0 siblings, 2 replies; 3+ messages in thread
From: Wei Yongjun @ 2013-12-07 13:02 UTC (permalink / raw)
To: hpa, tglx, mingo, keescook; +Cc: yongjun_wei, x86, linux-kernel
From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Remove including <linux/version.h> that don't need it.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
---
arch/x86/boot/compressed/aslr.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/boot/compressed/aslr.c b/arch/x86/boot/compressed/aslr.c
index 84be175..90a21f4 100644
--- a/arch/x86/boot/compressed/aslr.c
+++ b/arch/x86/boot/compressed/aslr.c
@@ -10,7 +10,6 @@
#include <linux/uts.h>
#include <linux/utsname.h>
#include <generated/utsrelease.h>
-#include <linux/version.h>
/* Simplified build-specific string for starting entropy. */
static const char build_str[] = UTS_RELEASE " (" LINUX_COMPILE_BY "@"
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH -next] x86, kaslr: remove unused including <linux/version.h>
2013-12-07 13:02 [PATCH -next] x86, kaslr: remove unused including <linux/version.h> Wei Yongjun
@ 2013-12-09 18:03 ` Kees Cook
2014-01-14 18:48 ` [tip:x86/kaslr] x86, kaslr: Remove unused including <linux/ version.h> tip-bot for Wei Yongjun
1 sibling, 0 replies; 3+ messages in thread
From: Kees Cook @ 2013-12-09 18:03 UTC (permalink / raw)
To: Wei Yongjun
Cc: H. Peter Anvin, Thomas Gleixner, Ingo Molnar, yongjun_wei, x86, LKML
On Sat, Dec 7, 2013 at 5:02 AM, Wei Yongjun <weiyj.lk@gmail.com> wrote:
> From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
>
> Remove including <linux/version.h> that don't need it.
>
> Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Thanks, yeah, ultimately utsrelease.h had everything that was needed.
Acked-by: Kees Cook <keescook@chromium.org>
> ---
> arch/x86/boot/compressed/aslr.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/x86/boot/compressed/aslr.c b/arch/x86/boot/compressed/aslr.c
> index 84be175..90a21f4 100644
> --- a/arch/x86/boot/compressed/aslr.c
> +++ b/arch/x86/boot/compressed/aslr.c
> @@ -10,7 +10,6 @@
> #include <linux/uts.h>
> #include <linux/utsname.h>
> #include <generated/utsrelease.h>
> -#include <linux/version.h>
>
> /* Simplified build-specific string for starting entropy. */
> static const char build_str[] = UTS_RELEASE " (" LINUX_COMPILE_BY "@"
>
-Kees
--
Kees Cook
Chrome OS Security
^ permalink raw reply [flat|nested] 3+ messages in thread* [tip:x86/kaslr] x86, kaslr: Remove unused including <linux/ version.h>
2013-12-07 13:02 [PATCH -next] x86, kaslr: remove unused including <linux/version.h> Wei Yongjun
2013-12-09 18:03 ` Kees Cook
@ 2014-01-14 18:48 ` tip-bot for Wei Yongjun
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Wei Yongjun @ 2014-01-14 18:48 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, hpa, mingo, keescook, yongjun_wei, tglx, hpa
Commit-ID: 19259943f0954dcd1817f94776376bf51c6a46d5
Gitweb: http://git.kernel.org/tip/19259943f0954dcd1817f94776376bf51c6a46d5
Author: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
AuthorDate: Sat, 7 Dec 2013 21:02:36 +0800
Committer: H. Peter Anvin <hpa@linux.intel.com>
CommitDate: Tue, 14 Jan 2014 10:45:56 -0800
x86, kaslr: Remove unused including <linux/version.h>
Remove including <linux/version.h> that don't need it.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Link: http://lkml.kernel.org/r/CAPgLHd-Fjx1RybjWFAu1vHRfTvhWwMLL3x46BouC5uNxHPjy1A@mail.gmail.com
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
---
arch/x86/boot/compressed/aslr.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/boot/compressed/aslr.c b/arch/x86/boot/compressed/aslr.c
index 84be175..90a21f4 100644
--- a/arch/x86/boot/compressed/aslr.c
+++ b/arch/x86/boot/compressed/aslr.c
@@ -10,7 +10,6 @@
#include <linux/uts.h>
#include <linux/utsname.h>
#include <generated/utsrelease.h>
-#include <linux/version.h>
/* Simplified build-specific string for starting entropy. */
static const char build_str[] = UTS_RELEASE " (" LINUX_COMPILE_BY "@"
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-14 18:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-07 13:02 [PATCH -next] x86, kaslr: remove unused including <linux/version.h> Wei Yongjun
2013-12-09 18:03 ` Kees Cook
2014-01-14 18:48 ` [tip:x86/kaslr] x86, kaslr: Remove unused including <linux/ version.h> tip-bot for Wei Yongjun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®