* [PATCH 5/5] net-next:asix: v2 update VERSION only
@ 2011-11-15 0:52 Grant Grundler
2011-11-16 0:29 ` Valdis.Kletnieks
0 siblings, 1 reply; 5+ messages in thread
From: Grant Grundler @ 2011-11-15 0:52 UTC (permalink / raw)
To: davem; +Cc: netdev, linux-kernel, Allan Chou, Freddy Xin, Grant Grundler
Update VERSION to reflect previous changes.
Signed-off-by: Grant Grundler <grundler@chromium.org>
---
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -36,7 +36,7 @@
#include <linux/usb/usbnet.h>
#include <linux/slab.h>
-#define DRIVER_VERSION "26-Sep-2011"
+#define DRIVER_VERSION "08-Nov-2011"
#define DRIVER_NAME "asix"
/* ASIX AX8817X based USB 2.0 Ethernet Devices */
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5/5] net-next:asix: v2 update VERSION only
2011-11-15 0:52 [PATCH 5/5] net-next:asix: v2 update VERSION only Grant Grundler
@ 2011-11-16 0:29 ` Valdis.Kletnieks
2011-11-16 0:34 ` Rick Jones
2011-11-16 1:37 ` Grant Grundler
0 siblings, 2 replies; 5+ messages in thread
From: Valdis.Kletnieks @ 2011-11-16 0:29 UTC (permalink / raw)
To: Grant Grundler; +Cc: davem, netdev, linux-kernel, Allan Chou, Freddy Xin
[-- Attachment #1: Type: text/plain, Size: 212 bytes --]
On Mon, 14 Nov 2011 16:52:37 PST, Grant Grundler said:
> -#define DRIVER_VERSION "26-Sep-2011"
> +#define DRIVER_VERSION "08-Nov-2011"
Aren't these sort of things more than a tad silly for an in-kernel driver?
[-- Attachment #2: Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5/5] net-next:asix: v2 update VERSION only
2011-11-16 0:29 ` Valdis.Kletnieks
@ 2011-11-16 0:34 ` Rick Jones
2011-11-16 1:37 ` Grant Grundler
1 sibling, 0 replies; 5+ messages in thread
From: Rick Jones @ 2011-11-16 0:34 UTC (permalink / raw)
To: Valdis.Kletnieks
Cc: Grant Grundler, davem, netdev, linux-kernel, Allan Chou,
Freddy Xin
On 11/15/2011 04:29 PM, Valdis.Kletnieks@vt.edu wrote:
> On Mon, 14 Nov 2011 16:52:37 PST, Grant Grundler said:
>
>> -#define DRIVER_VERSION "26-Sep-2011"
>> +#define DRIVER_VERSION "08-Nov-2011"
>
> Aren't these sort of things more than a tad silly for an in-kernel driver?
Probably depends on whether or not a distro back-ports something from
upstream.
rick jones
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5/5] net-next:asix: v2 update VERSION only
2011-11-16 0:29 ` Valdis.Kletnieks
2011-11-16 0:34 ` Rick Jones
@ 2011-11-16 1:37 ` Grant Grundler
2011-11-17 3:18 ` Valdis.Kletnieks
1 sibling, 1 reply; 5+ messages in thread
From: Grant Grundler @ 2011-11-16 1:37 UTC (permalink / raw)
To: Valdis.Kletnieks; +Cc: davem, netdev, linux-kernel, Allan Chou, Freddy Xin
On Tue, Nov 15, 2011 at 4:29 PM, <Valdis.Kletnieks@vt.edu> wrote:
> On Mon, 14 Nov 2011 16:52:37 PST, Grant Grundler said:
>
>> -#define DRIVER_VERSION "26-Sep-2011"
>> +#define DRIVER_VERSION "08-Nov-2011"
>
> Aren't these sort of things more than a tad silly for an in-kernel driver?
Definitely not. Supporting linux device drivers essentially requires
some mechanism like this. We could use anything (SHA1, Mayan Calendar,
etc). This driver happens to use a ISO-like date code.
Upstream drivers are routinely back ported to distro releases. Version
is the primary means for a vendor (like ASIX) to determine what was
back ported. Distro maintainers and 1st tier support organizations
also need to track versions and "ethtool -i" is the canonical way to
look this up on a running system.
grant
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 5/5] net-next:asix: v2 update VERSION only
2011-11-16 1:37 ` Grant Grundler
@ 2011-11-17 3:18 ` Valdis.Kletnieks
0 siblings, 0 replies; 5+ messages in thread
From: Valdis.Kletnieks @ 2011-11-17 3:18 UTC (permalink / raw)
To: Grant Grundler; +Cc: davem, netdev, linux-kernel, Allan Chou, Freddy Xin
[-- Attachment #1: Type: text/plain, Size: 619 bytes --]
On Tue, 15 Nov 2011 17:37:47 PST, Grant Grundler said:
> Upstream drivers are routinely back ported to distro releases. Version
> is the primary means for a vendor (like ASIX) to determine what was
> back ported. Distro maintainers and 1st tier support organizations
> also need to track versions and "ethtool -i" is the canonical way to
> look this up on a running system.
Oh, OK. I figured the distro would know what they backported based on the
kernel version they generated - I forgot that sometimes users will bypass the
distro and go to the upstream vendor, and you may not know what their distro
had done...
[-- Attachment #2: Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-11-17 3:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-15 0:52 [PATCH 5/5] net-next:asix: v2 update VERSION only Grant Grundler
2011-11-16 0:29 ` Valdis.Kletnieks
2011-11-16 0:34 ` Rick Jones
2011-11-16 1:37 ` Grant Grundler
2011-11-17 3:18 ` Valdis.Kletnieks
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).