1. 09 3月, 2012 3 次提交
  2. 29 2月, 2012 1 次提交
  3. 15 1月, 2012 2 次提交
  4. 12 1月, 2012 1 次提交
    • A
      UBI: fix debugging messages · 72f0d453
      Artem Bityutskiy 提交于
      Patch ab50ff68 broke UBI debugging messages:
      before that commit when UBI debugging was enabled, users saw few useful
      debugging messages after attaching an MTD device. However, that patch turned
      'dbg_msg()' into 'pr_debug()', so to enable the debugging messages users have
      to enable them first via /sys/kernel/debug/dynamic_debug/control, which is
      very impractical.
      
      This commit makes 'dbg_msg()' to use 'printk()' instead of 'pr_debug()', just
      as it was before the breakage.
      Signed-off-by: NArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
      Cc: stable@kernel.org [3.0+]
      72f0d453
  5. 10 1月, 2012 9 次提交
  6. 05 1月, 2012 1 次提交
  7. 30 11月, 2011 1 次提交
  8. 01 11月, 2011 1 次提交
  9. 21 9月, 2011 1 次提交
  10. 20 8月, 2011 1 次提交
  11. 21 7月, 2011 1 次提交
    • J
      fs: push i_mutex and filemap_write_and_wait down into ->fsync() handlers · 02c24a82
      Josef Bacik 提交于
      Btrfs needs to be able to control how filemap_write_and_wait_range() is called
      in fsync to make it less of a painful operation, so push down taking i_mutex and
      the calling of filemap_write_and_wait() down into the ->fsync() handlers.  Some
      file systems can drop taking the i_mutex altogether it seems, like ext3 and
      ocfs2.  For correctness sake I just pushed everything down in all cases to make
      sure that we keep the current behavior the same for everybody, and then each
      individual fs maintainer can make up their mind about what to do from there.
      Thanks,
      Acked-by: NJan Kara <jack@suse.cz>
      Signed-off-by: NJosef Bacik <josef@redhat.com>
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      02c24a82
  12. 07 6月, 2011 1 次提交
    • A
      UBI: remove dead code · 4788b60a
      Artem Bityutskiy 提交于
      Thanks to new gcc 4.6 for issuing the following warning:
      
      drivers/mtd/ubi/vtbl.c: In function ‘create_vtbl’:
      drivers/mtd/ubi/vtbl.c:311:33: warning: variable ‘old_seb’ set but not used [-Wunused-but-set-variable]
      
      This patch removes some dead code and fixes the warning.
      Signed-off-by: NArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
      4788b60a
  13. 01 6月, 2011 6 次提交
  14. 31 5月, 2011 1 次提交
  15. 25 5月, 2011 1 次提交
  16. 20 5月, 2011 3 次提交
  17. 14 4月, 2011 5 次提交
  18. 05 4月, 2011 1 次提交
    • A
      UBI: do not select KALLSYMS_ALL · 6bef0b67
      Artem Bityutskiy 提交于
      All UBI needs is to make sure we stacktraces when UBI debugging
      is enabled. It is enough to select KALLSYMS for this, KALLSYMS_ALL
      is not necessary.
      
      And the current Kconfig line we have:
      
      select KALLSYMS_ALL if KALLSYMS && DEBUG_KERNEL
      
      is just too complex to be sane and right. But this "if" part there
      is needed to prevent "unmet direct dependency" warnings, because
      KALLSYMS_ALL depends on KALLSYMS and DEBUG_KERNEL, so we cannot
      just select KALLSYMS_ALL.
      
      Anyway, this feels messy, and we do not seem to really need KALLSYMS_ALL,
      so select KALLSYMS instead.
      Signed-off-by: NArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
      Acked-by: NRandy Dunlap <randy.dunlap@oracle.com>
      6bef0b67