Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp2652755yba; Mon, 8 Apr 2019 01:31:40 -0700 (PDT) X-Google-Smtp-Source: APXvYqyPvO+lgzCtUZE+TlHjnJRH6NsdRpaHfTbqF1Sk+zaTiqOcEi8UIdUS4USSoHSekxMpchUC X-Received: by 2002:a63:ef0a:: with SMTP id u10mr9429483pgh.199.1554712299989; Mon, 08 Apr 2019 01:31:39 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1554712299; cv=none; d=google.com; s=arc-20160816; b=hziRUtwqHKl149FbvjL0X/uPuOvBJEL9TpIKaYyQiRkfM3Sv6piOKL5v9zwnivd3un KVPiiT9+OiQiUVMnLTUkJcVh+RuS04xhbfE8+vN0eZkWO49g1iU2CALQR7W6xOlnSx6p ZDibaoMXTQMocKoekEyG8z0X+E+f9CIfStHY327tTkVazp+CIy44ZhQdSOFji8aKd3i8 Lh5LGPgN+rZSzRj3Mnr8Khn+40yAAfl4SPzWEFWpgIejlUJOGCY3Ps432s17ThUiR26+ sex4anYyVXNKNyIzCr8euhGSmUmxDFzUowaQUxQEhWXC1uoEkR7UScvvHQC63IK9YI6Q Hf0g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=CyuYEfiY9NjSk2dOJcUj51uA4Hfhu23j7wW7ZPhysjE=; b=SdvLPKwbUV/RbZYpaDBQUNlhW5hBKGeJpsVv+ewH5eyGf1QIm+/B623ee2Yg31ooCH PK9I17eVCbWf8Mjeznh7ihG9B3MWoJBtgnp2IvC5gTjZmJ17nvE/nnbN2CwdKKhdYoRn npP8BM5lOHPcB6Wgz41+R9LM2EO7iCY6TK0I5L08+h1AK9+gueg3Wks2MvFwlInkmPym MQ7CusRhPlmETzfGq2iD6QO5vmv70KbnsZzgv3G62jzm2xhb45pXwl9D5rR7tfmUvGOU 7SpvVCBvXTO5Xmawa+jn4YO63KVrDAlWuCZUEhwTG5yXhalQU7csaJ1+6EiQu3BybJBE tEkA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d4si13083914pgc.304.2019.04.08.01.31.24; Mon, 08 Apr 2019 01:31:39 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726668AbfDHIa0 (ORCPT + 99 others); Mon, 8 Apr 2019 04:30:26 -0400 Received: from mx2.suse.de ([195.135.220.15]:49726 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725877AbfDHIa0 (ORCPT ); Mon, 8 Apr 2019 04:30:26 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 36835AF79; Mon, 8 Apr 2019 08:30:25 +0000 (UTC) Subject: Re: [PATCH] block: remove CONFIG_LBDAF To: Christoph Hellwig , axboe@kernel.dk Cc: torvalds@linuxfoundation.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org References: <20190405160859.5288-1-hch@lst.de> From: Hannes Reinecke Message-ID: <5cd01b3f-84c3-0159-1036-49fca809d171@suse.de> Date: Mon, 8 Apr 2019 10:30:24 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <20190405160859.5288-1-hch@lst.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 4/5/19 6:08 PM, Christoph Hellwig wrote: > Currently support for 64-bit sector_t and blkcnt_t is optional on 32-bit > architectures. These types are required to support block device and/or > file sizes larger than 2 TiB, and have generally defaulted to on for > a long time. Enabling the option only increases the i386 tinyconfig > size by 145 bytes, and many data structures already always use > 64-bit values for their in-core and on-disk data structures anyway, > so there should not be a large change in dynamic memory usage either. > > Dropping this option removes a somewhat weird non-default config that > has cause various bugs or compiler warnings when actually used. > > Signed-off-by: Christoph Hellwig > --- Reviewed-by: Hannes Reinecke Cheers, Hannes -- Dr. Hannes Reinecke Teamlead Storage & Networking hare@suse.de +49 911 74053 688 SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg GF: Felix Imendörffer, Mary Higgins, Sri Rasiah HRB 21284 (AG Nürnberg)