From: Mikael Starvik <mikael.starvik@axis.com>
To: Jan Kara <jack@suse.com>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
Jan Kara <jack@suse.cz>,
linux-cris-kernel <linux-cris-kernel@axis.com>,
Mikael Starvik <starvik@axis.com>,
Jesper Nilsson <jespern@axis.com>
Subject: Re: [PATCH 1/7] cris: Convert cryptocop to use get_user_pages_fast()
Date: Tue, 6 Oct 2015 11:53:27 +0200 [thread overview]
Message-ID: <4A71022F-5EB7-40D5-9646-A200C5C140A0@axis.com> (raw)
In-Reply-To: <1444123470-4932-2-git-send-email-jack@suse.com>
Thank you! I will do the same change in our out-of-tree modules! Jesper will do the ack.
> 6 okt 2015 kl. 11:43 skrev Jan Kara <jack@suse.com>:
>
> From: Jan Kara <jack@suse.cz>
>
> CC: linux-cris-kernel@axis.com
> CC: Mikael Starvik <starvik@axis.com>
> CC: Jesper Nilsson <jesper.nilsson@axis.com>
> Signed-off-by: Jan Kara <jack@suse.cz>
> ---
> arch/cris/arch-v32/drivers/cryptocop.c | 35 ++++++++++------------------------
> 1 file changed, 10 insertions(+), 25 deletions(-)
>
> diff --git a/arch/cris/arch-v32/drivers/cryptocop.c b/arch/cris/arch-v32/drivers/cryptocop.c
> index 877da1908234..df7ceeff1086 100644
> --- a/arch/cris/arch-v32/drivers/cryptocop.c
> +++ b/arch/cris/arch-v32/drivers/cryptocop.c
> @@ -2716,43 +2716,28 @@ static int cryptocop_ioctl_process(struct inode *inode, struct file *filp, unsig
> }
> }
>
> - /* Acquire the mm page semaphore. */
> - down_read(¤t->mm->mmap_sem);
> -
> - err = get_user_pages(current,
> - current->mm,
> - (unsigned long int)(oper.indata + prev_ix),
> - noinpages,
> - 0, /* read access only for in data */
> - 0, /* no force */
> - inpages,
> - NULL);
> + err = get_user_pages_fast((unsigned long)(oper.indata + prev_ix),
> + noinpages,
> + 0, /* read access only for in data */
> + inpages);
>
> if (err < 0) {
> - up_read(¤t->mm->mmap_sem);
> nooutpages = noinpages = 0;
> - DEBUG_API(printk("cryptocop_ioctl_process: get_user_pages indata\n"));
> + DEBUG_API(printk("cryptocop_ioctl_process: get_user_pages_fast indata\n"));
> goto error_cleanup;
> }
> noinpages = err;
> if (oper.do_cipher){
> - err = get_user_pages(current,
> - current->mm,
> - (unsigned long int)oper.cipher_outdata,
> - nooutpages,
> - 1, /* write access for out data */
> - 0, /* no force */
> - outpages,
> - NULL);
> - up_read(¤t->mm->mmap_sem);
> + err = get_user_pages_fast((unsigned long)oper.cipher_outdata,
> + nooutpages,
> + 1, /* write access for out data */
> + outpages);
> if (err < 0) {
> nooutpages = 0;
> - DEBUG_API(printk("cryptocop_ioctl_process: get_user_pages outdata\n"));
> + DEBUG_API(printk("cryptocop_ioctl_process: get_user_pages_fast outdata\n"));
> goto error_cleanup;
> }
> nooutpages = err;
> - } else {
> - up_read(¤t->mm->mmap_sem);
> }
>
> /* Add 6 to nooutpages to make room for possibly inserted buffers for storing digest and
> --
> 2.1.4
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2015-10-06 9:53 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-06 9:24 [PATCH 0/7] get_user_pages() cleanup Jan Kara
2015-10-06 9:24 ` [PATCH 1/7] cris: Convert cryptocop to use get_user_pages_fast() Jan Kara
2015-10-06 9:53 ` Mikael Starvik [this message]
2015-10-09 14:41 ` Jesper Nilsson
2015-10-06 9:24 ` [PATCH 2/7] ia64: Use get_user_pages_fast() in err_inject.c Jan Kara
2015-10-06 9:24 ` [PATCH 3/7] drm: Convert via driver to use get_user_pages_fast() Jan Kara
2015-10-06 9:24 ` [PATCH 4/7] fsl_hypervisor: Convert ioctl_memcpy() " Jan Kara
2015-10-06 9:24 ` [PATCH 5/7] IB/mthca: Convert mthca_map_user_db() " Jan Kara
2015-10-06 9:24 ` [PATCH 6/7] drm/i915: Convert to use get_user_page_unlocked() Jan Kara
2015-10-06 9:24 ` [PATCH 7/7] [media] ivtv: Convert to get_user_pages_unlocked() Jan Kara
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=4A71022F-5EB7-40D5-9646-A200C5C140A0@axis.com \
--to=mikael.starvik@axis.com \
--cc=jack@suse.com \
--cc=jack@suse.cz \
--cc=jespern@axis.com \
--cc=linux-cris-kernel@axis.com \
--cc=linux-mm@kvack.org \
--cc=starvik@axis.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