https://github.com/torvalds/linux
Revision 1d822a40b81568becba8777b525a1ed255a8078c authored by Bhumika Goyal on 09 January 2017, 15:21:02 UTC, committed by Michael S. Tsirkin on 19 January 2017, 21:46:29 UTC
Declare target_core_fabric_ops strucrues as const as they are only
passed as an argument to the functions target_register_template and
target_unregister_template. The arguments are of type const struct
target_core_fabric_ops *, so target_core_fabric_ops structures having
this property can be declared const.
Done using Coccinelle:

@r disable optional_qualifier@
identifier i;
position p;
@@
static struct target_core_fabric_ops i@p={...};

@ok@
position p;
identifier r.i;
@@
(
target_register_template(&i@p)
|
target_unregister_template(&i@p)
)
@bad@
position p!={r.p,ok.p};
identifier r.i;
@@
i@p

@depends on !bad disable optional_qualifier@
identifier r.i;
@@
+const
struct target_core_fabric_ops i;

File size before: drivers/vhost/scsi.o
   text	   data	    bss	    dec	    hex	filename
  18063	   2985	     40	  21088	   5260	drivers/vhost/scsi.o

File size after: drivers/vhost/scsi.o
   text	   data	    bss	    dec	    hex	filename
  18479	   2601	     40	  21120	   5280	drivers/vhost/scsi.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
1 parent 49def18
History
Tip revision: 1d822a40b81568becba8777b525a1ed255a8078c authored by Bhumika Goyal on 09 January 2017, 15:21:02 UTC
vhost: scsi: constify target_core_fabric_ops structures
Tip revision: 1d822a4
File Mode Size
Makefile -rw-r--r-- 872 bytes
iio_event_monitor.c -rw-r--r-- 8.4 KB
iio_generic_buffer.c -rw-r--r-- 16.2 KB
iio_utils.c -rw-r--r-- 21.4 KB
iio_utils.h -rw-r--r-- 2.9 KB
lsiio.c -rw-r--r-- 3.9 KB

back to top