[PATCH] MAINTAINERS: update NetEffect entry

2010-11-02 Thread Chien Tung
Correct web link as www.neteffect.com is no longer valid. Remove Chien Tung as maintainer. I am moving on to other responsibilities at Intel. Thanks for all the fish. Signed-off-by: Chien Tung chien.tin.t...@intel.com --- MAINTAINERS |3 +-- 1 files changed, 1 insertions(+), 2 deletions

[PATCH] RDMA/nes: correct register write in set TX pause param

2010-09-07 Thread Chien Tung
Set TX pause param is writing to the wrong register location causing the adpater to hang. Correct the define used to write the reigster. This fixes OFED bug #2116. https://bugs.openfabrics.org/show_bug.cgi?id=2116 Reported-by: Shiri Franchi shi...@voltaire.com Signed-off-by: Chien Tung

[PATCH] RDMA/nes: turn carrier off on ifdown

2010-09-01 Thread Chien Tung
From: Maciej Sosnowski maciej.sosnow...@intel.com This enables bonding driver to detect inteface down. Signed-off-by: Maciej Sosnowski maciej.sosnow...@intel.com Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_nic.c |1 + 1 files changed, 1 insertions

[PATCH] RDMA/nes: report correct port state if interface is down

2010-08-23 Thread Chien Tung
With commit cd6860eb03 we no longer remove nes interface on ifdown. On nes_query_port add additional check to net queue and report IB_PORT_DOWN if the queue is not running. Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_verbs.c |4 +++- 1 files changed

[PATCH v2] RDMA/CMA: fix iWARP adapter TCP port space usage

2010-06-11 Thread Chien Tung
Latif faisal.la...@intel.com Signed-off-by: Chien Tung chien.tin.t...@intel.com --- V2 changes: * Fix compilation warning in cma_0100_unified_tcp_ports.patch Signed-off-by: Vladimir Sokolovsky v...@mellanox.co.il - ip_addr_size(id_priv-id.route.addr.src_addr

[PATCH] RDMA/nes: get and print eeprom version

2010-06-09 Thread Chien Tung
Read and print eeprom version and save it off for later use. Also delete a tab. Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_hw.h|3 ++- drivers/infiniband/hw/nes/nes_utils.c |5 + 2 files changed, 7 insertions(+), 1 deletions(-) diff

[PATCH] RDMA/nes: fix incorrect unlock in nes_process_mac_intr

2010-05-25 Thread Chien Tung
Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_hw.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/infiniband/hw/nes/nes_hw.c b/drivers/infiniband/hw/nes/nes_hw.c index bb9c775..57874a1 100644 --- a/drivers/infiniband/hw/nes

[PATCH] RDMA/nes: correct cap.max_inline_data assignment in nes_query_qp

2010-03-25 Thread Chien Tung
cap.max_inline_data is incorrectly set in init_attr instead of attr. Set it in attr so subsequent init_attr.cap assignment will get the correct value. Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_verbs.c |9 - 1 files changed, 4 insertions

[PATCH 0/9] RDMA/nes: Verbs and PHY fixes + misc update

2009-12-01 Thread Chien Tung
Roland, Patch 1 and 2 are Frank Zago's patches for nes, resubmitted per your request. Hopefully these will show up on patchwork. Patch 3 adds send with invalidate and local invalidate support. Patch 4 corrects fast memory registration, we are now using the proper interface. Patch 5 adds

[PATCH 1/9] RDMA/nes: In nes_post_send() always set bad_wr on error

2009-12-01 Thread Chien Tung
From: Frank Zago fz...@systemfabricworks.com On error set bad_wr in nes_post_send(). Stop processing ib_wr queue when an error is detected. Signed-off-by: Frank Zago fz...@systemfabricworks.com Signed-off-by: Chien Tung chien.tin.t...@intel.com --- drivers/infiniband/hw/nes/nes_verbs.c | 10