linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mac80211 fixes for 2.6.22
@ 2007-06-12  1:16 John W. Linville
  2007-06-12  1:17 ` [PATCH] cfg80211: fix signed macaddress in sysfs John W. Linville
  2007-06-12 21:14 ` mac80211 fixes for 2.6.22 David Miller
  0 siblings, 2 replies; 7+ messages in thread
From: John W. Linville @ 2007-06-12  1:16 UTC (permalink / raw)
  To: davem; +Cc: linux-wireless, netdev

Dave,

Here are a few mac80211 patches appropriate for 2.6.22.

Individual patches to follow, or you can pull at your leisure...

John

---

The following changes since commit 5ecd3100e695228ac5e0ce0e325e252c0f11806f:
  Linus Torvalds (1):
        Linux 2.6.22-rc4

are found in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git mac80211-fixes

David Lamparter (1):
      cfg80211: fix signed macaddress in sysfs

Johannes Berg (1):
      mac80211: fix debugfs tx power reduction output

Mattias Nissler (1):
      mac80211: Don't stop tx queue on master device while scanning.

 net/mac80211/debugfs.c       |    2 +-
 net/mac80211/ieee80211_sta.c |   12 ++++++++++++
 net/wireless/sysfs.c         |    2 +-
 3 files changed, 14 insertions(+), 2 deletions(-)

-- 
John W. Linville
linville@tuxdriver.com

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH] cfg80211: fix signed macaddress in sysfs
@ 2007-06-03 22:06 David Lamparter
  2007-06-04 11:40 ` Johannes Berg
  0 siblings, 1 reply; 7+ messages in thread
From: David Lamparter @ 2007-06-03 22:06 UTC (permalink / raw)
  To: linux-wireless, John W. Linville, Michael Wu

Fix signedness mixup making mac addresses show up strangely
(like 00:11:22:33:44:ffffffaa) in /sys/class/ieee80211/*/macaddress.

Signed-off-by: David Lamparter <equinox@diac24.net>
---

 net/wireless/sysfs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/wireless/sysfs.c b/net/wireless/sysfs.c
index 7844be4..374d16d 100644
--- a/net/wireless/sysfs.c
+++ b/net/wireless/sysfs.c
@@ -33,7 +33,7 @@ static ssize_t _show_permaddr(struct device *dev,
 			      struct device_attribute *attr,
 			      char *buf)
 {
-	char *addr = dev_to_rdev(dev)->wiphy.perm_addr;
+	unsigned char *addr = dev_to_rdev(dev)->wiphy.perm_addr;
 
 	return sprintf(buf, "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x\n",
 		       addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2007-06-12 21:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-12  1:16 mac80211 fixes for 2.6.22 John W. Linville
2007-06-12  1:17 ` [PATCH] cfg80211: fix signed macaddress in sysfs John W. Linville
2007-06-12  1:18   ` [PATCH] mac80211: fix debugfs tx power reduction output John W. Linville
2007-06-12  1:18     ` [PATCH] mac80211: Don't stop tx queue on master device while scanning John W. Linville
2007-06-12 21:14 ` mac80211 fixes for 2.6.22 David Miller
  -- strict thread matches above, loose matches on Subject: below --
2007-06-03 22:06 [PATCH] cfg80211: fix signed macaddress in sysfs David Lamparter
2007-06-04 11:40 ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).