linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mac80211: pull request
@ 2007-07-27 17:26 Jiri Benc
  2007-07-27 17:55 ` Larry Finger
  0 siblings, 1 reply; 5+ messages in thread
From: Jiri Benc @ 2007-07-27 17:26 UTC (permalink / raw)
  To: John W. Linville; +Cc: Linux Wireless

John,

please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/mac80211.git up-2.6
to obtain patches below.

This is intended for wireless-2.6. Because of the number of patches and
the fact they are not much tested, it's maybe a good idea not to push
them upstream immediately - but that's up to you.

Andy Green (2):
      mac80211: Add get_unaligned to ieee80211_get_radiotap_len
      mac80211: Improve sanity checks on injected packets

Daniel Drake (5):
      mac80211: missing dev_put in ieee80211_master_start_xmit
      mac80211: STA reassociation improvements
      mac80211: don't allow scanning in monitor mode
      mac80211: improved short preamble handling
      mac80211: implement ERP info change notifications

Ivo van Doorn (1):
      mac80211: Add LONG_RETRY flag to ieee80211_tx_control

Johannes Berg (14):
      mac80211: split RX handlers into own file
      mac80211: move QoS rx handlers into rx.c
      mac80211: rx cleanups (1)
      mac80211: split ieee80211_rx_h_check handler
      mac80211: split up __ieee80211_rx
      mac80211: fix bug for per-sta stats
      mac80211: rx cleanups (2)
      mac80211: split TX path into own file
      mac80211: remove some unnecessary includes
      mac80211: split out some key functions from ieee80211.c
      mac80211: move some rate control functions out of ieee80211.c
      mac80211: reorder interface related functions
      mac80211: introduce util.c
      mac80211: fix add_interface monitor mode behaviour

Michael Wu (2):
      mac80211: improve locking of sta_info related structures
      mac80211: use more GFP_KERNEL instead of GFP_ATOMIC

Zhu Yi (2):
      mac80211: use do { } while (0) for multi-line macros
      mac80211: Fix sparse error for sta_last_seq_ctrl_read

 include/net/ieee80211_radiotap.h |   10 +
 include/net/mac80211.h           |   34 +-
 net/mac80211/Makefile            |    6 +-
 net/mac80211/debugfs_netdev.c    |    8 +-
 net/mac80211/debugfs_sta.c       |    2 +-
 net/mac80211/ieee80211.c         | 4491 ++++----------------------------------
 net/mac80211/ieee80211_i.h       |   74 +-
 net/mac80211/ieee80211_iface.c   |    2 +-
 net/mac80211/ieee80211_ioctl.c   |   36 +-
 net/mac80211/ieee80211_rate.c    |   42 +
 net/mac80211/ieee80211_rate.h    |    6 +
 net/mac80211/ieee80211_sta.c     |   60 +-
 net/mac80211/key.c               |   69 +
 net/mac80211/rx.c                | 1453 ++++++++++++
 net/mac80211/sta_info.c          |  184 +-
 net/mac80211/sta_info.h          |   11 +-
 net/mac80211/tx.c                | 1883 ++++++++++++++++
 net/mac80211/util.c              |  488 +++++
 net/mac80211/wme.c               |   65 -
 net/mac80211/wme.h               |    9 +-
 20 files changed, 4589 insertions(+), 4344 deletions(-)


-- 
Jiri Benc
SUSE Labs

^ permalink raw reply	[flat|nested] 5+ messages in thread
* mac80211: pull request
@ 2007-05-01 15:50 Jiri Benc
  0 siblings, 0 replies; 5+ messages in thread
From: Jiri Benc @ 2007-05-01 15:50 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/mac80211.git up
to obtain following patches:

Jiri Benc (3):
      mac80211: destroy workqueue in error path
      mac80211: rename remaining mentions of sysfs and procfs
      mac80211: mark as experimental

Johannes Berg (1):
      fix mac80211 compile w/o VERBOSE_DEBUG but w/ DEBUG

 net/mac80211/Kconfig          |    3 ++-
 net/mac80211/debugfs_key.c    |    1 -
 net/mac80211/debugfs_netdev.h |    8 ++++----
 net/mac80211/ieee80211.c      |    3 ++-
 net/mac80211/ieee80211_i.h    |    4 +++-
 net/mac80211/sta_info.c       |   34 ++++++++++++++++++++--------------
 net/mac80211/sta_info.h       |    8 +++++---
 7 files changed, 36 insertions(+), 25 deletions(-)


-- 
Jiri Benc
SUSE Labs

^ permalink raw reply	[flat|nested] 5+ messages in thread
* mac80211: pull request
@ 2007-04-29 20:01 Jiri Benc
  0 siblings, 0 replies; 5+ messages in thread
From: Jiri Benc @ 2007-04-29 20:01 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/jbenc/mac80211.git up
to obtain following patches:

James Ketrenos (1):
      mac80211: Fix ieee80211_sta_config_auth to select networks if rssi < 0

Jiri Benc (5):
      mac80211: remove unused code
      mac80211: remove test_mode
      mac80211: document requirement for atomicity of callbacks
      mac80211: add copyrights
      mac80211: remove hostapd scanning

Johannes Berg (1):
      mac80211: optimise ieee80211_get_hdrlen

Larry Finger (1):
      mac80211: Add channel to scan results

Michael Wu (18):
      mac80211: Add radiotap support
      mac80211: fix virtual interface related locking
      mac80211: disable tasklets on close
      mac80211: remove statistics callback for master device
      mac80211: avoid flush_scheduled_work
      mac80211: fix configuration concurrency issues in ieee80211_sta.c
      mac80211: misc cleanups in ieee80211_sta.c
      mac80211: set bssid to broadcast before scan
      mac80211: fix issues in ieee80211 qdisc
      mac80211: prevent master device from going up without ieee80211 qdisc
      mac80211: stop all virtual interfaces when master device goes down
      mac80211: kill ieee80211_set_mac_address
      mac80211: kill ceiling_div
      mac80211: eliminate forward declarations in ieee80211.c
      mac80211: set event_capa in iw_range
      mac80211: suppress warnings
      mac80211: Allow drivers to configure default regulatory domain
      mac80211: remove ieee80211_netif_oper

 include/net/mac80211.h         |  111 ++++--------
 net/mac80211/Makefile          |    1 -
 net/mac80211/debugfs.c         |    3 -
 net/mac80211/hostapd_ioctl.h   |    3 -
 net/mac80211/ieee80211.c       |  403 ++++++++++++++++++++--------------------
 net/mac80211/ieee80211_cfg.c   |   15 +-
 net/mac80211/ieee80211_i.h     |   50 +-----
 net/mac80211/ieee80211_iface.c |   79 ++++-----
 net/mac80211/ieee80211_ioctl.c |  178 ++++--------------
 net/mac80211/ieee80211_scan.c  |  344 ----------------------------------
 net/mac80211/ieee80211_sta.c   |   75 +++++---
 net/mac80211/sta_info.c        |    5 +-
 net/mac80211/wme.c             |   24 ++--
 net/mac80211/wme.h             |    1 +
 14 files changed, 370 insertions(+), 922 deletions(-)

-- 
Jiri Benc
SUSE Labs

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

end of thread, other threads:[~2007-07-28 10:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-27 17:26 mac80211: pull request Jiri Benc
2007-07-27 17:55 ` Larry Finger
2007-07-28 10:41   ` Larry Finger
  -- strict thread matches above, loose matches on Subject: below --
2007-05-01 15:50 Jiri Benc
2007-04-29 20:01 Jiri Benc

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).