~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/lib/bucket_locks.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /lib/bucket_locks.c (Version linux-6.12-rc7) and /lib/bucket_locks.c (Version linux-4.20.17)


  1 #include <linux/export.h>                           1 #include <linux/export.h>
  2 #include <linux/kernel.h>                           2 #include <linux/kernel.h>
  3 #include <linux/mm.h>                               3 #include <linux/mm.h>
  4 #include <linux/slab.h>                             4 #include <linux/slab.h>
  5 #include <linux/vmalloc.h>                          5 #include <linux/vmalloc.h>
  6                                                     6 
  7 /* Allocate an array of spinlocks to be access      7 /* Allocate an array of spinlocks to be accessed by a hash. Two arguments
  8  * indicate the number of elements to allocate      8  * indicate the number of elements to allocate in the array. max_size
  9  * gives the maximum number of elements to all      9  * gives the maximum number of elements to allocate. cpu_mult gives
 10  * the number of locks per CPU to allocate. Th     10  * the number of locks per CPU to allocate. The size is rounded up
 11  * to a power of 2 to be suitable as a hash ta     11  * to a power of 2 to be suitable as a hash table.
 12  */                                                12  */
 13                                                    13 
 14 int __alloc_bucket_spinlocks(spinlock_t **lock     14 int __alloc_bucket_spinlocks(spinlock_t **locks, unsigned int *locks_mask,
 15                              size_t max_size,      15                              size_t max_size, unsigned int cpu_mult, gfp_t gfp,
 16                              const char *name,     16                              const char *name, struct lock_class_key *key)
 17 {                                                  17 {
 18         spinlock_t *tlocks = NULL;                 18         spinlock_t *tlocks = NULL;
 19         unsigned int i, size;                      19         unsigned int i, size;
 20 #if defined(CONFIG_PROVE_LOCKING)                  20 #if defined(CONFIG_PROVE_LOCKING)
 21         unsigned int nr_pcpus = 2;                 21         unsigned int nr_pcpus = 2;
 22 #else                                              22 #else
 23         unsigned int nr_pcpus = num_possible_c     23         unsigned int nr_pcpus = num_possible_cpus();
 24 #endif                                             24 #endif
 25                                                    25 
 26         if (cpu_mult) {                            26         if (cpu_mult) {
 27                 nr_pcpus = min_t(unsigned int,     27                 nr_pcpus = min_t(unsigned int, nr_pcpus, 64UL);
 28                 size = min_t(unsigned int, nr_     28                 size = min_t(unsigned int, nr_pcpus * cpu_mult, max_size);
 29         } else {                                   29         } else {
 30                 size = max_size;                   30                 size = max_size;
 31         }                                          31         }
 32                                                    32 
 33         if (sizeof(spinlock_t) != 0) {             33         if (sizeof(spinlock_t) != 0) {
 34                 tlocks = kvmalloc_array(size,      34                 tlocks = kvmalloc_array(size, sizeof(spinlock_t), gfp);
 35                 if (!tlocks)                       35                 if (!tlocks)
 36                         return -ENOMEM;            36                         return -ENOMEM;
 37                 for (i = 0; i < size; i++) {       37                 for (i = 0; i < size; i++) {
 38                         spin_lock_init(&tlocks     38                         spin_lock_init(&tlocks[i]);
 39                         lockdep_init_map(&tloc     39                         lockdep_init_map(&tlocks[i].dep_map, name, key, 0);
 40                 }                                  40                 }
 41         }                                          41         }
 42                                                    42 
 43         *locks = tlocks;                           43         *locks = tlocks;
 44         *locks_mask = size - 1;                    44         *locks_mask = size - 1;
 45                                                    45 
 46         return 0;                                  46         return 0;
 47 }                                                  47 }
 48 EXPORT_SYMBOL(__alloc_bucket_spinlocks);           48 EXPORT_SYMBOL(__alloc_bucket_spinlocks);
 49                                                    49 
 50 void free_bucket_spinlocks(spinlock_t *locks)      50 void free_bucket_spinlocks(spinlock_t *locks)
 51 {                                                  51 {
 52         kvfree(locks);                             52         kvfree(locks);
 53 }                                                  53 }
 54 EXPORT_SYMBOL(free_bucket_spinlocks);              54 EXPORT_SYMBOL(free_bucket_spinlocks);
 55                                                    55 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php