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-next>] [day] [month] [year] [list]
Date:	Sun, 16 Aug 2015 01:44:50 +0530
From:	Govindarajulu Varadarajan <_govind@....com>
To:	davem@...emloft.net, netdev@...r.kernel.org
Cc:	nalreddy@...co.com, ssujith@...co.com, benve@...co.com,
	Govindarajulu Varadarajan <_govind@....com>
Subject: [PATCH 0/4 net-next] enic: add devcmd2

This series adds new devcmd2 support. The first two patches are code
refactoring.

devcmd is an interface for driver to communicate with fw/adaptor. It
involves writing data to hardware registers and waiting for the result.
This mechanism does not scale well. The queuing of "no wait" devcmds is
done in firmware memory rather than on the host. Firmware memory is a
rather more scarce and valuable resource than host memory. A devcmd storm
from one vf can disrupt the service on other pf/vf. The lack of flow
control allows for possible denial of server from one VM to another.
Devcmd2 uses work queue to post the devcmds, just like tx work queue. This
allows better flow control.

Govindarajulu Varadarajan (4):
  enic: move struct definition from .c to .h file
  enic: use netdev_<foo> or dev_<foo> instead of pr_<foo>
  enic: add devcmd2 resources
  enic: add devcmd2

 drivers/net/ethernet/cisco/enic/enic.h          |  21 +-
 drivers/net/ethernet/cisco/enic/enic_main.c     |   5 +
 drivers/net/ethernet/cisco/enic/vnic_cq.c       |   3 +-
 drivers/net/ethernet/cisco/enic/vnic_dev.c      | 275 ++++++++++++++++++------
 drivers/net/ethernet/cisco/enic/vnic_dev.h      |  44 +++-
 drivers/net/ethernet/cisco/enic/vnic_devcmd.h   |  28 +++
 drivers/net/ethernet/cisco/enic/vnic_intr.c     |   3 +-
 drivers/net/ethernet/cisco/enic/vnic_resource.h |   7 +
 drivers/net/ethernet/cisco/enic/vnic_rq.c       |   6 +-
 drivers/net/ethernet/cisco/enic/vnic_wq.c       |  31 ++-
 drivers/net/ethernet/cisco/enic/vnic_wq.h       |  17 ++
 11 files changed, 357 insertions(+), 83 deletions(-)

-- 
2.5.0

--
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