IPoIB: don't zero members after we allocate with kzalloc

ipoib_mcast_alloc() uses kzalloc(), so there's no need to zero out
members of the mcast struct after it's allocated.

Signed-off-by: Roland Dreier <rolandd@cisco.com>

-4
-4
drivers/infiniband/ulp/ipoib/ipoib_multicast.c
··· 138 mcast->dev = dev; 139 mcast->created = jiffies; 140 mcast->backoff = 1; 141 - mcast->logcount = 0; 142 143 INIT_LIST_HEAD(&mcast->list); 144 INIT_LIST_HEAD(&mcast->neigh_list); 145 skb_queue_head_init(&mcast->pkt_queue); 146 - 147 - mcast->ah = NULL; 148 - mcast->query = NULL; 149 150 return mcast; 151 }
··· 138 mcast->dev = dev; 139 mcast->created = jiffies; 140 mcast->backoff = 1; 141 142 INIT_LIST_HEAD(&mcast->list); 143 INIT_LIST_HEAD(&mcast->neigh_list); 144 skb_queue_head_init(&mcast->pkt_queue); 145 146 return mcast; 147 }