diff options
author | Rahul Lakkireddy <rahul.lakkireddy@chelsio.com> | 2017-12-08 09:48:39 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-08 14:31:50 -0500 |
commit | c1219653f3a5dc16334c43cbb8b3f5c27586c98b (patch) | |
tree | fce601db49d10987f645fbc6ec2fe3797dc21225 /drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h | |
parent | 4db0401f8ab1b5559bd0063209845c7a87b3dd71 (diff) | |
download | blackbird-op-linux-c1219653f3a5dc16334c43cbb8b3f5c27586c98b.tar.gz blackbird-op-linux-c1219653f3a5dc16334c43cbb8b3f5c27586c98b.zip |
cxgb4: skip TX and RX payload regions in memory dumps
Use meminfo to identify TX and RX payload regions and skip them in
collection of EDC, MC, and HMA.
Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h b/drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h index 880b1cb5b463..1e1719526e76 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h +++ b/drivers/net/ethernet/chelsio/cxgb4/cudbg_entity.h @@ -95,6 +95,13 @@ static const char * const cudbg_region[] = { "On-chip queues:" }; +/* Memory region info relative to current memory (i.e. wrt 0). */ +struct cudbg_region_info { + bool exist; /* Does region exists in current memory? */ + u32 start; /* Start wrt 0 */ + u32 end; /* End wrt 0 */ +}; + struct cudbg_mem_desc { u32 base; u32 limit; |