Searched refs:fc_str (Results 1 – 1 of 1) sorted by relevance
| /freebsd-13.1/sys/dev/ice/ |
| H A D | ice_lib.c | 3178 char fc_str[32]; in ice_sysctl_fc_config() local 3207 bzero(fc_str, sizeof(fc_str)); in ice_sysctl_fc_config() 3208 sbuf_new_for_sysctl(&buf, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3213 ret = sysctl_handle_string(oidp, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3218 if (strcasecmp(ice_fc_str(ICE_FC_FULL), fc_str) == 0) { in ice_sysctl_fc_config() 3222 else if (strcasecmp(ice_fc_str(ICE_FC_TX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3226 else if (strcasecmp(ice_fc_str(ICE_FC_RX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3230 else if (strcasecmp(ice_fc_str(ICE_FC_NONE), fc_str) == 0) { in ice_sysctl_fc_config() 3240 fc_num = strtol(fc_str, &fc_str_end, 0); in ice_sysctl_fc_config() 3241 if (fc_str_end == fc_str) in ice_sysctl_fc_config() [all …]
|