提交 694dc1cb 编写于 作者: S Shannon Nelson 提交者: Jeff Kirsher

i40e: rename debugfs clear_stats option

Change debugfs command from "clear_stats pf" to "clear_stats port"
to be clearer what the action is.  Also, limit the action to the
base PF, not the NPAR partitions.

Change-ID: I22aa39c0962d83a83a985097b1000ed7f8c66f3f
Signed-off-by: NShannon Nelson <shannon.nelson@intel.com>
Tested-by: NJim Young <james.m.young@intel.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
上级 d1bbe0ea
...@@ -1485,11 +1485,15 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1485,11 +1485,15 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
} else { } else {
dev_info(&pf->pdev->dev, "clear_stats vsi [seid]\n"); dev_info(&pf->pdev->dev, "clear_stats vsi [seid]\n");
} }
} else if (strncmp(&cmd_buf[12], "pf", 2) == 0) { } else if (strncmp(&cmd_buf[12], "port", 4) == 0) {
if (pf->hw.partition_id == 1) {
i40e_pf_reset_stats(pf); i40e_pf_reset_stats(pf);
dev_info(&pf->pdev->dev, "pf clear stats called\n"); dev_info(&pf->pdev->dev, "port stats cleared\n");
} else { } else {
dev_info(&pf->pdev->dev, "clear_stats vsi [seid] or clear_stats pf\n"); dev_info(&pf->pdev->dev, "clear port stats not allowed on this port partition\n");
}
} else {
dev_info(&pf->pdev->dev, "clear_stats vsi [seid] or clear_stats port\n");
} }
} else if (strncmp(cmd_buf, "send aq_cmd", 11) == 0) { } else if (strncmp(cmd_buf, "send aq_cmd", 11) == 0) {
struct i40e_aq_desc *desc; struct i40e_aq_desc *desc;
...@@ -1895,7 +1899,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1895,7 +1899,7 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
dev_info(&pf->pdev->dev, " read <reg>\n"); dev_info(&pf->pdev->dev, " read <reg>\n");
dev_info(&pf->pdev->dev, " write <reg> <value>\n"); dev_info(&pf->pdev->dev, " write <reg> <value>\n");
dev_info(&pf->pdev->dev, " clear_stats vsi [seid]\n"); dev_info(&pf->pdev->dev, " clear_stats vsi [seid]\n");
dev_info(&pf->pdev->dev, " clear_stats pf\n"); dev_info(&pf->pdev->dev, " clear_stats port\n");
dev_info(&pf->pdev->dev, " pfr\n"); dev_info(&pf->pdev->dev, " pfr\n");
dev_info(&pf->pdev->dev, " corer\n"); dev_info(&pf->pdev->dev, " corer\n");
dev_info(&pf->pdev->dev, " globr\n"); dev_info(&pf->pdev->dev, " globr\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册