linux-netdev mailing list

FromSubjectsort iconDate
Milan Kocian
4-port pci card (4x Via VT6105) and SIS964 chipset problem
hello everyone, after loading of via-rhine module I see: MMIO do not match PIO [06] (ff != 00) via-rhine: probe of 0000:02:08.0 failed with error -5 MMIO do not match PIO [06] (ff != 00) via-rhine: probe of 0000:02:09.0 failed with error -5 MMIO do not match PIO [06] (ff != 6c) via-rhine: probe of 0000:02:0a.0 failed with error -5 And only one port is functional. So I tried to disable MMIO & PIO check in via-rhine.c : /* while (mmio_verify_registers[i]) { int reg ...
Apr 14, 12:12 pm 2008
Greg KH
[RFC] Patch to option HSO driver to the kernel
Hi all, Here's a patch that I have cleaned up for context only from Option that is a USB serial / network device all in one. I'd like to see this go into 2.6.26, so any review comments by anyone who wishes to review any portion of this would be greatly apprecited. Filip, can you send me some better information for the Kconfig text talking about what devices this driver is for, and any other information you wish to show there? thanks, greg k-h ----------- Subject: USB: add option hso d...
Apr 14, 5:32 pm 2008
Paulius Zaleckas
Re: [RFC] Patch to option HSO driver to the kernel
In attached patch I have rewrote MAC address generation to simple call to random_ether_addr instead of some mysterious pointer parsing :) Paulius
Apr 14, 7:20 pm 2008
Matthew Dharm
Re: [RFC] Patch to option HSO driver to the kernel
I will be the first to admit that I'm picking a nit here, but... Would it be possible to pick one of "High Speed Option" and "Option... High Speed" and then be consistent with the acronym of "hso" or "ohs"? Or maybe call it "option_hs" or something even more clear? Mixing them just makes it more difficult for people to use grep and google. Matt --=20 Matthew Dharm Home: mdharm-usb@one-eyed-alien.= net=20 Maintainer, Linux USB Mass Storage Driver DP: And ju...
Apr 14, 5:59 pm 2008
Andrew Bird (Sphere ...
Re: [RFC] Patch to option HSO driver to the kernel
Hi Matthew, I'd prefer the keep it as just 'hso' and change the textual description if necessary. I think module names are just arbitrary, and should not necessarily reflect the original usage too well, otherwise you end up with a situation like with the 'option' module. That module is now used for many devices from differing manufacturers and it doesn't really make much sense to load the option module to service a device from Novatel, Sierra Wireless or Huawei. Just my two pence, Andr...
Apr 14, 6:42 pm 2008
Greg KH
Re: [RFC] Patch to option HSO driver to the kernel
Ok, that's fine with me, what should we use for the text in the driver and the Kconfig entry? thanks, greg k-h --
Apr 14, 7:03 pm 2008
Allan Stephens
[PATCH 0/7 net-2.6.26] [TIPC]: More socket code enhancements
This patch set includes a number fixes/cleanups to TIPC's socket code. The first 6 are fairly trivial, while the last one does a complete overhaul of the locking TIPC uses to make it more Linux-like. Please see each individual patch for a further description. Summary: include/net/tipc/tipc_port.h | 6 net/tipc/port.c | 31 + net/tipc/socket.c | 1113 ++++++++++++++++++++++++------------------ 3 files changed, 667 insertions(+), 483 deletions(-) Allan Stephens...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 6/7 net-2.6.26] [TIPC]: Cosmetic changes to TIPC conn...
This patch fixes TIPC's connect routine to conform to Linux kernel style norms of indentation, line length, etc. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 143 +++++++++++++++++++++++++++-------------------------- 1 files changed, 72 insertions(+), 71 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 348e4ff..df19603 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1248,77 +1248,78 @@ static void wakeupdispatch(st...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 5/7 net-2.6.26] [TIPC]: Add error check to detect non...
This patch causes TIPC to return an error indication if the non- blocking form of connect() is requested (which TIPC does not yet support). Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 4c83aba..348e4ff 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1260,6 +1260,11 @@ static int connect(struct socket *sock, struct socka...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 4/7 net-2.6.26] [TIPC]: Correct "off by 1" error in s...
This patch fixes a bug that allowed TIPC to queue 1 more message than allowed by the socket receive queue threshold limits. The patch also improves the threshold code's logic and naming to help prevent this sort of error from recurring in the future. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 22 ++++++++++------------ 1 files changed, 10 insertions(+), 12 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index ead22e5..4c83aba 1...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 7/7 net-2.6.26] [TIPC]: Overhaul of socket locking lo...
This patch modifies TIPC's socket code to follow the same approach used by other protocols. This change eliminates the need for a mutex in the TIPC-specific portion of the socket protocol data structure -- in its place, the standard Linux socket backlog queue and associated locking routines are utilized. These changes fix a long-standing receive queue bug on SMP systems, and also enable individual read and write threads to utilize a socket without unnecessarily interfering with each other. Signe...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 3/7 net-2.6.26] [TIPC]: Ignore message padding when r...
This patch ensures that padding bytes appearing at the end of an incoming TIPC message are not returned as valid stream data. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index c1a199c..ead22e5 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1027,7 +1027,7 @@ restart: if (!err) { buf_crs = (unsigned char *)(TIPC_SKB_CB(...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 1/7 net-2.6.26] [TIPC]: Skip connection flow control ...
This patch optimizes the receive path for SOCK_DGRAM and SOCK_RDM messages by skipping over code that handles connection-based flow control. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index ca6f52f..91aa2dc 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -919,7 +919,8 @@ restart: /* Consume received message (optional) */ ...
Apr 14, 5:16 pm 2008
Allan Stephens
[PATCH 2/7 net-2.6.26] [TIPC]: Allow stream receive to read ...
This patch allows a stream socket to receive data from multiple TIPC messages in its receive queue, without requiring the use of the MSG_WAITALL flag. Acknowledgements to Florian Westphal <fw-tipc@strlen.de> for identifying this issue and suggesting how to correct it. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> --- net/tipc/socket.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 91aa2dc..c1a...
Apr 14, 5:16 pm 2008
Alexey Dobriyan
2.6.25-rc8-mm2: FIX kmalloc-2048 (was Re: 2.6.25-rc8-mm2: IP...
I can reproduce semi-reliably (by kernel standards) corruption in kmalloc-2048. No idea if this can explain all "struct file" related oopses I saw, or SLUB free pointer corruption Pekka and Christoph are looking into. 8139too and atl1 drivers are in use. 8139too connects to outer world, atl1 -- to laptop collecting netconsole logs. However, I never managed to collect late oopses with netconsole even if init scripts which are shutting down interfaces are disabled. :-( Transcribed from photo: ...
Apr 14, 3:56 pm 2008
Christoph Lameter
Re: 2.6.25-rc8-mm2: FIX kmalloc-2048 (was Re: 2.6.25-rc8-mm2...
Looks like skb corruption. Would be helpful to have the complete output though. Does the data in the restored range trigger any memories? --
Apr 14, 4:05 pm 2008
Adrian Bunk
[RFC: 2.6 patch] remove irlan_eth_send_gratuitous_arp()
Even kernel 2.2.26 (sic) already contains the #undef CONFIG_IRLAN_SEND_GRATUITOUS_ARP with the comment "but for some reason the machine crashes if you use DHCP". Either someone finally looks into this or it's simply time to remove this dead code. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 - 1 Mar 2008 include/net/irda/irlan_eth.h | 1 - net/irda/irlan/irlan_common....
Apr 14, 2:40 pm 2008
Anton Vorontsov
[PATCH rebased][POWERPC] qe_lib and ucc_geth: switch to the ...
This is very trivial patch. We're transitioning to the cpm_muram_* calls. That's it. Less trivial changes: - BD_SC_* defines were defined in the cpm.h and qe.h, so to avoid redefines we remove BD_SC from the qe.h and use cpm.h along with cpm_muram_* prototypes; - qe_muram_dump was unused and thus removed; - added some code to the cpm_common.c to support legacy QE bindings (data-only node name). Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> --- Rebased on top of today...
Apr 14, 2:18 pm 2008
Adrian Bunk
[2.6 patch] forgotten bits of Sangoma drivers removal
Robert P. J. Day spotted that my removal of the Sangoma drivers missed a few bits. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 - 25 Feb 2008 Documentation/networking/00-INDEX | 2 Documentation/networking/wan-router.txt | 621 ------------------------ include/linux/Kbuild | 1 include/linux/if_wanpipe.h | 124 ---- 4 files changed, 748 deletions(-) b448ba4228b3dfaacfa7e043e3aa23579d0...
Apr 14, 2:14 pm 2008
Arjan van de Ven
bugreport: The r8169.c driver is calling netif_receive_skb f...
The r8169.c driver is calling netif_receive_skb from hardirq and with interrupts off, which seems to be invalid (the comments of netif_receive_skb) certainly say so. The calltrace is like this: packet_rcv netif_receive_skb rtl8168_rx_interrupt rtl8168_interrupt handle_IRQ_event handle_fasteoi_irq do_IRQ Which triggers a warning in packet_rcv() since that does a local_bh_enable(), which gives a WARN_ON if irqs are disabled (rightfully so it seems). The code looks is in rtl8169_rx_interr...
Apr 14, 2:01 pm 2008
Stephen Hemminger
Re: bugreport: The r8169.c driver is calling netif_receive_s...
On Mon, 14 Apr 2008 11:01:16 -0700 rtl8169_rx_skb is defined as netif_receive_skb only if NAPI is enabled. But the backtrace has CONFIG_R8169_NAPI disabled. I also concerned that the reset_task calls rx_interrupt with different locking than normal interrupt. --
Apr 14, 2:22 pm 2008
Arjan van de Ven
Re: bugreport: The r8169.c driver is calling netif_receive_s...
what makes you think this config option is disabled ? --
Apr 14, 2:24 pm 2008
Stephen Hemminger
Re: bugreport: The r8169.c driver is calling netif_receive_s...
On Mon, 14 Apr 2008 11:24:04 -0700 The receive path for NAPI would be: netif_receive_skb rtl8169_rx_interrupt rtl8169_napi *** But we are both wrong *** This is not the mainline r8169 driver but more likely the out of tree vendor 8168 driver. There is no rtl8168_rx_interrupt in mainline. --
Apr 14, 2:31 pm 2008
Auke Kok
[PATCH 1/5] e1000e: cleanup several stats issues
From: Bruce Allan <bruce.w.allan@intel.com> Several stats registers are completely unused and we just waste pci bus time reading them. We also omit using the high 32 bits of the GORC/ GOTC counters. We can just read clear them and only read the low registers. Mii-tool can also break es2lan if it executes a MII PHY register ioctl while the device is in autonegotiation. Unfortunately it seems that several applications and installations still perform this ioctl call periodically and especially...
Apr 14, 1:05 pm 2008
Auke Kok
[PATCH 5/5] e1000e: lower ring minimum size to 64
The lower limit of 80 descriptors in the ring is only valid for one older 8254x chipset. All e1000e devices can use as low as 64 descriptors. Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> --- drivers/net/e1000e/e1000.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/e1000e/e1000.h b/drivers/net/e1000e/e1000.h index f6835c3..38bfd0d 100644 --- a/drivers/net/e1000e/e1000.h +++ b/drivers/net/e1000e/e1000.h @@ -64,11 +64,11 @@ struct e1000_info...
Apr 14, 1:06 pm 2008
Auke Kok
[PATCH 4/5] e1000e: Fix HW Error on es2lan, ARP capture issu...
From: David Graham <david.graham@intel.com> Several components to this complex fix. The es2lan cards occasionally gave a "HW Error" especially when forcing speed. Some users also reported that the BMC stole ARP packets. The fixes include setting the proper SW_FW bits to tell the BMC that we're active and not do any un-initialization at all, so the setup routine is largely changed. Signed-off-by: David Graham <david.graham@intel.com> Signed-off-by: Auke Kok <auke-jan.h.kok@intel....
Apr 14, 1:06 pm 2008
Auke Kok
[PATCH 3/5] e1000e: Allow TSO to trickle down to VLAN device
Fix TSO over VLAN's by propagating settings to our VLAN devices. Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> --- drivers/net/e1000e/ethtool.c | 16 ++++++++++++++++ drivers/net/e1000e/netdev.c | 8 ++++++++ 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/drivers/net/e1000e/ethtool.c b/drivers/net/e1000e/ethtool.c index ce045ac..23e9703 100644 --- a/drivers/net/e1000e/ethtool.c +++ b/drivers/net/e1000e/ethtool.c @@ -32,6 +32,7 @@ #include <linux/ethtool...
Apr 14, 1:06 pm 2008
Patrick McHardy
Re: [PATCH 3/5] e1000e: Allow TSO to trickle down to VLAN de...
What exactly is this supposed to fix? If this simply wants to propagate feature changes, I think it should use netdev_feat_change and handle that within the VLAN code. --
Apr 14, 1:11 pm 2008
Auke Kok
[PATCH 2/5] e1000e: Add interrupt moderation run-time ethtoo...
The ethtool -c / -C interface can now be used to modify the irq moderation algorithm. This change does not require an adapter reset and can thus be used at all times. The adapter only supports changing/reading rx-usecs which has special values for 0, 1 and 3: 0 - no irq moderation whatsoever 1 - normal moderation favoring regular mixed traffic (default) 3 - best attempt at low latency possible at cost of CPU For values between 10 and 10000 the rx-usecs defines "the minimum time between successi...
Apr 14, 1:06 pm 2008
Andi Kleen
Re: [PATCH 2/5] e1000e: Add interrupt moderation run-time et...
It would be nice if ethtool instead of having this as a obscure magic number had a higher level "--low-latency" or similar parameter (that could also potentially set similar settings on other NICs) You think there would be a clean way to implement this? -Andi --
Apr 14, 3:24 pm 2008
Jeff Garzik
Re: [PATCH 2/5] e1000e: Add interrupt moderation run-time et...
That would be fine with me -- that's one of the goals of ethtool: make the setting of hardware-specific settings as generic and easy as possible. Jeff --
Apr 14, 3:35 pm 2008
Kok, Auke
Re: [PATCH 2/5] e1000e: Add interrupt moderation run-time et...
yes I think that's a good addition, and might hook better into power management and other high-level configuration tools. I'm all for that :) Auke --
Apr 14, 4:09 pm 2008
Andi Kleen
Re: [PATCH 2/5] e1000e: Add interrupt moderation run-time et...
I think this would require new ethtool interfaces (NIC_POLICY ?) so that the driver can decide what the right settings are. Otherwise you would need to hard code a conversion table into the user program, which is probably a bad idea. -Andi --
Apr 14, 3:53 pm 2008
Rick Jones
Re: [PATCH 2/5] e1000e: Add interrupt moderation run-time et...
The biggest problems might be ones of interpretation as to whether a given setting was indeed: --favor-latency --favor-throutput --favor-mixed But it would indeed at one level be more "clear" to a random admin (IMO). I use "--favor-mumble" above since what might be the --low-latency through one NIC might not be as low as the "--low-latency" though another NIC, and it also sort of implicitly suggests a trade-off is being made. rick jones --
Apr 14, 3:31 pm 2008
Alan Stern
Questions regarding local address assignment
Suppose a program creates a socket and doesn't bind it to a local address. When the program wants to connect the socket to a remote address (for TCP) or send a datagram to a remote address (for UDP or raw IP), the kernel automatically assigns a local address to it. Questions: 1. What algorithm does the kernel use to select the local address? 2. Where is the source code for the selection? 3. Is this information documented anywhere? Thank you, Alan Stern --
Apr 14, 11:19 am 2008
Ben Dooks
DM9000: Add timer to check PHY status
Periodically check the MII PHY status to ensure that the network layer's link status is updated and the user informed of any changes. Signed-off-by: Ben Dooks <ben-linux@fluff.org> Index: linux-2.6.24-quilt16/drivers/net/dm9000.c =================================================================== --- linux-2.6.24-quilt16.orig/drivers/net/dm9000.c +++ linux-2.6.24-quilt16/drivers/net/dm9000.c @@ -117,6 +117,9 @@ typedef struct board_info { struct mutex addr_lock; /* phy and eeprom ...
Apr 14, 9:57 am 2008
Rami Rosen
[PATCH net-2.6.26] [IPV6] Return NET_RX_DROP when a packet i...
Hi, - The IPv6 handler for receiving packets is ipv6_rcv() in net/ipv6/ip6_input.c. It is called by netif_receive_skb() (net/core/dev.c) According to the documentation, the return value of netif_receive_skb() should be NET_RX_DROP when the packet is dropped; though this return value is usually not used (except maybe for congestion), this patch fixes the ipv6_rcv() to return NET_RX_DROP when the packet is dropped (note that NET_RX_DROP value **is not** 0 but 1; NET_RX_SUCCESS value is in fact 0). ...
Apr 14, 9:15 am 2008
YOSHIFUJI Hideaki /
Re: [PATCH net-2.6.26] [IPV6] Return NET_RX_DROP when a pack...
Well yes, and I think we should fix other paths as well, right? So, I'm going to defer this for now. --yoshfuji --
Apr 14, 9:52 am 2008
Denis V. Lunev
[PATCH 1/1 net-2.6.26] [XFRM]: Compilation warnings in xfrm_...
When CONFIG_SECURITY_NETWORK_XFRM is undefined the following warnings appears: net/xfrm/xfrm_user.c: In function 'xfrm_add_pol_expire': net/xfrm/xfrm_user.c:1576: warning: 'ctx' may be used uninitialized in this function net/xfrm/xfrm_user.c: In function 'xfrm_get_policy': net/xfrm/xfrm_user.c:1340: warning: 'ctx' may be used uninitialized in this function (security_xfrm_policy_alloc is noop for the case). It seems that they are result of the commit 03e1ad7b5d871d4189b1da3125c2f12d1b5f7d0b Signe...
Apr 14, 9:03 am 2008
David Miller
Re: [PATCH 1/1 net-2.6.26] [XFRM]: Compilation warnings in x...
From: "Denis V. Lunev" <den@openvz.org> Needs commit header-line text reference after commit ID, which I've added. I think I've mentioned this issue to you on several occaisions Applied, thanks. --
Apr 14, 5:48 pm 2008
Paul Moore
Re: [PATCH 1/1 net-2.6.26] [XFRM]: Compilation warnings in x...
Thanks for catching this, I was focusing more on the runtime issues with the else statement and forgot about compile time issues. I wonder if it would be better to fix this in the dummy function for security_xfrm_policy_alloc()? It seems cleaner to me. -- paul moore linux @ hp --
Apr 14, 10:35 am 2008
David Miller
Re: [PATCH 1/1 net-2.6.26] [XFRM]: Compilation warnings in x...
From: Paul Moore <paul.moore@hp.com> I think in this specific case the choice is arbitrary, which is why I applied his patch. --
Apr 14, 5:52 pm 2008
David Woodhouse
Re: udev can't name PS3's network devices correctly
Actually it's a generic problem. It also occurs on OLPC, where the libertas wireless device presents two interfaces with the same MAC address -- the 'eth%d' interface for normal 802.11 wireless, and the 'msh%d' interface for mesh. This approach fixes that too. Our previous fix for that was 'TEST=="anycast_mask"' and 'TEST=="lbs_rtap"', which are horridly device-specific hacks. It isn't _broken_ to have more than one device on the same host with the same MAC address; it's just unusual. One thin...
Apr 14, 6:08 am 2008
Marco d'Itri
Re: udev can't name PS3's network devices correctly
So if PS3 needs special hacks they should be special-cased to only by used on PS3 hardware. --=20 ciao, Marco
Apr 14, 8:51 am 2008
David Woodhouse
Re: udev can't name PS3's network devices correctly
I wouldn't put it like that. We are looking for some way to tell the difference between the two interfaces. If the kernel uses a different basename (wlan%d vs. eth%d, or eth%d vs. msh%d), that's a fairly strong hint about which is which -- and is fairly reliable to boot. The dev_id provides _another_ strong hint which helps us tell which The low 64 bits of the autoconfigured IPv6 address are derived from the MAC address, so for example a MAC address of 00:50:43:28:0A:FC would give you an IPv6...
Apr 14, 9:38 am 2008
Kay Sievers
Re: udev can't name PS3's network devices correctly
Yeah, PS3 even had both interfaces with the same MAC named eth*. :) Yes, we do that in the recent udev versions. We only make sure we keep the enumeration across the same basename, not across different device It happens sometimes, that a new driver has a new name, but that is not neccesarily something we need to cover with the persistent net names. The main goal is to provide stable names regardless of module-loading/bus-probe/device-enumeration order, not the use of new Sounds good. Tha...
Apr 14, 8:03 am 2008
David Woodhouse
Re: udev can't name PS3's network devices correctly
Right, but you _only_ do that when you're asked to create a rule for a device where the kernel's name matches a pre-existing rule. You don't do it consistently -- and Marco was objecting to a patch which just made it happen consistently. That patch on its own would be sufficient to fix the PS3 and Libertas problems, since the kernel uses a different basename for the logical devices we want to disambiguate. (It would also fix the clash between wlan0 and wmaster0 on mac80211 interfaces). We prob...
Apr 14, 8:19 am 2008
Kay Sievers
Re: udev can't name PS3's network devices correctly
We do it for all new rules, regardless of pre-existing rules with that name. It just does not add KERNEL, if some external tool tried to overwrite the kernel name, we write a rule for. Not sure why Fedora rules are mangling INTERFACE_NAME here: Right, we will do that, if there are no other issues coming up with the It can just be in all rules, like the ATTR{type} match, right? Thanks, Kay --
Apr 14, 8:52 am 2008
David Woodhouse
Re: udev can't name PS3's network devices correctly
Ah, yes -- that's an improvement on the version in udev-120, which would only write it if $INTERFACE_NAME wasn't set _AND_ the current interface It's for compatibility with older configuration. Before udev, the Fedora network configuration used to allow you to set a MAC address for each configured interface, and would rename interfaces accordingly. This preserves that functionality, automatically converting it to udev rules. If we were to include the KERNEL== criterion even when $INTERFACE_NAME ...
Apr 14, 9:16 am 2008
David Woodhouse
Re: udev can't name PS3's network devices correctly
That would look something like this (in fact, I think it would let us get rid of the special case for S390 too)... --- ./udev-120/extras/rule_generator/75-persistent-net-generator.rules~ 2008-04-03 20:12:53.000000000 +0100 +++ ./udev-120/extras/rule_generator/75-persistent-net-generator.rules 2008-04-14 11:52:46.000000000 +0100 @@ -18,7 +18,7 @@ SUBSYSTEM!="net", GOTO="persistent_net_g NAME=="?*", GOTO="persistent_net_generator_end" # device name whitelist -KERNEL!="eth*|ath*|wlan*[0-9]|ra*|...
Apr 14, 7:11 am 2008
previous daytodaynext day
April 13, 2008April 14, 2008April 15, 2008