From patchwork Fri Dec 16 04:41:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ritesh Harjani X-Patchwork-Id: 9477261 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 EFB636047D for ; Fri, 16 Dec 2016 04:42:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CC619287ED for ; Fri, 16 Dec 2016 04:42:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AED972888D; Fri, 16 Dec 2016 04:42:11 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 5B25E287ED for ; Fri, 16 Dec 2016 04:42:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753017AbcLPEmJ (ORCPT ); Thu, 15 Dec 2016 23:42:09 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:49746 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751710AbcLPEmI (ORCPT ); Thu, 15 Dec 2016 23:42:08 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id D340F614FB; Fri, 16 Dec 2016 04:42:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1481863327; bh=E86sIp/ei+4bmesF8O+ADosvm5TCT6jE4ql1N7VGzT4=; h=From:To:Cc:Subject:Date:From; b=DYxmlKD53CPml+iUESpwDtbb4ikS6enFWRoioDWRdznREdXuInF4RFq2HoLR7Fng3 kB4vqshPvIfK8gbOTHv9XZ3d/7CvkuzvqT84zYKPtf3bfxcADmDriS6Zfby+nAyont DgbD7DYQV+AfYOFHNPIUbIGCBU8tPW6xfTm52Mlg= Received: from rharjani-linux.qualcomm.com (unknown [202.46.23.54]) (using TLSv1.1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: riteshh@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 10E3C614FB; Fri, 16 Dec 2016 04:42:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1481863327; bh=E86sIp/ei+4bmesF8O+ADosvm5TCT6jE4ql1N7VGzT4=; h=From:To:Cc:Subject:Date:From; b=DYxmlKD53CPml+iUESpwDtbb4ikS6enFWRoioDWRdznREdXuInF4RFq2HoLR7Fng3 kB4vqshPvIfK8gbOTHv9XZ3d/7CvkuzvqT84zYKPtf3bfxcADmDriS6Zfby+nAyont DgbD7DYQV+AfYOFHNPIUbIGCBU8tPW6xfTm52Mlg= DMARC-Filter: OpenDMARC Filter v1.3.1 smtp.codeaurora.org 10E3C614FB Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=pass smtp.mailfrom=riteshh@codeaurora.org From: Ritesh Harjani To: axboe@kernel.dk Cc: linux-block@vger.kernel.org, Ritesh Harjani Subject: [PATCH] block: Remove unused member (busy) from struct blk_queue_tag Date: Fri, 16 Dec 2016 10:11:56 +0530 Message-Id: <1481863316-6736-1-git-send-email-riteshh@codeaurora.org> X-Mailer: git-send-email 1.8.2.1 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 Signed-off-by: Ritesh Harjani Reviewed-by: Bart Van Assche --- include/linux/blkdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 286b2a2..8369564 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -288,7 +288,6 @@ enum blk_queue_state { struct blk_queue_tag { struct request **tag_index; /* map of busy tags */ unsigned long *tag_map; /* bit map of free/busy tags */ - int busy; /* current depth */ int max_depth; /* what we will send to device */ int real_max_depth; /* what the array can hold */ atomic_t refcnt; /* map can be shared */