From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrian Hunter Subject: Re: [PATCH V5 09/13] mmc: block: Use local variables in mmc_blk_data_prep() Date: Mon, 21 Aug 2017 12:27:02 +0300 Message-ID: References: <1502366898-23691-1-git-send-email-adrian.hunter@intel.com> <1502366898-23691-10-git-send-email-adrian.hunter@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mga07.intel.com ([134.134.136.100]:55722 "EHLO mga07.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752452AbdHUJde (ORCPT ); Mon, 21 Aug 2017 05:33:34 -0400 In-Reply-To: Content-Language: en-US Sender: linux-mmc-owner@vger.kernel.org List-Id: linux-mmc@vger.kernel.org To: Linus Walleij Cc: Ulf Hansson , linux-mmc , Bough Chen , Alex Lemberg , Mateusz Nowak , Yuliy Izrailov , Jaehoon Chung , Dong Aisheng , Das Asutosh , Zhangfei Gao , Sahitya Tummala , Harjani Ritesh , Venu Byravarasu , Shawn Lin On 20/08/17 14:43, Linus Walleij wrote: > On Thu, Aug 10, 2017 at 2:08 PM, Adrian Hunter wrote: > >> Use local variables in mmc_blk_data_prep() in preparation for adding CQE >> support which doesn't use the output variables. >> >> Signed-off-by: Adrian Hunter > > Reviewed-by: Linus Walleij > on the patch as such but: > >> static void mmc_blk_data_prep(struct mmc_queue *mq, struct mmc_queue_req *mqrq, >> - int disable_multi, bool *do_rel_wr, >> - bool *do_data_tag) >> + int disable_multi, bool *do_rel_wr_p, >> + bool *do_data_tag_p) > > We need to figure out what we mean by "tag" in eMMC. Data tags are an eMMC invention to categorize the type of data. They have nothing to do with block layer tags.