linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nikhilesh Reddy <reddyn@codeaurora.org>
To: Mike Shal <marfey@gmail.com>
Cc: torvalds@linux-foundation.org, Miklos Szeredi <miklos@szeredi.hu>,
	fuse-devel <fuse-devel@lists.sourceforge.net>,
	linux-kernel@vger.kernel.org, linux-api@vger.kernel.org,
	gregkh@linuxfoundation.org, linux-fsdevel@vger.kernel.org,
	viro@zeniv.linux.org.uk,
	Richard Weinberger <richard.weinberger@gmail.com>,
	Theodore Ts'o <tytso@mit.edu>,
	jack@suse.cz, Antonio SJ Musumeci <trapexit@spawn.link>,
	sven.utcke@gmx.de, Nikolaus Rath <nikolaus@rath.org>,
	Jann Horn <jannhorn@googlemail.com>
Subject: Re: [fuse-devel] [PATCH v4] fuse: Add support for passthrough read/write
Date: Mon, 25 Jan 2016 12:49:00 -0800	[thread overview]
Message-ID: <56A68A3C.601@codeaurora.org> (raw)
In-Reply-To: <CA+6x0LUrBHPf7YyNgwoY4c3fxACBpspycM45Tj=XWQ6oKsRK-g@mail.gmail.com>

On Fri 22 Jan 2016 03:04:36 PM PST, Mike Shal wrote:
> On Wed, Jan 20, 2016 at 7:16 PM, Nikhilesh Reddy
> <reddyn@codeaurora.org <mailto:reddyn@codeaurora.org>> wrote:
>
>     diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
>     @@ -569,6 +570,8 @@ ssize_t fuse_simple_request(struct fuse_conn
>     *fc, struct fuse_args *args)
>             if (!ret && args->out.argvar) {
>                     BUG_ON(args->out.numargs != 1);
>                     ret = req->out.args[0].size;
>     +               if (req->passthrough_filp != NULL)
>     +                       args->out.passthrough_filp =
>     req->passthrough_filp;
>             }
>             fuse_put_request(fc, req);
>
>
> Is it correct to only set passthrough_filp when args->out.argvar is
> set here? I tried to test your patch, but I'm still seeing read &
> write requests to my FUSE filesystem after setting the passthrough
> bit. As far as I can tell, args->out.argvar is only set in a few cases
> (like fuse_follow_link()) but not where you're using it in
> fuse_create_open() or fuse_send_open(). I changed the logic to this:
>
> diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
> index 5cc5385..543c250 100644
> --- a/fs/fuse/dev.c
> +++ b/fs/fuse/dev.c
> @@ -567,11 +567,14 @@ ssize_t fuse_simple_request(struct fuse_conn
> *fc, struct fuse_args *args)
>                args->out.numargs * sizeof(struct fuse_arg));
>         fuse_request_send(fc, req);
>         ret = req->out.h.error;
> +       if (!ret) {
> +               if (req->passthrough_filp != NULL) {
> +                       args->out.passthrough_filp =
> req->passthrough_filp;
> +               }
> +       }
>         if (!ret && args->out.argvar) {
>                 BUG_ON(args->out.numargs != 1);
>                 ret = req->out.args[0].size;
> -               if (req->passthrough_filp != NULL)
> -                       args->out.passthrough_filp =
> req->passthrough_filp;
>         }
>         fuse_put_request(fc, req);
>
> And then it worked as expected. The only read() calls I see in my FUSE
> filesystem after this change are from mmaped files, but it sounds like
> you're already working on that. The performance is much improved for
> large reads & writes, so thanks for working on this! I'm excited to
> see it finished.
>
> Note that I had to implement the libfuse side of things myself to test
> this, so it's possible I'm doing something wrong there to trigger this
> behavior. Maybe you could post your libfuse patches somewhere as well?
> Then I can make sure I'm testing the same thing that you are.
>
> Thanks,
> -Mike
>
>

Hi
Thank you so much Mike for testing it out and reporting the results.
I reviewed my code base again and it turns out i have other internal  
patches that allow my code to work.
But you are right i can fix up the code simliar to your suggestion in 
the next patch so it works no matter what.
I will wait one or two more days before sending out a new patch with 
the fix up as suggested. ( credit to you of course ) so that others 
have a chance to give more comments.
I hope you can help test it out then as well.

As for libfuse i currently testing using a proprietary version of a 
daemon that doesnt use libfuse so i dont have have a patch out yet. 
(the legal guys are to blame)
If you you have one ready can you please post it ? ( will save me the 
effort :)  and the bureaucracy i have to go through to post a patch ) 
otherwise will try to get my version out by end of the month


Again thanks for your help and support

--
Thanks
Nikhilesh Reddy

Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora 
Forum,
a Linux Foundation Collaborative Project.

      reply	other threads:[~2016-01-25 20:49 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-21  0:16 [PATCH v4] fuse: Add support for passthrough read/write Nikhilesh Reddy
2016-01-21 12:38 ` Bernd Schubert
2016-01-21 12:45   ` Richard Weinberger
2016-01-21 17:59     ` Nikhilesh Reddy
     [not found] ` <56A0235E.8090205-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2016-01-22 23:04   ` Mike Shal
2016-01-25 20:49     ` Nikhilesh Reddy [this message]

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=56A68A3C.601@codeaurora.org \
    --to=reddyn@codeaurora.org \
    --cc=fuse-devel@lists.sourceforge.net \
    --cc=gregkh@linuxfoundation.org \
    --cc=jack@suse.cz \
    --cc=jannhorn@googlemail.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marfey@gmail.com \
    --cc=miklos@szeredi.hu \
    --cc=nikolaus@rath.org \
    --cc=richard.weinberger@gmail.com \
    --cc=sven.utcke@gmx.de \
    --cc=torvalds@linux-foundation.org \
    --cc=trapexit@spawn.link \
    --cc=tytso@mit.edu \
    --cc=viro@zeniv.linux.org.uk \
    /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).