1. 04 Mar, 2008 5 commits
    • Greg Ungerer's avatar
      m68knommu: update defconfig · 673da21b
      Greg Ungerer authored
      Update the m68knommu defconfig.
      Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      673da21b
    • Tony Breeds's avatar
      Build fix for drivers/s390/char/defkeymap.c · 10a7f313
      Tony Breeds authored
      Commit 5ce2087e (Fix default compose
      table initialization) left a trailing quote.
      
        CC      drivers/s390/char/defkeymap.o
      drivers/s390/char/defkeymap.c:155: error: missing terminating ' character
      drivers/s390/char/defkeymap.c:156: error: syntax error before ';' token
      make[3]: *** [drivers/s390/char/defkeymap.o] Error 1
      
      Fix that.
      Signed-off-by: default avatarTony Breeds <tony@bakeyournoodle.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      10a7f313
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6 · a6c0e1f7
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6:
        [CIFS] remove unused variable
        [CIFS] consolidate duplicate code in posix/unix inode handling
        [CIFS] fix build break when proc disabled
        [CIFS] factoring out common code in get_inode_info functions
        [CIFS] fix prepath conversion when server supports posix paths
        [CIFS] Only convert / when server does not support posix paths
        [CIFS] Fix mixed case name in structure dfs_info3_param
        [CIFS] fixup prefixpaths which contain multiple path components
        [CIFS] fix typo
        [CIFS] patch to fix incorrect encoding of number of aces on set mode
        [CIFS] Fix typo in quota operations
        [CIFS] clean up some hard to read ifdefs
        [CIFS] reduce checkpatch warnings
        [CIFS] fix warning in cifs_spnego.c
      a6c0e1f7
    • Roland McGrath's avatar
      freezer vs stopped or traced · 13b1c3d4
      Roland McGrath authored
      This changes the "freezer" code used by suspend/hibernate in its treatment
      of tasks in TASK_STOPPED (job control stop) and TASK_TRACED (ptrace) states.
      
      As I understand it, the intent of the "freezer" is to hold all tasks
      from doing anything significant.  For this purpose, TASK_STOPPED and
      TASK_TRACED are "frozen enough".  It's possible the tasks might resume
      from ptrace calls (if the tracer were unfrozen) or from signals
      (including ones that could come via timer interrupts, etc).  But this
      doesn't matter as long as they quickly block again while "freezing" is
      in effect.  Some minor adjustments to the signal.c code make sure that
      try_to_freeze() very shortly follows all wakeups from both kinds of
      stop.  This lets the freezer code safely leave stopped tasks unmolested.
      
      Changing this fixes the longstanding bug of seeing after resuming from
      suspend/hibernate your shell report "[1] Stopped" and the like for all
      your jobs stopped by ^Z et al, as if you had freshly fg'd and ^Z'd them.
      It also removes from the freezer the arcane special case treatment for
      ptrace'd tasks, which relied on intimate knowledge of ptrace internals.
      Signed-off-by: default avatarRoland McGrath <roland@redhat.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      13b1c3d4
    • Steve French's avatar
  2. 03 Mar, 2008 35 commits