diff options
| author | Jenny Derzhavetz <jennyf@mellanox.com> | 2015-09-06 14:52:23 +0300 |
|---|---|---|
| committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2015-09-15 15:47:25 -0700 |
| commit | ed8cb0a4378c0e7035db047987fe0e7309020ab5 (patch) | |
| tree | 80ba117177fadab3082a41a98d24902f68d0e561 /drivers/infiniband/ulp/isert/ib_isert.h | |
| parent | iser-target: Remove unused variables (diff) | |
| download | linux-ed8cb0a4378c0e7035db047987fe0e7309020ab5.tar.gz linux-ed8cb0a4378c0e7035db047987fe0e7309020ab5.zip | |
iser-target: Remove np_ prefix from isert_np members
These are always referenced from np-> so no need
for the prefix.
Signed-off-by: Jenny Derzhavetz <jennyf@mellanox.com>
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/infiniband/ulp/isert/ib_isert.h')
| -rw-r--r-- | drivers/infiniband/ulp/isert/ib_isert.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/infiniband/ulp/isert/ib_isert.h b/drivers/infiniband/ulp/isert/ib_isert.h index 0480ab89ea40..6e85da3dd835 100644 --- a/drivers/infiniband/ulp/isert/ib_isert.h +++ b/drivers/infiniband/ulp/isert/ib_isert.h @@ -218,8 +218,8 @@ struct isert_device { struct isert_np { struct iscsi_np *np; - struct semaphore np_sem; - struct rdma_cm_id *np_cm_id; - struct mutex np_accept_mutex; - struct list_head np_accept_list; + struct semaphore sem; + struct rdma_cm_id *cm_id; + struct mutex mutex; + struct list_head accept_list; }; |
