mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 06:50:08 +00:00
i40e: Do not expose fd-sb commands from debugfs
Ethtool -k/-K can handle this so we do not need it in debugfs. Change-ID: I9df692f10a60b71805f8f48d3b87c7da3820b2aa Signed-off-by: Anjali Singhai Jain <anjali.singhai@intel.com> Signed-off-by: Catherine Sullivan <catherine.sullivan@intel.com> Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
2e86a0b660
commit
53275f28f8
@ -1744,10 +1744,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
|
|||||||
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, false);
|
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, false);
|
||||||
} else if (strncmp(cmd_buf, "fd-atr on", 9) == 0) {
|
} else if (strncmp(cmd_buf, "fd-atr on", 9) == 0) {
|
||||||
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, true);
|
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_ATR_ENABLED, true);
|
||||||
} else if (strncmp(cmd_buf, "fd-sb off", 9) == 0) {
|
|
||||||
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_SB_ENABLED, false);
|
|
||||||
} else if (strncmp(cmd_buf, "fd-sb on", 8) == 0) {
|
|
||||||
i40e_dbg_cmd_fd_ctrl(pf, I40E_FLAG_FD_SB_ENABLED, true);
|
|
||||||
} else if (strncmp(cmd_buf, "lldp", 4) == 0) {
|
} else if (strncmp(cmd_buf, "lldp", 4) == 0) {
|
||||||
if (strncmp(&cmd_buf[5], "stop", 4) == 0) {
|
if (strncmp(&cmd_buf[5], "stop", 4) == 0) {
|
||||||
int ret;
|
int ret;
|
||||||
@ -1967,8 +1963,6 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
|
|||||||
dev_info(&pf->pdev->dev, " rem fd_filter <dest q_index> <flex_off> <pctype> <dest_vsi> <dest_ctl> <fd_status> <cnt_index> <fd_id> <packet_len> <packet>\n");
|
dev_info(&pf->pdev->dev, " rem fd_filter <dest q_index> <flex_off> <pctype> <dest_vsi> <dest_ctl> <fd_status> <cnt_index> <fd_id> <packet_len> <packet>\n");
|
||||||
dev_info(&pf->pdev->dev, " fd-atr off\n");
|
dev_info(&pf->pdev->dev, " fd-atr off\n");
|
||||||
dev_info(&pf->pdev->dev, " fd-atr on\n");
|
dev_info(&pf->pdev->dev, " fd-atr on\n");
|
||||||
dev_info(&pf->pdev->dev, " fd-sb off\n");
|
|
||||||
dev_info(&pf->pdev->dev, " fd-sb on\n");
|
|
||||||
dev_info(&pf->pdev->dev, " lldp start\n");
|
dev_info(&pf->pdev->dev, " lldp start\n");
|
||||||
dev_info(&pf->pdev->dev, " lldp stop\n");
|
dev_info(&pf->pdev->dev, " lldp stop\n");
|
||||||
dev_info(&pf->pdev->dev, " lldp get local\n");
|
dev_info(&pf->pdev->dev, " lldp get local\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user