Re: Request for advice on where to put Root Complex "fix up" code for downstream device

2015-05-07 Thread Bjorn Helgaas
Hi Casey, On Thu, May 07, 2015 at 12:34:51AM +, Casey Leedom wrote: > Hello, > > I've included both the Network and PCI Development mailing lists because > this crosses both domains. If this violates protocols, I apologise in > advance. I believe that this ~probably~ will be a "PCI Deve

Re: [PATCHSET] netconsole: implement extended console support

2015-05-07 Thread Tejun Heo
Ping? Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH net-next v5 16/21] switchdev: add new switchdev_port_bridge_getlink

2015-05-07 Thread Jiri Pirko
Tue, May 05, 2015 at 07:34:52PM CEST, sfel...@gmail.com wrote: >From: Scott Feldman > >Like bridge_setlink, add switchdev wrapper to handle bridge_getlink and >call into port driver to get port attrs. For now, only BR_LEARNING and >BR_LEARNING_SYNC are returned. To add more, we'll probably want

[net 0/2][pull request] Intel Wired LAN Driver Updates 2015-05-07

2015-05-07 Thread Jeff Kirsher
This series contains updates to igb only. Toshiaki provides two fixes for igb, first fixes an issue when changing the number of rings by ethtool which causes oops because of uninitialized pointers. The second fix resolves a typo where tx_ring was used instead of the desired rx_ring. The followin

[RFC PATCH net-next 05/11] udp_tunnel: avoid to switch namespace for tunnel socket

2015-05-07 Thread Ying Xue
There is no the race between put_net() and kernel socket creation, so it's unnecessary to switch namespace for a kernel tunnel socket from init_net to its desirable one. Signed-off-by: Ying Xue --- net/ipv4/udp_tunnel.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --g