diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2018-10-24 10:32:21 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-10-24 23:24:28 +0200 |
commit | cdaa18f9bd98df75d4ce9478f72c0a5d11562249 (patch) | |
tree | f9e1512da8c18563498a2e7ecf6be537a7afcd7c /drivers/net/ethernet | |
parent | net: udp: fix handling of CHECKSUM_COMPLETE packets (diff) | |
download | linux-cdaa18f9bd98df75d4ce9478f72c0a5d11562249.tar.xz linux-cdaa18f9bd98df75d4ce9478f72c0a5d11562249.zip |
octeontx2-af: Copy the right amount of memory
This is a copy and paste bug where we copied the sizeof() from the chunk
before. We're copying more data than intended but the destination is a
union so it doesn't cause memory corruption.
Fixes: ffb0abd7e9cb ("octeontx2-af: NIX AQ instruction enqueue support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c b/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c index 8890c95831ca..a4eac3b9ee72 100644 --- a/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c +++ b/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c @@ -573,7 +573,7 @@ static int rvu_nix_aq_enq_inst(struct rvu *rvu, struct nix_aq_enq_req *req, sizeof(struct nix_cq_ctx_s)); else if (req->ctype == NIX_AQ_CTYPE_RSS) memcpy(&rsp->rss, ctx, - sizeof(struct nix_cq_ctx_s)); + sizeof(struct nix_rsse_s)); else if (req->ctype == NIX_AQ_CTYPE_MCE) memcpy(&rsp->mce, ctx, sizeof(struct nix_rx_mce_s)); |