1. 03 6月, 2014 1 次提交
  2. 16 5月, 2014 1 次提交
  3. 15 4月, 2014 1 次提交
  4. 10 2月, 2014 1 次提交
  5. 17 1月, 2014 1 次提交
  6. 15 1月, 2014 1 次提交
  7. 07 1月, 2014 1 次提交
  8. 20 12月, 2013 1 次提交
  9. 10 12月, 2013 5 次提交
  10. 26 10月, 2013 1 次提交
  11. 19 10月, 2013 1 次提交
  12. 12 10月, 2013 1 次提交
  13. 08 10月, 2013 1 次提交
  14. 25 9月, 2013 1 次提交
    • J
      wan: Remove extern from function prototypes · 65c8f953
      Joe Perches 提交于
      There are a mix of function prototypes with and without extern
      in the kernel sources.  Standardize on not using extern for
      function prototypes.
      
      Function prototypes don't need to be written with extern.
      extern is assumed by the compiler.  Its use is as unnecessary as
      using auto to declare automatic/local variables in a block.
      Signed-off-by: NJoe Perches <joe@perches.com>
      65c8f953
  15. 10 8月, 2013 1 次提交
  16. 27 6月, 2013 2 次提交
  17. 29 5月, 2013 1 次提交
  18. 28 5月, 2013 1 次提交
  19. 23 2月, 2013 1 次提交
  20. 05 2月, 2013 1 次提交
  21. 01 2月, 2013 2 次提交
    • P
      wanrouter: delete now orphaned header content, files/drivers · 6fcdf4fa
      Paul Gortmaker 提交于
      The wanrouter support was identified earlier as unused for years,
      and so the previous commit totally decoupled it from the kernel,
      leaving the related wanrouter files present, but totally inert.
      
      Here we take the final step in that cleanup, by doing a wholesale
      removal of these files.  The two step process is used so that the
      large deletion is decoupled from the git history of files that we
      still care about.
      
      The drivers deleted here all were dependent on the Kconfig setting
      CONFIG_WAN_ROUTER_DRIVERS.
      
      A stub wanrouter.h header (kernel & uapi) are left behind so that
      drivers/isdn/i4l/isdn_x25iface.c continues to compile, and so that
      we don't accidentally break userspace that expected these defines.
      
      Cc: Joe Perches <joe@perches.com>
      Cc: Dan Carpenter <dan.carpenter@oracle.com>
      Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      6fcdf4fa
    • P
      wanrouter: completely decouple obsolete code from kernel. · a786a7c0
      Paul Gortmaker 提交于
      The original suggestion to delete wanrouter started earlier
      with the mainline commit f0d1b3c2
      ("net/wanrouter: Deprecate and schedule for removal") in May 2012.
      
      More importantly, Dan Carpenter found[1] that the driver had a
      fundamental breakage introduced back in 2008, with commit
      7be6065b ("netdevice wanrouter: Convert directly reference of
      netdev->priv").  So we know with certainty that the code hasn't been
      used by anyone willing to at least take the effort to send an e-mail
      report of breakage for at least 4 years.
      
      This commit does a decouple of the wanrouter subsystem, by going
      after the Makefile/Kconfig and similar files, so that these mainline
      files that we are keeping do not have the big wanrouter file/driver
      deletion commit tied into their history.
      
      Once this commit is in place, we then can remove the obsolete cyclomx
      drivers and similar that have a dependency on CONFIG_WAN_ROUTER_DRIVERS.
      
      [1] http://www.spinics.net/lists/netdev/msg218670.htmlOriginally-by: NJoe Perches <joe@perches.com>
      Cc: Dan Carpenter <dan.carpenter@oracle.com>
      Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      a786a7c0
  22. 19 1月, 2013 1 次提交
    • J
      tty: Added a CONFIG_TTY option to allow removal of TTY · 4f73bc4d
      Joe Millenbach 提交于
      The option allows you to remove TTY and compile without errors. This
      saves space on systems that won't support TTY interfaces anyway.
      bloat-o-meter output is below.
      
      The bulk of this patch consists of Kconfig changes adding "depends on
      TTY" to various serial devices and similar drivers that require the TTY
      layer.  Ideally, these dependencies would occur on a common intermediate
      symbol such as SERIO, but most drivers "select SERIO" rather than
      "depends on SERIO", and "select" does not respect dependencies.
      
      bloat-o-meter output comparing our previous minimal to new minimal by
      removing TTY.  The list is filtered to not show removed entries with awk
      '$3 != "-"' as the list was very long.
      
      add/remove: 0/226 grow/shrink: 2/14 up/down: 6/-35356 (-35350)
      function                                     old     new   delta
      chr_dev_init                                 166     170      +4
      allow_signal                                  80      82      +2
      static.__warned                              143     142      -1
      disallow_signal                               63      62      -1
      __set_special_pids                            95      94      -1
      unregister_console                           126     121      -5
      start_kernel                                 546     541      -5
      register_console                             593     588      -5
      copy_from_user                                45      40      -5
      sys_setsid                                   128     120      -8
      sys_vhangup                                   32      19     -13
      do_exit                                     1543    1526     -17
      bitmap_zero                                   60      40     -20
      arch_local_irq_save                          137     117     -20
      release_task                                 674     652     -22
      static.spin_unlock_irqrestore                308     260     -48
      Signed-off-by: NJoe Millenbach <jmillenbach@gmail.com>
      Reviewed-by: NJamey Sharp <jamey@minilop.net>
      Reviewed-by: NJosh Triplett <josh@joshtriplett.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      4f73bc4d
  23. 12 1月, 2013 1 次提交
  24. 08 12月, 2012 1 次提交
  25. 04 12月, 2012 5 次提交
  26. 22 11月, 2012 1 次提交
  27. 21 11月, 2012 1 次提交
  28. 10 11月, 2012 3 次提交