Searched refs:fc_str (Results 1 – 1 of 1) sorted by relevance
| /freebsd-14.2/sys/dev/ice/ |
| H A D | ice_lib.c | 3458 char fc_str[32]; in ice_sysctl_fc_config() local 3487 bzero(fc_str, sizeof(fc_str)); in ice_sysctl_fc_config() 3488 sbuf_new_for_sysctl(&buf, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3493 ret = sysctl_handle_string(oidp, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3498 if (strcasecmp(ice_fc_str(ICE_FC_FULL), fc_str) == 0) { in ice_sysctl_fc_config() 3502 else if (strcasecmp(ice_fc_str(ICE_FC_TX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3506 else if (strcasecmp(ice_fc_str(ICE_FC_RX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3510 else if (strcasecmp(ice_fc_str(ICE_FC_NONE), fc_str) == 0) { in ice_sysctl_fc_config() 3520 fc_num = strtol(fc_str, &fc_str_end, 0); in ice_sysctl_fc_config() 3521 if (fc_str_end == fc_str) in ice_sysctl_fc_config() [all …]
|