Searched refs:fc_str (Results 1 – 1 of 1) sorted by relevance
| /freebsd/sys/dev/ice/ |
| H A D | ice_lib.c | 3485 char fc_str[32]; in ice_sysctl_fc_config() local 3514 bzero(fc_str, sizeof(fc_str)); in ice_sysctl_fc_config() 3515 sbuf_new_for_sysctl(&buf, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3520 ret = sysctl_handle_string(oidp, fc_str, sizeof(fc_str), req); in ice_sysctl_fc_config() 3525 if (strcasecmp(ice_fc_str(ICE_FC_FULL), fc_str) == 0) { in ice_sysctl_fc_config() 3529 else if (strcasecmp(ice_fc_str(ICE_FC_TX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3533 else if (strcasecmp(ice_fc_str(ICE_FC_RX_PAUSE), fc_str) == 0) { in ice_sysctl_fc_config() 3537 else if (strcasecmp(ice_fc_str(ICE_FC_NONE), fc_str) == 0) { in ice_sysctl_fc_config() 3547 fc_num = strtol(fc_str, &fc_str_end, 0); in ice_sysctl_fc_config() 3548 if (fc_str_end == fc_str) in ice_sysctl_fc_config() [all …]
|