]> git.baikalelectronics.ru Git - kernel.git/commit
mm: slub: be more careful about the double cmpxchg of freelist
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 17 Mar 2020 18:04:09 +0000 (11:04 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 18 Mar 2020 16:40:32 +0000 (09:40 -0700)
commit77f1fec7bb5851768d46c2b4f7102741d1be96d8
treee8d20e214d1c47b0ce3b8a45d525cee29675fd9d
parentb5e349bc1d643aa2203543d445ce89207b699ab7
mm: slub: be more careful about the double cmpxchg of freelist

This is just a cleanup addition to Jann's fix to properly update the
transaction ID for the slub slowpath in commit b5e349bc1d64 ("mm: slub:
add missing TID bump..").

The transaction ID is what protects us against any concurrent accesses,
but we should really also make sure to make the 'freelist' comparison
itself always use the same freelist value that we then used as the new
next free pointer.

Jann points out that if we do all of this carefully, we could skip the
transaction ID update for all the paths that only remove entries from
the lists, and only update the TID when adding entries (to avoid the ABA
issue with cmpxchg and list handling re-adding a previously seen value).

But this patch just does the "make sure to cmpxchg the same value we
used" rather than then try to be clever.

Acked-by: Jann Horn <jannh@google.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/slub.c