From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751944AbdHDIMp (ORCPT ); Fri, 4 Aug 2017 04:12:45 -0400 Received: from mx2.suse.de ([195.135.220.15]:35476 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751278AbdHDIMm (ORCPT ); Fri, 4 Aug 2017 04:12:42 -0400 Date: Fri, 4 Aug 2017 10:12:40 +0200 From: Michal Hocko To: Igor Stoppa Cc: Jerome Glisse , Linux-MM , LKML , linux-security-module@vger.kernel.org, "kernel-hardening@lists.openwall.com" , Kees Cook Subject: Re: [RFC] Tagging of vmalloc pages for supporting the pmalloc allocator Message-ID: <20170804081240.GF26029@dhcp22.suse.cz> References: <07063abd-2f5d-20d9-a182-8ae9ead26c3c@huawei.com> <20170802170848.GA3240@redhat.com> <8e82639c-40db-02ce-096a-d114b0436d3c@huawei.com> <20170803114844.GO12521@dhcp22.suse.cz> <20170803135549.GW12521@dhcp22.suse.cz> <20170803144746.GA9501@redhat.com> <20170803151550.GX12521@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri 04-08-17 11:02:46, Igor Stoppa wrote: > > > On 03/08/17 18:15, Michal Hocko wrote: > > > I would check the one where we have mapping. It is rather unlikely > > vmalloc users would touch this one. > > That was also the initial recommendation from Jerome Glisse, but it > seemed unusable, because of the related comment. > > I should have asked for clarifications back then :-( > > But it's never too late ... > > > struct page { > /* First double word block */ > unsigned long flags; /* Atomic flags, some possibly > * updated asynchronously */ > union { > struct address_space *mapping; /* If low bit clear, points to > * inode address_space, or NULL. > * If page mapped as anonymous > * memory, low bit is set, and > * it points to anon_vma object: > * see PAGE_MAPPING_ANON below. > */ > ... > } > > mapping seems to be used exclusively in 2 ways, based on the value of > its lower bit. Not really. The above applies to LRU pages. Please note that Slab pages use s_mem and huge pages use compound_mapcount. If vmalloc pages are using none of those already you can add a new field there. -- Michal Hocko SUSE Labs