linux-netdev mailing list

FromSubjectsort iconDate
Ayaz Abdulla
[PATCH] forcedeth: tx timeout fix
This patch fixes the tx_timeout() to properly handle the clean up of the tx ring. It also sets the tx put pointer back to the correct position to be in sync with HW. Signed-off-by: Ayaz Abdulla <aabdulla@nvidia.com>
Apr 25, 12:17 pm 2009
Grant Likely
[PATCH 00/13] OF device tree handling of PHY drivers
This series adds common code for reading PHY connection data out of the OpenFirmware device tree. This simplifies the network drivers which use the device tree and which currently implement their own solutions for reading the PHY data out of the device tree directly. I would like to see this series, or at least the core changes (1-4) plus the tested drivers (5-8 & 12, but #12 is a new driver and it may need more review), go into -next for 2.6.31. Due to dependencies, I think it is easiest if ...
Apr 25, 3:52 pm 2009
Grant Likely
[PATCH v3 07/13] net: Rework gianfar driver to use of_md ...
From: Grant Likely <grant.likely@secretlab.ca> This patch simplifies the driver by making use of more common code. Tested on Freescale MPC8349emitxgp eval board Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- drivers/net/gianfar.c | 109 +++++++++++++++++-------------------------------- drivers/net/gianfar.h | 4 +- 2 files changed, 39 insertions(+), 74 deletions(-) diff --git a/drivers/net/gianfar.c ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 03/13] phylib: add *_direct() variants of phy_ ...
From: Grant Likely <grant.likely@secretlab.ca> Add phy_connect_direct() and phy_attach_direct() functions so that drivers can use a pointer to the phy_device instead of trying to determine the phy's bus_id string. This patch is useful for OF device tree descriptions of phy devices where the driver doesn't need or know what the bus_id value in order to get a phy_device pointer. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- ...
Apr 25, 3:52 pm 2009
Grant Likely
[PATCH v3 09/13] net: Rework ucc_geth driver to use of_m ...
From: Grant Likely <grant.likely@secretlab.ca> This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- drivers/net/ucc_geth.c | 47 ++++++++++++----------------------------------- drivers/net/ucc_geth.h | 2 +- 2 files changed, 13 insertions(+), 36 deletions(-) diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index d3f39e8..195b490 100644 --- ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 13/13] net: fix fsl_pq_mdio driver to use modu ...
From: Grant Likely <grant.likely@secretlab.ca> Modules are not supposed to use any of the *_initcall*() hooks as the entry point. fsl_pq_mdio.c was using subsys_initcall_sync() instead of module_init() to guarantee that the MDIO bus was initialized before the Ethernet driver goes looking for the phy. However, the recent OF helpers rework happens to also make sure PHY connection is deferred to .open time, so using an initcall is no longer necessary. This patch replaces the initcall with a ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 01/13] of: add of_parse_phandle() helper for p ...
From: Grant Likely <grant.likely@secretlab.ca> of_parse_phandle() is a helper function to read and parse a phandle property and return a pointer to the resulting device_node. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- drivers/of/base.c | 24 ++++++++++++++++++++++++ include/linux/of.h | 3 +++ 2 files changed, 27 insertions(+), 0 deletions(-) diff --git a/drivers/of/base.c b/drivers/of/base.c index ...
Apr 25, 3:52 pm 2009
Grant Likely
[PATCH v3 05/13] net: Rework mpc5200 fec driver to use o ...
From: Grant Likely <grant.likely@secretlab.ca> The patch reworks the MPC5200 Fast Ethernet Controller (FEC) driver to use the of_mdio infrastructure for registering PHY devices from data out openfirmware device tree, and eliminates the assumption that the PHY for the FEC is always attached to the FEC's own MDIO bus. With this patch, the FEC can use a PHY attached to any MDIO bus if it is described in the device tree. Tested on Freescale Lite5200b eval board Signed-off-by: Grant Likely ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 11/13] net: Rework fs_enet driver to use of_md ...
From: Grant Likely <grant.likely@secretlab.ca> This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- drivers/net/fs_enet/fs_enet-main.c | 69 ++++++------------------------------ drivers/net/fs_enet/mii-bitbang.c | 29 +-------------- drivers/net/fs_enet/mii-fec.c | 26 +------------- include/linux/fs_enet_pd.h | 6 +-- 4 files changed, 16 ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 02/13] phylib: rework to prepare for OF regist ...
From: Grant Likely <grant.likely@secretlab.ca> This patch makes changes in preparation for supporting open firmware device tree descriptions of MDIO busses. Changes include: - Cleanup handling of phy_map[] entries; they are already NULLed when registering and so don't need to be re-cleared, and it is good practice to clear them out when unregistering. - Split phy_device registration out into a new function so that the OF helpers can do two stage registration (separate allocation and ...
Apr 25, 3:52 pm 2009
Grant Likely
[PATCH v3 10/13] powerpc/82xx: Rework Embedded Planet ep ...
From: Grant Likely <grant.likely@secretlab.ca> This patch modifies the bitbanged MDIO driver in the ep8248e platform code to use the common of_mdio infrastructure. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- arch/powerpc/platforms/82xx/ep8248e.c | 9 +++------ 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/arch/powerpc/platforms/82xx/ep8248e.c b/arch/powerpc/platforms/82xx/ep8248e.c index ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 12/13] net: add Xilinx ll_temac device driver
From: Grant Likely <grant.likely@secretlab.ca> This patch adds support for the Xilinx ll_temac 10/100/1000 Ethernet device. The ll_temac ipcore is typically used on Xilinx Virtex and Spartan designs attached to either a PowerPC 4xx or Microblaze processor. At the present moment, this driver only works with Virtex5 PowerPC designs because it assumes DCR is used to access the DMA registers. However, the low level access to DMA registers is abstracted and it should be easy to adapt for the ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 04/13] openfirmware: Add OF phylib support code
From: Grant Likely <grant.likely@secretlab.ca> Add support for parsing the device tree for PHY devices on an MDIO bus. Currently many of the PowerPC ethernet drivers are open coding a solution for reading data out of the device tree to find the correct PHY device. This patch implements a set of common routines to: a) let MDIO bus drivers register phy_devices described in the tree, and b) let MAC drivers find the correct phy_device via the tree. Signed-off-by: Grant Likely ...
Apr 25, 3:52 pm 2009
Grant Likely
[PATCH v3 08/13] net: Rework pasemi_mac driver to use of ...
From: Grant Likely <grant.likely@secretlab.ca> This patch simplifies the driver by making use of more common code. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Tested-by: Olof Johansson <olof@lixom.net> Acked-by: Olof Johansson <olof@lixom.net> Acked-by: Andy Fleming <afleming@freescale.com> --- arch/powerpc/platforms/pasemi/gpio_mdio.c | 32 +++++------------------------ drivers/net/pasemi_mac.c | 28 ++++--------------------- drivers/net/pasemi_mac.h ...
Apr 25, 3:53 pm 2009
Grant Likely
[PATCH v3 06/13] net: rework fsl_pq_mdio driver to use o ...
From: Grant Likely <grant.likely@secretlab.ca> This patch simplifies the driver by making use of more common code. Tested on Freescale MPC8349emitxgp eval board Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Andy Fleming <afleming@freescale.com> --- drivers/net/fsl_pq_mdio.c | 51 +++------------------------------------------ 1 files changed, 3 insertions(+), 48 deletions(-) diff --git a/drivers/net/fsl_pq_mdio.c b/drivers/net/fsl_pq_mdio.c index ...
Apr 25, 3:53 pm 2009
Rafael J. Wysocki
2.6.30-rc3-git1: Reported regressions from 2.6.29
[NOTE: The list of regressions from 2.6.28 (introduced up to 2.6.29) will be sent tomorrow (there still are quite a few of them listed).] This message contains a list of some regressions from 2.6.29, for which there are no fixes in the mainline I know of. If any of them have been fixed already, please let me know. If you know of any other unresolved regressions from 2.6.29, please let me know either and I'll add them to the list. Also, please let me know if any of the entries below are ...
Apr 25, 12:22 pm 2009
Sergio Luis Apr 25, 11:05 am 2009
Camelt Office
***Contact Mr. Larry Whyte***
You were selected for the sum of £1,230,310 GBP. Verify this mail immediately by sending in your information. This will include your name, address, age, phone number etc to c_group24@8u8.hk --
Apr 25, 11:11 am 2009
Camelt Office
***Contact Mr. Larry Whyte***
You were selected for the sum of £1,230,310 GBP. Verify this mail immediately by sending in your information. This will include your name, address, age, phone number etc to c_group24@8u8.hk --
Apr 25, 11:11 am 2009
Serge E. Hallyn
Re: Loopback and net namespace
? What kernel version are you on? Try jumping to 2.6.29 or later (and non-distro kernel). It most certainly is possible to have net namespaces and sysfs. Since sysfs tagged directories must wait until sysfs locking itself is straightened out, the workaround was to have network devices in a network namespace other than init not show up in sysfs. (Physical devices therefore cannot be passed into non-init network namespaces). thanks, -serge --
Apr 25, 7:00 am 2009
David Miller
Re: Loopback and net namespace
From: emil@linux.org.pl Can you please contact the namespace developers when you post things like this (as I have on the CC: list now)? I was sure this issue had been resolved already or there was a larger plan to do so. Also your patch is very poorly formatted, lacks a proper signoff, was corrupted by your email client, etc. so we wouldn't be able consider --
Apr 24, 10:19 pm 2009
Daniel Lezcano
Re: Loopback and net namespace
I don't think you have to patch anything if you try a kernel >= 2.6.29. The sysfs restriction has been solved by disabling the registering of the kobject when we are not in the initial network namespace. For more information you can check this commit: http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6-stable.git;a=commit;h=38918... Regards, -- Daniel --
Apr 25, 12:50 pm 2009
Eric Dumazet
[PATCH] net: Avoid extra wakeups of threads blocked in w ...
In 2.6.25 we added UDP mem accounting. This unfortunatly added a penalty when a frame is transmitted, since we have at TX completion time to call sock_wfree() to perform necessary memory accounting. This calls sock_def_write_space() and utimately scheduler if any thread is waiting on the socket. Thread(s) waiting for an incoming frame was scheduled, then had to sleep again as event was meaningless. (All threads waiting on a socket are using same sk_sleep anchor) This adds lot of extra ...
Apr 25, 8:47 am 2009
Jay Vosburgh
Re: vlan: update vlan carrier state for admin up/down
I dunno if it's a security issue, but I'd agree it's wrong. I looked, and I suspect that a couple of judiciously placed "if (dev->flags & IFF_UP)" bits ought to sort things out by simply not copying the carrier state to the upper level VLAN device if that device is down. Unless somebody works this up over the weekend, I'll work that out on Monday. When the vlan device (eth0.5 in the above example) later is set Would they actually need a flag, or could it be worked out just by ...
Apr 24, 5:31 pm 2009
Michael Chan Apr 25, 1:33 pm 2009
Mark Smith
Re: [RFC, PATCH 2.6.29.1] Ethernet V2.0 Configuration Te ...
Hi Eric, Thanks very much for your time. On Fri, 24 Apr 2009 09:36:14 +0200 ECTP is designed exactly for that purpose - verifying remote Ethernet node availability. The unicast ECTP message would contain a forward message, specifying the originator's MAC address, and a reply message. The receiver, if it is available, just forwards the packet to the (unicast) MAC address provided in the current forward message. For a liveness test, the MAC address in the forward message Cisco IOS routers ...
Apr 24, 6:37 pm 2009
Rafael J. Wysocki
Re: 2.6.30-rc2-git2: Reported regressions from 2.6.29
Sure, the next reports will go there too. Best, Rafael --
Apr 25, 2:57 pm 2009
Stephen Hemminger
[PATCH] netfilter: iptables no lockdep is needed..
Epilogue due to master Jarek. Lockdep carest not about the locking doth bestowed. Therefore no keys are needed. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> --- net/netfilter/x_tables.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) --- a/net/netfilter/x_tables.c 2009-04-25 13:25:48.115026283 -0700 +++ b/net/netfilter/x_tables.c 2009-04-25 13:26:15.646215635 -0700 @@ -1145,14 +1145,9 @@ static int __init xt_init(void) { unsigned int i; int ...
Apr 25, 1:30 pm 2009
previous daytodaynext day
April 24, 2009April 25, 2009April 26, 2009