提交 a45e88c9 编写于 作者: A Anjali Singhai Jain 提交者: Jeff Kirsher

i40e: Dump the whole NVM, not half

Debugfs was reading exactly half the number of words, fix it.

Change-Id: Ieb217f3c6dca455d44e50a0dc61a6664c0cb2265
Signed-off-by: NAnjali Singhai Jain <anjali.singhai@intel.com>
Signed-off-by: NJesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: NKavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
上级 a1d4b03a
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
#define I40E_MAX_NPAR_QPS 32 #define I40E_MAX_NPAR_QPS 32
#define I40E_MAX_NUM_DESCRIPTORS 4096 #define I40E_MAX_NUM_DESCRIPTORS 4096
#define I40E_MAX_REGISTER 0x0038FFFF #define I40E_MAX_REGISTER 0x800000
#define I40E_DEFAULT_NUM_DESCRIPTORS 512 #define I40E_DEFAULT_NUM_DESCRIPTORS 512
#define I40E_REQ_DESCRIPTOR_MULTIPLE 32 #define I40E_REQ_DESCRIPTOR_MULTIPLE 32
#define I40E_MIN_NUM_DESCRIPTORS 64 #define I40E_MIN_NUM_DESCRIPTORS 64
......
...@@ -1740,10 +1740,10 @@ static ssize_t i40e_dbg_command_write(struct file *filp, ...@@ -1740,10 +1740,10 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
"Read NVM module=0x%x offset=0x%x words=%d\n", "Read NVM module=0x%x offset=0x%x words=%d\n",
module, offset, buffer_len); module, offset, buffer_len);
if (buffer_len) if (bytes)
print_hex_dump(KERN_INFO, "NVM Dump: ", print_hex_dump(KERN_INFO, "NVM Dump: ",
DUMP_PREFIX_OFFSET, 16, 2, DUMP_PREFIX_OFFSET, 16, 2,
buff, buffer_len, true); buff, bytes, true);
} }
kfree(buff); kfree(buff);
buff = NULL; buff = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册