From patchwork Tue Oct 20 17:33:35 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 7449261 Return-Path: X-Original-To: patchwork-linux-fsdevel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D678C9F40A for ; Tue, 20 Oct 2015 17:34:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5CE172083B for ; Tue, 20 Oct 2015 17:34:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 78CD520841 for ; Tue, 20 Oct 2015 17:34:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753039AbbJTReG (ORCPT ); Tue, 20 Oct 2015 13:34:06 -0400 Received: from mail-qg0-f44.google.com ([209.85.192.44]:35312 "EHLO mail-qg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752954AbbJTReA (ORCPT ); Tue, 20 Oct 2015 13:34:00 -0400 Received: by qgbb65 with SMTP id b65so21690512qgb.2 for ; Tue, 20 Oct 2015 10:33:59 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=NMBRgq6RRHXtGPlu7FUdJFyfY3f0aZGLWOSAYCucGhk=; b=eIOG6slRI81dWPvyVE/L/qKdOOMmilX0mAQ/5wNzYLZf6cPg6DzRSg8r6QGJnHKwKX 6Ak20P3v/mm+GLEYk7J1lZVOP28XVgQqjwNVNltJ8G8GXdSkH/+LUBcnVc8etyimqd1V GqEro/hJEB+4CBHrH/pucL4i2F0k+s8WgRt3Uv3LBr3ZDJhi41AdRvKk4l0nJzrkuffr mJ3i+3dHTVuxpPeYTalnD/k1u/IssCKtuzuqAk9FEYJiaLj31Er0LC5aHQJnT2qoFLu8 P2a1ojHVB1RLsLcpVKjvxU+I6UEASvjjBytk1H7eZdqmVpUAtUX2xG2M1fZaJQHmhnhZ i+nA== X-Gm-Message-State: ALoCoQnmYakUr8C8+NpopMpfn7urit1w3hN6oKSpFYY+M8mpEKhXmxKmRmDG0qK3v7OJjbvWJGs7 X-Received: by 10.140.233.211 with SMTP id e202mr5819491qhc.37.1445362439776; Tue, 20 Oct 2015 10:33:59 -0700 (PDT) Received: from tlielax.poochiereds.net ([2606:a000:1125:6079::d5a]) by smtp.googlemail.com with ESMTPSA id m26sm1640925qki.28.2015.10.20.10.33.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 20 Oct 2015 10:33:59 -0700 (PDT) From: Jeff Layton X-Google-Original-From: Jeff Layton To: bfields@fieldses.org Cc: linux-nfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, Al Viro Subject: [PATCH v6 02/19] fs: have flush_delayed_fput flush the workqueue job Date: Tue, 20 Oct 2015 13:33:35 -0400 Message-Id: <1445362432-18869-3-git-send-email-jeff.layton@primarydata.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1445362432-18869-1-git-send-email-jeff.layton@primarydata.com> References: <1445362432-18869-1-git-send-email-jeff.layton@primarydata.com> Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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. Cc: Al Viro Signed-off-by: Jeff Layton --- fs/file_table.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) {