linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] Add kernel parameter for kernel version
@ 2014-05-27 19:40 eric.ernst
  2014-05-27 19:48 ` Josh Boyer
  0 siblings, 1 reply; 13+ messages in thread
From: eric.ernst @ 2014-05-27 19:40 UTC (permalink / raw)
  To: paul.gortmaker, akpm, linux-kernel, mark.gross; +Cc: eric.ernst

From: Eric Ernst <eric.ernst@linux.intel.com>

Create a kernel cmdline parameter, "version_addendum", which can be
used to add text to the kernel version that is reported from
/proc/version.

Signed-off-by: Eric Ernst <eric.ernst@linux.intel.com>
---
 fs/proc/version.c |   14 +++++++++++++-
 init/version.c    |    2 +-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/fs/proc/version.c b/fs/proc/version.c
index d2154eb6d78f..1ea545d471a1 100644
--- a/fs/proc/version.c
+++ b/fs/proc/version.c
@@ -5,12 +5,17 @@
 #include <linux/seq_file.h>
 #include <linux/utsname.h>
 
+#define ADDENDUM_LENGTH 20
+static char version_addendum[ADDENDUM_LENGTH];
+
 static int version_proc_show(struct seq_file *m, void *v)
 {
 	seq_printf(m, linux_proc_banner,
 		utsname()->sysname,
 		utsname()->release,
-		utsname()->version);
+		utsname()->version,
+		version_addendum);
+
 	return 0;
 }
 
@@ -26,6 +31,13 @@ static const struct file_operations version_proc_fops = {
 	.release	= single_release,
 };
 
+static int __init set_version_addendum(char *str)
+{
+	strncpy(version_addendum, str, ADDENDUM_LENGTH);
+	return 0;
+}
+early_param("version_addendum", set_version_addendum);
+
 static int __init proc_version_init(void)
 {
 	proc_create("version", 0, NULL, &version_proc_fops);
diff --git a/init/version.c b/init/version.c
index 1a4718e500fe..180059b69b7a 100644
--- a/init/version.c
+++ b/init/version.c
@@ -47,4 +47,4 @@ const char linux_banner[] =
 const char linux_proc_banner[] =
 	"%s version %s"
 	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
-	" (" LINUX_COMPILER ") %s\n";
+	" (" LINUX_COMPILER ") %s " "%s\n";
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/1] Add kernel parameter for kernel version
  2014-05-27 19:40 [PATCH 1/1] Add kernel parameter for kernel version eric.ernst
@ 2014-05-27 19:48 ` Josh Boyer
  2014-05-27 20:06   ` Randy Dunlap
  0 siblings, 1 reply; 13+ messages in thread
From: Josh Boyer @ 2014-05-27 19:48 UTC (permalink / raw)
  To: eric.ernst
  Cc: Paul Gortmaker, Andrew Morton, Linux-Kernel@Vger. Kernel. Org,
	mark.gross

On Tue, May 27, 2014 at 3:40 PM,  <eric.ernst@linux.intel.com> wrote:
> From: Eric Ernst <eric.ernst@linux.intel.com>
>
> Create a kernel cmdline parameter, "version_addendum", which can be
> used to add text to the kernel version that is reported from
> /proc/version.

Why?

What is the intended purpose of this and why would someone want to use it?

josh

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/1] Add kernel parameter for kernel version
  2014-05-27 19:48 ` Josh Boyer
@ 2014-05-27 20:06   ` Randy Dunlap
  2014-06-02 18:41     ` eric ernst
  0 siblings, 1 reply; 13+ messages in thread
From: Randy Dunlap @ 2014-05-27 20:06 UTC (permalink / raw)
  To: Josh Boyer, eric.ernst
  Cc: Paul Gortmaker, Andrew Morton, Linux-Kernel@Vger. Kernel. Org,
	mark.gross

