lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sat, 25 Nov 2006 11:01:45 -0800 (PST)
From:	Linus Torvalds <torvalds@...l.org>
To:	Hugh Dickins <hugh@...itas.com>
cc:	Mel Gorman <mel@...net.ie>, Christoph Lameter <clameter@....com>,
	linux-mm@...ck.org,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/11] Add __GFP_MOVABLE flag and update callers



On Fri, 24 Nov 2006, Hugh Dickins wrote:
> 
> You need to add in something like the patch below (mutatis mutandis
> for whichever approach you end up taking): tmpfs uses highmem pages
> for its swap vector blocks, noting where on swap the data pages are,
> and allocates them with mapping_gfp_mask(inode->i_mapping); but we
> don't have any mechanism in place for reclaiming or migrating those.

I think this really just points out that you should _not_ put MOVABLE into 
the "mapping_gfp_mask()" at all.

The mapping_gfp_mask() should really just contain the "constraints" on 
the allocation, not the "how the allocation is used". So things like "I 
need all my pages to be in the 32bit DMA'able region" is a constraint on 
the allocator, as is something like "I need the allocation to be atomic". 

But MOVABLE is really not a constraint on the allocator, it's a guarantee 
by the code _calling_ the allocator that it will then make sure that it 
_uses_ the allocation in a way that means that it is movable.

So it shouldn't be a property of the mapping itself, it should always be a 
property of the code that actually does the allocation.

Hmm?

		Linus
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