Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jun 2022 16:42:25 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: fb6eaf74e9ea - main - LinuxKPI: 802.11: fix compiling with DEBUG
Message-ID:  <202206111642.25BGgPw8010864@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=fb6eaf74e9ead477be1f25cba88273ab65ece0d1

commit fb6eaf74e9ead477be1f25cba88273ab65ece0d1
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2022-06-11 16:38:00 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2022-06-11 16:38:00 +0000

    LinuxKPI: 802.11: fix compiling with DEBUG
    
    Fix a build with DEBUG after d0d2911035192473e8bd3f6b99ed5ca9b1b29e47
    which lost the __func__, __LINE__ argument in an updated tracing line.
    
    Reported by:    Tomoaki AOKI (junchoon dec.sakura.ne.jp)
    MFC after:      2 days
    X-MFC with:     d0d2911035192473e8bd3f6b99ed5ca9b1b29e47
---
 sys/compat/linuxkpi/common/src/linux_80211.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index 4b473bfe2314..6b265d0e4b2b 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -3094,6 +3094,7 @@ lkpi_80211_txq_tx_one(struct lkpi_sta *lsta, struct mbuf *m)
 			printf("%s:%d mo_wake_tx_queue :: %d %u lsta %p sta %p "
 			    "ni %p %6D skb %p lxtq %p { qlen %u, ac %d tid %u } "
 			    "WAKE_TX_Q ac %d prio %u qmap %u\n",
+			    __func__, __LINE__,
 			    curthread->td_tid, (unsigned int)ticks,
 			    lsta, sta, ni, ni->ni_macaddr, ":", skb, ltxq,
 			    skb_queue_len(&ltxq->skbq), ltxq->txq.ac,



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