From: Joe Eykholt <[email protected]> The hostlist and the hostlist_lock were initialized both in the delcaration and in fcoe_init(). Remove the unneeded code.
Signed-off-by: Joe Eykholt <[email protected]> Signed-off-by: Chris Leech <[email protected]> --- drivers/scsi/fcoe/fcoe.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/drivers/scsi/fcoe/fcoe.c b/drivers/scsi/fcoe/fcoe.c index f73f485..aa88128 100644 --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c @@ -1883,9 +1883,6 @@ static int __init fcoe_init(void) int rc = 0; struct fcoe_percpu_s *p; - INIT_LIST_HEAD(&fcoe_hostlist); - rwlock_init(&fcoe_hostlist_lock); - for_each_possible_cpu(cpu) { p = &per_cpu(fcoe_percpu, cpu); skb_queue_head_init(&p->fcoe_rx_list); _______________________________________________ devel mailing list [email protected] http://www.open-fcoe.org/mailman/listinfo/devel
