|
@@ -1496,7 +1496,7 @@ static unsigned long calculate_alignment(unsigned long flags,
|
|
|
* specified alignment though. If that is greater
|
|
|
* then use it.
|
|
|
*/
|
|
|
- if ((flags & (SLAB_MUST_HWCACHE_ALIGN | SLAB_HWCACHE_ALIGN)) &&
|
|
|
+ if ((flags & SLAB_HWCACHE_ALIGN) &&
|
|
|
size > L1_CACHE_BYTES / 2)
|
|
|
return max_t(unsigned long, align, L1_CACHE_BYTES);
|
|
|
|
|
@@ -3142,8 +3142,7 @@ SLAB_ATTR(reclaim_account);
|
|
|
|
|
|
static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
|
|
|
{
|
|
|
- return sprintf(buf, "%d\n", !!(s->flags &
|
|
|
- (SLAB_HWCACHE_ALIGN|SLAB_MUST_HWCACHE_ALIGN)));
|
|
|
+ return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
|
|
|
}
|
|
|
SLAB_ATTR_RO(hwcache_align);
|
|
|
|