summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/cxgbi/cxgb4i
diff options
context:
space:
mode:
authorVarun Prakash2017-08-16 16:10:32 +0200
committerMartin K. Petersen2017-08-17 02:12:31 +0200
commit71eb2ac58aa52f7948deda4d9a75754b6898e5c9 (patch)
treeab18f0dcecd860ce508e80ba6659f2439b1cc72a /drivers/scsi/cxgbi/cxgb4i
parentRevert "scsi: default to scsi-mq" (diff)
downloadkernel-qcow2-linux-71eb2ac58aa52f7948deda4d9a75754b6898e5c9.tar.gz
kernel-qcow2-linux-71eb2ac58aa52f7948deda4d9a75754b6898e5c9.tar.xz
kernel-qcow2-linux-71eb2ac58aa52f7948deda4d9a75754b6898e5c9.zip
scsi: cxgb4i: call neigh_event_send() to update MAC address
If nud_state is not valid then call neigh_event_send() to update MAC address. Signed-off-by: Varun Prakash <varun@chelsio.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/cxgbi/cxgb4i')
-rw-r--r--drivers/scsi/cxgbi/cxgb4i/cxgb4i.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c b/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c
index a69a9ac836f5..1d02cf9fe06c 100644
--- a/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c
+++ b/drivers/scsi/cxgbi/cxgb4i/cxgb4i.c
@@ -1635,6 +1635,9 @@ static int init_act_open(struct cxgbi_sock *csk)
goto rel_resource;
}
+ if (!(n->nud_state & NUD_VALID))
+ neigh_event_send(n, NULL);
+
csk->atid = cxgb4_alloc_atid(lldi->tids, csk);
if (csk->atid < 0) {
pr_err("%s, NO atid available.\n", ndev->name);