Home
last modified time | relevance | path

Searched refs:client_info (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/drivers/net/bonding/
Dbond_alb.c279 struct rlb_client_info *client_info; in rlb_update_entry_from_arp() local
285 client_info = &(bond_info->rx_hashtbl[hash_index]); in rlb_update_entry_from_arp()
287 if ((client_info->assigned) && in rlb_update_entry_from_arp()
288 (client_info->ip_src == arp->ip_dst) && in rlb_update_entry_from_arp()
289 (client_info->ip_dst == arp->ip_src) && in rlb_update_entry_from_arp()
290 (!ether_addr_equal_64bits(client_info->mac_dst, arp->mac_src))) { in rlb_update_entry_from_arp()
292 ether_addr_copy(client_info->mac_dst, arp->mac_src); in rlb_update_entry_from_arp()
293 client_info->ntt = 1; in rlb_update_entry_from_arp()
452 static void rlb_update_client(struct rlb_client_info *client_info) in rlb_update_client() argument
456 if (!client_info->slave) in rlb_update_client()
[all …]
Dbond_debugfs.c21 struct rlb_client_info *client_info; in bond_debug_rlb_hash_show() local
34 hash_index = client_info->used_next) { in bond_debug_rlb_hash_show()
35 client_info = &(bond_info->rx_hashtbl[hash_index]); in bond_debug_rlb_hash_show()
37 &client_info->ip_src, in bond_debug_rlb_hash_show()
38 &client_info->ip_dst, in bond_debug_rlb_hash_show()
39 &client_info->mac_dst, in bond_debug_rlb_hash_show()
40 client_info->slave->dev->name); in bond_debug_rlb_hash_show()
/linux-4.4.14/drivers/media/pci/smipcie/
Dsmipcie-main.c636 struct i2c_board_info client_info; in smi_dvbsky_sit2_fe_attach() local
649 memset(&client_info, 0, sizeof(struct i2c_board_info)); in smi_dvbsky_sit2_fe_attach()
650 strlcpy(client_info.type, "si2168", I2C_NAME_SIZE); in smi_dvbsky_sit2_fe_attach()
651 client_info.addr = 0x64; in smi_dvbsky_sit2_fe_attach()
652 client_info.platform_data = &si2168_config; in smi_dvbsky_sit2_fe_attach()
654 client_demod = smi_add_i2c_client(i2c, &client_info); in smi_dvbsky_sit2_fe_attach()
666 memset(&client_info, 0, sizeof(struct i2c_board_info)); in smi_dvbsky_sit2_fe_attach()
667 strlcpy(client_info.type, "si2157", I2C_NAME_SIZE); in smi_dvbsky_sit2_fe_attach()
668 client_info.addr = 0x60; in smi_dvbsky_sit2_fe_attach()
669 client_info.platform_data = &si2157_config; in smi_dvbsky_sit2_fe_attach()
[all …]
/linux-4.4.14/sound/core/seq/
Dseq_clientmgr.c1207 struct snd_seq_client_info client_info; in snd_seq_ioctl_get_client_info() local
1209 if (copy_from_user(&client_info, arg, sizeof(client_info))) in snd_seq_ioctl_get_client_info()
1213 cptr = snd_seq_client_use_ptr(client_info.client); in snd_seq_ioctl_get_client_info()
1217 get_client_info(cptr, &client_info); in snd_seq_ioctl_get_client_info()
1220 if (copy_to_user(arg, &client_info, sizeof(client_info))) in snd_seq_ioctl_get_client_info()
1230 struct snd_seq_client_info client_info; in snd_seq_ioctl_set_client_info() local
1232 if (copy_from_user(&client_info, arg, sizeof(client_info))) in snd_seq_ioctl_set_client_info()
1236 if (client->number != client_info.client) in snd_seq_ioctl_set_client_info()
1239 if (client->type != client_info.type) in snd_seq_ioctl_set_client_info()
1243 if (client_info.name[0]) in snd_seq_ioctl_set_client_info()
[all …]