1 #!/usr/bin/env drgn 2 # SPDX-License-Identifier: GPL-2.0+ 3 # 4 # Dump out the number of RCU callbacks outstan 5 # 6 # On older kernels having multiple flavors of 7 # number of callbacks for the most heavily use 8 # 9 # Usage: sudo drgn rcu-cbs.py 10 # 11 # Copyright (C) 2021 Facebook, Inc. 12 # 13 # Authors: Paul E. McKenney <paulmck@kernel.org 14 15 import sys 16 import drgn 17 from drgn import NULL, Object 18 from drgn.helpers.linux import * 19 20 def get_rdp0(prog): 21 try: 22 rdp0 = prog.variable('rcu_pree 23 except LookupError: 24 rdp0 = NULL; 25 26 if rdp0 == NULL: 27 try: 28 rdp0 = prog.variable(' 29 ' 30 except LookupError: 31 rdp0 = NULL; 32 33 if rdp0 == NULL: 34 rdp0 = prog.variable('rcu_data 35 return rdp0.address_of_(); 36 37 rdp0 = get_rdp0(prog); 38 39 # Sum up RCU callbacks. 40 sum = 0; 41 for cpu in for_each_possible_cpu(prog): 42 rdp = per_cpu_ptr(rdp0, cpu); 43 len = rdp.cblist.len.value_(); 44 # print("CPU " + str(cpu) + " RCU call 45 sum += len; 46 print("Number of RCU callbacks in flight: " +
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.