Lines Matching refs:n_tables

51 	unsigned int n_tables;  member
53 struct udp_tunnel_nic_table_entry *entries[] __counted_by(n_tables);
138 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_is_empty()
154 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_should_replay()
247 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_device_sync_by_port()
260 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_device_sync_by_table()
330 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_is_capable()
344 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_has_collision()
427 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_try_existing()
462 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_add_new()
556 for (i = 0; i < utn->n_tables; i++) in __udp_tunnel_nic_reset_ntf()
686 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_flush()
696 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_flush()
713 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_replay()
726 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_replay()
751 unsigned int n_tables) in udp_tunnel_nic_alloc() argument
756 utn = kzalloc(struct_size(utn, entries, n_tables), GFP_KERNEL); in udp_tunnel_nic_alloc()
759 utn->n_tables = n_tables; in udp_tunnel_nic_alloc()
763 for (i = 0; i < n_tables; i++) { in udp_tunnel_nic_alloc()
783 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_free()
793 unsigned int n_tables, i; in udp_tunnel_nic_register() local
811 n_tables = 1; in udp_tunnel_nic_register()
816 n_tables++; in udp_tunnel_nic_register()
833 utn = udp_tunnel_nic_alloc(info, n_tables); in udp_tunnel_nic_register()