]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i40e: Dump the whole NVM, not half
authorAnjali Singhai Jain <anjali.singhai@intel.com>
Thu, 28 Nov 2013 06:39:26 +0000 (06:39 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Sun, 5 Jan 2014 06:06:20 +0000 (22:06 -0800)
Debugfs was reading exactly half the number of words, fix it.

Change-Id: Ieb217f3c6dca455d44e50a0dc61a6664c0cb2265
Signed-off-by: Anjali Singhai Jain <anjali.singhai@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Kavindya Deegala <kavindya.s.deegala@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/i40e/i40e.h
drivers/net/ethernet/intel/i40e/i40e_debugfs.c

index df569fdcbc1c772f7c88d41fb02d39a5448b8379..934623e084ca1e6f68f29f4ca202c3c49b2157e1 100644 (file)
@@ -65,7 +65,7 @@
 #define I40E_MAX_NPAR_QPS     32
 
 #define I40E_MAX_NUM_DESCRIPTORS      4096
-#define I40E_MAX_REGISTER     0x0038FFFF
+#define I40E_MAX_REGISTER     0x800000
 #define I40E_DEFAULT_NUM_DESCRIPTORS  512
 #define I40E_REQ_DESCRIPTOR_MULTIPLE  32
 #define I40E_MIN_NUM_DESCRIPTORS      64
index e201060fe368a8b88dcb8bc6de978113b895b520..7f448b6a2f7399e6b60d316d972db29e50566245 100644 (file)
@@ -1740,10 +1740,10 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
                        dev_info(&pf->pdev->dev,
                                 "Read NVM module=0x%x offset=0x%x words=%d\n",
                                 module, offset, buffer_len);
-                       if (buffer_len)
+                       if (bytes)
                                print_hex_dump(KERN_INFO, "NVM Dump: ",
                                        DUMP_PREFIX_OFFSET, 16, 2,
-                                       buff, buffer_len, true);
+                                       buff, bytes, true);
                }
                kfree(buff);
                buff = NULL;