Home
last modified time | relevance | path

Searched refs:__read_mostly (Results 1 - 25 of 1905) sorted by relevance

12345678910>>...77

/kernel/linux/linux-5.10/arch/x86/kvm/mmu/
H A Dspte.h89 extern u64 __read_mostly shadow_nx_mask;
90 extern u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
91 extern u64 __read_mostly shadow_user_mask;
92 extern u64 __read_mostly shadow_accessed_mask;
93 extern u64 __read_mostly shadow_dirty_mask;
94 extern u64 __read_mostly shadow_mmio_value;
95 extern u64 __read_mostly shadow_mmio_access_mask;
96 extern u64 __read_mostly shadow_present_mask;
97 extern u64 __read_mostly shadow_me_mask;
104 extern u64 __read_mostly shadow_acc_track_mas
[all...]
H A Dspte.c20 u64 __read_mostly shadow_nx_mask;
21 u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
22 u64 __read_mostly shadow_user_mask;
23 u64 __read_mostly shadow_accessed_mask;
24 u64 __read_mostly shadow_dirty_mask;
25 u64 __read_mostly shadow_mmio_value;
26 u64 __read_mostly shadow_mmio_access_mask;
27 u64 __read_mostly shadow_present_mask;
28 u64 __read_mostly shadow_me_mask;
29 u64 __read_mostly shadow_acc_track_mas
[all...]
/kernel/linux/linux-6.6/arch/x86/kvm/mmu/
H A Dspte.c22 bool __read_mostly enable_mmio_caching = true;
27 u64 __read_mostly shadow_host_writable_mask;
28 u64 __read_mostly shadow_mmu_writable_mask;
29 u64 __read_mostly shadow_nx_mask;
30 u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
31 u64 __read_mostly shadow_user_mask;
32 u64 __read_mostly shadow_accessed_mask;
33 u64 __read_mostly shadow_dirty_mask;
34 u64 __read_mostly shadow_mmio_value;
35 u64 __read_mostly shadow_mmio_mas
[all...]
H A Dspte.h152 extern u64 __read_mostly shadow_host_writable_mask;
153 extern u64 __read_mostly shadow_mmu_writable_mask;
154 extern u64 __read_mostly shadow_nx_mask;
155 extern u64 __read_mostly shadow_x_mask; /* mutual exclusive with nx_mask */
156 extern u64 __read_mostly shadow_user_mask;
157 extern u64 __read_mostly shadow_accessed_mask;
158 extern u64 __read_mostly shadow_dirty_mask;
159 extern u64 __read_mostly shadow_mmio_value;
160 extern u64 __read_mostly shadow_mmio_mask;
161 extern u64 __read_mostly shadow_mmio_access_mas
[all...]
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Dpci-dma.c18 static bool disable_dac_quirk __read_mostly; variable
24 int panic_on_overflow __read_mostly = 1; variable
25 int force_iommu __read_mostly = 1; variable
27 int panic_on_overflow __read_mostly = 0; variable
28 int force_iommu __read_mostly = 0; variable
31 int iommu_merge __read_mostly = 0; variable
33 int no_iommu __read_mostly; variable
35 int iommu_detected __read_mostly = 0; variable
/kernel/linux/linux-6.6/arch/x86/kernel/
H A Dpci-dma.c21 static bool disable_dac_quirk __read_mostly; variable
27 int panic_on_overflow __read_mostly = 1; variable
28 int force_iommu __read_mostly = 1; variable
30 int panic_on_overflow __read_mostly = 0; variable
31 int force_iommu __read_mostly = 0; variable
34 int iommu_merge __read_mostly = 0; variable
36 int no_iommu __read_mostly; variable
38 int iommu_detected __read_mostly = 0; variable
/kernel/linux/linux-5.10/arch/x86/kvm/vmx/
H A Dcapabilities.h9 extern bool __read_mostly enable_vpid;
10 extern bool __read_mostly flexpriority_enabled;
11 extern bool __read_mostly enable_ept;
12 extern bool __read_mostly enable_unrestricted_guest;
13 extern bool __read_mostly enable_ept_ad_bits;
14 extern bool __read_mostly enable_pml;
15 extern bool __read_mostly enable_apicv;
16 extern int __read_mostly pt_mode;
/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_nv.c58 static int nv_pad __read_mostly = 10; variable
59 static int nv_pad_buffer __read_mostly = 2; variable
60 static int nv_reset_period __read_mostly = 5; /* in seconds */ variable
61 static int nv_min_cwnd __read_mostly = 2; variable
62 static int nv_cong_dec_mult __read_mostly = 30 * 128 / 100; /* = 30% */ variable
63 static int nv_ssthresh_factor __read_mostly = 8; /* = 1 */ variable
64 static int nv_rtt_factor __read_mostly = 128; /* = 1/2*old + 1/2*new */ variable
65 static int nv_loss_dec_factor __read_mostly = 819; /* => 80% */ variable
66 static int nv_cwnd_growth_rate_neg __read_mostly = 8; variable
67 static int nv_cwnd_growth_rate_pos __read_mostly; /* variable
68 static int nv_dec_eval_min_calls __read_mostly = 60; global() variable
69 static int nv_inc_eval_min_calls __read_mostly = 20; global() variable
70 static int nv_ssthresh_eval_min_calls __read_mostly = 30; global() variable
71 static int nv_stop_rtt_cnt __read_mostly = 10; global() variable
72 static int nv_rtt_min_cnt __read_mostly = 2; global() variable
471 static struct tcp_congestion_ops tcpnv __read_mostly = { global() variable
[all...]
H A Dtcp_cubic.c47 static int fast_convergence __read_mostly = 1; variable
48 static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */ variable
49 static int initial_ssthresh __read_mostly; variable
50 static int bic_scale __read_mostly = 41; variable
51 static int tcp_friendliness __read_mostly = 1; variable
53 static int hystart __read_mostly = 1; variable
54 static int hystart_detect __read_mostly = HYSTART_ACK_TRAIN | HYSTART_DELAY; variable
55 static int hystart_low_window __read_mostly = 16; variable
56 static int hystart_ack_delta_us __read_mostly = 2000; variable
58 static u32 cube_rtt_scale __read_mostly; variable
59 static u32 beta_scale __read_mostly; global() variable
60 static u64 cube_factor __read_mostly; global() variable
483 static struct tcp_congestion_ops cubictcp __read_mostly = { global() variable
[all...]
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_nv.c57 static int nv_pad __read_mostly = 10; variable
58 static int nv_pad_buffer __read_mostly = 2; variable
59 static int nv_reset_period __read_mostly = 5; /* in seconds */ variable
60 static int nv_min_cwnd __read_mostly = 2; variable
61 static int nv_cong_dec_mult __read_mostly = 30 * 128 / 100; /* = 30% */ variable
62 static int nv_ssthresh_factor __read_mostly = 8; /* = 1 */ variable
63 static int nv_rtt_factor __read_mostly = 128; /* = 1/2*old + 1/2*new */ variable
64 static int nv_loss_dec_factor __read_mostly = 819; /* => 80% */ variable
65 static int nv_cwnd_growth_rate_neg __read_mostly = 8; variable
66 static int nv_cwnd_growth_rate_pos __read_mostly; /* variable
67 static int nv_dec_eval_min_calls __read_mostly = 60; global() variable
68 static int nv_inc_eval_min_calls __read_mostly = 20; global() variable
69 static int nv_ssthresh_eval_min_calls __read_mostly = 30; global() variable
70 static int nv_stop_rtt_cnt __read_mostly = 10; global() variable
71 static int nv_rtt_min_cnt __read_mostly = 2; global() variable
470 static struct tcp_congestion_ops tcpnv __read_mostly = { global() variable
[all...]
H A Dtcp_cubic.c49 static int fast_convergence __read_mostly = 1; variable
50 static int beta __read_mostly = 717; /* = 717/1024 (BICTCP_BETA_SCALE) */ variable
51 static int initial_ssthresh __read_mostly; variable
52 static int bic_scale __read_mostly = 41; variable
53 static int tcp_friendliness __read_mostly = 1; variable
55 static int hystart __read_mostly = 1; variable
56 static int hystart_detect __read_mostly = HYSTART_ACK_TRAIN | HYSTART_DELAY; variable
57 static int hystart_low_window __read_mostly = 16; variable
58 static int hystart_ack_delta_us __read_mostly = 2000; variable
60 static u32 cube_rtt_scale __read_mostly; variable
61 static u32 beta_scale __read_mostly; global() variable
62 static u64 cube_factor __read_mostly; global() variable
476 static struct tcp_congestion_ops cubictcp __read_mostly = { global() variable
[all...]
/kernel/linux/linux-5.10/drivers/cpuidle/governors/
H A Dhaltpoll.c23 static unsigned int guest_halt_poll_ns __read_mostly = 200000; variable
27 static unsigned int guest_halt_poll_shrink __read_mostly = 2; variable
31 static unsigned int guest_halt_poll_grow __read_mostly = 2; variable
35 static unsigned int guest_halt_poll_grow_start __read_mostly = 50000; variable
39 static bool guest_halt_poll_allow_shrink __read_mostly = true; variable
/kernel/linux/linux-6.6/drivers/cpuidle/governors/
H A Dhaltpoll.c24 static unsigned int guest_halt_poll_ns __read_mostly = 200000; variable
28 static unsigned int guest_halt_poll_shrink __read_mostly = 2; variable
32 static unsigned int guest_halt_poll_grow __read_mostly = 2; variable
36 static unsigned int guest_halt_poll_grow_start __read_mostly = 50000; variable
40 static bool guest_halt_poll_allow_shrink __read_mostly = true; variable
/kernel/linux/linux-6.6/mm/damon/
H A Dreclaim.c30 static bool enabled __read_mostly; variable
41 static bool commit_inputs __read_mostly; variable
50 static unsigned long min_age __read_mostly = 120000000; variable
89 static unsigned long monitor_region_start __read_mostly; variable
98 static unsigned long monitor_region_end __read_mostly; variable
107 static bool skip_anon __read_mostly; variable
116 static int kdamond_pid __read_mostly = -1; variable
/kernel/linux/linux-6.6/arch/x86/kvm/vmx/
H A Dcapabilities.h12 extern bool __read_mostly enable_vpid;
13 extern bool __read_mostly flexpriority_enabled;
14 extern bool __read_mostly enable_ept;
15 extern bool __read_mostly enable_unrestricted_guest;
16 extern bool __read_mostly enable_ept_ad_bits;
17 extern bool __read_mostly enable_pml;
18 extern bool __read_mostly enable_ipiv;
19 extern int __read_mostly pt_mode;
/kernel/linux/linux-5.10/kernel/
H A Dwatchdog.c41 unsigned long __read_mostly watchdog_enabled;
42 int __read_mostly watchdog_user_enabled = 1;
43 int __read_mostly nmi_watchdog_user_enabled = NMI_WATCHDOG_DEFAULT;
44 int __read_mostly soft_watchdog_user_enabled = 1;
45 int __read_mostly watchdog_thresh = 10;
46 static int __read_mostly nmi_watchdog_available;
48 struct cpumask watchdog_cpumask __read_mostly; variable
54 int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
60 unsigned int __read_mostly hardlockup_panic =
161 int __read_mostly sysctl_softlockup_all_cpu_backtrac
164 static struct cpumask watchdog_allowed_mask __read_mostly; global() variable
170 static bool softlockup_initialized __read_mostly; global() variable
[all...]
H A Dhung_task.c34 int __read_mostly sysctl_hung_task_check_count = PID_MAX_LIMIT;
48 unsigned long __read_mostly sysctl_hung_task_timeout_secs = CONFIG_DEFAULT_HUNG_TASK_TIMEOUT;
53 unsigned long __read_mostly sysctl_hung_task_check_interval_secs;
55 int __read_mostly sysctl_hung_task_warnings = 10;
57 static int __read_mostly did_panic;
71 unsigned int __read_mostly sysctl_hung_task_all_cpu_backtrace;
78 unsigned int __read_mostly sysctl_hung_task_panic =
/kernel/linux/linux-6.6/kernel/
H A Dwatchdog.c39 unsigned long __read_mostly watchdog_enabled;
40 int __read_mostly watchdog_user_enabled = 1;
41 static int __read_mostly watchdog_hardlockup_user_enabled = WATCHDOG_HARDLOCKUP_DEFAULT;
42 static int __read_mostly watchdog_softlockup_user_enabled = 1;
43 int __read_mostly watchdog_thresh = 10;
44 static int __read_mostly watchdog_hardlockup_available;
46 struct cpumask watchdog_cpumask __read_mostly; variable
52 int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
58 unsigned int __read_mostly hardlockup_panic =
267 int __read_mostly sysctl_softlockup_all_cpu_backtrac
270 static struct cpumask watchdog_allowed_mask __read_mostly; global() variable
276 static bool softlockup_initialized __read_mostly; global() variable
[all...]
H A Dhung_task.c35 int __read_mostly sysctl_hung_task_check_count = PID_MAX_LIMIT;
49 unsigned long __read_mostly sysctl_hung_task_timeout_secs = CONFIG_DEFAULT_HUNG_TASK_TIMEOUT;
54 unsigned long __read_mostly sysctl_hung_task_check_interval_secs;
56 int __read_mostly sysctl_hung_task_warnings = 10;
58 static int __read_mostly did_panic;
72 static unsigned int __read_mostly sysctl_hung_task_all_cpu_backtrace;
81 unsigned int __read_mostly sysctl_hung_task_panic =
/kernel/linux/linux-5.10/drivers/video/fbdev/core/
H A Dfbcmap.c20 static u16 red2[] __read_mostly = { variable
23 static u16 green2[] __read_mostly = { variable
26 static u16 blue2[] __read_mostly = { variable
30 static u16 red4[] __read_mostly = { variable
33 static u16 green4[] __read_mostly = { variable
36 static u16 blue4[] __read_mostly = { variable
40 static u16 red8[] __read_mostly = { variable
43 static u16 green8[] __read_mostly = { variable
46 static u16 blue8[] __read_mostly = { variable
50 static u16 red16[] __read_mostly variable
54 static u16 green16[] __read_mostly = { global() variable
58 static u16 blue16[] __read_mostly = { global() variable
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/core/
H A Dfbcmap.c20 static u16 red2[] __read_mostly = { variable
23 static u16 green2[] __read_mostly = { variable
26 static u16 blue2[] __read_mostly = { variable
30 static u16 red4[] __read_mostly = { variable
33 static u16 green4[] __read_mostly = { variable
36 static u16 blue4[] __read_mostly = { variable
40 static u16 red8[] __read_mostly = { variable
43 static u16 green8[] __read_mostly = { variable
46 static u16 blue8[] __read_mostly = { variable
50 static u16 red16[] __read_mostly variable
54 static u16 green16[] __read_mostly = { global() variable
58 static u16 blue16[] __read_mostly = { global() variable
[all...]
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Dpci-dma.c17 int no_iommu __read_mostly; variable
19 int force_iommu __read_mostly = 1; variable
21 int force_iommu __read_mostly; variable
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Dpci-dma.c17 int no_iommu __read_mostly; variable
19 int force_iommu __read_mostly = 1; variable
21 int force_iommu __read_mostly; variable
/kernel/linux/linux-6.6/arch/powerpc/lib/
H A Dqspinlock.c29 static int steal_spins __read_mostly = (1 << 5); variable
30 static int remote_steal_spins __read_mostly = (1 << 2); variable
34 static bool maybe_stealers __read_mostly = true; variable
36 static int head_spins __read_mostly = (1 << 8); variable
38 static bool pv_yield_owner __read_mostly = true; variable
39 static bool pv_yield_allow_steal __read_mostly = false; variable
40 static bool pv_spin_on_preempted_owner __read_mostly = false; variable
41 static bool pv_sleepy_lock __read_mostly = true; variable
42 static bool pv_sleepy_lock_sticky __read_mostly = false; variable
43 static u64 pv_sleepy_lock_interval_ns __read_mostly variable
44 static int pv_sleepy_lock_factor __read_mostly = 256; global() variable
45 static bool pv_yield_prev __read_mostly = true; global() variable
46 static bool pv_yield_propagate_owner __read_mostly = true; global() variable
47 static bool pv_prod_head __read_mostly = false; global() variable
[all...]
/kernel/linux/linux-6.6/kernel/rcu/
H A Dupdate.c227 static bool rcu_boot_ended __read_mostly; variable
541 int rcu_cpu_stall_ftrace_dump __read_mostly; variable
543 int rcu_cpu_stall_suppress __read_mostly; // !0 = suppress stall warnings. variable
546 int rcu_cpu_stall_timeout __read_mostly = CONFIG_RCU_CPU_STALL_TIMEOUT; variable
548 int rcu_exp_cpu_stall_timeout __read_mostly = CONFIG_RCU_EXP_CPU_STALL_TIMEOUT; variable
550 int rcu_cpu_stall_cputime __read_mostly = IS_ENABLED(CONFIG_RCU_CPU_STALL_CPUTIME); variable
552 bool rcu_exp_stall_task_details __read_mostly; variable
558 int rcu_cpu_stall_suppress_at_boot __read_mostly; // !0 = suppress boot stalls. variable

Completed in 14 milliseconds

12345678910>>...77