1. 09 May, 2016 4 commits
  2. 28 Apr, 2016 1 commit
    • Arnd Bergmann's avatar
      Merge tag 'omap-for-v4.7/soc-signed' of... · 94a92cca
      Arnd Bergmann authored
      Merge tag 'omap-for-v4.7/soc-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/soc
      
      Merge "SoC related changes for omaps for v4.7 merge window" from Tony Lindgren:
      
      - Remove now unnecessary multi vs single SoC compile time optimizations
        as we are now using multiarch
      
      - Configure dra7 powerdomains
      
      - Clarify why omap-wakeupgen does not need to handle FROZEN transitions
      
      - Add dra7 module configuration for MaASP, PWMSS and timer 12
      
      - Add RTC module configuration unlock and lock functions
      
      - Fix hwmod idle state sanity check sequence
      
      * tag 'omap-for-v4.7/soc-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
        ARM: OMAP2+: wakeupgen: Add comment for unhandled FROZEN transitions
        ARM: OMAP: DRA7: powerdomain data: Remove wrong OSWR capability
        ARM: OMAP: DRA7: powerdomain data: Fix "ON" state for memories
        ARM: OMAP: DRA7: powerdomain data: Erratum i892 workaround: Disable core INA
        ARM: OMAP2+: remove redundant multiplatform checks
        ARM: OMAP2+: hwmod: fix _idle() hwmod state sanity check sequence
        ARM: DRA7: hwmod: Add data for GPTimer 12
        ARM: AMx3xx: RTC: Add lock and unlock functions
        ARM: DRA7: RTC: Add lock and unlock functions
        ARM: OMAP2+: hwmod: RTC: Add lock and unlock functions
        ARM: OMAP2+: DRA7: Add hwmod entries for PWMSS
        ARM: DRA7: hwmod: Add data for McASP1/2/4/5/6/7/8
        ARM: DRA7: clockdomain: Implement timer workaround for errata i874
        ARM: OMAP2+: hwmod: Fix updating of sysconfig register
      94a92cca
  3. 27 Apr, 2016 3 commits
  4. 26 Apr, 2016 6 commits
  5. 25 Apr, 2016 3 commits
  6. 22 Apr, 2016 1 commit
  7. 19 Apr, 2016 4 commits
  8. 14 Apr, 2016 6 commits
  9. 13 Apr, 2016 7 commits
  10. 11 Apr, 2016 4 commits
  11. 10 Apr, 2016 1 commit
    • Linus Torvalds's avatar
      Revert "ext4: allow readdir()'s of large empty directories to be interrupted" · 9f2394c9
      Linus Torvalds authored
      This reverts commit 1028b55b.
      
      It's broken: it makes ext4 return an error at an invalid point, causing
      the readdir wrappers to write the the position of the last successful
      directory entry into the position field, which means that the next
      readdir will now return that last successful entry _again_.
      
      You can only return fatal errors (that terminate the readdir directory
      walk) from within the filesystem readdir functions, the "normal" errors
      (that happen when the readdir buffer fills up, for example) happen in
      the iterorator where we know the position of the actual failing entry.
      
      I do have a very different patch that does the "signal_pending()"
      handling inside the iterator function where it is allowable, but while
      that one passes all the sanity checks, I screwed up something like four
      times while emailing it out, so I'm not going to commit it today.
      
      So my track record is not good enough, and the stars will have to align
      better before that one gets committed.  And it would be good to get some
      review too, of course, since celestial alignments are always an iffy
      debugging model.
      
      IOW, let's just revert the commit that caused the problem for now.
      Reported-by: default avatarGreg Thelen <gthelen@google.com>
      Cc: Theodore Ts'o <tytso@mit.edu>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      9f2394c9