1. 26 9月, 2012 15 次提交
  2. 06 9月, 2012 1 次提交
  3. 03 9月, 2012 1 次提交
  4. 30 8月, 2012 1 次提交
  5. 28 8月, 2012 1 次提交
  6. 21 8月, 2012 1 次提交
    • G
      s390: Always use "long" for ssize_t to match size_t · cbe05685
      Geert Uytterhoeven 提交于
      On s390x-linux-gcc, __SIZE_TYPE__ expands to "long unsigned int" for both
      32-bit s390 and 64-bit s390x, as
      gcc-4.6.3-nolibc/s390x-linux/lib/gcc/s390x-linux/4.6.3/plugin/include/config/s390/linux.h
      has
      
          #define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "long unsigned int")
      
      To match this, __kernel_size_t is always set to "long unsigned int".
      
      But while __kernel_ssize_t is "long" on 64-bit s390x, it is "int" on 32-bit
      s390, causing compiler warnings like:
      
          fs/quota/quota_tree.c:372:4: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'ssize_t' [-Wformat]
      
      To fix this, __kernel_ssize_t should be "long", irrespective of word size.
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      cbe05685
  7. 08 8月, 2012 2 次提交
  8. 31 7月, 2012 1 次提交
  9. 30 7月, 2012 1 次提交
  10. 26 7月, 2012 1 次提交
  11. 20 7月, 2012 2 次提交
    • M
      s390/vtimer: rework virtual timer interface · 27f6b416
      Martin Schwidefsky 提交于
      The current virtual timer interface is inherently per-cpu and hard to
      use. The sole user of the interface is appldata which uses it to execute
      a function after a specific amount of cputime has been used over all cpus.
      
      Rework the virtual timer interface to hook into the cputime accounting.
      This makes the interface independent from the CPU timer interrupts, and
      makes the virtual timers global as opposed to per-cpu.
      Overall the code is greatly simplified. The downside is that the accuracy
      is not as good as the original implementation, but it is still good enough
      for appldata.
      Reviewed-by: NJan Glauber <jang@linux.vnet.ibm.com>
      Reviewed-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      27f6b416
    • H
      s390/comments: unify copyright messages and remove file names · a53c8fab
      Heiko Carstens 提交于
      Remove the file name from the comment at top of many files. In most
      cases the file name was wrong anyway, so it's rather pointless.
      
      Also unify the IBM copyright statement. We did have a lot of sightly
      different statements and wanted to change them one after another
      whenever a file gets touched. However that never happened. Instead
      people start to take the old/"wrong" statements to use as a template
      for new files.
      So unify all of them in one go.
      Signed-off-by: NHeiko Carstens <heiko.carstens@de.ibm.com>
      a53c8fab
  12. 17 7月, 2012 1 次提交
  13. 04 7月, 2012 2 次提交
  14. 14 6月, 2012 2 次提交
  15. 05 6月, 2012 2 次提交
  16. 31 5月, 2012 1 次提交
  17. 30 5月, 2012 5 次提交