Lines Matching refs:n_tables
48 unsigned int n_tables; member
50 struct udp_tunnel_nic_table_entry *entries[] __counted_by(n_tables);
135 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_is_empty()
151 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_should_replay()
244 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_device_sync_by_port()
257 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_device_sync_by_table()
338 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_is_capable()
352 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_has_collision()
435 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_try_existing()
470 for (i = 0; i < utn->n_tables; i++) { in udp_tunnel_nic_add_new()
564 for (i = 0; i < utn->n_tables; i++) in __udp_tunnel_nic_reset_ntf()
662 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_flush()
672 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_flush()
689 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_replay()
702 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_replay()
723 unsigned int n_tables) in udp_tunnel_nic_alloc() argument
728 utn = kzalloc(struct_size(utn, entries, n_tables), GFP_KERNEL); in udp_tunnel_nic_alloc()
731 utn->n_tables = n_tables; in udp_tunnel_nic_alloc()
734 for (i = 0; i < n_tables; i++) { in udp_tunnel_nic_alloc()
754 for (i = 0; i < utn->n_tables; i++) in udp_tunnel_nic_free()
764 unsigned int n_tables, i; in udp_tunnel_nic_register() local
782 n_tables = 1; in udp_tunnel_nic_register()
787 n_tables++; in udp_tunnel_nic_register()
804 utn = udp_tunnel_nic_alloc(info, n_tables); in udp_tunnel_nic_register()