Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 May 2015 23:30:05 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r282393 - head/sys/dev/wpi
Message-ID:  <201505032330.t43NU5o4090619@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Sun May  3 23:30:04 2015
New Revision: 282393
URL: https://svnweb.freebsd.org/changeset/base/282393

Log:
  Add debug output for WPI_BEACON_SENT event.
  
  PR:		kern/197143
  Submitted by:	 Andriy Voskoboinyk <s3erios@gmail.com>

Modified:
  head/sys/dev/wpi/if_wpi.c

Modified: head/sys/dev/wpi/if_wpi.c
==============================================================================
--- head/sys/dev/wpi/if_wpi.c	Sun May  3 23:28:54 2015	(r282392)
+++ head/sys/dev/wpi/if_wpi.c	Sun May  3 23:30:04 2015	(r282393)
@@ -2150,6 +2150,27 @@ wpi_notif_intr(struct wpi_softc *sc)
 
 			break;
 		}
+#ifdef WPI_DEBUG
+		case WPI_BEACON_SENT:
+		{
+			struct wpi_tx_stat *stat =
+			    (struct wpi_tx_stat *)(desc + 1);
+			uint64_t *tsf = (uint64_t *)(stat + 1);
+			uint32_t *mode = (uint32_t *)(tsf + 1);
+
+			bus_dmamap_sync(sc->rxq.data_dmat, data->map,
+			    BUS_DMASYNC_POSTREAD);
+
+			DPRINTF(sc, WPI_DEBUG_BEACON,
+			    "beacon sent: rts %u, ack %u, btkill %u, rate %u, "
+			    "duration %u, status %x, tsf %ju, mode %x\n",
+			    stat->rtsfailcnt, stat->ackfailcnt,
+			    stat->btkillcnt, stat->rate, le32toh(stat->duration),
+			    le32toh(stat->status), *tsf, *mode);
+
+			break;
+		}
+#endif
 		case WPI_UC_READY:
 		{
 			struct wpi_ucode_info *uc =



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505032330.t43NU5o4090619>