From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59456) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1emkmd-0003ad-Ez for qemu-devel@nongnu.org; Fri, 16 Feb 2018 13:30:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1emkmc-0005f3-BH for qemu-devel@nongnu.org; Fri, 16 Feb 2018 13:30:55 -0500 Received: from bombadil.infradead.org ([2607:7c80:54:e::133]:46720) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1emkmc-0005W9-1Q for qemu-devel@nongnu.org; Fri, 16 Feb 2018 13:30:54 -0500 Date: Fri, 16 Feb 2018 10:30:32 -0800 From: Matthew Wilcox Message-ID: <20180216183032.GA7439@bombadil.infradead.org> References: <1515496262-7533-1-git-send-email-wei.w.wang@intel.com> <1515496262-7533-2-git-send-email-wei.w.wang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PATCH v21 1/5] xbitmap: Introduce xbitmap List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Andy Shevchenko Cc: Wei Wang , virtio-dev@lists.oasis-open.org, Linux Kernel Mailing List , qemu-devel@nongnu.org, virtualization@lists.linux-foundation.org, kvm@vger.kernel.org, linux-mm , "Michael S. Tsirkin" , mhocko@kernel.org, Andrew Morton , Matthew Wilcox , david@redhat.com, Tetsuo Handa , cornelia.huck@de.ibm.com, mgorman@techsingularity.net, aarcange@redhat.com, amit.shah@redhat.com, Paolo Bonzini , liliang.opensource@gmail.com, yang.zhang.wz@gmail.com, quan.xu0@gmail.com, nilal@redhat.com, riel@redhat.com On Fri, Feb 16, 2018 at 07:44:50PM +0200, Andy Shevchenko wrote: > On Tue, Jan 9, 2018 at 1:10 PM, Wei Wang wrote: > > From: Matthew Wilcox > > > > The eXtensible Bitmap is a sparse bitmap representation which is > > efficient for set bits which tend to cluster. It supports up to > > 'unsigned long' worth of bits. > > > lib/xbitmap.c | 444 +++++++++++++++++++++++++++++++ > > Please, split tests to a separate module. Hah, I just did this two days ago! I didn't publish it yet, but I also made it compile both in userspace and as a kernel module. It's the top two commits here: http://git.infradead.org/users/willy/linux-dax.git/shortlog/refs/heads/xarray-2018-02-12 Note this is a complete rewrite compared to the version presented here; it sits on top of the XArray and no longer has a preload interface. It has a superset of the IDA functionality.