Message ID | 154149586524.17764.5252013294539109287.stgit@localhost.localdomain (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-fsdevel-owner@kernel.org> Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 417EA13BF for <patchwork-linux-fsdevel@patchwork.kernel.org>; Tue, 6 Nov 2018 09:30:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 302702A278 for <patchwork-linux-fsdevel@patchwork.kernel.org>; Tue, 6 Nov 2018 09:30:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 21A852A281; Tue, 6 Nov 2018 09:30:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CA9D62A278 for <patchwork-linux-fsdevel@patchwork.kernel.org>; Tue, 6 Nov 2018 09:30:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729775AbeKFSyu (ORCPT <rfc822;patchwork-linux-fsdevel@patchwork.kernel.org>); Tue, 6 Nov 2018 13:54:50 -0500 Received: from relay.sw.ru ([185.231.240.75]:59138 "EHLO relay.sw.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729430AbeKFSyt (ORCPT <rfc822;linux-fsdevel@vger.kernel.org>); Tue, 6 Nov 2018 13:54:49 -0500 Received: from [172.16.25.169] (helo=localhost.localdomain) by relay.sw.ru with esmtp (Exim 4.90_1) (envelope-from <ktkhai@virtuozzo.com>) id 1gJxgq-0002vb-41; Tue, 06 Nov 2018 12:30:28 +0300 Content-Transfer-Encoding: 7bit Subject: [PATCH 0/6] fuse: Interrupt-related optimizations and improvements From: Kirill Tkhai <ktkhai@virtuozzo.com> To: miklos@szeredi.hu, ktkhai@virtuozzo.com, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Date: Tue, 06 Nov 2018 12:30:27 +0300 Message-ID: <154149586524.17764.5252013294539109287.stgit@localhost.localdomain> User-Agent: StGit/0.18 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: <linux-fsdevel.vger.kernel.org> X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP |
Series |
fuse: Interrupt-related optimizations and improvements
|
expand
|
This patchset consists of several parts. Patches [1-2] optimize likely case of request_end(), and make this function to take fiq->waitq.lock only, when it is really needed. This improves performance of this function completes. Patch 3 makes request_end() to call wake_up() only for not background requests (background requests never wait answer), and this optimizes this function a bit more Patches [4-6] makes code to check userspace requests correct interrupt id to requeue (whether we've sent this interrupt). --- Kirill Tkhai (6): fuse: Kill fasync only if interrupt is queued in queue_interrupt() fuse: Optimize request_end() by not taking fiq->waitq.lock fuse: Wake up req->waitq of only not background requests in request_end() fuse: Check for FR_SENT bit in fuse_dev_do_write() fuse: Do some refactoring in fuse_dev_do_write() fuse: Verify userspace asks to requeue interrupt that we really sent fs/fuse/dev.c | 73 +++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 53 insertions(+), 20 deletions(-) -- Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>