Re: [PATCH] rdma: replace deprecated ifconfig in doc

2015-03-09 Thread Stephen Hemminger
On Mon, 09 Mar 2015 13:06:30 +0100 Yann Droneaud wrote: > Hi, > > Le dimanche 08 mars 2015 à 16:36 -0700, Stephen Hemminger a écrit : > > The ifconfig command has been deprecated for many years. > > To encourage new users not to continue using it and learning > > ip

[PATCH] rdma: replace deprecated ifconfig in doc

2015-03-08 Thread Stephen Hemminger
The ifconfig command has been deprecated for many years. To encourage new users not to continue using it and learning iproute2; the ifconfig should not be used in examples. Signed-off-by: Stephen Hemminger --- a/Documentation/filesystems/nfs/nfs-rdma.txt2014-09-28 16:27:20.393505440

Re: [PATCH net-next 10/31] cxgb4/iw_cxgb4: Doorbell Drop Avoidance Bug Fixes.

2014-02-27 Thread Stephen Hemminger
On Thu, 27 Feb 2014 13:05:44 -0500 (EST) David Miller wrote: > From: "Steve Wise" > Date: Thu, 27 Feb 2014 11:11:49 -0600 > > >> > >> > -static int allow_db_fc_on_t5; > >> > -module_param(allow_db_fc_on_t5, int, 0644); > >> > -MODULE_PARM_DESC(allow_db_fc_on_t5, > >> > - "Allow

Re: [PATCH net v2 0/8] Fixes for server entries and server filter entries for Chelsio T4/T5

2013-12-18 Thread Stephen Hemminger
While running namespace checks I found several this: Subject: cxgb4: make functions static and remove dead code Cleanup by making local functions static. The code to load config file is unreachable in net-next, probably came from some out of tree driver. Signed-off-by: Stephen Hemminger

Re: [PATCH 02/11] inet_diag: pass inet_diag module to netlink_dump_start

2012-09-26 Thread Stephen Hemminger
On Wed, 26 Sep 2012 12:52:11 +0800 Gao feng wrote: > struct netlink_dump_control c = { > .dump = inet_diag_dump_compat, > + .done = netlink_dump_done, > + .module = THIS_MODULE, >

Re: [patch net-next v2 01/15] net: introduce upper device lists

2012-08-14 Thread Stephen Hemminger
On Tue, 14 Aug 2012 23:33:44 +0100 Ben Hutchings wrote: > On Tue, 2012-08-14 at 17:05 +0200, Jiri Pirko wrote: > > This lists are supposed to serve for storing pointers to all upper devices. > > Eventually it will replace dev->master pointer which is used for > > bonding, bridge, team but it cann

nes: uninitialized variable

2011-03-24 Thread Stephen Hemminger
This commit: commit 2a4c97ead4b375a64063523210939b87ad225b85 Author: Maciej Sosnowski Date: Wed Nov 24 17:29:30 2010 + RDMA/nes: Fix bonding on iw_nes Enable configuring bonds on nes devices by adding missing support for master net_device to the driver. Signed-off-

[PATCH] cxgb3/cxgb4: remove dead code from infiniband drivers

2010-10-15 Thread Stephen Hemminger
This removes unused code from the cxgb3 and cxgb4 infiniband drivers. Found by running 'make namespacecheck'; compile tested only Signed-off-by: Stephen Hemminger --- a/drivers/infiniband/hw/cxgb3/cxio_hal.c2010-10-15 13:40:49.431914857 -0700 +++ b/drivers/infiniband/hw/cxgb3/

Re: [PATCH] SIW: Module initialization

2010-10-06 Thread Stephen Hemminger
On Wed, 6 Oct 2010 18:06:52 +0200 Bart Van Assche wrote: > On Wed, Oct 6, 2010 at 12:02 AM, Stephen Hemminger > wrote: > > On Tue, 5 Oct 2010 12:57:21 +0200 > > Bart Van Assche wrote: > > > >> > + * TODO: Dynamic device management (network device > &g

Re: [PATCH] SIW: Module initialization

2010-10-05 Thread Stephen Hemminger
On Tue, 5 Oct 2010 12:57:21 +0200 Bart Van Assche wrote: > > + * TODO: Dynamic device management (network device registration/removal). > > The current implementation is such that one siw device is created for > each network device found at kernel module load time. That means that > you force

Re: [PATCH] net/core: use net_device dev_id to indicate port number

2010-05-26 Thread Stephen Hemminger
On Wed, 26 May 2010 18:27:30 +0300 Eli Cohen wrote: > On Wed, May 26, 2010 at 08:23:06AM -0700, Stephen Hemminger wrote: > > On Wed, 26 May 2010 12:52:00 +0300 > > Eli Cohen wrote: > > > > > Today, there are no means to know which port of a hardware device a netde

Re: [PATCH] net/core: use net_device dev_id to indicate port number

2010-05-26 Thread Stephen Hemminger
On Wed, 26 May 2010 12:52:00 +0300 Eli Cohen wrote: > Today, there are no means to know which port of a hardware device a netdev > interface uses. struct net_device conatins a field, dev_id, that can be used > for that. This patch adds a new macro, SET_NETDEV_DEV_ID(), to provide a > standard way

Re: [PATCH] mlx4_en: show device's port used

2010-05-25 Thread Stephen Hemminger
On Tue, 25 May 2010 09:55:47 -0700 Roland Dreier wrote: > > Add a sysfs file under /sys/class/net/ to show the port number > within the > > device that this network interface is using. This is needed as ConnectX > devices > > have two ports and it is useful to know which port the ethernet de

[PATCH 11/11] ipoib: fix DMA sync_single length error

2010-01-20 Thread Stephen Hemminger
The DMA api requires that the full mapping be sync'd when copying frame. First found by Jarek on sky2. Signed-off-by: Stephen Hemminger --- a/drivers/infiniband/ulp/ipoib/ipoib_cm.c 2010-01-20 12:02:29.269388203 -0800 +++ b/drivers/infiniband/ulp/ipoib/ipoib_cm.c 2010-01-20

Re: [PATCH] RDMA/addr: Use appropriate locking with for_each_netdev()

2009-11-19 Thread Stephen Hemminger
On Fri, 20 Nov 2009 06:28:00 +0100 Eric Dumazet wrote: > + read_lock(&dev_base_lock); > for_each_netdev(&init_net, dev) { > if (ipv6_chk_addr(&init_net, > &((struct sockaddr_in6 *) > addr)->sin6_addr, > @@ -1