netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dan Williams <dcbw@redhat.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: jeff@garzik.org, netdev@vger.kernel.org
Subject: Re: Please pull 'upstream' branch of wireless-2.6
Date: Mon, 24 Apr 2006 20:33:02 -0400	[thread overview]
Message-ID: <1145925182.9369.1.camel@localhost.localdomain> (raw)
In-Reply-To: <20060424204044.GC21761@tuxdriver.com>

On Mon, 2006-04-24 at 16:40 -0400, John W. Linville wrote:
> The following changes since commit 7c241d37fe0e6442c5cf3b5d73f7f58f2dc66352:
>   Michael Buesch:
>         bcm43xx: make PIO mode usable
> 
> are found in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git upstream
> 
> Dan Williams:
>       wireless/airo: minimal WPA awareness
> 
> Jiri Benc:
>       orinoco: fix BAP0 offset error after several days of operation
> 
> Johannes Berg:
>       softmac: add SIOCSIWMLME
>       softmac: clean up event handling code

Any way to get the event handling cleanup patch into 2.6.17?  It's
pretty much a bugfix and bcm43xx is useless with wpa_supplicant and NM
without the patch...

Dan

> Michael Buesch:
>       bcm43xx: use pci_iomap() for convenience.
> 
> Pavel Roskin:
>       orinoco: Remove useless CIS validation
>       orinoco: remove PCMCIA audio support, it's useless for wireless cards
>       orinoco: remove underscores from little-endian field names
>       orinoco: remove tracing code, it's unused
>       orinoco: remove debug buffer code and userspace include support
>       orinoco: Symbol card supported by spectrum_cs is LA4137, not LA4100
>       orinoco: optimize Tx exception handling in orinoco
>       orinoco: orinoco_xmit() should only return valid symbolic constants
>       orinoco replace hermes_write_words() with hermes_write_bytes()
>       orinoco: don't use any padding for Tx frames
>       orinoco: refactor and clean up Tx error handling
>       orinoco: simplify 802.3 encapsulation code
>       orinoco: delay FID allocation after firmware initialization
>       orinoco_pci: disable device and free IRQ when suspending
>       orinoco_pci: use pci_iomap() for resources
>       orinoco: support PCI suspend/resume for Nortel, PLX and TMD adaptors
>       orinoco: reduce differences between PCI drivers, create orinoco_pci.h
>       orinoco: further comment cleanup in the PCI drivers
>       orinoco: bump version to 0.15
> 
> Zhu Yi:
>       ieee80211: Fix TKIP MIC calculation for QoS frames
>       ieee80211: Fix TX code doesn't enable QoS when using WPA + QoS
>       ieee80211: export list of bit rates with standard WEXT procddures
>       ieee80211: remove unnecessary CONFIG_WIRELESS_EXT checking
>       ieee80211: replace debug IEEE80211_WARNING with each own debug macro
>       ieee80211: update version stamp to 1.1.13
>       ipw2200: Exponential averaging for signal and noise Level
>       ipw2200: Fix TX QoS enabled frames problem
>       ipw2200: generates a scan event after a scan has completed
>       ipw2200: add module_param support for antenna selection
>       ipw2200: fix compile warning when !CONFIG_IPW2200_DEBUG
>       ipw2200: Do not continue loading the firmware if kmalloc fails
>       ipw2200: turn off signal debug log
>       ipw2200: Set the 'fixed' flags in wext get_rate
>       ipw2200: Fix endian issues with v3.0 fw image format
>       README.ipw2200: rename CONFIG_IPW_DEBUG to CONFIG_IPW2200_DEBUG
>       ipw2200: Enable rtap interface for RF promiscuous mode while associated
>       ipw2200: version string rework
>       ipw2200: update version stamp to 1.1.2
>       ipw2200: rename CONFIG_IPW_QOS to CONFIG_IPW2200_QOS
>       wireless Kconfig add IPW2200_RADIOTAP
>       ipw2200: rename CONFIG_IEEE80211_RADIOTAP to CONFIG_IPW2200_RADIOTAP
>       ipw2200: remove priv->last_noise reference
>       ipw2200: Fix wpa_supplicant association problem
> 
>  Documentation/networking/README.ipw2200        |   10 
>  drivers/net/wireless/Kconfig                   |   30 +
>  drivers/net/wireless/airo.c                    |  271 +++++---
>  drivers/net/wireless/bcm43xx/bcm43xx.h         |    1 
>  drivers/net/wireless/bcm43xx/bcm43xx_debugfs.c |    2 
>  drivers/net/wireless/bcm43xx/bcm43xx_main.c    |   27 -
>  drivers/net/wireless/hermes.c                  |   66 --
>  drivers/net/wireless/hermes.h                  |   43 -
>  drivers/net/wireless/ipw2200.c                 |  849 +++++++++++++++++++++---
>  drivers/net/wireless/ipw2200.h                 |   83 ++
>  drivers/net/wireless/orinoco.c                 |  251 ++-----
>  drivers/net/wireless/orinoco.h                 |   19 -
>  drivers/net/wireless/orinoco_cs.c              |    9 
>  drivers/net/wireless/orinoco_nortel.c          |  168 +++--
>  drivers/net/wireless/orinoco_pci.c             |  207 +-----
>  drivers/net/wireless/orinoco_pci.h             |  125 ++++
>  drivers/net/wireless/orinoco_plx.c             |  222 +++---
>  drivers/net/wireless/orinoco_tmd.c             |   96 +--
>  drivers/net/wireless/spectrum_cs.c             |   48 +
>  include/net/ieee80211.h                        |    6 
>  include/net/ieee80211softmac_wx.h              |    5 
>  net/ieee80211/ieee80211_crypt_tkip.c           |   11 
>  net/ieee80211/ieee80211_rx.c                   |   18 -
>  net/ieee80211/ieee80211_tx.c                   |   63 +-
>  net/ieee80211/ieee80211_wx.c                   |   44 +
>  net/ieee80211/softmac/ieee80211softmac_assoc.c |    2 
>  net/ieee80211/softmac/ieee80211softmac_event.c |   25 -
>  net/ieee80211/softmac/ieee80211softmac_priv.h  |    1 
>  net/ieee80211/softmac/ieee80211softmac_wx.c    |   32 +
>  29 files changed, 1673 insertions(+), 1061 deletions(-)
>  create mode 100644 drivers/net/wireless/orinoco_pci.h
> 
> Patch included as attachment due to size concerns.


  reply	other threads:[~2006-04-25  0:34 UTC|newest]

