lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 3 Jun 2008 21:14:08 +0300
From:	Adrian Bunk <bunk@...nel.org>
To:	Jeff Garzik <jgarzik@...ox.com>
Cc:	netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [2.6 patch] drivers/net/: remove CVS keywords

On Thu, May 22, 2008 at 06:09:36AM -0400, Jeff Garzik wrote:
> Adrian Bunk wrote:
>> This patch removes some CVS keywords that weren't updated for a long  
>> time.
>>
>> I haven't touched drivers that looked as if they might still be used.
>>
>> In three drivers I've also removed printk's printing them since they  
>> were part of several printk's in a row and it doesn't make sense to  
>> print ancient version information to the user.
>>
>> Signed-off-by: Adrian Bunk <bunk@...nel.org>
>
> I'm fine with removing CVS keywords, but I do not agree with removing  
> net driver version numbers that have been in the drivers for a while.

Below is the part of the patches that removes these printk's.

Do CVS $Revision tags that haven't been updated for ages really qualify 
as net driver version numbers?

I can resend the patch with these changes removed, I'm just asking 
whether you might confuse this with regular version numbers.

> 	Jeff

cu
Adrian

--- a/drivers/net/82596.c
+++ b/drivers/net/82596.c
@@ -59,9 +59,6 @@
 #include <asm/pgtable.h>
 #include <asm/cacheflush.h>
 
-static char version[] __initdata =
-	"82596.c $Revision: 1.5 $\n";
-
 #define DRV_NAME	"82596"
 
 /* DEBUG flags
@@ -1227,8 +1224,6 @@ struct net_device * __init i82596_probe(int unit)
 
 	DEB(DEB_PROBE,printk(" IRQ %d.\n", dev->irq));
 
-	DEB(DEB_PROBE,printk(KERN_INFO "%s", version));
-
 	/* The 82596-specific entries in the device structure. */
 	dev->open = i596_open;
 	dev->stop = i596_close;
--- a/drivers/net/de600.c
+++ b/drivers/net/de600.c
@@ -1,4 +1,3 @@
-static const char version[] = "de600.c: $Revision: 1.41-2.5 $,  Bjorn Ekwall (bj0rn@...x.se)\n";
 /*
  *	de600.c
  *
@@ -398,9 +397,6 @@ static struct net_device * __init de600_probe(void)
 	}
 
 	printk(KERN_INFO "%s: D-Link DE-600 pocket adapter", dev->name);
-	/* Alpha testers must have the version number to report bugs. */
-	if (de600_debug > 1)
-		printk(version);
 
 	/* probe for adapter */
 	err = -ENODEV;
--- a/drivers/net/de620.c
+++ b/drivers/net/de620.c
@@ -38,8 +35,6 @@
  *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
  *****************************************************************************/
-static const char version[] =
-	"de620.c: $Revision: 1.40 $,  Bjorn Ekwall <bj0rn@...x.se>\n";
 
 /***********************************************************************
  *
@@ -828,9 +823,6 @@ struct net_device * __init de620_probe(int unit)
 		netdev_boot_setup_check(dev);
 	}
 
-	if (de620_debug)
-		printk(version);
-
 	printk(KERN_INFO "D-Link DE-620 pocket adapter");
 
 	if (!request_region(dev->base_addr, 3, "de620")) {
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