From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 84034382F32 for ; Mon, 30 Mar 2026 06:22:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774851740; cv=none; b=UM0s0ZvUc7j+NyZ/d4vnZV5Y+waahln+SmzvcwdoBJon/UdMK7okXYvoSmlCQ89mz2HNHh2+/Ka+/8r9nUfx1eNDP6Mg9XvvkRvOLF/c8qUepGUQ5990B/80t+Emz9R7bMvScBAoQlVzIMsto51mdCqPRXB+d0OGLvq2pBPylnE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774851740; c=relaxed/simple; bh=xH/Z0inUlrKCQ5SWsAUMQS4hp7sSldGdaW7++KGG8LY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Ulkd2pB/jpztAr2uXXTgr5qBb3em9deI9f1S9ySGvSFfD4GQMz+5VDvCyiOEqtit4vbQnB1ENRVNu3MoxnSk3FIdCiyzcyGvfyts7Ch1Mlw+fctS1a7JEzWNavemeB8baZQzCkMMv68qZACZjrNTMzaydC5qRIU5rKNH7KtSWRw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=y9RrhRs/; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=bombadil.srs.infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="y9RrhRs/" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Transfer-Encoding :Content-Type:MIME-Version:References:Message-ID:Subject:Cc:To:From:Date: Sender:Reply-To:Content-ID:Content-Description; bh=A5kUGJxxpOGZLNxEaIQpqI55lXs8cjlZDGWoRqiSlsk=; b=y9RrhRs/Zry8zlwTPI1jczOx3d xuCD9gV3XOiWO8LpJLz297O2TSydy7FSArlNaq+7mSQahDYV/tAG2QXbtUETOkH05JMwJQyzom3lG LUIwG25Pc9bmFwY2+F/kM+1cyzrIoXn7B9D7jZ/h1Ys2daJmabCJjXScjMAsNSyA0y8yLo9DtgeFZ LPxFmO/LLL5I9lWecbvZS3d5amIE7m/Z3IsAmnvmG0MyUfz8WMLCOLgo7xayrkA3IXgmi8dYkGcyn VbBYo13aLpFjAPaitMlHibEV4aM/AVuCOdDnZdKS1vN1fJp8wRuAosgtvos2/6o0aIzkLTNGFDMnS 9K25sYFQ==; Received: from hch by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1w760w-0000000Ag7m-46So; Mon, 30 Mar 2026 06:22:18 +0000 Date: Sun, 29 Mar 2026 23:22:18 -0700 From: Christoph Hellwig To: mpenttil@redhat.com Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, David Hildenbrand , Jason Gunthorpe , Leon Romanovsky , Alistair Popple , Balbir Singh , Zi Yan , Matthew Brost Subject: Re: [PATCH v7 6/6] mm:/migrate_device.c: remove migrate_vma_collect_*() Message-ID: References: <20260330043017.251808-1-mpenttil@redhat.com> <20260330043017.251808-7-mpenttil@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260330043017.251808-7-mpenttil@redhat.com> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html On Mon, Mar 30, 2026 at 07:30:17AM +0300, mpenttil@redhat.com wrote: > From: Mika Penttilä > > With the unified fault handling and migrate path, > the migrate_vma_collect_*() functions are unused, > let's remove them. This should go into the patch removing the uses.