scsi: fnic: Use eth_broadcast_addr() to assign broadcast address
Use eth_broadcast_addr() to assign broadcast address insetad of memset(). Link: https://lore.kernel.org/r/1595233498-13628-1-git-send-email-linmiaohe@huawei.com Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
584d902eb1
Коммит
51d263cbdd
|
@ -23,6 +23,7 @@
|
|||
#include <linux/scatterlist.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/if_ether.h>
|
||||
#include <linux/if_vlan.h>
|
||||
#include <linux/delay.h>
|
||||
|
@ -275,7 +276,7 @@ int fnic_flogi_reg_handler(struct fnic *fnic, u32 fc_id)
|
|||
}
|
||||
|
||||
if (fnic->ctlr.map_dest) {
|
||||
memset(gw_mac, 0xff, ETH_ALEN);
|
||||
eth_broadcast_addr(gw_mac);
|
||||
format = FCPIO_FLOGI_REG_DEF_DEST;
|
||||
} else {
|
||||
memcpy(gw_mac, fnic->ctlr.dest_addr, ETH_ALEN);
|
||||
|
|
Загрузка…
Ссылка в новой задаче