Thread overview: 91+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-24 19:40 Please pull 'upstream-fixes' branch of wireless-2.6 John W. Linville
2006-04-24 20:40 ` Please pull 'upstream' " John W. Linville
2006-04-25  0:33   ` Dan Williams [this message]
2006-04-25 11:30     ` Johannes Berg
2006-04-25 12:03       ` Dan Williams
2006-04-26 10:18   ` Jeff Garzik
2006-04-26 10:17 ` Please pull 'upstream-fixes' " Jeff Garzik
  -- strict thread matches above, loose matches on Subject: below --
2006-05-06  1:06 Please pull upstream-fixes " John W. Linville
2006-05-06  1:09 ` Please pull upstream " John W. Linville
2006-05-17 19:34 Please pull 'upstream-fixes' " John W. Linville
2006-05-17 19:38 ` Please pull 'upstream' " John W. Linville
2006-05-17 21:23   ` Daniel Drake
2006-05-18 17:28     ` John W. Linville
2006-05-18 18:26       ` Daniel Drake
2006-05-22 19:18 Please pull 'upstream-fixes' " John W. Linville
2006-05-22 19:19 ` Please pull 'upstream' " John W. Linville
2006-05-24  4:35   ` Jeff Garzik
2006-05-24 12:42     ` John W. Linville
2006-06-05 21:53 Please pull 'upstream-fixes' " John W. Linville
2006-06-05 21:55 ` Please pull 'upstream' " John W. Linville
2006-06-08 19:48   ` Jeff Garzik
2006-06-15 20:03 John W. Linville
2006-06-20  8:46 ` Jeff Garzik
2006-06-26 21:25 John W. Linville
2006-06-27  2:06 ` Jeff Garzik
2006-06-27  2:27   ` Larry Finger
2006-06-27  3:50     ` Jeff Garzik
2006-06-27 13:30     ` Michael Buesch
2006-06-27 14:11       ` Jeff Garzik
2006-06-27 14:34         ` Larry Finger
2006-06-27 14:36         ` Michael Buesch
2006-06-27 16:10           ` Jeff Garzik
2006-06-27 16:23             ` Michael Buesch
2006-06-27 15:25         ` Michael Buesch
2006-06-27 16:12           ` Jeff Garzik
2006-06-27 16:31             ` Michael Buesch
2006-06-27 19:33               ` John W. Linville
2006-06-27 19:47                 ` Michael Buesch
2006-06-27 20:06                   ` Larry Finger
2006-06-27 20:23                     ` Michael Buesch
2006-06-27 20:37                       ` Larry Finger
2006-06-28 14:34                         ` Michael Buesch
2006-06-28 16:04                           ` Larry Finger
2006-06-28 16:32                             ` Michael Buesch
2006-06-28 17:32                               ` Larry Finger
2006-06-28 18:02                                 ` Michael Buesch
2006-06-27 16:52             ` Joseph Jezak
2006-07-10 21:29 Please pull 'upstream-fixes' " John W. Linville
2006-07-10 21:31 ` Please pull 'upstream' " John W. Linville
2006-07-10 21:38   ` Michael Buesch
2006-07-10 21:58     ` Larry Finger
2006-07-19 17:51   ` Jeff Garzik
2006-07-28  0:22 Please pull 'upstream-fixes' " John W. Linville
2006-07-28  0:23 ` Please pull 'upstream' " John W. Linville
2006-07-29  4:33   ` Jeff Garzik
2006-08-14 20:50 John W. Linville
2006-08-30 15:05 John W. Linville
2006-09-06 15:02 ` Jeff Garzik
2006-09-11 23:58 Please pull 'upstream-fixes' " John W. Linville
2006-09-11 23:59 ` Please pull 'upstream' " John W. Linville
2006-09-12 15:43   ` Jeff Garzik
2006-09-12 19:49   ` Michael Buesch
2006-10-17 21:34 Please pull 'upstream-fixes' " John W. Linville
2006-10-17 21:35 ` Please pull 'upstream' " John W. Linville
2006-10-21 18:22   ` Jeff Garzik
2006-11-08  4:58 Please pull 'upstream-fixes' " John W. Linville
2006-11-08  4:59 ` Please pull 'upstream' " John W. Linville
2006-11-08 19:48   ` John W. Linville
2006-11-14 15:29   ` Jeff Garzik
2006-11-15  1:29 Please pull 'upstream-fixes' " John W. Linville
2006-11-15  1:31 ` Please pull 'upstream' " John W. Linville
2006-11-28 19:13   ` John W. Linville
2006-12-06  1:42 John W. Linville
2006-12-07 10:03 ` Jeff Garzik
2006-12-12  0:21 John W. Linville
2006-12-21  3:03 Please pull 'upstream-fixes' " John W. Linville
2006-12-21  3:05 ` Please pull 'upstream' " John W. Linville
2006-12-26 21:39   ` Jeff Garzik
2006-12-28  0:10     ` John W. Linville
2007-01-03  2:04       ` John W. Linville
2007-01-03  2:41 Please pull 'upstream-fixes' " John W. Linville
2007-01-03  2:42 ` Please pull 'upstream' " John W. Linville
2007-01-18 12:16   ` John W. Linville
2007-01-18 15:48 Please pull 'upstream-fixes' " John W. Linville
2007-01-18 15:49 ` Please pull 'upstream' " John W. Linville
2007-01-19  3:10   ` Jeff Garzik
2007-01-19  8:42     ` John W. Linville
2007-01-23  5:36   ` Jeff Garzik
2007-02-02 21:27 Please pull "upstream-fixes" " John W. Linville
2007-02-02 21:28 ` Please pull "upstream" " John W. Linville
2007-02-07  0:06 ` Please pull "upstream-fixes" " Jeff Garzik
     [not found]   ` <45C917EF.1060307-o2qLIJkoznsdnm+yROfE0A@public.gmane.org>
2007-02-07 21:11     ` Please pull "upstream" " John W. Linville
     [not found]       ` <20070207211117.GC6109-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
2007-02-09 20:13         ` John W. Linville
     [not found]           ` <20070209201306.GA2580-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
2007-02-09 21:12             ` Jeff Garzik
2007-05-07 17:51 Please pull 'upstream' " John W. Linville
     [not found] ` <20070507175121.GF5125-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org>
2007-05-07 21:15   ` Dan Williams
     [not found]     ` <1178572550.11805.7.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2007-05-07 22:51       ` John W. Linville
2007-05-08  8:49       ` Johannes Berg
2007-05-07 23:09   ` Jeff Garzik
     [not found]     ` <463FB1A0.3070608-o2qLIJkoznsdnm+yROfE0A@public.gmane.org>
2007-05-07 23:30       ` Michael Wu
2007-05-07 23:38     ` John W. Linville
2007-05-08 17:38   ` John W. Linville
2007-05-08 17:39 John W. Linville
2007-05-09 22:54 ` Jeff Garzik
2007-05-29 18:30 Please pull 'upstream-fixes' " John W. Linville
2007-05-29 18:31 ` Please pull 'upstream' " John W. Linville
2007-05-30 14:03   ` Jeff Garzik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1145925182.9369.1.camel@localhost.localdomain \
    --to=dcbw@redhat.com \
    --cc=jeff@garzik.org \
    --cc=linville@tuxdriver.com \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).