linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kirill Smelkov <kirr@nexedi.com>
To: Miklos Szeredi <mszeredi@redhat.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
	Brian Foster <bfoster@redhat.com>,
	Maxim Patlasov <mpatlasov@parallels.com>,
	Anatol Pomozov <anatol.pomozov@gmail.com>,
	Pavel Emelyanov <xemul@openvz.org>,
	Andrew Gallagher <andrewjcg@fb.com>,
	"Anand V . Avati" <avati@redhat.com>,
	Alexey Kuznetsov <kuznet@virtuozzo.com>,
	Andrey Ryabinin <aryabinin@virtuozzo.com>,
	Kirill Tkhai <ktkhai@virtuozzo.com>,
	Constantine Shulyupin <const@makelinux.com>,
	Chad Austin <chadaustin@fb.com>,
	Dan Schatzberg <dschatzberg@fb.com>,
	linux-fsdevel <linux-fsdevel@vger.kernel.org>,
	fuse-devel <fuse-devel@lists.sourceforge.net>,
	lkml <linux-kernel@vger.kernel.org>,
	Han-Wen Nienhuys <hanwen@google.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: FUSE workflow=? (Re: [RESEND1, PATCH 1/2] fuse: convert printk -> pr_*)
Date: Wed, 24 Apr 2019 09:54:46 +0000	[thread overview]
Message-ID: <20190424095437.GA26730@deco.navytux.spb.ru> (raw)
In-Reply-To: <CAOssrKeowGky6cccH0EKXiJkTwnPAU+as_vish=u4kvU=TQsvg@mail.gmail.com>

On Wed, Apr 24, 2019 at 10:57:35AM +0200, Miklos Szeredi wrote:
> On Wed, Apr 24, 2019 at 10:38 AM Kirill Smelkov <kirr@nexedi.com> wrote:
> >
> > +torvalds
> >
> > On Tue, Apr 23, 2019 at 04:57:58PM +0200, Miklos Szeredi wrote:
> > > On Wed, Mar 27, 2019 at 10:15 AM Kirill Smelkov <kirr@nexedi.com> wrote:
> > > >
> > > > Functions, like pr_err, are a more modern variant of printing compared to
> > > > printk. They could be used to denoise sources by using needed level in
> > > > the print function name, and by automatically inserting per-driver /
> > > > function / ... print prefix as defined by pr_fmt macro. pr_* are also
> > > > said to be used in Documentation/process/coding-style.rst and more
> > > > recent code - for example overlayfs - uses them instead of printk.
> > > >
> > > > Convert CUSE and FUSE to use the new pr_* functions.
> > > >
> > > > CUSE output stays completely unchanged, while FUSE output is amended a
> > > > bit for "trying to steal weird page" warning - the second line now comes
> > > > also with "fuse:" prefix. I hope it is ok.
> > >
> > > Yep.  Applied, thanks.
> >
> > Miklos, thanks for feedback. Could you please clarify where the patch is
> > applied? Here is what linux/MAINTAINERS says
> >
> >         FUSE: FILESYSTEM IN USERSPACE
> >         M:      Miklos Szeredi <miklos@szeredi.hu>
> >         L:      linux-fsdevel@vger.kernel.org
> >         W:      http://fuse.sourceforge.net/
> >         T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
> >         S:      Maintained
> >         F:      fs/fuse/
> >         F:      include/uapi/linux/fuse.h
> >         F:      Documentation/filesystems/fuse.txt
> >
> > but git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git was
> > not updated for ~ 2 months. I see other "Applied, thanks" replies from
> > you on linux-fsdevel in recent days and it suggests that patches are
> > indeed applied, but where they are integrated is the question.
> 
> My private patch queue.
> 
> > Linux-next also has no post-5.1 fuse patches at all, so I'm really
> > puzzled about what is going on.
> >
> > Is there any reason not to keep for-next fuse branch publicly available?
> > Or am I missing something?
> 
> I usually push to fuse.git#for-next within a day or two of adding it
> to my queue.

Miklos, first of all thanks a lot for feedback.

I see about fuse.git#for-next. I was checking linux-fsdevel and saw one
patch said to be applied ~ one week ago. That timeframe was bigger than
a private queue for in-house testing that I was imagining, and that's
why I asked.

https://lore.kernel.org/linux-fsdevel/CAJfpegsyuNtS7afL3Wqjx7m2ewPUUih9pznRmxtrsHYOKER2Gw@mail.gmail.com/


> > Could you please also have a look at other posted patches? I'm
> > struggling for months sending them to you and not getting feedback. It
> > is kind of frustrating to work in this mode.
> 
> I see.  I'll try to give more frequent feedback on patches.  The
> reason for not replying is not that I intentionally ignore incoming
> patches, but because I'm working on something else and context
> switching between completely different projects is not easy for me.

I see. I understand about context switching difficulty especially that
it is similarly not easy on my side. However big latency on patches
feedback creates uncertainty e.g. whether a patch will be considered at
all or dropped? If it will be considered there are chances that it will
have to be reworked, and if feedback is e.g. once per cycle (~2.5 months)
the reworked patch will have to wait for another cycle which gets it
close to half a year. And with those latencies it starts to be close to
kill the motivation to do the work at all. (a record example - I once
got first reply after 5 _years_ since posting a patch)

We all have limited resources and I'm not talking about getting feedback
(though that would be appreciated) in the days timeframe. Getting
feedback in one or two weeks should be reasonably though. With more
delay, at least for me, it starts to be on the edge and the patch
considered to be lost. It is very appreciated if you could indeed try to
provide feedback more frequently.

I apologize if maybe my email touched some pain points. I asked because
it was not clear what to do with the patches and my filesystem becomes
completely useless without e.g. precise-cache fix. I was just trying to
find what should be the way for my fuse changes into the kernel.
Thanks a lot, once again, for your feedback.

Kirill

  reply	other threads:[~2019-04-24 10:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-27  9:15 [RESEND1, PATCH 0/2] fuse: allow filesystems to have precise control over data cache Kirill Smelkov
2019-03-27  9:15 ` [RESEND1, PATCH 1/2] fuse: convert printk -> pr_* Kirill Smelkov
2019-04-23 14:57   ` Miklos Szeredi
2019-04-24  8:38     ` FUSE workflow=? (Re: [RESEND1, PATCH 1/2] fuse: convert printk -> pr_*) Kirill Smelkov
2019-04-24  8:57       ` Miklos Szeredi
2019-04-24  9:54         ` Kirill Smelkov [this message]
2019-03-27 10:14 ` [RESEND1, PATCH v2 2/2] fuse: allow filesystems to have precise control over data cache Kirill Smelkov

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=20190424095437.GA26730@deco.navytux.spb.ru \
    --to=kirr@nexedi.com \
    --cc=akpm@linux-foundation.org \
    --cc=anatol.pomozov@gmail.com \
    --cc=andrewjcg@fb.com \
    --cc=aryabinin@virtuozzo.com \
    --cc=avati@redhat.com \
    --cc=bfoster@redhat.com \
    --cc=chadaustin@fb.com \
    --cc=const@makelinux.com \
    --cc=dschatzberg@fb.com \
    --cc=fuse-devel@lists.sourceforge.net \
    --cc=hanwen@google.com \
    --cc=ktkhai@virtuozzo.com \
    --cc=kuznet@virtuozzo.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=miklos@szeredi.hu \
    --cc=mpatlasov@parallels.com \
    --cc=mszeredi@redhat.com \
    --cc=torvalds@linux-foundation.org \
    --cc=xemul@openvz.org \
    /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).