1. 13 8月, 2010 1 次提交
  2. 24 7月, 2010 1 次提交
  3. 07 1月, 2010 1 次提交
  4. 17 11月, 2009 1 次提交
    • H
      net/s390 drivers: add missing 'const' attribute · 302689ac
      Heiko Carstens 提交于
      Add missing 'const' attribute to avoid the following compile warnings:
      
      drivers/s390/net/ctcm_main.c: In function 'ctcm_init':
      drivers/s390/net/ctcm_main.c:1864: warning: assignment from incompatible pointer type
      drivers/s390/net/lcs.c: In function 'lcs_init_module':
      drivers/s390/net/lcs.c:2468: warning: assignment from incompatible pointer type
      drivers/s390/net/claw.c: In function 'claw_init':
      drivers/s390/net/claw.c:3408: warning: assignment from incompatible pointer type
      Signed-off-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      302689ac
  5. 14 11月, 2009 1 次提交
    • U
      s390: remove cu3088 layer for lcs and ctcm · 0ca8cc6f
      Ursula Braun 提交于
      The cu3088-driver used as common base for lcs- and ctcm-devices
      makes it difficult to assign the appropriate driver to an lcs-device
      or a ctcm-device. This patch eliminates the cu3088-driver and thus
      the root device "cu3088". Path /sys/devices/cu3088 is replaced with
      the pathes /sys/devices/lcs and /sys/devices/ctcm.
      
      Patch is based on a proposal from Cornelia Huck.
      
      Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
      Signed-off-by: NUrsula Braun <ursula.braun@de.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0ca8cc6f
  6. 06 7月, 2009 1 次提交
  7. 16 6月, 2009 2 次提交
  8. 13 6月, 2009 1 次提交
  9. 25 3月, 2009 2 次提交
  10. 26 1月, 2009 1 次提交
  11. 22 1月, 2009 1 次提交
  12. 14 10月, 2008 1 次提交
  13. 11 10月, 2008 2 次提交
  14. 27 8月, 2008 2 次提交
  15. 23 7月, 2008 1 次提交
  16. 14 7月, 2008 1 次提交
  17. 17 4月, 2008 1 次提交
  18. 24 2月, 2008 1 次提交
  19. 26 1月, 2008 1 次提交
  20. 20 10月, 2007 1 次提交
  21. 11 10月, 2007 1 次提交
  22. 20 7月, 2007 1 次提交
  23. 21 6月, 2007 1 次提交
  24. 26 4月, 2007 1 次提交
  25. 06 2月, 2007 2 次提交
  26. 11 7月, 2006 1 次提交
  27. 24 3月, 2006 1 次提交
  28. 22 3月, 2006 1 次提交
  29. 02 2月, 2006 1 次提交
  30. 07 1月, 2006 1 次提交
  31. 09 11月, 2005 1 次提交
    • O
      [PATCH] changing CONFIG_LOCALVERSION rebuilds too much, for no good reason · 733482e4
      Olaf Hering 提交于
      This patch removes almost all inclusions of linux/version.h.  The 3
      #defines are unused in most of the touched files.
      
      A few drivers use the simple KERNEL_VERSION(a,b,c) macro, which is
      unfortunatly in linux/version.h.
      
      There are also lots of #ifdef for long obsolete kernels, this was not
      touched.  In a few places, the linux/version.h include was move to where
      the LINUX_VERSION_CODE was used.
      
      quilt vi `find * -type f -name "*.[ch]"|xargs grep -El '(UTS_RELEASE|LINUX_VERSION_CODE|KERNEL_VERSION|linux/version.h)'|grep -Ev '(/(boot|coda|drm)/|~$)'`
      
      search pattern:
      /UTS_RELEASE\|LINUX_VERSION_CODE\|KERNEL_VERSION\|linux\/\(utsname\|version\).h
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      733482e4
  32. 07 11月, 2005 1 次提交
  33. 07 9月, 2005 1 次提交
  34. 09 7月, 2005 1 次提交
  35. 26 6月, 2005 1 次提交
    • M
      [PATCH] s390: debug feature changes · 66a464db
      Michael Holzheu 提交于
      This patch changes the memory allocation method for the s390 debug feature.
      Trace buffers had been allocated using the get_free_pages() function before.
      Therefore it was not possible to get big memory areas in a running system due
      to memory fragmentation.  Now the trace buffers are subdivided into several
      subbuffers with pagesize.  Therefore it is now possible to allocate more
      memory for the trace buffers and more trace records can be written.
      
      In addition to that, dynamic specification of the size of the trace buffers is
      implemented.  It is now possible to change the size of a trace buffer using a
      new debugfs file instance.  When writing a number into this file, the trace
      buffer size is changed to 'number * pagesize'.
      
      In the past all the traces could be obtained from userspace by accessing files
      in the "proc" filesystem.  Now with debugfs we have a new filesystem which
      should be used for debugging purposes.  This patch moves the debug feature
      from procfs to debugfs.
      
      Since the interface of debug_register() changed, all device drivers, which use
      the debug feature had to be adjusted.
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      66a464db