svn commit: r360628 - stable/12/sys/dev/iwm

Mark Johnston markj at FreeBSD.org
Mon May 4 12:28:45 UTC 2020


Author: markj
Date: Mon May  4 12:28:44 2020
New Revision: 360628
URL: https://svnweb.freebsd.org/changeset/base/360628

Log:
  MFC r360373:
  iwm: Print the command code for any unhandled commands.

Modified:
  stable/12/sys/dev/iwm/if_iwm.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/iwm/if_iwm.c
==============================================================================
--- stable/12/sys/dev/iwm/if_iwm.c	Mon May  4 12:27:46 2020	(r360627)
+++ stable/12/sys/dev/iwm/if_iwm.c	Mon May  4 12:28:44 2020	(r360628)
@@ -5618,9 +5618,8 @@ iwm_handle_rxb(struct iwm_softc *sc, struct mbuf *m)
 
 		default:
 			device_printf(sc->sc_dev,
-			    "frame %d/%d %x UNHANDLED (this should "
-			    "not happen)\n", qid & ~0x80, idx,
-			    pkt->len_n_flags);
+			    "code %x, frame %d/%d %x unhandled\n",
+			    code, qid & ~0x80, idx, pkt->len_n_flags);
 			break;
 		}
 


More information about the svn-src-stable mailing list