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
lpfc_bsg.c
lpfc_bsg.h
lpfc_compat.h
lpfc_crtn.h
lpfc_ct.c
lpfc_debugfs.c simple_open: automatically convert to simple_open() 2012-04-05 15:25:50 -07:00
lpfc_debugfs.h
lpfc_disc.h
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_hw4.h [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
lpfc_hw.h
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
lpfc_mbox.c
lpfc_mem.c
lpfc_nl.h
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
lpfc_sli4.h
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_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
lpfc_vport.h
lpfc.h [SCSI] lpfc 8.3.29: T10 Diff fixes and enhancements 2012-02-19 08:08:52 -06:00
Makefile