linux/drivers/scsi/lpfc
Stephen Boyd 234e340582 simple_open: automatically convert to simple_open()
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: Stephen 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: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-04-05 15:25:50 -07:00
..
lpfc_attr.c [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_bsg.c [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_bsg.h [SCSI] lpfc 8.3.28: Miscellaneous fixes in sysfs and mgmt interfaces 2011-12-15 10:57:43 +04:00
lpfc_compat.h [SCSI] lpfc 8.3.28: Critical Miscellaneous fixes 2011-12-15 10:57:45 +04:00
lpfc_crtn.h [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_ct.c [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_debugfs.c simple_open: automatically convert to simple_open() 2012-04-05 15:25:50 -07:00
lpfc_debugfs.h [SCSI] lpfc 8.3.25: Enhancements to Debug infrastructure 2011-07-27 15:14:00 +04:00
lpfc_disc.h [SCSI] lpfc 8.3.20: Updates to FC discovery commands 2010-12-21 12:37:24 -06:00
lpfc_els.c [SCSI] lpfc 8.3.29: FC Discovery state machine fixes 2012-02-19 08:08:53 -06:00
lpfc_hbadisc.c [SCSI] lpfc 8.3.29: Locking fix and Memory leak Fixes 2012-02-19 08:08:53 -06:00
lpfc_hw.h [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_hw4.h [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
lpfc_init.c [SCSI] lpfc 8.3.29: Locking fix and Memory leak Fixes 2012-02-19 08:08:53 -06:00
lpfc_logmsg.h [SCSI] lpfc 8.3.27: Miscellanous logic and interface fixes 2011-10-16 11:28:48 -05:00
lpfc_mbox.c [SCSI] lpfc 8.3.28: Add Loopback support for SLI4 adapters 2011-12-15 10:57:45 +04:00
lpfc_mem.c [SCSI] lpfc 8.3.28: Critical Miscellaneous fixes 2011-12-15 10:57:45 +04:00
lpfc_nl.h Fix common misspellings 2011-03-31 11:26:23 -03:00
lpfc_nportdisc.c [SCSI] lpfc 8.3.29: Locking fix and Memory leak Fixes 2012-02-19 08:08:53 -06:00
lpfc_scsi.c [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
lpfc_scsi.h [SCSI] Lpfc 8.3.28: FC and SCSI Discovery Fixes 2011-12-15 10:57:44 +04:00
lpfc_sli.c [SCSI] lpfc 8.3.29: Remove GFP_KERNEL allocation while lock is held 2012-02-19 08:08:53 -06:00
lpfc_sli.h [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
lpfc_sli4.h [SCSI] lpfc 8.3.29: SLI related fixes 2012-02-19 08:08:52 -06:00
lpfc_version.h [SCSI] lpfc 8.3.29: Update driver version to 8.3.29 2012-02-19 08:08:54 -06:00
lpfc_vport.c [SCSI] Lpfc 8.3.28: FC and SCSI Discovery Fixes 2011-12-15 10:57:44 +04:00
lpfc_vport.h [SCSI] lpfc 8.2.8 v2 : Add statistical reporting control and additional fc vendor events 2008-10-13 09:28:57 -04:00
lpfc.h [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
Makefile [SCSI] lpfc 8.3.22: Update Copyright Dates 2011-03-23 11:36:14 -05:00