Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1239116

Re: [PATCH v2 1/4] fs: have flush_delayed_fput flush the workqueue job

Path csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod
From Jeff Layton <jlayton@poochiereds.net>
Newsgroups linux.kernel
Subject Re: [PATCH v2 1/4] fs: have flush_delayed_fput flush the workqueue job
Date Sun, 04 Oct 2015 15:40:02 +0200
Message-ID <qfRGa-1KT-3@gated-at.bofh.it> (permalink)
References <q9GNs-3OP-5@gated-at.bofh.it> <q9GNs-3OP-13@gated-at.bofh.it>
X-Original-To Al Viro <viro@ZenIV.linux.org.uk>
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=OQbdup2HO8WZUTOgzIH7jqZcUtFfGS8nS4B/lfLPU5c=; b=Og4DWe95eMCcgnbjImJ6SZPZ1puM9MyerDxKL78qpR5VAvR/vzRAFa14Fb337mQmpI +BdsEriZJXZ0z5lHuVGBVxAPJ2+R2iepavOeH5JX4AGeo+0F9fKXWhldkDKPLAkizV7t hPpzsSM2+s6oSWpRxBSyp6Bx/ayQNESJqEtvazIyC+t0gV9YvETRGK92tu8H6oBqsQ5s AuXndpphpg35WaXjkq78Z85Uqq8Kv1a8IWUMh4SuTBRXn8fZRn49veduFMynwJxAP8xh BlKEiz/ve7eNvg5vmEGVpcafQg1CEBYylAN/EXmsc+pa2DHOs5NHSZGX/cuui6Zc5GIg 1VwQ==
X-Gm-Message-State ALoCoQk6Y5yWu7NxoI9uAPrlhoGraZqlRlDNueGIQtBCOFO9U9ozw9jQz1axzx3zfLGqx5rWTYdB
X-Received by 10.55.201.217 with SMTP id m86mr7989240qkl.85.1443965757128; Sun, 04 Oct 2015 06:35:57 -0700 (PDT)
X-Mailer Claws Mail 3.12.0 (GTK+ 2.24.28; x86_64-redhat-linux-gnu)
MIME-Version 1.0
Content-Type text/plain; charset=US-ASCII
Content-Transfer-Encoding 7bit
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 62
Organization linux.* mail to news gateway
X-Original-Cc bfields@fieldses.org, linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
X-Original-Date Sun, 4 Oct 2015 09:35:53 -0400
X-Original-Message-ID <20151004093553.0ff25438@tlielax.poochiereds.net>
X-Original-References <1442493587-32499-1-git-send-email-jeff.layton@primarydata.com> <1442493587-32499-2-git-send-email-jeff.layton@primarydata.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1239116

Show key headers only | View raw


On Thu, 17 Sep 2015 08:39:44 -0400
Jeff Layton <jlayton@poochiereds.net> wrote:

> I think there's a potential race in flush_delayed_fput. A kthread does
> an fput() and that file gets added to the list and the delayed work is
> scheduled. More than 1 jiffy passes, and the workqueue thread picks up
> the work and starts running it. Then the kthread calls
> flush_delayed_work.  It sees that the list is empty and returns
> immediately, even though the __fput for its file may not have run yet.
> 
> Close this by making flush_delayed_fput use flush_delayed_work instead,
> which should immediately schedule the work to run if it's not already,
> and block until the workqueue job completes.
> 
> Signed-off-by: Jeff Layton <jeff.layton@primarydata.com>
> ---
>  fs/file_table.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

It should be noted that the only current user of flush_delayed_fput()
can call it before the workqueue threads are ever started.

Looking at the code, I *think* this will still do the right thing --
block until those threads are started and then flush the work as usual,
but do let me know if I've misread it.

> diff --git a/fs/file_table.c b/fs/file_table.c
> index ad17e05ebf95..52cc6803c07a 100644
> --- a/fs/file_table.c
> +++ b/fs/file_table.c
> @@ -244,6 +244,8 @@ static void ____fput(struct callback_head *work)
>  	__fput(container_of(work, struct file, f_u.fu_rcuhead));
>  }
>  
> +static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput);
> +
>  /*
>   * If kernel thread really needs to have the final fput() it has done
>   * to complete, call this.  The only user right now is the boot - we
> @@ -256,11 +258,9 @@ static void ____fput(struct callback_head *work)
>   */
>  void flush_delayed_fput(void)
>  {
> -	delayed_fput(NULL);
> +	flush_delayed_work(&delayed_fput_work);
>  }
>  
> -static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput);
> -
>  void fput(struct file *file)
>  {
>  	if (atomic_long_dec_and_test(&file->f_count)) {


-- 
Jeff Layton <jlayton@poochiereds.net>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH v2 1/4] fs: have flush_delayed_fput flush the workqueue  job Jeff Layton <jlayton@poochiereds.net> - 2015-10-04 15:40 +0200

csiph-web