From: James Simmons <jsimmons@infradead.org>
To: NeilBrown <neilb@suse.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Andreas Dilger <andreas.dilger@intel.com>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Lustre Development List <lustre-devel@lists.lustre.org>
Subject: [lustre-devel] [PATCH 08/10] staging: lustre: move misc-device registration closer to related code.
Date: Wed, 2 May 2018 19:12:35 +0100 (BST) [thread overview]
Message-ID: <alpine.LFD.2.21.1805021911550.24633@casper.infradead.org> (raw)
In-Reply-To: <152514675910.17843.16005951911891583421.stgit@noble>
> The ioctl handler for the misc device is in lnet/libcfs/module.c
> but is it registered in lnet/libcfs/linux/linux-module.c.
>
> Keeping related code together make maintenance easier, so move the
> code.
>
> Signed-off-by: NeilBrown <neilb@suse.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
> ---
> .../staging/lustre/include/linux/libcfs/libcfs.h | 2 -
> .../lustre/lnet/libcfs/linux/linux-module.c | 28 ------------------
> drivers/staging/lustre/lnet/libcfs/module.c | 31 +++++++++++++++++++-
> 3 files changed, 30 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/staging/lustre/include/linux/libcfs/libcfs.h b/drivers/staging/lustre/include/linux/libcfs/libcfs.h
> index 6e7754b2f296..9263e151451b 100644
> --- a/drivers/staging/lustre/include/linux/libcfs/libcfs.h
> +++ b/drivers/staging/lustre/include/linux/libcfs/libcfs.h
> @@ -141,11 +141,9 @@ int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
> int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
> const struct libcfs_ioctl_hdr __user *uparam);
> int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data);
> -int libcfs_ioctl(unsigned long cmd, void __user *arg);
>
> #define _LIBCFS_H
>
> -extern struct miscdevice libcfs_dev;
> /**
> * The path of debug log dump upcall script.
> */
> diff --git a/drivers/staging/lustre/lnet/libcfs/linux/linux-module.c b/drivers/staging/lustre/lnet/libcfs/linux/linux-module.c
> index c8908e816c4c..954b681f9db7 100644
> --- a/drivers/staging/lustre/lnet/libcfs/linux/linux-module.c
> +++ b/drivers/staging/lustre/lnet/libcfs/linux/linux-module.c
> @@ -166,31 +166,3 @@ int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
> kvfree(*hdr_pp);
> return err;
> }
> -
> -static long
> -libcfs_psdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> -{
> - if (!capable(CAP_SYS_ADMIN))
> - return -EACCES;
> -
> - if (_IOC_TYPE(cmd) != IOC_LIBCFS_TYPE ||
> - _IOC_NR(cmd) < IOC_LIBCFS_MIN_NR ||
> - _IOC_NR(cmd) > IOC_LIBCFS_MAX_NR) {
> - CDEBUG(D_IOCTL, "invalid ioctl ( type %d, nr %d, size %d )\n",
> - _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
> - return -EINVAL;
> - }
> -
> - return libcfs_ioctl(cmd, (void __user *)arg);
> -}
> -
> -static const struct file_operations libcfs_fops = {
> - .owner = THIS_MODULE,
> - .unlocked_ioctl = libcfs_psdev_ioctl,
> -};
> -
> -struct miscdevice libcfs_dev = {
> - .minor = MISC_DYNAMIC_MINOR,
> - .name = "lnet",
> - .fops = &libcfs_fops,
> -};
> diff --git a/drivers/staging/lustre/lnet/libcfs/module.c b/drivers/staging/lustre/lnet/libcfs/module.c
> index 4b9acd7bc5cf..3fb150a57f49 100644
> --- a/drivers/staging/lustre/lnet/libcfs/module.c
> +++ b/drivers/staging/lustre/lnet/libcfs/module.c
> @@ -95,7 +95,7 @@ int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand)
> }
> EXPORT_SYMBOL(libcfs_deregister_ioctl);
>
> -int libcfs_ioctl(unsigned long cmd, void __user *uparam)
> +static int libcfs_ioctl(unsigned long cmd, void __user *uparam)
> {
> struct libcfs_ioctl_data *data = NULL;
> struct libcfs_ioctl_hdr *hdr;
> @@ -161,6 +161,35 @@ int libcfs_ioctl(unsigned long cmd, void __user *uparam)
> return err;
> }
>
> +
> +static long
> +libcfs_psdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> +{
> + if (!capable(CAP_SYS_ADMIN))
> + return -EACCES;
> +
> + if (_IOC_TYPE(cmd) != IOC_LIBCFS_TYPE ||
> + _IOC_NR(cmd) < IOC_LIBCFS_MIN_NR ||
> + _IOC_NR(cmd) > IOC_LIBCFS_MAX_NR) {
> + CDEBUG(D_IOCTL, "invalid ioctl ( type %d, nr %d, size %d )\n",
> + _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
> + return -EINVAL;
> + }
> +
> + return libcfs_ioctl(cmd, (void __user *)arg);
> +}
> +
> +static const struct file_operations libcfs_fops = {
> + .owner = THIS_MODULE,
> + .unlocked_ioctl = libcfs_psdev_ioctl,
> +};
> +
> +struct miscdevice libcfs_dev = {
> + .minor = MISC_DYNAMIC_MINOR,
> + .name = "lnet",
> + .fops = &libcfs_fops,
> +};
> +
> int lprocfs_call_handler(void *data, int write, loff_t *ppos,
> void __user *buffer, size_t *lenp,
> int (*handler)(void *data, int write, loff_t pos,
>
>
>
next prev parent reply other threads:[~2018-05-02 18:12 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-01 3:52 [lustre-devel] [PATCH 00/10] staging: lustre: assorted improvements NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 03/10] staging: lustre: lu_object: discard extra lru count NeilBrown
2018-05-01 4:19 ` Dilger, Andreas
2018-05-04 0:08 ` NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 01/10] staging: lustre: ldlm: store name directly in namespace NeilBrown
2018-05-01 4:04 ` Dilger, Andreas
2018-05-02 18:11 ` James Simmons
2018-05-01 3:52 ` [lustre-devel] [PATCH 02/10] staging: lustre: make struct lu_site_bkt_data private NeilBrown
2018-05-01 4:10 ` Dilger, Andreas
2018-05-02 3:02 ` James Simmons
2018-05-03 23:39 ` NeilBrown
2018-05-07 1:42 ` Greg Kroah-Hartman
2018-05-01 3:52 ` [lustre-devel] [PATCH 09/10] staging: lustre: move remaining code from linux-module.c to module.c NeilBrown
2018-05-02 18:13 ` James Simmons
2018-05-01 3:52 ` [lustre-devel] [PATCH 05/10] staging: lustre: fold lu_object_new() into lu_object_find_at() NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 10/10] staging: lustre: fix error deref in ll_splice_alias() NeilBrown
2018-05-02 3:05 ` James Simmons
2018-05-04 0:34 ` NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 04/10] staging: lustre: lu_object: move retry logic inside htable_lookup NeilBrown
2018-05-01 8:22 ` Dilger, Andreas
2018-05-02 18:21 ` James Simmons
2018-05-04 0:30 ` NeilBrown
2018-05-04 1:30 ` NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 08/10] staging: lustre: move misc-device registration closer to related code NeilBrown
2018-05-02 18:12 ` James Simmons [this message]
2018-05-01 3:52 ` [lustre-devel] [PATCH 07/10] staging: lustre: llite: remove redundant lookup in dump_pgcache NeilBrown
2018-05-01 3:52 ` [lustre-devel] [PATCH 06/10] staging: lustre: llite: use more private data " NeilBrown
-- strict thread matches above, loose matches on Subject: below --
2018-05-07 0:54 [lustre-devel] [PATCH 00/10 - v2] staging: lustre: assorted improvements NeilBrown
2018-05-07 0:54 ` [lustre-devel] [PATCH 08/10] staging: lustre: move misc-device registration closer to related code NeilBrown
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=alpine.LFD.2.21.1805021911550.24633@casper.infradead.org \
--to=jsimmons@infradead.org \
--cc=andreas.dilger@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lustre-devel@lists.lustre.org \
--cc=neilb@suse.com \
--cc=oleg.drokin@intel.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).