Lines Matching refs:rollover
1333 if (po->rollover->history[i] == rxhash) in fanout_flow_is_huge()
1336 po->rollover->history[prandom_u32() % ROLLOVER_HLEN] = rxhash; in fanout_flow_is_huge()
1388 i = j = min_t(int, po->rollover->sock, num - 1); in fanout_demux_rollover()
1394 po->rollover->sock = i; in fanout_demux_rollover()
1395 atomic_long_inc(&po->rollover->num); in fanout_demux_rollover()
1397 atomic_long_inc(&po->rollover->num_huge); in fanout_demux_rollover()
1405 atomic_long_inc(&po->rollover->num_failed); in fanout_demux_rollover()
1657 po->rollover = kzalloc(sizeof(*po->rollover), GFP_KERNEL); in fanout_add()
1658 if (!po->rollover) in fanout_add()
1660 atomic_long_set(&po->rollover->num, 0); in fanout_add()
1661 atomic_long_set(&po->rollover->num_huge, 0); in fanout_add()
1662 atomic_long_set(&po->rollover->num_failed, 0); in fanout_add()
1714 kfree(po->rollover); in fanout_add()
1715 po->rollover = NULL; in fanout_add()
1740 if (po->rollover) in fanout_release()
1741 kfree_rcu(po->rollover, rcu); in fanout_release()
3093 po->rollover = NULL; in packet_create()
3802 if (!po->rollover) in packet_getsockopt()
3804 rstats.tp_all = atomic_long_read(&po->rollover->num); in packet_getsockopt()
3805 rstats.tp_huge = atomic_long_read(&po->rollover->num_huge); in packet_getsockopt()
3806 rstats.tp_failed = atomic_long_read(&po->rollover->num_failed); in packet_getsockopt()