Skip to content

Commit 6850d0f

Browse files
sammjdavem330
authored andcommitted
net/ncsi: Fix AEN HNCDSC packet length
Correct the value of the HNCDSC AEN packet. Fixes: 7a82ecf "net/ncsi: NCSI AEN packet handler" Signed-off-by: Samuel Mendoza-Jonas <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 509c7a1 commit 6850d0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/ncsi/ncsi-aen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ static struct ncsi_aen_handler {
187187
} ncsi_aen_handlers[] = {
188188
{ NCSI_PKT_AEN_LSC, 12, ncsi_aen_handler_lsc },
189189
{ NCSI_PKT_AEN_CR, 4, ncsi_aen_handler_cr },
190-
{ NCSI_PKT_AEN_HNCDSC, 4, ncsi_aen_handler_hncdsc }
190+
{ NCSI_PKT_AEN_HNCDSC, 8, ncsi_aen_handler_hncdsc }
191191
};
192192

193193
int ncsi_aen_handler(struct ncsi_dev_priv *ndp, struct sk_buff *skb)

0 commit comments

Comments
 (0)