]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iommufd: Use atomic_long_try_cmpxchg() in incr_user_locked_vm()
authorUros Bizjak <ubizjak@gmail.com>
Wed, 22 May 2024 08:26:49 +0000 (10:26 +0200)
committerJoerg Roedel <jroedel@suse.de>
Tue, 25 Jun 2024 12:21:10 +0000 (14:21 +0200)
Use atomic_long_try_cmpxchg() instead of
atomic_long_cmpxchg (*ptr, old, new) != old in incr_user_locked_vm().
cmpxchg returns success in ZF flag, so this change saves a compare
after cmpxchg (and related move instruction in front of cmpxchg).

Also, atomic_long_try_cmpxchg() implicitly assigns old *ptr
value to "old" when cmpxchg fails. There is no need to re-read
the value in the loop.

Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Jason Gunthorpe <jgg@ziepe.ca>
Cc: Kevin Tian <kevin.tian@intel.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Will Deacon <will@kernel.org>
Cc: Robin Murphy <robin.murphy@arm.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/20240522082729.971123-3-ubizjak@gmail.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/iommufd/pages.c

index 528f356238b343a72fefa609334062c9c91219f1..117f644a0c5b75c6701001b08b4986627c3bc8f2 100644 (file)
@@ -809,13 +809,14 @@ static int incr_user_locked_vm(struct iopt_pages *pages, unsigned long npages)
 
        lock_limit = task_rlimit(pages->source_task, RLIMIT_MEMLOCK) >>
                     PAGE_SHIFT;
+
+       cur_pages = atomic_long_read(&pages->source_user->locked_vm);
        do {
-               cur_pages = atomic_long_read(&pages->source_user->locked_vm);
                new_pages = cur_pages + npages;
                if (new_pages > lock_limit)
                        return -ENOMEM;
-       } while (atomic_long_cmpxchg(&pages->source_user->locked_vm, cur_pages,
-                                    new_pages) != cur_pages);
+       } while (!atomic_long_try_cmpxchg(&pages->source_user->locked_vm,
+                                         &cur_pages, new_pages));
        return 0;
 }