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

TOMOYO Linux Cross Reference
Linux/kernel/trace/pid_list.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 
  3 /* Do not include this file directly. */
  4 
  5 #ifndef _TRACE_INTERNAL_PID_LIST_H
  6 #define _TRACE_INTERNAL_PID_LIST_H
  7 
  8 /*
  9  * In order to keep track of what pids to trace, a tree is created much
 10  * like page tables are used. This creates a sparse bit map, where
 11  * the tree is filled in when needed. A PID is at most 30 bits (see
 12  * linux/thread.h), and is broken up into 3 sections based on the bit map
 13  * of the bits. The 8 MSB is the "upper1" section. The next 8 MSB is the
 14  * "upper2" section and the 14 LSB is the "lower" section.
 15  *
 16  * A trace_pid_list structure holds the "upper1" section, in an
 17  * array of 256 pointers (1 or 2K in size) to "upper_chunk" unions, where
 18  * each has an array of 256 pointers (1 or 2K in size) to the "lower_chunk"
 19  * structures, where each has an array of size 2K bytes representing a bitmask
 20  * of the 14 LSB of the PID (256 * 8 = 2048)
 21  *
 22  * When a trace_pid_list is allocated, it includes the 256 pointer array
 23  * of the upper1 unions. Then a "cache" of upper and lower is allocated
 24  * where these will be assigned as needed.
 25  *
 26  * When a bit is set in the pid_list bitmask, the pid to use has
 27  * the 8 MSB masked, and this is used to index the array in the
 28  * pid_list to find the next upper union. If the element is NULL,
 29  * then one is retrieved from the upper_list cache. If none is
 30  * available, then -ENOMEM is returned.
 31  *
 32  * The next 8 MSB is used to index into the "upper2" section. If this
 33  * element is NULL, then it is retrieved from the lower_list cache.
 34  * Again, if one is not available -ENOMEM is returned.
 35  *
 36  * Finally the 14 LSB of the PID is used to set the bit in the 16384
 37  * bitmask (made up of 2K bytes).
 38  *
 39  * When the second upper section or the lower section has their last
 40  * bit cleared, they are added back to the free list to be reused
 41  * when needed.
 42  */
 43 
 44 #define UPPER_BITS      8
 45 #define UPPER_MAX       (1 << UPPER_BITS)
 46 #define UPPER1_SIZE     (1 << UPPER_BITS)
 47 #define UPPER2_SIZE     (1 << UPPER_BITS)
 48 
 49 #define LOWER_BITS      14
 50 #define LOWER_MAX       (1 << LOWER_BITS)
 51 #define LOWER_SIZE      (LOWER_MAX / BITS_PER_LONG)
 52 
 53 #define UPPER1_SHIFT    (LOWER_BITS + UPPER_BITS)
 54 #define UPPER2_SHIFT    LOWER_BITS
 55 #define LOWER_MASK      (LOWER_MAX - 1)
 56 
 57 #define UPPER_MASK      (UPPER_MAX - 1)
 58 
 59 /* According to linux/thread.h pids can not be bigger than or equal to 1 << 30 */
 60 #define MAX_PID         (1 << 30)
 61 
 62 /* Just keep 6 chunks of both upper and lower in the cache on alloc */
 63 #define CHUNK_ALLOC 6
 64 
 65 /* Have 2 chunks free, trigger a refill of the cache */
 66 #define CHUNK_REALLOC 2
 67 
 68 union lower_chunk {
 69         union lower_chunk               *next;
 70         unsigned long                   data[LOWER_SIZE]; // 2K in size
 71 };
 72 
 73 union upper_chunk {
 74         union upper_chunk               *next;
 75         union lower_chunk               *data[UPPER2_SIZE]; // 1 or 2K in size
 76 };
 77 
 78 struct trace_pid_list {
 79         raw_spinlock_t                  lock;
 80         struct irq_work                 refill_irqwork;
 81         union upper_chunk               *upper[UPPER1_SIZE]; // 1 or 2K in size
 82         union upper_chunk               *upper_list;
 83         union lower_chunk               *lower_list;
 84         int                             free_upper_chunks;
 85         int                             free_lower_chunks;
 86 };
 87 
 88 #endif /* _TRACE_INTERNAL_PID_LIST_H */
 89 

~ [ 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