summaryrefslogtreecommitdiffstats
path: root/drivers/net
Commit message (Collapse)AuthorAgeFilesLines
* [PATCH] fs_enet build fixMarcelo Tosatti2005-11-104-0/+4
| | | | | | | | | Due to the recent update of the platform code, some platform device drivers fail to compile. This fix is for fs_enet, adding #include of a new header, to which a number of platform stuff has been relocated. Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
* Merge branch 'upstream-linus' of ↵Linus Torvalds2005-11-0924-3276/+7801
|\ | | | | | | master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
| * [PATCH] IOC: And don't mark the things as broken Cowboy.Ralf Baechle2005-11-091-1/+1
| | | | | | | | | | | | | | And don't mark the things as broken Cowboy. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [PATCH] dgrs: fix warnings when CONFIG_ISA and CONFIG_PCI are not enabledAshutosh Naik2005-11-091-9/+7
| | | | | | | | | | | | | | | | | | | | This patch fixes compiler warnings when CONFIG_ISA and CONFIG_PCI are not enabled in the dgrc network driver. Signed-off-by: Ashutosh Naik <ashutosh.naik@gmail.com> Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [PATCH] cris v10 eth: use ethtool_opsChristoph Hellwig2005-11-091-78/+71
| | | | | | | | | | Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [PATCH] b44: increase version numberFrancois Romieu2005-11-091-2/+2
| | | | | | | | | | Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [PATCH] b44: race on device closingFrancois Romieu2005-11-091-0/+11
| | | | | | | | | | | | | | | | | | | | | | Usual fix: - b44_interrupt() does not schedule NAPI polling when the device is going down; - b44_close() waits for any scheduled NAPI polling before it starts to release the private structures of the device. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [PATCH] b44: replace B44_FLAG_INIT_COMPLETE with netif_running()Francois Romieu2005-11-092-5/+2
| | | | | | | | | | Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| * [wireless ipw2100] kill unused-var warnings for debug-disabled codeJeff Garzik2005-11-091-0/+4
| |
| * Merge rsync://bughost.org/repos/ipw-delta/Jeff Garzik2005-11-094-2895/+7307
| |\
| | * Update version ipw2200 stamp to 1.0.8James Ketrenos2005-11-071-1/+1
| | |
| | * Updated firmware version stamp to 2.4 from 2.3 so it will use the latest ↵James Ketrenos2005-11-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | firmware. You can obtain the firmware at http://ipw2200.sf.net/firmware.php Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixed parameter reordering in firmware log routine.James Ketrenos2005-11-071-1/+1
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixed problem with not being able to send broadcast packets.Hong Liu2005-11-071-3/+6
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Added channel support for ipw2200 cards identified as 'ZZR'James Ketrenos2005-11-071-1/+17
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Removed warning about TKIP not being configured if countermeasures areJames Ketrenos2005-11-072-16/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configured. Countermeasures default to being turned off when wpa_supplicant runs, regardless of if TKIP is being used. They are only turned on if a TKIP is running. The warning we were printing is therefore not needed. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixes missed beacon logic in relation to on-network AP roaming.Ben Cahill2005-11-072-7/+23
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Removed legacy WIRELESS_EXT checks from ipw2200.cJames Ketrenos2005-11-071-507/+1
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fix 'Driver using old /proc/net/wireless support, please fix driver !' message.Benoit Boissinot2005-11-072-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | Wireless extensions moved the get_wireless_stats handler from being in net_device into wireless_handler. Signed-off-by: Benoit Boissinot <benoit.boissinot@ens-lyon.org> Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Pulled out a stray KERNEL_VERSION check around the suspend handler.James Ketrenos2005-11-071-4/+0
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Updated driver version stamps for ipw2100 (1.1.3) and ipw2200 (1.0.7)James Ketrenos2005-11-072-2/+2
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixes WEP firmware error condition.Hong Liu2005-11-071-18/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is caused by the patch in bug455 -- Channel change flood generates fatal error. The patch set the DISASSOCIATING status bit after sending the command. The process was scheduled out when waiting for the command to be sent to the card. The disassociated notification clears the DISASSOCIATING bit in the tasklet before the process set the bit. Move the bit setting code before sending the command now. Signed-off-by: Hong Liu <hong.liu@intel.com> Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * [Fix bug# 771] Too many (8) bytes recieved when using AES/hwcryptoZhu Yi2005-11-071-8/+2
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixes problem with WEP not working (association succeeds, but no Tx/Rx)Hong Liu2005-11-071-0/+2
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Removed PF_SYNCTHREAD legacy.James Ketrenos2005-11-071-4/+1
| | | | | | | | | | | | | | | | | | | | | The PF_SYNCTHREAD check was introduced to try and remain compatible with SWSUSP2. This check is no longer needed with newer versions. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixed problem with get_cmd_string not existing if CONFIG_IPW_DEBUG disabled.James Ketrenos2005-11-071-2/+0
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Card with WEP enabled and using shared-key auth will have firmwareHong Liu2005-11-071-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | error when it tries to auth to a WPA ap. The patch filters out WPA networks if the card is not wpa enabled when selecting network to associate to. Signed-off-by: Hong Liu <hong.liu@intel.com>
| | * Mixed PTK/GTK CCMP/TKIP support.Hong Liu2005-11-071-13/+37
| | | | | | | | | | | | Signed-off-by: Hong Liu <hong.liu@intel.com>
| | * Fixed is_network_packet() to include checking for broadcast packets.Peter Jones2005-11-071-5/+7
| | | | | | | | | | | | Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Adds radiotap support to ipw2200 in monitor mode..Mike Kershaw2005-11-072-0/+186
| | | | | | | | | | | | | | | Signed-off-by: Mike Kershaw <dragorn@kismetwireless.net> Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Make all the places the firmware fails to load showerrors (in decimal,Peter Jones2005-11-071-4/+4
| | | | | | | | | | | | | | | | | | | | | so you can cross-reference errno.h easily). Signed-off-by: Peter Jones <pjones@redhat.com> Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Don't set hardware WEP if we are actually using TKIP/AES.Hong Liu2005-11-071-2/+5
| | | | | | | | | | | | Signed-off-by: Hong Liu <hong.liu@intel.com>
| | * [Bug 760] Fix setting WEP key in monitor mode causes IV lost.Zhu Yi2005-11-071-1/+1
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * [Bug 455] Fix frequent channel change generates firmware fatal error.Hong Liu2005-11-071-6/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because of the frequent channel change, it is possible that when we are try to associate with channel 1 (authenticated but not associated). Another channel change comes at this time, then the driver will issue disassociate command to the firmware which will cause the fatal error. It seems that the association/disassociation procedure should not be interrupted. The patch attached adds test on STATUS_ASSOCIATING | STATUS_DISASSOCIATING in ipw_send_cmd(), when ensures that commands will not be sent to firmware when we are in these two status. Signed-off-by: Hong Liu <hong.liu@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Added wait_state wakeup on scan completion.James Ketrenos2005-11-072-1/+2
| | | | | | | | | | | | | | | | | | Fixed copyright date in ipw2200.h Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Updated ipw2200 to use the new ieee80211 callbacksJames Ketrenos2005-11-071-26/+35
| | | | | | | | | | | | | | | | | | | | | | | | (handle_probe_response, handle_beacon, handle_association_response). Fixed a problem with ipw_send_cmd() returning non-zero on success. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Migrated some of the channel verification code back into the driver toLiu Hong2005-11-071-21/+152
| | | | | | | | | | | | | | | | | | keep regulatory consistency in one location. Signed-off-by: James Ketrenos
| | * Added cmdlog in non-debug systems.James Ketrenos2005-11-072-14/+117
| | | | | | | | | | | | | | | | | | | | | | | | You can now specify via the module parameter 'cmdlog' to allocate a ring buffer for caching host commands sent to the firmware. They can then be dumped at any time via the sysfs entry 'cmd_log' Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Changed all of the ipw_send_cmd() calls to return any ipw_send_cmd errorJames Ketrenos2005-11-071-153/+34
| | | | | | | | | | | | | | | | | | | | | codes to the caller and changed ipw_send_cmd itself to print the error message to the syslog indicating which command failed to be sent. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Switched firmware error dumping so that it will capture a log availableJames Ketrenos2005-11-072-77/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via sysfs even if debugging disabled. When a firmware error is captured, it will be dumped to the kernel log (if debug enabled) and captured in memory to be retrieved via sysfs. If an error has already been captured, subsequent errors will be dropped. The existing error can be cleared by writing to the error log entry. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Modified ipw_config and STATUS_INIT setting to correct race conditionJames Ketrenos2005-11-071-14/+15
| | | | | | | | | | | | | | | | | | | | | | | | with request_scan being called before initialized if invoked from insmod, resulting in no association occurring during boot until iwlist scan is run. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fix firmware error when setting tx_power.Zhu Yi2005-11-071-76/+55
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Fix ipw_wx_get_txpow shows wrong disabled value.Zhu Yi2005-11-071-1/+1
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * [Bug 701] Fix a misuse of ieee->mode with ieee->iw_mode.Zhu Yi2005-11-071-1/+1
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Fixes the ad-hoc network WEP key list issue.Hong Liu2005-11-071-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we configure the wep keys after creating the ibss network, the beacons of this network will not show correctly (it still shows "key off" in iwlist scan report). This is because we don't update the beacon info in firmware. Signed-off-by: Hong Liu <hong.liu@intel.com> Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * [Bug 792] Fix WPA-PSK AES both for -Dipw and -Dwext.Zhu Yi2005-11-071-16/+125
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Disable host fragmentation in open mode since IPW2200/2915 hardwareZhu Yi2005-11-071-0/+3
| | | | | | | | | | | | | | | | | | support hardware fragmentation. Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Workaround kernel BUG_ON panic caused by unexpected duplicate packets.Zhu Yi2005-11-071-2/+4
| | | | | | | | | | | | Signed-off-by: Zhu Yi <yi.zhu@intel.com>
| | * Added more useful geography encoding so people's experience withJames Ketrenos2005-11-071-20/+259
| | | | | | | | | | | | | | | | | | | | | iwconfig matches what their hardware can actually do in regard to supported channel maps, etc. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
| | * Fixed some compiler issues if CONFIG_IPW2200_QOS is enabled.James Ketrenos2005-11-071-7/+6
| | | | | | | | | | | | | | | | | | Updated a copyright date. Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
OpenPOWER on IntegriCloud