All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] include/version.h: Update for kernel 3.7
@ 2012-10-15 21:43 Larry Finger
  2012-10-15 21:54 ` Borislav Petkov
  2012-10-16  2:53 ` Theodore Ts'o
  0 siblings, 2 replies; 4+ messages in thread
From: Larry Finger @ 2012-10-15 21:43 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

The value for LINUX_VERSION_CODE was not updated for kernel 3.7-rc1.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
---
 version.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---

Index: linux-2.6/include/linux/version.h
===================================================================
--- linux-2.6.orig/include/linux/version.h
+++ linux-2.6/include/linux/version.h
@@ -1,2 +1,2 @@
-#define LINUX_VERSION_CODE 198144
+#define LINUX_VERSION_CODE 198400
 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

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

* Re: [PATCH] include/version.h: Update for kernel 3.7
  2012-10-15 21:43 [PATCH] include/version.h: Update for kernel 3.7 Larry Finger
@ 2012-10-15 21:54 ` Borislav Petkov
  2012-10-16  2:43   ` Larry Finger
  2012-10-16  2:53 ` Theodore Ts'o
  1 sibling, 1 reply; 4+ messages in thread
From: Borislav Petkov @ 2012-10-15 21:54 UTC (permalink / raw)
  To: Larry Finger; +Cc: torvalds, linux-kernel

On Mon, Oct 15, 2012 at 04:43:27PM -0500, Larry Finger wrote:
> The value for LINUX_VERSION_CODE was not updated for kernel 3.7-rc1.

That's probably fallout from the whole UAPI thing.

> 
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> ---
>  version.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> ---
> 
> Index: linux-2.6/include/linux/version.h
> ===================================================================
> --- linux-2.6.orig/include/linux/version.h
> +++ linux-2.6/include/linux/version.h
> @@ -1,2 +1,2 @@

There are two version.h files on my box:

> -#define LINUX_VERSION_CODE 198144

This is in <include/linux/version.h>

> +#define LINUX_VERSION_CODE 198400

This is in <include/generated/uapi/linux/version.h>

I'd guess that everything should include this new version.h file now
since the Makefile generates this now and not the one above.

But I could very well be wrong.

-- 
Regards/Gruss,
    Boris.

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

* Re: [PATCH] include/version.h: Update for kernel 3.7
  2012-10-15 21:54 ` Borislav Petkov
@ 2012-10-16  2:43   ` Larry Finger
  0 siblings, 0 replies; 4+ messages in thread
From: Larry Finger @ 2012-10-16  2:43 UTC (permalink / raw)
  To: Borislav Petkov, torvalds, linux-kernel

On 10/15/2012 04:54 PM, Borislav Petkov wrote:
> On Mon, Oct 15, 2012 at 04:43:27PM -0500, Larry Finger wrote:
>> The value for LINUX_VERSION_CODE was not updated for kernel 3.7-rc1.
>
> That's probably fallout from the whole UAPI thing.
>
>>
>> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
>> ---
>>   version.h |    2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>> ---
>>
>> Index: linux-2.6/include/linux/version.h
>> ===================================================================
>> --- linux-2.6.orig/include/linux/version.h
>> +++ linux-2.6/include/linux/version.h
>> @@ -1,2 +1,2 @@
>
> There are two version.h files on my box:
>
>> -#define LINUX_VERSION_CODE 198144
>
> This is in <include/linux/version.h>
>
>> +#define LINUX_VERSION_CODE 198400
>
> This is in <include/generated/uapi/linux/version.h>
>
> I'd guess that everything should include this new version.h file now
> since the Makefile generates this now and not the one above.
>
> But I could very well be wrong.

It seems to be fixed now.

Thanks,

Larry



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

* Re: [PATCH] include/version.h: Update for kernel 3.7
  2012-10-15 21:43 [PATCH] include/version.h: Update for kernel 3.7 Larry Finger
  2012-10-15 21:54 ` Borislav Petkov
@ 2012-10-16  2:53 ` Theodore Ts'o
  1 sibling, 0 replies; 4+ messages in thread
From: Theodore Ts'o @ 2012-10-16  2:53 UTC (permalink / raw)
  To: Larry Finger; +Cc: torvalds, linux-kernel

On Mon, Oct 15, 2012 at 04:43:27PM -0500, Larry Finger wrote:
> The value for LINUX_VERSION_CODE was not updated for kernel 3.7-rc1.
> 
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> ---
>  version.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> ---
> 
> Index: linux-2.6/include/linux/version.h
> ===================================================================
> --- linux-2.6.orig/include/linux/version.h
> +++ linux-2.6/include/linux/version.h
> @@ -1,2 +1,2 @@
> -#define LINUX_VERSION_CODE 198144
> +#define LINUX_VERSION_CODE 198400
>  #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))

This isn't in the Linux git sources; it's a generated file.

     	      	  	       	     	    - Ted

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

end of thread, other threads:[~2012-10-16  2:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-15 21:43 [PATCH] include/version.h: Update for kernel 3.7 Larry Finger
2012-10-15 21:54 ` Borislav Petkov
2012-10-16  2:43   ` Larry Finger
2012-10-16  2:53 ` Theodore Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.