On Tue, 3 Dec 2013, David Rientjes wrote: > PF_MEMPOLICY is an unnecessary optimization for CONFIG_SLAB users. > There's no significant performance degradation to checking > current->mempolicy rather than current->flags & PF_MEMPOLICY in the > allocation path, especially since this is considered unlikely(). The use of current->mempolicy increase the cache footprint since its in a rarely used cacheline. This performance issue would occur when memory policies are not used since that cacheline would then have to be touched regardless of memory policies be in effect or not. PF_MEMPOLICY was used to avoid touching the cacheline. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>