1. 07 12月, 2012 1 次提交
  2. 22 11月, 2012 1 次提交
  3. 17 11月, 2012 1 次提交
  4. 16 10月, 2012 1 次提交
  5. 08 9月, 2012 1 次提交
  6. 07 6月, 2012 1 次提交
    • J
      wireless: Remove casts to same type · 2c208890
      Joe Perches 提交于
      Adding casts of objects to the same type is unnecessary
      and confusing for a human reader.
      
      For example, this cast:
      
              int y;
              int *p = (int *)&y;
      
      I used the coccinelle script below to find and remove these
      unnecessary casts.  I manually removed the conversions this
      script produces of casts with __force, __iomem and __user.
      
      @@
      type T;
      T *p;
      @@
      
      -       (T *)p
      +       p
      
      Neatened the mwifiex_deauthenticate_infra function which
      was doing odd things with array pointers and not using
      is_zero_ether_addr.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2c208890
  7. 06 6月, 2012 1 次提交
  8. 09 5月, 2012 2 次提交
    • B
      ipw2200: Fix order of device registration · b4050790
      Ben Hutchings 提交于
      Currently cfg80211 fails to create a "phy80211" symlink in sysfs from
      the net device to the wiphy device.  The latter needs to be registered
      first.
      
      Compile-tested only.
      Reported-by: NCesare Leonardi <celeonar@gmail.com>
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      b4050790
    • S
      net/wireless: ipw2200: Fix WARN_ON occurring in wiphy_register called by ipw_pci_probe · 7ed85b65
      Stanislav Yakovlev 提交于
      The problem was found by Stefan Lippers-Hollmann
      http://marc.info/?l=linux-wireless&m=132720334512946&w=2
      
      WARNING: at /tmp/buildd/linux-aptosid-3.2/debian/build/source_i386_none/net/wireless/core.c:562 wiphy_register+0x45/0x38d [cfg80211]()
      Hardware name: TravelMate 290 \xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff\xffffffff
      Modules linked in: ipw2200(+) iTCO_wdt libipw joydev drm snd_seq snd_timer snd_seq_device iTCO_vendor_support yenta_socket snd intel_agp i2c_i801 pcmcia_rsrc cfg80211 soundcore parport_pc psmouse parport rng_core snd_page_alloc serio_raw pcspkr i2c_algo_bit intel_gtt pcmcia_core evdev irda crc_ccitt rfkill lib80211 processor container ac battery shpchp pci_hotplug button ext4 mbcache jbd2 crc16 dm_mod sd_mod sr_mod crc_t10dif cdrom ata_generic pata_acpi ata_piix libata scsi_mod firewire_ohci firewire_core crc_itu_t 8139too 8139cp mii uhci_hcd ehci_hcd usbcore usb_common [last unloaded: scsi_wait_scan]
      Pid: 328, comm: modprobe Not tainted 3.2-1.slh.4-aptosid-686 #1
      Call Trace:
      [<c012eaf4>] ? warn_slowpath_common+0x7c/0x8f
      [<e0ff0b3e>] ? wiphy_register+0x45/0x38d [cfg80211]
      [<e0ff0b3e>] ? wiphy_register+0x45/0x38d [cfg80211]
      [<c012eb22>] ? warn_slowpath_null+0x1b/0x1f
      [<e0ff0b3e>] ? wiphy_register+0x45/0x38d [cfg80211]
      [<c01f89d7>] ? internal_create_group+0xf5/0xff
      [<e0a2de1c>] ? ipw_pci_probe+0xa9a/0xbd0 [ipw2200]
      [<c01519f4>] ? arch_local_irq_save+0xf/0x14
      [<c0252986>] ? pci_device_probe+0x53/0x9a
      [<c02c2820>] ? driver_probe_device+0x94/0x124
      [<c0252871>] ? pci_match_id+0x15/0x34
      [<c02c28f0>] ? __driver_attach+0x40/0x5b
      [<c02c1d81>] ? bus_for_each_dev+0x37/0x60
      [<c02c25aa>] ? driver_attach+0x17/0x1a
      [<c02c28b0>] ? driver_probe_device+0x124/0x124
      [<c02c22c4>] ? bus_add_driver+0x92/0x1d1
      [<e099d000>] ? 0xe099cfff
      [<c02c2cb8>] ? driver_register+0x7d/0xd4
      [<c017cd50>] ? jump_label_module_notify+0xec/0x167
      [<e099d000>] ? 0xe099cfff
      [<c0253017>] ? __pci_register_driver+0x32/0x87
      [<e099d000>] ? 0xe099cfff
      [<e099d02e>] ? ipw_init+0x2e/0x72 [ipw2200]
      [<c0101173>] ? do_one_initcall+0x7d/0x132
      [<c0145016>] ? __blocking_notifier_call_chain+0x47/0x4f
      [<c0154a73>] ? sys_init_module+0x13a4/0x159c
      [<c03a639f>] ? sysenter_do_call+0x12/0x28
      
      This warning appears only if we apply Ben Hutchings' fix
      http://marc.info/?l=linux-wireless&m=132720195012653&w=2
      for the bug reported by Cesare Leonardi
      http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=656813
      with cfg80211 warning during device registration
      ("cfg80211: failed to add phy80211 symlink to netdev!").
      
      We separate device bring up and registration with network stack
      to avoid the problem.
      
      After that Ben Hutchings' fix can be applied to fix the bug.
      
      Cc: stable@kernel.org
      Signed-off-by: NStanislav Yakovlev <stas.yakovlev@gmail.com>
      Tested-by: NStefan Lippers-Hollmann <s.l-h@gmx.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      7ed85b65
  9. 24 4月, 2012 1 次提交
  10. 15 4月, 2012 1 次提交
  11. 13 4月, 2012 2 次提交
  12. 07 4月, 2012 1 次提交
  13. 29 3月, 2012 1 次提交
  14. 14 1月, 2012 1 次提交
  15. 18 11月, 2011 1 次提交
  16. 12 11月, 2011 1 次提交
  17. 17 9月, 2011 1 次提交
  18. 18 8月, 2011 1 次提交
  19. 09 8月, 2011 1 次提交
  20. 10 5月, 2011 1 次提交
  21. 31 3月, 2011 1 次提交
  22. 26 1月, 2011 1 次提交
  23. 11 1月, 2011 1 次提交
  24. 06 10月, 2010 1 次提交
  25. 18 8月, 2010 1 次提交
  26. 17 6月, 2010 1 次提交
  27. 03 6月, 2010 1 次提交
  28. 14 5月, 2010 1 次提交
    • J
      drivers/net: Remove unnecessary returns from void function()s · a4b77097
      Joe Perches 提交于
      This patch removes from drivers/net/ all the unnecessary
      return; statements that precede the last closing brace of
      void functions.
      
      It does not remove the returns that are immediately
      preceded by a label as gcc doesn't like that.
      
      It also does not remove null void functions with return.
      
      Done via:
      $ grep -rP --include=*.[ch] -l "return;\n}" net/ | \
        xargs perl -i -e 'local $/ ; while (<>) { s/\n[ \t\n]+return;\n}/\n}/g; print; }'
      
      with some cleanups by hand.
      
      Compile tested x86 allmodconfig only.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a4b77097
  29. 01 4月, 2010 2 次提交
  30. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  31. 24 3月, 2010 1 次提交
  32. 16 3月, 2010 1 次提交
  33. 11 3月, 2010 1 次提交
  34. 08 1月, 2010 1 次提交
  35. 04 12月, 2009 1 次提交
  36. 24 11月, 2009 2 次提交