From patchwork Fri Sep 1 18:15:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shaohua Li X-Patchwork-Id: 9935033 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 7CAE4603B4 for ; Fri, 1 Sep 2017 18:15:24 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 74F8627F85 for ; Fri, 1 Sep 2017 18:15:24 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 69F3127F91; Fri, 1 Sep 2017 18:15:24 +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=-6.9 required=2.0 tests=BAYES_00,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 F034527F8E for ; Fri, 1 Sep 2017 18:15:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750955AbdIASPW (ORCPT ); Fri, 1 Sep 2017 14:15:22 -0400 Received: from mail.kernel.org ([198.145.29.99]:56470 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751715AbdIASPV (ORCPT ); Fri, 1 Sep 2017 14:15:21 -0400 Received: from shli-virt.localdomain (unknown [199.201.64.134]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 438A021B66; Fri, 1 Sep 2017 18:15:21 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 438A021B66 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=fail smtp.mailfrom=shli@fb.com From: Shaohua Li To: linux-block@vger.kernel.org Cc: kernel-team@fb.com, axboe@kernel.dk, Shaohua Li Subject: [PATCH V2 2/2] block/loop: remove unused field Date: Fri, 1 Sep 2017 11:15:18 -0700 Message-Id: <1466858c1c2a9e20ea9bd7fd30c1d2f4d1d5eeca.1504289520.git.shli@fb.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <1a1c70b8fd5044e11bd152686a742a017ebea99e.1504289520.git.shli@fb.com> References: <1a1c70b8fd5044e11bd152686a742a017ebea99e.1504289520.git.shli@fb.com> In-Reply-To: <1a1c70b8fd5044e11bd152686a742a017ebea99e.1504289520.git.shli@fb.com> References: <1a1c70b8fd5044e11bd152686a742a017ebea99e.1504289520.git.shli@fb.com> Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Shaohua Li nobody uses the list. Signed-off-by: Shaohua Li --- drivers/block/loop.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/block/loop.h b/drivers/block/loop.h index b0ba4a5..f68c1d5 100644 --- a/drivers/block/loop.h +++ b/drivers/block/loop.h @@ -67,7 +67,6 @@ struct loop_device { struct loop_cmd { struct kthread_work work; struct request *rq; - struct list_head list; union { bool use_aio; /* use AIO interface to handle I/O */ atomic_t ref; /* only for aio */