From: Bhumika Goyal <bhumirks@gmail.com>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] [PATCH v2 00/15] make structure field, function arguments and structures const
Date: Mon, 16 Oct 2017 17:18:39 +0200 [thread overview]
Message-ID: <1508167134-6243-1-git-send-email-bhumirks@gmail.com> (raw)
Make the ci_type field and some function arguments as const. After this
change, make config_item_type structures as const.
* Changes in v2- Combine all the followup patches and the constification
patches into a series.
Bhumika Goyal (15):
configfs: make ci_type field, some pointers and function arguments
const
usb: gadget: make config_item_type structures const
target: make config_item_type const
iio: make function argument and some structures const
ocfs2/cluster: make config_item_type const
PCI: endpoint: make config_item_type const
usb: gadget: configfs: make config_item_type const
nvmet: make config_item_type const
ACPI: configfs: make config_item_type const
nullb: make config_item_type const
stm class: make config_item_type const
RDMA/cma: make config_item_type const
netconsole: make config_item_type const
dlm: make config_item_type const
configfs: make config_item_type const
drivers/acpi/acpi_configfs.c | 6 ++--
drivers/block/null_blk.c | 4 +--
drivers/hwtracing/stm/policy.c | 10 +++---
drivers/iio/dummy/iio_simple_dummy.c | 2 +-
drivers/iio/industrialio-configfs.c | 2 +-
drivers/iio/industrialio-sw-device.c | 6 ++--
drivers/iio/industrialio-sw-trigger.c | 6 ++--
drivers/iio/trigger/iio-trig-hrtimer.c | 2 +-
drivers/iio/trigger/iio-trig-loop.c | 2 +-
drivers/infiniband/core/cma_configfs.c | 8 ++---
drivers/net/netconsole.c | 4 +--
drivers/nvme/target/configfs.c | 30 ++++++++---------
drivers/pci/endpoint/pci-ep-cfs.c | 12 +++----
drivers/target/iscsi/iscsi_target_stat.c | 12 +++----
drivers/target/target_core_configfs.c | 14 ++++----
drivers/target/target_core_stat.c | 16 ++++-----
drivers/usb/gadget/configfs.c | 10 +++---
drivers/usb/gadget/function/f_acm.c | 2 +-
drivers/usb/gadget/function/f_ecm.c | 2 +-
drivers/usb/gadget/function/f_eem.c | 2 +-
drivers/usb/gadget/function/f_fs.c | 2 +-
drivers/usb/gadget/function/f_hid.c | 2 +-
drivers/usb/gadget/function/f_loopback.c | 2 +-
drivers/usb/gadget/function/f_mass_storage.c | 4 +--
drivers/usb/gadget/function/f_midi.c | 2 +-
drivers/usb/gadget/function/f_ncm.c | 2 +-
drivers/usb/gadget/function/f_obex.c | 2 +-
drivers/usb/gadget/function/f_phonet.c | 2 +-
drivers/usb/gadget/function/f_printer.c | 2 +-
drivers/usb/gadget/function/f_rndis.c | 2 +-
drivers/usb/gadget/function/f_serial.c | 2 +-
drivers/usb/gadget/function/f_sourcesink.c | 2 +-
drivers/usb/gadget/function/f_subset.c | 2 +-
drivers/usb/gadget/function/f_tcm.c | 2 +-
drivers/usb/gadget/function/f_uac1.c | 2 +-
drivers/usb/gadget/function/f_uac1_legacy.c | 2 +-
drivers/usb/gadget/function/f_uac2.c | 2 +-
drivers/usb/gadget/function/uvc_configfs.c | 50 ++++++++++++++--------------
fs/configfs/dir.c | 10 +++---
fs/configfs/item.c | 6 ++--
fs/configfs/symlink.c | 4 +--
fs/dlm/config.c | 16 ++++-----
fs/ocfs2/cluster/heartbeat.c | 4 +--
fs/ocfs2/cluster/nodemanager.c | 8 ++---
include/linux/configfs.h | 8 ++---
include/linux/iio/sw_device.h | 2 +-
include/linux/iio/sw_trigger.h | 2 +-
include/target/iscsi/iscsi_target_stat.h | 12 +++----
samples/configfs/configfs_sample.c | 8 ++---
49 files changed, 159 insertions(+), 159 deletions(-)
--
1.9.1
next reply other threads:[~2017-10-16 15:18 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-16 15:18 Bhumika Goyal [this message]
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 01/15] configfs: make ci_type field, some pointers and function arguments const Bhumika Goyal
2017-10-17 10:24 ` Greg KH
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 02/15] usb: gadget: make config_item_type structures const Bhumika Goyal
2017-10-17 8:30 ` Felipe Balbi
2017-10-18 16:05 ` Laurent Pinchart
2017-10-19 14:06 ` Christoph Hellwig
2017-10-19 15:05 ` Laurent Pinchart
2017-10-20 8:02 ` Julia Lawall
2017-10-20 8:13 ` Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 03/15] target: make config_item_type const Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 04/15] iio: make function argument and some structures const Bhumika Goyal
2017-10-16 18:48 ` Jonathan Cameron
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 05/15] ocfs2/cluster: make config_item_type const Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 06/15] PCI: endpoint: " Bhumika Goyal
2017-10-16 18:24 ` Bjorn Helgaas
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 07/15] usb: gadget: configfs: " Bhumika Goyal
2017-10-17 8:31 ` Felipe Balbi
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 08/15] nvmet: " Bhumika Goyal
2017-10-17 10:18 ` Sagi Grimberg
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 09/15] ACPI: configfs: " Bhumika Goyal
2017-10-17 0:10 ` Rafael J. Wysocki
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 10/15] nullb: " Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 11/15] stm class: " Bhumika Goyal
2017-10-17 10:25 ` Greg KH
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 12/15] RDMA/cma: " Bhumika Goyal
2017-10-17 10:56 ` Leon Romanovsky
2017-10-18 14:33 ` Doug Ledford
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 13/15] netconsole: " Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 14/15] dlm: " Bhumika Goyal
2017-10-16 15:18 ` [Cluster-devel] [PATCH v2 15/15] configfs: " Bhumika Goyal
2017-10-17 10:12 ` [Cluster-devel] [PATCH v2 00/15] make structure field, function arguments and structures const Greg KH
2017-10-17 10:16 ` Julia Lawall
2017-10-17 10:23 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1508167134-6243-1-git-send-email-bhumirks@gmail.com \
--to=bhumirks@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).