From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E69DBC433E0 for ; Thu, 21 Jan 2021 10:00:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AA68D20725 for ; Thu, 21 Jan 2021 10:00:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729049AbhAUJ74 (ORCPT ); Thu, 21 Jan 2021 04:59:56 -0500 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:37902 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728834AbhAUJ7O (ORCPT ); Thu, 21 Jan 2021 04:59:14 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611223066; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vjsx8NNg7QU5UqLR81grwFscZo5YAJDDorGAAazwLP4=; b=ShddcMC+V0whUSJwY8/uedipZO4iFTAaoKY9908dJZVNgWXDh2flcJen2VmexRwXlcRN8z wm29mN6dCYctzCBa1+DRISKarR/eDLOv83WorRptQ9vN/3bCKKgzVQATuqzJ+Bks5CKYUX 41pHa5PpXjLff9huhMTKEs1gU4+DF4I= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-307-qVKfsRoLMJKyWRy80DNzPw-1; Thu, 21 Jan 2021 04:57:44 -0500 X-MC-Unique: qVKfsRoLMJKyWRy80DNzPw-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 14B9A107ACF6; Thu, 21 Jan 2021 09:57:41 +0000 (UTC) Received: from [10.36.115.70] (ovpn-115-70.ams2.redhat.com [10.36.115.70]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1FB0319D9B; Thu, 21 Jan 2021 09:57:32 +0000 (UTC) Subject: Re: [PATCH RFC] virtio-mem: check against memhp_get_pluggable_range() which memory we can hotplug To: Anshuman Khandual , linux-mm@kvack.org, akpm@linux-foundation.org, hca@linux.ibm.com, catalin.marinas@arm.com Cc: Oscar Salvador , Vasily Gorbik , Will Deacon , Ard Biesheuvel , Mark Rutland , linux-arm-kernel@lists.infradead.org, linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org, "Michael S. Tsirkin" , Jason Wang , Pankaj Gupta , Michal Hocko , Wei Yang , teawater , Pankaj Gupta , Jonathan Cameron References: <1610975582-12646-1-git-send-email-anshuman.khandual@arm.com> <1610975582-12646-5-git-send-email-anshuman.khandual@arm.com> From: David Hildenbrand Organization: Red Hat GmbH Message-ID: <36a10a6f-a2c7-b108-5054-5e4f3e1a1daf@redhat.com> Date: Thu, 21 Jan 2021 10:57:31 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 18.01.21 14:21, Anshuman Khandual wrote: > > > On 1/18/21 6:43 PM, Anshuman Khandual wrote: >> From: David Hildenbrand >> >> Right now, we only check against MAX_PHYSMEM_BITS - but turns out there >> are more restrictions of which memory we can actually hotplug, especially >> om arm64 or s390x once we support them: we might receive something like >> -E2BIG or -ERANGE from add_memory_driver_managed(), stopping device >> operation. >> >> So, check right when initializing the device which memory we can add, >> warning the user. Try only adding actually pluggable ranges: in the worst >> case, no memory provided by our device is pluggable. >> >> In the usual case, we expect all device memory to be pluggable, and in >> corner cases only some memory at the end of the device-managed memory >> region to not be pluggable. >> >> Cc: "Michael S. Tsirkin" >> Cc: Jason Wang >> Cc: Pankaj Gupta >> Cc: Michal Hocko >> Cc: Oscar Salvador >> Cc: Wei Yang >> Cc: Andrew Morton >> Cc: catalin.marinas@arm.com >> Cc: teawater >> Cc: Anshuman Khandual >> Cc: Pankaj Gupta >> Cc: Jonathan Cameron >> Cc: hca@linux.ibm.com >> Cc: Vasily Gorbik >> Cc: Will Deacon >> Cc: Ard Biesheuvel >> Cc: Mark Rutland >> Cc: Heiko Carstens >> Cc: Michal Hocko >> Signed-off-by: David Hildenbrand >> Signed-off-by: Anshuman Khandual > > Hello David, > > As your original patch was in the RFC state, I have just maintained > the same here as well. But once you test this patch along with the > new series, please do let me know if this needs to be converted to > a normal PATCH instead. Thank you. Yes, you can drop the RFC part. I assume you'll send another revision, I'll do another test there, thanks! -- Thanks, David / dhildenb