1. 21 5月, 2012 13 次提交
  2. 06 4月, 2012 1 次提交
    • S
      simple_open: automatically convert to simple_open() · 234e3405
      Stephen Boyd 提交于
      Many users of debugfs copy the implementation of default_open() when
      they want to support a custom read/write function op.  This leads to a
      proliferation of the default_open() implementation across the entire
      tree.
      
      Now that the common implementation has been consolidated into libfs we
      can replace all the users of this function with simple_open().
      
      This replacement was done with the following semantic patch:
      
      <smpl>
      @ open @
      identifier open_f != simple_open;
      identifier i, f;
      @@
      -int open_f(struct inode *i, struct file *f)
      -{
      (
      -if (i->i_private)
      -f->private_data = i->i_private;
      |
      -f->private_data = i->i_private;
      )
      -return 0;
      -}
      
      @ has_open depends on open @
      identifier fops;
      identifier open.open_f;
      @@
      struct file_operations fops = {
      ...
      -.open = open_f,
      +.open = simple_open,
      ...
      };
      </smpl>
      
      [akpm@linux-foundation.org: checkpatch fixes]
      Signed-off-by: NStephen Boyd <sboyd@codeaurora.org>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Julia Lawall <Julia.Lawall@lip6.fr>
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      234e3405
  3. 27 3月, 2012 3 次提交
  4. 09 3月, 2012 5 次提交
  5. 29 2月, 2012 1 次提交
  6. 15 1月, 2012 2 次提交
  7. 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
  8. 10 1月, 2012 9 次提交
  9. 05 1月, 2012 1 次提交
  10. 30 11月, 2011 1 次提交
  11. 01 11月, 2011 1 次提交
  12. 21 9月, 2011 1 次提交
  13. 20 8月, 2011 1 次提交