On 05/27/2014 12:48 PM, Josh Boyer wrote:
> On Tue, May 27, 2014 at 3:40 PM,  <eric.ernst@linux.intel.com> wrote:
>> From: Eric Ernst <eric.ernst@linux.intel.com>
>>
>> Create a kernel cmdline parameter, "version_addendum", which can be
>> used to add text to the kernel version that is reported from
>> /proc/version.
> 
> Why?
> 
> What is the intended purpose of this and why would someone want to use it?

and if the patch were to continue to live, it needs a Documentation addition
to kernel-parameters.txt.

-- 
~Randy

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH 1/1] Add kernel parameter for kernel version
  2014-05-27 20:06   ` Randy Dunlap
@ 2014-06-02 18:41     ` eric ernst
  2014-06-05 22:09       ` [PATCH v1 " eric.ernst
  0 siblings, 1 reply; 13+ messages in thread
From: eric ernst @ 2014-06-02 18:41 UTC (permalink / raw)
  To: Randy Dunlap, Josh Boyer
  Cc: Paul Gortmaker, Andrew Morton, Linux-Kernel@Vger. Kernel. Org,
	mark.gross


On 14-05-27 01:06 PM, Randy Dunlap wrote:
> On 05/27/2014 12:48 PM, Josh Boyer wrote:
>> On Tue, May 27, 2014 at 3:40 PM,  <eric.ernst@linux.intel.com> wrote:
>>> From: Eric Ernst <eric.ernst@linux.intel.com>
>>>
>>> Create a kernel cmdline parameter, "version_addendum", which can be
>>> used to add text to the kernel version that is reported from
>>> /proc/version.
>> Why?
>>
>> What is the intended purpose of this and why would someone want to use it?
> and if the patch were to continue to live, it needs a Documentation addition
> to kernel-parameters.txt.
>
Randy - ACK.

Josh - we have a need to keep a single product binary (kernel) across 
multiple android devices.  A subset of these platforms are looking for 
extra versioning information appended to it, accessible via 
/proc/version.  Rather than build multiple otherwise identical kernels 
with only this extended versioning as differentiation, we are looking to 
make this a command line parameter.  Understandable if there isn't 
enough value-add for the community in this patch, but I figured I'd give 
the patch a shot, as we need this functionality locally.  Thanks.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-02 18:41     ` eric ernst
@ 2014-06-05 22:09       ` eric.ernst
  2014-06-05 22:16         ` Andrew Morton
  2014-06-05 22:17         ` Randy Dunlap
  0 siblings, 2 replies; 13+ messages in thread
From: eric.ernst @ 2014-06-05 22:09 UTC (permalink / raw)
  To: rdunlap, akpm, jwboyer, linux-kernel; +Cc: Eric Ernst

From: Eric Ernst <eric.ernst@linux.intel.com>

Create a kernel cmdline parameter, "version_addendum", which can be
used to add text to the kernel version that is reported from
/proc/version.

Signed-off-by: Eric Ernst <eric.ernst@linux.intel.com>
---
 fs/proc/version.c |   14 +++++++++++++-
 init/version.c    |    2 +-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/fs/proc/version.c b/fs/proc/version.c
index d2154eb6d78f..442e69e3eecb 100644
--- a/fs/proc/version.c
+++ b/fs/proc/version.c
@@ -5,12 +5,17 @@
 #include <linux/seq_file.h>
 #include <linux/utsname.h>
 
+#define ADDENDUM_LENGTH 20
+static char version_addendum[ADDENDUM_LENGTH];
+
 static int version_proc_show(struct seq_file *m, void *v)
 {
 	seq_printf(m, linux_proc_banner,
 		utsname()->sysname,
 		utsname()->release,
-		utsname()->version);
+		utsname()->version,
+		version_addendum);
+
 	return 0;
 }
 
@@ -26,6 +31,13 @@ static const struct file_operations version_proc_fops = {
 	.release	= single_release,
 };
 
+static int __init set_version_addendum(char *str)
+{
+	strncpy(version_addendum, str, ADDENDUM_LENGTH-1);
+	return 0;
+}
+early_param("version_addendum", set_version_addendum);
+
 static int __init proc_version_init(void)
 {
 	proc_create("version", 0, NULL, &version_proc_fops);
diff --git a/init/version.c b/init/version.c
index 1a4718e500fe..180059b69b7a 100644
--- a/init/version.c
+++ b/init/version.c
@@ -47,4 +47,4 @@ const char linux_banner[] =
 const char linux_proc_banner[] =
 	"%s version %s"
 	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
-	" (" LINUX_COMPILER ") %s\n";
+	" (" LINUX_COMPILER ") %s " "%s\n";
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:16         ` Andrew Morton
@ 2014-06-05 22:15           ` eric ernst
  2014-06-05 22:29             ` Randy Dunlap
  2014-06-05 22:30             ` David Rientjes
  0 siblings, 2 replies; 13+ messages in thread
From: eric ernst @ 2014-06-05 22:15 UTC (permalink / raw)
  To: Andrew Morton; +Cc: rdunlap, jwboyer, linux-kernel


On 14-06-05 03:16 PM, Andrew Morton wrote:
> On Thu,  5 Jun 2014 15:09:17 -0700 eric.ernst@linux.intel.com wrote:
>
>> Create a kernel cmdline parameter, "version_addendum", which can be
>> used to add text to the kernel version that is reported from
>> /proc/version.
> why?
We have a need to keep a single product binary (kernel) across multiple 
android devices.  A subset of these platforms are looking for extra 
versioning information appended to it, accessible via /proc/version.  
Rather than build multiple otherwise identical kernels with only this 
extended versioning as differentiation, we are looking to make this a 
command line parameter.  Understandable if there isn't enough value-add 
for the community in this patch, but I figured I'd give the patch a 
shot, as we need this functionality locally.  Thanks.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:09       ` [PATCH v1 " eric.ernst
@ 2014-06-05 22:16         ` Andrew Morton
  2014-06-05 22:15           ` eric ernst
  2014-06-05 22:17         ` Randy Dunlap
  1 sibling, 1 reply; 13+ messages in thread
From: Andrew Morton @ 2014-06-05 22:16 UTC (permalink / raw)
  To: eric.ernst; +Cc: rdunlap, jwboyer, linux-kernel

On Thu,  5 Jun 2014 15:09:17 -0700 eric.ernst@linux.intel.com wrote:

> Create a kernel cmdline parameter, "version_addendum", which can be
> used to add text to the kernel version that is reported from
> /proc/version.

why?

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:17         ` Randy Dunlap
@ 2014-06-05 22:16           ` eric ernst
  0 siblings, 0 replies; 13+ messages in thread
From: eric ernst @ 2014-06-05 22:16 UTC (permalink / raw)
  To: Randy Dunlap, akpm, jwboyer, linux-kernel


On 14-06-05 03:17 PM, Randy Dunlap wrote:
> On 06/05/2014 03:09 PM, eric.ernst@linux.intel.com wrote:
>> From: Eric Ernst <eric.ernst@linux.intel.com>
>>
>> Create a kernel cmdline parameter, "version_addendum", which can be
>> used to add text to the kernel version that is reported from
>> /proc/version.
> and you still didn't update Documentation/kernel-parameters.txt.
>
Correct - I was waiting for the initial feedback of whether this would 
be useful to community before doing this, sorry for the thrash, Randy.
>> Signed-off-by: Eric Ernst <eric.ernst@linux.intel.com>
>> ---
>>   fs/proc/version.c |   14 +++++++++++++-
>>   init/version.c    |    2 +-
>>   2 files changed, 14 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/proc/version.c b/fs/proc/version.c
>> index d2154eb6d78f..442e69e3eecb 100644
>> --- a/fs/proc/version.c
>> +++ b/fs/proc/version.c
>> @@ -5,12 +5,17 @@
>>   #include <linux/seq_file.h>
>>   #include <linux/utsname.h>
>>   
>> +#define ADDENDUM_LENGTH 20
>> +static char version_addendum[ADDENDUM_LENGTH];
>> +
>>   static int version_proc_show(struct seq_file *m, void *v)
>>   {
>>   	seq_printf(m, linux_proc_banner,
>>   		utsname()->sysname,
>>   		utsname()->release,
>> -		utsname()->version);
>> +		utsname()->version,
>> +		version_addendum);
>> +
>>   	return 0;
>>   }
>>   
>> @@ -26,6 +31,13 @@ static const struct file_operations version_proc_fops = {
>>   	.release	= single_release,
>>   };
>>   
>> +static int __init set_version_addendum(char *str)
>> +{
>> +	strncpy(version_addendum, str, ADDENDUM_LENGTH-1);
>> +	return 0;
>> +}
>> +early_param("version_addendum", set_version_addendum);
>> +
>>   static int __init proc_version_init(void)
>>   {
>>   	proc_create("version", 0, NULL, &version_proc_fops);
>> diff --git a/init/version.c b/init/version.c
>> index 1a4718e500fe..180059b69b7a 100644
>> --- a/init/version.c
>> +++ b/init/version.c
>> @@ -47,4 +47,4 @@ const char linux_banner[] =
>>   const char linux_proc_banner[] =
>>   	"%s version %s"
>>   	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
>> -	" (" LINUX_COMPILER ") %s\n";
>> +	" (" LINUX_COMPILER ") %s " "%s\n";
>>
>


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:09       ` [PATCH v1 " eric.ernst
  2014-06-05 22:16         ` Andrew Morton
@ 2014-06-05 22:17         ` Randy Dunlap
  2014-06-05 22:16           ` eric ernst
  1 sibling, 1 reply; 13+ messages in thread
From: Randy Dunlap @ 2014-06-05 22:17 UTC (permalink / raw)
  To: eric.ernst, akpm, jwboyer, linux-kernel

On 06/05/2014 03:09 PM, eric.ernst@linux.intel.com wrote:
> From: Eric Ernst <eric.ernst@linux.intel.com>
> 
> Create a kernel cmdline parameter, "version_addendum", which can be
> used to add text to the kernel version that is reported from
> /proc/version.

and you still didn't update Documentation/kernel-parameters.txt.

> Signed-off-by: Eric Ernst <eric.ernst@linux.intel.com>
> ---
>  fs/proc/version.c |   14 +++++++++++++-
>  init/version.c    |    2 +-
>  2 files changed, 14 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/proc/version.c b/fs/proc/version.c
> index d2154eb6d78f..442e69e3eecb 100644
> --- a/fs/proc/version.c
> +++ b/fs/proc/version.c
> @@ -5,12 +5,17 @@
>  #include <linux/seq_file.h>
>  #include <linux/utsname.h>
>  
> +#define ADDENDUM_LENGTH 20
> +static char version_addendum[ADDENDUM_LENGTH];
> +
>  static int version_proc_show(struct seq_file *m, void *v)
>  {
>  	seq_printf(m, linux_proc_banner,
>  		utsname()->sysname,
>  		utsname()->release,
> -		utsname()->version);
> +		utsname()->version,
> +		version_addendum);
> +
>  	return 0;
>  }
>  
> @@ -26,6 +31,13 @@ static const struct file_operations version_proc_fops = {
>  	.release	= single_release,
>  };
>  
> +static int __init set_version_addendum(char *str)
> +{
> +	strncpy(version_addendum, str, ADDENDUM_LENGTH-1);
> +	return 0;
> +}
> +early_param("version_addendum", set_version_addendum);
> +
>  static int __init proc_version_init(void)
>  {
>  	proc_create("version", 0, NULL, &version_proc_fops);
> diff --git a/init/version.c b/init/version.c
> index 1a4718e500fe..180059b69b7a 100644
> --- a/init/version.c
> +++ b/init/version.c
> @@ -47,4 +47,4 @@ const char linux_banner[] =
>  const char linux_proc_banner[] =
>  	"%s version %s"
>  	" (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
> -	" (" LINUX_COMPILER ") %s\n";
> +	" (" LINUX_COMPILER ") %s " "%s\n";
> 


-- 
~Randy

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:15           ` eric ernst
@ 2014-06-05 22:29             ` Randy Dunlap
  2014-06-05 22:56               ` eric ernst
  2014-06-05 22:30             ` David Rientjes
  1 sibling, 1 reply; 13+ messages in thread
From: Randy Dunlap @ 2014-06-05 22:29 UTC (permalink / raw)
  To: eric ernst, Andrew Morton; +Cc: jwboyer, linux-kernel

On 06/05/2014 03:15 PM, eric ernst wrote:
> 
> On 14-06-05 03:16 PM, Andrew Morton wrote:
>> On Thu,  5 Jun 2014 15:09:17 -0700 eric.ernst@linux.intel.com wrote:
>>
>>> Create a kernel cmdline parameter, "version_addendum", which can be
>>> used to add text to the kernel version that is reported from
>>> /proc/version.
>> why?
> We have a need to keep a single product binary (kernel) across multiple android devices.  A subset of these platforms are looking for extra versioning information appended to it, accessible via /proc/version.  Rather than build multiple otherwise identical kernels with only this extended versioning as differentiation, we are looking to make this a command line parameter.  Understandable if there isn't enough value-add for the community in this patch, but I figured I'd give the patch a shot, as we need this functionality locally.  Thanks.

Please use a newline character every 70-72 characters instead of assuming
that all email programs will break that extra long line up into a readable
format.  (mine does not.)

What software needs to know the version info?  how early does it run?
Could it get the version info from 'uname -r' instead of from /proc/version?

thanks,
-- 
~Randy

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:15           ` eric ernst
  2014-06-05 22:29             ` Randy Dunlap
@ 2014-06-05 22:30             ` David Rientjes
  1 sibling, 0 replies; 13+ messages in thread
From: David Rientjes @ 2014-06-05 22:30 UTC (permalink / raw)
  To: eric ernst; +Cc: Andrew Morton, rdunlap, jwboyer, linux-kernel

On Thu, 5 Jun 2014, eric ernst wrote:

> We have a need to keep a single product binary (kernel) across multiple
> android devices.  A subset of these platforms are looking for extra versioning
> information appended to it, accessible via /proc/version.  Rather than build
> multiple otherwise identical kernels with only this extended versioning as
> differentiation, we are looking to make this a command line parameter.
> Understandable if there isn't enough value-add for the community in this
> patch, but I figured I'd give the patch a shot, as we need this functionality
> locally.  Thanks.

Unrecognized parameters on the kernel command line are disregarded, so 
your platforms should be able to parse /proc/cmdline for 
version_addendum=foo already.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:29             ` Randy Dunlap
@ 2014-06-05 22:56               ` eric ernst
  2014-06-05 23:06                 ` Richard Weinberger
  0 siblings, 1 reply; 13+ messages in thread
From: eric ernst @ 2014-06-05 22:56 UTC (permalink / raw)
  To: Randy Dunlap, Andrew Morton; +Cc: jwboyer, linux-kernel


On 14-06-05 03:29 PM, Randy Dunlap wrote:
> On 06/05/2014 03:15 PM, eric ernst wrote:
>> On 14-06-05 03:16 PM, Andrew Morton wrote:
>>> On Thu,  5 Jun 2014 15:09:17 -0700 eric.ernst@linux.intel.com wrote:
>>>
>>>> Create a kernel cmdline parameter, "version_addendum", which can be
>>>> used to add text to the kernel version that is reported from
>>>> /proc/version.
>>> why?
>> We have a need to keep a single product binary (kernel) across multiple android devices.  A subset of these platforms are looking for extra versioning information appended to it, accessible via /proc/version.  Rather than build multiple otherwise identical kernels with only this extended versioning as differentiation, we are looking to make this a command line parameter.  Understandable if there isn't enough value-add for the community in this patch, but I figured I'd give the patch a shot, as we need this functionality locally.  Thanks.
> Please use a newline character every 70-72 characters instead of assuming
> that all email programs will break that extra long line up into a readable
> format.  (mine does not.)
Ack - sorry Randy - it was a quick cp / paste from earlier in the thread.
>
> What software needs to know the version info?  how early does it run?
> Could it get the version info from 'uname -r' instead of from /proc/version?
>
> thanks,
This'll end up being used by a third party customer for tracking 
particular devices, so I'm sure "much, much later" in user space. While 
I'm sure they could use uname instead, the specific request was for 
/proc/version.

The more I look into this patch, the more I think this is a pretty 
specific use case that probably doesn't have a lot of community 
value-add outside of our scenario.  Thanks for the feedback.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH v1 1/1] Add kernel parameter for kernel version
  2014-06-05 22:56               ` eric ernst
@ 2014-06-05 23:06                 ` Richard Weinberger
  0 siblings, 0 replies; 13+ messages in thread
From: Richard Weinberger @ 2014-06-05 23:06 UTC (permalink / raw)
  To: eric ernst; +Cc: Randy Dunlap, Andrew Morton, Josh Boyer, LKML

On Fri, Jun 6, 2014 at 12:56 AM, eric ernst <eric.ernst@linux.intel.com> wrote:
>
> On 14-06-05 03:29 PM, Randy Dunlap wrote:
>>
>> On 06/05/2014 03:15 PM, eric ernst wrote:
>>>
>>> On 14-06-05 03:16 PM, Andrew Morton wrote:
>>>>
>>>> On Thu,  5 Jun 2014 15:09:17 -0700 eric.ernst@linux.intel.com wrote:
>>>>
>>>>> Create a kernel cmdline parameter, "version_addendum", which can be
>>>>> used to add text to the kernel version that is reported from
>>>>> /proc/version.
>>>>
>>>> why?
>>>
>>> We have a need to keep a single product binary (kernel) across multiple
>>> android devices.  A subset of these platforms are looking for extra
>>> versioning information appended to it, accessible via /proc/version.  Rather
>>> than build multiple otherwise identical kernels with only this extended
>>> versioning as differentiation, we are looking to make this a command line
>>> parameter.  Understandable if there isn't enough value-add for the community
>>> in this patch, but I figured I'd give the patch a shot, as we need this
>>> functionality locally.  Thanks.
>>
>> Please use a newline character every 70-72 characters instead of assuming
>> that all email programs will break that extra long line up into a readable
>> format.  (mine does not.)
>
> Ack - sorry Randy - it was a quick cp / paste from earlier in the thread.
>
>>
>> What software needs to know the version info?  how early does it run?
>> Could it get the version info from 'uname -r' instead of from
>> /proc/version?
>>
>> thanks,
>
> This'll end up being used by a third party customer for tracking particular
> devices, so I'm sure "much, much later" in user space. While I'm sure they
> could use uname instead, the specific request was for /proc/version.


sandpuppy:/home/rw # echo "Windows" > /tmp/version
sandpuppy:/home/rw # mount --bind /tmp/version /proc/version
sandpuppy:/home/rw # cat /proc/version
Windows

-- 
Thanks,
//richard

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2014-06-05 23:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-27 19:40 [PATCH 1/1] Add kernel parameter for kernel version eric.ernst
2014-05-27 19:48 ` Josh Boyer
2014-05-27 20:06   ` Randy Dunlap
2014-06-02 18:41     ` eric ernst
2014-06-05 22:09       ` [PATCH v1 " eric.ernst
2014-06-05 22:16         ` Andrew Morton
2014-06-05 22:15           ` eric ernst
2014-06-05 22:29             ` Randy Dunlap
2014-06-05 22:56               ` eric ernst
2014-06-05 23:06                 ` Richard Weinberger
2014-06-05 22:30             ` David Rientjes
2014-06-05 22:17         ` Randy Dunlap
2014-06-05 22:16           ` eric ernst

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).