Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S969642AbdIZOrV (ORCPT ); Tue, 26 Sep 2017 10:47:21 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:46844 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S967046AbdIZOrT (ORCPT ); Tue, 26 Sep 2017 10:47:19 -0400 Date: Tue, 26 Sep 2017 09:47:10 -0500 From: Reza Arbab To: Michal Hocko Cc: Andrew Morton , Jan Kara , Ross Zwisler , "Kirill A. Shutemov" , Lorenzo Stoakes , Dave Jiang , =?iso-8859-1?B?Suly9G1l?= Glisse , Matthew Wilcox , Hugh Dickins , Huang Ying , Ingo Molnar , "Aneesh Kumar K.V" , James Morse , Naoya Horiguchi , Minchan Kim , Johannes Weiner , Will Deacon , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm/device-public-memory: Enable move_pages() to stat device memory References: <1506111236-28975-1-git-send-email-arbab@linux.vnet.ibm.com> <20170926133707.wquyw3ic5nbmfjuo@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20170926133707.wquyw3ic5nbmfjuo@dhcp22.suse.cz> Organization: IBM Linux Technology Center User-Agent: NeoMutt/20170914 (1.9.0) X-TM-AS-GCONF: 00 x-cbid: 17092614-0016-0000-0000-000007923CAE X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00007796; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000231; SDB=6.00922662; UDB=6.00463770; IPR=6.00702804; BA=6.00005608; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00017281; XFM=3.00000015; UTC=2017-09-26 14:47:17 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17092614-0017-0000-0000-00003B9F48E0 Message-Id: <20170926144710.zepvnyktqjomnx2n@arbab-laptop.localdomain> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-09-26_06:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1707230000 definitions=main-1709260210 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1093 Lines: 29 On Tue, Sep 26, 2017 at 01:37:07PM +0000, Michal Hocko wrote: >On Fri 22-09-17 15:13:56, Reza Arbab wrote: >> The move_pages() syscall can be used to find the numa node where a page >> currently resides. This is not working for device public memory pages, >> which erroneously report -EFAULT (unmapped or zero page). >> >> Enable by adding a FOLL_DEVICE flag for follow_page(), which >> move_pages() will use. This could be done unconditionally, but adding a >> flag seems like a safer change. > >I do not understand purpose of this patch. What is the numa node of a >device memory? Well, using hmm_devmem_pages_create() it is added to this node: nid = dev_to_node(device); if (nid < 0) nid = numa_mem_id(); I understand it's minimally useful information to userspace, but the memory does have a nid and move_pages() is supposed to be able to return what that is. I ran into this using a testcase which tries to verify that user addresses were correctly migrated to coherent device memory. That said, I'm okay with dropping this if you don't think it's worthwhile. -- Reza Arbab