Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Jun 2010 19:28:27 -0400
From:      Michael Butler <imb@protected-networks.net>
To:        freebsd-current@freebsd.org
Subject:   Re: [head tinderbox] failure on ia64/ia64
Message-ID:  <4C11751B.8040306@protected-networks.net>
In-Reply-To: <201006102311.o5ANBREn006529@freebsd-current.sentex.ca>
References:  <201006102311.o5ANBREn006529@freebsd-current.sentex.ca>

next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------030605020900030906080802
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 06/10/10 19:11, FreeBSD Tinderbox wrote:

> cc -c -O2 -pipe -fno-strict-aliasing  -std=c99  -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror  /src/sys/net80211/ieee80211_sta.c
> /src/sys/net80211/ieee80211_sta.c: In function 'sta_input':
> /src/sys/net80211/ieee80211_sta.c:587: error: expected ')' before '!' token
> *** Error code 1

I *think* this is supposed to be ..

  if (HAS_SEQ(type) && !IEEE80211_IS_MULTICAST(wh->i_addr1)) {

	imb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (FreeBSD)

iEYEARECAAYFAkwRdRsACgkQQv9rrgRC1JLQ9ACfVPINlwHR8g0hXt0wenp5esfj
FooAnidIAWqJr9fJ3wQ8nhtEZtj9d0VG
=errN
-----END PGP SIGNATURE-----

--------------030605020900030906080802
Content-Type: text/x-diff;
 name="ieee80211_sta.c.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename="ieee80211_sta.c.diff"

*** /usr/src/sys/net80211/ieee80211_sta.c~	Thu Jun 10 17:53:24 2010
--- /usr/src/sys/net80211/ieee80211_sta.c	Thu Jun 10 19:15:42 2010
***************
*** 584,590 ****
  		}
  		IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
  		ni->ni_noise = nf;
! 		if (HAS_SEQ(type) !IEEE80211_IS_MULTICAST(wh->i_addr1)) {
  			uint8_t tid = ieee80211_gettid(wh);
  			if (IEEE80211_QOS_HAS_SEQ(wh) &&
  			    TID_TO_WME_AC(tid) >= WME_AC_VI)
--- 584,590 ----
  		}
  		IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
  		ni->ni_noise = nf;
! 		if (HAS_SEQ(type) && !IEEE80211_IS_MULTICAST(wh->i_addr1)) {
  			uint8_t tid = ieee80211_gettid(wh);
  			if (IEEE80211_QOS_HAS_SEQ(wh) &&
  			    TID_TO_WME_AC(tid) >= WME_AC_VI)

--------------030605020900030906080802--



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