diff options
Diffstat (limited to 'kernel')
46 files changed, 2854 insertions, 2704 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 982c50e2ce53..864ff75d65f2 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | obj-y = sched.o fork.o exec_domain.o panic.o printk.o \ | 5 | obj-y = sched.o fork.o exec_domain.o panic.o printk.o \ |
6 | cpu.o exit.o itimer.o time.o softirq.o resource.o \ | 6 | cpu.o exit.o itimer.o time.o softirq.o resource.o \ |
7 | sysctl.o capability.o ptrace.o timer.o user.o \ | 7 | sysctl.o sysctl_binary.o capability.o ptrace.o timer.o user.o \ |
8 | signal.o sys.o kmod.o workqueue.o pid.o \ | 8 | signal.o sys.o kmod.o workqueue.o pid.o \ |
9 | rcupdate.o extable.o params.o posix-timers.o \ | 9 | rcupdate.o extable.o params.o posix-timers.o \ |
10 | kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o mutex.o \ | 10 | kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o mutex.o \ |
@@ -99,6 +99,7 @@ obj-$(CONFIG_SLOW_WORK) += slow-work.o | |||
99 | obj-$(CONFIG_SLOW_WORK_DEBUG) += slow-work-debugfs.o | 99 | obj-$(CONFIG_SLOW_WORK_DEBUG) += slow-work-debugfs.o |
100 | obj-$(CONFIG_PERF_EVENTS) += perf_event.o | 100 | obj-$(CONFIG_PERF_EVENTS) += perf_event.o |
101 | obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o | 101 | obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o |
102 | obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o | ||
102 | 103 | ||
103 | ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y) | 104 | ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y) |
104 | # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is | 105 | # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is |
diff --git a/kernel/cpu.c b/kernel/cpu.c index b21688640377..291ac586f37f 100644 --- a/kernel/cpu.c +++ b/kernel/cpu.c | |||
@@ -400,10 +400,9 @@ int disable_nonboot_cpus(void) | |||
400 | if (cpu == first_cpu) | 400 | if (cpu == first_cpu) |
401 | continue; | 401 | continue; |
402 | error = _cpu_down(cpu, 1); | 402 | error = _cpu_down(cpu, 1); |
403 | if (!error) { | 403 | if (!error) |
404 | cpumask_set_cpu(cpu, frozen_cpus); | 404 | cpumask_set_cpu(cpu, frozen_cpus); |
405 | printk("CPU%d is down\n", cpu); | 405 | else { |
406 | } else { | ||
407 | printk(KERN_ERR "Error taking CPU%d down: %d\n", | 406 | printk(KERN_ERR "Error taking CPU%d down: %d\n", |
408 | cpu, error); | 407 | cpu, error); |
409 | break; | 408 | break; |
diff --git a/kernel/exit.c b/kernel/exit.c index 80ae941cfd2e..6f50ef55a6f3 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -971,7 +971,7 @@ NORET_TYPE void do_exit(long code) | |||
971 | exit_thread(); | 971 | exit_thread(); |
972 | cgroup_exit(tsk, 1); | 972 | cgroup_exit(tsk, 1); |
973 | 973 | ||
974 | if (group_dead && tsk->signal->leader) | 974 | if (group_dead) |
975 | disassociate_ctty(1); | 975 | disassociate_ctty(1); |
976 | 976 | ||
977 | module_put(task_thread_info(tsk)->exec_domain->module); | 977 | module_put(task_thread_info(tsk)->exec_domain->module); |
@@ -1009,7 +1009,7 @@ NORET_TYPE void do_exit(long code) | |||
1009 | tsk->flags |= PF_EXITPIDONE; | 1009 | tsk->flags |= PF_EXITPIDONE; |
1010 | 1010 | ||
1011 | if (tsk->io_context) | 1011 | if (tsk->io_context) |
1012 | exit_io_context(); | 1012 | exit_io_context(tsk); |
1013 | 1013 | ||
1014 | if (tsk->splice_pipe) | 1014 | if (tsk->splice_pipe) |
1015 | __free_pipe_info(tsk->splice_pipe); | 1015 | __free_pipe_info(tsk->splice_pipe); |
diff --git a/kernel/fork.c b/kernel/fork.c index 3d6f121bbe8a..1415dc4598ae 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -64,6 +64,7 @@ | |||
64 | #include <linux/magic.h> | 64 | #include <linux/magic.h> |
65 | #include <linux/perf_event.h> | 65 | #include <linux/perf_event.h> |
66 | #include <linux/posix-timers.h> | 66 | #include <linux/posix-timers.h> |
67 | #include <linux/user-return-notifier.h> | ||
67 | 68 | ||
68 | #include <asm/pgtable.h> | 69 | #include <asm/pgtable.h> |
69 | #include <asm/pgalloc.h> | 70 | #include <asm/pgalloc.h> |
@@ -249,6 +250,7 @@ static struct task_struct *dup_task_struct(struct task_struct *orig) | |||
249 | goto out; | 250 | goto out; |
250 | 251 | ||
251 | setup_thread_stack(tsk, orig); | 252 | setup_thread_stack(tsk, orig); |
253 | clear_user_return_notifier(tsk); | ||
252 | stackend = end_of_stack(tsk); | 254 | stackend = end_of_stack(tsk); |
253 | *stackend = STACK_END_MAGIC; /* for overflow detection */ | 255 | *stackend = STACK_END_MAGIC; /* for overflow detection */ |
254 | 256 | ||
@@ -1315,7 +1317,8 @@ bad_fork_free_pid: | |||
1315 | if (pid != &init_struct_pid) | 1317 | if (pid != &init_struct_pid) |
1316 | free_pid(pid); | 1318 | free_pid(pid); |
1317 | bad_fork_cleanup_io: | 1319 | bad_fork_cleanup_io: |
1318 | put_io_context(p->io_context); | 1320 | if (p->io_context) |
1321 | exit_io_context(p); | ||
1319 | bad_fork_cleanup_namespaces: | 1322 | bad_fork_cleanup_namespaces: |
1320 | exit_task_namespaces(p); | 1323 | exit_task_namespaces(p); |
1321 | bad_fork_cleanup_mm: | 1324 | bad_fork_cleanup_mm: |
diff --git a/kernel/futex.c b/kernel/futex.c index fb65e822fc41..d73ef1f3e55d 100644 --- a/kernel/futex.c +++ b/kernel/futex.c | |||
@@ -304,8 +304,14 @@ void put_futex_key(int fshared, union futex_key *key) | |||
304 | */ | 304 | */ |
305 | static int fault_in_user_writeable(u32 __user *uaddr) | 305 | static int fault_in_user_writeable(u32 __user *uaddr) |
306 | { | 306 | { |
307 | int ret = get_user_pages(current, current->mm, (unsigned long)uaddr, | 307 | struct mm_struct *mm = current->mm; |
308 | 1, 1, 0, NULL, NULL); | 308 | int ret; |
309 | |||
310 | down_read(&mm->mmap_sem); | ||
311 | ret = get_user_pages(current, mm, (unsigned long)uaddr, | ||
312 | 1, 1, 0, NULL, NULL); | ||
313 | up_read(&mm->mmap_sem); | ||
314 | |||
309 | return ret < 0 ? ret : 0; | 315 | return ret < 0 ? ret : 0; |
310 | } | 316 | } |
311 | 317 | ||
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c index 3e1c36e7998f..d2f9239dc6ba 100644 --- a/kernel/hrtimer.c +++ b/kernel/hrtimer.c | |||
@@ -557,7 +557,7 @@ hrtimer_force_reprogram(struct hrtimer_cpu_base *cpu_base, int skip_equal) | |||
557 | static int hrtimer_reprogram(struct hrtimer *timer, | 557 | static int hrtimer_reprogram(struct hrtimer *timer, |
558 | struct hrtimer_clock_base *base) | 558 | struct hrtimer_clock_base *base) |
559 | { | 559 | { |
560 | ktime_t *expires_next = &__get_cpu_var(hrtimer_bases).expires_next; | 560 | struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); |
561 | ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset); | 561 | ktime_t expires = ktime_sub(hrtimer_get_expires(timer), base->offset); |
562 | int res; | 562 | int res; |
563 | 563 | ||
@@ -582,7 +582,16 @@ static int hrtimer_reprogram(struct hrtimer *timer, | |||
582 | if (expires.tv64 < 0) | 582 | if (expires.tv64 < 0) |
583 | return -ETIME; | 583 | return -ETIME; |
584 | 584 | ||
585 | if (expires.tv64 >= expires_next->tv64) | 585 | if (expires.tv64 >= cpu_base->expires_next.tv64) |
586 | return 0; | ||
587 | |||
588 | /* | ||
589 | * If a hang was detected in the last timer interrupt then we | ||
590 | * do not schedule a timer which is earlier than the expiry | ||
591 | * which we enforced in the hang detection. We want the system | ||
592 | * to make progress. | ||
593 | */ | ||
594 | if (cpu_base->hang_detected) | ||
586 | return 0; | 595 | return 0; |
587 | 596 | ||
588 | /* | 597 | /* |
@@ -590,7 +599,7 @@ static int hrtimer_reprogram(struct hrtimer *timer, | |||
590 | */ | 599 | */ |
591 | res = tick_program_event(expires, 0); | 600 | res = tick_program_event(expires, 0); |
592 | if (!IS_ERR_VALUE(res)) | 601 | if (!IS_ERR_VALUE(res)) |
593 | *expires_next = expires; | 602 | cpu_base->expires_next = expires; |
594 | return res; | 603 | return res; |
595 | } | 604 | } |
596 | 605 | ||
@@ -747,17 +756,33 @@ static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { } | |||
747 | 756 | ||
748 | #endif /* CONFIG_HIGH_RES_TIMERS */ | 757 | #endif /* CONFIG_HIGH_RES_TIMERS */ |
749 | 758 | ||
750 | #ifdef CONFIG_TIMER_STATS | 759 | static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer) |
751 | void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer, void *addr) | ||
752 | { | 760 | { |
761 | #ifdef CONFIG_TIMER_STATS | ||
753 | if (timer->start_site) | 762 | if (timer->start_site) |
754 | return; | 763 | return; |
755 | 764 | timer->start_site = __builtin_return_address(0); | |
756 | timer->start_site = addr; | ||
757 | memcpy(timer->start_comm, current->comm, TASK_COMM_LEN); | 765 | memcpy(timer->start_comm, current->comm, TASK_COMM_LEN); |
758 | timer->start_pid = current->pid; | 766 | timer->start_pid = current->pid; |
767 | #endif | ||
759 | } | 768 | } |
769 | |||
770 | static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer) | ||
771 | { | ||
772 | #ifdef CONFIG_TIMER_STATS | ||
773 | timer->start_site = NULL; | ||
774 | #endif | ||
775 | } | ||
776 | |||
777 | static inline void timer_stats_account_hrtimer(struct hrtimer *timer) | ||
778 | { | ||
779 | #ifdef CONFIG_TIMER_STATS | ||
780 | if (likely(!timer_stats_active)) | ||
781 | return; | ||
782 | timer_stats_update_stats(timer, timer->start_pid, timer->start_site, | ||
783 | timer->function, timer->start_comm, 0); | ||
760 | #endif | 784 | #endif |
785 | } | ||
761 | 786 | ||
762 | /* | 787 | /* |
763 | * Counterpart to lock_hrtimer_base above: | 788 | * Counterpart to lock_hrtimer_base above: |
@@ -1217,29 +1242,6 @@ static void __run_hrtimer(struct hrtimer *timer, ktime_t *now) | |||
1217 | 1242 | ||
1218 | #ifdef CONFIG_HIGH_RES_TIMERS | 1243 | #ifdef CONFIG_HIGH_RES_TIMERS |
1219 | 1244 | ||
1220 | static int force_clock_reprogram; | ||
1221 | |||
1222 | /* | ||
1223 | * After 5 iteration's attempts, we consider that hrtimer_interrupt() | ||
1224 | * is hanging, which could happen with something that slows the interrupt | ||
1225 | * such as the tracing. Then we force the clock reprogramming for each future | ||
1226 | * hrtimer interrupts to avoid infinite loops and use the min_delta_ns | ||
1227 | * threshold that we will overwrite. | ||
1228 | * The next tick event will be scheduled to 3 times we currently spend on | ||
1229 | * hrtimer_interrupt(). This gives a good compromise, the cpus will spend | ||
1230 | * 1/4 of their time to process the hrtimer interrupts. This is enough to | ||
1231 | * let it running without serious starvation. | ||
1232 | */ | ||
1233 | |||
1234 | static inline void | ||
1235 | hrtimer_interrupt_hanging(struct clock_event_device *dev, | ||
1236 | ktime_t try_time) | ||
1237 | { | ||
1238 | force_clock_reprogram = 1; | ||
1239 | dev->min_delta_ns = (unsigned long)try_time.tv64 * 3; | ||
1240 | printk(KERN_WARNING "hrtimer: interrupt too slow, " | ||
1241 | "forcing clock min delta to %lu ns\n", dev->min_delta_ns); | ||
1242 | } | ||
1243 | /* | 1245 | /* |
1244 | * High resolution timer interrupt | 1246 | * High resolution timer interrupt |
1245 | * Called with interrupts disabled | 1247 | * Called with interrupts disabled |
@@ -1248,21 +1250,15 @@ void hrtimer_interrupt(struct clock_event_device *dev) | |||
1248 | { | 1250 | { |
1249 | struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); | 1251 | struct hrtimer_cpu_base *cpu_base = &__get_cpu_var(hrtimer_bases); |
1250 | struct hrtimer_clock_base *base; | 1252 | struct hrtimer_clock_base *base; |
1251 | ktime_t expires_next, now; | 1253 | ktime_t expires_next, now, entry_time, delta; |
1252 | int nr_retries = 0; | 1254 | int i, retries = 0; |
1253 | int i; | ||
1254 | 1255 | ||
1255 | BUG_ON(!cpu_base->hres_active); | 1256 | BUG_ON(!cpu_base->hres_active); |
1256 | cpu_base->nr_events++; | 1257 | cpu_base->nr_events++; |
1257 | dev->next_event.tv64 = KTIME_MAX; | 1258 | dev->next_event.tv64 = KTIME_MAX; |
1258 | 1259 | ||
1259 | retry: | 1260 | entry_time = now = ktime_get(); |
1260 | /* 5 retries is enough to notice a hang */ | 1261 | retry: |
1261 | if (!(++nr_retries % 5)) | ||
1262 | hrtimer_interrupt_hanging(dev, ktime_sub(ktime_get(), now)); | ||
1263 | |||
1264 | now = ktime_get(); | ||
1265 | |||
1266 | expires_next.tv64 = KTIME_MAX; | 1262 | expires_next.tv64 = KTIME_MAX; |
1267 | 1263 | ||
1268 | spin_lock(&cpu_base->lock); | 1264 | spin_lock(&cpu_base->lock); |
@@ -1324,10 +1320,48 @@ void hrtimer_interrupt(struct clock_event_device *dev) | |||
1324 | spin_unlock(&cpu_base->lock); | 1320 | spin_unlock(&cpu_base->lock); |
1325 | 1321 | ||
1326 | /* Reprogramming necessary ? */ | 1322 | /* Reprogramming necessary ? */ |
1327 | if (expires_next.tv64 != KTIME_MAX) { | 1323 | if (expires_next.tv64 == KTIME_MAX || |
1328 | if (tick_program_event(expires_next, force_clock_reprogram)) | 1324 | !tick_program_event(expires_next, 0)) { |
1329 | goto retry; | 1325 | cpu_base->hang_detected = 0; |
1326 | return; | ||
1330 | } | 1327 | } |
1328 | |||
1329 | /* | ||
1330 | * The next timer was already expired due to: | ||
1331 | * - tracing | ||
1332 | * - long lasting callbacks | ||
1333 | * - being scheduled away when running in a VM | ||
1334 | * | ||
1335 | * We need to prevent that we loop forever in the hrtimer | ||
1336 | * interrupt routine. We give it 3 attempts to avoid | ||
1337 | * overreacting on some spurious event. | ||
1338 | */ | ||
1339 | now = ktime_get(); | ||
1340 | cpu_base->nr_retries++; | ||
1341 | if (++retries < 3) | ||
1342 | goto retry; | ||
1343 | /* | ||
1344 | * Give the system a chance to do something else than looping | ||
1345 | * here. We stored the entry time, so we know exactly how long | ||
1346 | * we spent here. We schedule the next event this amount of | ||
1347 | * time away. | ||
1348 | */ | ||
1349 | cpu_base->nr_hangs++; | ||
1350 | cpu_base->hang_detected = 1; | ||
1351 | delta = ktime_sub(now, entry_time); | ||
1352 | if (delta.tv64 > cpu_base->max_hang_time.tv64) | ||
1353 | cpu_base->max_hang_time = delta; | ||
1354 | /* | ||
1355 | * Limit it to a sensible value as we enforce a longer | ||
1356 | * delay. Give the CPU at least 100ms to catch up. | ||
1357 | */ | ||
1358 | if (delta.tv64 > 100 * NSEC_PER_MSEC) | ||
1359 | expires_next = ktime_add_ns(now, 100 * NSEC_PER_MSEC); | ||
1360 | else | ||
1361 | expires_next = ktime_add(now, delta); | ||
1362 | tick_program_event(expires_next, 1); | ||
1363 | printk_once(KERN_WARNING "hrtimer: interrupt took %llu ns\n", | ||
1364 | ktime_to_ns(delta)); | ||
1331 | } | 1365 | } |
1332 | 1366 | ||
1333 | /* | 1367 | /* |
diff --git a/kernel/hw_breakpoint.c b/kernel/hw_breakpoint.c index cf5ee1628411..366eedf949c0 100644 --- a/kernel/hw_breakpoint.c +++ b/kernel/hw_breakpoint.c | |||
@@ -52,7 +52,7 @@ | |||
52 | static DEFINE_PER_CPU(unsigned int, nr_cpu_bp_pinned); | 52 | static DEFINE_PER_CPU(unsigned int, nr_cpu_bp_pinned); |
53 | 53 | ||
54 | /* Number of pinned task breakpoints in a cpu */ | 54 | /* Number of pinned task breakpoints in a cpu */ |
55 | static DEFINE_PER_CPU(unsigned int, task_bp_pinned[HBP_NUM]); | 55 | static DEFINE_PER_CPU(unsigned int, nr_task_bp_pinned[HBP_NUM]); |
56 | 56 | ||
57 | /* Number of non-pinned cpu/task breakpoints in a cpu */ | 57 | /* Number of non-pinned cpu/task breakpoints in a cpu */ |
58 | static DEFINE_PER_CPU(unsigned int, nr_bp_flexible); | 58 | static DEFINE_PER_CPU(unsigned int, nr_bp_flexible); |
@@ -73,7 +73,7 @@ static DEFINE_MUTEX(nr_bp_mutex); | |||
73 | static unsigned int max_task_bp_pinned(int cpu) | 73 | static unsigned int max_task_bp_pinned(int cpu) |
74 | { | 74 | { |
75 | int i; | 75 | int i; |
76 | unsigned int *tsk_pinned = per_cpu(task_bp_pinned, cpu); | 76 | unsigned int *tsk_pinned = per_cpu(nr_task_bp_pinned, cpu); |
77 | 77 | ||
78 | for (i = HBP_NUM -1; i >= 0; i--) { | 78 | for (i = HBP_NUM -1; i >= 0; i--) { |
79 | if (tsk_pinned[i] > 0) | 79 | if (tsk_pinned[i] > 0) |
@@ -83,15 +83,51 @@ static unsigned int max_task_bp_pinned(int cpu) | |||
83 | return 0; | 83 | return 0; |
84 | } | 84 | } |
85 | 85 | ||
86 | static int task_bp_pinned(struct task_struct *tsk) | ||
87 | { | ||
88 | struct perf_event_context *ctx = tsk->perf_event_ctxp; | ||
89 | struct list_head *list; | ||
90 | struct perf_event *bp; | ||
91 | unsigned long flags; | ||
92 | int count = 0; | ||
93 | |||
94 | if (WARN_ONCE(!ctx, "No perf context for this task")) | ||
95 | return 0; | ||
96 | |||
97 | list = &ctx->event_list; | ||
98 | |||
99 | spin_lock_irqsave(&ctx->lock, flags); | ||
100 | |||
101 | /* | ||
102 | * The current breakpoint counter is not included in the list | ||
103 | * at the open() callback time | ||
104 | */ | ||
105 | list_for_each_entry(bp, list, event_entry) { | ||
106 | if (bp->attr.type == PERF_TYPE_BREAKPOINT) | ||
107 | count++; | ||
108 | } | ||
109 | |||
110 | spin_unlock_irqrestore(&ctx->lock, flags); | ||
111 | |||
112 | return count; | ||
113 | } | ||
114 | |||
86 | /* | 115 | /* |
87 | * Report the number of pinned/un-pinned breakpoints we have in | 116 | * Report the number of pinned/un-pinned breakpoints we have in |
88 | * a given cpu (cpu > -1) or in all of them (cpu = -1). | 117 | * a given cpu (cpu > -1) or in all of them (cpu = -1). |
89 | */ | 118 | */ |
90 | static void fetch_bp_busy_slots(struct bp_busy_slots *slots, int cpu) | 119 | static void |
120 | fetch_bp_busy_slots(struct bp_busy_slots *slots, struct perf_event *bp) | ||
91 | { | 121 | { |
122 | int cpu = bp->cpu; | ||
123 | struct task_struct *tsk = bp->ctx->task; | ||
124 | |||
92 | if (cpu >= 0) { | 125 | if (cpu >= 0) { |
93 | slots->pinned = per_cpu(nr_cpu_bp_pinned, cpu); | 126 | slots->pinned = per_cpu(nr_cpu_bp_pinned, cpu); |
94 | slots->pinned += max_task_bp_pinned(cpu); | 127 | if (!tsk) |
128 | slots->pinned += max_task_bp_pinned(cpu); | ||
129 | else | ||
130 | slots->pinned += task_bp_pinned(tsk); | ||
95 | slots->flexible = per_cpu(nr_bp_flexible, cpu); | 131 | slots->flexible = per_cpu(nr_bp_flexible, cpu); |
96 | 132 | ||
97 | return; | 133 | return; |
@@ -101,7 +137,10 @@ static void fetch_bp_busy_slots(struct bp_busy_slots *slots, int cpu) | |||
101 | unsigned int nr; | 137 | unsigned int nr; |
102 | 138 | ||
103 | nr = per_cpu(nr_cpu_bp_pinned, cpu); | 139 | nr = per_cpu(nr_cpu_bp_pinned, cpu); |
104 | nr += max_task_bp_pinned(cpu); | 140 | if (!tsk) |
141 | nr += max_task_bp_pinned(cpu); | ||
142 | else | ||
143 | nr += task_bp_pinned(tsk); | ||
105 | 144 | ||
106 | if (nr > slots->pinned) | 145 | if (nr > slots->pinned) |
107 | slots->pinned = nr; | 146 | slots->pinned = nr; |
@@ -118,35 +157,12 @@ static void fetch_bp_busy_slots(struct bp_busy_slots *slots, int cpu) | |||
118 | */ | 157 | */ |
119 | static void toggle_bp_task_slot(struct task_struct *tsk, int cpu, bool enable) | 158 | static void toggle_bp_task_slot(struct task_struct *tsk, int cpu, bool enable) |
120 | { | 159 | { |
121 | int count = 0; | ||
122 | struct perf_event *bp; | ||
123 | struct perf_event_context *ctx = tsk->perf_event_ctxp; | ||
124 | unsigned int *tsk_pinned; | 160 | unsigned int *tsk_pinned; |
125 | struct list_head *list; | 161 | int count = 0; |
126 | unsigned long flags; | ||
127 | |||
128 | if (WARN_ONCE(!ctx, "No perf context for this task")) | ||
129 | return; | ||
130 | |||
131 | list = &ctx->event_list; | ||
132 | |||
133 | spin_lock_irqsave(&ctx->lock, flags); | ||
134 | |||
135 | /* | ||
136 | * The current breakpoint counter is not included in the list | ||
137 | * at the open() callback time | ||
138 | */ | ||
139 | list_for_each_entry(bp, list, event_entry) { | ||
140 | if (bp->attr.type == PERF_TYPE_BREAKPOINT) | ||
141 | count++; | ||
142 | } | ||
143 | 162 | ||
144 | spin_unlock_irqrestore(&ctx->lock, flags); | 163 | count = task_bp_pinned(tsk); |
145 | 164 | ||
146 | if (WARN_ONCE(count < 0, "No breakpoint counter found in the counter list")) | 165 | tsk_pinned = per_cpu(nr_task_bp_pinned, cpu); |
147 | return; | ||
148 | |||
149 | tsk_pinned = per_cpu(task_bp_pinned, cpu); | ||
150 | if (enable) { | 166 | if (enable) { |
151 | tsk_pinned[count]++; | 167 | tsk_pinned[count]++; |
152 | if (count > 0) | 168 | if (count > 0) |
@@ -193,7 +209,7 @@ static void toggle_bp_slot(struct perf_event *bp, bool enable) | |||
193 | * - If attached to a single cpu, check: | 209 | * - If attached to a single cpu, check: |
194 | * | 210 | * |
195 | * (per_cpu(nr_bp_flexible, cpu) || (per_cpu(nr_cpu_bp_pinned, cpu) | 211 | * (per_cpu(nr_bp_flexible, cpu) || (per_cpu(nr_cpu_bp_pinned, cpu) |
196 | * + max(per_cpu(task_bp_pinned, cpu)))) < HBP_NUM | 212 | * + max(per_cpu(nr_task_bp_pinned, cpu)))) < HBP_NUM |
197 | * | 213 | * |
198 | * -> If there are already non-pinned counters in this cpu, it means | 214 | * -> If there are already non-pinned counters in this cpu, it means |
199 | * there is already a free slot for them. | 215 | * there is already a free slot for them. |
@@ -204,7 +220,7 @@ static void toggle_bp_slot(struct perf_event *bp, bool enable) | |||
204 | * - If attached to every cpus, check: | 220 | * - If attached to every cpus, check: |
205 | * | 221 | * |
206 | * (per_cpu(nr_bp_flexible, *) || (max(per_cpu(nr_cpu_bp_pinned, *)) | 222 | * (per_cpu(nr_bp_flexible, *) || (max(per_cpu(nr_cpu_bp_pinned, *)) |
207 | * + max(per_cpu(task_bp_pinned, *)))) < HBP_NUM | 223 | * + max(per_cpu(nr_task_bp_pinned, *)))) < HBP_NUM |
208 | * | 224 | * |
209 | * -> This is roughly the same, except we check the number of per cpu | 225 | * -> This is roughly the same, except we check the number of per cpu |
210 | * bp for every cpu and we keep the max one. Same for the per tasks | 226 | * bp for every cpu and we keep the max one. Same for the per tasks |
@@ -216,7 +232,7 @@ static void toggle_bp_slot(struct perf_event *bp, bool enable) | |||
216 | * - If attached to a single cpu, check: | 232 | * - If attached to a single cpu, check: |
217 | * | 233 | * |
218 | * ((per_cpu(nr_bp_flexible, cpu) > 1) + per_cpu(nr_cpu_bp_pinned, cpu) | 234 | * ((per_cpu(nr_bp_flexible, cpu) > 1) + per_cpu(nr_cpu_bp_pinned, cpu) |
219 | * + max(per_cpu(task_bp_pinned, cpu))) < HBP_NUM | 235 | * + max(per_cpu(nr_task_bp_pinned, cpu))) < HBP_NUM |
220 | * | 236 | * |
221 | * -> Same checks as before. But now the nr_bp_flexible, if any, must keep | 237 | * -> Same checks as before. But now the nr_bp_flexible, if any, must keep |
222 | * one register at least (or they will never be fed). | 238 | * one register at least (or they will never be fed). |
@@ -224,7 +240,7 @@ static void toggle_bp_slot(struct perf_event *bp, bool enable) | |||
224 | * - If attached to every cpus, check: | 240 | * - If attached to every cpus, check: |
225 | * | 241 | * |
226 | * ((per_cpu(nr_bp_flexible, *) > 1) + max(per_cpu(nr_cpu_bp_pinned, *)) | 242 | * ((per_cpu(nr_bp_flexible, *) > 1) + max(per_cpu(nr_cpu_bp_pinned, *)) |
227 | * + max(per_cpu(task_bp_pinned, *))) < HBP_NUM | 243 | * + max(per_cpu(nr_task_bp_pinned, *))) < HBP_NUM |
228 | */ | 244 | */ |
229 | int reserve_bp_slot(struct perf_event *bp) | 245 | int reserve_bp_slot(struct perf_event *bp) |
230 | { | 246 | { |
@@ -233,7 +249,7 @@ int reserve_bp_slot(struct perf_event *bp) | |||
233 | 249 | ||
234 | mutex_lock(&nr_bp_mutex); | 250 | mutex_lock(&nr_bp_mutex); |
235 | 251 | ||
236 | fetch_bp_busy_slots(&slots, bp->cpu); | 252 | fetch_bp_busy_slots(&slots, bp); |
237 | 253 | ||
238 | /* Flexible counters need to keep at least one slot */ | 254 | /* Flexible counters need to keep at least one slot */ |
239 | if (slots.pinned + (!!slots.flexible) == HBP_NUM) { | 255 | if (slots.pinned + (!!slots.flexible) == HBP_NUM) { |
@@ -259,7 +275,7 @@ void release_bp_slot(struct perf_event *bp) | |||
259 | } | 275 | } |
260 | 276 | ||
261 | 277 | ||
262 | int __register_perf_hw_breakpoint(struct perf_event *bp) | 278 | int register_perf_hw_breakpoint(struct perf_event *bp) |
263 | { | 279 | { |
264 | int ret; | 280 | int ret; |
265 | 281 | ||
@@ -276,19 +292,12 @@ int __register_perf_hw_breakpoint(struct perf_event *bp) | |||
276 | * This is a quick hack that will be removed soon, once we remove | 292 | * This is a quick hack that will be removed soon, once we remove |
277 | * the tmp breakpoints from ptrace | 293 | * the tmp breakpoints from ptrace |
278 | */ | 294 | */ |
279 | if (!bp->attr.disabled || bp->callback == perf_bp_event) | 295 | if (!bp->attr.disabled || !bp->overflow_handler) |
280 | ret = arch_validate_hwbkpt_settings(bp, bp->ctx->task); | 296 | ret = arch_validate_hwbkpt_settings(bp, bp->ctx->task); |
281 | 297 | ||
282 | return ret; | 298 | return ret; |
283 | } | 299 | } |
284 | 300 | ||
285 | int register_perf_hw_breakpoint(struct perf_event *bp) | ||
286 | { | ||
287 | bp->callback = perf_bp_event; | ||
288 | |||
289 | return __register_perf_hw_breakpoint(bp); | ||
290 | } | ||
291 | |||
292 | /** | 301 | /** |
293 | * register_user_hw_breakpoint - register a hardware breakpoint for user space | 302 | * register_user_hw_breakpoint - register a hardware breakpoint for user space |
294 | * @attr: breakpoint attributes | 303 | * @attr: breakpoint attributes |
@@ -297,7 +306,7 @@ int register_perf_hw_breakpoint(struct perf_event *bp) | |||
297 | */ | 306 | */ |
298 | struct perf_event * | 307 | struct perf_event * |
299 | register_user_hw_breakpoint(struct perf_event_attr *attr, | 308 | register_user_hw_breakpoint(struct perf_event_attr *attr, |
300 | perf_callback_t triggered, | 309 | perf_overflow_handler_t triggered, |
301 | struct task_struct *tsk) | 310 | struct task_struct *tsk) |
302 | { | 311 | { |
303 | return perf_event_create_kernel_counter(attr, -1, tsk->pid, triggered); | 312 | return perf_event_create_kernel_counter(attr, -1, tsk->pid, triggered); |
@@ -311,19 +320,40 @@ EXPORT_SYMBOL_GPL(register_user_hw_breakpoint); | |||
311 | * @triggered: callback to trigger when we hit the breakpoint | 320 | * @triggered: callback to trigger when we hit the breakpoint |
312 | * @tsk: pointer to 'task_struct' of the process to which the address belongs | 321 | * @tsk: pointer to 'task_struct' of the process to which the address belongs |
313 | */ | 322 | */ |
314 | struct perf_event * | 323 | int modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr) |
315 | modify_user_hw_breakpoint(struct perf_event *bp, struct perf_event_attr *attr, | ||
316 | perf_callback_t triggered, | ||
317 | struct task_struct *tsk) | ||
318 | { | 324 | { |
319 | /* | 325 | u64 old_addr = bp->attr.bp_addr; |
320 | * FIXME: do it without unregistering | 326 | int old_type = bp->attr.bp_type; |
321 | * - We don't want to lose our slot | 327 | int old_len = bp->attr.bp_len; |
322 | * - If the new bp is incorrect, don't lose the older one | 328 | int err = 0; |
323 | */ | ||
324 | unregister_hw_breakpoint(bp); | ||
325 | 329 | ||
326 | return perf_event_create_kernel_counter(attr, -1, tsk->pid, triggered); | 330 | perf_event_disable(bp); |
331 | |||
332 | bp->attr.bp_addr = attr->bp_addr; | ||
333 | bp->attr.bp_type = attr->bp_type; | ||
334 | bp->attr.bp_len = attr->bp_len; | ||
335 | |||
336 | if (attr->disabled) | ||
337 | goto end; | ||
338 | |||
339 | err = arch_validate_hwbkpt_settings(bp, bp->ctx->task); | ||
340 | if (!err) | ||
341 | perf_event_enable(bp); | ||
342 | |||
343 | if (err) { | ||
344 | bp->attr.bp_addr = old_addr; | ||
345 | bp->attr.bp_type = old_type; | ||
346 | bp->attr.bp_len = old_len; | ||
347 | if (!bp->attr.disabled) | ||
348 | perf_event_enable(bp); | ||
349 | |||
350 | return err; | ||
351 | } | ||
352 | |||
353 | end: | ||
354 | bp->attr.disabled = attr->disabled; | ||
355 | |||
356 | return 0; | ||
327 | } | 357 | } |
328 | EXPORT_SYMBOL_GPL(modify_user_hw_breakpoint); | 358 | EXPORT_SYMBOL_GPL(modify_user_hw_breakpoint); |
329 | 359 | ||
@@ -348,7 +378,7 @@ EXPORT_SYMBOL_GPL(unregister_hw_breakpoint); | |||
348 | */ | 378 | */ |
349 | struct perf_event ** | 379 | struct perf_event ** |
350 | register_wide_hw_breakpoint(struct perf_event_attr *attr, | 380 | register_wide_hw_breakpoint(struct perf_event_attr *attr, |
351 | perf_callback_t triggered) | 381 | perf_overflow_handler_t triggered) |
352 | { | 382 | { |
353 | struct perf_event **cpu_events, **pevent, *bp; | 383 | struct perf_event **cpu_events, **pevent, *bp; |
354 | long err; | 384 | long err; |
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index bde4c667d24d..7305b297d1eb 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -1067,7 +1067,7 @@ int request_threaded_irq(unsigned int irq, irq_handler_t handler, | |||
1067 | kfree(action); | 1067 | kfree(action); |
1068 | 1068 | ||
1069 | #ifdef CONFIG_DEBUG_SHIRQ | 1069 | #ifdef CONFIG_DEBUG_SHIRQ |
1070 | if (irqflags & IRQF_SHARED) { | 1070 | if (!retval && (irqflags & IRQF_SHARED)) { |
1071 | /* | 1071 | /* |
1072 | * It's a shared IRQ -- the driver ought to be prepared for it | 1072 | * It's a shared IRQ -- the driver ought to be prepared for it |
1073 | * to happen immediately, so let's make sure.... | 1073 | * to happen immediately, so let's make sure.... |
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c index 22b0a6eedf24..e49ea1c5232d 100644 --- a/kernel/irq/spurious.c +++ b/kernel/irq/spurious.c | |||
@@ -220,7 +220,7 @@ void note_interrupt(unsigned int irq, struct irq_desc *desc, | |||
220 | /* | 220 | /* |
221 | * If we are seeing only the odd spurious IRQ caused by | 221 | * If we are seeing only the odd spurious IRQ caused by |
222 | * bus asynchronicity then don't eventually trigger an error, | 222 | * bus asynchronicity then don't eventually trigger an error, |
223 | * otherwise the couter becomes a doomsday timer for otherwise | 223 | * otherwise the counter becomes a doomsday timer for otherwise |
224 | * working systems | 224 | * working systems |
225 | */ | 225 | */ |
226 | if (time_after(jiffies, desc->last_unhandled + HZ/10)) | 226 | if (time_after(jiffies, desc->last_unhandled + HZ/10)) |
diff --git a/kernel/itimer.c b/kernel/itimer.c index b03451ede528..d802883153da 100644 --- a/kernel/itimer.c +++ b/kernel/itimer.c | |||
@@ -146,6 +146,7 @@ static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id, | |||
146 | { | 146 | { |
147 | cputime_t cval, nval, cinterval, ninterval; | 147 | cputime_t cval, nval, cinterval, ninterval; |
148 | s64 ns_ninterval, ns_nval; | 148 | s64 ns_ninterval, ns_nval; |
149 | u32 error, incr_error; | ||
149 | struct cpu_itimer *it = &tsk->signal->it[clock_id]; | 150 | struct cpu_itimer *it = &tsk->signal->it[clock_id]; |
150 | 151 | ||
151 | nval = timeval_to_cputime(&value->it_value); | 152 | nval = timeval_to_cputime(&value->it_value); |
@@ -153,8 +154,8 @@ static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id, | |||
153 | ninterval = timeval_to_cputime(&value->it_interval); | 154 | ninterval = timeval_to_cputime(&value->it_interval); |
154 | ns_ninterval = timeval_to_ns(&value->it_interval); | 155 | ns_ninterval = timeval_to_ns(&value->it_interval); |
155 | 156 | ||
156 | it->incr_error = cputime_sub_ns(ninterval, ns_ninterval); | 157 | error = cputime_sub_ns(nval, ns_nval); |
157 | it->error = cputime_sub_ns(nval, ns_nval); | 158 | incr_error = cputime_sub_ns(ninterval, ns_ninterval); |
158 | 159 | ||
159 | spin_lock_irq(&tsk->sighand->siglock); | 160 | spin_lock_irq(&tsk->sighand->siglock); |
160 | 161 | ||
@@ -168,6 +169,8 @@ static void set_cpu_itimer(struct task_struct *tsk, unsigned int clock_id, | |||
168 | } | 169 | } |
169 | it->expires = nval; | 170 | it->expires = nval; |
170 | it->incr = ninterval; | 171 | it->incr = ninterval; |
172 | it->error = error; | ||
173 | it->incr_error = incr_error; | ||
171 | trace_itimer_state(clock_id == CPUCLOCK_VIRT ? | 174 | trace_itimer_state(clock_id == CPUCLOCK_VIRT ? |
172 | ITIMER_VIRTUAL : ITIMER_PROF, value, nval); | 175 | ITIMER_VIRTUAL : ITIMER_PROF, value, nval); |
173 | 176 | ||
diff --git a/kernel/kgdb.c b/kernel/kgdb.c index 7d7014634022..2eb517e23514 100644 --- a/kernel/kgdb.c +++ b/kernel/kgdb.c | |||
@@ -129,6 +129,7 @@ struct task_struct *kgdb_usethread; | |||
129 | struct task_struct *kgdb_contthread; | 129 | struct task_struct *kgdb_contthread; |
130 | 130 | ||
131 | int kgdb_single_step; | 131 | int kgdb_single_step; |
132 | pid_t kgdb_sstep_pid; | ||
132 | 133 | ||
133 | /* Our I/O buffers. */ | 134 | /* Our I/O buffers. */ |
134 | static char remcom_in_buffer[BUFMAX]; | 135 | static char remcom_in_buffer[BUFMAX]; |
@@ -541,12 +542,17 @@ static struct task_struct *getthread(struct pt_regs *regs, int tid) | |||
541 | */ | 542 | */ |
542 | if (tid == 0 || tid == -1) | 543 | if (tid == 0 || tid == -1) |
543 | tid = -atomic_read(&kgdb_active) - 2; | 544 | tid = -atomic_read(&kgdb_active) - 2; |
544 | if (tid < 0) { | 545 | if (tid < -1 && tid > -NR_CPUS - 2) { |
545 | if (kgdb_info[-tid - 2].task) | 546 | if (kgdb_info[-tid - 2].task) |
546 | return kgdb_info[-tid - 2].task; | 547 | return kgdb_info[-tid - 2].task; |
547 | else | 548 | else |
548 | return idle_task(-tid - 2); | 549 | return idle_task(-tid - 2); |
549 | } | 550 | } |
551 | if (tid <= 0) { | ||
552 | printk(KERN_ERR "KGDB: Internal thread select error\n"); | ||
553 | dump_stack(); | ||
554 | return NULL; | ||
555 | } | ||
550 | 556 | ||
551 | /* | 557 | /* |
552 | * find_task_by_pid_ns() does not take the tasklist lock anymore | 558 | * find_task_by_pid_ns() does not take the tasklist lock anymore |
@@ -619,7 +625,8 @@ static void kgdb_flush_swbreak_addr(unsigned long addr) | |||
619 | static int kgdb_activate_sw_breakpoints(void) | 625 | static int kgdb_activate_sw_breakpoints(void) |
620 | { | 626 | { |
621 | unsigned long addr; | 627 | unsigned long addr; |
622 | int error = 0; | 628 | int error; |
629 | int ret = 0; | ||
623 | int i; | 630 | int i; |
624 | 631 | ||
625 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { | 632 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
@@ -629,13 +636,16 @@ static int kgdb_activate_sw_breakpoints(void) | |||
629 | addr = kgdb_break[i].bpt_addr; | 636 | addr = kgdb_break[i].bpt_addr; |
630 | error = kgdb_arch_set_breakpoint(addr, | 637 | error = kgdb_arch_set_breakpoint(addr, |
631 | kgdb_break[i].saved_instr); | 638 | kgdb_break[i].saved_instr); |
632 | if (error) | 639 | if (error) { |
633 | return error; | 640 | ret = error; |
641 | printk(KERN_INFO "KGDB: BP install failed: %lx", addr); | ||
642 | continue; | ||
643 | } | ||
634 | 644 | ||
635 | kgdb_flush_swbreak_addr(addr); | 645 | kgdb_flush_swbreak_addr(addr); |
636 | kgdb_break[i].state = BP_ACTIVE; | 646 | kgdb_break[i].state = BP_ACTIVE; |
637 | } | 647 | } |
638 | return 0; | 648 | return ret; |
639 | } | 649 | } |
640 | 650 | ||
641 | static int kgdb_set_sw_break(unsigned long addr) | 651 | static int kgdb_set_sw_break(unsigned long addr) |
@@ -682,7 +692,8 @@ static int kgdb_set_sw_break(unsigned long addr) | |||
682 | static int kgdb_deactivate_sw_breakpoints(void) | 692 | static int kgdb_deactivate_sw_breakpoints(void) |
683 | { | 693 | { |
684 | unsigned long addr; | 694 | unsigned long addr; |
685 | int error = 0; | 695 | int error; |
696 | int ret = 0; | ||
686 | int i; | 697 | int i; |
687 | 698 | ||
688 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { | 699 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
@@ -691,13 +702,15 @@ static int kgdb_deactivate_sw_breakpoints(void) | |||
691 | addr = kgdb_break[i].bpt_addr; | 702 | addr = kgdb_break[i].bpt_addr; |
692 | error = kgdb_arch_remove_breakpoint(addr, | 703 | error = kgdb_arch_remove_breakpoint(addr, |
693 | kgdb_break[i].saved_instr); | 704 | kgdb_break[i].saved_instr); |
694 | if (error) | 705 | if (error) { |
695 | return error; | 706 | printk(KERN_INFO "KGDB: BP remove failed: %lx\n", addr); |
707 | ret = error; | ||
708 | } | ||
696 | 709 | ||
697 | kgdb_flush_swbreak_addr(addr); | 710 | kgdb_flush_swbreak_addr(addr); |
698 | kgdb_break[i].state = BP_SET; | 711 | kgdb_break[i].state = BP_SET; |
699 | } | 712 | } |
700 | return 0; | 713 | return ret; |
701 | } | 714 | } |
702 | 715 | ||
703 | static int kgdb_remove_sw_break(unsigned long addr) | 716 | static int kgdb_remove_sw_break(unsigned long addr) |
@@ -1204,8 +1217,10 @@ static int gdb_cmd_exception_pass(struct kgdb_state *ks) | |||
1204 | return 1; | 1217 | return 1; |
1205 | 1218 | ||
1206 | } else { | 1219 | } else { |
1207 | error_packet(remcom_out_buffer, -EINVAL); | 1220 | kgdb_msg_write("KGDB only knows signal 9 (pass)" |
1208 | return 0; | 1221 | " and 15 (pass and disconnect)\n" |
1222 | "Executing a continue without signal passing\n", 0); | ||
1223 | remcom_in_buffer[0] = 'c'; | ||
1209 | } | 1224 | } |
1210 | 1225 | ||
1211 | /* Indicate fall through */ | 1226 | /* Indicate fall through */ |
@@ -1395,6 +1410,7 @@ kgdb_handle_exception(int evector, int signo, int ecode, struct pt_regs *regs) | |||
1395 | struct kgdb_state kgdb_var; | 1410 | struct kgdb_state kgdb_var; |
1396 | struct kgdb_state *ks = &kgdb_var; | 1411 | struct kgdb_state *ks = &kgdb_var; |
1397 | unsigned long flags; | 1412 | unsigned long flags; |
1413 | int sstep_tries = 100; | ||
1398 | int error = 0; | 1414 | int error = 0; |
1399 | int i, cpu; | 1415 | int i, cpu; |
1400 | 1416 | ||
@@ -1425,13 +1441,14 @@ acquirelock: | |||
1425 | cpu_relax(); | 1441 | cpu_relax(); |
1426 | 1442 | ||
1427 | /* | 1443 | /* |
1428 | * Do not start the debugger connection on this CPU if the last | 1444 | * For single stepping, try to only enter on the processor |
1429 | * instance of the exception handler wanted to come into the | 1445 | * that was single stepping. To gaurd against a deadlock, the |
1430 | * debugger on a different CPU via a single step | 1446 | * kernel will only try for the value of sstep_tries before |
1447 | * giving up and continuing on. | ||
1431 | */ | 1448 | */ |
1432 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1 && | 1449 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1 && |
1433 | atomic_read(&kgdb_cpu_doing_single_step) != cpu) { | 1450 | (kgdb_info[cpu].task && |
1434 | 1451 | kgdb_info[cpu].task->pid != kgdb_sstep_pid) && --sstep_tries) { | |
1435 | atomic_set(&kgdb_active, -1); | 1452 | atomic_set(&kgdb_active, -1); |
1436 | touch_softlockup_watchdog(); | 1453 | touch_softlockup_watchdog(); |
1437 | clocksource_touch_watchdog(); | 1454 | clocksource_touch_watchdog(); |
@@ -1524,6 +1541,13 @@ acquirelock: | |||
1524 | } | 1541 | } |
1525 | 1542 | ||
1526 | kgdb_restore: | 1543 | kgdb_restore: |
1544 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1) { | ||
1545 | int sstep_cpu = atomic_read(&kgdb_cpu_doing_single_step); | ||
1546 | if (kgdb_info[sstep_cpu].task) | ||
1547 | kgdb_sstep_pid = kgdb_info[sstep_cpu].task->pid; | ||
1548 | else | ||
1549 | kgdb_sstep_pid = 0; | ||
1550 | } | ||
1527 | /* Free kgdb_active */ | 1551 | /* Free kgdb_active */ |
1528 | atomic_set(&kgdb_active, -1); | 1552 | atomic_set(&kgdb_active, -1); |
1529 | touch_softlockup_watchdog(); | 1553 | touch_softlockup_watchdog(); |
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index f5dcd36d3151..4f8df01dbe51 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c | |||
@@ -168,7 +168,7 @@ static void lock_time_inc(struct lock_time *lt, u64 time) | |||
168 | if (time > lt->max) | 168 | if (time > lt->max) |
169 | lt->max = time; | 169 | lt->max = time; |
170 | 170 | ||
171 | if (time < lt->min || !lt->min) | 171 | if (time < lt->min || !lt->nr) |
172 | lt->min = time; | 172 | lt->min = time; |
173 | 173 | ||
174 | lt->total += time; | 174 | lt->total += time; |
@@ -177,8 +177,15 @@ static void lock_time_inc(struct lock_time *lt, u64 time) | |||
177 | 177 | ||
178 | static inline void lock_time_add(struct lock_time *src, struct lock_time *dst) | 178 | static inline void lock_time_add(struct lock_time *src, struct lock_time *dst) |
179 | { | 179 | { |
180 | dst->min += src->min; | 180 | if (!src->nr) |
181 | dst->max += src->max; | 181 | return; |
182 | |||
183 | if (src->max > dst->max) | ||
184 | dst->max = src->max; | ||
185 | |||
186 | if (src->min < dst->min || !dst->nr) | ||
187 | dst->min = src->min; | ||
188 | |||
182 | dst->total += src->total; | 189 | dst->total += src->total; |
183 | dst->nr += src->nr; | 190 | dst->nr += src->nr; |
184 | } | 191 | } |
@@ -379,7 +386,8 @@ static int save_trace(struct stack_trace *trace) | |||
379 | * complete trace that maxes out the entries provided will be reported | 386 | * complete trace that maxes out the entries provided will be reported |
380 | * as incomplete, friggin useless </rant> | 387 | * as incomplete, friggin useless </rant> |
381 | */ | 388 | */ |
382 | if (trace->entries[trace->nr_entries-1] == ULONG_MAX) | 389 | if (trace->nr_entries != 0 && |
390 | trace->entries[trace->nr_entries-1] == ULONG_MAX) | ||
383 | trace->nr_entries--; | 391 | trace->nr_entries--; |
384 | 392 | ||
385 | trace->max_entries = trace->nr_entries; | 393 | trace->max_entries = trace->nr_entries; |
diff --git a/kernel/perf_event.c b/kernel/perf_event.c index 6b7ddba1dd64..e73e53c7582f 100644 --- a/kernel/perf_event.c +++ b/kernel/perf_event.c | |||
@@ -36,7 +36,7 @@ | |||
36 | /* | 36 | /* |
37 | * Each CPU has a list of per CPU events: | 37 | * Each CPU has a list of per CPU events: |
38 | */ | 38 | */ |
39 | DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context); | 39 | static DEFINE_PER_CPU(struct perf_cpu_context, perf_cpu_context); |
40 | 40 | ||
41 | int perf_max_events __read_mostly = 1; | 41 | int perf_max_events __read_mostly = 1; |
42 | static int perf_reserved_percpu __read_mostly; | 42 | static int perf_reserved_percpu __read_mostly; |
@@ -476,7 +476,7 @@ static void perf_event_remove_from_context(struct perf_event *event) | |||
476 | if (!task) { | 476 | if (!task) { |
477 | /* | 477 | /* |
478 | * Per cpu events are removed via an smp call and | 478 | * Per cpu events are removed via an smp call and |
479 | * the removal is always sucessful. | 479 | * the removal is always successful. |
480 | */ | 480 | */ |
481 | smp_call_function_single(event->cpu, | 481 | smp_call_function_single(event->cpu, |
482 | __perf_event_remove_from_context, | 482 | __perf_event_remove_from_context, |
@@ -567,7 +567,7 @@ static void __perf_event_disable(void *info) | |||
567 | * is the current context on this CPU and preemption is disabled, | 567 | * is the current context on this CPU and preemption is disabled, |
568 | * hence we can't get into perf_event_task_sched_out for this context. | 568 | * hence we can't get into perf_event_task_sched_out for this context. |
569 | */ | 569 | */ |
570 | static void perf_event_disable(struct perf_event *event) | 570 | void perf_event_disable(struct perf_event *event) |
571 | { | 571 | { |
572 | struct perf_event_context *ctx = event->ctx; | 572 | struct perf_event_context *ctx = event->ctx; |
573 | struct task_struct *task = ctx->task; | 573 | struct task_struct *task = ctx->task; |
@@ -845,7 +845,7 @@ perf_install_in_context(struct perf_event_context *ctx, | |||
845 | if (!task) { | 845 | if (!task) { |
846 | /* | 846 | /* |
847 | * Per cpu events are installed via an smp call and | 847 | * Per cpu events are installed via an smp call and |
848 | * the install is always sucessful. | 848 | * the install is always successful. |
849 | */ | 849 | */ |
850 | smp_call_function_single(cpu, __perf_install_in_context, | 850 | smp_call_function_single(cpu, __perf_install_in_context, |
851 | event, 1); | 851 | event, 1); |
@@ -971,7 +971,7 @@ static void __perf_event_enable(void *info) | |||
971 | * perf_event_for_each_child or perf_event_for_each as described | 971 | * perf_event_for_each_child or perf_event_for_each as described |
972 | * for perf_event_disable. | 972 | * for perf_event_disable. |
973 | */ | 973 | */ |
974 | static void perf_event_enable(struct perf_event *event) | 974 | void perf_event_enable(struct perf_event *event) |
975 | { | 975 | { |
976 | struct perf_event_context *ctx = event->ctx; | 976 | struct perf_event_context *ctx = event->ctx; |
977 | struct task_struct *task = ctx->task; | 977 | struct task_struct *task = ctx->task; |
@@ -1579,7 +1579,6 @@ static void | |||
1579 | __perf_event_init_context(struct perf_event_context *ctx, | 1579 | __perf_event_init_context(struct perf_event_context *ctx, |
1580 | struct task_struct *task) | 1580 | struct task_struct *task) |
1581 | { | 1581 | { |
1582 | memset(ctx, 0, sizeof(*ctx)); | ||
1583 | spin_lock_init(&ctx->lock); | 1582 | spin_lock_init(&ctx->lock); |
1584 | mutex_init(&ctx->mutex); | 1583 | mutex_init(&ctx->mutex); |
1585 | INIT_LIST_HEAD(&ctx->group_list); | 1584 | INIT_LIST_HEAD(&ctx->group_list); |
@@ -1654,7 +1653,7 @@ static struct perf_event_context *find_get_context(pid_t pid, int cpu) | |||
1654 | } | 1653 | } |
1655 | 1654 | ||
1656 | if (!ctx) { | 1655 | if (!ctx) { |
1657 | ctx = kmalloc(sizeof(struct perf_event_context), GFP_KERNEL); | 1656 | ctx = kzalloc(sizeof(struct perf_event_context), GFP_KERNEL); |
1658 | err = -ENOMEM; | 1657 | err = -ENOMEM; |
1659 | if (!ctx) | 1658 | if (!ctx) |
1660 | goto errout; | 1659 | goto errout; |
@@ -4011,6 +4010,7 @@ static enum hrtimer_restart perf_swevent_hrtimer(struct hrtimer *hrtimer) | |||
4011 | event->pmu->read(event); | 4010 | event->pmu->read(event); |
4012 | 4011 | ||
4013 | data.addr = 0; | 4012 | data.addr = 0; |
4013 | data.raw = NULL; | ||
4014 | data.period = event->hw.last_period; | 4014 | data.period = event->hw.last_period; |
4015 | regs = get_irq_regs(); | 4015 | regs = get_irq_regs(); |
4016 | /* | 4016 | /* |
@@ -4080,8 +4080,7 @@ static void cpu_clock_perf_event_update(struct perf_event *event) | |||
4080 | u64 now; | 4080 | u64 now; |
4081 | 4081 | ||
4082 | now = cpu_clock(cpu); | 4082 | now = cpu_clock(cpu); |
4083 | prev = atomic64_read(&event->hw.prev_count); | 4083 | prev = atomic64_xchg(&event->hw.prev_count, now); |
4084 | atomic64_set(&event->hw.prev_count, now); | ||
4085 | atomic64_add(now - prev, &event->count); | 4084 | atomic64_add(now - prev, &event->count); |
4086 | } | 4085 | } |
4087 | 4086 | ||
@@ -4286,15 +4285,8 @@ static void bp_perf_event_destroy(struct perf_event *event) | |||
4286 | static const struct pmu *bp_perf_event_init(struct perf_event *bp) | 4285 | static const struct pmu *bp_perf_event_init(struct perf_event *bp) |
4287 | { | 4286 | { |
4288 | int err; | 4287 | int err; |
4289 | /* | 4288 | |
4290 | * The breakpoint is already filled if we haven't created the counter | 4289 | err = register_perf_hw_breakpoint(bp); |
4291 | * through perf syscall | ||
4292 | * FIXME: manage to get trigerred to NULL if it comes from syscalls | ||
4293 | */ | ||
4294 | if (!bp->callback) | ||
4295 | err = register_perf_hw_breakpoint(bp); | ||
4296 | else | ||
4297 | err = __register_perf_hw_breakpoint(bp); | ||
4298 | if (err) | 4290 | if (err) |
4299 | return ERR_PTR(err); | 4291 | return ERR_PTR(err); |
4300 | 4292 | ||
@@ -4308,6 +4300,7 @@ void perf_bp_event(struct perf_event *bp, void *data) | |||
4308 | struct perf_sample_data sample; | 4300 | struct perf_sample_data sample; |
4309 | struct pt_regs *regs = data; | 4301 | struct pt_regs *regs = data; |
4310 | 4302 | ||
4303 | sample.raw = NULL; | ||
4311 | sample.addr = bp->attr.bp_addr; | 4304 | sample.addr = bp->attr.bp_addr; |
4312 | 4305 | ||
4313 | if (!perf_exclude_event(bp, regs)) | 4306 | if (!perf_exclude_event(bp, regs)) |
@@ -4390,7 +4383,7 @@ perf_event_alloc(struct perf_event_attr *attr, | |||
4390 | struct perf_event_context *ctx, | 4383 | struct perf_event_context *ctx, |
4391 | struct perf_event *group_leader, | 4384 | struct perf_event *group_leader, |
4392 | struct perf_event *parent_event, | 4385 | struct perf_event *parent_event, |
4393 | perf_callback_t callback, | 4386 | perf_overflow_handler_t overflow_handler, |
4394 | gfp_t gfpflags) | 4387 | gfp_t gfpflags) |
4395 | { | 4388 | { |
4396 | const struct pmu *pmu; | 4389 | const struct pmu *pmu; |
@@ -4433,10 +4426,10 @@ perf_event_alloc(struct perf_event_attr *attr, | |||
4433 | 4426 | ||
4434 | event->state = PERF_EVENT_STATE_INACTIVE; | 4427 | event->state = PERF_EVENT_STATE_INACTIVE; |
4435 | 4428 | ||
4436 | if (!callback && parent_event) | 4429 | if (!overflow_handler && parent_event) |
4437 | callback = parent_event->callback; | 4430 | overflow_handler = parent_event->overflow_handler; |
4438 | 4431 | ||
4439 | event->callback = callback; | 4432 | event->overflow_handler = overflow_handler; |
4440 | 4433 | ||
4441 | if (attr->disabled) | 4434 | if (attr->disabled) |
4442 | event->state = PERF_EVENT_STATE_OFF; | 4435 | event->state = PERF_EVENT_STATE_OFF; |
@@ -4776,7 +4769,8 @@ err_put_context: | |||
4776 | */ | 4769 | */ |
4777 | struct perf_event * | 4770 | struct perf_event * |
4778 | perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, | 4771 | perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, |
4779 | pid_t pid, perf_callback_t callback) | 4772 | pid_t pid, |
4773 | perf_overflow_handler_t overflow_handler) | ||
4780 | { | 4774 | { |
4781 | struct perf_event *event; | 4775 | struct perf_event *event; |
4782 | struct perf_event_context *ctx; | 4776 | struct perf_event_context *ctx; |
@@ -4793,7 +4787,7 @@ perf_event_create_kernel_counter(struct perf_event_attr *attr, int cpu, | |||
4793 | } | 4787 | } |
4794 | 4788 | ||
4795 | event = perf_event_alloc(attr, cpu, ctx, NULL, | 4789 | event = perf_event_alloc(attr, cpu, ctx, NULL, |
4796 | NULL, callback, GFP_KERNEL); | 4790 | NULL, overflow_handler, GFP_KERNEL); |
4797 | if (IS_ERR(event)) { | 4791 | if (IS_ERR(event)) { |
4798 | err = PTR_ERR(event); | 4792 | err = PTR_ERR(event); |
4799 | goto err_put_context; | 4793 | goto err_put_context; |
@@ -5090,7 +5084,7 @@ again: | |||
5090 | */ | 5084 | */ |
5091 | int perf_event_init_task(struct task_struct *child) | 5085 | int perf_event_init_task(struct task_struct *child) |
5092 | { | 5086 | { |
5093 | struct perf_event_context *child_ctx, *parent_ctx; | 5087 | struct perf_event_context *child_ctx = NULL, *parent_ctx; |
5094 | struct perf_event_context *cloned_ctx; | 5088 | struct perf_event_context *cloned_ctx; |
5095 | struct perf_event *event; | 5089 | struct perf_event *event; |
5096 | struct task_struct *parent = current; | 5090 | struct task_struct *parent = current; |
@@ -5106,20 +5100,6 @@ int perf_event_init_task(struct task_struct *child) | |||
5106 | return 0; | 5100 | return 0; |
5107 | 5101 | ||
5108 | /* | 5102 | /* |
5109 | * This is executed from the parent task context, so inherit | ||
5110 | * events that have been marked for cloning. | ||
5111 | * First allocate and initialize a context for the child. | ||
5112 | */ | ||
5113 | |||
5114 | child_ctx = kmalloc(sizeof(struct perf_event_context), GFP_KERNEL); | ||
5115 | if (!child_ctx) | ||
5116 | return -ENOMEM; | ||
5117 | |||
5118 | __perf_event_init_context(child_ctx, child); | ||
5119 | child->perf_event_ctxp = child_ctx; | ||
5120 | get_task_struct(child); | ||
5121 | |||
5122 | /* | ||
5123 | * If the parent's context is a clone, pin it so it won't get | 5103 | * If the parent's context is a clone, pin it so it won't get |
5124 | * swapped under us. | 5104 | * swapped under us. |
5125 | */ | 5105 | */ |
@@ -5149,6 +5129,26 @@ int perf_event_init_task(struct task_struct *child) | |||
5149 | continue; | 5129 | continue; |
5150 | } | 5130 | } |
5151 | 5131 | ||
5132 | if (!child->perf_event_ctxp) { | ||
5133 | /* | ||
5134 | * This is executed from the parent task context, so | ||
5135 | * inherit events that have been marked for cloning. | ||
5136 | * First allocate and initialize a context for the | ||
5137 | * child. | ||
5138 | */ | ||
5139 | |||
5140 | child_ctx = kzalloc(sizeof(struct perf_event_context), | ||
5141 | GFP_KERNEL); | ||
5142 | if (!child_ctx) { | ||
5143 | ret = -ENOMEM; | ||
5144 | goto exit; | ||
5145 | } | ||
5146 | |||
5147 | __perf_event_init_context(child_ctx, child); | ||
5148 | child->perf_event_ctxp = child_ctx; | ||
5149 | get_task_struct(child); | ||
5150 | } | ||
5151 | |||
5152 | ret = inherit_group(event, parent, parent_ctx, | 5152 | ret = inherit_group(event, parent, parent_ctx, |
5153 | child, child_ctx); | 5153 | child, child_ctx); |
5154 | if (ret) { | 5154 | if (ret) { |
@@ -5177,6 +5177,7 @@ int perf_event_init_task(struct task_struct *child) | |||
5177 | get_ctx(child_ctx->parent_ctx); | 5177 | get_ctx(child_ctx->parent_ctx); |
5178 | } | 5178 | } |
5179 | 5179 | ||
5180 | exit: | ||
5180 | mutex_unlock(&parent_ctx->mutex); | 5181 | mutex_unlock(&parent_ctx->mutex); |
5181 | 5182 | ||
5182 | perf_unpin_context(parent_ctx); | 5183 | perf_unpin_context(parent_ctx); |
diff --git a/kernel/pm_qos_params.c b/kernel/pm_qos_params.c index dfdec524d1b7..3db49b9ca374 100644 --- a/kernel/pm_qos_params.c +++ b/kernel/pm_qos_params.c | |||
@@ -29,7 +29,6 @@ | |||
29 | 29 | ||
30 | #include <linux/pm_qos_params.h> | 30 | #include <linux/pm_qos_params.h> |
31 | #include <linux/sched.h> | 31 | #include <linux/sched.h> |
32 | #include <linux/smp_lock.h> | ||
33 | #include <linux/spinlock.h> | 32 | #include <linux/spinlock.h> |
34 | #include <linux/slab.h> | 33 | #include <linux/slab.h> |
35 | #include <linux/time.h> | 34 | #include <linux/time.h> |
@@ -344,37 +343,33 @@ int pm_qos_remove_notifier(int pm_qos_class, struct notifier_block *notifier) | |||
344 | } | 343 | } |
345 | EXPORT_SYMBOL_GPL(pm_qos_remove_notifier); | 344 | EXPORT_SYMBOL_GPL(pm_qos_remove_notifier); |
346 | 345 | ||
347 | #define PID_NAME_LEN sizeof("process_1234567890") | 346 | #define PID_NAME_LEN 32 |
348 | static char name[PID_NAME_LEN]; | ||
349 | 347 | ||
350 | static int pm_qos_power_open(struct inode *inode, struct file *filp) | 348 | static int pm_qos_power_open(struct inode *inode, struct file *filp) |
351 | { | 349 | { |
352 | int ret; | 350 | int ret; |
353 | long pm_qos_class; | 351 | long pm_qos_class; |
352 | char name[PID_NAME_LEN]; | ||
354 | 353 | ||
355 | lock_kernel(); | ||
356 | pm_qos_class = find_pm_qos_object_by_minor(iminor(inode)); | 354 | pm_qos_class = find_pm_qos_object_by_minor(iminor(inode)); |
357 | if (pm_qos_class >= 0) { | 355 | if (pm_qos_class >= 0) { |
358 | filp->private_data = (void *)pm_qos_class; | 356 | filp->private_data = (void *)pm_qos_class; |
359 | sprintf(name, "process_%d", current->pid); | 357 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); |
360 | ret = pm_qos_add_requirement(pm_qos_class, name, | 358 | ret = pm_qos_add_requirement(pm_qos_class, name, |
361 | PM_QOS_DEFAULT_VALUE); | 359 | PM_QOS_DEFAULT_VALUE); |
362 | if (ret >= 0) { | 360 | if (ret >= 0) |
363 | unlock_kernel(); | ||
364 | return 0; | 361 | return 0; |
365 | } | ||
366 | } | 362 | } |
367 | unlock_kernel(); | ||
368 | |||
369 | return -EPERM; | 363 | return -EPERM; |
370 | } | 364 | } |
371 | 365 | ||
372 | static int pm_qos_power_release(struct inode *inode, struct file *filp) | 366 | static int pm_qos_power_release(struct inode *inode, struct file *filp) |
373 | { | 367 | { |
374 | int pm_qos_class; | 368 | int pm_qos_class; |
369 | char name[PID_NAME_LEN]; | ||
375 | 370 | ||
376 | pm_qos_class = (long)filp->private_data; | 371 | pm_qos_class = (long)filp->private_data; |
377 | sprintf(name, "process_%d", current->pid); | 372 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); |
378 | pm_qos_remove_requirement(pm_qos_class, name); | 373 | pm_qos_remove_requirement(pm_qos_class, name); |
379 | 374 | ||
380 | return 0; | 375 | return 0; |
@@ -385,13 +380,14 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf, | |||
385 | { | 380 | { |
386 | s32 value; | 381 | s32 value; |
387 | int pm_qos_class; | 382 | int pm_qos_class; |
383 | char name[PID_NAME_LEN]; | ||
388 | 384 | ||
389 | pm_qos_class = (long)filp->private_data; | 385 | pm_qos_class = (long)filp->private_data; |
390 | if (count != sizeof(s32)) | 386 | if (count != sizeof(s32)) |
391 | return -EINVAL; | 387 | return -EINVAL; |
392 | if (copy_from_user(&value, buf, sizeof(s32))) | 388 | if (copy_from_user(&value, buf, sizeof(s32))) |
393 | return -EFAULT; | 389 | return -EFAULT; |
394 | sprintf(name, "process_%d", current->pid); | 390 | snprintf(name, PID_NAME_LEN, "process_%d", current->pid); |
395 | pm_qos_update_requirement(pm_qos_class, name, value); | 391 | pm_qos_update_requirement(pm_qos_class, name, value); |
396 | 392 | ||
397 | return sizeof(s32); | 393 | return sizeof(s32); |
diff --git a/kernel/posix-cpu-timers.c b/kernel/posix-cpu-timers.c index 5c9dc228747b..438ff4523513 100644 --- a/kernel/posix-cpu-timers.c +++ b/kernel/posix-cpu-timers.c | |||
@@ -384,7 +384,8 @@ int posix_cpu_clock_get(const clockid_t which_clock, struct timespec *tp) | |||
384 | 384 | ||
385 | /* | 385 | /* |
386 | * Validate the clockid_t for a new CPU-clock timer, and initialize the timer. | 386 | * Validate the clockid_t for a new CPU-clock timer, and initialize the timer. |
387 | * This is called from sys_timer_create with the new timer already locked. | 387 | * This is called from sys_timer_create() and do_cpu_nanosleep() with the |
388 | * new timer already all-zeros initialized. | ||
388 | */ | 389 | */ |
389 | int posix_cpu_timer_create(struct k_itimer *new_timer) | 390 | int posix_cpu_timer_create(struct k_itimer *new_timer) |
390 | { | 391 | { |
@@ -396,8 +397,6 @@ int posix_cpu_timer_create(struct k_itimer *new_timer) | |||
396 | return -EINVAL; | 397 | return -EINVAL; |
397 | 398 | ||
398 | INIT_LIST_HEAD(&new_timer->it.cpu.entry); | 399 | INIT_LIST_HEAD(&new_timer->it.cpu.entry); |
399 | new_timer->it.cpu.incr.sched = 0; | ||
400 | new_timer->it.cpu.expires.sched = 0; | ||
401 | 400 | ||
402 | read_lock(&tasklist_lock); | 401 | read_lock(&tasklist_lock); |
403 | if (CPUCLOCK_PERTHREAD(new_timer->it_clock)) { | 402 | if (CPUCLOCK_PERTHREAD(new_timer->it_clock)) { |
diff --git a/kernel/power/Makefile b/kernel/power/Makefile index c3b81c30e5d5..43191815f874 100644 --- a/kernel/power/Makefile +++ b/kernel/power/Makefile | |||
@@ -8,7 +8,7 @@ obj-$(CONFIG_PM_SLEEP) += console.o | |||
8 | obj-$(CONFIG_FREEZER) += process.o | 8 | obj-$(CONFIG_FREEZER) += process.o |
9 | obj-$(CONFIG_SUSPEND) += suspend.o | 9 | obj-$(CONFIG_SUSPEND) += suspend.o |
10 | obj-$(CONFIG_PM_TEST_SUSPEND) += suspend_test.o | 10 | obj-$(CONFIG_PM_TEST_SUSPEND) += suspend_test.o |
11 | obj-$(CONFIG_HIBERNATION) += swsusp.o hibernate.o snapshot.o swap.o user.o | 11 | obj-$(CONFIG_HIBERNATION) += hibernate.o snapshot.o swap.o user.o |
12 | obj-$(CONFIG_HIBERNATION_NVS) += hibernate_nvs.o | 12 | obj-$(CONFIG_HIBERNATION_NVS) += hibernate_nvs.o |
13 | 13 | ||
14 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o | 14 | obj-$(CONFIG_MAGIC_SYSRQ) += poweroff.o |
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c index 04a9e90d248f..bbfe472d7524 100644 --- a/kernel/power/hibernate.c +++ b/kernel/power/hibernate.c | |||
@@ -32,6 +32,7 @@ static int noresume = 0; | |||
32 | static char resume_file[256] = CONFIG_PM_STD_PARTITION; | 32 | static char resume_file[256] = CONFIG_PM_STD_PARTITION; |
33 | dev_t swsusp_resume_device; | 33 | dev_t swsusp_resume_device; |
34 | sector_t swsusp_resume_block; | 34 | sector_t swsusp_resume_block; |
35 | int in_suspend __nosavedata = 0; | ||
35 | 36 | ||
36 | enum { | 37 | enum { |
37 | HIBERNATION_INVALID, | 38 | HIBERNATION_INVALID, |
@@ -202,6 +203,35 @@ static void platform_recover(int platform_mode) | |||
202 | } | 203 | } |
203 | 204 | ||
204 | /** | 205 | /** |
206 | * swsusp_show_speed - print the time elapsed between two events. | ||
207 | * @start: Starting event. | ||
208 | * @stop: Final event. | ||
209 | * @nr_pages - number of pages processed between @start and @stop | ||
210 | * @msg - introductory message to print | ||
211 | */ | ||
212 | |||
213 | void swsusp_show_speed(struct timeval *start, struct timeval *stop, | ||
214 | unsigned nr_pages, char *msg) | ||
215 | { | ||
216 | s64 elapsed_centisecs64; | ||
217 | int centisecs; | ||
218 | int k; | ||
219 | int kps; | ||
220 | |||
221 | elapsed_centisecs64 = timeval_to_ns(stop) - timeval_to_ns(start); | ||
222 | do_div(elapsed_centisecs64, NSEC_PER_SEC / 100); | ||
223 | centisecs = elapsed_centisecs64; | ||
224 | if (centisecs == 0) | ||
225 | centisecs = 1; /* avoid div-by-zero */ | ||
226 | k = nr_pages * (PAGE_SIZE / 1024); | ||
227 | kps = (k * 100) / centisecs; | ||
228 | printk(KERN_INFO "PM: %s %d kbytes in %d.%02d seconds (%d.%02d MB/s)\n", | ||
229 | msg, k, | ||
230 | centisecs / 100, centisecs % 100, | ||
231 | kps / 1000, (kps % 1000) / 10); | ||
232 | } | ||
233 | |||
234 | /** | ||
205 | * create_image - freeze devices that need to be frozen with interrupts | 235 | * create_image - freeze devices that need to be frozen with interrupts |
206 | * off, create the hibernation image and thaw those devices. Control | 236 | * off, create the hibernation image and thaw those devices. Control |
207 | * reappears in this routine after a restore. | 237 | * reappears in this routine after a restore. |
diff --git a/kernel/power/main.c b/kernel/power/main.c index 347d2cc88cd0..0998c7139053 100644 --- a/kernel/power/main.c +++ b/kernel/power/main.c | |||
@@ -220,6 +220,7 @@ static struct attribute_group attr_group = { | |||
220 | 220 | ||
221 | #ifdef CONFIG_PM_RUNTIME | 221 | #ifdef CONFIG_PM_RUNTIME |
222 | struct workqueue_struct *pm_wq; | 222 | struct workqueue_struct *pm_wq; |
223 | EXPORT_SYMBOL_GPL(pm_wq); | ||
223 | 224 | ||
224 | static int __init pm_start_workqueue(void) | 225 | static int __init pm_start_workqueue(void) |
225 | { | 226 | { |
diff --git a/kernel/power/process.c b/kernel/power/process.c index cc2e55373b68..5ade1bdcf366 100644 --- a/kernel/power/process.c +++ b/kernel/power/process.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | #include <linux/syscalls.h> | 15 | #include <linux/syscalls.h> |
16 | #include <linux/freezer.h> | 16 | #include <linux/freezer.h> |
17 | #include <linux/delay.h> | ||
17 | 18 | ||
18 | /* | 19 | /* |
19 | * Timeout for stopping processes | 20 | * Timeout for stopping processes |
@@ -41,7 +42,7 @@ static int try_to_freeze_tasks(bool sig_only) | |||
41 | do_gettimeofday(&start); | 42 | do_gettimeofday(&start); |
42 | 43 | ||
43 | end_time = jiffies + TIMEOUT; | 44 | end_time = jiffies + TIMEOUT; |
44 | do { | 45 | while (true) { |
45 | todo = 0; | 46 | todo = 0; |
46 | read_lock(&tasklist_lock); | 47 | read_lock(&tasklist_lock); |
47 | do_each_thread(g, p) { | 48 | do_each_thread(g, p) { |
@@ -62,10 +63,15 @@ static int try_to_freeze_tasks(bool sig_only) | |||
62 | todo++; | 63 | todo++; |
63 | } while_each_thread(g, p); | 64 | } while_each_thread(g, p); |
64 | read_unlock(&tasklist_lock); | 65 | read_unlock(&tasklist_lock); |
65 | yield(); /* Yield is okay here */ | 66 | if (!todo || time_after(jiffies, end_time)) |
66 | if (time_after(jiffies, end_time)) | ||
67 | break; | 67 | break; |
68 | } while (todo); | 68 | |
69 | /* | ||
70 | * We need to retry, but first give the freezing tasks some | ||
71 | * time to enter the regrigerator. | ||
72 | */ | ||
73 | msleep(10); | ||
74 | } | ||
69 | 75 | ||
70 | do_gettimeofday(&end); | 76 | do_gettimeofday(&end); |
71 | elapsed_csecs64 = timeval_to_ns(&end) - timeval_to_ns(&start); | 77 | elapsed_csecs64 = timeval_to_ns(&end) - timeval_to_ns(&start); |
diff --git a/kernel/power/swap.c b/kernel/power/swap.c index 890f6b11b1d3..09b2b0ae9e9d 100644 --- a/kernel/power/swap.c +++ b/kernel/power/swap.c | |||
@@ -38,6 +38,107 @@ struct swsusp_header { | |||
38 | 38 | ||
39 | static struct swsusp_header *swsusp_header; | 39 | static struct swsusp_header *swsusp_header; |
40 | 40 | ||
41 | /** | ||
42 | * The following functions are used for tracing the allocated | ||
43 | * swap pages, so that they can be freed in case of an error. | ||
44 | */ | ||
45 | |||
46 | struct swsusp_extent { | ||
47 | struct rb_node node; | ||
48 | unsigned long start; | ||
49 | unsigned long end; | ||
50 | }; | ||
51 | |||
52 | static struct rb_root swsusp_extents = RB_ROOT; | ||
53 | |||
54 | static int swsusp_extents_insert(unsigned long swap_offset) | ||
55 | { | ||
56 | struct rb_node **new = &(swsusp_extents.rb_node); | ||
57 | struct rb_node *parent = NULL; | ||
58 | struct swsusp_extent *ext; | ||
59 | |||
60 | /* Figure out where to put the new node */ | ||
61 | while (*new) { | ||
62 | ext = container_of(*new, struct swsusp_extent, node); | ||
63 | parent = *new; | ||
64 | if (swap_offset < ext->start) { | ||
65 | /* Try to merge */ | ||
66 | if (swap_offset == ext->start - 1) { | ||
67 | ext->start--; | ||
68 | return 0; | ||
69 | } | ||
70 | new = &((*new)->rb_left); | ||
71 | } else if (swap_offset > ext->end) { | ||
72 | /* Try to merge */ | ||
73 | if (swap_offset == ext->end + 1) { | ||
74 | ext->end++; | ||
75 | return 0; | ||
76 | } | ||
77 | new = &((*new)->rb_right); | ||
78 | } else { | ||
79 | /* It already is in the tree */ | ||
80 | return -EINVAL; | ||
81 | } | ||
82 | } | ||
83 | /* Add the new node and rebalance the tree. */ | ||
84 | ext = kzalloc(sizeof(struct swsusp_extent), GFP_KERNEL); | ||
85 | if (!ext) | ||
86 | return -ENOMEM; | ||
87 | |||
88 | ext->start = swap_offset; | ||
89 | ext->end = swap_offset; | ||
90 | rb_link_node(&ext->node, parent, new); | ||
91 | rb_insert_color(&ext->node, &swsusp_extents); | ||
92 | return 0; | ||
93 | } | ||
94 | |||
95 | /** | ||
96 | * alloc_swapdev_block - allocate a swap page and register that it has | ||
97 | * been allocated, so that it can be freed in case of an error. | ||
98 | */ | ||
99 | |||
100 | sector_t alloc_swapdev_block(int swap) | ||
101 | { | ||
102 | unsigned long offset; | ||
103 | |||
104 | offset = swp_offset(get_swap_page_of_type(swap)); | ||
105 | if (offset) { | ||
106 | if (swsusp_extents_insert(offset)) | ||
107 | swap_free(swp_entry(swap, offset)); | ||
108 | else | ||
109 | return swapdev_block(swap, offset); | ||
110 | } | ||
111 | return 0; | ||
112 | } | ||
113 | |||
114 | /** | ||
115 | * free_all_swap_pages - free swap pages allocated for saving image data. | ||
116 | * It also frees the extents used to register which swap entres had been | ||
117 | * allocated. | ||
118 | */ | ||
119 | |||
120 | void free_all_swap_pages(int swap) | ||
121 | { | ||
122 | struct rb_node *node; | ||
123 | |||
124 | while ((node = swsusp_extents.rb_node)) { | ||
125 | struct swsusp_extent *ext; | ||
126 | unsigned long offset; | ||
127 | |||
128 | ext = container_of(node, struct swsusp_extent, node); | ||
129 | rb_erase(node, &swsusp_extents); | ||
130 | for (offset = ext->start; offset <= ext->end; offset++) | ||
131 | swap_free(swp_entry(swap, offset)); | ||
132 | |||
133 | kfree(ext); | ||
134 | } | ||
135 | } | ||
136 | |||
137 | int swsusp_swap_in_use(void) | ||
138 | { | ||
139 | return (swsusp_extents.rb_node != NULL); | ||
140 | } | ||
141 | |||
41 | /* | 142 | /* |
42 | * General things | 143 | * General things |
43 | */ | 144 | */ |
@@ -336,7 +437,7 @@ static int save_image(struct swap_map_handle *handle, | |||
336 | if (ret) | 437 | if (ret) |
337 | break; | 438 | break; |
338 | if (!(nr_pages % m)) | 439 | if (!(nr_pages % m)) |
339 | printk("\b\b\b\b%3d%%", nr_pages / m); | 440 | printk(KERN_CONT "\b\b\b\b%3d%%", nr_pages / m); |
340 | nr_pages++; | 441 | nr_pages++; |
341 | } | 442 | } |
342 | err2 = wait_on_bio_chain(&bio); | 443 | err2 = wait_on_bio_chain(&bio); |
@@ -344,9 +445,9 @@ static int save_image(struct swap_map_handle *handle, | |||
344 | if (!ret) | 445 | if (!ret) |
345 | ret = err2; | 446 | ret = err2; |
346 | if (!ret) | 447 | if (!ret) |
347 | printk("\b\b\b\bdone\n"); | 448 | printk(KERN_CONT "\b\b\b\bdone\n"); |
348 | else | 449 | else |
349 | printk("\n"); | 450 | printk(KERN_CONT "\n"); |
350 | swsusp_show_speed(&start, &stop, nr_to_write, "Wrote"); | 451 | swsusp_show_speed(&start, &stop, nr_to_write, "Wrote"); |
351 | return ret; | 452 | return ret; |
352 | } | 453 | } |
diff --git a/kernel/power/swsusp.c b/kernel/power/swsusp.c index 6a07f4dbf2f8..5b3601bd1893 100644 --- a/kernel/power/swsusp.c +++ b/kernel/power/swsusp.c | |||
@@ -56,133 +56,3 @@ | |||
56 | #include "power.h" | 56 | #include "power.h" |
57 | 57 | ||
58 | int in_suspend __nosavedata = 0; | 58 | int in_suspend __nosavedata = 0; |
59 | |||
60 | /** | ||
61 | * The following functions are used for tracing the allocated | ||
62 | * swap pages, so that they can be freed in case of an error. | ||
63 | */ | ||
64 | |||
65 | struct swsusp_extent { | ||
66 | struct rb_node node; | ||
67 | unsigned long start; | ||
68 | unsigned long end; | ||
69 | }; | ||
70 | |||
71 | static struct rb_root swsusp_extents = RB_ROOT; | ||
72 | |||
73 | static int swsusp_extents_insert(unsigned long swap_offset) | ||
74 | { | ||
75 | struct rb_node **new = &(swsusp_extents.rb_node); | ||
76 | struct rb_node *parent = NULL; | ||
77 | struct swsusp_extent *ext; | ||
78 | |||
79 | /* Figure out where to put the new node */ | ||
80 | while (*new) { | ||
81 | ext = container_of(*new, struct swsusp_extent, node); | ||
82 | parent = *new; | ||
83 | if (swap_offset < ext->start) { | ||
84 | /* Try to merge */ | ||
85 | if (swap_offset == ext->start - 1) { | ||
86 | ext->start--; | ||
87 | return 0; | ||
88 | } | ||
89 | new = &((*new)->rb_left); | ||
90 | } else if (swap_offset > ext->end) { | ||
91 | /* Try to merge */ | ||
92 | if (swap_offset == ext->end + 1) { | ||
93 | ext->end++; | ||
94 | return 0; | ||
95 | } | ||
96 | new = &((*new)->rb_right); | ||
97 | } else { | ||
98 | /* It already is in the tree */ | ||
99 | return -EINVAL; | ||
100 | } | ||
101 | } | ||
102 | /* Add the new node and rebalance the tree. */ | ||
103 | ext = kzalloc(sizeof(struct swsusp_extent), GFP_KERNEL); | ||
104 | if (!ext) | ||
105 | return -ENOMEM; | ||
106 | |||
107 | ext->start = swap_offset; | ||
108 | ext->end = swap_offset; | ||
109 | rb_link_node(&ext->node, parent, new); | ||
110 | rb_insert_color(&ext->node, &swsusp_extents); | ||
111 | return 0; | ||
112 | } | ||
113 | |||
114 | /** | ||
115 | * alloc_swapdev_block - allocate a swap page and register that it has | ||
116 | * been allocated, so that it can be freed in case of an error. | ||
117 | */ | ||
118 | |||
119 | sector_t alloc_swapdev_block(int swap) | ||
120 | { | ||
121 | unsigned long offset; | ||
122 | |||
123 | offset = swp_offset(get_swap_page_of_type(swap)); | ||
124 | if (offset) { | ||
125 | if (swsusp_extents_insert(offset)) | ||
126 | swap_free(swp_entry(swap, offset)); | ||
127 | else | ||
128 | return swapdev_block(swap, offset); | ||
129 | } | ||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | /** | ||
134 | * free_all_swap_pages - free swap pages allocated for saving image data. | ||
135 | * It also frees the extents used to register which swap entres had been | ||
136 | * allocated. | ||
137 | */ | ||
138 | |||
139 | void free_all_swap_pages(int swap) | ||
140 | { | ||
141 | struct rb_node *node; | ||
142 | |||
143 | while ((node = swsusp_extents.rb_node)) { | ||
144 | struct swsusp_extent *ext; | ||
145 | unsigned long offset; | ||
146 | |||
147 | ext = container_of(node, struct swsusp_extent, node); | ||
148 | rb_erase(node, &swsusp_extents); | ||
149 | for (offset = ext->start; offset <= ext->end; offset++) | ||
150 | swap_free(swp_entry(swap, offset)); | ||
151 | |||
152 | kfree(ext); | ||
153 | } | ||
154 | } | ||
155 | |||
156 | int swsusp_swap_in_use(void) | ||
157 | { | ||
158 | return (swsusp_extents.rb_node != NULL); | ||
159 | } | ||
160 | |||
161 | /** | ||
162 | * swsusp_show_speed - print the time elapsed between two events represented by | ||
163 | * @start and @stop | ||
164 | * | ||
165 | * @nr_pages - number of pages processed between @start and @stop | ||
166 | * @msg - introductory message to print | ||
167 | */ | ||
168 | |||
169 | void swsusp_show_speed(struct timeval *start, struct timeval *stop, | ||
170 | unsigned nr_pages, char *msg) | ||
171 | { | ||
172 | s64 elapsed_centisecs64; | ||
173 | int centisecs; | ||
174 | int k; | ||
175 | int kps; | ||
176 | |||
177 | elapsed_centisecs64 = timeval_to_ns(stop) - timeval_to_ns(start); | ||
178 | do_div(elapsed_centisecs64, NSEC_PER_SEC / 100); | ||
179 | centisecs = elapsed_centisecs64; | ||
180 | if (centisecs == 0) | ||
181 | centisecs = 1; /* avoid div-by-zero */ | ||
182 | k = nr_pages * (PAGE_SIZE / 1024); | ||
183 | kps = (k * 100) / centisecs; | ||
184 | printk(KERN_INFO "PM: %s %d kbytes in %d.%02d seconds (%d.%02d MB/s)\n", | ||
185 | msg, k, | ||
186 | centisecs / 100, centisecs % 100, | ||
187 | kps / 1000, (kps % 1000) / 10); | ||
188 | } | ||
diff --git a/kernel/resource.c b/kernel/resource.c index fb11a58b9594..dc15686b7a77 100644 --- a/kernel/resource.c +++ b/kernel/resource.c | |||
@@ -308,35 +308,37 @@ static int find_resource(struct resource *root, struct resource *new, | |||
308 | void *alignf_data) | 308 | void *alignf_data) |
309 | { | 309 | { |
310 | struct resource *this = root->child; | 310 | struct resource *this = root->child; |
311 | resource_size_t start, end; | ||
311 | 312 | ||
312 | new->start = root->start; | 313 | start = root->start; |
313 | /* | 314 | /* |
314 | * Skip past an allocated resource that starts at 0, since the assignment | 315 | * Skip past an allocated resource that starts at 0, since the assignment |
315 | * of this->start - 1 to new->end below would cause an underflow. | 316 | * of this->start - 1 to new->end below would cause an underflow. |
316 | */ | 317 | */ |
317 | if (this && this->start == 0) { | 318 | if (this && this->start == 0) { |
318 | new->start = this->end + 1; | 319 | start = this->end + 1; |
319 | this = this->sibling; | 320 | this = this->sibling; |
320 | } | 321 | } |
321 | for(;;) { | 322 | for(;;) { |
322 | if (this) | 323 | if (this) |
323 | new->end = this->start - 1; | 324 | end = this->start - 1; |
324 | else | 325 | else |
325 | new->end = root->end; | 326 | end = root->end; |
326 | if (new->start < min) | 327 | if (start < min) |
327 | new->start = min; | 328 | start = min; |
328 | if (new->end > max) | 329 | if (end > max) |
329 | new->end = max; | 330 | end = max; |
330 | new->start = ALIGN(new->start, align); | 331 | start = ALIGN(start, align); |
331 | if (alignf) | 332 | if (alignf) |
332 | alignf(alignf_data, new, size, align); | 333 | alignf(alignf_data, new, size, align); |
333 | if (new->start < new->end && new->end - new->start >= size - 1) { | 334 | if (start < end && end - start >= size - 1) { |
334 | new->end = new->start + size - 1; | 335 | new->start = start; |
336 | new->end = start + size - 1; | ||
335 | return 0; | 337 | return 0; |
336 | } | 338 | } |
337 | if (!this) | 339 | if (!this) |
338 | break; | 340 | break; |
339 | new->start = this->end + 1; | 341 | start = this->end + 1; |
340 | this = this->sibling; | 342 | this = this->sibling; |
341 | } | 343 | } |
342 | return -EBUSY; | 344 | return -EBUSY; |
diff --git a/kernel/sched.c b/kernel/sched.c index bc68037f3199..ff39cadf621e 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -7449,17 +7449,16 @@ static struct ctl_table sd_ctl_dir[] = { | |||
7449 | .procname = "sched_domain", | 7449 | .procname = "sched_domain", |
7450 | .mode = 0555, | 7450 | .mode = 0555, |
7451 | }, | 7451 | }, |
7452 | {0, }, | 7452 | {} |
7453 | }; | 7453 | }; |
7454 | 7454 | ||
7455 | static struct ctl_table sd_ctl_root[] = { | 7455 | static struct ctl_table sd_ctl_root[] = { |
7456 | { | 7456 | { |
7457 | .ctl_name = CTL_KERN, | ||
7458 | .procname = "kernel", | 7457 | .procname = "kernel", |
7459 | .mode = 0555, | 7458 | .mode = 0555, |
7460 | .child = sd_ctl_dir, | 7459 | .child = sd_ctl_dir, |
7461 | }, | 7460 | }, |
7462 | {0, }, | 7461 | {} |
7463 | }; | 7462 | }; |
7464 | 7463 | ||
7465 | static struct ctl_table *sd_alloc_ctl_entry(int n) | 7464 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
diff --git a/kernel/slow-work.c b/kernel/slow-work.c index 00889bd3c590..7494bbf5a270 100644 --- a/kernel/slow-work.c +++ b/kernel/slow-work.c | |||
@@ -49,7 +49,6 @@ static const int slow_work_max_vslow = 99; | |||
49 | 49 | ||
50 | ctl_table slow_work_sysctls[] = { | 50 | ctl_table slow_work_sysctls[] = { |
51 | { | 51 | { |
52 | .ctl_name = CTL_UNNUMBERED, | ||
53 | .procname = "min-threads", | 52 | .procname = "min-threads", |
54 | .data = &slow_work_min_threads, | 53 | .data = &slow_work_min_threads, |
55 | .maxlen = sizeof(unsigned), | 54 | .maxlen = sizeof(unsigned), |
@@ -59,7 +58,6 @@ ctl_table slow_work_sysctls[] = { | |||
59 | .extra2 = &slow_work_max_threads, | 58 | .extra2 = &slow_work_max_threads, |
60 | }, | 59 | }, |
61 | { | 60 | { |
62 | .ctl_name = CTL_UNNUMBERED, | ||
63 | .procname = "max-threads", | 61 | .procname = "max-threads", |
64 | .data = &slow_work_max_threads, | 62 | .data = &slow_work_max_threads, |
65 | .maxlen = sizeof(unsigned), | 63 | .maxlen = sizeof(unsigned), |
@@ -69,16 +67,15 @@ ctl_table slow_work_sysctls[] = { | |||
69 | .extra2 = (void *) &slow_work_max_max_threads, | 67 | .extra2 = (void *) &slow_work_max_max_threads, |
70 | }, | 68 | }, |
71 | { | 69 | { |
72 | .ctl_name = CTL_UNNUMBERED, | ||
73 | .procname = "vslow-percentage", | 70 | .procname = "vslow-percentage", |
74 | .data = &vslow_work_proportion, | 71 | .data = &vslow_work_proportion, |
75 | .maxlen = sizeof(unsigned), | 72 | .maxlen = sizeof(unsigned), |
76 | .mode = 0644, | 73 | .mode = 0644, |
77 | .proc_handler = &proc_dointvec_minmax, | 74 | .proc_handler = proc_dointvec_minmax, |
78 | .extra1 = (void *) &slow_work_min_vslow, | 75 | .extra1 = (void *) &slow_work_min_vslow, |
79 | .extra2 = (void *) &slow_work_max_vslow, | 76 | .extra2 = (void *) &slow_work_max_vslow, |
80 | }, | 77 | }, |
81 | { .ctl_name = 0 } | 78 | {} |
82 | }; | 79 | }; |
83 | #endif | 80 | #endif |
84 | 81 | ||
diff --git a/kernel/sys.c b/kernel/sys.c index 9968c5fb55b9..585d6cd10040 100644 --- a/kernel/sys.c +++ b/kernel/sys.c | |||
@@ -8,7 +8,6 @@ | |||
8 | #include <linux/mm.h> | 8 | #include <linux/mm.h> |
9 | #include <linux/utsname.h> | 9 | #include <linux/utsname.h> |
10 | #include <linux/mman.h> | 10 | #include <linux/mman.h> |
11 | #include <linux/smp_lock.h> | ||
12 | #include <linux/notifier.h> | 11 | #include <linux/notifier.h> |
13 | #include <linux/reboot.h> | 12 | #include <linux/reboot.h> |
14 | #include <linux/prctl.h> | 13 | #include <linux/prctl.h> |
@@ -349,6 +348,9 @@ void kernel_power_off(void) | |||
349 | machine_power_off(); | 348 | machine_power_off(); |
350 | } | 349 | } |
351 | EXPORT_SYMBOL_GPL(kernel_power_off); | 350 | EXPORT_SYMBOL_GPL(kernel_power_off); |
351 | |||
352 | static DEFINE_MUTEX(reboot_mutex); | ||
353 | |||
352 | /* | 354 | /* |
353 | * Reboot system call: for obvious reasons only root may call it, | 355 | * Reboot system call: for obvious reasons only root may call it, |
354 | * and even root needs to set up some magic numbers in the registers | 356 | * and even root needs to set up some magic numbers in the registers |
@@ -381,7 +383,7 @@ SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, | |||
381 | if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off) | 383 | if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off) |
382 | cmd = LINUX_REBOOT_CMD_HALT; | 384 | cmd = LINUX_REBOOT_CMD_HALT; |
383 | 385 | ||
384 | lock_kernel(); | 386 | mutex_lock(&reboot_mutex); |
385 | switch (cmd) { | 387 | switch (cmd) { |
386 | case LINUX_REBOOT_CMD_RESTART: | 388 | case LINUX_REBOOT_CMD_RESTART: |
387 | kernel_restart(NULL); | 389 | kernel_restart(NULL); |
@@ -397,20 +399,18 @@ SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, | |||
397 | 399 | ||
398 | case LINUX_REBOOT_CMD_HALT: | 400 | case LINUX_REBOOT_CMD_HALT: |
399 | kernel_halt(); | 401 | kernel_halt(); |
400 | unlock_kernel(); | ||
401 | do_exit(0); | 402 | do_exit(0); |
402 | panic("cannot halt"); | 403 | panic("cannot halt"); |
403 | 404 | ||
404 | case LINUX_REBOOT_CMD_POWER_OFF: | 405 | case LINUX_REBOOT_CMD_POWER_OFF: |
405 | kernel_power_off(); | 406 | kernel_power_off(); |
406 | unlock_kernel(); | ||
407 | do_exit(0); | 407 | do_exit(0); |
408 | break; | 408 | break; |
409 | 409 | ||
410 | case LINUX_REBOOT_CMD_RESTART2: | 410 | case LINUX_REBOOT_CMD_RESTART2: |
411 | if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) { | 411 | if (strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1) < 0) { |
412 | unlock_kernel(); | 412 | ret = -EFAULT; |
413 | return -EFAULT; | 413 | break; |
414 | } | 414 | } |
415 | buffer[sizeof(buffer) - 1] = '\0'; | 415 | buffer[sizeof(buffer) - 1] = '\0'; |
416 | 416 | ||
@@ -433,7 +433,7 @@ SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd, | |||
433 | ret = -EINVAL; | 433 | ret = -EINVAL; |
434 | break; | 434 | break; |
435 | } | 435 | } |
436 | unlock_kernel(); | 436 | mutex_unlock(&reboot_mutex); |
437 | return ret; | 437 | return ret; |
438 | } | 438 | } |
439 | 439 | ||
diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c index e06d0b8d1951..695384f12a7d 100644 --- a/kernel/sys_ni.c +++ b/kernel/sys_ni.c | |||
@@ -48,8 +48,10 @@ cond_syscall(sys_shutdown); | |||
48 | cond_syscall(sys_sendmsg); | 48 | cond_syscall(sys_sendmsg); |
49 | cond_syscall(compat_sys_sendmsg); | 49 | cond_syscall(compat_sys_sendmsg); |
50 | cond_syscall(sys_recvmsg); | 50 | cond_syscall(sys_recvmsg); |
51 | cond_syscall(sys_recvmmsg); | ||
51 | cond_syscall(compat_sys_recvmsg); | 52 | cond_syscall(compat_sys_recvmsg); |
52 | cond_syscall(compat_sys_recvfrom); | 53 | cond_syscall(compat_sys_recvfrom); |
54 | cond_syscall(compat_sys_recvmmsg); | ||
53 | cond_syscall(sys_socketcall); | 55 | cond_syscall(sys_socketcall); |
54 | cond_syscall(sys_futex); | 56 | cond_syscall(sys_futex); |
55 | cond_syscall(compat_sys_futex); | 57 | cond_syscall(compat_sys_futex); |
@@ -139,7 +141,6 @@ cond_syscall(sys_pciconfig_read); | |||
139 | cond_syscall(sys_pciconfig_write); | 141 | cond_syscall(sys_pciconfig_write); |
140 | cond_syscall(sys_pciconfig_iobase); | 142 | cond_syscall(sys_pciconfig_iobase); |
141 | cond_syscall(sys32_ipc); | 143 | cond_syscall(sys32_ipc); |
142 | cond_syscall(sys32_sysctl); | ||
143 | cond_syscall(ppc_rtas); | 144 | cond_syscall(ppc_rtas); |
144 | cond_syscall(sys_spu_run); | 145 | cond_syscall(sys_spu_run); |
145 | cond_syscall(sys_spu_create); | 146 | cond_syscall(sys_spu_create); |
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index b9e5a45f1e28..554ac4894f0f 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <linux/security.h> | 27 | #include <linux/security.h> |
28 | #include <linux/ctype.h> | 28 | #include <linux/ctype.h> |
29 | #include <linux/kmemcheck.h> | 29 | #include <linux/kmemcheck.h> |
30 | #include <linux/smp_lock.h> | ||
31 | #include <linux/fs.h> | 30 | #include <linux/fs.h> |
32 | #include <linux/init.h> | 31 | #include <linux/init.h> |
33 | #include <linux/kernel.h> | 32 | #include <linux/kernel.h> |
@@ -61,7 +60,6 @@ | |||
61 | #include <asm/io.h> | 60 | #include <asm/io.h> |
62 | #endif | 61 | #endif |
63 | 62 | ||
64 | static int deprecated_sysctl_warning(struct __sysctl_args *args); | ||
65 | 63 | ||
66 | #if defined(CONFIG_SYSCTL) | 64 | #if defined(CONFIG_SYSCTL) |
67 | 65 | ||
@@ -210,31 +208,26 @@ extern int lock_stat; | |||
210 | 208 | ||
211 | static struct ctl_table root_table[] = { | 209 | static struct ctl_table root_table[] = { |
212 | { | 210 | { |
213 | .ctl_name = CTL_KERN, | ||
214 | .procname = "kernel", | 211 | .procname = "kernel", |
215 | .mode = 0555, | 212 | .mode = 0555, |
216 | .child = kern_table, | 213 | .child = kern_table, |
217 | }, | 214 | }, |
218 | { | 215 | { |
219 | .ctl_name = CTL_VM, | ||
220 | .procname = "vm", | 216 | .procname = "vm", |
221 | .mode = 0555, | 217 | .mode = 0555, |
222 | .child = vm_table, | 218 | .child = vm_table, |
223 | }, | 219 | }, |
224 | { | 220 | { |
225 | .ctl_name = CTL_FS, | ||
226 | .procname = "fs", | 221 | .procname = "fs", |
227 | .mode = 0555, | 222 | .mode = 0555, |
228 | .child = fs_table, | 223 | .child = fs_table, |
229 | }, | 224 | }, |
230 | { | 225 | { |
231 | .ctl_name = CTL_DEBUG, | ||
232 | .procname = "debug", | 226 | .procname = "debug", |
233 | .mode = 0555, | 227 | .mode = 0555, |
234 | .child = debug_table, | 228 | .child = debug_table, |
235 | }, | 229 | }, |
236 | { | 230 | { |
237 | .ctl_name = CTL_DEV, | ||
238 | .procname = "dev", | 231 | .procname = "dev", |
239 | .mode = 0555, | 232 | .mode = 0555, |
240 | .child = dev_table, | 233 | .child = dev_table, |
@@ -243,7 +236,7 @@ static struct ctl_table root_table[] = { | |||
243 | * NOTE: do not add new entries to this table unless you have read | 236 | * NOTE: do not add new entries to this table unless you have read |
244 | * Documentation/sysctl/ctl_unnumbered.txt | 237 | * Documentation/sysctl/ctl_unnumbered.txt |
245 | */ | 238 | */ |
246 | { .ctl_name = 0 } | 239 | { } |
247 | }; | 240 | }; |
248 | 241 | ||
249 | #ifdef CONFIG_SCHED_DEBUG | 242 | #ifdef CONFIG_SCHED_DEBUG |
@@ -259,198 +252,170 @@ static int max_sched_shares_ratelimit = NSEC_PER_SEC; /* 1 second */ | |||
259 | 252 | ||
260 | static struct ctl_table kern_table[] = { | 253 | static struct ctl_table kern_table[] = { |
261 | { | 254 | { |
262 | .ctl_name = CTL_UNNUMBERED, | ||
263 | .procname = "sched_child_runs_first", | 255 | .procname = "sched_child_runs_first", |
264 | .data = &sysctl_sched_child_runs_first, | 256 | .data = &sysctl_sched_child_runs_first, |
265 | .maxlen = sizeof(unsigned int), | 257 | .maxlen = sizeof(unsigned int), |
266 | .mode = 0644, | 258 | .mode = 0644, |
267 | .proc_handler = &proc_dointvec, | 259 | .proc_handler = proc_dointvec, |
268 | }, | 260 | }, |
269 | #ifdef CONFIG_SCHED_DEBUG | 261 | #ifdef CONFIG_SCHED_DEBUG |
270 | { | 262 | { |
271 | .ctl_name = CTL_UNNUMBERED, | ||
272 | .procname = "sched_min_granularity_ns", | 263 | .procname = "sched_min_granularity_ns", |
273 | .data = &sysctl_sched_min_granularity, | 264 | .data = &sysctl_sched_min_granularity, |
274 | .maxlen = sizeof(unsigned int), | 265 | .maxlen = sizeof(unsigned int), |
275 | .mode = 0644, | 266 | .mode = 0644, |
276 | .proc_handler = &sched_proc_update_handler, | 267 | .proc_handler = sched_proc_update_handler, |
277 | .strategy = &sysctl_intvec, | ||
278 | .extra1 = &min_sched_granularity_ns, | 268 | .extra1 = &min_sched_granularity_ns, |
279 | .extra2 = &max_sched_granularity_ns, | 269 | .extra2 = &max_sched_granularity_ns, |
280 | }, | 270 | }, |
281 | { | 271 | { |
282 | .ctl_name = CTL_UNNUMBERED, | ||
283 | .procname = "sched_latency_ns", | 272 | .procname = "sched_latency_ns", |
284 | .data = &sysctl_sched_latency, | 273 | .data = &sysctl_sched_latency, |
285 | .maxlen = sizeof(unsigned int), | 274 | .maxlen = sizeof(unsigned int), |
286 | .mode = 0644, | 275 | .mode = 0644, |
287 | .proc_handler = &sched_proc_update_handler, | 276 | .proc_handler = sched_proc_update_handler, |
288 | .strategy = &sysctl_intvec, | ||
289 | .extra1 = &min_sched_granularity_ns, | 277 | .extra1 = &min_sched_granularity_ns, |
290 | .extra2 = &max_sched_granularity_ns, | 278 | .extra2 = &max_sched_granularity_ns, |
291 | }, | 279 | }, |
292 | { | 280 | { |
293 | .ctl_name = CTL_UNNUMBERED, | ||
294 | .procname = "sched_wakeup_granularity_ns", | 281 | .procname = "sched_wakeup_granularity_ns", |
295 | .data = &sysctl_sched_wakeup_granularity, | 282 | .data = &sysctl_sched_wakeup_granularity, |
296 | .maxlen = sizeof(unsigned int), | 283 | .maxlen = sizeof(unsigned int), |
297 | .mode = 0644, | 284 | .mode = 0644, |
298 | .proc_handler = &sched_proc_update_handler, | 285 | .proc_handler = sched_proc_update_handler, |
299 | .strategy = &sysctl_intvec, | ||
300 | .extra1 = &min_wakeup_granularity_ns, | 286 | .extra1 = &min_wakeup_granularity_ns, |
301 | .extra2 = &max_wakeup_granularity_ns, | 287 | .extra2 = &max_wakeup_granularity_ns, |
302 | }, | 288 | }, |
303 | { | 289 | { |
304 | .ctl_name = CTL_UNNUMBERED, | ||
305 | .procname = "sched_shares_ratelimit", | 290 | .procname = "sched_shares_ratelimit", |
306 | .data = &sysctl_sched_shares_ratelimit, | 291 | .data = &sysctl_sched_shares_ratelimit, |
307 | .maxlen = sizeof(unsigned int), | 292 | .maxlen = sizeof(unsigned int), |
308 | .mode = 0644, | 293 | .mode = 0644, |
309 | .proc_handler = &sched_proc_update_handler, | 294 | .proc_handler = sched_proc_update_handler, |
310 | .extra1 = &min_sched_shares_ratelimit, | 295 | .extra1 = &min_sched_shares_ratelimit, |
311 | .extra2 = &max_sched_shares_ratelimit, | 296 | .extra2 = &max_sched_shares_ratelimit, |
312 | }, | 297 | }, |
313 | { | 298 | { |
314 | .ctl_name = CTL_UNNUMBERED, | ||
315 | .procname = "sched_tunable_scaling", | 299 | .procname = "sched_tunable_scaling", |
316 | .data = &sysctl_sched_tunable_scaling, | 300 | .data = &sysctl_sched_tunable_scaling, |
317 | .maxlen = sizeof(enum sched_tunable_scaling), | 301 | .maxlen = sizeof(enum sched_tunable_scaling), |
318 | .mode = 0644, | 302 | .mode = 0644, |
319 | .proc_handler = &sched_proc_update_handler, | 303 | .proc_handler = sched_proc_update_handler, |
320 | .strategy = &sysctl_intvec, | ||
321 | .extra1 = &min_sched_tunable_scaling, | 304 | .extra1 = &min_sched_tunable_scaling, |
322 | .extra2 = &max_sched_tunable_scaling, | 305 | .extra2 = &max_sched_tunable_scaling, |
323 | }, | 306 | }, |
324 | |||
325 | { | 307 | { |
326 | .ctl_name = CTL_UNNUMBERED, | ||
327 | .procname = "sched_shares_thresh", | 308 | .procname = "sched_shares_thresh", |
328 | .data = &sysctl_sched_shares_thresh, | 309 | .data = &sysctl_sched_shares_thresh, |
329 | .maxlen = sizeof(unsigned int), | 310 | .maxlen = sizeof(unsigned int), |
330 | .mode = 0644, | 311 | .mode = 0644, |
331 | .proc_handler = &proc_dointvec_minmax, | 312 | .proc_handler = proc_dointvec_minmax, |
332 | .strategy = &sysctl_intvec, | ||
333 | .extra1 = &zero, | 313 | .extra1 = &zero, |
334 | }, | 314 | }, |
335 | { | 315 | { |
336 | .ctl_name = CTL_UNNUMBERED, | ||
337 | .procname = "sched_migration_cost", | 316 | .procname = "sched_migration_cost", |
338 | .data = &sysctl_sched_migration_cost, | 317 | .data = &sysctl_sched_migration_cost, |
339 | .maxlen = sizeof(unsigned int), | 318 | .maxlen = sizeof(unsigned int), |
340 | .mode = 0644, | 319 | .mode = 0644, |
341 | .proc_handler = &proc_dointvec, | 320 | .proc_handler = proc_dointvec, |
342 | }, | 321 | }, |
343 | { | 322 | { |
344 | .ctl_name = CTL_UNNUMBERED, | ||
345 | .procname = "sched_nr_migrate", | 323 | .procname = "sched_nr_migrate", |
346 | .data = &sysctl_sched_nr_migrate, | 324 | .data = &sysctl_sched_nr_migrate, |
347 | .maxlen = sizeof(unsigned int), | 325 | .maxlen = sizeof(unsigned int), |
348 | .mode = 0644, | 326 | .mode = 0644, |
349 | .proc_handler = &proc_dointvec, | 327 | .proc_handler = proc_dointvec, |
350 | }, | 328 | }, |
351 | { | 329 | { |
352 | .ctl_name = CTL_UNNUMBERED, | ||
353 | .procname = "sched_time_avg", | 330 | .procname = "sched_time_avg", |
354 | .data = &sysctl_sched_time_avg, | 331 | .data = &sysctl_sched_time_avg, |
355 | .maxlen = sizeof(unsigned int), | 332 | .maxlen = sizeof(unsigned int), |
356 | .mode = 0644, | 333 | .mode = 0644, |
357 | .proc_handler = &proc_dointvec, | 334 | .proc_handler = proc_dointvec, |
358 | }, | 335 | }, |
359 | { | 336 | { |
360 | .ctl_name = CTL_UNNUMBERED, | ||
361 | .procname = "timer_migration", | 337 | .procname = "timer_migration", |
362 | .data = &sysctl_timer_migration, | 338 | .data = &sysctl_timer_migration, |
363 | .maxlen = sizeof(unsigned int), | 339 | .maxlen = sizeof(unsigned int), |
364 | .mode = 0644, | 340 | .mode = 0644, |
365 | .proc_handler = &proc_dointvec_minmax, | 341 | .proc_handler = proc_dointvec_minmax, |
366 | .strategy = &sysctl_intvec, | ||
367 | .extra1 = &zero, | 342 | .extra1 = &zero, |
368 | .extra2 = &one, | 343 | .extra2 = &one, |
369 | }, | 344 | }, |
370 | #endif | 345 | #endif |
371 | { | 346 | { |
372 | .ctl_name = CTL_UNNUMBERED, | ||
373 | .procname = "sched_rt_period_us", | 347 | .procname = "sched_rt_period_us", |
374 | .data = &sysctl_sched_rt_period, | 348 | .data = &sysctl_sched_rt_period, |
375 | .maxlen = sizeof(unsigned int), | 349 | .maxlen = sizeof(unsigned int), |
376 | .mode = 0644, | 350 | .mode = 0644, |
377 | .proc_handler = &sched_rt_handler, | 351 | .proc_handler = sched_rt_handler, |
378 | }, | 352 | }, |
379 | { | 353 | { |
380 | .ctl_name = CTL_UNNUMBERED, | ||
381 | .procname = "sched_rt_runtime_us", | 354 | .procname = "sched_rt_runtime_us", |
382 | .data = &sysctl_sched_rt_runtime, | 355 | .data = &sysctl_sched_rt_runtime, |
383 | .maxlen = sizeof(int), | 356 | .maxlen = sizeof(int), |
384 | .mode = 0644, | 357 | .mode = 0644, |
385 | .proc_handler = &sched_rt_handler, | 358 | .proc_handler = sched_rt_handler, |
386 | }, | 359 | }, |
387 | { | 360 | { |
388 | .ctl_name = CTL_UNNUMBERED, | ||
389 | .procname = "sched_compat_yield", | 361 | .procname = "sched_compat_yield", |
390 | .data = &sysctl_sched_compat_yield, | 362 | .data = &sysctl_sched_compat_yield, |
391 | .maxlen = sizeof(unsigned int), | 363 | .maxlen = sizeof(unsigned int), |
392 | .mode = 0644, | 364 | .mode = 0644, |
393 | .proc_handler = &proc_dointvec, | 365 | .proc_handler = proc_dointvec, |
394 | }, | 366 | }, |
395 | #ifdef CONFIG_PROVE_LOCKING | 367 | #ifdef CONFIG_PROVE_LOCKING |
396 | { | 368 | { |
397 | .ctl_name = CTL_UNNUMBERED, | ||
398 | .procname = "prove_locking", | 369 | .procname = "prove_locking", |
399 | .data = &prove_locking, | 370 | .data = &prove_locking, |
400 | .maxlen = sizeof(int), | 371 | .maxlen = sizeof(int), |
401 | .mode = 0644, | 372 | .mode = 0644, |
402 | .proc_handler = &proc_dointvec, | 373 | .proc_handler = proc_dointvec, |
403 | }, | 374 | }, |
404 | #endif | 375 | #endif |
405 | #ifdef CONFIG_LOCK_STAT | 376 | #ifdef CONFIG_LOCK_STAT |
406 | { | 377 | { |
407 | .ctl_name = CTL_UNNUMBERED, | ||
408 | .procname = "lock_stat", | 378 | .procname = "lock_stat", |
409 | .data = &lock_stat, | 379 | .data = &lock_stat, |
410 | .maxlen = sizeof(int), | 380 | .maxlen = sizeof(int), |
411 | .mode = 0644, | 381 | .mode = 0644, |
412 | .proc_handler = &proc_dointvec, | 382 | .proc_handler = proc_dointvec, |
413 | }, | 383 | }, |
414 | #endif | 384 | #endif |
415 | { | 385 | { |
416 | .ctl_name = KERN_PANIC, | ||
417 | .procname = "panic", | 386 | .procname = "panic", |
418 | .data = &panic_timeout, | 387 | .data = &panic_timeout, |
419 | .maxlen = sizeof(int), | 388 | .maxlen = sizeof(int), |
420 | .mode = 0644, | 389 | .mode = 0644, |
421 | .proc_handler = &proc_dointvec, | 390 | .proc_handler = proc_dointvec, |
422 | }, | 391 | }, |
423 | { | 392 | { |
424 | .ctl_name = KERN_CORE_USES_PID, | ||
425 | .procname = "core_uses_pid", | 393 | .procname = "core_uses_pid", |
426 | .data = &core_uses_pid, | 394 | .data = &core_uses_pid, |
427 | .maxlen = sizeof(int), | 395 | .maxlen = sizeof(int), |
428 | .mode = 0644, | 396 | .mode = 0644, |
429 | .proc_handler = &proc_dointvec, | 397 | .proc_handler = proc_dointvec, |
430 | }, | 398 | }, |
431 | { | 399 | { |
432 | .ctl_name = KERN_CORE_PATTERN, | ||
433 | .procname = "core_pattern", | 400 | .procname = "core_pattern", |
434 | .data = core_pattern, | 401 | .data = core_pattern, |
435 | .maxlen = CORENAME_MAX_SIZE, | 402 | .maxlen = CORENAME_MAX_SIZE, |
436 | .mode = 0644, | 403 | .mode = 0644, |
437 | .proc_handler = &proc_dostring, | 404 | .proc_handler = proc_dostring, |
438 | .strategy = &sysctl_string, | ||
439 | }, | 405 | }, |
440 | { | 406 | { |
441 | .ctl_name = CTL_UNNUMBERED, | ||
442 | .procname = "core_pipe_limit", | 407 | .procname = "core_pipe_limit", |
443 | .data = &core_pipe_limit, | 408 | .data = &core_pipe_limit, |
444 | .maxlen = sizeof(unsigned int), | 409 | .maxlen = sizeof(unsigned int), |
445 | .mode = 0644, | 410 | .mode = 0644, |
446 | .proc_handler = &proc_dointvec, | 411 | .proc_handler = proc_dointvec, |
447 | }, | 412 | }, |
448 | #ifdef CONFIG_PROC_SYSCTL | 413 | #ifdef CONFIG_PROC_SYSCTL |
449 | { | 414 | { |
450 | .procname = "tainted", | 415 | .procname = "tainted", |
451 | .maxlen = sizeof(long), | 416 | .maxlen = sizeof(long), |
452 | .mode = 0644, | 417 | .mode = 0644, |
453 | .proc_handler = &proc_taint, | 418 | .proc_handler = proc_taint, |
454 | }, | 419 | }, |
455 | #endif | 420 | #endif |
456 | #ifdef CONFIG_LATENCYTOP | 421 | #ifdef CONFIG_LATENCYTOP |
@@ -459,181 +424,160 @@ static struct ctl_table kern_table[] = { | |||
459 | .data = &latencytop_enabled, | 424 | .data = &latencytop_enabled, |
460 | .maxlen = sizeof(int), | 425 | .maxlen = sizeof(int), |
461 | .mode = 0644, | 426 | .mode = 0644, |
462 | .proc_handler = &proc_dointvec, | 427 | .proc_handler = proc_dointvec, |
463 | }, | 428 | }, |
464 | #endif | 429 | #endif |
465 | #ifdef CONFIG_BLK_DEV_INITRD | 430 | #ifdef CONFIG_BLK_DEV_INITRD |
466 | { | 431 | { |
467 | .ctl_name = KERN_REALROOTDEV, | ||
468 | .procname = "real-root-dev", | 432 | .procname = "real-root-dev", |
469 | .data = &real_root_dev, | 433 | .data = &real_root_dev, |
470 | .maxlen = sizeof(int), | 434 | .maxlen = sizeof(int), |
471 | .mode = 0644, | 435 | .mode = 0644, |
472 | .proc_handler = &proc_dointvec, | 436 | .proc_handler = proc_dointvec, |
473 | }, | 437 | }, |
474 | #endif | 438 | #endif |
475 | { | 439 | { |
476 | .ctl_name = CTL_UNNUMBERED, | ||
477 | .procname = "print-fatal-signals", | 440 | .procname = "print-fatal-signals", |
478 | .data = &print_fatal_signals, | 441 | .data = &print_fatal_signals, |
479 | .maxlen = sizeof(int), | 442 | .maxlen = sizeof(int), |
480 | .mode = 0644, | 443 | .mode = 0644, |
481 | .proc_handler = &proc_dointvec, | 444 | .proc_handler = proc_dointvec, |
482 | }, | 445 | }, |
483 | #ifdef CONFIG_SPARC | 446 | #ifdef CONFIG_SPARC |
484 | { | 447 | { |
485 | .ctl_name = KERN_SPARC_REBOOT, | ||
486 | .procname = "reboot-cmd", | 448 | .procname = "reboot-cmd", |
487 | .data = reboot_command, | 449 | .data = reboot_command, |
488 | .maxlen = 256, | 450 | .maxlen = 256, |
489 | .mode = 0644, | 451 | .mode = 0644, |
490 | .proc_handler = &proc_dostring, | 452 | .proc_handler = proc_dostring, |
491 | .strategy = &sysctl_string, | ||
492 | }, | 453 | }, |
493 | { | 454 | { |
494 | .ctl_name = KERN_SPARC_STOP_A, | ||
495 | .procname = "stop-a", | 455 | .procname = "stop-a", |
496 | .data = &stop_a_enabled, | 456 | .data = &stop_a_enabled, |
497 | .maxlen = sizeof (int), | 457 | .maxlen = sizeof (int), |
498 | .mode = 0644, | 458 | .mode = 0644, |
499 | .proc_handler = &proc_dointvec, | 459 | .proc_handler = proc_dointvec, |
500 | }, | 460 | }, |
501 | { | 461 | { |
502 | .ctl_name = KERN_SPARC_SCONS_PWROFF, | ||
503 | .procname = "scons-poweroff", | 462 | .procname = "scons-poweroff", |
504 | .data = &scons_pwroff, | 463 | .data = &scons_pwroff, |
505 | .maxlen = sizeof (int), | 464 | .maxlen = sizeof (int), |
506 | .mode = 0644, | 465 | .mode = 0644, |
507 | .proc_handler = &proc_dointvec, | 466 | .proc_handler = proc_dointvec, |
508 | }, | 467 | }, |
509 | #endif | 468 | #endif |
510 | #ifdef CONFIG_SPARC64 | 469 | #ifdef CONFIG_SPARC64 |
511 | { | 470 | { |
512 | .ctl_name = CTL_UNNUMBERED, | ||
513 | .procname = "tsb-ratio", | 471 | .procname = "tsb-ratio", |
514 | .data = &sysctl_tsb_ratio, | 472 | .data = &sysctl_tsb_ratio, |
515 | .maxlen = sizeof (int), | 473 | .maxlen = sizeof (int), |
516 | .mode = 0644, | 474 | .mode = 0644, |
517 | .proc_handler = &proc_dointvec, | 475 | .proc_handler = proc_dointvec, |
518 | }, | 476 | }, |
519 | #endif | 477 | #endif |
520 | #ifdef __hppa__ | 478 | #ifdef __hppa__ |
521 | { | 479 | { |
522 | .ctl_name = KERN_HPPA_PWRSW, | ||
523 | .procname = "soft-power", | 480 | .procname = "soft-power", |
524 | .data = &pwrsw_enabled, | 481 | .data = &pwrsw_enabled, |
525 | .maxlen = sizeof (int), | 482 | .maxlen = sizeof (int), |
526 | .mode = 0644, | 483 | .mode = 0644, |
527 | .proc_handler = &proc_dointvec, | 484 | .proc_handler = proc_dointvec, |
528 | }, | 485 | }, |
529 | { | 486 | { |
530 | .ctl_name = KERN_HPPA_UNALIGNED, | ||
531 | .procname = "unaligned-trap", | 487 | .procname = "unaligned-trap", |
532 | .data = &unaligned_enabled, | 488 | .data = &unaligned_enabled, |
533 | .maxlen = sizeof (int), | 489 | .maxlen = sizeof (int), |
534 | .mode = 0644, | 490 | .mode = 0644, |
535 | .proc_handler = &proc_dointvec, | 491 | .proc_handler = proc_dointvec, |
536 | }, | 492 | }, |
537 | #endif | 493 | #endif |
538 | { | 494 | { |
539 | .ctl_name = KERN_CTLALTDEL, | ||
540 | .procname = "ctrl-alt-del", | 495 | .procname = "ctrl-alt-del", |
541 | .data = &C_A_D, | 496 | .data = &C_A_D, |
542 | .maxlen = sizeof(int), | 497 | .maxlen = sizeof(int), |
543 | .mode = 0644, | 498 | .mode = 0644, |
544 | .proc_handler = &proc_dointvec, | 499 | .proc_handler = proc_dointvec, |
545 | }, | 500 | }, |
546 | #ifdef CONFIG_FUNCTION_TRACER | 501 | #ifdef CONFIG_FUNCTION_TRACER |
547 | { | 502 | { |
548 | .ctl_name = CTL_UNNUMBERED, | ||
549 | .procname = "ftrace_enabled", | 503 | .procname = "ftrace_enabled", |
550 | .data = &ftrace_enabled, | 504 | .data = &ftrace_enabled, |
551 | .maxlen = sizeof(int), | 505 | .maxlen = sizeof(int), |
552 | .mode = 0644, | 506 | .mode = 0644, |
553 | .proc_handler = &ftrace_enable_sysctl, | 507 | .proc_handler = ftrace_enable_sysctl, |
554 | }, | 508 | }, |
555 | #endif | 509 | #endif |
556 | #ifdef CONFIG_STACK_TRACER | 510 | #ifdef CONFIG_STACK_TRACER |
557 | { | 511 | { |
558 | .ctl_name = CTL_UNNUMBERED, | ||
559 | .procname = "stack_tracer_enabled", | 512 | .procname = "stack_tracer_enabled", |
560 | .data = &stack_tracer_enabled, | 513 | .data = &stack_tracer_enabled, |
561 | .maxlen = sizeof(int), | 514 | .maxlen = sizeof(int), |
562 | .mode = 0644, | 515 | .mode = 0644, |
563 | .proc_handler = &stack_trace_sysctl, | 516 | .proc_handler = stack_trace_sysctl, |
564 | }, | 517 | }, |
565 | #endif | 518 | #endif |
566 | #ifdef CONFIG_TRACING | 519 | #ifdef CONFIG_TRACING |
567 | { | 520 | { |
568 | .ctl_name = CTL_UNNUMBERED, | ||
569 | .procname = "ftrace_dump_on_oops", | 521 | .procname = "ftrace_dump_on_oops", |
570 | .data = &ftrace_dump_on_oops, | 522 | .data = &ftrace_dump_on_oops, |
571 | .maxlen = sizeof(int), | 523 | .maxlen = sizeof(int), |
572 | .mode = 0644, | 524 | .mode = 0644, |
573 | .proc_handler = &proc_dointvec, | 525 | .proc_handler = proc_dointvec, |
574 | }, | 526 | }, |
575 | #endif | 527 | #endif |
576 | #ifdef CONFIG_MODULES | 528 | #ifdef CONFIG_MODULES |
577 | { | 529 | { |
578 | .ctl_name = KERN_MODPROBE, | ||
579 | .procname = "modprobe", | 530 | .procname = "modprobe", |
580 | .data = &modprobe_path, | 531 | .data = &modprobe_path, |
581 | .maxlen = KMOD_PATH_LEN, | 532 | .maxlen = KMOD_PATH_LEN, |
582 | .mode = 0644, | 533 | .mode = 0644, |
583 | .proc_handler = &proc_dostring, | 534 | .proc_handler = proc_dostring, |
584 | .strategy = &sysctl_string, | ||
585 | }, | 535 | }, |
586 | { | 536 | { |
587 | .ctl_name = CTL_UNNUMBERED, | ||
588 | .procname = "modules_disabled", | 537 | .procname = "modules_disabled", |
589 | .data = &modules_disabled, | 538 | .data = &modules_disabled, |
590 | .maxlen = sizeof(int), | 539 | .maxlen = sizeof(int), |
591 | .mode = 0644, | 540 | .mode = 0644, |
592 | /* only handle a transition from default "0" to "1" */ | 541 | /* only handle a transition from default "0" to "1" */ |
593 | .proc_handler = &proc_dointvec_minmax, | 542 | .proc_handler = proc_dointvec_minmax, |
594 | .extra1 = &one, | 543 | .extra1 = &one, |
595 | .extra2 = &one, | 544 | .extra2 = &one, |
596 | }, | 545 | }, |
597 | #endif | 546 | #endif |
598 | #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET) | 547 | #if defined(CONFIG_HOTPLUG) && defined(CONFIG_NET) |
599 | { | 548 | { |
600 | .ctl_name = KERN_HOTPLUG, | ||
601 | .procname = "hotplug", | 549 | .procname = "hotplug", |
602 | .data = &uevent_helper, | 550 | .data = &uevent_helper, |
603 | .maxlen = UEVENT_HELPER_PATH_LEN, | 551 | .maxlen = UEVENT_HELPER_PATH_LEN, |
604 | .mode = 0644, | 552 | .mode = 0644, |
605 | .proc_handler = &proc_dostring, | 553 | .proc_handler = proc_dostring, |
606 | .strategy = &sysctl_string, | ||
607 | }, | 554 | }, |
608 | #endif | 555 | #endif |
609 | #ifdef CONFIG_CHR_DEV_SG | 556 | #ifdef CONFIG_CHR_DEV_SG |
610 | { | 557 | { |
611 | .ctl_name = KERN_SG_BIG_BUFF, | ||
612 | .procname = "sg-big-buff", | 558 | .procname = "sg-big-buff", |
613 | .data = &sg_big_buff, | 559 | .data = &sg_big_buff, |
614 | .maxlen = sizeof (int), | 560 | .maxlen = sizeof (int), |
615 | .mode = 0444, | 561 | .mode = 0444, |
616 | .proc_handler = &proc_dointvec, | 562 | .proc_handler = proc_dointvec, |
617 | }, | 563 | }, |
618 | #endif | 564 | #endif |
619 | #ifdef CONFIG_BSD_PROCESS_ACCT | 565 | #ifdef CONFIG_BSD_PROCESS_ACCT |
620 | { | 566 | { |
621 | .ctl_name = KERN_ACCT, | ||
622 | .procname = "acct", | 567 | .procname = "acct", |
623 | .data = &acct_parm, | 568 | .data = &acct_parm, |
624 | .maxlen = 3*sizeof(int), | 569 | .maxlen = 3*sizeof(int), |
625 | .mode = 0644, | 570 | .mode = 0644, |
626 | .proc_handler = &proc_dointvec, | 571 | .proc_handler = proc_dointvec, |
627 | }, | 572 | }, |
628 | #endif | 573 | #endif |
629 | #ifdef CONFIG_MAGIC_SYSRQ | 574 | #ifdef CONFIG_MAGIC_SYSRQ |
630 | { | 575 | { |
631 | .ctl_name = KERN_SYSRQ, | ||
632 | .procname = "sysrq", | 576 | .procname = "sysrq", |
633 | .data = &__sysrq_enabled, | 577 | .data = &__sysrq_enabled, |
634 | .maxlen = sizeof (int), | 578 | .maxlen = sizeof (int), |
635 | .mode = 0644, | 579 | .mode = 0644, |
636 | .proc_handler = &proc_dointvec, | 580 | .proc_handler = proc_dointvec, |
637 | }, | 581 | }, |
638 | #endif | 582 | #endif |
639 | #ifdef CONFIG_PROC_SYSCTL | 583 | #ifdef CONFIG_PROC_SYSCTL |
@@ -642,215 +586,188 @@ static struct ctl_table kern_table[] = { | |||
642 | .data = NULL, | 586 | .data = NULL, |
643 | .maxlen = sizeof (int), | 587 | .maxlen = sizeof (int), |
644 | .mode = 0600, | 588 | .mode = 0600, |
645 | .proc_handler = &proc_do_cad_pid, | 589 | .proc_handler = proc_do_cad_pid, |
646 | }, | 590 | }, |
647 | #endif | 591 | #endif |
648 | { | 592 | { |
649 | .ctl_name = KERN_MAX_THREADS, | ||
650 | .procname = "threads-max", | 593 | .procname = "threads-max", |
651 | .data = &max_threads, | 594 | .data = &max_threads, |
652 | .maxlen = sizeof(int), | 595 | .maxlen = sizeof(int), |
653 | .mode = 0644, | 596 | .mode = 0644, |
654 | .proc_handler = &proc_dointvec, | 597 | .proc_handler = proc_dointvec, |
655 | }, | 598 | }, |
656 | { | 599 | { |
657 | .ctl_name = KERN_RANDOM, | ||
658 | .procname = "random", | 600 | .procname = "random", |
659 | .mode = 0555, | 601 | .mode = 0555, |
660 | .child = random_table, | 602 | .child = random_table, |
661 | }, | 603 | }, |
662 | { | 604 | { |
663 | .ctl_name = KERN_OVERFLOWUID, | ||
664 | .procname = "overflowuid", | 605 | .procname = "overflowuid", |
665 | .data = &overflowuid, | 606 | .data = &overflowuid, |
666 | .maxlen = sizeof(int), | 607 | .maxlen = sizeof(int), |
667 | .mode = 0644, | 608 | .mode = 0644, |
668 | .proc_handler = &proc_dointvec_minmax, | 609 | .proc_handler = proc_dointvec_minmax, |
669 | .strategy = &sysctl_intvec, | ||
670 | .extra1 = &minolduid, | 610 | .extra1 = &minolduid, |
671 | .extra2 = &maxolduid, | 611 | .extra2 = &maxolduid, |
672 | }, | 612 | }, |
673 | { | 613 | { |
674 | .ctl_name = KERN_OVERFLOWGID, | ||
675 | .procname = "overflowgid", | 614 | .procname = "overflowgid", |
676 | .data = &overflowgid, | 615 | .data = &overflowgid, |
677 | .maxlen = sizeof(int), | 616 | .maxlen = sizeof(int), |
678 | .mode = 0644, | 617 | .mode = 0644, |
679 | .proc_handler = &proc_dointvec_minmax, | 618 | .proc_handler = proc_dointvec_minmax, |
680 | .strategy = &sysctl_intvec, | ||
681 | .extra1 = &minolduid, | 619 | .extra1 = &minolduid, |
682 | .extra2 = &maxolduid, | 620 | .extra2 = &maxolduid, |
683 | }, | 621 | }, |
684 | #ifdef CONFIG_S390 | 622 | #ifdef CONFIG_S390 |
685 | #ifdef CONFIG_MATHEMU | 623 | #ifdef CONFIG_MATHEMU |
686 | { | 624 | { |
687 | .ctl_name = KERN_IEEE_EMULATION_WARNINGS, | ||
688 | .procname = "ieee_emulation_warnings", | 625 | .procname = "ieee_emulation_warnings", |
689 | .data = &sysctl_ieee_emulation_warnings, | 626 | .data = &sysctl_ieee_emulation_warnings, |
690 | .maxlen = sizeof(int), | 627 | .maxlen = sizeof(int), |
691 | .mode = 0644, | 628 | .mode = 0644, |
692 | .proc_handler = &proc_dointvec, | 629 | .proc_handler = proc_dointvec, |
693 | }, | 630 | }, |
694 | #endif | 631 | #endif |
695 | { | 632 | { |
696 | .ctl_name = KERN_S390_USER_DEBUG_LOGGING, | ||
697 | .procname = "userprocess_debug", | 633 | .procname = "userprocess_debug", |
698 | .data = &sysctl_userprocess_debug, | 634 | .data = &sysctl_userprocess_debug, |
699 | .maxlen = sizeof(int), | 635 | .maxlen = sizeof(int), |
700 | .mode = 0644, | 636 | .mode = 0644, |
701 | .proc_handler = &proc_dointvec, | 637 | .proc_handler = proc_dointvec, |
702 | }, | 638 | }, |
703 | #endif | 639 | #endif |
704 | { | 640 | { |
705 | .ctl_name = KERN_PIDMAX, | ||
706 | .procname = "pid_max", | 641 | .procname = "pid_max", |
707 | .data = &pid_max, | 642 | .data = &pid_max, |
708 | .maxlen = sizeof (int), | 643 | .maxlen = sizeof (int), |
709 | .mode = 0644, | 644 | .mode = 0644, |
710 | .proc_handler = &proc_dointvec_minmax, | 645 | .proc_handler = proc_dointvec_minmax, |
711 | .strategy = sysctl_intvec, | ||
712 | .extra1 = &pid_max_min, | 646 | .extra1 = &pid_max_min, |
713 | .extra2 = &pid_max_max, | 647 | .extra2 = &pid_max_max, |
714 | }, | 648 | }, |
715 | { | 649 | { |
716 | .ctl_name = KERN_PANIC_ON_OOPS, | ||
717 | .procname = "panic_on_oops", | 650 | .procname = "panic_on_oops", |
718 | .data = &panic_on_oops, | 651 | .data = &panic_on_oops, |
719 | .maxlen = sizeof(int), | 652 | .maxlen = sizeof(int), |
720 | .mode = 0644, | 653 | .mode = 0644, |
721 | .proc_handler = &proc_dointvec, | 654 | .proc_handler = proc_dointvec, |
722 | }, | 655 | }, |
723 | #if defined CONFIG_PRINTK | 656 | #if defined CONFIG_PRINTK |
724 | { | 657 | { |
725 | .ctl_name = KERN_PRINTK, | ||
726 | .procname = "printk", | 658 | .procname = "printk", |
727 | .data = &console_loglevel, | 659 | .data = &console_loglevel, |
728 | .maxlen = 4*sizeof(int), | 660 | .maxlen = 4*sizeof(int), |
729 | .mode = 0644, | 661 | .mode = 0644, |
730 | .proc_handler = &proc_dointvec, | 662 | .proc_handler = proc_dointvec, |
731 | }, | 663 | }, |
732 | { | 664 | { |
733 | .ctl_name = KERN_PRINTK_RATELIMIT, | ||
734 | .procname = "printk_ratelimit", | 665 | .procname = "printk_ratelimit", |
735 | .data = &printk_ratelimit_state.interval, | 666 | .data = &printk_ratelimit_state.interval, |
736 | .maxlen = sizeof(int), | 667 | .maxlen = sizeof(int), |
737 | .mode = 0644, | 668 | .mode = 0644, |
738 | .proc_handler = &proc_dointvec_jiffies, | 669 | .proc_handler = proc_dointvec_jiffies, |
739 | .strategy = &sysctl_jiffies, | ||
740 | }, | 670 | }, |
741 | { | 671 | { |
742 | .ctl_name = KERN_PRINTK_RATELIMIT_BURST, | ||
743 | .procname = "printk_ratelimit_burst", | 672 | .procname = "printk_ratelimit_burst", |
744 | .data = &printk_ratelimit_state.burst, | 673 | .data = &printk_ratelimit_state.burst, |
745 | .maxlen = sizeof(int), | 674 | .maxlen = sizeof(int), |
746 | .mode = 0644, | 675 | .mode = 0644, |
747 | .proc_handler = &proc_dointvec, | 676 | .proc_handler = proc_dointvec, |
748 | }, | 677 | }, |
749 | { | 678 | { |
750 | .ctl_name = CTL_UNNUMBERED, | ||
751 | .procname = "printk_delay", | 679 | .procname = "printk_delay", |
752 | .data = &printk_delay_msec, | 680 | .data = &printk_delay_msec, |
753 | .maxlen = sizeof(int), | 681 | .maxlen = sizeof(int), |
754 | .mode = 0644, | 682 | .mode = 0644, |
755 | .proc_handler = &proc_dointvec_minmax, | 683 | .proc_handler = proc_dointvec_minmax, |
756 | .strategy = &sysctl_intvec, | ||
757 | .extra1 = &zero, | 684 | .extra1 = &zero, |
758 | .extra2 = &ten_thousand, | 685 | .extra2 = &ten_thousand, |
759 | }, | 686 | }, |
760 | #endif | 687 | #endif |
761 | { | 688 | { |
762 | .ctl_name = KERN_NGROUPS_MAX, | ||
763 | .procname = "ngroups_max", | 689 | .procname = "ngroups_max", |
764 | .data = &ngroups_max, | 690 | .data = &ngroups_max, |
765 | .maxlen = sizeof (int), | 691 | .maxlen = sizeof (int), |
766 | .mode = 0444, | 692 | .mode = 0444, |
767 | .proc_handler = &proc_dointvec, | 693 | .proc_handler = proc_dointvec, |
768 | }, | 694 | }, |
769 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) | 695 | #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86) |
770 | { | 696 | { |
771 | .ctl_name = KERN_UNKNOWN_NMI_PANIC, | ||
772 | .procname = "unknown_nmi_panic", | 697 | .procname = "unknown_nmi_panic", |
773 | .data = &unknown_nmi_panic, | 698 | .data = &unknown_nmi_panic, |
774 | .maxlen = sizeof (int), | 699 | .maxlen = sizeof (int), |
775 | .mode = 0644, | 700 | .mode = 0644, |
776 | .proc_handler = &proc_dointvec, | 701 | .proc_handler = proc_dointvec, |
777 | }, | 702 | }, |
778 | { | 703 | { |
779 | .procname = "nmi_watchdog", | 704 | .procname = "nmi_watchdog", |
780 | .data = &nmi_watchdog_enabled, | 705 | .data = &nmi_watchdog_enabled, |
781 | .maxlen = sizeof (int), | 706 | .maxlen = sizeof (int), |
782 | .mode = 0644, | 707 | .mode = 0644, |
783 | .proc_handler = &proc_nmi_enabled, | 708 | .proc_handler = proc_nmi_enabled, |
784 | }, | 709 | }, |
785 | #endif | 710 | #endif |
786 | #if defined(CONFIG_X86) | 711 | #if defined(CONFIG_X86) |
787 | { | 712 | { |
788 | .ctl_name = KERN_PANIC_ON_NMI, | ||
789 | .procname = "panic_on_unrecovered_nmi", | 713 | .procname = "panic_on_unrecovered_nmi", |
790 | .data = &panic_on_unrecovered_nmi, | 714 | .data = &panic_on_unrecovered_nmi, |
791 | .maxlen = sizeof(int), | 715 | .maxlen = sizeof(int), |
792 | .mode = 0644, | 716 | .mode = 0644, |
793 | .proc_handler = &proc_dointvec, | 717 | .proc_handler = proc_dointvec, |
794 | }, | 718 | }, |
795 | { | 719 | { |
796 | .ctl_name = CTL_UNNUMBERED, | ||
797 | .procname = "panic_on_io_nmi", | 720 | .procname = "panic_on_io_nmi", |
798 | .data = &panic_on_io_nmi, | 721 | .data = &panic_on_io_nmi, |
799 | .maxlen = sizeof(int), | 722 | .maxlen = sizeof(int), |
800 | .mode = 0644, | 723 | .mode = 0644, |
801 | .proc_handler = &proc_dointvec, | 724 | .proc_handler = proc_dointvec, |
802 | }, | 725 | }, |
803 | { | 726 | { |
804 | .ctl_name = KERN_BOOTLOADER_TYPE, | ||
805 | .procname = "bootloader_type", | 727 | .procname = "bootloader_type", |
806 | .data = &bootloader_type, | 728 | .data = &bootloader_type, |
807 | .maxlen = sizeof (int), | 729 | .maxlen = sizeof (int), |
808 | .mode = 0444, | 730 | .mode = 0444, |
809 | .proc_handler = &proc_dointvec, | 731 | .proc_handler = proc_dointvec, |
810 | }, | 732 | }, |
811 | { | 733 | { |
812 | .ctl_name = CTL_UNNUMBERED, | ||
813 | .procname = "bootloader_version", | 734 | .procname = "bootloader_version", |
814 | .data = &bootloader_version, | 735 | .data = &bootloader_version, |
815 | .maxlen = sizeof (int), | 736 | .maxlen = sizeof (int), |
816 | .mode = 0444, | 737 | .mode = 0444, |
817 | .proc_handler = &proc_dointvec, | 738 | .proc_handler = proc_dointvec, |
818 | }, | 739 | }, |
819 | { | 740 | { |
820 | .ctl_name = CTL_UNNUMBERED, | ||
821 | .procname = "kstack_depth_to_print", | 741 | .procname = "kstack_depth_to_print", |
822 | .data = &kstack_depth_to_print, | 742 | .data = &kstack_depth_to_print, |
823 | .maxlen = sizeof(int), | 743 | .maxlen = sizeof(int), |
824 | .mode = 0644, | 744 | .mode = 0644, |
825 | .proc_handler = &proc_dointvec, | 745 | .proc_handler = proc_dointvec, |
826 | }, | 746 | }, |
827 | { | 747 | { |
828 | .ctl_name = CTL_UNNUMBERED, | ||
829 | .procname = "io_delay_type", | 748 | .procname = "io_delay_type", |
830 | .data = &io_delay_type, | 749 | .data = &io_delay_type, |
831 | .maxlen = sizeof(int), | 750 | .maxlen = sizeof(int), |
832 | .mode = 0644, | 751 | .mode = 0644, |
833 | .proc_handler = &proc_dointvec, | 752 | .proc_handler = proc_dointvec, |
834 | }, | 753 | }, |
835 | #endif | 754 | #endif |
836 | #if defined(CONFIG_MMU) | 755 | #if defined(CONFIG_MMU) |
837 | { | 756 | { |
838 | .ctl_name = KERN_RANDOMIZE, | ||
839 | .procname = "randomize_va_space", | 757 | .procname = "randomize_va_space", |
840 | .data = &randomize_va_space, | 758 | .data = &randomize_va_space, |
841 | .maxlen = sizeof(int), | 759 | .maxlen = sizeof(int), |
842 | .mode = 0644, | 760 | .mode = 0644, |
843 | .proc_handler = &proc_dointvec, | 761 | .proc_handler = proc_dointvec, |
844 | }, | 762 | }, |
845 | #endif | 763 | #endif |
846 | #if defined(CONFIG_S390) && defined(CONFIG_SMP) | 764 | #if defined(CONFIG_S390) && defined(CONFIG_SMP) |
847 | { | 765 | { |
848 | .ctl_name = KERN_SPIN_RETRY, | ||
849 | .procname = "spin_retry", | 766 | .procname = "spin_retry", |
850 | .data = &spin_retry, | 767 | .data = &spin_retry, |
851 | .maxlen = sizeof (int), | 768 | .maxlen = sizeof (int), |
852 | .mode = 0644, | 769 | .mode = 0644, |
853 | .proc_handler = &proc_dointvec, | 770 | .proc_handler = proc_dointvec, |
854 | }, | 771 | }, |
855 | #endif | 772 | #endif |
856 | #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86) | 773 | #if defined(CONFIG_ACPI_SLEEP) && defined(CONFIG_X86) |
@@ -859,123 +776,104 @@ static struct ctl_table kern_table[] = { | |||
859 | .data = &acpi_realmode_flags, | 776 | .data = &acpi_realmode_flags, |
860 | .maxlen = sizeof (unsigned long), | 777 | .maxlen = sizeof (unsigned long), |
861 | .mode = 0644, | 778 | .mode = 0644, |
862 | .proc_handler = &proc_doulongvec_minmax, | 779 | .proc_handler = proc_doulongvec_minmax, |
863 | }, | 780 | }, |
864 | #endif | 781 | #endif |
865 | #ifdef CONFIG_IA64 | 782 | #ifdef CONFIG_IA64 |
866 | { | 783 | { |
867 | .ctl_name = KERN_IA64_UNALIGNED, | ||
868 | .procname = "ignore-unaligned-usertrap", | 784 | .procname = "ignore-unaligned-usertrap", |
869 | .data = &no_unaligned_warning, | 785 | .data = &no_unaligned_warning, |
870 | .maxlen = sizeof (int), | 786 | .maxlen = sizeof (int), |
871 | .mode = 0644, | 787 | .mode = 0644, |
872 | .proc_handler = &proc_dointvec, | 788 | .proc_handler = proc_dointvec, |
873 | }, | 789 | }, |
874 | { | 790 | { |
875 | .ctl_name = CTL_UNNUMBERED, | ||
876 | .procname = "unaligned-dump-stack", | 791 | .procname = "unaligned-dump-stack", |
877 | .data = &unaligned_dump_stack, | 792 | .data = &unaligned_dump_stack, |
878 | .maxlen = sizeof (int), | 793 | .maxlen = sizeof (int), |
879 | .mode = 0644, | 794 | .mode = 0644, |
880 | .proc_handler = &proc_dointvec, | 795 | .proc_handler = proc_dointvec, |
881 | }, | 796 | }, |
882 | #endif | 797 | #endif |
883 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 798 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
884 | { | 799 | { |
885 | .ctl_name = CTL_UNNUMBERED, | ||
886 | .procname = "softlockup_panic", | 800 | .procname = "softlockup_panic", |
887 | .data = &softlockup_panic, | 801 | .data = &softlockup_panic, |
888 | .maxlen = sizeof(int), | 802 | .maxlen = sizeof(int), |
889 | .mode = 0644, | 803 | .mode = 0644, |
890 | .proc_handler = &proc_dointvec_minmax, | 804 | .proc_handler = proc_dointvec_minmax, |
891 | .strategy = &sysctl_intvec, | ||
892 | .extra1 = &zero, | 805 | .extra1 = &zero, |
893 | .extra2 = &one, | 806 | .extra2 = &one, |
894 | }, | 807 | }, |
895 | { | 808 | { |
896 | .ctl_name = CTL_UNNUMBERED, | ||
897 | .procname = "softlockup_thresh", | 809 | .procname = "softlockup_thresh", |
898 | .data = &softlockup_thresh, | 810 | .data = &softlockup_thresh, |
899 | .maxlen = sizeof(int), | 811 | .maxlen = sizeof(int), |
900 | .mode = 0644, | 812 | .mode = 0644, |
901 | .proc_handler = &proc_dosoftlockup_thresh, | 813 | .proc_handler = proc_dosoftlockup_thresh, |
902 | .strategy = &sysctl_intvec, | ||
903 | .extra1 = &neg_one, | 814 | .extra1 = &neg_one, |
904 | .extra2 = &sixty, | 815 | .extra2 = &sixty, |
905 | }, | 816 | }, |
906 | #endif | 817 | #endif |
907 | #ifdef CONFIG_DETECT_HUNG_TASK | 818 | #ifdef CONFIG_DETECT_HUNG_TASK |
908 | { | 819 | { |
909 | .ctl_name = CTL_UNNUMBERED, | ||
910 | .procname = "hung_task_panic", | 820 | .procname = "hung_task_panic", |
911 | .data = &sysctl_hung_task_panic, | 821 | .data = &sysctl_hung_task_panic, |
912 | .maxlen = sizeof(int), | 822 | .maxlen = sizeof(int), |
913 | .mode = 0644, | 823 | .mode = 0644, |
914 | .proc_handler = &proc_dointvec_minmax, | 824 | .proc_handler = proc_dointvec_minmax, |
915 | .strategy = &sysctl_intvec, | ||
916 | .extra1 = &zero, | 825 | .extra1 = &zero, |
917 | .extra2 = &one, | 826 | .extra2 = &one, |
918 | }, | 827 | }, |
919 | { | 828 | { |
920 | .ctl_name = CTL_UNNUMBERED, | ||
921 | .procname = "hung_task_check_count", | 829 | .procname = "hung_task_check_count", |
922 | .data = &sysctl_hung_task_check_count, | 830 | .data = &sysctl_hung_task_check_count, |
923 | .maxlen = sizeof(unsigned long), | 831 | .maxlen = sizeof(unsigned long), |
924 | .mode = 0644, | 832 | .mode = 0644, |
925 | .proc_handler = &proc_doulongvec_minmax, | 833 | .proc_handler = proc_doulongvec_minmax, |
926 | .strategy = &sysctl_intvec, | ||
927 | }, | 834 | }, |
928 | { | 835 | { |
929 | .ctl_name = CTL_UNNUMBERED, | ||
930 | .procname = "hung_task_timeout_secs", | 836 | .procname = "hung_task_timeout_secs", |
931 | .data = &sysctl_hung_task_timeout_secs, | 837 | .data = &sysctl_hung_task_timeout_secs, |
932 | .maxlen = sizeof(unsigned long), | 838 | .maxlen = sizeof(unsigned long), |
933 | .mode = 0644, | 839 | .mode = 0644, |
934 | .proc_handler = &proc_dohung_task_timeout_secs, | 840 | .proc_handler = proc_dohung_task_timeout_secs, |
935 | .strategy = &sysctl_intvec, | ||
936 | }, | 841 | }, |
937 | { | 842 | { |
938 | .ctl_name = CTL_UNNUMBERED, | ||
939 | .procname = "hung_task_warnings", | 843 | .procname = "hung_task_warnings", |
940 | .data = &sysctl_hung_task_warnings, | 844 | .data = &sysctl_hung_task_warnings, |
941 | .maxlen = sizeof(unsigned long), | 845 | .maxlen = sizeof(unsigned long), |
942 | .mode = 0644, | 846 | .mode = 0644, |
943 | .proc_handler = &proc_doulongvec_minmax, | 847 | .proc_handler = proc_doulongvec_minmax, |
944 | .strategy = &sysctl_intvec, | ||
945 | }, | 848 | }, |
946 | #endif | 849 | #endif |
947 | #ifdef CONFIG_COMPAT | 850 | #ifdef CONFIG_COMPAT |
948 | { | 851 | { |
949 | .ctl_name = KERN_COMPAT_LOG, | ||
950 | .procname = "compat-log", | 852 | .procname = "compat-log", |
951 | .data = &compat_log, | 853 | .data = &compat_log, |
952 | .maxlen = sizeof (int), | 854 | .maxlen = sizeof (int), |
953 | .mode = 0644, | 855 | .mode = 0644, |
954 | .proc_handler = &proc_dointvec, | 856 | .proc_handler = proc_dointvec, |
955 | }, | 857 | }, |
956 | #endif | 858 | #endif |
957 | #ifdef CONFIG_RT_MUTEXES | 859 | #ifdef CONFIG_RT_MUTEXES |
958 | { | 860 | { |
959 | .ctl_name = KERN_MAX_LOCK_DEPTH, | ||
960 | .procname = "max_lock_depth", | 861 | .procname = "max_lock_depth", |
961 | .data = &max_lock_depth, | 862 | .data = &max_lock_depth, |
962 | .maxlen = sizeof(int), | 863 | .maxlen = sizeof(int), |
963 | .mode = 0644, | 864 | .mode = 0644, |
964 | .proc_handler = &proc_dointvec, | 865 | .proc_handler = proc_dointvec, |
965 | }, | 866 | }, |
966 | #endif | 867 | #endif |
967 | { | 868 | { |
968 | .ctl_name = CTL_UNNUMBERED, | ||
969 | .procname = "poweroff_cmd", | 869 | .procname = "poweroff_cmd", |
970 | .data = &poweroff_cmd, | 870 | .data = &poweroff_cmd, |
971 | .maxlen = POWEROFF_CMD_PATH_LEN, | 871 | .maxlen = POWEROFF_CMD_PATH_LEN, |
972 | .mode = 0644, | 872 | .mode = 0644, |
973 | .proc_handler = &proc_dostring, | 873 | .proc_handler = proc_dostring, |
974 | .strategy = &sysctl_string, | ||
975 | }, | 874 | }, |
976 | #ifdef CONFIG_KEYS | 875 | #ifdef CONFIG_KEYS |
977 | { | 876 | { |
978 | .ctl_name = CTL_UNNUMBERED, | ||
979 | .procname = "keys", | 877 | .procname = "keys", |
980 | .mode = 0555, | 878 | .mode = 0555, |
981 | .child = key_sysctls, | 879 | .child = key_sysctls, |
@@ -983,17 +881,15 @@ static struct ctl_table kern_table[] = { | |||
983 | #endif | 881 | #endif |
984 | #ifdef CONFIG_RCU_TORTURE_TEST | 882 | #ifdef CONFIG_RCU_TORTURE_TEST |
985 | { | 883 | { |
986 | .ctl_name = CTL_UNNUMBERED, | ||
987 | .procname = "rcutorture_runnable", | 884 | .procname = "rcutorture_runnable", |
988 | .data = &rcutorture_runnable, | 885 | .data = &rcutorture_runnable, |
989 | .maxlen = sizeof(int), | 886 | .maxlen = sizeof(int), |
990 | .mode = 0644, | 887 | .mode = 0644, |
991 | .proc_handler = &proc_dointvec, | 888 | .proc_handler = proc_dointvec, |
992 | }, | 889 | }, |
993 | #endif | 890 | #endif |
994 | #ifdef CONFIG_SLOW_WORK | 891 | #ifdef CONFIG_SLOW_WORK |
995 | { | 892 | { |
996 | .ctl_name = CTL_UNNUMBERED, | ||
997 | .procname = "slow-work", | 893 | .procname = "slow-work", |
998 | .mode = 0555, | 894 | .mode = 0555, |
999 | .child = slow_work_sysctls, | 895 | .child = slow_work_sysctls, |
@@ -1001,146 +897,127 @@ static struct ctl_table kern_table[] = { | |||
1001 | #endif | 897 | #endif |
1002 | #ifdef CONFIG_PERF_EVENTS | 898 | #ifdef CONFIG_PERF_EVENTS |
1003 | { | 899 | { |
1004 | .ctl_name = CTL_UNNUMBERED, | ||
1005 | .procname = "perf_event_paranoid", | 900 | .procname = "perf_event_paranoid", |
1006 | .data = &sysctl_perf_event_paranoid, | 901 | .data = &sysctl_perf_event_paranoid, |
1007 | .maxlen = sizeof(sysctl_perf_event_paranoid), | 902 | .maxlen = sizeof(sysctl_perf_event_paranoid), |
1008 | .mode = 0644, | 903 | .mode = 0644, |
1009 | .proc_handler = &proc_dointvec, | 904 | .proc_handler = proc_dointvec, |
1010 | }, | 905 | }, |
1011 | { | 906 | { |
1012 | .ctl_name = CTL_UNNUMBERED, | ||
1013 | .procname = "perf_event_mlock_kb", | 907 | .procname = "perf_event_mlock_kb", |
1014 | .data = &sysctl_perf_event_mlock, | 908 | .data = &sysctl_perf_event_mlock, |
1015 | .maxlen = sizeof(sysctl_perf_event_mlock), | 909 | .maxlen = sizeof(sysctl_perf_event_mlock), |
1016 | .mode = 0644, | 910 | .mode = 0644, |
1017 | .proc_handler = &proc_dointvec, | 911 | .proc_handler = proc_dointvec, |
1018 | }, | 912 | }, |
1019 | { | 913 | { |
1020 | .ctl_name = CTL_UNNUMBERED, | ||
1021 | .procname = "perf_event_max_sample_rate", | 914 | .procname = "perf_event_max_sample_rate", |
1022 | .data = &sysctl_perf_event_sample_rate, | 915 | .data = &sysctl_perf_event_sample_rate, |
1023 | .maxlen = sizeof(sysctl_perf_event_sample_rate), | 916 | .maxlen = sizeof(sysctl_perf_event_sample_rate), |
1024 | .mode = 0644, | 917 | .mode = 0644, |
1025 | .proc_handler = &proc_dointvec, | 918 | .proc_handler = proc_dointvec, |
1026 | }, | 919 | }, |
1027 | #endif | 920 | #endif |
1028 | #ifdef CONFIG_KMEMCHECK | 921 | #ifdef CONFIG_KMEMCHECK |
1029 | { | 922 | { |
1030 | .ctl_name = CTL_UNNUMBERED, | ||
1031 | .procname = "kmemcheck", | 923 | .procname = "kmemcheck", |
1032 | .data = &kmemcheck_enabled, | 924 | .data = &kmemcheck_enabled, |
1033 | .maxlen = sizeof(int), | 925 | .maxlen = sizeof(int), |
1034 | .mode = 0644, | 926 | .mode = 0644, |
1035 | .proc_handler = &proc_dointvec, | 927 | .proc_handler = proc_dointvec, |
1036 | }, | 928 | }, |
1037 | #endif | 929 | #endif |
1038 | #ifdef CONFIG_BLOCK | 930 | #ifdef CONFIG_BLOCK |
1039 | { | 931 | { |
1040 | .ctl_name = CTL_UNNUMBERED, | ||
1041 | .procname = "blk_iopoll", | 932 | .procname = "blk_iopoll", |
1042 | .data = &blk_iopoll_enabled, | 933 | .data = &blk_iopoll_enabled, |
1043 | .maxlen = sizeof(int), | 934 | .maxlen = sizeof(int), |
1044 | .mode = 0644, | 935 | .mode = 0644, |
1045 | .proc_handler = &proc_dointvec, | 936 | .proc_handler = proc_dointvec, |
1046 | }, | 937 | }, |
1047 | #endif | 938 | #endif |
1048 | /* | 939 | /* |
1049 | * NOTE: do not add new entries to this table unless you have read | 940 | * NOTE: do not add new entries to this table unless you have read |
1050 | * Documentation/sysctl/ctl_unnumbered.txt | 941 | * Documentation/sysctl/ctl_unnumbered.txt |
1051 | */ | 942 | */ |
1052 | { .ctl_name = 0 } | 943 | { } |
1053 | }; | 944 | }; |
1054 | 945 | ||
1055 | static struct ctl_table vm_table[] = { | 946 | static struct ctl_table vm_table[] = { |
1056 | { | 947 | { |
1057 | .ctl_name = VM_OVERCOMMIT_MEMORY, | ||
1058 | .procname = "overcommit_memory", | 948 | .procname = "overcommit_memory", |
1059 | .data = &sysctl_overcommit_memory, | 949 | .data = &sysctl_overcommit_memory, |
1060 | .maxlen = sizeof(sysctl_overcommit_memory), | 950 | .maxlen = sizeof(sysctl_overcommit_memory), |
1061 | .mode = 0644, | 951 | .mode = 0644, |
1062 | .proc_handler = &proc_dointvec, | 952 | .proc_handler = proc_dointvec, |
1063 | }, | 953 | }, |
1064 | { | 954 | { |
1065 | .ctl_name = VM_PANIC_ON_OOM, | ||
1066 | .procname = "panic_on_oom", | 955 | .procname = "panic_on_oom", |
1067 | .data = &sysctl_panic_on_oom, | 956 | .data = &sysctl_panic_on_oom, |
1068 | .maxlen = sizeof(sysctl_panic_on_oom), | 957 | .maxlen = sizeof(sysctl_panic_on_oom), |
1069 | .mode = 0644, | 958 | .mode = 0644, |
1070 | .proc_handler = &proc_dointvec, | 959 | .proc_handler = proc_dointvec, |
1071 | }, | 960 | }, |
1072 | { | 961 | { |
1073 | .ctl_name = CTL_UNNUMBERED, | ||
1074 | .procname = "oom_kill_allocating_task", | 962 | .procname = "oom_kill_allocating_task", |
1075 | .data = &sysctl_oom_kill_allocating_task, | 963 | .data = &sysctl_oom_kill_allocating_task, |
1076 | .maxlen = sizeof(sysctl_oom_kill_allocating_task), | 964 | .maxlen = sizeof(sysctl_oom_kill_allocating_task), |
1077 | .mode = 0644, | 965 | .mode = 0644, |
1078 | .proc_handler = &proc_dointvec, | 966 | .proc_handler = proc_dointvec, |
1079 | }, | 967 | }, |
1080 | { | 968 | { |
1081 | .ctl_name = CTL_UNNUMBERED, | ||
1082 | .procname = "oom_dump_tasks", | 969 | .procname = "oom_dump_tasks", |
1083 | .data = &sysctl_oom_dump_tasks, | 970 | .data = &sysctl_oom_dump_tasks, |
1084 | .maxlen = sizeof(sysctl_oom_dump_tasks), | 971 | .maxlen = sizeof(sysctl_oom_dump_tasks), |
1085 | .mode = 0644, | 972 | .mode = 0644, |
1086 | .proc_handler = &proc_dointvec, | 973 | .proc_handler = proc_dointvec, |
1087 | }, | 974 | }, |
1088 | { | 975 | { |
1089 | .ctl_name = VM_OVERCOMMIT_RATIO, | ||
1090 | .procname = "overcommit_ratio", | 976 | .procname = "overcommit_ratio", |
1091 | .data = &sysctl_overcommit_ratio, | 977 | .data = &sysctl_overcommit_ratio, |
1092 | .maxlen = sizeof(sysctl_overcommit_ratio), | 978 | .maxlen = sizeof(sysctl_overcommit_ratio), |
1093 | .mode = 0644, | 979 | .mode = 0644, |
1094 | .proc_handler = &proc_dointvec, | 980 | .proc_handler = proc_dointvec, |
1095 | }, | 981 | }, |
1096 | { | 982 | { |
1097 | .ctl_name = VM_PAGE_CLUSTER, | ||
1098 | .procname = "page-cluster", | 983 | .procname = "page-cluster", |
1099 | .data = &page_cluster, | 984 | .data = &page_cluster, |
1100 | .maxlen = sizeof(int), | 985 | .maxlen = sizeof(int), |
1101 | .mode = 0644, | 986 | .mode = 0644, |
1102 | .proc_handler = &proc_dointvec, | 987 | .proc_handler = proc_dointvec, |
1103 | }, | 988 | }, |
1104 | { | 989 | { |
1105 | .ctl_name = VM_DIRTY_BACKGROUND, | ||
1106 | .procname = "dirty_background_ratio", | 990 | .procname = "dirty_background_ratio", |
1107 | .data = &dirty_background_ratio, | 991 | .data = &dirty_background_ratio, |
1108 | .maxlen = sizeof(dirty_background_ratio), | 992 | .maxlen = sizeof(dirty_background_ratio), |
1109 | .mode = 0644, | 993 | .mode = 0644, |
1110 | .proc_handler = &dirty_background_ratio_handler, | 994 | .proc_handler = dirty_background_ratio_handler, |
1111 | .strategy = &sysctl_intvec, | ||
1112 | .extra1 = &zero, | 995 | .extra1 = &zero, |
1113 | .extra2 = &one_hundred, | 996 | .extra2 = &one_hundred, |
1114 | }, | 997 | }, |
1115 | { | 998 | { |
1116 | .ctl_name = CTL_UNNUMBERED, | ||
1117 | .procname = "dirty_background_bytes", | 999 | .procname = "dirty_background_bytes", |
1118 | .data = &dirty_background_bytes, | 1000 | .data = &dirty_background_bytes, |
1119 | .maxlen = sizeof(dirty_background_bytes), | 1001 | .maxlen = sizeof(dirty_background_bytes), |
1120 | .mode = 0644, | 1002 | .mode = 0644, |
1121 | .proc_handler = &dirty_background_bytes_handler, | 1003 | .proc_handler = dirty_background_bytes_handler, |
1122 | .strategy = &sysctl_intvec, | ||
1123 | .extra1 = &one_ul, | 1004 | .extra1 = &one_ul, |
1124 | }, | 1005 | }, |
1125 | { | 1006 | { |
1126 | .ctl_name = VM_DIRTY_RATIO, | ||
1127 | .procname = "dirty_ratio", | 1007 | .procname = "dirty_ratio", |
1128 | .data = &vm_dirty_ratio, | 1008 | .data = &vm_dirty_ratio, |
1129 | .maxlen = sizeof(vm_dirty_ratio), | 1009 | .maxlen = sizeof(vm_dirty_ratio), |
1130 | .mode = 0644, | 1010 | .mode = 0644, |
1131 | .proc_handler = &dirty_ratio_handler, | 1011 | .proc_handler = dirty_ratio_handler, |
1132 | .strategy = &sysctl_intvec, | ||
1133 | .extra1 = &zero, | 1012 | .extra1 = &zero, |
1134 | .extra2 = &one_hundred, | 1013 | .extra2 = &one_hundred, |
1135 | }, | 1014 | }, |
1136 | { | 1015 | { |
1137 | .ctl_name = CTL_UNNUMBERED, | ||
1138 | .procname = "dirty_bytes", | 1016 | .procname = "dirty_bytes", |
1139 | .data = &vm_dirty_bytes, | 1017 | .data = &vm_dirty_bytes, |
1140 | .maxlen = sizeof(vm_dirty_bytes), | 1018 | .maxlen = sizeof(vm_dirty_bytes), |
1141 | .mode = 0644, | 1019 | .mode = 0644, |
1142 | .proc_handler = &dirty_bytes_handler, | 1020 | .proc_handler = dirty_bytes_handler, |
1143 | .strategy = &sysctl_intvec, | ||
1144 | .extra1 = &dirty_bytes_min, | 1021 | .extra1 = &dirty_bytes_min, |
1145 | }, | 1022 | }, |
1146 | { | 1023 | { |
@@ -1148,31 +1025,28 @@ static struct ctl_table vm_table[] = { | |||
1148 | .data = &dirty_writeback_interval, | 1025 | .data = &dirty_writeback_interval, |
1149 | .maxlen = sizeof(dirty_writeback_interval), | 1026 | .maxlen = sizeof(dirty_writeback_interval), |
1150 | .mode = 0644, | 1027 | .mode = 0644, |
1151 | .proc_handler = &dirty_writeback_centisecs_handler, | 1028 | .proc_handler = dirty_writeback_centisecs_handler, |
1152 | }, | 1029 | }, |
1153 | { | 1030 | { |
1154 | .procname = "dirty_expire_centisecs", | 1031 | .procname = "dirty_expire_centisecs", |
1155 | .data = &dirty_expire_interval, | 1032 | .data = &dirty_expire_interval, |
1156 | .maxlen = sizeof(dirty_expire_interval), | 1033 | .maxlen = sizeof(dirty_expire_interval), |
1157 | .mode = 0644, | 1034 | .mode = 0644, |
1158 | .proc_handler = &proc_dointvec, | 1035 | .proc_handler = proc_dointvec, |
1159 | }, | 1036 | }, |
1160 | { | 1037 | { |
1161 | .ctl_name = VM_NR_PDFLUSH_THREADS, | ||
1162 | .procname = "nr_pdflush_threads", | 1038 | .procname = "nr_pdflush_threads", |
1163 | .data = &nr_pdflush_threads, | 1039 | .data = &nr_pdflush_threads, |
1164 | .maxlen = sizeof nr_pdflush_threads, | 1040 | .maxlen = sizeof nr_pdflush_threads, |
1165 | .mode = 0444 /* read-only*/, | 1041 | .mode = 0444 /* read-only*/, |
1166 | .proc_handler = &proc_dointvec, | 1042 | .proc_handler = proc_dointvec, |
1167 | }, | 1043 | }, |
1168 | { | 1044 | { |
1169 | .ctl_name = VM_SWAPPINESS, | ||
1170 | .procname = "swappiness", | 1045 | .procname = "swappiness", |
1171 | .data = &vm_swappiness, | 1046 | .data = &vm_swappiness, |
1172 | .maxlen = sizeof(vm_swappiness), | 1047 | .maxlen = sizeof(vm_swappiness), |
1173 | .mode = 0644, | 1048 | .mode = 0644, |
1174 | .proc_handler = &proc_dointvec_minmax, | 1049 | .proc_handler = proc_dointvec_minmax, |
1175 | .strategy = &sysctl_intvec, | ||
1176 | .extra1 = &zero, | 1050 | .extra1 = &zero, |
1177 | .extra2 = &one_hundred, | 1051 | .extra2 = &one_hundred, |
1178 | }, | 1052 | }, |
@@ -1182,255 +1056,213 @@ static struct ctl_table vm_table[] = { | |||
1182 | .data = NULL, | 1056 | .data = NULL, |
1183 | .maxlen = sizeof(unsigned long), | 1057 | .maxlen = sizeof(unsigned long), |
1184 | .mode = 0644, | 1058 | .mode = 0644, |
1185 | .proc_handler = &hugetlb_sysctl_handler, | 1059 | .proc_handler = hugetlb_sysctl_handler, |
1186 | .extra1 = (void *)&hugetlb_zero, | 1060 | .extra1 = (void *)&hugetlb_zero, |
1187 | .extra2 = (void *)&hugetlb_infinity, | 1061 | .extra2 = (void *)&hugetlb_infinity, |
1188 | }, | 1062 | }, |
1189 | { | 1063 | { |
1190 | .ctl_name = VM_HUGETLB_GROUP, | ||
1191 | .procname = "hugetlb_shm_group", | 1064 | .procname = "hugetlb_shm_group", |
1192 | .data = &sysctl_hugetlb_shm_group, | 1065 | .data = &sysctl_hugetlb_shm_group, |
1193 | .maxlen = sizeof(gid_t), | 1066 | .maxlen = sizeof(gid_t), |
1194 | .mode = 0644, | 1067 | .mode = 0644, |
1195 | .proc_handler = &proc_dointvec, | 1068 | .proc_handler = proc_dointvec, |
1196 | }, | 1069 | }, |
1197 | { | 1070 | { |
1198 | .ctl_name = CTL_UNNUMBERED, | ||
1199 | .procname = "hugepages_treat_as_movable", | 1071 | .procname = "hugepages_treat_as_movable", |
1200 | .data = &hugepages_treat_as_movable, | 1072 | .data = &hugepages_treat_as_movable, |
1201 | .maxlen = sizeof(int), | 1073 | .maxlen = sizeof(int), |
1202 | .mode = 0644, | 1074 | .mode = 0644, |
1203 | .proc_handler = &hugetlb_treat_movable_handler, | 1075 | .proc_handler = hugetlb_treat_movable_handler, |
1204 | }, | 1076 | }, |
1205 | { | 1077 | { |
1206 | .ctl_name = CTL_UNNUMBERED, | ||
1207 | .procname = "nr_overcommit_hugepages", | 1078 | .procname = "nr_overcommit_hugepages", |
1208 | .data = NULL, | 1079 | .data = NULL, |
1209 | .maxlen = sizeof(unsigned long), | 1080 | .maxlen = sizeof(unsigned long), |
1210 | .mode = 0644, | 1081 | .mode = 0644, |
1211 | .proc_handler = &hugetlb_overcommit_handler, | 1082 | .proc_handler = hugetlb_overcommit_handler, |
1212 | .extra1 = (void *)&hugetlb_zero, | 1083 | .extra1 = (void *)&hugetlb_zero, |
1213 | .extra2 = (void *)&hugetlb_infinity, | 1084 | .extra2 = (void *)&hugetlb_infinity, |
1214 | }, | 1085 | }, |
1215 | #endif | 1086 | #endif |
1216 | { | 1087 | { |
1217 | .ctl_name = VM_LOWMEM_RESERVE_RATIO, | ||
1218 | .procname = "lowmem_reserve_ratio", | 1088 | .procname = "lowmem_reserve_ratio", |
1219 | .data = &sysctl_lowmem_reserve_ratio, | 1089 | .data = &sysctl_lowmem_reserve_ratio, |
1220 | .maxlen = sizeof(sysctl_lowmem_reserve_ratio), | 1090 | .maxlen = sizeof(sysctl_lowmem_reserve_ratio), |
1221 | .mode = 0644, | 1091 | .mode = 0644, |
1222 | .proc_handler = &lowmem_reserve_ratio_sysctl_handler, | 1092 | .proc_handler = lowmem_reserve_ratio_sysctl_handler, |
1223 | .strategy = &sysctl_intvec, | ||
1224 | }, | 1093 | }, |
1225 | { | 1094 | { |
1226 | .ctl_name = VM_DROP_PAGECACHE, | ||
1227 | .procname = "drop_caches", | 1095 | .procname = "drop_caches", |
1228 | .data = &sysctl_drop_caches, | 1096 | .data = &sysctl_drop_caches, |
1229 | .maxlen = sizeof(int), | 1097 | .maxlen = sizeof(int), |
1230 | .mode = 0644, | 1098 | .mode = 0644, |
1231 | .proc_handler = drop_caches_sysctl_handler, | 1099 | .proc_handler = drop_caches_sysctl_handler, |
1232 | .strategy = &sysctl_intvec, | ||
1233 | }, | 1100 | }, |
1234 | { | 1101 | { |
1235 | .ctl_name = VM_MIN_FREE_KBYTES, | ||
1236 | .procname = "min_free_kbytes", | 1102 | .procname = "min_free_kbytes", |
1237 | .data = &min_free_kbytes, | 1103 | .data = &min_free_kbytes, |
1238 | .maxlen = sizeof(min_free_kbytes), | 1104 | .maxlen = sizeof(min_free_kbytes), |
1239 | .mode = 0644, | 1105 | .mode = 0644, |
1240 | .proc_handler = &min_free_kbytes_sysctl_handler, | 1106 | .proc_handler = min_free_kbytes_sysctl_handler, |
1241 | .strategy = &sysctl_intvec, | ||
1242 | .extra1 = &zero, | 1107 | .extra1 = &zero, |
1243 | }, | 1108 | }, |
1244 | { | 1109 | { |
1245 | .ctl_name = VM_PERCPU_PAGELIST_FRACTION, | ||
1246 | .procname = "percpu_pagelist_fraction", | 1110 | .procname = "percpu_pagelist_fraction", |
1247 | .data = &percpu_pagelist_fraction, | 1111 | .data = &percpu_pagelist_fraction, |
1248 | .maxlen = sizeof(percpu_pagelist_fraction), | 1112 | .maxlen = sizeof(percpu_pagelist_fraction), |
1249 | .mode = 0644, | 1113 | .mode = 0644, |
1250 | .proc_handler = &percpu_pagelist_fraction_sysctl_handler, | 1114 | .proc_handler = percpu_pagelist_fraction_sysctl_handler, |
1251 | .strategy = &sysctl_intvec, | ||
1252 | .extra1 = &min_percpu_pagelist_fract, | 1115 | .extra1 = &min_percpu_pagelist_fract, |
1253 | }, | 1116 | }, |
1254 | #ifdef CONFIG_MMU | 1117 | #ifdef CONFIG_MMU |
1255 | { | 1118 | { |
1256 | .ctl_name = VM_MAX_MAP_COUNT, | ||
1257 | .procname = "max_map_count", | 1119 | .procname = "max_map_count", |
1258 | .data = &sysctl_max_map_count, | 1120 | .data = &sysctl_max_map_count, |
1259 | .maxlen = sizeof(sysctl_max_map_count), | 1121 | .maxlen = sizeof(sysctl_max_map_count), |
1260 | .mode = 0644, | 1122 | .mode = 0644, |
1261 | .proc_handler = &proc_dointvec | 1123 | .proc_handler = proc_dointvec |
1262 | }, | 1124 | }, |
1263 | #else | 1125 | #else |
1264 | { | 1126 | { |
1265 | .ctl_name = CTL_UNNUMBERED, | ||
1266 | .procname = "nr_trim_pages", | 1127 | .procname = "nr_trim_pages", |
1267 | .data = &sysctl_nr_trim_pages, | 1128 | .data = &sysctl_nr_trim_pages, |
1268 | .maxlen = sizeof(sysctl_nr_trim_pages), | 1129 | .maxlen = sizeof(sysctl_nr_trim_pages), |
1269 | .mode = 0644, | 1130 | .mode = 0644, |
1270 | .proc_handler = &proc_dointvec_minmax, | 1131 | .proc_handler = proc_dointvec_minmax, |
1271 | .strategy = &sysctl_intvec, | ||
1272 | .extra1 = &zero, | 1132 | .extra1 = &zero, |
1273 | }, | 1133 | }, |
1274 | #endif | 1134 | #endif |
1275 | { | 1135 | { |
1276 | .ctl_name = VM_LAPTOP_MODE, | ||
1277 | .procname = "laptop_mode", | 1136 | .procname = "laptop_mode", |
1278 | .data = &laptop_mode, | 1137 | .data = &laptop_mode, |
1279 | .maxlen = sizeof(laptop_mode), | 1138 | .maxlen = sizeof(laptop_mode), |
1280 | .mode = 0644, | 1139 | .mode = 0644, |
1281 | .proc_handler = &proc_dointvec_jiffies, | 1140 | .proc_handler = proc_dointvec_jiffies, |
1282 | .strategy = &sysctl_jiffies, | ||
1283 | }, | 1141 | }, |
1284 | { | 1142 | { |
1285 | .ctl_name = VM_BLOCK_DUMP, | ||
1286 | .procname = "block_dump", | 1143 | .procname = "block_dump", |
1287 | .data = &block_dump, | 1144 | .data = &block_dump, |
1288 | .maxlen = sizeof(block_dump), | 1145 | .maxlen = sizeof(block_dump), |
1289 | .mode = 0644, | 1146 | .mode = 0644, |
1290 | .proc_handler = &proc_dointvec, | 1147 | .proc_handler = proc_dointvec, |
1291 | .strategy = &sysctl_intvec, | ||
1292 | .extra1 = &zero, | 1148 | .extra1 = &zero, |
1293 | }, | 1149 | }, |
1294 | { | 1150 | { |
1295 | .ctl_name = VM_VFS_CACHE_PRESSURE, | ||
1296 | .procname = "vfs_cache_pressure", | 1151 | .procname = "vfs_cache_pressure", |
1297 | .data = &sysctl_vfs_cache_pressure, | 1152 | .data = &sysctl_vfs_cache_pressure, |
1298 | .maxlen = sizeof(sysctl_vfs_cache_pressure), | 1153 | .maxlen = sizeof(sysctl_vfs_cache_pressure), |
1299 | .mode = 0644, | 1154 | .mode = 0644, |
1300 | .proc_handler = &proc_dointvec, | 1155 | .proc_handler = proc_dointvec, |
1301 | .strategy = &sysctl_intvec, | ||
1302 | .extra1 = &zero, | 1156 | .extra1 = &zero, |
1303 | }, | 1157 | }, |
1304 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT | 1158 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT |
1305 | { | 1159 | { |
1306 | .ctl_name = VM_LEGACY_VA_LAYOUT, | ||
1307 | .procname = "legacy_va_layout", | 1160 | .procname = "legacy_va_layout", |
1308 | .data = &sysctl_legacy_va_layout, | 1161 | .data = &sysctl_legacy_va_layout, |
1309 | .maxlen = sizeof(sysctl_legacy_va_layout), | 1162 | .maxlen = sizeof(sysctl_legacy_va_layout), |
1310 | .mode = 0644, | 1163 | .mode = 0644, |
1311 | .proc_handler = &proc_dointvec, | 1164 | .proc_handler = proc_dointvec, |
1312 | .strategy = &sysctl_intvec, | ||
1313 | .extra1 = &zero, | 1165 | .extra1 = &zero, |
1314 | }, | 1166 | }, |
1315 | #endif | 1167 | #endif |
1316 | #ifdef CONFIG_NUMA | 1168 | #ifdef CONFIG_NUMA |
1317 | { | 1169 | { |
1318 | .ctl_name = VM_ZONE_RECLAIM_MODE, | ||
1319 | .procname = "zone_reclaim_mode", | 1170 | .procname = "zone_reclaim_mode", |
1320 | .data = &zone_reclaim_mode, | 1171 | .data = &zone_reclaim_mode, |
1321 | .maxlen = sizeof(zone_reclaim_mode), | 1172 | .maxlen = sizeof(zone_reclaim_mode), |
1322 | .mode = 0644, | 1173 | .mode = 0644, |
1323 | .proc_handler = &proc_dointvec, | 1174 | .proc_handler = proc_dointvec, |
1324 | .strategy = &sysctl_intvec, | ||
1325 | .extra1 = &zero, | 1175 | .extra1 = &zero, |
1326 | }, | 1176 | }, |
1327 | { | 1177 | { |
1328 | .ctl_name = VM_MIN_UNMAPPED, | ||
1329 | .procname = "min_unmapped_ratio", | 1178 | .procname = "min_unmapped_ratio", |
1330 | .data = &sysctl_min_unmapped_ratio, | 1179 | .data = &sysctl_min_unmapped_ratio, |
1331 | .maxlen = sizeof(sysctl_min_unmapped_ratio), | 1180 | .maxlen = sizeof(sysctl_min_unmapped_ratio), |
1332 | .mode = 0644, | 1181 | .mode = 0644, |
1333 | .proc_handler = &sysctl_min_unmapped_ratio_sysctl_handler, | 1182 | .proc_handler = sysctl_min_unmapped_ratio_sysctl_handler, |
1334 | .strategy = &sysctl_intvec, | ||
1335 | .extra1 = &zero, | 1183 | .extra1 = &zero, |
1336 | .extra2 = &one_hundred, | 1184 | .extra2 = &one_hundred, |
1337 | }, | 1185 | }, |
1338 | { | 1186 | { |
1339 | .ctl_name = VM_MIN_SLAB, | ||
1340 | .procname = "min_slab_ratio", | 1187 | .procname = "min_slab_ratio", |
1341 | .data = &sysctl_min_slab_ratio, | 1188 | .data = &sysctl_min_slab_ratio, |
1342 | .maxlen = sizeof(sysctl_min_slab_ratio), | 1189 | .maxlen = sizeof(sysctl_min_slab_ratio), |
1343 | .mode = 0644, | 1190 | .mode = 0644, |
1344 | .proc_handler = &sysctl_min_slab_ratio_sysctl_handler, | 1191 | .proc_handler = sysctl_min_slab_ratio_sysctl_handler, |
1345 | .strategy = &sysctl_intvec, | ||
1346 | .extra1 = &zero, | 1192 | .extra1 = &zero, |
1347 | .extra2 = &one_hundred, | 1193 | .extra2 = &one_hundred, |
1348 | }, | 1194 | }, |
1349 | #endif | 1195 | #endif |
1350 | #ifdef CONFIG_SMP | 1196 | #ifdef CONFIG_SMP |
1351 | { | 1197 | { |
1352 | .ctl_name = CTL_UNNUMBERED, | ||
1353 | .procname = "stat_interval", | 1198 | .procname = "stat_interval", |
1354 | .data = &sysctl_stat_interval, | 1199 | .data = &sysctl_stat_interval, |
1355 | .maxlen = sizeof(sysctl_stat_interval), | 1200 | .maxlen = sizeof(sysctl_stat_interval), |
1356 | .mode = 0644, | 1201 | .mode = 0644, |
1357 | .proc_handler = &proc_dointvec_jiffies, | 1202 | .proc_handler = proc_dointvec_jiffies, |
1358 | .strategy = &sysctl_jiffies, | ||
1359 | }, | 1203 | }, |
1360 | #endif | 1204 | #endif |
1361 | { | 1205 | { |
1362 | .ctl_name = CTL_UNNUMBERED, | ||
1363 | .procname = "mmap_min_addr", | 1206 | .procname = "mmap_min_addr", |
1364 | .data = &dac_mmap_min_addr, | 1207 | .data = &dac_mmap_min_addr, |
1365 | .maxlen = sizeof(unsigned long), | 1208 | .maxlen = sizeof(unsigned long), |
1366 | .mode = 0644, | 1209 | .mode = 0644, |
1367 | .proc_handler = &mmap_min_addr_handler, | 1210 | .proc_handler = mmap_min_addr_handler, |
1368 | }, | 1211 | }, |
1369 | #ifdef CONFIG_NUMA | 1212 | #ifdef CONFIG_NUMA |
1370 | { | 1213 | { |
1371 | .ctl_name = CTL_UNNUMBERED, | ||
1372 | .procname = "numa_zonelist_order", | 1214 | .procname = "numa_zonelist_order", |
1373 | .data = &numa_zonelist_order, | 1215 | .data = &numa_zonelist_order, |
1374 | .maxlen = NUMA_ZONELIST_ORDER_LEN, | 1216 | .maxlen = NUMA_ZONELIST_ORDER_LEN, |
1375 | .mode = 0644, | 1217 | .mode = 0644, |
1376 | .proc_handler = &numa_zonelist_order_handler, | 1218 | .proc_handler = numa_zonelist_order_handler, |
1377 | .strategy = &sysctl_string, | ||
1378 | }, | 1219 | }, |
1379 | #endif | 1220 | #endif |
1380 | #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \ | 1221 | #if (defined(CONFIG_X86_32) && !defined(CONFIG_UML))|| \ |
1381 | (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) | 1222 | (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) |
1382 | { | 1223 | { |
1383 | .ctl_name = VM_VDSO_ENABLED, | ||
1384 | .procname = "vdso_enabled", | 1224 | .procname = "vdso_enabled", |
1385 | .data = &vdso_enabled, | 1225 | .data = &vdso_enabled, |
1386 | .maxlen = sizeof(vdso_enabled), | 1226 | .maxlen = sizeof(vdso_enabled), |
1387 | .mode = 0644, | 1227 | .mode = 0644, |
1388 | .proc_handler = &proc_dointvec, | 1228 | .proc_handler = proc_dointvec, |
1389 | .strategy = &sysctl_intvec, | ||
1390 | .extra1 = &zero, | 1229 | .extra1 = &zero, |
1391 | }, | 1230 | }, |
1392 | #endif | 1231 | #endif |
1393 | #ifdef CONFIG_HIGHMEM | 1232 | #ifdef CONFIG_HIGHMEM |
1394 | { | 1233 | { |
1395 | .ctl_name = CTL_UNNUMBERED, | ||
1396 | .procname = "highmem_is_dirtyable", | 1234 | .procname = "highmem_is_dirtyable", |
1397 | .data = &vm_highmem_is_dirtyable, | 1235 | .data = &vm_highmem_is_dirtyable, |
1398 | .maxlen = sizeof(vm_highmem_is_dirtyable), | 1236 | .maxlen = sizeof(vm_highmem_is_dirtyable), |
1399 | .mode = 0644, | 1237 | .mode = 0644, |
1400 | .proc_handler = &proc_dointvec_minmax, | 1238 | .proc_handler = proc_dointvec_minmax, |
1401 | .strategy = &sysctl_intvec, | ||
1402 | .extra1 = &zero, | 1239 | .extra1 = &zero, |
1403 | .extra2 = &one, | 1240 | .extra2 = &one, |
1404 | }, | 1241 | }, |
1405 | #endif | 1242 | #endif |
1406 | { | 1243 | { |
1407 | .ctl_name = CTL_UNNUMBERED, | ||
1408 | .procname = "scan_unevictable_pages", | 1244 | .procname = "scan_unevictable_pages", |
1409 | .data = &scan_unevictable_pages, | 1245 | .data = &scan_unevictable_pages, |
1410 | .maxlen = sizeof(scan_unevictable_pages), | 1246 | .maxlen = sizeof(scan_unevictable_pages), |
1411 | .mode = 0644, | 1247 | .mode = 0644, |
1412 | .proc_handler = &scan_unevictable_handler, | 1248 | .proc_handler = scan_unevictable_handler, |
1413 | }, | 1249 | }, |
1414 | #ifdef CONFIG_MEMORY_FAILURE | 1250 | #ifdef CONFIG_MEMORY_FAILURE |
1415 | { | 1251 | { |
1416 | .ctl_name = CTL_UNNUMBERED, | ||
1417 | .procname = "memory_failure_early_kill", | 1252 | .procname = "memory_failure_early_kill", |
1418 | .data = &sysctl_memory_failure_early_kill, | 1253 | .data = &sysctl_memory_failure_early_kill, |
1419 | .maxlen = sizeof(sysctl_memory_failure_early_kill), | 1254 | .maxlen = sizeof(sysctl_memory_failure_early_kill), |
1420 | .mode = 0644, | 1255 | .mode = 0644, |
1421 | .proc_handler = &proc_dointvec_minmax, | 1256 | .proc_handler = proc_dointvec_minmax, |
1422 | .strategy = &sysctl_intvec, | ||
1423 | .extra1 = &zero, | 1257 | .extra1 = &zero, |
1424 | .extra2 = &one, | 1258 | .extra2 = &one, |
1425 | }, | 1259 | }, |
1426 | { | 1260 | { |
1427 | .ctl_name = CTL_UNNUMBERED, | ||
1428 | .procname = "memory_failure_recovery", | 1261 | .procname = "memory_failure_recovery", |
1429 | .data = &sysctl_memory_failure_recovery, | 1262 | .data = &sysctl_memory_failure_recovery, |
1430 | .maxlen = sizeof(sysctl_memory_failure_recovery), | 1263 | .maxlen = sizeof(sysctl_memory_failure_recovery), |
1431 | .mode = 0644, | 1264 | .mode = 0644, |
1432 | .proc_handler = &proc_dointvec_minmax, | 1265 | .proc_handler = proc_dointvec_minmax, |
1433 | .strategy = &sysctl_intvec, | ||
1434 | .extra1 = &zero, | 1266 | .extra1 = &zero, |
1435 | .extra2 = &one, | 1267 | .extra2 = &one, |
1436 | }, | 1268 | }, |
@@ -1440,116 +1272,104 @@ static struct ctl_table vm_table[] = { | |||
1440 | * NOTE: do not add new entries to this table unless you have read | 1272 | * NOTE: do not add new entries to this table unless you have read |
1441 | * Documentation/sysctl/ctl_unnumbered.txt | 1273 | * Documentation/sysctl/ctl_unnumbered.txt |
1442 | */ | 1274 | */ |
1443 | { .ctl_name = 0 } | 1275 | { } |
1444 | }; | 1276 | }; |
1445 | 1277 | ||
1446 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) | 1278 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) |
1447 | static struct ctl_table binfmt_misc_table[] = { | 1279 | static struct ctl_table binfmt_misc_table[] = { |
1448 | { .ctl_name = 0 } | 1280 | { } |
1449 | }; | 1281 | }; |
1450 | #endif | 1282 | #endif |
1451 | 1283 | ||
1452 | static struct ctl_table fs_table[] = { | 1284 | static struct ctl_table fs_table[] = { |
1453 | { | 1285 | { |
1454 | .ctl_name = FS_NRINODE, | ||
1455 | .procname = "inode-nr", | 1286 | .procname = "inode-nr", |
1456 | .data = &inodes_stat, | 1287 | .data = &inodes_stat, |
1457 | .maxlen = 2*sizeof(int), | 1288 | .maxlen = 2*sizeof(int), |
1458 | .mode = 0444, | 1289 | .mode = 0444, |
1459 | .proc_handler = &proc_dointvec, | 1290 | .proc_handler = proc_dointvec, |
1460 | }, | 1291 | }, |
1461 | { | 1292 | { |
1462 | .ctl_name = FS_STATINODE, | ||
1463 | .procname = "inode-state", | 1293 | .procname = "inode-state", |
1464 | .data = &inodes_stat, | 1294 | .data = &inodes_stat, |
1465 | .maxlen = 7*sizeof(int), | 1295 | .maxlen = 7*sizeof(int), |
1466 | .mode = 0444, | 1296 | .mode = 0444, |
1467 | .proc_handler = &proc_dointvec, | 1297 | .proc_handler = proc_dointvec, |
1468 | }, | 1298 | }, |
1469 | { | 1299 | { |
1470 | .procname = "file-nr", | 1300 | .procname = "file-nr", |
1471 | .data = &files_stat, | 1301 | .data = &files_stat, |
1472 | .maxlen = 3*sizeof(int), | 1302 | .maxlen = 3*sizeof(int), |
1473 | .mode = 0444, | 1303 | .mode = 0444, |
1474 | .proc_handler = &proc_nr_files, | 1304 | .proc_handler = proc_nr_files, |
1475 | }, | 1305 | }, |
1476 | { | 1306 | { |
1477 | .ctl_name = FS_MAXFILE, | ||
1478 | .procname = "file-max", | 1307 | .procname = "file-max", |
1479 | .data = &files_stat.max_files, | 1308 | .data = &files_stat.max_files, |
1480 | .maxlen = sizeof(int), | 1309 | .maxlen = sizeof(int), |
1481 | .mode = 0644, | 1310 | .mode = 0644, |
1482 | .proc_handler = &proc_dointvec, | 1311 | .proc_handler = proc_dointvec, |
1483 | }, | 1312 | }, |
1484 | { | 1313 | { |
1485 | .ctl_name = CTL_UNNUMBERED, | ||
1486 | .procname = "nr_open", | 1314 | .procname = "nr_open", |
1487 | .data = &sysctl_nr_open, | 1315 | .data = &sysctl_nr_open, |
1488 | .maxlen = sizeof(int), | 1316 | .maxlen = sizeof(int), |
1489 | .mode = 0644, | 1317 | .mode = 0644, |
1490 | .proc_handler = &proc_dointvec_minmax, | 1318 | .proc_handler = proc_dointvec_minmax, |
1491 | .extra1 = &sysctl_nr_open_min, | 1319 | .extra1 = &sysctl_nr_open_min, |
1492 | .extra2 = &sysctl_nr_open_max, | 1320 | .extra2 = &sysctl_nr_open_max, |
1493 | }, | 1321 | }, |
1494 | { | 1322 | { |
1495 | .ctl_name = FS_DENTRY, | ||
1496 | .procname = "dentry-state", | 1323 | .procname = "dentry-state", |
1497 | .data = &dentry_stat, | 1324 | .data = &dentry_stat, |
1498 | .maxlen = 6*sizeof(int), | 1325 | .maxlen = 6*sizeof(int), |
1499 | .mode = 0444, | 1326 | .mode = 0444, |
1500 | .proc_handler = &proc_dointvec, | 1327 | .proc_handler = proc_dointvec, |
1501 | }, | 1328 | }, |
1502 | { | 1329 | { |
1503 | .ctl_name = FS_OVERFLOWUID, | ||
1504 | .procname = "overflowuid", | 1330 | .procname = "overflowuid", |
1505 | .data = &fs_overflowuid, | 1331 | .data = &fs_overflowuid, |
1506 | .maxlen = sizeof(int), | 1332 | .maxlen = sizeof(int), |
1507 | .mode = 0644, | 1333 | .mode = 0644, |
1508 | .proc_handler = &proc_dointvec_minmax, | 1334 | .proc_handler = proc_dointvec_minmax, |
1509 | .strategy = &sysctl_intvec, | ||
1510 | .extra1 = &minolduid, | 1335 | .extra1 = &minolduid, |
1511 | .extra2 = &maxolduid, | 1336 | .extra2 = &maxolduid, |
1512 | }, | 1337 | }, |
1513 | { | 1338 | { |
1514 | .ctl_name = FS_OVERFLOWGID, | ||
1515 | .procname = "overflowgid", | 1339 | .procname = "overflowgid", |
1516 | .data = &fs_overflowgid, | 1340 | .data = &fs_overflowgid, |
1517 | .maxlen = sizeof(int), | 1341 | .maxlen = sizeof(int), |
1518 | .mode = 0644, | 1342 | .mode = 0644, |
1519 | .proc_handler = &proc_dointvec_minmax, | 1343 | .proc_handler = proc_dointvec_minmax, |
1520 | .strategy = &sysctl_intvec, | ||
1521 | .extra1 = &minolduid, | 1344 | .extra1 = &minolduid, |
1522 | .extra2 = &maxolduid, | 1345 | .extra2 = &maxolduid, |
1523 | }, | 1346 | }, |
1524 | #ifdef CONFIG_FILE_LOCKING | 1347 | #ifdef CONFIG_FILE_LOCKING |
1525 | { | 1348 | { |
1526 | .ctl_name = FS_LEASES, | ||
1527 | .procname = "leases-enable", | 1349 | .procname = "leases-enable", |
1528 | .data = &leases_enable, | 1350 | .data = &leases_enable, |
1529 | .maxlen = sizeof(int), | 1351 | .maxlen = sizeof(int), |
1530 | .mode = 0644, | 1352 | .mode = 0644, |
1531 | .proc_handler = &proc_dointvec, | 1353 | .proc_handler = proc_dointvec, |
1532 | }, | 1354 | }, |
1533 | #endif | 1355 | #endif |
1534 | #ifdef CONFIG_DNOTIFY | 1356 | #ifdef CONFIG_DNOTIFY |
1535 | { | 1357 | { |
1536 | .ctl_name = FS_DIR_NOTIFY, | ||
1537 | .procname = "dir-notify-enable", | 1358 | .procname = "dir-notify-enable", |
1538 | .data = &dir_notify_enable, | 1359 | .data = &dir_notify_enable, |
1539 | .maxlen = sizeof(int), | 1360 | .maxlen = sizeof(int), |
1540 | .mode = 0644, | 1361 | .mode = 0644, |
1541 | .proc_handler = &proc_dointvec, | 1362 | .proc_handler = proc_dointvec, |
1542 | }, | 1363 | }, |
1543 | #endif | 1364 | #endif |
1544 | #ifdef CONFIG_MMU | 1365 | #ifdef CONFIG_MMU |
1545 | #ifdef CONFIG_FILE_LOCKING | 1366 | #ifdef CONFIG_FILE_LOCKING |
1546 | { | 1367 | { |
1547 | .ctl_name = FS_LEASE_TIME, | ||
1548 | .procname = "lease-break-time", | 1368 | .procname = "lease-break-time", |
1549 | .data = &lease_break_time, | 1369 | .data = &lease_break_time, |
1550 | .maxlen = sizeof(int), | 1370 | .maxlen = sizeof(int), |
1551 | .mode = 0644, | 1371 | .mode = 0644, |
1552 | .proc_handler = &proc_dointvec, | 1372 | .proc_handler = proc_dointvec, |
1553 | }, | 1373 | }, |
1554 | #endif | 1374 | #endif |
1555 | #ifdef CONFIG_AIO | 1375 | #ifdef CONFIG_AIO |
@@ -1558,19 +1378,18 @@ static struct ctl_table fs_table[] = { | |||
1558 | .data = &aio_nr, | 1378 | .data = &aio_nr, |
1559 | .maxlen = sizeof(aio_nr), | 1379 | .maxlen = sizeof(aio_nr), |
1560 | .mode = 0444, | 1380 | .mode = 0444, |
1561 | .proc_handler = &proc_doulongvec_minmax, | 1381 | .proc_handler = proc_doulongvec_minmax, |
1562 | }, | 1382 | }, |
1563 | { | 1383 | { |
1564 | .procname = "aio-max-nr", | 1384 | .procname = "aio-max-nr", |
1565 | .data = &aio_max_nr, | 1385 | .data = &aio_max_nr, |
1566 | .maxlen = sizeof(aio_max_nr), | 1386 | .maxlen = sizeof(aio_max_nr), |
1567 | .mode = 0644, | 1387 | .mode = 0644, |
1568 | .proc_handler = &proc_doulongvec_minmax, | 1388 | .proc_handler = proc_doulongvec_minmax, |
1569 | }, | 1389 | }, |
1570 | #endif /* CONFIG_AIO */ | 1390 | #endif /* CONFIG_AIO */ |
1571 | #ifdef CONFIG_INOTIFY_USER | 1391 | #ifdef CONFIG_INOTIFY_USER |
1572 | { | 1392 | { |
1573 | .ctl_name = FS_INOTIFY, | ||
1574 | .procname = "inotify", | 1393 | .procname = "inotify", |
1575 | .mode = 0555, | 1394 | .mode = 0555, |
1576 | .child = inotify_table, | 1395 | .child = inotify_table, |
@@ -1585,19 +1404,16 @@ static struct ctl_table fs_table[] = { | |||
1585 | #endif | 1404 | #endif |
1586 | #endif | 1405 | #endif |
1587 | { | 1406 | { |
1588 | .ctl_name = KERN_SETUID_DUMPABLE, | ||
1589 | .procname = "suid_dumpable", | 1407 | .procname = "suid_dumpable", |
1590 | .data = &suid_dumpable, | 1408 | .data = &suid_dumpable, |
1591 | .maxlen = sizeof(int), | 1409 | .maxlen = sizeof(int), |
1592 | .mode = 0644, | 1410 | .mode = 0644, |
1593 | .proc_handler = &proc_dointvec_minmax, | 1411 | .proc_handler = proc_dointvec_minmax, |
1594 | .strategy = &sysctl_intvec, | ||
1595 | .extra1 = &zero, | 1412 | .extra1 = &zero, |
1596 | .extra2 = &two, | 1413 | .extra2 = &two, |
1597 | }, | 1414 | }, |
1598 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) | 1415 | #if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE) |
1599 | { | 1416 | { |
1600 | .ctl_name = CTL_UNNUMBERED, | ||
1601 | .procname = "binfmt_misc", | 1417 | .procname = "binfmt_misc", |
1602 | .mode = 0555, | 1418 | .mode = 0555, |
1603 | .child = binfmt_misc_table, | 1419 | .child = binfmt_misc_table, |
@@ -1607,13 +1423,12 @@ static struct ctl_table fs_table[] = { | |||
1607 | * NOTE: do not add new entries to this table unless you have read | 1423 | * NOTE: do not add new entries to this table unless you have read |
1608 | * Documentation/sysctl/ctl_unnumbered.txt | 1424 | * Documentation/sysctl/ctl_unnumbered.txt |
1609 | */ | 1425 | */ |
1610 | { .ctl_name = 0 } | 1426 | { } |
1611 | }; | 1427 | }; |
1612 | 1428 | ||
1613 | static struct ctl_table debug_table[] = { | 1429 | static struct ctl_table debug_table[] = { |
1614 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) | 1430 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) |
1615 | { | 1431 | { |
1616 | .ctl_name = CTL_UNNUMBERED, | ||
1617 | .procname = "exception-trace", | 1432 | .procname = "exception-trace", |
1618 | .data = &show_unhandled_signals, | 1433 | .data = &show_unhandled_signals, |
1619 | .maxlen = sizeof(int), | 1434 | .maxlen = sizeof(int), |
@@ -1621,11 +1436,11 @@ static struct ctl_table debug_table[] = { | |||
1621 | .proc_handler = proc_dointvec | 1436 | .proc_handler = proc_dointvec |
1622 | }, | 1437 | }, |
1623 | #endif | 1438 | #endif |
1624 | { .ctl_name = 0 } | 1439 | { } |
1625 | }; | 1440 | }; |
1626 | 1441 | ||
1627 | static struct ctl_table dev_table[] = { | 1442 | static struct ctl_table dev_table[] = { |
1628 | { .ctl_name = 0 } | 1443 | { } |
1629 | }; | 1444 | }; |
1630 | 1445 | ||
1631 | static DEFINE_SPINLOCK(sysctl_lock); | 1446 | static DEFINE_SPINLOCK(sysctl_lock); |
@@ -1779,122 +1594,6 @@ void register_sysctl_root(struct ctl_table_root *root) | |||
1779 | spin_unlock(&sysctl_lock); | 1594 | spin_unlock(&sysctl_lock); |
1780 | } | 1595 | } |
1781 | 1596 | ||
1782 | #ifdef CONFIG_SYSCTL_SYSCALL | ||
1783 | /* Perform the actual read/write of a sysctl table entry. */ | ||
1784 | static int do_sysctl_strategy(struct ctl_table_root *root, | ||
1785 | struct ctl_table *table, | ||
1786 | void __user *oldval, size_t __user *oldlenp, | ||
1787 | void __user *newval, size_t newlen) | ||
1788 | { | ||
1789 | int op = 0, rc; | ||
1790 | |||
1791 | if (oldval) | ||
1792 | op |= MAY_READ; | ||
1793 | if (newval) | ||
1794 | op |= MAY_WRITE; | ||
1795 | if (sysctl_perm(root, table, op)) | ||
1796 | return -EPERM; | ||
1797 | |||
1798 | if (table->strategy) { | ||
1799 | rc = table->strategy(table, oldval, oldlenp, newval, newlen); | ||
1800 | if (rc < 0) | ||
1801 | return rc; | ||
1802 | if (rc > 0) | ||
1803 | return 0; | ||
1804 | } | ||
1805 | |||
1806 | /* If there is no strategy routine, or if the strategy returns | ||
1807 | * zero, proceed with automatic r/w */ | ||
1808 | if (table->data && table->maxlen) { | ||
1809 | rc = sysctl_data(table, oldval, oldlenp, newval, newlen); | ||
1810 | if (rc < 0) | ||
1811 | return rc; | ||
1812 | } | ||
1813 | return 0; | ||
1814 | } | ||
1815 | |||
1816 | static int parse_table(int __user *name, int nlen, | ||
1817 | void __user *oldval, size_t __user *oldlenp, | ||
1818 | void __user *newval, size_t newlen, | ||
1819 | struct ctl_table_root *root, | ||
1820 | struct ctl_table *table) | ||
1821 | { | ||
1822 | int n; | ||
1823 | repeat: | ||
1824 | if (!nlen) | ||
1825 | return -ENOTDIR; | ||
1826 | if (get_user(n, name)) | ||
1827 | return -EFAULT; | ||
1828 | for ( ; table->ctl_name || table->procname; table++) { | ||
1829 | if (!table->ctl_name) | ||
1830 | continue; | ||
1831 | if (n == table->ctl_name) { | ||
1832 | int error; | ||
1833 | if (table->child) { | ||
1834 | if (sysctl_perm(root, table, MAY_EXEC)) | ||
1835 | return -EPERM; | ||
1836 | name++; | ||
1837 | nlen--; | ||
1838 | table = table->child; | ||
1839 | goto repeat; | ||
1840 | } | ||
1841 | error = do_sysctl_strategy(root, table, | ||
1842 | oldval, oldlenp, | ||
1843 | newval, newlen); | ||
1844 | return error; | ||
1845 | } | ||
1846 | } | ||
1847 | return -ENOTDIR; | ||
1848 | } | ||
1849 | |||
1850 | int do_sysctl(int __user *name, int nlen, void __user *oldval, size_t __user *oldlenp, | ||
1851 | void __user *newval, size_t newlen) | ||
1852 | { | ||
1853 | struct ctl_table_header *head; | ||
1854 | int error = -ENOTDIR; | ||
1855 | |||
1856 | if (nlen <= 0 || nlen >= CTL_MAXNAME) | ||
1857 | return -ENOTDIR; | ||
1858 | if (oldval) { | ||
1859 | int old_len; | ||
1860 | if (!oldlenp || get_user(old_len, oldlenp)) | ||
1861 | return -EFAULT; | ||
1862 | } | ||
1863 | |||
1864 | for (head = sysctl_head_next(NULL); head; | ||
1865 | head = sysctl_head_next(head)) { | ||
1866 | error = parse_table(name, nlen, oldval, oldlenp, | ||
1867 | newval, newlen, | ||
1868 | head->root, head->ctl_table); | ||
1869 | if (error != -ENOTDIR) { | ||
1870 | sysctl_head_finish(head); | ||
1871 | break; | ||
1872 | } | ||
1873 | } | ||
1874 | return error; | ||
1875 | } | ||
1876 | |||
1877 | SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args) | ||
1878 | { | ||
1879 | struct __sysctl_args tmp; | ||
1880 | int error; | ||
1881 | |||
1882 | if (copy_from_user(&tmp, args, sizeof(tmp))) | ||
1883 | return -EFAULT; | ||
1884 | |||
1885 | error = deprecated_sysctl_warning(&tmp); | ||
1886 | if (error) | ||
1887 | goto out; | ||
1888 | |||
1889 | lock_kernel(); | ||
1890 | error = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, tmp.oldlenp, | ||
1891 | tmp.newval, tmp.newlen); | ||
1892 | unlock_kernel(); | ||
1893 | out: | ||
1894 | return error; | ||
1895 | } | ||
1896 | #endif /* CONFIG_SYSCTL_SYSCALL */ | ||
1897 | |||
1898 | /* | 1597 | /* |
1899 | * sysctl_perm does NOT grant the superuser all rights automatically, because | 1598 | * sysctl_perm does NOT grant the superuser all rights automatically, because |
1900 | * some sysctl variables are readonly even to root. | 1599 | * some sysctl variables are readonly even to root. |
@@ -1930,7 +1629,7 @@ int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op) | |||
1930 | 1629 | ||
1931 | static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table) | 1630 | static void sysctl_set_parent(struct ctl_table *parent, struct ctl_table *table) |
1932 | { | 1631 | { |
1933 | for (; table->ctl_name || table->procname; table++) { | 1632 | for (; table->procname; table++) { |
1934 | table->parent = parent; | 1633 | table->parent = parent; |
1935 | if (table->child) | 1634 | if (table->child) |
1936 | sysctl_set_parent(table, table->child); | 1635 | sysctl_set_parent(table, table->child); |
@@ -1962,11 +1661,11 @@ static struct ctl_table *is_branch_in(struct ctl_table *branch, | |||
1962 | return NULL; | 1661 | return NULL; |
1963 | 1662 | ||
1964 | /* ... and nothing else */ | 1663 | /* ... and nothing else */ |
1965 | if (branch[1].procname || branch[1].ctl_name) | 1664 | if (branch[1].procname) |
1966 | return NULL; | 1665 | return NULL; |
1967 | 1666 | ||
1968 | /* table should contain subdirectory with the same name */ | 1667 | /* table should contain subdirectory with the same name */ |
1969 | for (p = table; p->procname || p->ctl_name; p++) { | 1668 | for (p = table; p->procname; p++) { |
1970 | if (!p->child) | 1669 | if (!p->child) |
1971 | continue; | 1670 | continue; |
1972 | if (p->procname && strcmp(p->procname, s) == 0) | 1671 | if (p->procname && strcmp(p->procname, s) == 0) |
@@ -2011,9 +1710,6 @@ static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q) | |||
2011 | * | 1710 | * |
2012 | * The members of the &struct ctl_table structure are used as follows: | 1711 | * The members of the &struct ctl_table structure are used as follows: |
2013 | * | 1712 | * |
2014 | * ctl_name - This is the numeric sysctl value used by sysctl(2). The number | ||
2015 | * must be unique within that level of sysctl | ||
2016 | * | ||
2017 | * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not | 1713 | * procname - the name of the sysctl file under /proc/sys. Set to %NULL to not |
2018 | * enter a sysctl file | 1714 | * enter a sysctl file |
2019 | * | 1715 | * |
@@ -2028,8 +1724,6 @@ static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q) | |||
2028 | * | 1724 | * |
2029 | * proc_handler - the text handler routine (described below) | 1725 | * proc_handler - the text handler routine (described below) |
2030 | * | 1726 | * |
2031 | * strategy - the strategy routine (described below) | ||
2032 | * | ||
2033 | * de - for internal use by the sysctl routines | 1727 | * de - for internal use by the sysctl routines |
2034 | * | 1728 | * |
2035 | * extra1, extra2 - extra pointers usable by the proc handler routines | 1729 | * extra1, extra2 - extra pointers usable by the proc handler routines |
@@ -2042,19 +1736,6 @@ static void try_attach(struct ctl_table_header *p, struct ctl_table_header *q) | |||
2042 | * struct enable minimal validation of the values being written to be | 1736 | * struct enable minimal validation of the values being written to be |
2043 | * performed, and the mode field allows minimal authentication. | 1737 | * performed, and the mode field allows minimal authentication. |
2044 | * | 1738 | * |
2045 | * More sophisticated management can be enabled by the provision of a | ||
2046 | * strategy routine with the table entry. This will be called before | ||
2047 | * any automatic read or write of the data is performed. | ||
2048 | * | ||
2049 | * The strategy routine may return | ||
2050 | * | ||
2051 | * < 0 - Error occurred (error is passed to user process) | ||
2052 | * | ||
2053 | * 0 - OK - proceed with automatic read or write. | ||
2054 | * | ||
2055 | * > 0 - OK - read or write has been done by the strategy routine, so | ||
2056 | * return immediately. | ||
2057 | * | ||
2058 | * There must be a proc_handler routine for any terminal nodes | 1739 | * There must be a proc_handler routine for any terminal nodes |
2059 | * mirrored under /proc/sys (non-terminals are handled by a built-in | 1740 | * mirrored under /proc/sys (non-terminals are handled by a built-in |
2060 | * directory handler). Several default handlers are available to | 1741 | * directory handler). Several default handlers are available to |
@@ -2081,13 +1762,13 @@ struct ctl_table_header *__register_sysctl_paths( | |||
2081 | struct ctl_table_set *set; | 1762 | struct ctl_table_set *set; |
2082 | 1763 | ||
2083 | /* Count the path components */ | 1764 | /* Count the path components */ |
2084 | for (npath = 0; path[npath].ctl_name || path[npath].procname; ++npath) | 1765 | for (npath = 0; path[npath].procname; ++npath) |
2085 | ; | 1766 | ; |
2086 | 1767 | ||
2087 | /* | 1768 | /* |
2088 | * For each path component, allocate a 2-element ctl_table array. | 1769 | * For each path component, allocate a 2-element ctl_table array. |
2089 | * The first array element will be filled with the sysctl entry | 1770 | * The first array element will be filled with the sysctl entry |
2090 | * for this, the second will be the sentinel (ctl_name == 0). | 1771 | * for this, the second will be the sentinel (procname == 0). |
2091 | * | 1772 | * |
2092 | * We allocate everything in one go so that we don't have to | 1773 | * We allocate everything in one go so that we don't have to |
2093 | * worry about freeing additional memory in unregister_sysctl_table. | 1774 | * worry about freeing additional memory in unregister_sysctl_table. |
@@ -2104,7 +1785,6 @@ struct ctl_table_header *__register_sysctl_paths( | |||
2104 | for (n = 0; n < npath; ++n, ++path) { | 1785 | for (n = 0; n < npath; ++n, ++path) { |
2105 | /* Copy the procname */ | 1786 | /* Copy the procname */ |
2106 | new->procname = path->procname; | 1787 | new->procname = path->procname; |
2107 | new->ctl_name = path->ctl_name; | ||
2108 | new->mode = 0555; | 1788 | new->mode = 0555; |
2109 | 1789 | ||
2110 | *prevp = new; | 1790 | *prevp = new; |
@@ -2966,286 +2646,6 @@ int proc_doulongvec_ms_jiffies_minmax(struct ctl_table *table, int write, | |||
2966 | 2646 | ||
2967 | #endif /* CONFIG_PROC_FS */ | 2647 | #endif /* CONFIG_PROC_FS */ |
2968 | 2648 | ||
2969 | |||
2970 | #ifdef CONFIG_SYSCTL_SYSCALL | ||
2971 | /* | ||
2972 | * General sysctl support routines | ||
2973 | */ | ||
2974 | |||
2975 | /* The generic sysctl data routine (used if no strategy routine supplied) */ | ||
2976 | int sysctl_data(struct ctl_table *table, | ||
2977 | void __user *oldval, size_t __user *oldlenp, | ||
2978 | void __user *newval, size_t newlen) | ||
2979 | { | ||
2980 | size_t len; | ||
2981 | |||
2982 | /* Get out of I don't have a variable */ | ||
2983 | if (!table->data || !table->maxlen) | ||
2984 | return -ENOTDIR; | ||
2985 | |||
2986 | if (oldval && oldlenp) { | ||
2987 | if (get_user(len, oldlenp)) | ||
2988 | return -EFAULT; | ||
2989 | if (len) { | ||
2990 | if (len > table->maxlen) | ||
2991 | len = table->maxlen; | ||
2992 | if (copy_to_user(oldval, table->data, len)) | ||
2993 | return -EFAULT; | ||
2994 | if (put_user(len, oldlenp)) | ||
2995 | return -EFAULT; | ||
2996 | } | ||
2997 | } | ||
2998 | |||
2999 | if (newval && newlen) { | ||
3000 | if (newlen > table->maxlen) | ||
3001 | newlen = table->maxlen; | ||
3002 | |||
3003 | if (copy_from_user(table->data, newval, newlen)) | ||
3004 | return -EFAULT; | ||
3005 | } | ||
3006 | return 1; | ||
3007 | } | ||
3008 | |||
3009 | /* The generic string strategy routine: */ | ||
3010 | int sysctl_string(struct ctl_table *table, | ||
3011 | void __user *oldval, size_t __user *oldlenp, | ||
3012 | void __user *newval, size_t newlen) | ||
3013 | { | ||
3014 | if (!table->data || !table->maxlen) | ||
3015 | return -ENOTDIR; | ||
3016 | |||
3017 | if (oldval && oldlenp) { | ||
3018 | size_t bufsize; | ||
3019 | if (get_user(bufsize, oldlenp)) | ||
3020 | return -EFAULT; | ||
3021 | if (bufsize) { | ||
3022 | size_t len = strlen(table->data), copied; | ||
3023 | |||
3024 | /* This shouldn't trigger for a well-formed sysctl */ | ||
3025 | if (len > table->maxlen) | ||
3026 | len = table->maxlen; | ||
3027 | |||
3028 | /* Copy up to a max of bufsize-1 bytes of the string */ | ||
3029 | copied = (len >= bufsize) ? bufsize - 1 : len; | ||
3030 | |||
3031 | if (copy_to_user(oldval, table->data, copied) || | ||
3032 | put_user(0, (char __user *)(oldval + copied))) | ||
3033 | return -EFAULT; | ||
3034 | if (put_user(len, oldlenp)) | ||
3035 | return -EFAULT; | ||
3036 | } | ||
3037 | } | ||
3038 | if (newval && newlen) { | ||
3039 | size_t len = newlen; | ||
3040 | if (len > table->maxlen) | ||
3041 | len = table->maxlen; | ||
3042 | if(copy_from_user(table->data, newval, len)) | ||
3043 | return -EFAULT; | ||
3044 | if (len == table->maxlen) | ||
3045 | len--; | ||
3046 | ((char *) table->data)[len] = 0; | ||
3047 | } | ||
3048 | return 1; | ||
3049 | } | ||
3050 | |||
3051 | /* | ||
3052 | * This function makes sure that all of the integers in the vector | ||
3053 | * are between the minimum and maximum values given in the arrays | ||
3054 | * table->extra1 and table->extra2, respectively. | ||
3055 | */ | ||
3056 | int sysctl_intvec(struct ctl_table *table, | ||
3057 | void __user *oldval, size_t __user *oldlenp, | ||
3058 | void __user *newval, size_t newlen) | ||
3059 | { | ||
3060 | |||
3061 | if (newval && newlen) { | ||
3062 | int __user *vec = (int __user *) newval; | ||
3063 | int *min = (int *) table->extra1; | ||
3064 | int *max = (int *) table->extra2; | ||
3065 | size_t length; | ||
3066 | int i; | ||
3067 | |||
3068 | if (newlen % sizeof(int) != 0) | ||
3069 | return -EINVAL; | ||
3070 | |||
3071 | if (!table->extra1 && !table->extra2) | ||
3072 | return 0; | ||
3073 | |||
3074 | if (newlen > table->maxlen) | ||
3075 | newlen = table->maxlen; | ||
3076 | length = newlen / sizeof(int); | ||
3077 | |||
3078 | for (i = 0; i < length; i++) { | ||
3079 | int value; | ||
3080 | if (get_user(value, vec + i)) | ||
3081 | return -EFAULT; | ||
3082 | if (min && value < min[i]) | ||
3083 | return -EINVAL; | ||
3084 | if (max && value > max[i]) | ||
3085 | return -EINVAL; | ||
3086 | } | ||
3087 | } | ||
3088 | return 0; | ||
3089 | } | ||
3090 | |||
3091 | /* Strategy function to convert jiffies to seconds */ | ||
3092 | int sysctl_jiffies(struct ctl_table *table, | ||
3093 | void __user *oldval, size_t __user *oldlenp, | ||
3094 | void __user *newval, size_t newlen) | ||
3095 | { | ||
3096 | if (oldval && oldlenp) { | ||
3097 | size_t olen; | ||
3098 | |||
3099 | if (get_user(olen, oldlenp)) | ||
3100 | return -EFAULT; | ||
3101 | if (olen) { | ||
3102 | int val; | ||
3103 | |||
3104 | if (olen < sizeof(int)) | ||
3105 | return -EINVAL; | ||
3106 | |||
3107 | val = *(int *)(table->data) / HZ; | ||
3108 | if (put_user(val, (int __user *)oldval)) | ||
3109 | return -EFAULT; | ||
3110 | if (put_user(sizeof(int), oldlenp)) | ||
3111 | return -EFAULT; | ||
3112 | } | ||
3113 | } | ||
3114 | if (newval && newlen) { | ||
3115 | int new; | ||
3116 | if (newlen != sizeof(int)) | ||
3117 | return -EINVAL; | ||
3118 | if (get_user(new, (int __user *)newval)) | ||
3119 | return -EFAULT; | ||
3120 | *(int *)(table->data) = new*HZ; | ||
3121 | } | ||
3122 | return 1; | ||
3123 | } | ||
3124 | |||
3125 | /* Strategy function to convert jiffies to seconds */ | ||
3126 | int sysctl_ms_jiffies(struct ctl_table *table, | ||
3127 | void __user *oldval, size_t __user *oldlenp, | ||
3128 | void __user *newval, size_t newlen) | ||
3129 | { | ||
3130 | if (oldval && oldlenp) { | ||
3131 | size_t olen; | ||
3132 | |||
3133 | if (get_user(olen, oldlenp)) | ||
3134 | return -EFAULT; | ||
3135 | if (olen) { | ||
3136 | int val; | ||
3137 | |||
3138 | if (olen < sizeof(int)) | ||
3139 | return -EINVAL; | ||
3140 | |||
3141 | val = jiffies_to_msecs(*(int *)(table->data)); | ||
3142 | if (put_user(val, (int __user *)oldval)) | ||
3143 | return -EFAULT; | ||
3144 | if (put_user(sizeof(int), oldlenp)) | ||
3145 | return -EFAULT; | ||
3146 | } | ||
3147 | } | ||
3148 | if (newval && newlen) { | ||
3149 | int new; | ||
3150 | if (newlen != sizeof(int)) | ||
3151 | return -EINVAL; | ||
3152 | if (get_user(new, (int __user *)newval)) | ||
3153 | return -EFAULT; | ||
3154 | *(int *)(table->data) = msecs_to_jiffies(new); | ||
3155 | } | ||
3156 | return 1; | ||
3157 | } | ||
3158 | |||
3159 | |||
3160 | |||
3161 | #else /* CONFIG_SYSCTL_SYSCALL */ | ||
3162 | |||
3163 | |||
3164 | SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args) | ||
3165 | { | ||
3166 | struct __sysctl_args tmp; | ||
3167 | int error; | ||
3168 | |||
3169 | if (copy_from_user(&tmp, args, sizeof(tmp))) | ||
3170 | return -EFAULT; | ||
3171 | |||
3172 | error = deprecated_sysctl_warning(&tmp); | ||
3173 | |||
3174 | /* If no error reading the parameters then just -ENOSYS ... */ | ||
3175 | if (!error) | ||
3176 | error = -ENOSYS; | ||
3177 | |||
3178 | return error; | ||
3179 | } | ||
3180 | |||
3181 | int sysctl_data(struct ctl_table *table, | ||
3182 | void __user *oldval, size_t __user *oldlenp, | ||
3183 | void __user *newval, size_t newlen) | ||
3184 | { | ||
3185 | return -ENOSYS; | ||
3186 | } | ||
3187 | |||
3188 | int sysctl_string(struct ctl_table *table, | ||
3189 | void __user *oldval, size_t __user *oldlenp, | ||
3190 | void __user *newval, size_t newlen) | ||
3191 | { | ||
3192 | return -ENOSYS; | ||
3193 | } | ||
3194 | |||
3195 | int sysctl_intvec(struct ctl_table *table, | ||
3196 | void __user *oldval, size_t __user *oldlenp, | ||
3197 | void __user *newval, size_t newlen) | ||
3198 | { | ||
3199 | return -ENOSYS; | ||
3200 | } | ||
3201 | |||
3202 | int sysctl_jiffies(struct ctl_table *table, | ||
3203 | void __user *oldval, size_t __user *oldlenp, | ||
3204 | void __user *newval, size_t newlen) | ||
3205 | { | ||
3206 | return -ENOSYS; | ||
3207 | } | ||
3208 | |||
3209 | int sysctl_ms_jiffies(struct ctl_table *table, | ||
3210 | void __user *oldval, size_t __user *oldlenp, | ||
3211 | void __user *newval, size_t newlen) | ||
3212 | { | ||
3213 | return -ENOSYS; | ||
3214 | } | ||
3215 | |||
3216 | #endif /* CONFIG_SYSCTL_SYSCALL */ | ||
3217 | |||
3218 | static int deprecated_sysctl_warning(struct __sysctl_args *args) | ||
3219 | { | ||
3220 | static int msg_count; | ||
3221 | int name[CTL_MAXNAME]; | ||
3222 | int i; | ||
3223 | |||
3224 | /* Check args->nlen. */ | ||
3225 | if (args->nlen < 0 || args->nlen > CTL_MAXNAME) | ||
3226 | return -ENOTDIR; | ||
3227 | |||
3228 | /* Read in the sysctl name for better debug message logging */ | ||
3229 | for (i = 0; i < args->nlen; i++) | ||
3230 | if (get_user(name[i], args->name + i)) | ||
3231 | return -EFAULT; | ||
3232 | |||
3233 | /* Ignore accesses to kernel.version */ | ||
3234 | if ((args->nlen == 2) && (name[0] == CTL_KERN) && (name[1] == KERN_VERSION)) | ||
3235 | return 0; | ||
3236 | |||
3237 | if (msg_count < 5) { | ||
3238 | msg_count++; | ||
3239 | printk(KERN_INFO | ||
3240 | "warning: process `%s' used the deprecated sysctl " | ||
3241 | "system call with ", current->comm); | ||
3242 | for (i = 0; i < args->nlen; i++) | ||
3243 | printk("%d.", name[i]); | ||
3244 | printk("\n"); | ||
3245 | } | ||
3246 | return 0; | ||
3247 | } | ||
3248 | |||
3249 | /* | 2649 | /* |
3250 | * No sense putting this after each symbol definition, twice, | 2650 | * No sense putting this after each symbol definition, twice, |
3251 | * exception granted :-) | 2651 | * exception granted :-) |
@@ -3260,9 +2660,4 @@ EXPORT_SYMBOL(proc_doulongvec_minmax); | |||
3260 | EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax); | 2660 | EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax); |
3261 | EXPORT_SYMBOL(register_sysctl_table); | 2661 | EXPORT_SYMBOL(register_sysctl_table); |
3262 | EXPORT_SYMBOL(register_sysctl_paths); | 2662 | EXPORT_SYMBOL(register_sysctl_paths); |
3263 | EXPORT_SYMBOL(sysctl_intvec); | ||
3264 | EXPORT_SYMBOL(sysctl_jiffies); | ||
3265 | EXPORT_SYMBOL(sysctl_ms_jiffies); | ||
3266 | EXPORT_SYMBOL(sysctl_string); | ||
3267 | EXPORT_SYMBOL(sysctl_data); | ||
3268 | EXPORT_SYMBOL(unregister_sysctl_table); | 2663 | EXPORT_SYMBOL(unregister_sysctl_table); |
diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c new file mode 100644 index 000000000000..b75dbf40f573 --- /dev/null +++ b/kernel/sysctl_binary.c | |||
@@ -0,0 +1,1507 @@ | |||
1 | #include <linux/stat.h> | ||
2 | #include <linux/sysctl.h> | ||
3 | #include "../fs/xfs/linux-2.6/xfs_sysctl.h" | ||
4 | #include <linux/sunrpc/debug.h> | ||
5 | #include <linux/string.h> | ||
6 | #include <net/ip_vs.h> | ||
7 | #include <linux/syscalls.h> | ||
8 | #include <linux/namei.h> | ||
9 | #include <linux/mount.h> | ||
10 | #include <linux/fs.h> | ||
11 | #include <linux/nsproxy.h> | ||
12 | #include <linux/pid_namespace.h> | ||
13 | #include <linux/file.h> | ||
14 | #include <linux/ctype.h> | ||
15 | #include <linux/netdevice.h> | ||
16 | |||
17 | #ifdef CONFIG_SYSCTL_SYSCALL | ||
18 | |||
19 | struct bin_table; | ||
20 | typedef ssize_t bin_convert_t(struct file *file, | ||
21 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen); | ||
22 | |||
23 | static bin_convert_t bin_dir; | ||
24 | static bin_convert_t bin_string; | ||
25 | static bin_convert_t bin_intvec; | ||
26 | static bin_convert_t bin_ulongvec; | ||
27 | static bin_convert_t bin_uuid; | ||
28 | static bin_convert_t bin_dn_node_address; | ||
29 | |||
30 | #define CTL_DIR bin_dir | ||
31 | #define CTL_STR bin_string | ||
32 | #define CTL_INT bin_intvec | ||
33 | #define CTL_ULONG bin_ulongvec | ||
34 | #define CTL_UUID bin_uuid | ||
35 | #define CTL_DNADR bin_dn_node_address | ||
36 | |||
37 | #define BUFSZ 256 | ||
38 | |||
39 | struct bin_table { | ||
40 | bin_convert_t *convert; | ||
41 | int ctl_name; | ||
42 | const char *procname; | ||
43 | const struct bin_table *child; | ||
44 | }; | ||
45 | |||
46 | static const struct bin_table bin_random_table[] = { | ||
47 | { CTL_INT, RANDOM_POOLSIZE, "poolsize" }, | ||
48 | { CTL_INT, RANDOM_ENTROPY_COUNT, "entropy_avail" }, | ||
49 | { CTL_INT, RANDOM_READ_THRESH, "read_wakeup_threshold" }, | ||
50 | { CTL_INT, RANDOM_WRITE_THRESH, "write_wakeup_threshold" }, | ||
51 | { CTL_UUID, RANDOM_BOOT_ID, "boot_id" }, | ||
52 | { CTL_UUID, RANDOM_UUID, "uuid" }, | ||
53 | {} | ||
54 | }; | ||
55 | |||
56 | static const struct bin_table bin_pty_table[] = { | ||
57 | { CTL_INT, PTY_MAX, "max" }, | ||
58 | { CTL_INT, PTY_NR, "nr" }, | ||
59 | {} | ||
60 | }; | ||
61 | |||
62 | static const struct bin_table bin_kern_table[] = { | ||
63 | { CTL_STR, KERN_OSTYPE, "ostype" }, | ||
64 | { CTL_STR, KERN_OSRELEASE, "osrelease" }, | ||
65 | /* KERN_OSREV not used */ | ||
66 | { CTL_STR, KERN_VERSION, "version" }, | ||
67 | /* KERN_SECUREMASK not used */ | ||
68 | /* KERN_PROF not used */ | ||
69 | { CTL_STR, KERN_NODENAME, "hostname" }, | ||
70 | { CTL_STR, KERN_DOMAINNAME, "domainname" }, | ||
71 | |||
72 | { CTL_INT, KERN_PANIC, "panic" }, | ||
73 | { CTL_INT, KERN_REALROOTDEV, "real-root-dev" }, | ||
74 | |||
75 | { CTL_STR, KERN_SPARC_REBOOT, "reboot-cmd" }, | ||
76 | { CTL_INT, KERN_CTLALTDEL, "ctrl-alt-del" }, | ||
77 | { CTL_INT, KERN_PRINTK, "printk" }, | ||
78 | |||
79 | /* KERN_NAMETRANS not used */ | ||
80 | /* KERN_PPC_HTABRECLAIM not used */ | ||
81 | /* KERN_PPC_ZEROPAGED not used */ | ||
82 | { CTL_INT, KERN_PPC_POWERSAVE_NAP, "powersave-nap" }, | ||
83 | |||
84 | { CTL_STR, KERN_MODPROBE, "modprobe" }, | ||
85 | { CTL_INT, KERN_SG_BIG_BUFF, "sg-big-buff" }, | ||
86 | { CTL_INT, KERN_ACCT, "acct" }, | ||
87 | /* KERN_PPC_L2CR "l2cr" no longer used */ | ||
88 | |||
89 | /* KERN_RTSIGNR not used */ | ||
90 | /* KERN_RTSIGMAX not used */ | ||
91 | |||
92 | { CTL_ULONG, KERN_SHMMAX, "shmmax" }, | ||
93 | { CTL_INT, KERN_MSGMAX, "msgmax" }, | ||
94 | { CTL_INT, KERN_MSGMNB, "msgmnb" }, | ||
95 | /* KERN_MSGPOOL not used*/ | ||
96 | { CTL_INT, KERN_SYSRQ, "sysrq" }, | ||
97 | { CTL_INT, KERN_MAX_THREADS, "threads-max" }, | ||
98 | { CTL_DIR, KERN_RANDOM, "random", bin_random_table }, | ||
99 | { CTL_ULONG, KERN_SHMALL, "shmall" }, | ||
100 | { CTL_INT, KERN_MSGMNI, "msgmni" }, | ||
101 | { CTL_INT, KERN_SEM, "sem" }, | ||
102 | { CTL_INT, KERN_SPARC_STOP_A, "stop-a" }, | ||
103 | { CTL_INT, KERN_SHMMNI, "shmmni" }, | ||
104 | |||
105 | { CTL_INT, KERN_OVERFLOWUID, "overflowuid" }, | ||
106 | { CTL_INT, KERN_OVERFLOWGID, "overflowgid" }, | ||
107 | |||
108 | { CTL_STR, KERN_HOTPLUG, "hotplug", }, | ||
109 | { CTL_INT, KERN_IEEE_EMULATION_WARNINGS, "ieee_emulation_warnings" }, | ||
110 | |||
111 | { CTL_INT, KERN_S390_USER_DEBUG_LOGGING, "userprocess_debug" }, | ||
112 | { CTL_INT, KERN_CORE_USES_PID, "core_uses_pid" }, | ||
113 | /* KERN_TAINTED "tainted" no longer used */ | ||
114 | { CTL_INT, KERN_CADPID, "cad_pid" }, | ||
115 | { CTL_INT, KERN_PIDMAX, "pid_max" }, | ||
116 | { CTL_STR, KERN_CORE_PATTERN, "core_pattern" }, | ||
117 | { CTL_INT, KERN_PANIC_ON_OOPS, "panic_on_oops" }, | ||
118 | { CTL_INT, KERN_HPPA_PWRSW, "soft-power" }, | ||
119 | { CTL_INT, KERN_HPPA_UNALIGNED, "unaligned-trap" }, | ||
120 | |||
121 | { CTL_INT, KERN_PRINTK_RATELIMIT, "printk_ratelimit" }, | ||
122 | { CTL_INT, KERN_PRINTK_RATELIMIT_BURST, "printk_ratelimit_burst" }, | ||
123 | |||
124 | { CTL_DIR, KERN_PTY, "pty", bin_pty_table }, | ||
125 | { CTL_INT, KERN_NGROUPS_MAX, "ngroups_max" }, | ||
126 | { CTL_INT, KERN_SPARC_SCONS_PWROFF, "scons-poweroff" }, | ||
127 | /* KERN_HZ_TIMER "hz_timer" no longer used */ | ||
128 | { CTL_INT, KERN_UNKNOWN_NMI_PANIC, "unknown_nmi_panic" }, | ||
129 | { CTL_INT, KERN_BOOTLOADER_TYPE, "bootloader_type" }, | ||
130 | { CTL_INT, KERN_RANDOMIZE, "randomize_va_space" }, | ||
131 | |||
132 | { CTL_INT, KERN_SPIN_RETRY, "spin_retry" }, | ||
133 | /* KERN_ACPI_VIDEO_FLAGS "acpi_video_flags" no longer used */ | ||
134 | { CTL_INT, KERN_IA64_UNALIGNED, "ignore-unaligned-usertrap" }, | ||
135 | { CTL_INT, KERN_COMPAT_LOG, "compat-log" }, | ||
136 | { CTL_INT, KERN_MAX_LOCK_DEPTH, "max_lock_depth" }, | ||
137 | { CTL_INT, KERN_NMI_WATCHDOG, "nmi_watchdog" }, | ||
138 | { CTL_INT, KERN_PANIC_ON_NMI, "panic_on_unrecovered_nmi" }, | ||
139 | {} | ||
140 | }; | ||
141 | |||
142 | static const struct bin_table bin_vm_table[] = { | ||
143 | { CTL_INT, VM_OVERCOMMIT_MEMORY, "overcommit_memory" }, | ||
144 | { CTL_INT, VM_PAGE_CLUSTER, "page-cluster" }, | ||
145 | { CTL_INT, VM_DIRTY_BACKGROUND, "dirty_background_ratio" }, | ||
146 | { CTL_INT, VM_DIRTY_RATIO, "dirty_ratio" }, | ||
147 | /* VM_DIRTY_WB_CS "dirty_writeback_centisecs" no longer used */ | ||
148 | /* VM_DIRTY_EXPIRE_CS "dirty_expire_centisecs" no longer used */ | ||
149 | { CTL_INT, VM_NR_PDFLUSH_THREADS, "nr_pdflush_threads" }, | ||
150 | { CTL_INT, VM_OVERCOMMIT_RATIO, "overcommit_ratio" }, | ||
151 | /* VM_PAGEBUF unused */ | ||
152 | /* VM_HUGETLB_PAGES "nr_hugepages" no longer used */ | ||
153 | { CTL_INT, VM_SWAPPINESS, "swappiness" }, | ||
154 | { CTL_INT, VM_LOWMEM_RESERVE_RATIO, "lowmem_reserve_ratio" }, | ||
155 | { CTL_INT, VM_MIN_FREE_KBYTES, "min_free_kbytes" }, | ||
156 | { CTL_INT, VM_MAX_MAP_COUNT, "max_map_count" }, | ||
157 | { CTL_INT, VM_LAPTOP_MODE, "laptop_mode" }, | ||
158 | { CTL_INT, VM_BLOCK_DUMP, "block_dump" }, | ||
159 | { CTL_INT, VM_HUGETLB_GROUP, "hugetlb_shm_group" }, | ||
160 | { CTL_INT, VM_VFS_CACHE_PRESSURE, "vfs_cache_pressure" }, | ||
161 | { CTL_INT, VM_LEGACY_VA_LAYOUT, "legacy_va_layout" }, | ||
162 | /* VM_SWAP_TOKEN_TIMEOUT unused */ | ||
163 | { CTL_INT, VM_DROP_PAGECACHE, "drop_caches" }, | ||
164 | { CTL_INT, VM_PERCPU_PAGELIST_FRACTION, "percpu_pagelist_fraction" }, | ||
165 | { CTL_INT, VM_ZONE_RECLAIM_MODE, "zone_reclaim_mode" }, | ||
166 | { CTL_INT, VM_MIN_UNMAPPED, "min_unmapped_ratio" }, | ||
167 | { CTL_INT, VM_PANIC_ON_OOM, "panic_on_oom" }, | ||
168 | { CTL_INT, VM_VDSO_ENABLED, "vdso_enabled" }, | ||
169 | { CTL_INT, VM_MIN_SLAB, "min_slab_ratio" }, | ||
170 | |||
171 | {} | ||
172 | }; | ||
173 | |||
174 | static const struct bin_table bin_net_core_table[] = { | ||
175 | { CTL_INT, NET_CORE_WMEM_MAX, "wmem_max" }, | ||
176 | { CTL_INT, NET_CORE_RMEM_MAX, "rmem_max" }, | ||
177 | { CTL_INT, NET_CORE_WMEM_DEFAULT, "wmem_default" }, | ||
178 | { CTL_INT, NET_CORE_RMEM_DEFAULT, "rmem_default" }, | ||
179 | /* NET_CORE_DESTROY_DELAY unused */ | ||
180 | { CTL_INT, NET_CORE_MAX_BACKLOG, "netdev_max_backlog" }, | ||
181 | /* NET_CORE_FASTROUTE unused */ | ||
182 | { CTL_INT, NET_CORE_MSG_COST, "message_cost" }, | ||
183 | { CTL_INT, NET_CORE_MSG_BURST, "message_burst" }, | ||
184 | { CTL_INT, NET_CORE_OPTMEM_MAX, "optmem_max" }, | ||
185 | /* NET_CORE_HOT_LIST_LENGTH unused */ | ||
186 | /* NET_CORE_DIVERT_VERSION unused */ | ||
187 | /* NET_CORE_NO_CONG_THRESH unused */ | ||
188 | /* NET_CORE_NO_CONG unused */ | ||
189 | /* NET_CORE_LO_CONG unused */ | ||
190 | /* NET_CORE_MOD_CONG unused */ | ||
191 | { CTL_INT, NET_CORE_DEV_WEIGHT, "dev_weight" }, | ||
192 | { CTL_INT, NET_CORE_SOMAXCONN, "somaxconn" }, | ||
193 | { CTL_INT, NET_CORE_BUDGET, "netdev_budget" }, | ||
194 | { CTL_INT, NET_CORE_AEVENT_ETIME, "xfrm_aevent_etime" }, | ||
195 | { CTL_INT, NET_CORE_AEVENT_RSEQTH, "xfrm_aevent_rseqth" }, | ||
196 | { CTL_INT, NET_CORE_WARNINGS, "warnings" }, | ||
197 | {}, | ||
198 | }; | ||
199 | |||
200 | static const struct bin_table bin_net_unix_table[] = { | ||
201 | /* NET_UNIX_DESTROY_DELAY unused */ | ||
202 | /* NET_UNIX_DELETE_DELAY unused */ | ||
203 | { CTL_INT, NET_UNIX_MAX_DGRAM_QLEN, "max_dgram_qlen" }, | ||
204 | {} | ||
205 | }; | ||
206 | |||
207 | static const struct bin_table bin_net_ipv4_route_table[] = { | ||
208 | { CTL_INT, NET_IPV4_ROUTE_FLUSH, "flush" }, | ||
209 | /* NET_IPV4_ROUTE_MIN_DELAY "min_delay" no longer used */ | ||
210 | /* NET_IPV4_ROUTE_MAX_DELAY "max_delay" no longer used */ | ||
211 | { CTL_INT, NET_IPV4_ROUTE_GC_THRESH, "gc_thresh" }, | ||
212 | { CTL_INT, NET_IPV4_ROUTE_MAX_SIZE, "max_size" }, | ||
213 | { CTL_INT, NET_IPV4_ROUTE_GC_MIN_INTERVAL, "gc_min_interval" }, | ||
214 | { CTL_INT, NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS, "gc_min_interval_ms" }, | ||
215 | { CTL_INT, NET_IPV4_ROUTE_GC_TIMEOUT, "gc_timeout" }, | ||
216 | { CTL_INT, NET_IPV4_ROUTE_GC_INTERVAL, "gc_interval" }, | ||
217 | { CTL_INT, NET_IPV4_ROUTE_REDIRECT_LOAD, "redirect_load" }, | ||
218 | { CTL_INT, NET_IPV4_ROUTE_REDIRECT_NUMBER, "redirect_number" }, | ||
219 | { CTL_INT, NET_IPV4_ROUTE_REDIRECT_SILENCE, "redirect_silence" }, | ||
220 | { CTL_INT, NET_IPV4_ROUTE_ERROR_COST, "error_cost" }, | ||
221 | { CTL_INT, NET_IPV4_ROUTE_ERROR_BURST, "error_burst" }, | ||
222 | { CTL_INT, NET_IPV4_ROUTE_GC_ELASTICITY, "gc_elasticity" }, | ||
223 | { CTL_INT, NET_IPV4_ROUTE_MTU_EXPIRES, "mtu_expires" }, | ||
224 | { CTL_INT, NET_IPV4_ROUTE_MIN_PMTU, "min_pmtu" }, | ||
225 | { CTL_INT, NET_IPV4_ROUTE_MIN_ADVMSS, "min_adv_mss" }, | ||
226 | { CTL_INT, NET_IPV4_ROUTE_SECRET_INTERVAL, "secret_interval" }, | ||
227 | {} | ||
228 | }; | ||
229 | |||
230 | static const struct bin_table bin_net_ipv4_conf_vars_table[] = { | ||
231 | { CTL_INT, NET_IPV4_CONF_FORWARDING, "forwarding" }, | ||
232 | { CTL_INT, NET_IPV4_CONF_MC_FORWARDING, "mc_forwarding" }, | ||
233 | |||
234 | { CTL_INT, NET_IPV4_CONF_ACCEPT_REDIRECTS, "accept_redirects" }, | ||
235 | { CTL_INT, NET_IPV4_CONF_SECURE_REDIRECTS, "secure_redirects" }, | ||
236 | { CTL_INT, NET_IPV4_CONF_SEND_REDIRECTS, "send_redirects" }, | ||
237 | { CTL_INT, NET_IPV4_CONF_SHARED_MEDIA, "shared_media" }, | ||
238 | { CTL_INT, NET_IPV4_CONF_RP_FILTER, "rp_filter" }, | ||
239 | { CTL_INT, NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE, "accept_source_route" }, | ||
240 | { CTL_INT, NET_IPV4_CONF_PROXY_ARP, "proxy_arp" }, | ||
241 | { CTL_INT, NET_IPV4_CONF_MEDIUM_ID, "medium_id" }, | ||
242 | { CTL_INT, NET_IPV4_CONF_BOOTP_RELAY, "bootp_relay" }, | ||
243 | { CTL_INT, NET_IPV4_CONF_LOG_MARTIANS, "log_martians" }, | ||
244 | { CTL_INT, NET_IPV4_CONF_TAG, "tag" }, | ||
245 | { CTL_INT, NET_IPV4_CONF_ARPFILTER, "arp_filter" }, | ||
246 | { CTL_INT, NET_IPV4_CONF_ARP_ANNOUNCE, "arp_announce" }, | ||
247 | { CTL_INT, NET_IPV4_CONF_ARP_IGNORE, "arp_ignore" }, | ||
248 | { CTL_INT, NET_IPV4_CONF_ARP_ACCEPT, "arp_accept" }, | ||
249 | { CTL_INT, NET_IPV4_CONF_ARP_NOTIFY, "arp_notify" }, | ||
250 | |||
251 | { CTL_INT, NET_IPV4_CONF_NOXFRM, "disable_xfrm" }, | ||
252 | { CTL_INT, NET_IPV4_CONF_NOPOLICY, "disable_policy" }, | ||
253 | { CTL_INT, NET_IPV4_CONF_FORCE_IGMP_VERSION, "force_igmp_version" }, | ||
254 | { CTL_INT, NET_IPV4_CONF_PROMOTE_SECONDARIES, "promote_secondaries" }, | ||
255 | {} | ||
256 | }; | ||
257 | |||
258 | static const struct bin_table bin_net_ipv4_conf_table[] = { | ||
259 | { CTL_DIR, NET_PROTO_CONF_ALL, "all", bin_net_ipv4_conf_vars_table }, | ||
260 | { CTL_DIR, NET_PROTO_CONF_DEFAULT, "default", bin_net_ipv4_conf_vars_table }, | ||
261 | { CTL_DIR, 0, NULL, bin_net_ipv4_conf_vars_table }, | ||
262 | {} | ||
263 | }; | ||
264 | |||
265 | static const struct bin_table bin_net_neigh_vars_table[] = { | ||
266 | { CTL_INT, NET_NEIGH_MCAST_SOLICIT, "mcast_solicit" }, | ||
267 | { CTL_INT, NET_NEIGH_UCAST_SOLICIT, "ucast_solicit" }, | ||
268 | { CTL_INT, NET_NEIGH_APP_SOLICIT, "app_solicit" }, | ||
269 | /* NET_NEIGH_RETRANS_TIME "retrans_time" no longer used */ | ||
270 | { CTL_INT, NET_NEIGH_REACHABLE_TIME, "base_reachable_time" }, | ||
271 | { CTL_INT, NET_NEIGH_DELAY_PROBE_TIME, "delay_first_probe_time" }, | ||
272 | { CTL_INT, NET_NEIGH_GC_STALE_TIME, "gc_stale_time" }, | ||
273 | { CTL_INT, NET_NEIGH_UNRES_QLEN, "unres_qlen" }, | ||
274 | { CTL_INT, NET_NEIGH_PROXY_QLEN, "proxy_qlen" }, | ||
275 | /* NET_NEIGH_ANYCAST_DELAY "anycast_delay" no longer used */ | ||
276 | /* NET_NEIGH_PROXY_DELAY "proxy_delay" no longer used */ | ||
277 | /* NET_NEIGH_LOCKTIME "locktime" no longer used */ | ||
278 | { CTL_INT, NET_NEIGH_GC_INTERVAL, "gc_interval" }, | ||
279 | { CTL_INT, NET_NEIGH_GC_THRESH1, "gc_thresh1" }, | ||
280 | { CTL_INT, NET_NEIGH_GC_THRESH2, "gc_thresh2" }, | ||
281 | { CTL_INT, NET_NEIGH_GC_THRESH3, "gc_thresh3" }, | ||
282 | { CTL_INT, NET_NEIGH_RETRANS_TIME_MS, "retrans_time_ms" }, | ||
283 | { CTL_INT, NET_NEIGH_REACHABLE_TIME_MS, "base_reachable_time_ms" }, | ||
284 | {} | ||
285 | }; | ||
286 | |||
287 | static const struct bin_table bin_net_neigh_table[] = { | ||
288 | { CTL_DIR, NET_PROTO_CONF_DEFAULT, "default", bin_net_neigh_vars_table }, | ||
289 | { CTL_DIR, 0, NULL, bin_net_neigh_vars_table }, | ||
290 | {} | ||
291 | }; | ||
292 | |||
293 | static const struct bin_table bin_net_ipv4_netfilter_table[] = { | ||
294 | { CTL_INT, NET_IPV4_NF_CONNTRACK_MAX, "ip_conntrack_max" }, | ||
295 | |||
296 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT "ip_conntrack_tcp_timeout_syn_sent" no longer used */ | ||
297 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV "ip_conntrack_tcp_timeout_syn_recv" no longer used */ | ||
298 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED "ip_conntrack_tcp_timeout_established" no longer used */ | ||
299 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT "ip_conntrack_tcp_timeout_fin_wait" no longer used */ | ||
300 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT "ip_conntrack_tcp_timeout_close_wait" no longer used */ | ||
301 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK "ip_conntrack_tcp_timeout_last_ack" no longer used */ | ||
302 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT "ip_conntrack_tcp_timeout_time_wait" no longer used */ | ||
303 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE "ip_conntrack_tcp_timeout_close" no longer used */ | ||
304 | |||
305 | /* NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT "ip_conntrack_udp_timeout" no longer used */ | ||
306 | /* NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT_STREAM "ip_conntrack_udp_timeout_stream" no longer used */ | ||
307 | /* NET_IPV4_NF_CONNTRACK_ICMP_TIMEOUT "ip_conntrack_icmp_timeout" no longer used */ | ||
308 | /* NET_IPV4_NF_CONNTRACK_GENERIC_TIMEOUT "ip_conntrack_generic_timeout" no longer used */ | ||
309 | |||
310 | { CTL_INT, NET_IPV4_NF_CONNTRACK_BUCKETS, "ip_conntrack_buckets" }, | ||
311 | { CTL_INT, NET_IPV4_NF_CONNTRACK_LOG_INVALID, "ip_conntrack_log_invalid" }, | ||
312 | /* NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS "ip_conntrack_tcp_timeout_max_retrans" no longer used */ | ||
313 | { CTL_INT, NET_IPV4_NF_CONNTRACK_TCP_LOOSE, "ip_conntrack_tcp_loose" }, | ||
314 | { CTL_INT, NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL, "ip_conntrack_tcp_be_liberal" }, | ||
315 | { CTL_INT, NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS, "ip_conntrack_tcp_max_retrans" }, | ||
316 | |||
317 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED "ip_conntrack_sctp_timeout_closed" no longer used */ | ||
318 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT "ip_conntrack_sctp_timeout_cookie_wait" no longer used */ | ||
319 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED "ip_conntrack_sctp_timeout_cookie_echoed" no longer used */ | ||
320 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED "ip_conntrack_sctp_timeout_established" no longer used */ | ||
321 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT "ip_conntrack_sctp_timeout_shutdown_sent" no longer used */ | ||
322 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD "ip_conntrack_sctp_timeout_shutdown_recd" no longer used */ | ||
323 | /* NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT "ip_conntrack_sctp_timeout_shutdown_ack_sent" no longer used */ | ||
324 | |||
325 | { CTL_INT, NET_IPV4_NF_CONNTRACK_COUNT, "ip_conntrack_count" }, | ||
326 | { CTL_INT, NET_IPV4_NF_CONNTRACK_CHECKSUM, "ip_conntrack_checksum" }, | ||
327 | {} | ||
328 | }; | ||
329 | |||
330 | static const struct bin_table bin_net_ipv4_table[] = { | ||
331 | {CTL_INT, NET_IPV4_FORWARD, "ip_forward" }, | ||
332 | |||
333 | { CTL_DIR, NET_IPV4_CONF, "conf", bin_net_ipv4_conf_table }, | ||
334 | { CTL_DIR, NET_IPV4_NEIGH, "neigh", bin_net_neigh_table }, | ||
335 | { CTL_DIR, NET_IPV4_ROUTE, "route", bin_net_ipv4_route_table }, | ||
336 | /* NET_IPV4_FIB_HASH unused */ | ||
337 | { CTL_DIR, NET_IPV4_NETFILTER, "netfilter", bin_net_ipv4_netfilter_table }, | ||
338 | |||
339 | { CTL_INT, NET_IPV4_TCP_TIMESTAMPS, "tcp_timestamps" }, | ||
340 | { CTL_INT, NET_IPV4_TCP_WINDOW_SCALING, "tcp_window_scaling" }, | ||
341 | { CTL_INT, NET_IPV4_TCP_SACK, "tcp_sack" }, | ||
342 | { CTL_INT, NET_IPV4_TCP_RETRANS_COLLAPSE, "tcp_retrans_collapse" }, | ||
343 | { CTL_INT, NET_IPV4_DEFAULT_TTL, "ip_default_ttl" }, | ||
344 | /* NET_IPV4_AUTOCONFIG unused */ | ||
345 | { CTL_INT, NET_IPV4_NO_PMTU_DISC, "ip_no_pmtu_disc" }, | ||
346 | { CTL_INT, NET_IPV4_NONLOCAL_BIND, "ip_nonlocal_bind" }, | ||
347 | { CTL_INT, NET_IPV4_TCP_SYN_RETRIES, "tcp_syn_retries" }, | ||
348 | { CTL_INT, NET_TCP_SYNACK_RETRIES, "tcp_synack_retries" }, | ||
349 | { CTL_INT, NET_TCP_MAX_ORPHANS, "tcp_max_orphans" }, | ||
350 | { CTL_INT, NET_TCP_MAX_TW_BUCKETS, "tcp_max_tw_buckets" }, | ||
351 | { CTL_INT, NET_IPV4_DYNADDR, "ip_dynaddr" }, | ||
352 | { CTL_INT, NET_IPV4_TCP_KEEPALIVE_TIME, "tcp_keepalive_time" }, | ||
353 | { CTL_INT, NET_IPV4_TCP_KEEPALIVE_PROBES, "tcp_keepalive_probes" }, | ||
354 | { CTL_INT, NET_IPV4_TCP_KEEPALIVE_INTVL, "tcp_keepalive_intvl" }, | ||
355 | { CTL_INT, NET_IPV4_TCP_RETRIES1, "tcp_retries1" }, | ||
356 | { CTL_INT, NET_IPV4_TCP_RETRIES2, "tcp_retries2" }, | ||
357 | { CTL_INT, NET_IPV4_TCP_FIN_TIMEOUT, "tcp_fin_timeout" }, | ||
358 | { CTL_INT, NET_TCP_SYNCOOKIES, "tcp_syncookies" }, | ||
359 | { CTL_INT, NET_TCP_TW_RECYCLE, "tcp_tw_recycle" }, | ||
360 | { CTL_INT, NET_TCP_ABORT_ON_OVERFLOW, "tcp_abort_on_overflow" }, | ||
361 | { CTL_INT, NET_TCP_STDURG, "tcp_stdurg" }, | ||
362 | { CTL_INT, NET_TCP_RFC1337, "tcp_rfc1337" }, | ||
363 | { CTL_INT, NET_TCP_MAX_SYN_BACKLOG, "tcp_max_syn_backlog" }, | ||
364 | { CTL_INT, NET_IPV4_LOCAL_PORT_RANGE, "ip_local_port_range" }, | ||
365 | { CTL_INT, NET_IPV4_IGMP_MAX_MEMBERSHIPS, "igmp_max_memberships" }, | ||
366 | { CTL_INT, NET_IPV4_IGMP_MAX_MSF, "igmp_max_msf" }, | ||
367 | { CTL_INT, NET_IPV4_INET_PEER_THRESHOLD, "inet_peer_threshold" }, | ||
368 | { CTL_INT, NET_IPV4_INET_PEER_MINTTL, "inet_peer_minttl" }, | ||
369 | { CTL_INT, NET_IPV4_INET_PEER_MAXTTL, "inet_peer_maxttl" }, | ||
370 | { CTL_INT, NET_IPV4_INET_PEER_GC_MINTIME, "inet_peer_gc_mintime" }, | ||
371 | { CTL_INT, NET_IPV4_INET_PEER_GC_MAXTIME, "inet_peer_gc_maxtime" }, | ||
372 | { CTL_INT, NET_TCP_ORPHAN_RETRIES, "tcp_orphan_retries" }, | ||
373 | { CTL_INT, NET_TCP_FACK, "tcp_fack" }, | ||
374 | { CTL_INT, NET_TCP_REORDERING, "tcp_reordering" }, | ||
375 | { CTL_INT, NET_TCP_ECN, "tcp_ecn" }, | ||
376 | { CTL_INT, NET_TCP_DSACK, "tcp_dsack" }, | ||
377 | { CTL_INT, NET_TCP_MEM, "tcp_mem" }, | ||
378 | { CTL_INT, NET_TCP_WMEM, "tcp_wmem" }, | ||
379 | { CTL_INT, NET_TCP_RMEM, "tcp_rmem" }, | ||
380 | { CTL_INT, NET_TCP_APP_WIN, "tcp_app_win" }, | ||
381 | { CTL_INT, NET_TCP_ADV_WIN_SCALE, "tcp_adv_win_scale" }, | ||
382 | { CTL_INT, NET_TCP_TW_REUSE, "tcp_tw_reuse" }, | ||
383 | { CTL_INT, NET_TCP_FRTO, "tcp_frto" }, | ||
384 | { CTL_INT, NET_TCP_FRTO_RESPONSE, "tcp_frto_response" }, | ||
385 | { CTL_INT, NET_TCP_LOW_LATENCY, "tcp_low_latency" }, | ||
386 | { CTL_INT, NET_TCP_NO_METRICS_SAVE, "tcp_no_metrics_save" }, | ||
387 | { CTL_INT, NET_TCP_MODERATE_RCVBUF, "tcp_moderate_rcvbuf" }, | ||
388 | { CTL_INT, NET_TCP_TSO_WIN_DIVISOR, "tcp_tso_win_divisor" }, | ||
389 | { CTL_STR, NET_TCP_CONG_CONTROL, "tcp_congestion_control" }, | ||
390 | { CTL_INT, NET_TCP_ABC, "tcp_abc" }, | ||
391 | { CTL_INT, NET_TCP_MTU_PROBING, "tcp_mtu_probing" }, | ||
392 | { CTL_INT, NET_TCP_BASE_MSS, "tcp_base_mss" }, | ||
393 | { CTL_INT, NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS, "tcp_workaround_signed_windows" }, | ||
394 | { CTL_INT, NET_TCP_DMA_COPYBREAK, "tcp_dma_copybreak" }, | ||
395 | { CTL_INT, NET_TCP_SLOW_START_AFTER_IDLE, "tcp_slow_start_after_idle" }, | ||
396 | { CTL_INT, NET_CIPSOV4_CACHE_ENABLE, "cipso_cache_enable" }, | ||
397 | { CTL_INT, NET_CIPSOV4_CACHE_BUCKET_SIZE, "cipso_cache_bucket_size" }, | ||
398 | { CTL_INT, NET_CIPSOV4_RBM_OPTFMT, "cipso_rbm_optfmt" }, | ||
399 | { CTL_INT, NET_CIPSOV4_RBM_STRICTVALID, "cipso_rbm_strictvalid" }, | ||
400 | /* NET_TCP_AVAIL_CONG_CONTROL "tcp_available_congestion_control" no longer used */ | ||
401 | { CTL_STR, NET_TCP_ALLOWED_CONG_CONTROL, "tcp_allowed_congestion_control" }, | ||
402 | { CTL_INT, NET_TCP_MAX_SSTHRESH, "tcp_max_ssthresh" }, | ||
403 | |||
404 | { CTL_INT, NET_IPV4_ICMP_ECHO_IGNORE_ALL, "icmp_echo_ignore_all" }, | ||
405 | { CTL_INT, NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS, "icmp_echo_ignore_broadcasts" }, | ||
406 | { CTL_INT, NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES, "icmp_ignore_bogus_error_responses" }, | ||
407 | { CTL_INT, NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR, "icmp_errors_use_inbound_ifaddr" }, | ||
408 | { CTL_INT, NET_IPV4_ICMP_RATELIMIT, "icmp_ratelimit" }, | ||
409 | { CTL_INT, NET_IPV4_ICMP_RATEMASK, "icmp_ratemask" }, | ||
410 | |||
411 | { CTL_INT, NET_IPV4_IPFRAG_HIGH_THRESH, "ipfrag_high_thresh" }, | ||
412 | { CTL_INT, NET_IPV4_IPFRAG_LOW_THRESH, "ipfrag_low_thresh" }, | ||
413 | { CTL_INT, NET_IPV4_IPFRAG_TIME, "ipfrag_time" }, | ||
414 | |||
415 | { CTL_INT, NET_IPV4_IPFRAG_SECRET_INTERVAL, "ipfrag_secret_interval" }, | ||
416 | /* NET_IPV4_IPFRAG_MAX_DIST "ipfrag_max_dist" no longer used */ | ||
417 | |||
418 | { CTL_INT, 2088 /* NET_IPQ_QMAX */, "ip_queue_maxlen" }, | ||
419 | |||
420 | /* NET_TCP_DEFAULT_WIN_SCALE unused */ | ||
421 | /* NET_TCP_BIC_BETA unused */ | ||
422 | /* NET_IPV4_TCP_MAX_KA_PROBES unused */ | ||
423 | /* NET_IPV4_IP_MASQ_DEBUG unused */ | ||
424 | /* NET_TCP_SYN_TAILDROP unused */ | ||
425 | /* NET_IPV4_ICMP_SOURCEQUENCH_RATE unused */ | ||
426 | /* NET_IPV4_ICMP_DESTUNREACH_RATE unused */ | ||
427 | /* NET_IPV4_ICMP_TIMEEXCEED_RATE unused */ | ||
428 | /* NET_IPV4_ICMP_PARAMPROB_RATE unused */ | ||
429 | /* NET_IPV4_ICMP_ECHOREPLY_RATE unused */ | ||
430 | /* NET_IPV4_ALWAYS_DEFRAG unused */ | ||
431 | {} | ||
432 | }; | ||
433 | |||
434 | static const struct bin_table bin_net_ipx_table[] = { | ||
435 | { CTL_INT, NET_IPX_PPROP_BROADCASTING, "ipx_pprop_broadcasting" }, | ||
436 | /* NET_IPX_FORWARDING unused */ | ||
437 | {} | ||
438 | }; | ||
439 | |||
440 | static const struct bin_table bin_net_atalk_table[] = { | ||
441 | { CTL_INT, NET_ATALK_AARP_EXPIRY_TIME, "aarp-expiry-time" }, | ||
442 | { CTL_INT, NET_ATALK_AARP_TICK_TIME, "aarp-tick-time" }, | ||
443 | { CTL_INT, NET_ATALK_AARP_RETRANSMIT_LIMIT, "aarp-retransmit-limit" }, | ||
444 | { CTL_INT, NET_ATALK_AARP_RESOLVE_TIME, "aarp-resolve-time" }, | ||
445 | {}, | ||
446 | }; | ||
447 | |||
448 | static const struct bin_table bin_net_netrom_table[] = { | ||
449 | { CTL_INT, NET_NETROM_DEFAULT_PATH_QUALITY, "default_path_quality" }, | ||
450 | { CTL_INT, NET_NETROM_OBSOLESCENCE_COUNT_INITIALISER, "obsolescence_count_initialiser" }, | ||
451 | { CTL_INT, NET_NETROM_NETWORK_TTL_INITIALISER, "network_ttl_initialiser" }, | ||
452 | { CTL_INT, NET_NETROM_TRANSPORT_TIMEOUT, "transport_timeout" }, | ||
453 | { CTL_INT, NET_NETROM_TRANSPORT_MAXIMUM_TRIES, "transport_maximum_tries" }, | ||
454 | { CTL_INT, NET_NETROM_TRANSPORT_ACKNOWLEDGE_DELAY, "transport_acknowledge_delay" }, | ||
455 | { CTL_INT, NET_NETROM_TRANSPORT_BUSY_DELAY, "transport_busy_delay" }, | ||
456 | { CTL_INT, NET_NETROM_TRANSPORT_REQUESTED_WINDOW_SIZE, "transport_requested_window_size" }, | ||
457 | { CTL_INT, NET_NETROM_TRANSPORT_NO_ACTIVITY_TIMEOUT, "transport_no_activity_timeout" }, | ||
458 | { CTL_INT, NET_NETROM_ROUTING_CONTROL, "routing_control" }, | ||
459 | { CTL_INT, NET_NETROM_LINK_FAILS_COUNT, "link_fails_count" }, | ||
460 | { CTL_INT, NET_NETROM_RESET, "reset" }, | ||
461 | {} | ||
462 | }; | ||
463 | |||
464 | static const struct bin_table bin_net_ax25_param_table[] = { | ||
465 | { CTL_INT, NET_AX25_IP_DEFAULT_MODE, "ip_default_mode" }, | ||
466 | { CTL_INT, NET_AX25_DEFAULT_MODE, "ax25_default_mode" }, | ||
467 | { CTL_INT, NET_AX25_BACKOFF_TYPE, "backoff_type" }, | ||
468 | { CTL_INT, NET_AX25_CONNECT_MODE, "connect_mode" }, | ||
469 | { CTL_INT, NET_AX25_STANDARD_WINDOW, "standard_window_size" }, | ||
470 | { CTL_INT, NET_AX25_EXTENDED_WINDOW, "extended_window_size" }, | ||
471 | { CTL_INT, NET_AX25_T1_TIMEOUT, "t1_timeout" }, | ||
472 | { CTL_INT, NET_AX25_T2_TIMEOUT, "t2_timeout" }, | ||
473 | { CTL_INT, NET_AX25_T3_TIMEOUT, "t3_timeout" }, | ||
474 | { CTL_INT, NET_AX25_IDLE_TIMEOUT, "idle_timeout" }, | ||
475 | { CTL_INT, NET_AX25_N2, "maximum_retry_count" }, | ||
476 | { CTL_INT, NET_AX25_PACLEN, "maximum_packet_length" }, | ||
477 | { CTL_INT, NET_AX25_PROTOCOL, "protocol" }, | ||
478 | { CTL_INT, NET_AX25_DAMA_SLAVE_TIMEOUT, "dama_slave_timeout" }, | ||
479 | {} | ||
480 | }; | ||
481 | |||
482 | static const struct bin_table bin_net_ax25_table[] = { | ||
483 | { CTL_DIR, 0, NULL, bin_net_ax25_param_table }, | ||
484 | {} | ||
485 | }; | ||
486 | |||
487 | static const struct bin_table bin_net_rose_table[] = { | ||
488 | { CTL_INT, NET_ROSE_RESTART_REQUEST_TIMEOUT, "restart_request_timeout" }, | ||
489 | { CTL_INT, NET_ROSE_CALL_REQUEST_TIMEOUT, "call_request_timeout" }, | ||
490 | { CTL_INT, NET_ROSE_RESET_REQUEST_TIMEOUT, "reset_request_timeout" }, | ||
491 | { CTL_INT, NET_ROSE_CLEAR_REQUEST_TIMEOUT, "clear_request_timeout" }, | ||
492 | { CTL_INT, NET_ROSE_ACK_HOLD_BACK_TIMEOUT, "acknowledge_hold_back_timeout" }, | ||
493 | { CTL_INT, NET_ROSE_ROUTING_CONTROL, "routing_control" }, | ||
494 | { CTL_INT, NET_ROSE_LINK_FAIL_TIMEOUT, "link_fail_timeout" }, | ||
495 | { CTL_INT, NET_ROSE_MAX_VCS, "maximum_virtual_circuits" }, | ||
496 | { CTL_INT, NET_ROSE_WINDOW_SIZE, "window_size" }, | ||
497 | { CTL_INT, NET_ROSE_NO_ACTIVITY_TIMEOUT, "no_activity_timeout" }, | ||
498 | {} | ||
499 | }; | ||
500 | |||
501 | static const struct bin_table bin_net_ipv6_conf_var_table[] = { | ||
502 | { CTL_INT, NET_IPV6_FORWARDING, "forwarding" }, | ||
503 | { CTL_INT, NET_IPV6_HOP_LIMIT, "hop_limit" }, | ||
504 | { CTL_INT, NET_IPV6_MTU, "mtu" }, | ||
505 | { CTL_INT, NET_IPV6_ACCEPT_RA, "accept_ra" }, | ||
506 | { CTL_INT, NET_IPV6_ACCEPT_REDIRECTS, "accept_redirects" }, | ||
507 | { CTL_INT, NET_IPV6_AUTOCONF, "autoconf" }, | ||
508 | { CTL_INT, NET_IPV6_DAD_TRANSMITS, "dad_transmits" }, | ||
509 | { CTL_INT, NET_IPV6_RTR_SOLICITS, "router_solicitations" }, | ||
510 | { CTL_INT, NET_IPV6_RTR_SOLICIT_INTERVAL, "router_solicitation_interval" }, | ||
511 | { CTL_INT, NET_IPV6_RTR_SOLICIT_DELAY, "router_solicitation_delay" }, | ||
512 | { CTL_INT, NET_IPV6_USE_TEMPADDR, "use_tempaddr" }, | ||
513 | { CTL_INT, NET_IPV6_TEMP_VALID_LFT, "temp_valid_lft" }, | ||
514 | { CTL_INT, NET_IPV6_TEMP_PREFERED_LFT, "temp_prefered_lft" }, | ||
515 | { CTL_INT, NET_IPV6_REGEN_MAX_RETRY, "regen_max_retry" }, | ||
516 | { CTL_INT, NET_IPV6_MAX_DESYNC_FACTOR, "max_desync_factor" }, | ||
517 | { CTL_INT, NET_IPV6_MAX_ADDRESSES, "max_addresses" }, | ||
518 | { CTL_INT, NET_IPV6_FORCE_MLD_VERSION, "force_mld_version" }, | ||
519 | { CTL_INT, NET_IPV6_ACCEPT_RA_DEFRTR, "accept_ra_defrtr" }, | ||
520 | { CTL_INT, NET_IPV6_ACCEPT_RA_PINFO, "accept_ra_pinfo" }, | ||
521 | { CTL_INT, NET_IPV6_ACCEPT_RA_RTR_PREF, "accept_ra_rtr_pref" }, | ||
522 | { CTL_INT, NET_IPV6_RTR_PROBE_INTERVAL, "router_probe_interval" }, | ||
523 | { CTL_INT, NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN, "accept_ra_rt_info_max_plen" }, | ||
524 | { CTL_INT, NET_IPV6_PROXY_NDP, "proxy_ndp" }, | ||
525 | { CTL_INT, NET_IPV6_ACCEPT_SOURCE_ROUTE, "accept_source_route" }, | ||
526 | {} | ||
527 | }; | ||
528 | |||
529 | static const struct bin_table bin_net_ipv6_conf_table[] = { | ||
530 | { CTL_DIR, NET_PROTO_CONF_ALL, "all", bin_net_ipv6_conf_var_table }, | ||
531 | { CTL_DIR, NET_PROTO_CONF_DEFAULT, "default", bin_net_ipv6_conf_var_table }, | ||
532 | { CTL_DIR, 0, NULL, bin_net_ipv6_conf_var_table }, | ||
533 | {} | ||
534 | }; | ||
535 | |||
536 | static const struct bin_table bin_net_ipv6_route_table[] = { | ||
537 | /* NET_IPV6_ROUTE_FLUSH "flush" no longer used */ | ||
538 | { CTL_INT, NET_IPV6_ROUTE_GC_THRESH, "gc_thresh" }, | ||
539 | { CTL_INT, NET_IPV6_ROUTE_MAX_SIZE, "max_size" }, | ||
540 | { CTL_INT, NET_IPV6_ROUTE_GC_MIN_INTERVAL, "gc_min_interval" }, | ||
541 | { CTL_INT, NET_IPV6_ROUTE_GC_TIMEOUT, "gc_timeout" }, | ||
542 | { CTL_INT, NET_IPV6_ROUTE_GC_INTERVAL, "gc_interval" }, | ||
543 | { CTL_INT, NET_IPV6_ROUTE_GC_ELASTICITY, "gc_elasticity" }, | ||
544 | { CTL_INT, NET_IPV6_ROUTE_MTU_EXPIRES, "mtu_expires" }, | ||
545 | { CTL_INT, NET_IPV6_ROUTE_MIN_ADVMSS, "min_adv_mss" }, | ||
546 | { CTL_INT, NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS, "gc_min_interval_ms" }, | ||
547 | {} | ||
548 | }; | ||
549 | |||
550 | static const struct bin_table bin_net_ipv6_icmp_table[] = { | ||
551 | { CTL_INT, NET_IPV6_ICMP_RATELIMIT, "ratelimit" }, | ||
552 | {} | ||
553 | }; | ||
554 | |||
555 | static const struct bin_table bin_net_ipv6_table[] = { | ||
556 | { CTL_DIR, NET_IPV6_CONF, "conf", bin_net_ipv6_conf_table }, | ||
557 | { CTL_DIR, NET_IPV6_NEIGH, "neigh", bin_net_neigh_table }, | ||
558 | { CTL_DIR, NET_IPV6_ROUTE, "route", bin_net_ipv6_route_table }, | ||
559 | { CTL_DIR, NET_IPV6_ICMP, "icmp", bin_net_ipv6_icmp_table }, | ||
560 | { CTL_INT, NET_IPV6_BINDV6ONLY, "bindv6only" }, | ||
561 | { CTL_INT, NET_IPV6_IP6FRAG_HIGH_THRESH, "ip6frag_high_thresh" }, | ||
562 | { CTL_INT, NET_IPV6_IP6FRAG_LOW_THRESH, "ip6frag_low_thresh" }, | ||
563 | { CTL_INT, NET_IPV6_IP6FRAG_TIME, "ip6frag_time" }, | ||
564 | { CTL_INT, NET_IPV6_IP6FRAG_SECRET_INTERVAL, "ip6frag_secret_interval" }, | ||
565 | { CTL_INT, NET_IPV6_MLD_MAX_MSF, "mld_max_msf" }, | ||
566 | { CTL_INT, 2088 /* IPQ_QMAX */, "ip6_queue_maxlen" }, | ||
567 | {} | ||
568 | }; | ||
569 | |||
570 | static const struct bin_table bin_net_x25_table[] = { | ||
571 | { CTL_INT, NET_X25_RESTART_REQUEST_TIMEOUT, "restart_request_timeout" }, | ||
572 | { CTL_INT, NET_X25_CALL_REQUEST_TIMEOUT, "call_request_timeout" }, | ||
573 | { CTL_INT, NET_X25_RESET_REQUEST_TIMEOUT, "reset_request_timeout" }, | ||
574 | { CTL_INT, NET_X25_CLEAR_REQUEST_TIMEOUT, "clear_request_timeout" }, | ||
575 | { CTL_INT, NET_X25_ACK_HOLD_BACK_TIMEOUT, "acknowledgement_hold_back_timeout" }, | ||
576 | { CTL_INT, NET_X25_FORWARD, "x25_forward" }, | ||
577 | {} | ||
578 | }; | ||
579 | |||
580 | static const struct bin_table bin_net_tr_table[] = { | ||
581 | { CTL_INT, NET_TR_RIF_TIMEOUT, "rif_timeout" }, | ||
582 | {} | ||
583 | }; | ||
584 | |||
585 | |||
586 | static const struct bin_table bin_net_decnet_conf_vars[] = { | ||
587 | { CTL_INT, NET_DECNET_CONF_DEV_FORWARDING, "forwarding" }, | ||
588 | { CTL_INT, NET_DECNET_CONF_DEV_PRIORITY, "priority" }, | ||
589 | { CTL_INT, NET_DECNET_CONF_DEV_T2, "t2" }, | ||
590 | { CTL_INT, NET_DECNET_CONF_DEV_T3, "t3" }, | ||
591 | {} | ||
592 | }; | ||
593 | |||
594 | static const struct bin_table bin_net_decnet_conf[] = { | ||
595 | { CTL_DIR, NET_DECNET_CONF_ETHER, "ethernet", bin_net_decnet_conf_vars }, | ||
596 | { CTL_DIR, NET_DECNET_CONF_GRE, "ipgre", bin_net_decnet_conf_vars }, | ||
597 | { CTL_DIR, NET_DECNET_CONF_X25, "x25", bin_net_decnet_conf_vars }, | ||
598 | { CTL_DIR, NET_DECNET_CONF_PPP, "ppp", bin_net_decnet_conf_vars }, | ||
599 | { CTL_DIR, NET_DECNET_CONF_DDCMP, "ddcmp", bin_net_decnet_conf_vars }, | ||
600 | { CTL_DIR, NET_DECNET_CONF_LOOPBACK, "loopback", bin_net_decnet_conf_vars }, | ||
601 | { CTL_DIR, 0, NULL, bin_net_decnet_conf_vars }, | ||
602 | {} | ||
603 | }; | ||
604 | |||
605 | static const struct bin_table bin_net_decnet_table[] = { | ||
606 | { CTL_DIR, NET_DECNET_CONF, "conf", bin_net_decnet_conf }, | ||
607 | { CTL_DNADR, NET_DECNET_NODE_ADDRESS, "node_address" }, | ||
608 | { CTL_STR, NET_DECNET_NODE_NAME, "node_name" }, | ||
609 | { CTL_STR, NET_DECNET_DEFAULT_DEVICE, "default_device" }, | ||
610 | { CTL_INT, NET_DECNET_TIME_WAIT, "time_wait" }, | ||
611 | { CTL_INT, NET_DECNET_DN_COUNT, "dn_count" }, | ||
612 | { CTL_INT, NET_DECNET_DI_COUNT, "di_count" }, | ||
613 | { CTL_INT, NET_DECNET_DR_COUNT, "dr_count" }, | ||
614 | { CTL_INT, NET_DECNET_DST_GC_INTERVAL, "dst_gc_interval" }, | ||
615 | { CTL_INT, NET_DECNET_NO_FC_MAX_CWND, "no_fc_max_cwnd" }, | ||
616 | { CTL_INT, NET_DECNET_MEM, "decnet_mem" }, | ||
617 | { CTL_INT, NET_DECNET_RMEM, "decnet_rmem" }, | ||
618 | { CTL_INT, NET_DECNET_WMEM, "decnet_wmem" }, | ||
619 | { CTL_INT, NET_DECNET_DEBUG_LEVEL, "debug" }, | ||
620 | {} | ||
621 | }; | ||
622 | |||
623 | static const struct bin_table bin_net_sctp_table[] = { | ||
624 | { CTL_INT, NET_SCTP_RTO_INITIAL, "rto_initial" }, | ||
625 | { CTL_INT, NET_SCTP_RTO_MIN, "rto_min" }, | ||
626 | { CTL_INT, NET_SCTP_RTO_MAX, "rto_max" }, | ||
627 | { CTL_INT, NET_SCTP_RTO_ALPHA, "rto_alpha_exp_divisor" }, | ||
628 | { CTL_INT, NET_SCTP_RTO_BETA, "rto_beta_exp_divisor" }, | ||
629 | { CTL_INT, NET_SCTP_VALID_COOKIE_LIFE, "valid_cookie_life" }, | ||
630 | { CTL_INT, NET_SCTP_ASSOCIATION_MAX_RETRANS, "association_max_retrans" }, | ||
631 | { CTL_INT, NET_SCTP_PATH_MAX_RETRANS, "path_max_retrans" }, | ||
632 | { CTL_INT, NET_SCTP_MAX_INIT_RETRANSMITS, "max_init_retransmits" }, | ||
633 | { CTL_INT, NET_SCTP_HB_INTERVAL, "hb_interval" }, | ||
634 | { CTL_INT, NET_SCTP_PRESERVE_ENABLE, "cookie_preserve_enable" }, | ||
635 | { CTL_INT, NET_SCTP_MAX_BURST, "max_burst" }, | ||
636 | { CTL_INT, NET_SCTP_ADDIP_ENABLE, "addip_enable" }, | ||
637 | { CTL_INT, NET_SCTP_PRSCTP_ENABLE, "prsctp_enable" }, | ||
638 | { CTL_INT, NET_SCTP_SNDBUF_POLICY, "sndbuf_policy" }, | ||
639 | { CTL_INT, NET_SCTP_SACK_TIMEOUT, "sack_timeout" }, | ||
640 | { CTL_INT, NET_SCTP_RCVBUF_POLICY, "rcvbuf_policy" }, | ||
641 | {} | ||
642 | }; | ||
643 | |||
644 | static const struct bin_table bin_net_llc_llc2_timeout_table[] = { | ||
645 | { CTL_INT, NET_LLC2_ACK_TIMEOUT, "ack" }, | ||
646 | { CTL_INT, NET_LLC2_P_TIMEOUT, "p" }, | ||
647 | { CTL_INT, NET_LLC2_REJ_TIMEOUT, "rej" }, | ||
648 | { CTL_INT, NET_LLC2_BUSY_TIMEOUT, "busy" }, | ||
649 | {} | ||
650 | }; | ||
651 | |||
652 | static const struct bin_table bin_net_llc_station_table[] = { | ||
653 | { CTL_INT, NET_LLC_STATION_ACK_TIMEOUT, "ack_timeout" }, | ||
654 | {} | ||
655 | }; | ||
656 | |||
657 | static const struct bin_table bin_net_llc_llc2_table[] = { | ||
658 | { CTL_DIR, NET_LLC2, "timeout", bin_net_llc_llc2_timeout_table }, | ||
659 | {} | ||
660 | }; | ||
661 | |||
662 | static const struct bin_table bin_net_llc_table[] = { | ||
663 | { CTL_DIR, NET_LLC2, "llc2", bin_net_llc_llc2_table }, | ||
664 | { CTL_DIR, NET_LLC_STATION, "station", bin_net_llc_station_table }, | ||
665 | {} | ||
666 | }; | ||
667 | |||
668 | static const struct bin_table bin_net_netfilter_table[] = { | ||
669 | { CTL_INT, NET_NF_CONNTRACK_MAX, "nf_conntrack_max" }, | ||
670 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT "nf_conntrack_tcp_timeout_syn_sent" no longer used */ | ||
671 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV "nf_conntrack_tcp_timeout_syn_recv" no longer used */ | ||
672 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED "nf_conntrack_tcp_timeout_established" no longer used */ | ||
673 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT "nf_conntrack_tcp_timeout_fin_wait" no longer used */ | ||
674 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT "nf_conntrack_tcp_timeout_close_wait" no longer used */ | ||
675 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK "nf_conntrack_tcp_timeout_last_ack" no longer used */ | ||
676 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT "nf_conntrack_tcp_timeout_time_wait" no longer used */ | ||
677 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE "nf_conntrack_tcp_timeout_close" no longer used */ | ||
678 | /* NET_NF_CONNTRACK_UDP_TIMEOUT "nf_conntrack_udp_timeout" no longer used */ | ||
679 | /* NET_NF_CONNTRACK_UDP_TIMEOUT_STREAM "nf_conntrack_udp_timeout_stream" no longer used */ | ||
680 | /* NET_NF_CONNTRACK_ICMP_TIMEOUT "nf_conntrack_icmp_timeout" no longer used */ | ||
681 | /* NET_NF_CONNTRACK_GENERIC_TIMEOUT "nf_conntrack_generic_timeout" no longer used */ | ||
682 | { CTL_INT, NET_NF_CONNTRACK_BUCKETS, "nf_conntrack_buckets" }, | ||
683 | { CTL_INT, NET_NF_CONNTRACK_LOG_INVALID, "nf_conntrack_log_invalid" }, | ||
684 | /* NET_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS "nf_conntrack_tcp_timeout_max_retrans" no longer used */ | ||
685 | { CTL_INT, NET_NF_CONNTRACK_TCP_LOOSE, "nf_conntrack_tcp_loose" }, | ||
686 | { CTL_INT, NET_NF_CONNTRACK_TCP_BE_LIBERAL, "nf_conntrack_tcp_be_liberal" }, | ||
687 | { CTL_INT, NET_NF_CONNTRACK_TCP_MAX_RETRANS, "nf_conntrack_tcp_max_retrans" }, | ||
688 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED "nf_conntrack_sctp_timeout_closed" no longer used */ | ||
689 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT "nf_conntrack_sctp_timeout_cookie_wait" no longer used */ | ||
690 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED "nf_conntrack_sctp_timeout_cookie_echoed" no longer used */ | ||
691 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED "nf_conntrack_sctp_timeout_established" no longer used */ | ||
692 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT "nf_conntrack_sctp_timeout_shutdown_sent" no longer used */ | ||
693 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD "nf_conntrack_sctp_timeout_shutdown_recd" no longer used */ | ||
694 | /* NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT "nf_conntrack_sctp_timeout_shutdown_ack_sent" no longer used */ | ||
695 | { CTL_INT, NET_NF_CONNTRACK_COUNT, "nf_conntrack_count" }, | ||
696 | /* NET_NF_CONNTRACK_ICMPV6_TIMEOUT "nf_conntrack_icmpv6_timeout" no longer used */ | ||
697 | /* NET_NF_CONNTRACK_FRAG6_TIMEOUT "nf_conntrack_frag6_timeout" no longer used */ | ||
698 | { CTL_INT, NET_NF_CONNTRACK_FRAG6_LOW_THRESH, "nf_conntrack_frag6_low_thresh" }, | ||
699 | { CTL_INT, NET_NF_CONNTRACK_FRAG6_HIGH_THRESH, "nf_conntrack_frag6_high_thresh" }, | ||
700 | { CTL_INT, NET_NF_CONNTRACK_CHECKSUM, "nf_conntrack_checksum" }, | ||
701 | |||
702 | {} | ||
703 | }; | ||
704 | |||
705 | static const struct bin_table bin_net_irda_table[] = { | ||
706 | { CTL_INT, NET_IRDA_DISCOVERY, "discovery" }, | ||
707 | { CTL_STR, NET_IRDA_DEVNAME, "devname" }, | ||
708 | { CTL_INT, NET_IRDA_DEBUG, "debug" }, | ||
709 | { CTL_INT, NET_IRDA_FAST_POLL, "fast_poll_increase" }, | ||
710 | { CTL_INT, NET_IRDA_DISCOVERY_SLOTS, "discovery_slots" }, | ||
711 | { CTL_INT, NET_IRDA_DISCOVERY_TIMEOUT, "discovery_timeout" }, | ||
712 | { CTL_INT, NET_IRDA_SLOT_TIMEOUT, "slot_timeout" }, | ||
713 | { CTL_INT, NET_IRDA_MAX_BAUD_RATE, "max_baud_rate" }, | ||
714 | { CTL_INT, NET_IRDA_MIN_TX_TURN_TIME, "min_tx_turn_time" }, | ||
715 | { CTL_INT, NET_IRDA_MAX_TX_DATA_SIZE, "max_tx_data_size" }, | ||
716 | { CTL_INT, NET_IRDA_MAX_TX_WINDOW, "max_tx_window" }, | ||
717 | { CTL_INT, NET_IRDA_MAX_NOREPLY_TIME, "max_noreply_time" }, | ||
718 | { CTL_INT, NET_IRDA_WARN_NOREPLY_TIME, "warn_noreply_time" }, | ||
719 | { CTL_INT, NET_IRDA_LAP_KEEPALIVE_TIME, "lap_keepalive_time" }, | ||
720 | {} | ||
721 | }; | ||
722 | |||
723 | static const struct bin_table bin_net_table[] = { | ||
724 | { CTL_DIR, NET_CORE, "core", bin_net_core_table }, | ||
725 | /* NET_ETHER not used */ | ||
726 | /* NET_802 not used */ | ||
727 | { CTL_DIR, NET_UNIX, "unix", bin_net_unix_table }, | ||
728 | { CTL_DIR, NET_IPV4, "ipv4", bin_net_ipv4_table }, | ||
729 | { CTL_DIR, NET_IPX, "ipx", bin_net_ipx_table }, | ||
730 | { CTL_DIR, NET_ATALK, "appletalk", bin_net_atalk_table }, | ||
731 | { CTL_DIR, NET_NETROM, "netrom", bin_net_netrom_table }, | ||
732 | { CTL_DIR, NET_AX25, "ax25", bin_net_ax25_table }, | ||
733 | /* NET_BRIDGE "bridge" no longer used */ | ||
734 | { CTL_DIR, NET_ROSE, "rose", bin_net_rose_table }, | ||
735 | { CTL_DIR, NET_IPV6, "ipv6", bin_net_ipv6_table }, | ||
736 | { CTL_DIR, NET_X25, "x25", bin_net_x25_table }, | ||
737 | { CTL_DIR, NET_TR, "token-ring", bin_net_tr_table }, | ||
738 | { CTL_DIR, NET_DECNET, "decnet", bin_net_decnet_table }, | ||
739 | /* NET_ECONET not used */ | ||
740 | { CTL_DIR, NET_SCTP, "sctp", bin_net_sctp_table }, | ||
741 | { CTL_DIR, NET_LLC, "llc", bin_net_llc_table }, | ||
742 | { CTL_DIR, NET_NETFILTER, "netfilter", bin_net_netfilter_table }, | ||
743 | /* NET_DCCP "dccp" no longer used */ | ||
744 | { CTL_DIR, NET_IRDA, "irda", bin_net_irda_table }, | ||
745 | { CTL_INT, 2089, "nf_conntrack_max" }, | ||
746 | {} | ||
747 | }; | ||
748 | |||
749 | static const struct bin_table bin_fs_quota_table[] = { | ||
750 | { CTL_INT, FS_DQ_LOOKUPS, "lookups" }, | ||
751 | { CTL_INT, FS_DQ_DROPS, "drops" }, | ||
752 | { CTL_INT, FS_DQ_READS, "reads" }, | ||
753 | { CTL_INT, FS_DQ_WRITES, "writes" }, | ||
754 | { CTL_INT, FS_DQ_CACHE_HITS, "cache_hits" }, | ||
755 | { CTL_INT, FS_DQ_ALLOCATED, "allocated_dquots" }, | ||
756 | { CTL_INT, FS_DQ_FREE, "free_dquots" }, | ||
757 | { CTL_INT, FS_DQ_SYNCS, "syncs" }, | ||
758 | { CTL_INT, FS_DQ_WARNINGS, "warnings" }, | ||
759 | {} | ||
760 | }; | ||
761 | |||
762 | static const struct bin_table bin_fs_xfs_table[] = { | ||
763 | { CTL_INT, XFS_SGID_INHERIT, "irix_sgid_inherit" }, | ||
764 | { CTL_INT, XFS_SYMLINK_MODE, "irix_symlink_mode" }, | ||
765 | { CTL_INT, XFS_PANIC_MASK, "panic_mask" }, | ||
766 | |||
767 | { CTL_INT, XFS_ERRLEVEL, "error_level" }, | ||
768 | { CTL_INT, XFS_SYNCD_TIMER, "xfssyncd_centisecs" }, | ||
769 | { CTL_INT, XFS_INHERIT_SYNC, "inherit_sync" }, | ||
770 | { CTL_INT, XFS_INHERIT_NODUMP, "inherit_nodump" }, | ||
771 | { CTL_INT, XFS_INHERIT_NOATIME, "inherit_noatime" }, | ||
772 | { CTL_INT, XFS_BUF_TIMER, "xfsbufd_centisecs" }, | ||
773 | { CTL_INT, XFS_BUF_AGE, "age_buffer_centisecs" }, | ||
774 | { CTL_INT, XFS_INHERIT_NOSYM, "inherit_nosymlinks" }, | ||
775 | { CTL_INT, XFS_ROTORSTEP, "rotorstep" }, | ||
776 | { CTL_INT, XFS_INHERIT_NODFRG, "inherit_nodefrag" }, | ||
777 | { CTL_INT, XFS_FILESTREAM_TIMER, "filestream_centisecs" }, | ||
778 | { CTL_INT, XFS_STATS_CLEAR, "stats_clear" }, | ||
779 | {} | ||
780 | }; | ||
781 | |||
782 | static const struct bin_table bin_fs_ocfs2_nm_table[] = { | ||
783 | { CTL_STR, 1, "hb_ctl_path" }, | ||
784 | {} | ||
785 | }; | ||
786 | |||
787 | static const struct bin_table bin_fs_ocfs2_table[] = { | ||
788 | { CTL_DIR, 1, "nm", bin_fs_ocfs2_nm_table }, | ||
789 | {} | ||
790 | }; | ||
791 | |||
792 | static const struct bin_table bin_inotify_table[] = { | ||
793 | { CTL_INT, INOTIFY_MAX_USER_INSTANCES, "max_user_instances" }, | ||
794 | { CTL_INT, INOTIFY_MAX_USER_WATCHES, "max_user_watches" }, | ||
795 | { CTL_INT, INOTIFY_MAX_QUEUED_EVENTS, "max_queued_events" }, | ||
796 | {} | ||
797 | }; | ||
798 | |||
799 | static const struct bin_table bin_fs_table[] = { | ||
800 | { CTL_INT, FS_NRINODE, "inode-nr" }, | ||
801 | { CTL_INT, FS_STATINODE, "inode-state" }, | ||
802 | /* FS_MAXINODE unused */ | ||
803 | /* FS_NRDQUOT unused */ | ||
804 | /* FS_MAXDQUOT unused */ | ||
805 | /* FS_NRFILE "file-nr" no longer used */ | ||
806 | { CTL_INT, FS_MAXFILE, "file-max" }, | ||
807 | { CTL_INT, FS_DENTRY, "dentry-state" }, | ||
808 | /* FS_NRSUPER unused */ | ||
809 | /* FS_MAXUPSER unused */ | ||
810 | { CTL_INT, FS_OVERFLOWUID, "overflowuid" }, | ||
811 | { CTL_INT, FS_OVERFLOWGID, "overflowgid" }, | ||
812 | { CTL_INT, FS_LEASES, "leases-enable" }, | ||
813 | { CTL_INT, FS_DIR_NOTIFY, "dir-notify-enable" }, | ||
814 | { CTL_INT, FS_LEASE_TIME, "lease-break-time" }, | ||
815 | { CTL_DIR, FS_DQSTATS, "quota", bin_fs_quota_table }, | ||
816 | { CTL_DIR, FS_XFS, "xfs", bin_fs_xfs_table }, | ||
817 | { CTL_ULONG, FS_AIO_NR, "aio-nr" }, | ||
818 | { CTL_ULONG, FS_AIO_MAX_NR, "aio-max-nr" }, | ||
819 | { CTL_DIR, FS_INOTIFY, "inotify", bin_inotify_table }, | ||
820 | { CTL_DIR, FS_OCFS2, "ocfs2", bin_fs_ocfs2_table }, | ||
821 | { CTL_INT, KERN_SETUID_DUMPABLE, "suid_dumpable" }, | ||
822 | {} | ||
823 | }; | ||
824 | |||
825 | static const struct bin_table bin_ipmi_table[] = { | ||
826 | { CTL_INT, DEV_IPMI_POWEROFF_POWERCYCLE, "poweroff_powercycle" }, | ||
827 | {} | ||
828 | }; | ||
829 | |||
830 | static const struct bin_table bin_mac_hid_files[] = { | ||
831 | /* DEV_MAC_HID_KEYBOARD_SENDS_LINUX_KEYCODES unused */ | ||
832 | /* DEV_MAC_HID_KEYBOARD_LOCK_KEYCODES unused */ | ||
833 | { CTL_INT, DEV_MAC_HID_MOUSE_BUTTON_EMULATION, "mouse_button_emulation" }, | ||
834 | { CTL_INT, DEV_MAC_HID_MOUSE_BUTTON2_KEYCODE, "mouse_button2_keycode" }, | ||
835 | { CTL_INT, DEV_MAC_HID_MOUSE_BUTTON3_KEYCODE, "mouse_button3_keycode" }, | ||
836 | /* DEV_MAC_HID_ADB_MOUSE_SENDS_KEYCODES unused */ | ||
837 | {} | ||
838 | }; | ||
839 | |||
840 | static const struct bin_table bin_raid_table[] = { | ||
841 | { CTL_INT, DEV_RAID_SPEED_LIMIT_MIN, "speed_limit_min" }, | ||
842 | { CTL_INT, DEV_RAID_SPEED_LIMIT_MAX, "speed_limit_max" }, | ||
843 | {} | ||
844 | }; | ||
845 | |||
846 | static const struct bin_table bin_scsi_table[] = { | ||
847 | { CTL_INT, DEV_SCSI_LOGGING_LEVEL, "logging_level" }, | ||
848 | {} | ||
849 | }; | ||
850 | |||
851 | static const struct bin_table bin_dev_table[] = { | ||
852 | /* DEV_CDROM "cdrom" no longer used */ | ||
853 | /* DEV_HWMON unused */ | ||
854 | /* DEV_PARPORT "parport" no longer used */ | ||
855 | { CTL_DIR, DEV_RAID, "raid", bin_raid_table }, | ||
856 | { CTL_DIR, DEV_MAC_HID, "mac_hid", bin_mac_hid_files }, | ||
857 | { CTL_DIR, DEV_SCSI, "scsi", bin_scsi_table }, | ||
858 | { CTL_DIR, DEV_IPMI, "ipmi", bin_ipmi_table }, | ||
859 | {} | ||
860 | }; | ||
861 | |||
862 | static const struct bin_table bin_bus_isa_table[] = { | ||
863 | { CTL_INT, BUS_ISA_MEM_BASE, "membase" }, | ||
864 | { CTL_INT, BUS_ISA_PORT_BASE, "portbase" }, | ||
865 | { CTL_INT, BUS_ISA_PORT_SHIFT, "portshift" }, | ||
866 | {} | ||
867 | }; | ||
868 | |||
869 | static const struct bin_table bin_bus_table[] = { | ||
870 | { CTL_DIR, CTL_BUS_ISA, "isa", bin_bus_isa_table }, | ||
871 | {} | ||
872 | }; | ||
873 | |||
874 | |||
875 | static const struct bin_table bin_s390dbf_table[] = { | ||
876 | { CTL_INT, 5678 /* CTL_S390DBF_STOPPABLE */, "debug_stoppable" }, | ||
877 | { CTL_INT, 5679 /* CTL_S390DBF_ACTIVE */, "debug_active" }, | ||
878 | {} | ||
879 | }; | ||
880 | |||
881 | static const struct bin_table bin_sunrpc_table[] = { | ||
882 | /* CTL_RPCDEBUG "rpc_debug" no longer used */ | ||
883 | /* CTL_NFSDEBUG "nfs_debug" no longer used */ | ||
884 | /* CTL_NFSDDEBUG "nfsd_debug" no longer used */ | ||
885 | /* CTL_NLMDEBUG "nlm_debug" no longer used */ | ||
886 | |||
887 | { CTL_INT, CTL_SLOTTABLE_UDP, "udp_slot_table_entries" }, | ||
888 | { CTL_INT, CTL_SLOTTABLE_TCP, "tcp_slot_table_entries" }, | ||
889 | { CTL_INT, CTL_MIN_RESVPORT, "min_resvport" }, | ||
890 | { CTL_INT, CTL_MAX_RESVPORT, "max_resvport" }, | ||
891 | {} | ||
892 | }; | ||
893 | |||
894 | static const struct bin_table bin_pm_table[] = { | ||
895 | /* frv specific */ | ||
896 | /* 1 == CTL_PM_SUSPEND "suspend" no longer used" */ | ||
897 | { CTL_INT, 2 /* CTL_PM_CMODE */, "cmode" }, | ||
898 | { CTL_INT, 3 /* CTL_PM_P0 */, "p0" }, | ||
899 | { CTL_INT, 4 /* CTL_PM_CM */, "cm" }, | ||
900 | {} | ||
901 | }; | ||
902 | |||
903 | static const struct bin_table bin_root_table[] = { | ||
904 | { CTL_DIR, CTL_KERN, "kernel", bin_kern_table }, | ||
905 | { CTL_DIR, CTL_VM, "vm", bin_vm_table }, | ||
906 | { CTL_DIR, CTL_NET, "net", bin_net_table }, | ||
907 | /* CTL_PROC not used */ | ||
908 | { CTL_DIR, CTL_FS, "fs", bin_fs_table }, | ||
909 | /* CTL_DEBUG "debug" no longer used */ | ||
910 | { CTL_DIR, CTL_DEV, "dev", bin_dev_table }, | ||
911 | { CTL_DIR, CTL_BUS, "bus", bin_bus_table }, | ||
912 | { CTL_DIR, CTL_ABI, "abi" }, | ||
913 | /* CTL_CPU not used */ | ||
914 | /* CTL_ARLAN "arlan" no longer used */ | ||
915 | { CTL_DIR, CTL_S390DBF, "s390dbf", bin_s390dbf_table }, | ||
916 | { CTL_DIR, CTL_SUNRPC, "sunrpc", bin_sunrpc_table }, | ||
917 | { CTL_DIR, CTL_PM, "pm", bin_pm_table }, | ||
918 | {} | ||
919 | }; | ||
920 | |||
921 | static ssize_t bin_dir(struct file *file, | ||
922 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
923 | { | ||
924 | return -ENOTDIR; | ||
925 | } | ||
926 | |||
927 | |||
928 | static ssize_t bin_string(struct file *file, | ||
929 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
930 | { | ||
931 | ssize_t result, copied = 0; | ||
932 | |||
933 | if (oldval && oldlen) { | ||
934 | char __user *lastp; | ||
935 | loff_t pos = 0; | ||
936 | int ch; | ||
937 | |||
938 | result = vfs_read(file, oldval, oldlen, &pos); | ||
939 | if (result < 0) | ||
940 | goto out; | ||
941 | |||
942 | copied = result; | ||
943 | lastp = oldval + copied - 1; | ||
944 | |||
945 | result = -EFAULT; | ||
946 | if (get_user(ch, lastp)) | ||
947 | goto out; | ||
948 | |||
949 | /* Trim off the trailing newline */ | ||
950 | if (ch == '\n') { | ||
951 | result = -EFAULT; | ||
952 | if (put_user('\0', lastp)) | ||
953 | goto out; | ||
954 | copied -= 1; | ||
955 | } | ||
956 | } | ||
957 | |||
958 | if (newval && newlen) { | ||
959 | loff_t pos = 0; | ||
960 | |||
961 | result = vfs_write(file, newval, newlen, &pos); | ||
962 | if (result < 0) | ||
963 | goto out; | ||
964 | } | ||
965 | |||
966 | result = copied; | ||
967 | out: | ||
968 | return result; | ||
969 | } | ||
970 | |||
971 | static ssize_t bin_intvec(struct file *file, | ||
972 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
973 | { | ||
974 | mm_segment_t old_fs = get_fs(); | ||
975 | ssize_t copied = 0; | ||
976 | char *buffer; | ||
977 | ssize_t result; | ||
978 | |||
979 | result = -ENOMEM; | ||
980 | buffer = kmalloc(BUFSZ, GFP_KERNEL); | ||
981 | if (!buffer) | ||
982 | goto out; | ||
983 | |||
984 | if (oldval && oldlen) { | ||
985 | unsigned __user *vec = oldval; | ||
986 | size_t length = oldlen / sizeof(*vec); | ||
987 | loff_t pos = 0; | ||
988 | char *str, *end; | ||
989 | int i; | ||
990 | |||
991 | set_fs(KERNEL_DS); | ||
992 | result = vfs_read(file, buffer, BUFSZ - 1, &pos); | ||
993 | set_fs(old_fs); | ||
994 | if (result < 0) | ||
995 | goto out_kfree; | ||
996 | |||
997 | str = buffer; | ||
998 | end = str + result; | ||
999 | *end++ = '\0'; | ||
1000 | for (i = 0; i < length; i++) { | ||
1001 | unsigned long value; | ||
1002 | |||
1003 | value = simple_strtoul(str, &str, 10); | ||
1004 | while (isspace(*str)) | ||
1005 | str++; | ||
1006 | |||
1007 | result = -EFAULT; | ||
1008 | if (put_user(value, vec + i)) | ||
1009 | goto out_kfree; | ||
1010 | |||
1011 | copied += sizeof(*vec); | ||
1012 | if (!isdigit(*str)) | ||
1013 | break; | ||
1014 | } | ||
1015 | } | ||
1016 | |||
1017 | if (newval && newlen) { | ||
1018 | unsigned __user *vec = newval; | ||
1019 | size_t length = newlen / sizeof(*vec); | ||
1020 | loff_t pos = 0; | ||
1021 | char *str, *end; | ||
1022 | int i; | ||
1023 | |||
1024 | str = buffer; | ||
1025 | end = str + BUFSZ; | ||
1026 | for (i = 0; i < length; i++) { | ||
1027 | unsigned long value; | ||
1028 | |||
1029 | result = -EFAULT; | ||
1030 | if (get_user(value, vec + i)) | ||
1031 | goto out_kfree; | ||
1032 | |||
1033 | str += snprintf(str, end - str, "%lu\t", value); | ||
1034 | } | ||
1035 | |||
1036 | set_fs(KERNEL_DS); | ||
1037 | result = vfs_write(file, buffer, str - buffer, &pos); | ||
1038 | set_fs(old_fs); | ||
1039 | if (result < 0) | ||
1040 | goto out_kfree; | ||
1041 | } | ||
1042 | result = copied; | ||
1043 | out_kfree: | ||
1044 | kfree(buffer); | ||
1045 | out: | ||
1046 | return result; | ||
1047 | } | ||
1048 | |||
1049 | static ssize_t bin_ulongvec(struct file *file, | ||
1050 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1051 | { | ||
1052 | mm_segment_t old_fs = get_fs(); | ||
1053 | ssize_t copied = 0; | ||
1054 | char *buffer; | ||
1055 | ssize_t result; | ||
1056 | |||
1057 | result = -ENOMEM; | ||
1058 | buffer = kmalloc(BUFSZ, GFP_KERNEL); | ||
1059 | if (!buffer) | ||
1060 | goto out; | ||
1061 | |||
1062 | if (oldval && oldlen) { | ||
1063 | unsigned long __user *vec = oldval; | ||
1064 | size_t length = oldlen / sizeof(*vec); | ||
1065 | loff_t pos = 0; | ||
1066 | char *str, *end; | ||
1067 | int i; | ||
1068 | |||
1069 | set_fs(KERNEL_DS); | ||
1070 | result = vfs_read(file, buffer, BUFSZ - 1, &pos); | ||
1071 | set_fs(old_fs); | ||
1072 | if (result < 0) | ||
1073 | goto out_kfree; | ||
1074 | |||
1075 | str = buffer; | ||
1076 | end = str + result; | ||
1077 | *end++ = '\0'; | ||
1078 | for (i = 0; i < length; i++) { | ||
1079 | unsigned long value; | ||
1080 | |||
1081 | value = simple_strtoul(str, &str, 10); | ||
1082 | while (isspace(*str)) | ||
1083 | str++; | ||
1084 | |||
1085 | result = -EFAULT; | ||
1086 | if (put_user(value, vec + i)) | ||
1087 | goto out_kfree; | ||
1088 | |||
1089 | copied += sizeof(*vec); | ||
1090 | if (!isdigit(*str)) | ||
1091 | break; | ||
1092 | } | ||
1093 | } | ||
1094 | |||
1095 | if (newval && newlen) { | ||
1096 | unsigned long __user *vec = newval; | ||
1097 | size_t length = newlen / sizeof(*vec); | ||
1098 | loff_t pos = 0; | ||
1099 | char *str, *end; | ||
1100 | int i; | ||
1101 | |||
1102 | str = buffer; | ||
1103 | end = str + BUFSZ; | ||
1104 | for (i = 0; i < length; i++) { | ||
1105 | unsigned long value; | ||
1106 | |||
1107 | result = -EFAULT; | ||
1108 | if (get_user(value, vec + i)) | ||
1109 | goto out_kfree; | ||
1110 | |||
1111 | str += snprintf(str, end - str, "%lu\t", value); | ||
1112 | } | ||
1113 | |||
1114 | set_fs(KERNEL_DS); | ||
1115 | result = vfs_write(file, buffer, str - buffer, &pos); | ||
1116 | set_fs(old_fs); | ||
1117 | if (result < 0) | ||
1118 | goto out_kfree; | ||
1119 | } | ||
1120 | result = copied; | ||
1121 | out_kfree: | ||
1122 | kfree(buffer); | ||
1123 | out: | ||
1124 | return result; | ||
1125 | } | ||
1126 | |||
1127 | static unsigned hex_value(int ch) | ||
1128 | { | ||
1129 | return isdigit(ch) ? ch - '0' : ((ch | 0x20) - 'a') + 10; | ||
1130 | } | ||
1131 | |||
1132 | static ssize_t bin_uuid(struct file *file, | ||
1133 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1134 | { | ||
1135 | mm_segment_t old_fs = get_fs(); | ||
1136 | ssize_t result, copied = 0; | ||
1137 | |||
1138 | /* Only supports reads */ | ||
1139 | if (oldval && oldlen) { | ||
1140 | loff_t pos = 0; | ||
1141 | char buf[40], *str = buf; | ||
1142 | unsigned char uuid[16]; | ||
1143 | int i; | ||
1144 | |||
1145 | set_fs(KERNEL_DS); | ||
1146 | result = vfs_read(file, buf, sizeof(buf) - 1, &pos); | ||
1147 | set_fs(old_fs); | ||
1148 | if (result < 0) | ||
1149 | goto out; | ||
1150 | |||
1151 | buf[result] = '\0'; | ||
1152 | |||
1153 | /* Convert the uuid to from a string to binary */ | ||
1154 | for (i = 0; i < 16; i++) { | ||
1155 | result = -EIO; | ||
1156 | if (!isxdigit(str[0]) || !isxdigit(str[1])) | ||
1157 | goto out; | ||
1158 | |||
1159 | uuid[i] = (hex_value(str[0]) << 4) | hex_value(str[1]); | ||
1160 | str += 2; | ||
1161 | if (*str == '-') | ||
1162 | str++; | ||
1163 | } | ||
1164 | |||
1165 | if (oldlen > 16) | ||
1166 | oldlen = 16; | ||
1167 | |||
1168 | result = -EFAULT; | ||
1169 | if (copy_to_user(oldval, uuid, oldlen)) | ||
1170 | goto out; | ||
1171 | |||
1172 | copied = oldlen; | ||
1173 | } | ||
1174 | result = copied; | ||
1175 | out: | ||
1176 | return result; | ||
1177 | } | ||
1178 | |||
1179 | static ssize_t bin_dn_node_address(struct file *file, | ||
1180 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1181 | { | ||
1182 | mm_segment_t old_fs = get_fs(); | ||
1183 | ssize_t result, copied = 0; | ||
1184 | |||
1185 | if (oldval && oldlen) { | ||
1186 | loff_t pos = 0; | ||
1187 | char buf[15], *nodep; | ||
1188 | unsigned long area, node; | ||
1189 | __le16 dnaddr; | ||
1190 | |||
1191 | set_fs(KERNEL_DS); | ||
1192 | result = vfs_read(file, buf, sizeof(buf) - 1, &pos); | ||
1193 | set_fs(old_fs); | ||
1194 | if (result < 0) | ||
1195 | goto out; | ||
1196 | |||
1197 | buf[result] = '\0'; | ||
1198 | |||
1199 | /* Convert the decnet addresss to binary */ | ||
1200 | result = -EIO; | ||
1201 | nodep = strchr(buf, '.') + 1; | ||
1202 | if (!nodep) | ||
1203 | goto out; | ||
1204 | |||
1205 | area = simple_strtoul(buf, NULL, 10); | ||
1206 | node = simple_strtoul(nodep, NULL, 10); | ||
1207 | |||
1208 | result = -EIO; | ||
1209 | if ((area > 63)||(node > 1023)) | ||
1210 | goto out; | ||
1211 | |||
1212 | dnaddr = cpu_to_le16((area << 10) | node); | ||
1213 | |||
1214 | result = -EFAULT; | ||
1215 | if (put_user(dnaddr, (__le16 __user *)oldval)) | ||
1216 | goto out; | ||
1217 | |||
1218 | copied = sizeof(dnaddr); | ||
1219 | } | ||
1220 | |||
1221 | if (newval && newlen) { | ||
1222 | loff_t pos = 0; | ||
1223 | __le16 dnaddr; | ||
1224 | char buf[15]; | ||
1225 | int len; | ||
1226 | |||
1227 | result = -EINVAL; | ||
1228 | if (newlen != sizeof(dnaddr)) | ||
1229 | goto out; | ||
1230 | |||
1231 | result = -EFAULT; | ||
1232 | if (get_user(dnaddr, (__le16 __user *)newval)) | ||
1233 | goto out; | ||
1234 | |||
1235 | len = snprintf(buf, sizeof(buf), "%hu.%hu", | ||
1236 | le16_to_cpu(dnaddr) >> 10, | ||
1237 | le16_to_cpu(dnaddr) & 0x3ff); | ||
1238 | |||
1239 | set_fs(KERNEL_DS); | ||
1240 | result = vfs_write(file, buf, len, &pos); | ||
1241 | set_fs(old_fs); | ||
1242 | if (result < 0) | ||
1243 | goto out; | ||
1244 | } | ||
1245 | |||
1246 | result = copied; | ||
1247 | out: | ||
1248 | return result; | ||
1249 | } | ||
1250 | |||
1251 | static const struct bin_table *get_sysctl(const int *name, int nlen, char *path) | ||
1252 | { | ||
1253 | const struct bin_table *table = &bin_root_table[0]; | ||
1254 | int ctl_name; | ||
1255 | |||
1256 | /* The binary sysctl tables have a small maximum depth so | ||
1257 | * there is no danger of overflowing our path as it PATH_MAX | ||
1258 | * bytes long. | ||
1259 | */ | ||
1260 | memcpy(path, "sys/", 4); | ||
1261 | path += 4; | ||
1262 | |||
1263 | repeat: | ||
1264 | if (!nlen) | ||
1265 | return ERR_PTR(-ENOTDIR); | ||
1266 | ctl_name = *name; | ||
1267 | name++; | ||
1268 | nlen--; | ||
1269 | for ( ; table->convert; table++) { | ||
1270 | int len = 0; | ||
1271 | |||
1272 | /* | ||
1273 | * For a wild card entry map from ifindex to network | ||
1274 | * device name. | ||
1275 | */ | ||
1276 | if (!table->ctl_name) { | ||
1277 | #ifdef CONFIG_NET | ||
1278 | struct net *net = current->nsproxy->net_ns; | ||
1279 | struct net_device *dev; | ||
1280 | dev = dev_get_by_index(net, ctl_name); | ||
1281 | if (dev) { | ||
1282 | len = strlen(dev->name); | ||
1283 | memcpy(path, dev->name, len); | ||
1284 | dev_put(dev); | ||
1285 | } | ||
1286 | #endif | ||
1287 | /* Use the well known sysctl number to proc name mapping */ | ||
1288 | } else if (ctl_name == table->ctl_name) { | ||
1289 | len = strlen(table->procname); | ||
1290 | memcpy(path, table->procname, len); | ||
1291 | } | ||
1292 | if (len) { | ||
1293 | path += len; | ||
1294 | if (table->child) { | ||
1295 | *path++ = '/'; | ||
1296 | table = table->child; | ||
1297 | goto repeat; | ||
1298 | } | ||
1299 | *path = '\0'; | ||
1300 | return table; | ||
1301 | } | ||
1302 | } | ||
1303 | return ERR_PTR(-ENOTDIR); | ||
1304 | } | ||
1305 | |||
1306 | static char *sysctl_getname(const int *name, int nlen, const struct bin_table **tablep) | ||
1307 | { | ||
1308 | char *tmp, *result; | ||
1309 | |||
1310 | result = ERR_PTR(-ENOMEM); | ||
1311 | tmp = __getname(); | ||
1312 | if (tmp) { | ||
1313 | const struct bin_table *table = get_sysctl(name, nlen, tmp); | ||
1314 | result = tmp; | ||
1315 | *tablep = table; | ||
1316 | if (IS_ERR(table)) { | ||
1317 | __putname(tmp); | ||
1318 | result = ERR_CAST(table); | ||
1319 | } | ||
1320 | } | ||
1321 | return result; | ||
1322 | } | ||
1323 | |||
1324 | static ssize_t binary_sysctl(const int *name, int nlen, | ||
1325 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1326 | { | ||
1327 | const struct bin_table *table = NULL; | ||
1328 | struct nameidata nd; | ||
1329 | struct vfsmount *mnt; | ||
1330 | struct file *file; | ||
1331 | ssize_t result; | ||
1332 | char *pathname; | ||
1333 | int flags; | ||
1334 | int acc_mode, fmode; | ||
1335 | |||
1336 | pathname = sysctl_getname(name, nlen, &table); | ||
1337 | result = PTR_ERR(pathname); | ||
1338 | if (IS_ERR(pathname)) | ||
1339 | goto out; | ||
1340 | |||
1341 | /* How should the sysctl be accessed? */ | ||
1342 | if (oldval && oldlen && newval && newlen) { | ||
1343 | flags = O_RDWR; | ||
1344 | acc_mode = MAY_READ | MAY_WRITE; | ||
1345 | fmode = FMODE_READ | FMODE_WRITE; | ||
1346 | } else if (newval && newlen) { | ||
1347 | flags = O_WRONLY; | ||
1348 | acc_mode = MAY_WRITE; | ||
1349 | fmode = FMODE_WRITE; | ||
1350 | } else if (oldval && oldlen) { | ||
1351 | flags = O_RDONLY; | ||
1352 | acc_mode = MAY_READ; | ||
1353 | fmode = FMODE_READ; | ||
1354 | } else { | ||
1355 | result = 0; | ||
1356 | goto out_putname; | ||
1357 | } | ||
1358 | |||
1359 | mnt = current->nsproxy->pid_ns->proc_mnt; | ||
1360 | result = vfs_path_lookup(mnt->mnt_root, mnt, pathname, 0, &nd); | ||
1361 | if (result) | ||
1362 | goto out_putname; | ||
1363 | |||
1364 | result = may_open(&nd.path, acc_mode, fmode); | ||
1365 | if (result) | ||
1366 | goto out_putpath; | ||
1367 | |||
1368 | file = dentry_open(nd.path.dentry, nd.path.mnt, flags, current_cred()); | ||
1369 | result = PTR_ERR(file); | ||
1370 | if (IS_ERR(file)) | ||
1371 | goto out_putname; | ||
1372 | |||
1373 | result = table->convert(file, oldval, oldlen, newval, newlen); | ||
1374 | |||
1375 | fput(file); | ||
1376 | out_putname: | ||
1377 | putname(pathname); | ||
1378 | out: | ||
1379 | return result; | ||
1380 | |||
1381 | out_putpath: | ||
1382 | path_put(&nd.path); | ||
1383 | goto out_putname; | ||
1384 | } | ||
1385 | |||
1386 | |||
1387 | #else /* CONFIG_SYSCTL_SYSCALL */ | ||
1388 | |||
1389 | static ssize_t binary_sysctl(const int *name, int nlen, | ||
1390 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1391 | { | ||
1392 | return -ENOSYS; | ||
1393 | } | ||
1394 | |||
1395 | #endif /* CONFIG_SYSCTL_SYSCALL */ | ||
1396 | |||
1397 | |||
1398 | static void deprecated_sysctl_warning(const int *name, int nlen) | ||
1399 | { | ||
1400 | int i; | ||
1401 | |||
1402 | if (printk_ratelimit()) { | ||
1403 | printk(KERN_INFO | ||
1404 | "warning: process `%s' used the deprecated sysctl " | ||
1405 | "system call with ", current->comm); | ||
1406 | for (i = 0; i < nlen; i++) | ||
1407 | printk("%d.", name[i]); | ||
1408 | printk("\n"); | ||
1409 | } | ||
1410 | return; | ||
1411 | } | ||
1412 | |||
1413 | static ssize_t do_sysctl(int __user *args_name, int nlen, | ||
1414 | void __user *oldval, size_t oldlen, void __user *newval, size_t newlen) | ||
1415 | { | ||
1416 | int name[CTL_MAXNAME]; | ||
1417 | int i; | ||
1418 | |||
1419 | /* Check args->nlen. */ | ||
1420 | if (nlen < 0 || nlen > CTL_MAXNAME) | ||
1421 | return -ENOTDIR; | ||
1422 | /* Read in the sysctl name for simplicity */ | ||
1423 | for (i = 0; i < nlen; i++) | ||
1424 | if (get_user(name[i], args_name + i)) | ||
1425 | return -EFAULT; | ||
1426 | |||
1427 | deprecated_sysctl_warning(name, nlen); | ||
1428 | |||
1429 | return binary_sysctl(name, nlen, oldval, oldlen, newval, newlen); | ||
1430 | } | ||
1431 | |||
1432 | SYSCALL_DEFINE1(sysctl, struct __sysctl_args __user *, args) | ||
1433 | { | ||
1434 | struct __sysctl_args tmp; | ||
1435 | size_t oldlen = 0; | ||
1436 | ssize_t result; | ||
1437 | |||
1438 | if (copy_from_user(&tmp, args, sizeof(tmp))) | ||
1439 | return -EFAULT; | ||
1440 | |||
1441 | if (tmp.oldval && !tmp.oldlenp) | ||
1442 | return -EFAULT; | ||
1443 | |||
1444 | if (tmp.oldlenp && get_user(oldlen, tmp.oldlenp)) | ||
1445 | return -EFAULT; | ||
1446 | |||
1447 | result = do_sysctl(tmp.name, tmp.nlen, tmp.oldval, oldlen, | ||
1448 | tmp.newval, tmp.newlen); | ||
1449 | |||
1450 | if (result >= 0) { | ||
1451 | oldlen = result; | ||
1452 | result = 0; | ||
1453 | } | ||
1454 | |||
1455 | if (tmp.oldlenp && put_user(oldlen, tmp.oldlenp)) | ||
1456 | return -EFAULT; | ||
1457 | |||
1458 | return result; | ||
1459 | } | ||
1460 | |||
1461 | |||
1462 | #ifdef CONFIG_COMPAT | ||
1463 | #include <asm/compat.h> | ||
1464 | |||
1465 | struct compat_sysctl_args { | ||
1466 | compat_uptr_t name; | ||
1467 | int nlen; | ||
1468 | compat_uptr_t oldval; | ||
1469 | compat_uptr_t oldlenp; | ||
1470 | compat_uptr_t newval; | ||
1471 | compat_size_t newlen; | ||
1472 | compat_ulong_t __unused[4]; | ||
1473 | }; | ||
1474 | |||
1475 | asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args) | ||
1476 | { | ||
1477 | struct compat_sysctl_args tmp; | ||
1478 | compat_size_t __user *compat_oldlenp; | ||
1479 | size_t oldlen = 0; | ||
1480 | ssize_t result; | ||
1481 | |||
1482 | if (copy_from_user(&tmp, args, sizeof(tmp))) | ||
1483 | return -EFAULT; | ||
1484 | |||
1485 | if (tmp.oldval && !tmp.oldlenp) | ||
1486 | return -EFAULT; | ||
1487 | |||
1488 | compat_oldlenp = compat_ptr(tmp.oldlenp); | ||
1489 | if (compat_oldlenp && get_user(oldlen, compat_oldlenp)) | ||
1490 | return -EFAULT; | ||
1491 | |||
1492 | result = do_sysctl(compat_ptr(tmp.name), tmp.nlen, | ||
1493 | compat_ptr(tmp.oldval), oldlen, | ||
1494 | compat_ptr(tmp.newval), tmp.newlen); | ||
1495 | |||
1496 | if (result >= 0) { | ||
1497 | oldlen = result; | ||
1498 | result = 0; | ||
1499 | } | ||
1500 | |||
1501 | if (compat_oldlenp && put_user(oldlen, compat_oldlenp)) | ||
1502 | return -EFAULT; | ||
1503 | |||
1504 | return result; | ||
1505 | } | ||
1506 | |||
1507 | #endif /* CONFIG_COMPAT */ | ||
diff --git a/kernel/sysctl_check.c b/kernel/sysctl_check.c index b6e7aaea4604..04cdcf72c827 100644 --- a/kernel/sysctl_check.c +++ b/kernel/sysctl_check.c | |||
@@ -5,1239 +5,6 @@ | |||
5 | #include <linux/string.h> | 5 | #include <linux/string.h> |
6 | #include <net/ip_vs.h> | 6 | #include <net/ip_vs.h> |
7 | 7 | ||
8 | struct trans_ctl_table { | ||
9 | int ctl_name; | ||
10 | const char *procname; | ||
11 | const struct trans_ctl_table *child; | ||
12 | }; | ||
13 | |||
14 | static const struct trans_ctl_table trans_random_table[] = { | ||
15 | { RANDOM_POOLSIZE, "poolsize" }, | ||
16 | { RANDOM_ENTROPY_COUNT, "entropy_avail" }, | ||
17 | { RANDOM_READ_THRESH, "read_wakeup_threshold" }, | ||
18 | { RANDOM_WRITE_THRESH, "write_wakeup_threshold" }, | ||
19 | { RANDOM_BOOT_ID, "boot_id" }, | ||
20 | { RANDOM_UUID, "uuid" }, | ||
21 | {} | ||
22 | }; | ||
23 | |||
24 | static const struct trans_ctl_table trans_pty_table[] = { | ||
25 | { PTY_MAX, "max" }, | ||
26 | { PTY_NR, "nr" }, | ||
27 | {} | ||
28 | }; | ||
29 | |||
30 | static const struct trans_ctl_table trans_kern_table[] = { | ||
31 | { KERN_OSTYPE, "ostype" }, | ||
32 | { KERN_OSRELEASE, "osrelease" }, | ||
33 | /* KERN_OSREV not used */ | ||
34 | { KERN_VERSION, "version" }, | ||
35 | /* KERN_SECUREMASK not used */ | ||
36 | /* KERN_PROF not used */ | ||
37 | { KERN_NODENAME, "hostname" }, | ||
38 | { KERN_DOMAINNAME, "domainname" }, | ||
39 | |||
40 | { KERN_PANIC, "panic" }, | ||
41 | { KERN_REALROOTDEV, "real-root-dev" }, | ||
42 | |||
43 | { KERN_SPARC_REBOOT, "reboot-cmd" }, | ||
44 | { KERN_CTLALTDEL, "ctrl-alt-del" }, | ||
45 | { KERN_PRINTK, "printk" }, | ||
46 | |||
47 | /* KERN_NAMETRANS not used */ | ||
48 | /* KERN_PPC_HTABRECLAIM not used */ | ||
49 | /* KERN_PPC_ZEROPAGED not used */ | ||
50 | { KERN_PPC_POWERSAVE_NAP, "powersave-nap" }, | ||
51 | |||
52 | { KERN_MODPROBE, "modprobe" }, | ||
53 | { KERN_SG_BIG_BUFF, "sg-big-buff" }, | ||
54 | { KERN_ACCT, "acct" }, | ||
55 | { KERN_PPC_L2CR, "l2cr" }, | ||
56 | |||
57 | /* KERN_RTSIGNR not used */ | ||
58 | /* KERN_RTSIGMAX not used */ | ||
59 | |||
60 | { KERN_SHMMAX, "shmmax" }, | ||
61 | { KERN_MSGMAX, "msgmax" }, | ||
62 | { KERN_MSGMNB, "msgmnb" }, | ||
63 | /* KERN_MSGPOOL not used*/ | ||
64 | { KERN_SYSRQ, "sysrq" }, | ||
65 | { KERN_MAX_THREADS, "threads-max" }, | ||
66 | { KERN_RANDOM, "random", trans_random_table }, | ||
67 | { KERN_SHMALL, "shmall" }, | ||
68 | { KERN_MSGMNI, "msgmni" }, | ||
69 | { KERN_SEM, "sem" }, | ||
70 | { KERN_SPARC_STOP_A, "stop-a" }, | ||
71 | { KERN_SHMMNI, "shmmni" }, | ||
72 | |||
73 | { KERN_OVERFLOWUID, "overflowuid" }, | ||
74 | { KERN_OVERFLOWGID, "overflowgid" }, | ||
75 | |||
76 | { KERN_HOTPLUG, "hotplug", }, | ||
77 | { KERN_IEEE_EMULATION_WARNINGS, "ieee_emulation_warnings" }, | ||
78 | |||
79 | { KERN_S390_USER_DEBUG_LOGGING, "userprocess_debug" }, | ||
80 | { KERN_CORE_USES_PID, "core_uses_pid" }, | ||
81 | { KERN_TAINTED, "tainted" }, | ||
82 | { KERN_CADPID, "cad_pid" }, | ||
83 | { KERN_PIDMAX, "pid_max" }, | ||
84 | { KERN_CORE_PATTERN, "core_pattern" }, | ||
85 | { KERN_PANIC_ON_OOPS, "panic_on_oops" }, | ||
86 | { KERN_HPPA_PWRSW, "soft-power" }, | ||
87 | { KERN_HPPA_UNALIGNED, "unaligned-trap" }, | ||
88 | |||
89 | { KERN_PRINTK_RATELIMIT, "printk_ratelimit" }, | ||
90 | { KERN_PRINTK_RATELIMIT_BURST, "printk_ratelimit_burst" }, | ||
91 | |||
92 | { KERN_PTY, "pty", trans_pty_table }, | ||
93 | { KERN_NGROUPS_MAX, "ngroups_max" }, | ||
94 | { KERN_SPARC_SCONS_PWROFF, "scons-poweroff" }, | ||
95 | { KERN_HZ_TIMER, "hz_timer" }, | ||
96 | { KERN_UNKNOWN_NMI_PANIC, "unknown_nmi_panic" }, | ||
97 | { KERN_BOOTLOADER_TYPE, "bootloader_type" }, | ||
98 | { KERN_RANDOMIZE, "randomize_va_space" }, | ||
99 | |||
100 | { KERN_SPIN_RETRY, "spin_retry" }, | ||
101 | { KERN_ACPI_VIDEO_FLAGS, "acpi_video_flags" }, | ||
102 | { KERN_IA64_UNALIGNED, "ignore-unaligned-usertrap" }, | ||
103 | { KERN_COMPAT_LOG, "compat-log" }, | ||
104 | { KERN_MAX_LOCK_DEPTH, "max_lock_depth" }, | ||
105 | { KERN_NMI_WATCHDOG, "nmi_watchdog" }, | ||
106 | { KERN_PANIC_ON_NMI, "panic_on_unrecovered_nmi" }, | ||
107 | {} | ||
108 | }; | ||
109 | |||
110 | static const struct trans_ctl_table trans_vm_table[] = { | ||
111 | { VM_OVERCOMMIT_MEMORY, "overcommit_memory" }, | ||
112 | { VM_PAGE_CLUSTER, "page-cluster" }, | ||
113 | { VM_DIRTY_BACKGROUND, "dirty_background_ratio" }, | ||
114 | { VM_DIRTY_RATIO, "dirty_ratio" }, | ||
115 | { VM_DIRTY_WB_CS, "dirty_writeback_centisecs" }, | ||
116 | { VM_DIRTY_EXPIRE_CS, "dirty_expire_centisecs" }, | ||
117 | { VM_NR_PDFLUSH_THREADS, "nr_pdflush_threads" }, | ||
118 | { VM_OVERCOMMIT_RATIO, "overcommit_ratio" }, | ||
119 | /* VM_PAGEBUF unused */ | ||
120 | { VM_HUGETLB_PAGES, "nr_hugepages" }, | ||
121 | { VM_SWAPPINESS, "swappiness" }, | ||
122 | { VM_LOWMEM_RESERVE_RATIO, "lowmem_reserve_ratio" }, | ||
123 | { VM_MIN_FREE_KBYTES, "min_free_kbytes" }, | ||
124 | { VM_MAX_MAP_COUNT, "max_map_count" }, | ||
125 | { VM_LAPTOP_MODE, "laptop_mode" }, | ||
126 | { VM_BLOCK_DUMP, "block_dump" }, | ||
127 | { VM_HUGETLB_GROUP, "hugetlb_shm_group" }, | ||
128 | { VM_VFS_CACHE_PRESSURE, "vfs_cache_pressure" }, | ||
129 | { VM_LEGACY_VA_LAYOUT, "legacy_va_layout" }, | ||
130 | /* VM_SWAP_TOKEN_TIMEOUT unused */ | ||
131 | { VM_DROP_PAGECACHE, "drop_caches" }, | ||
132 | { VM_PERCPU_PAGELIST_FRACTION, "percpu_pagelist_fraction" }, | ||
133 | { VM_ZONE_RECLAIM_MODE, "zone_reclaim_mode" }, | ||
134 | { VM_MIN_UNMAPPED, "min_unmapped_ratio" }, | ||
135 | { VM_PANIC_ON_OOM, "panic_on_oom" }, | ||
136 | { VM_VDSO_ENABLED, "vdso_enabled" }, | ||
137 | { VM_MIN_SLAB, "min_slab_ratio" }, | ||
138 | |||
139 | {} | ||
140 | }; | ||
141 | |||
142 | static const struct trans_ctl_table trans_net_core_table[] = { | ||
143 | { NET_CORE_WMEM_MAX, "wmem_max" }, | ||
144 | { NET_CORE_RMEM_MAX, "rmem_max" }, | ||
145 | { NET_CORE_WMEM_DEFAULT, "wmem_default" }, | ||
146 | { NET_CORE_RMEM_DEFAULT, "rmem_default" }, | ||
147 | /* NET_CORE_DESTROY_DELAY unused */ | ||
148 | { NET_CORE_MAX_BACKLOG, "netdev_max_backlog" }, | ||
149 | /* NET_CORE_FASTROUTE unused */ | ||
150 | { NET_CORE_MSG_COST, "message_cost" }, | ||
151 | { NET_CORE_MSG_BURST, "message_burst" }, | ||
152 | { NET_CORE_OPTMEM_MAX, "optmem_max" }, | ||
153 | /* NET_CORE_HOT_LIST_LENGTH unused */ | ||
154 | /* NET_CORE_DIVERT_VERSION unused */ | ||
155 | /* NET_CORE_NO_CONG_THRESH unused */ | ||
156 | /* NET_CORE_NO_CONG unused */ | ||
157 | /* NET_CORE_LO_CONG unused */ | ||
158 | /* NET_CORE_MOD_CONG unused */ | ||
159 | { NET_CORE_DEV_WEIGHT, "dev_weight" }, | ||
160 | { NET_CORE_SOMAXCONN, "somaxconn" }, | ||
161 | { NET_CORE_BUDGET, "netdev_budget" }, | ||
162 | { NET_CORE_AEVENT_ETIME, "xfrm_aevent_etime" }, | ||
163 | { NET_CORE_AEVENT_RSEQTH, "xfrm_aevent_rseqth" }, | ||
164 | { NET_CORE_WARNINGS, "warnings" }, | ||
165 | {}, | ||
166 | }; | ||
167 | |||
168 | static const struct trans_ctl_table trans_net_unix_table[] = { | ||
169 | /* NET_UNIX_DESTROY_DELAY unused */ | ||
170 | /* NET_UNIX_DELETE_DELAY unused */ | ||
171 | { NET_UNIX_MAX_DGRAM_QLEN, "max_dgram_qlen" }, | ||
172 | {} | ||
173 | }; | ||
174 | |||
175 | static const struct trans_ctl_table trans_net_ipv4_route_table[] = { | ||
176 | { NET_IPV4_ROUTE_FLUSH, "flush" }, | ||
177 | { NET_IPV4_ROUTE_MIN_DELAY, "min_delay" }, | ||
178 | { NET_IPV4_ROUTE_MAX_DELAY, "max_delay" }, | ||
179 | { NET_IPV4_ROUTE_GC_THRESH, "gc_thresh" }, | ||
180 | { NET_IPV4_ROUTE_MAX_SIZE, "max_size" }, | ||
181 | { NET_IPV4_ROUTE_GC_MIN_INTERVAL, "gc_min_interval" }, | ||
182 | { NET_IPV4_ROUTE_GC_TIMEOUT, "gc_timeout" }, | ||
183 | { NET_IPV4_ROUTE_GC_INTERVAL, "gc_interval" }, | ||
184 | { NET_IPV4_ROUTE_REDIRECT_LOAD, "redirect_load" }, | ||
185 | { NET_IPV4_ROUTE_REDIRECT_NUMBER, "redirect_number" }, | ||
186 | { NET_IPV4_ROUTE_REDIRECT_SILENCE, "redirect_silence" }, | ||
187 | { NET_IPV4_ROUTE_ERROR_COST, "error_cost" }, | ||
188 | { NET_IPV4_ROUTE_ERROR_BURST, "error_burst" }, | ||
189 | { NET_IPV4_ROUTE_GC_ELASTICITY, "gc_elasticity" }, | ||
190 | { NET_IPV4_ROUTE_MTU_EXPIRES, "mtu_expires" }, | ||
191 | { NET_IPV4_ROUTE_MIN_PMTU, "min_pmtu" }, | ||
192 | { NET_IPV4_ROUTE_MIN_ADVMSS, "min_adv_mss" }, | ||
193 | { NET_IPV4_ROUTE_SECRET_INTERVAL, "secret_interval" }, | ||
194 | { NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS, "gc_min_interval_ms" }, | ||
195 | {} | ||
196 | }; | ||
197 | |||
198 | static const struct trans_ctl_table trans_net_ipv4_conf_vars_table[] = { | ||
199 | { NET_IPV4_CONF_FORWARDING, "forwarding" }, | ||
200 | { NET_IPV4_CONF_MC_FORWARDING, "mc_forwarding" }, | ||
201 | |||
202 | { NET_IPV4_CONF_PROXY_ARP, "proxy_arp" }, | ||
203 | { NET_IPV4_CONF_ACCEPT_REDIRECTS, "accept_redirects" }, | ||
204 | { NET_IPV4_CONF_SECURE_REDIRECTS, "secure_redirects" }, | ||
205 | { NET_IPV4_CONF_SEND_REDIRECTS, "send_redirects" }, | ||
206 | { NET_IPV4_CONF_SHARED_MEDIA, "shared_media" }, | ||
207 | { NET_IPV4_CONF_RP_FILTER, "rp_filter" }, | ||
208 | { NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE, "accept_source_route" }, | ||
209 | { NET_IPV4_CONF_BOOTP_RELAY, "bootp_relay" }, | ||
210 | { NET_IPV4_CONF_LOG_MARTIANS, "log_martians" }, | ||
211 | { NET_IPV4_CONF_TAG, "tag" }, | ||
212 | { NET_IPV4_CONF_ARPFILTER, "arp_filter" }, | ||
213 | { NET_IPV4_CONF_MEDIUM_ID, "medium_id" }, | ||
214 | { NET_IPV4_CONF_NOXFRM, "disable_xfrm" }, | ||
215 | { NET_IPV4_CONF_NOPOLICY, "disable_policy" }, | ||
216 | { NET_IPV4_CONF_FORCE_IGMP_VERSION, "force_igmp_version" }, | ||
217 | |||
218 | { NET_IPV4_CONF_ARP_ANNOUNCE, "arp_announce" }, | ||
219 | { NET_IPV4_CONF_ARP_IGNORE, "arp_ignore" }, | ||
220 | { NET_IPV4_CONF_PROMOTE_SECONDARIES, "promote_secondaries" }, | ||
221 | { NET_IPV4_CONF_ARP_ACCEPT, "arp_accept" }, | ||
222 | { NET_IPV4_CONF_ARP_NOTIFY, "arp_notify" }, | ||
223 | {} | ||
224 | }; | ||
225 | |||
226 | static const struct trans_ctl_table trans_net_ipv4_conf_table[] = { | ||
227 | { NET_PROTO_CONF_ALL, "all", trans_net_ipv4_conf_vars_table }, | ||
228 | { NET_PROTO_CONF_DEFAULT, "default", trans_net_ipv4_conf_vars_table }, | ||
229 | { 0, NULL, trans_net_ipv4_conf_vars_table }, | ||
230 | {} | ||
231 | }; | ||
232 | |||
233 | static const struct trans_ctl_table trans_net_neigh_vars_table[] = { | ||
234 | { NET_NEIGH_MCAST_SOLICIT, "mcast_solicit" }, | ||
235 | { NET_NEIGH_UCAST_SOLICIT, "ucast_solicit" }, | ||
236 | { NET_NEIGH_APP_SOLICIT, "app_solicit" }, | ||
237 | { NET_NEIGH_RETRANS_TIME, "retrans_time" }, | ||
238 | { NET_NEIGH_REACHABLE_TIME, "base_reachable_time" }, | ||
239 | { NET_NEIGH_DELAY_PROBE_TIME, "delay_first_probe_time" }, | ||
240 | { NET_NEIGH_GC_STALE_TIME, "gc_stale_time" }, | ||
241 | { NET_NEIGH_UNRES_QLEN, "unres_qlen" }, | ||
242 | { NET_NEIGH_PROXY_QLEN, "proxy_qlen" }, | ||
243 | { NET_NEIGH_ANYCAST_DELAY, "anycast_delay" }, | ||
244 | { NET_NEIGH_PROXY_DELAY, "proxy_delay" }, | ||
245 | { NET_NEIGH_LOCKTIME, "locktime" }, | ||
246 | { NET_NEIGH_GC_INTERVAL, "gc_interval" }, | ||
247 | { NET_NEIGH_GC_THRESH1, "gc_thresh1" }, | ||
248 | { NET_NEIGH_GC_THRESH2, "gc_thresh2" }, | ||
249 | { NET_NEIGH_GC_THRESH3, "gc_thresh3" }, | ||
250 | { NET_NEIGH_RETRANS_TIME_MS, "retrans_time_ms" }, | ||
251 | { NET_NEIGH_REACHABLE_TIME_MS, "base_reachable_time_ms" }, | ||
252 | {} | ||
253 | }; | ||
254 | |||
255 | static const struct trans_ctl_table trans_net_neigh_table[] = { | ||
256 | { NET_PROTO_CONF_DEFAULT, "default", trans_net_neigh_vars_table }, | ||
257 | { 0, NULL, trans_net_neigh_vars_table }, | ||
258 | {} | ||
259 | }; | ||
260 | |||
261 | static const struct trans_ctl_table trans_net_ipv4_netfilter_table[] = { | ||
262 | { NET_IPV4_NF_CONNTRACK_MAX, "ip_conntrack_max" }, | ||
263 | |||
264 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT, "ip_conntrack_tcp_timeout_syn_sent" }, | ||
265 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV, "ip_conntrack_tcp_timeout_syn_recv" }, | ||
266 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED, "ip_conntrack_tcp_timeout_established" }, | ||
267 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT, "ip_conntrack_tcp_timeout_fin_wait" }, | ||
268 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT, "ip_conntrack_tcp_timeout_close_wait" }, | ||
269 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK, "ip_conntrack_tcp_timeout_last_ack" }, | ||
270 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT, "ip_conntrack_tcp_timeout_time_wait" }, | ||
271 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE, "ip_conntrack_tcp_timeout_close" }, | ||
272 | |||
273 | { NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT, "ip_conntrack_udp_timeout" }, | ||
274 | { NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT_STREAM, "ip_conntrack_udp_timeout_stream" }, | ||
275 | { NET_IPV4_NF_CONNTRACK_ICMP_TIMEOUT, "ip_conntrack_icmp_timeout" }, | ||
276 | { NET_IPV4_NF_CONNTRACK_GENERIC_TIMEOUT, "ip_conntrack_generic_timeout" }, | ||
277 | |||
278 | { NET_IPV4_NF_CONNTRACK_BUCKETS, "ip_conntrack_buckets" }, | ||
279 | { NET_IPV4_NF_CONNTRACK_LOG_INVALID, "ip_conntrack_log_invalid" }, | ||
280 | { NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS, "ip_conntrack_tcp_timeout_max_retrans" }, | ||
281 | { NET_IPV4_NF_CONNTRACK_TCP_LOOSE, "ip_conntrack_tcp_loose" }, | ||
282 | { NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL, "ip_conntrack_tcp_be_liberal" }, | ||
283 | { NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS, "ip_conntrack_tcp_max_retrans" }, | ||
284 | |||
285 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED, "ip_conntrack_sctp_timeout_closed" }, | ||
286 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT, "ip_conntrack_sctp_timeout_cookie_wait" }, | ||
287 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED, "ip_conntrack_sctp_timeout_cookie_echoed" }, | ||
288 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED, "ip_conntrack_sctp_timeout_established" }, | ||
289 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT, "ip_conntrack_sctp_timeout_shutdown_sent" }, | ||
290 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD, "ip_conntrack_sctp_timeout_shutdown_recd" }, | ||
291 | { NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT, "ip_conntrack_sctp_timeout_shutdown_ack_sent" }, | ||
292 | |||
293 | { NET_IPV4_NF_CONNTRACK_COUNT, "ip_conntrack_count" }, | ||
294 | { NET_IPV4_NF_CONNTRACK_CHECKSUM, "ip_conntrack_checksum" }, | ||
295 | {} | ||
296 | }; | ||
297 | |||
298 | static const struct trans_ctl_table trans_net_ipv4_table[] = { | ||
299 | { NET_IPV4_FORWARD, "ip_forward" }, | ||
300 | { NET_IPV4_DYNADDR, "ip_dynaddr" }, | ||
301 | |||
302 | { NET_IPV4_CONF, "conf", trans_net_ipv4_conf_table }, | ||
303 | { NET_IPV4_NEIGH, "neigh", trans_net_neigh_table }, | ||
304 | { NET_IPV4_ROUTE, "route", trans_net_ipv4_route_table }, | ||
305 | /* NET_IPV4_FIB_HASH unused */ | ||
306 | { NET_IPV4_NETFILTER, "netfilter", trans_net_ipv4_netfilter_table }, | ||
307 | |||
308 | { NET_IPV4_TCP_TIMESTAMPS, "tcp_timestamps" }, | ||
309 | { NET_IPV4_TCP_WINDOW_SCALING, "tcp_window_scaling" }, | ||
310 | { NET_IPV4_TCP_SACK, "tcp_sack" }, | ||
311 | { NET_IPV4_TCP_RETRANS_COLLAPSE, "tcp_retrans_collapse" }, | ||
312 | { NET_IPV4_DEFAULT_TTL, "ip_default_ttl" }, | ||
313 | /* NET_IPV4_AUTOCONFIG unused */ | ||
314 | { NET_IPV4_NO_PMTU_DISC, "ip_no_pmtu_disc" }, | ||
315 | { NET_IPV4_TCP_SYN_RETRIES, "tcp_syn_retries" }, | ||
316 | { NET_IPV4_IPFRAG_HIGH_THRESH, "ipfrag_high_thresh" }, | ||
317 | { NET_IPV4_IPFRAG_LOW_THRESH, "ipfrag_low_thresh" }, | ||
318 | { NET_IPV4_IPFRAG_TIME, "ipfrag_time" }, | ||
319 | /* NET_IPV4_TCP_MAX_KA_PROBES unused */ | ||
320 | { NET_IPV4_TCP_KEEPALIVE_TIME, "tcp_keepalive_time" }, | ||
321 | { NET_IPV4_TCP_KEEPALIVE_PROBES, "tcp_keepalive_probes" }, | ||
322 | { NET_IPV4_TCP_RETRIES1, "tcp_retries1" }, | ||
323 | { NET_IPV4_TCP_RETRIES2, "tcp_retries2" }, | ||
324 | { NET_IPV4_TCP_FIN_TIMEOUT, "tcp_fin_timeout" }, | ||
325 | /* NET_IPV4_IP_MASQ_DEBUG unused */ | ||
326 | { NET_TCP_SYNCOOKIES, "tcp_syncookies" }, | ||
327 | { NET_TCP_STDURG, "tcp_stdurg" }, | ||
328 | { NET_TCP_RFC1337, "tcp_rfc1337" }, | ||
329 | /* NET_TCP_SYN_TAILDROP unused */ | ||
330 | { NET_TCP_MAX_SYN_BACKLOG, "tcp_max_syn_backlog" }, | ||
331 | { NET_IPV4_LOCAL_PORT_RANGE, "ip_local_port_range" }, | ||
332 | { NET_IPV4_ICMP_ECHO_IGNORE_ALL, "icmp_echo_ignore_all" }, | ||
333 | { NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS, "icmp_echo_ignore_broadcasts" }, | ||
334 | /* NET_IPV4_ICMP_SOURCEQUENCH_RATE unused */ | ||
335 | /* NET_IPV4_ICMP_DESTUNREACH_RATE unused */ | ||
336 | /* NET_IPV4_ICMP_TIMEEXCEED_RATE unused */ | ||
337 | /* NET_IPV4_ICMP_PARAMPROB_RATE unused */ | ||
338 | /* NET_IPV4_ICMP_ECHOREPLY_RATE unused */ | ||
339 | { NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES, "icmp_ignore_bogus_error_responses" }, | ||
340 | { NET_IPV4_IGMP_MAX_MEMBERSHIPS, "igmp_max_memberships" }, | ||
341 | { NET_TCP_TW_RECYCLE, "tcp_tw_recycle" }, | ||
342 | /* NET_IPV4_ALWAYS_DEFRAG unused */ | ||
343 | { NET_IPV4_TCP_KEEPALIVE_INTVL, "tcp_keepalive_intvl" }, | ||
344 | { NET_IPV4_INET_PEER_THRESHOLD, "inet_peer_threshold" }, | ||
345 | { NET_IPV4_INET_PEER_MINTTL, "inet_peer_minttl" }, | ||
346 | { NET_IPV4_INET_PEER_MAXTTL, "inet_peer_maxttl" }, | ||
347 | { NET_IPV4_INET_PEER_GC_MINTIME, "inet_peer_gc_mintime" }, | ||
348 | { NET_IPV4_INET_PEER_GC_MAXTIME, "inet_peer_gc_maxtime" }, | ||
349 | { NET_TCP_ORPHAN_RETRIES, "tcp_orphan_retries" }, | ||
350 | { NET_TCP_ABORT_ON_OVERFLOW, "tcp_abort_on_overflow" }, | ||
351 | { NET_TCP_SYNACK_RETRIES, "tcp_synack_retries" }, | ||
352 | { NET_TCP_MAX_ORPHANS, "tcp_max_orphans" }, | ||
353 | { NET_TCP_MAX_TW_BUCKETS, "tcp_max_tw_buckets" }, | ||
354 | { NET_TCP_FACK, "tcp_fack" }, | ||
355 | { NET_TCP_REORDERING, "tcp_reordering" }, | ||
356 | { NET_TCP_ECN, "tcp_ecn" }, | ||
357 | { NET_TCP_DSACK, "tcp_dsack" }, | ||
358 | { NET_TCP_MEM, "tcp_mem" }, | ||
359 | { NET_TCP_WMEM, "tcp_wmem" }, | ||
360 | { NET_TCP_RMEM, "tcp_rmem" }, | ||
361 | { NET_TCP_APP_WIN, "tcp_app_win" }, | ||
362 | { NET_TCP_ADV_WIN_SCALE, "tcp_adv_win_scale" }, | ||
363 | { NET_IPV4_NONLOCAL_BIND, "ip_nonlocal_bind" }, | ||
364 | { NET_IPV4_ICMP_RATELIMIT, "icmp_ratelimit" }, | ||
365 | { NET_IPV4_ICMP_RATEMASK, "icmp_ratemask" }, | ||
366 | { NET_TCP_TW_REUSE, "tcp_tw_reuse" }, | ||
367 | { NET_TCP_FRTO, "tcp_frto" }, | ||
368 | { NET_TCP_LOW_LATENCY, "tcp_low_latency" }, | ||
369 | { NET_IPV4_IPFRAG_SECRET_INTERVAL, "ipfrag_secret_interval" }, | ||
370 | { NET_IPV4_IGMP_MAX_MSF, "igmp_max_msf" }, | ||
371 | { NET_TCP_NO_METRICS_SAVE, "tcp_no_metrics_save" }, | ||
372 | /* NET_TCP_DEFAULT_WIN_SCALE unused */ | ||
373 | { NET_TCP_MODERATE_RCVBUF, "tcp_moderate_rcvbuf" }, | ||
374 | { NET_TCP_TSO_WIN_DIVISOR, "tcp_tso_win_divisor" }, | ||
375 | /* NET_TCP_BIC_BETA unused */ | ||
376 | { NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR, "icmp_errors_use_inbound_ifaddr" }, | ||
377 | { NET_TCP_CONG_CONTROL, "tcp_congestion_control" }, | ||
378 | { NET_TCP_ABC, "tcp_abc" }, | ||
379 | { NET_IPV4_IPFRAG_MAX_DIST, "ipfrag_max_dist" }, | ||
380 | { NET_TCP_MTU_PROBING, "tcp_mtu_probing" }, | ||
381 | { NET_TCP_BASE_MSS, "tcp_base_mss" }, | ||
382 | { NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS, "tcp_workaround_signed_windows" }, | ||
383 | { NET_TCP_DMA_COPYBREAK, "tcp_dma_copybreak" }, | ||
384 | { NET_TCP_SLOW_START_AFTER_IDLE, "tcp_slow_start_after_idle" }, | ||
385 | { NET_CIPSOV4_CACHE_ENABLE, "cipso_cache_enable" }, | ||
386 | { NET_CIPSOV4_CACHE_BUCKET_SIZE, "cipso_cache_bucket_size" }, | ||
387 | { NET_CIPSOV4_RBM_OPTFMT, "cipso_rbm_optfmt" }, | ||
388 | { NET_CIPSOV4_RBM_STRICTVALID, "cipso_rbm_strictvalid" }, | ||
389 | { NET_TCP_AVAIL_CONG_CONTROL, "tcp_available_congestion_control" }, | ||
390 | { NET_TCP_ALLOWED_CONG_CONTROL, "tcp_allowed_congestion_control" }, | ||
391 | { NET_TCP_MAX_SSTHRESH, "tcp_max_ssthresh" }, | ||
392 | { NET_TCP_FRTO_RESPONSE, "tcp_frto_response" }, | ||
393 | { 2088 /* NET_IPQ_QMAX */, "ip_queue_maxlen" }, | ||
394 | {} | ||
395 | }; | ||
396 | |||
397 | static const struct trans_ctl_table trans_net_ipx_table[] = { | ||
398 | { NET_IPX_PPROP_BROADCASTING, "ipx_pprop_broadcasting" }, | ||
399 | /* NET_IPX_FORWARDING unused */ | ||
400 | {} | ||
401 | }; | ||
402 | |||
403 | static const struct trans_ctl_table trans_net_atalk_table[] = { | ||
404 | { NET_ATALK_AARP_EXPIRY_TIME, "aarp-expiry-time" }, | ||
405 | { NET_ATALK_AARP_TICK_TIME, "aarp-tick-time" }, | ||
406 | { NET_ATALK_AARP_RETRANSMIT_LIMIT, "aarp-retransmit-limit" }, | ||
407 | { NET_ATALK_AARP_RESOLVE_TIME, "aarp-resolve-time" }, | ||
408 | {}, | ||
409 | }; | ||
410 | |||
411 | static const struct trans_ctl_table trans_net_netrom_table[] = { | ||
412 | { NET_NETROM_DEFAULT_PATH_QUALITY, "default_path_quality" }, | ||
413 | { NET_NETROM_OBSOLESCENCE_COUNT_INITIALISER, "obsolescence_count_initialiser" }, | ||
414 | { NET_NETROM_NETWORK_TTL_INITIALISER, "network_ttl_initialiser" }, | ||
415 | { NET_NETROM_TRANSPORT_TIMEOUT, "transport_timeout" }, | ||
416 | { NET_NETROM_TRANSPORT_MAXIMUM_TRIES, "transport_maximum_tries" }, | ||
417 | { NET_NETROM_TRANSPORT_ACKNOWLEDGE_DELAY, "transport_acknowledge_delay" }, | ||
418 | { NET_NETROM_TRANSPORT_BUSY_DELAY, "transport_busy_delay" }, | ||
419 | { NET_NETROM_TRANSPORT_REQUESTED_WINDOW_SIZE, "transport_requested_window_size" }, | ||
420 | { NET_NETROM_TRANSPORT_NO_ACTIVITY_TIMEOUT, "transport_no_activity_timeout" }, | ||
421 | { NET_NETROM_ROUTING_CONTROL, "routing_control" }, | ||
422 | { NET_NETROM_LINK_FAILS_COUNT, "link_fails_count" }, | ||
423 | { NET_NETROM_RESET, "reset" }, | ||
424 | {} | ||
425 | }; | ||
426 | |||
427 | static const struct trans_ctl_table trans_net_ax25_param_table[] = { | ||
428 | { NET_AX25_IP_DEFAULT_MODE, "ip_default_mode" }, | ||
429 | { NET_AX25_DEFAULT_MODE, "ax25_default_mode" }, | ||
430 | { NET_AX25_BACKOFF_TYPE, "backoff_type" }, | ||
431 | { NET_AX25_CONNECT_MODE, "connect_mode" }, | ||
432 | { NET_AX25_STANDARD_WINDOW, "standard_window_size" }, | ||
433 | { NET_AX25_EXTENDED_WINDOW, "extended_window_size" }, | ||
434 | { NET_AX25_T1_TIMEOUT, "t1_timeout" }, | ||
435 | { NET_AX25_T2_TIMEOUT, "t2_timeout" }, | ||
436 | { NET_AX25_T3_TIMEOUT, "t3_timeout" }, | ||
437 | { NET_AX25_IDLE_TIMEOUT, "idle_timeout" }, | ||
438 | { NET_AX25_N2, "maximum_retry_count" }, | ||
439 | { NET_AX25_PACLEN, "maximum_packet_length" }, | ||
440 | { NET_AX25_PROTOCOL, "protocol" }, | ||
441 | { NET_AX25_DAMA_SLAVE_TIMEOUT, "dama_slave_timeout" }, | ||
442 | {} | ||
443 | }; | ||
444 | |||
445 | static const struct trans_ctl_table trans_net_ax25_table[] = { | ||
446 | { 0, NULL, trans_net_ax25_param_table }, | ||
447 | {} | ||
448 | }; | ||
449 | |||
450 | static const struct trans_ctl_table trans_net_bridge_table[] = { | ||
451 | { NET_BRIDGE_NF_CALL_ARPTABLES, "bridge-nf-call-arptables" }, | ||
452 | { NET_BRIDGE_NF_CALL_IPTABLES, "bridge-nf-call-iptables" }, | ||
453 | { NET_BRIDGE_NF_CALL_IP6TABLES, "bridge-nf-call-ip6tables" }, | ||
454 | { NET_BRIDGE_NF_FILTER_VLAN_TAGGED, "bridge-nf-filter-vlan-tagged" }, | ||
455 | { NET_BRIDGE_NF_FILTER_PPPOE_TAGGED, "bridge-nf-filter-pppoe-tagged" }, | ||
456 | {} | ||
457 | }; | ||
458 | |||
459 | static const struct trans_ctl_table trans_net_rose_table[] = { | ||
460 | { NET_ROSE_RESTART_REQUEST_TIMEOUT, "restart_request_timeout" }, | ||
461 | { NET_ROSE_CALL_REQUEST_TIMEOUT, "call_request_timeout" }, | ||
462 | { NET_ROSE_RESET_REQUEST_TIMEOUT, "reset_request_timeout" }, | ||
463 | { NET_ROSE_CLEAR_REQUEST_TIMEOUT, "clear_request_timeout" }, | ||
464 | { NET_ROSE_ACK_HOLD_BACK_TIMEOUT, "acknowledge_hold_back_timeout" }, | ||
465 | { NET_ROSE_ROUTING_CONTROL, "routing_control" }, | ||
466 | { NET_ROSE_LINK_FAIL_TIMEOUT, "link_fail_timeout" }, | ||
467 | { NET_ROSE_MAX_VCS, "maximum_virtual_circuits" }, | ||
468 | { NET_ROSE_WINDOW_SIZE, "window_size" }, | ||
469 | { NET_ROSE_NO_ACTIVITY_TIMEOUT, "no_activity_timeout" }, | ||
470 | {} | ||
471 | }; | ||
472 | |||
473 | static const struct trans_ctl_table trans_net_ipv6_conf_var_table[] = { | ||
474 | { NET_IPV6_FORWARDING, "forwarding" }, | ||
475 | { NET_IPV6_HOP_LIMIT, "hop_limit" }, | ||
476 | { NET_IPV6_MTU, "mtu" }, | ||
477 | { NET_IPV6_ACCEPT_RA, "accept_ra" }, | ||
478 | { NET_IPV6_ACCEPT_REDIRECTS, "accept_redirects" }, | ||
479 | { NET_IPV6_AUTOCONF, "autoconf" }, | ||
480 | { NET_IPV6_DAD_TRANSMITS, "dad_transmits" }, | ||
481 | { NET_IPV6_RTR_SOLICITS, "router_solicitations" }, | ||
482 | { NET_IPV6_RTR_SOLICIT_INTERVAL, "router_solicitation_interval" }, | ||
483 | { NET_IPV6_RTR_SOLICIT_DELAY, "router_solicitation_delay" }, | ||
484 | { NET_IPV6_USE_TEMPADDR, "use_tempaddr" }, | ||
485 | { NET_IPV6_TEMP_VALID_LFT, "temp_valid_lft" }, | ||
486 | { NET_IPV6_TEMP_PREFERED_LFT, "temp_prefered_lft" }, | ||
487 | { NET_IPV6_REGEN_MAX_RETRY, "regen_max_retry" }, | ||
488 | { NET_IPV6_MAX_DESYNC_FACTOR, "max_desync_factor" }, | ||
489 | { NET_IPV6_MAX_ADDRESSES, "max_addresses" }, | ||
490 | { NET_IPV6_FORCE_MLD_VERSION, "force_mld_version" }, | ||
491 | { NET_IPV6_ACCEPT_RA_DEFRTR, "accept_ra_defrtr" }, | ||
492 | { NET_IPV6_ACCEPT_RA_PINFO, "accept_ra_pinfo" }, | ||
493 | { NET_IPV6_ACCEPT_RA_RTR_PREF, "accept_ra_rtr_pref" }, | ||
494 | { NET_IPV6_RTR_PROBE_INTERVAL, "router_probe_interval" }, | ||
495 | { NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN, "accept_ra_rt_info_max_plen" }, | ||
496 | { NET_IPV6_PROXY_NDP, "proxy_ndp" }, | ||
497 | { NET_IPV6_ACCEPT_SOURCE_ROUTE, "accept_source_route" }, | ||
498 | {} | ||
499 | }; | ||
500 | |||
501 | static const struct trans_ctl_table trans_net_ipv6_conf_table[] = { | ||
502 | { NET_PROTO_CONF_ALL, "all", trans_net_ipv6_conf_var_table }, | ||
503 | { NET_PROTO_CONF_DEFAULT, "default", trans_net_ipv6_conf_var_table }, | ||
504 | { 0, NULL, trans_net_ipv6_conf_var_table }, | ||
505 | {} | ||
506 | }; | ||
507 | |||
508 | static const struct trans_ctl_table trans_net_ipv6_route_table[] = { | ||
509 | { NET_IPV6_ROUTE_FLUSH, "flush" }, | ||
510 | { NET_IPV6_ROUTE_GC_THRESH, "gc_thresh" }, | ||
511 | { NET_IPV6_ROUTE_MAX_SIZE, "max_size" }, | ||
512 | { NET_IPV6_ROUTE_GC_MIN_INTERVAL, "gc_min_interval" }, | ||
513 | { NET_IPV6_ROUTE_GC_TIMEOUT, "gc_timeout" }, | ||
514 | { NET_IPV6_ROUTE_GC_INTERVAL, "gc_interval" }, | ||
515 | { NET_IPV6_ROUTE_GC_ELASTICITY, "gc_elasticity" }, | ||
516 | { NET_IPV6_ROUTE_MTU_EXPIRES, "mtu_expires" }, | ||
517 | { NET_IPV6_ROUTE_MIN_ADVMSS, "min_adv_mss" }, | ||
518 | { NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS, "gc_min_interval_ms" }, | ||
519 | {} | ||
520 | }; | ||
521 | |||
522 | static const struct trans_ctl_table trans_net_ipv6_icmp_table[] = { | ||
523 | { NET_IPV6_ICMP_RATELIMIT, "ratelimit" }, | ||
524 | {} | ||
525 | }; | ||
526 | |||
527 | static const struct trans_ctl_table trans_net_ipv6_table[] = { | ||
528 | { NET_IPV6_CONF, "conf", trans_net_ipv6_conf_table }, | ||
529 | { NET_IPV6_NEIGH, "neigh", trans_net_neigh_table }, | ||
530 | { NET_IPV6_ROUTE, "route", trans_net_ipv6_route_table }, | ||
531 | { NET_IPV6_ICMP, "icmp", trans_net_ipv6_icmp_table }, | ||
532 | { NET_IPV6_BINDV6ONLY, "bindv6only" }, | ||
533 | { NET_IPV6_IP6FRAG_HIGH_THRESH, "ip6frag_high_thresh" }, | ||
534 | { NET_IPV6_IP6FRAG_LOW_THRESH, "ip6frag_low_thresh" }, | ||
535 | { NET_IPV6_IP6FRAG_TIME, "ip6frag_time" }, | ||
536 | { NET_IPV6_IP6FRAG_SECRET_INTERVAL, "ip6frag_secret_interval" }, | ||
537 | { NET_IPV6_MLD_MAX_MSF, "mld_max_msf" }, | ||
538 | { 2088 /* IPQ_QMAX */, "ip6_queue_maxlen" }, | ||
539 | {} | ||
540 | }; | ||
541 | |||
542 | static const struct trans_ctl_table trans_net_x25_table[] = { | ||
543 | { NET_X25_RESTART_REQUEST_TIMEOUT, "restart_request_timeout" }, | ||
544 | { NET_X25_CALL_REQUEST_TIMEOUT, "call_request_timeout" }, | ||
545 | { NET_X25_RESET_REQUEST_TIMEOUT, "reset_request_timeout" }, | ||
546 | { NET_X25_CLEAR_REQUEST_TIMEOUT, "clear_request_timeout" }, | ||
547 | { NET_X25_ACK_HOLD_BACK_TIMEOUT, "acknowledgement_hold_back_timeout" }, | ||
548 | { NET_X25_FORWARD, "x25_forward" }, | ||
549 | {} | ||
550 | }; | ||
551 | |||
552 | static const struct trans_ctl_table trans_net_tr_table[] = { | ||
553 | { NET_TR_RIF_TIMEOUT, "rif_timeout" }, | ||
554 | {} | ||
555 | }; | ||
556 | |||
557 | |||
558 | static const struct trans_ctl_table trans_net_decnet_conf_vars[] = { | ||
559 | { NET_DECNET_CONF_DEV_FORWARDING, "forwarding" }, | ||
560 | { NET_DECNET_CONF_DEV_PRIORITY, "priority" }, | ||
561 | { NET_DECNET_CONF_DEV_T2, "t2" }, | ||
562 | { NET_DECNET_CONF_DEV_T3, "t3" }, | ||
563 | {} | ||
564 | }; | ||
565 | |||
566 | static const struct trans_ctl_table trans_net_decnet_conf[] = { | ||
567 | { 0, NULL, trans_net_decnet_conf_vars }, | ||
568 | {} | ||
569 | }; | ||
570 | |||
571 | static const struct trans_ctl_table trans_net_decnet_table[] = { | ||
572 | { NET_DECNET_CONF, "conf", trans_net_decnet_conf }, | ||
573 | { NET_DECNET_NODE_ADDRESS, "node_address" }, | ||
574 | { NET_DECNET_NODE_NAME, "node_name" }, | ||
575 | { NET_DECNET_DEFAULT_DEVICE, "default_device" }, | ||
576 | { NET_DECNET_TIME_WAIT, "time_wait" }, | ||
577 | { NET_DECNET_DN_COUNT, "dn_count" }, | ||
578 | { NET_DECNET_DI_COUNT, "di_count" }, | ||
579 | { NET_DECNET_DR_COUNT, "dr_count" }, | ||
580 | { NET_DECNET_DST_GC_INTERVAL, "dst_gc_interval" }, | ||
581 | { NET_DECNET_NO_FC_MAX_CWND, "no_fc_max_cwnd" }, | ||
582 | { NET_DECNET_MEM, "decnet_mem" }, | ||
583 | { NET_DECNET_RMEM, "decnet_rmem" }, | ||
584 | { NET_DECNET_WMEM, "decnet_wmem" }, | ||
585 | { NET_DECNET_DEBUG_LEVEL, "debug" }, | ||
586 | {} | ||
587 | }; | ||
588 | |||
589 | static const struct trans_ctl_table trans_net_sctp_table[] = { | ||
590 | { NET_SCTP_RTO_INITIAL, "rto_initial" }, | ||
591 | { NET_SCTP_RTO_MIN, "rto_min" }, | ||
592 | { NET_SCTP_RTO_MAX, "rto_max" }, | ||
593 | { NET_SCTP_RTO_ALPHA, "rto_alpha_exp_divisor" }, | ||
594 | { NET_SCTP_RTO_BETA, "rto_beta_exp_divisor" }, | ||
595 | { NET_SCTP_VALID_COOKIE_LIFE, "valid_cookie_life" }, | ||
596 | { NET_SCTP_ASSOCIATION_MAX_RETRANS, "association_max_retrans" }, | ||
597 | { NET_SCTP_PATH_MAX_RETRANS, "path_max_retrans" }, | ||
598 | { NET_SCTP_MAX_INIT_RETRANSMITS, "max_init_retransmits" }, | ||
599 | { NET_SCTP_HB_INTERVAL, "hb_interval" }, | ||
600 | { NET_SCTP_PRESERVE_ENABLE, "cookie_preserve_enable" }, | ||
601 | { NET_SCTP_MAX_BURST, "max_burst" }, | ||
602 | { NET_SCTP_ADDIP_ENABLE, "addip_enable" }, | ||
603 | { NET_SCTP_PRSCTP_ENABLE, "prsctp_enable" }, | ||
604 | { NET_SCTP_SNDBUF_POLICY, "sndbuf_policy" }, | ||
605 | { NET_SCTP_SACK_TIMEOUT, "sack_timeout" }, | ||
606 | { NET_SCTP_RCVBUF_POLICY, "rcvbuf_policy" }, | ||
607 | {} | ||
608 | }; | ||
609 | |||
610 | static const struct trans_ctl_table trans_net_llc_llc2_timeout_table[] = { | ||
611 | { NET_LLC2_ACK_TIMEOUT, "ack" }, | ||
612 | { NET_LLC2_P_TIMEOUT, "p" }, | ||
613 | { NET_LLC2_REJ_TIMEOUT, "rej" }, | ||
614 | { NET_LLC2_BUSY_TIMEOUT, "busy" }, | ||
615 | {} | ||
616 | }; | ||
617 | |||
618 | static const struct trans_ctl_table trans_net_llc_station_table[] = { | ||
619 | { NET_LLC_STATION_ACK_TIMEOUT, "ack_timeout" }, | ||
620 | {} | ||
621 | }; | ||
622 | |||
623 | static const struct trans_ctl_table trans_net_llc_llc2_table[] = { | ||
624 | { NET_LLC2, "timeout", trans_net_llc_llc2_timeout_table }, | ||
625 | {} | ||
626 | }; | ||
627 | |||
628 | static const struct trans_ctl_table trans_net_llc_table[] = { | ||
629 | { NET_LLC2, "llc2", trans_net_llc_llc2_table }, | ||
630 | { NET_LLC_STATION, "station", trans_net_llc_station_table }, | ||
631 | {} | ||
632 | }; | ||
633 | |||
634 | static const struct trans_ctl_table trans_net_netfilter_table[] = { | ||
635 | { NET_NF_CONNTRACK_MAX, "nf_conntrack_max" }, | ||
636 | { NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT, "nf_conntrack_tcp_timeout_syn_sent" }, | ||
637 | { NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV, "nf_conntrack_tcp_timeout_syn_recv" }, | ||
638 | { NET_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED, "nf_conntrack_tcp_timeout_established" }, | ||
639 | { NET_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT, "nf_conntrack_tcp_timeout_fin_wait" }, | ||
640 | { NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT, "nf_conntrack_tcp_timeout_close_wait" }, | ||
641 | { NET_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK, "nf_conntrack_tcp_timeout_last_ack" }, | ||
642 | { NET_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT, "nf_conntrack_tcp_timeout_time_wait" }, | ||
643 | { NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE, "nf_conntrack_tcp_timeout_close" }, | ||
644 | { NET_NF_CONNTRACK_UDP_TIMEOUT, "nf_conntrack_udp_timeout" }, | ||
645 | { NET_NF_CONNTRACK_UDP_TIMEOUT_STREAM, "nf_conntrack_udp_timeout_stream" }, | ||
646 | { NET_NF_CONNTRACK_ICMP_TIMEOUT, "nf_conntrack_icmp_timeout" }, | ||
647 | { NET_NF_CONNTRACK_GENERIC_TIMEOUT, "nf_conntrack_generic_timeout" }, | ||
648 | { NET_NF_CONNTRACK_BUCKETS, "nf_conntrack_buckets" }, | ||
649 | { NET_NF_CONNTRACK_LOG_INVALID, "nf_conntrack_log_invalid" }, | ||
650 | { NET_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS, "nf_conntrack_tcp_timeout_max_retrans" }, | ||
651 | { NET_NF_CONNTRACK_TCP_LOOSE, "nf_conntrack_tcp_loose" }, | ||
652 | { NET_NF_CONNTRACK_TCP_BE_LIBERAL, "nf_conntrack_tcp_be_liberal" }, | ||
653 | { NET_NF_CONNTRACK_TCP_MAX_RETRANS, "nf_conntrack_tcp_max_retrans" }, | ||
654 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED, "nf_conntrack_sctp_timeout_closed" }, | ||
655 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT, "nf_conntrack_sctp_timeout_cookie_wait" }, | ||
656 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED, "nf_conntrack_sctp_timeout_cookie_echoed" }, | ||
657 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED, "nf_conntrack_sctp_timeout_established" }, | ||
658 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT, "nf_conntrack_sctp_timeout_shutdown_sent" }, | ||
659 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD, "nf_conntrack_sctp_timeout_shutdown_recd" }, | ||
660 | { NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT, "nf_conntrack_sctp_timeout_shutdown_ack_sent" }, | ||
661 | { NET_NF_CONNTRACK_COUNT, "nf_conntrack_count" }, | ||
662 | { NET_NF_CONNTRACK_ICMPV6_TIMEOUT, "nf_conntrack_icmpv6_timeout" }, | ||
663 | { NET_NF_CONNTRACK_FRAG6_TIMEOUT, "nf_conntrack_frag6_timeout" }, | ||
664 | { NET_NF_CONNTRACK_FRAG6_LOW_THRESH, "nf_conntrack_frag6_low_thresh" }, | ||
665 | { NET_NF_CONNTRACK_FRAG6_HIGH_THRESH, "nf_conntrack_frag6_high_thresh" }, | ||
666 | { NET_NF_CONNTRACK_CHECKSUM, "nf_conntrack_checksum" }, | ||
667 | |||
668 | {} | ||
669 | }; | ||
670 | |||
671 | static const struct trans_ctl_table trans_net_dccp_table[] = { | ||
672 | { NET_DCCP_DEFAULT, "default" }, | ||
673 | {} | ||
674 | }; | ||
675 | |||
676 | static const struct trans_ctl_table trans_net_irda_table[] = { | ||
677 | { NET_IRDA_DISCOVERY, "discovery" }, | ||
678 | { NET_IRDA_DEVNAME, "devname" }, | ||
679 | { NET_IRDA_DEBUG, "debug" }, | ||
680 | { NET_IRDA_FAST_POLL, "fast_poll_increase" }, | ||
681 | { NET_IRDA_DISCOVERY_SLOTS, "discovery_slots" }, | ||
682 | { NET_IRDA_DISCOVERY_TIMEOUT, "discovery_timeout" }, | ||
683 | { NET_IRDA_SLOT_TIMEOUT, "slot_timeout" }, | ||
684 | { NET_IRDA_MAX_BAUD_RATE, "max_baud_rate" }, | ||
685 | { NET_IRDA_MIN_TX_TURN_TIME, "min_tx_turn_time" }, | ||
686 | { NET_IRDA_MAX_TX_DATA_SIZE, "max_tx_data_size" }, | ||
687 | { NET_IRDA_MAX_TX_WINDOW, "max_tx_window" }, | ||
688 | { NET_IRDA_MAX_NOREPLY_TIME, "max_noreply_time" }, | ||
689 | { NET_IRDA_WARN_NOREPLY_TIME, "warn_noreply_time" }, | ||
690 | { NET_IRDA_LAP_KEEPALIVE_TIME, "lap_keepalive_time" }, | ||
691 | {} | ||
692 | }; | ||
693 | |||
694 | static const struct trans_ctl_table trans_net_table[] = { | ||
695 | { NET_CORE, "core", trans_net_core_table }, | ||
696 | /* NET_ETHER not used */ | ||
697 | /* NET_802 not used */ | ||
698 | { NET_UNIX, "unix", trans_net_unix_table }, | ||
699 | { NET_IPV4, "ipv4", trans_net_ipv4_table }, | ||
700 | { NET_IPX, "ipx", trans_net_ipx_table }, | ||
701 | { NET_ATALK, "appletalk", trans_net_atalk_table }, | ||
702 | { NET_NETROM, "netrom", trans_net_netrom_table }, | ||
703 | { NET_AX25, "ax25", trans_net_ax25_table }, | ||
704 | { NET_BRIDGE, "bridge", trans_net_bridge_table }, | ||
705 | { NET_ROSE, "rose", trans_net_rose_table }, | ||
706 | { NET_IPV6, "ipv6", trans_net_ipv6_table }, | ||
707 | { NET_X25, "x25", trans_net_x25_table }, | ||
708 | { NET_TR, "token-ring", trans_net_tr_table }, | ||
709 | { NET_DECNET, "decnet", trans_net_decnet_table }, | ||
710 | /* NET_ECONET not used */ | ||
711 | { NET_SCTP, "sctp", trans_net_sctp_table }, | ||
712 | { NET_LLC, "llc", trans_net_llc_table }, | ||
713 | { NET_NETFILTER, "netfilter", trans_net_netfilter_table }, | ||
714 | { NET_DCCP, "dccp", trans_net_dccp_table }, | ||
715 | { NET_IRDA, "irda", trans_net_irda_table }, | ||
716 | { 2089, "nf_conntrack_max" }, | ||
717 | {} | ||
718 | }; | ||
719 | |||
720 | static const struct trans_ctl_table trans_fs_quota_table[] = { | ||
721 | { FS_DQ_LOOKUPS, "lookups" }, | ||
722 | { FS_DQ_DROPS, "drops" }, | ||
723 | { FS_DQ_READS, "reads" }, | ||
724 | { FS_DQ_WRITES, "writes" }, | ||
725 | { FS_DQ_CACHE_HITS, "cache_hits" }, | ||
726 | { FS_DQ_ALLOCATED, "allocated_dquots" }, | ||
727 | { FS_DQ_FREE, "free_dquots" }, | ||
728 | { FS_DQ_SYNCS, "syncs" }, | ||
729 | { FS_DQ_WARNINGS, "warnings" }, | ||
730 | {} | ||
731 | }; | ||
732 | |||
733 | static const struct trans_ctl_table trans_fs_xfs_table[] = { | ||
734 | { XFS_SGID_INHERIT, "irix_sgid_inherit" }, | ||
735 | { XFS_SYMLINK_MODE, "irix_symlink_mode" }, | ||
736 | { XFS_PANIC_MASK, "panic_mask" }, | ||
737 | |||
738 | { XFS_ERRLEVEL, "error_level" }, | ||
739 | { XFS_SYNCD_TIMER, "xfssyncd_centisecs" }, | ||
740 | { XFS_INHERIT_SYNC, "inherit_sync" }, | ||
741 | { XFS_INHERIT_NODUMP, "inherit_nodump" }, | ||
742 | { XFS_INHERIT_NOATIME, "inherit_noatime" }, | ||
743 | { XFS_BUF_TIMER, "xfsbufd_centisecs" }, | ||
744 | { XFS_BUF_AGE, "age_buffer_centisecs" }, | ||
745 | { XFS_INHERIT_NOSYM, "inherit_nosymlinks" }, | ||
746 | { XFS_ROTORSTEP, "rotorstep" }, | ||
747 | { XFS_INHERIT_NODFRG, "inherit_nodefrag" }, | ||
748 | { XFS_FILESTREAM_TIMER, "filestream_centisecs" }, | ||
749 | { XFS_STATS_CLEAR, "stats_clear" }, | ||
750 | {} | ||
751 | }; | ||
752 | |||
753 | static const struct trans_ctl_table trans_fs_ocfs2_nm_table[] = { | ||
754 | { 1, "hb_ctl_path" }, | ||
755 | {} | ||
756 | }; | ||
757 | |||
758 | static const struct trans_ctl_table trans_fs_ocfs2_table[] = { | ||
759 | { 1, "nm", trans_fs_ocfs2_nm_table }, | ||
760 | {} | ||
761 | }; | ||
762 | |||
763 | static const struct trans_ctl_table trans_inotify_table[] = { | ||
764 | { INOTIFY_MAX_USER_INSTANCES, "max_user_instances" }, | ||
765 | { INOTIFY_MAX_USER_WATCHES, "max_user_watches" }, | ||
766 | { INOTIFY_MAX_QUEUED_EVENTS, "max_queued_events" }, | ||
767 | {} | ||
768 | }; | ||
769 | |||
770 | static const struct trans_ctl_table trans_fs_table[] = { | ||
771 | { FS_NRINODE, "inode-nr" }, | ||
772 | { FS_STATINODE, "inode-state" }, | ||
773 | /* FS_MAXINODE unused */ | ||
774 | /* FS_NRDQUOT unused */ | ||
775 | /* FS_MAXDQUOT unused */ | ||
776 | { FS_NRFILE, "file-nr" }, | ||
777 | { FS_MAXFILE, "file-max" }, | ||
778 | { FS_DENTRY, "dentry-state" }, | ||
779 | /* FS_NRSUPER unused */ | ||
780 | /* FS_MAXUPSER unused */ | ||
781 | { FS_OVERFLOWUID, "overflowuid" }, | ||
782 | { FS_OVERFLOWGID, "overflowgid" }, | ||
783 | { FS_LEASES, "leases-enable" }, | ||
784 | { FS_DIR_NOTIFY, "dir-notify-enable" }, | ||
785 | { FS_LEASE_TIME, "lease-break-time" }, | ||
786 | { FS_DQSTATS, "quota", trans_fs_quota_table }, | ||
787 | { FS_XFS, "xfs", trans_fs_xfs_table }, | ||
788 | { FS_AIO_NR, "aio-nr" }, | ||
789 | { FS_AIO_MAX_NR, "aio-max-nr" }, | ||
790 | { FS_INOTIFY, "inotify", trans_inotify_table }, | ||
791 | { FS_OCFS2, "ocfs2", trans_fs_ocfs2_table }, | ||
792 | { KERN_SETUID_DUMPABLE, "suid_dumpable" }, | ||
793 | {} | ||
794 | }; | ||
795 | |||
796 | static const struct trans_ctl_table trans_debug_table[] = { | ||
797 | {} | ||
798 | }; | ||
799 | |||
800 | static const struct trans_ctl_table trans_cdrom_table[] = { | ||
801 | { DEV_CDROM_INFO, "info" }, | ||
802 | { DEV_CDROM_AUTOCLOSE, "autoclose" }, | ||
803 | { DEV_CDROM_AUTOEJECT, "autoeject" }, | ||
804 | { DEV_CDROM_DEBUG, "debug" }, | ||
805 | { DEV_CDROM_LOCK, "lock" }, | ||
806 | { DEV_CDROM_CHECK_MEDIA, "check_media" }, | ||
807 | {} | ||
808 | }; | ||
809 | |||
810 | static const struct trans_ctl_table trans_ipmi_table[] = { | ||
811 | { DEV_IPMI_POWEROFF_POWERCYCLE, "poweroff_powercycle" }, | ||
812 | {} | ||
813 | }; | ||
814 | |||
815 | static const struct trans_ctl_table trans_mac_hid_files[] = { | ||
816 | /* DEV_MAC_HID_KEYBOARD_SENDS_LINUX_KEYCODES unused */ | ||
817 | /* DEV_MAC_HID_KEYBOARD_LOCK_KEYCODES unused */ | ||
818 | { DEV_MAC_HID_MOUSE_BUTTON_EMULATION, "mouse_button_emulation" }, | ||
819 | { DEV_MAC_HID_MOUSE_BUTTON2_KEYCODE, "mouse_button2_keycode" }, | ||
820 | { DEV_MAC_HID_MOUSE_BUTTON3_KEYCODE, "mouse_button3_keycode" }, | ||
821 | /* DEV_MAC_HID_ADB_MOUSE_SENDS_KEYCODES unused */ | ||
822 | {} | ||
823 | }; | ||
824 | |||
825 | static const struct trans_ctl_table trans_raid_table[] = { | ||
826 | { DEV_RAID_SPEED_LIMIT_MIN, "speed_limit_min" }, | ||
827 | { DEV_RAID_SPEED_LIMIT_MAX, "speed_limit_max" }, | ||
828 | {} | ||
829 | }; | ||
830 | |||
831 | static const struct trans_ctl_table trans_scsi_table[] = { | ||
832 | { DEV_SCSI_LOGGING_LEVEL, "logging_level" }, | ||
833 | {} | ||
834 | }; | ||
835 | |||
836 | static const struct trans_ctl_table trans_parport_default_table[] = { | ||
837 | { DEV_PARPORT_DEFAULT_TIMESLICE, "timeslice" }, | ||
838 | { DEV_PARPORT_DEFAULT_SPINTIME, "spintime" }, | ||
839 | {} | ||
840 | }; | ||
841 | |||
842 | static const struct trans_ctl_table trans_parport_device_table[] = { | ||
843 | { DEV_PARPORT_DEVICE_TIMESLICE, "timeslice" }, | ||
844 | {} | ||
845 | }; | ||
846 | |||
847 | static const struct trans_ctl_table trans_parport_devices_table[] = { | ||
848 | { DEV_PARPORT_DEVICES_ACTIVE, "active" }, | ||
849 | { 0, NULL, trans_parport_device_table }, | ||
850 | {} | ||
851 | }; | ||
852 | |||
853 | static const struct trans_ctl_table trans_parport_parport_table[] = { | ||
854 | { DEV_PARPORT_SPINTIME, "spintime" }, | ||
855 | { DEV_PARPORT_BASE_ADDR, "base-addr" }, | ||
856 | { DEV_PARPORT_IRQ, "irq" }, | ||
857 | { DEV_PARPORT_DMA, "dma" }, | ||
858 | { DEV_PARPORT_MODES, "modes" }, | ||
859 | { DEV_PARPORT_DEVICES, "devices", trans_parport_devices_table }, | ||
860 | { DEV_PARPORT_AUTOPROBE, "autoprobe" }, | ||
861 | { DEV_PARPORT_AUTOPROBE + 1, "autoprobe0" }, | ||
862 | { DEV_PARPORT_AUTOPROBE + 2, "autoprobe1" }, | ||
863 | { DEV_PARPORT_AUTOPROBE + 3, "autoprobe2" }, | ||
864 | { DEV_PARPORT_AUTOPROBE + 4, "autoprobe3" }, | ||
865 | {} | ||
866 | }; | ||
867 | static const struct trans_ctl_table trans_parport_table[] = { | ||
868 | { DEV_PARPORT_DEFAULT, "default", trans_parport_default_table }, | ||
869 | { 0, NULL, trans_parport_parport_table }, | ||
870 | {} | ||
871 | }; | ||
872 | |||
873 | static const struct trans_ctl_table trans_dev_table[] = { | ||
874 | { DEV_CDROM, "cdrom", trans_cdrom_table }, | ||
875 | /* DEV_HWMON unused */ | ||
876 | { DEV_PARPORT, "parport", trans_parport_table }, | ||
877 | { DEV_RAID, "raid", trans_raid_table }, | ||
878 | { DEV_MAC_HID, "mac_hid", trans_mac_hid_files }, | ||
879 | { DEV_SCSI, "scsi", trans_scsi_table }, | ||
880 | { DEV_IPMI, "ipmi", trans_ipmi_table }, | ||
881 | {} | ||
882 | }; | ||
883 | |||
884 | static const struct trans_ctl_table trans_bus_isa_table[] = { | ||
885 | { BUS_ISA_MEM_BASE, "membase" }, | ||
886 | { BUS_ISA_PORT_BASE, "portbase" }, | ||
887 | { BUS_ISA_PORT_SHIFT, "portshift" }, | ||
888 | {} | ||
889 | }; | ||
890 | |||
891 | static const struct trans_ctl_table trans_bus_table[] = { | ||
892 | { CTL_BUS_ISA, "isa", trans_bus_isa_table }, | ||
893 | {} | ||
894 | }; | ||
895 | |||
896 | static const struct trans_ctl_table trans_arlan_conf_table0[] = { | ||
897 | { 1, "spreadingCode" }, | ||
898 | { 2, "channelNumber" }, | ||
899 | { 3, "scramblingDisable" }, | ||
900 | { 4, "txAttenuation" }, | ||
901 | { 5, "systemId" }, | ||
902 | { 6, "maxDatagramSize" }, | ||
903 | { 7, "maxFrameSize" }, | ||
904 | { 8, "maxRetries" }, | ||
905 | { 9, "receiveMode" }, | ||
906 | { 10, "priority" }, | ||
907 | { 11, "rootOrRepeater" }, | ||
908 | { 12, "SID" }, | ||
909 | { 13, "registrationMode" }, | ||
910 | { 14, "registrationFill" }, | ||
911 | { 15, "localTalkAddress" }, | ||
912 | { 16, "codeFormat" }, | ||
913 | { 17, "numChannels" }, | ||
914 | { 18, "channel1" }, | ||
915 | { 19, "channel2" }, | ||
916 | { 20, "channel3" }, | ||
917 | { 21, "channel4" }, | ||
918 | { 22, "txClear" }, | ||
919 | { 23, "txRetries" }, | ||
920 | { 24, "txRouting" }, | ||
921 | { 25, "txScrambled" }, | ||
922 | { 26, "rxParameter" }, | ||
923 | { 27, "txTimeoutMs" }, | ||
924 | { 28, "waitCardTimeout" }, | ||
925 | { 29, "channelSet" }, | ||
926 | { 30, "name" }, | ||
927 | { 31, "waitTime" }, | ||
928 | { 32, "lParameter" }, | ||
929 | { 33, "_15" }, | ||
930 | { 34, "headerSize" }, | ||
931 | { 36, "tx_delay_ms" }, | ||
932 | { 37, "retries" }, | ||
933 | { 38, "ReTransmitPacketMaxSize" }, | ||
934 | { 39, "waitReTransmitPacketMaxSize" }, | ||
935 | { 40, "fastReTransCount" }, | ||
936 | { 41, "driverRetransmissions" }, | ||
937 | { 42, "txAckTimeoutMs" }, | ||
938 | { 43, "registrationInterrupts" }, | ||
939 | { 44, "hardwareType" }, | ||
940 | { 45, "radioType" }, | ||
941 | { 46, "writeEEPROM" }, | ||
942 | { 47, "writeRadioType" }, | ||
943 | { 48, "entry_exit_debug" }, | ||
944 | { 49, "debug" }, | ||
945 | { 50, "in_speed" }, | ||
946 | { 51, "out_speed" }, | ||
947 | { 52, "in_speed10" }, | ||
948 | { 53, "out_speed10" }, | ||
949 | { 54, "in_speed_max" }, | ||
950 | { 55, "out_speed_max" }, | ||
951 | { 56, "measure_rate" }, | ||
952 | { 57, "pre_Command_Wait" }, | ||
953 | { 58, "rx_tweak1" }, | ||
954 | { 59, "rx_tweak2" }, | ||
955 | { 60, "tx_queue_len" }, | ||
956 | |||
957 | { 150, "arlan0-txRing" }, | ||
958 | { 151, "arlan0-rxRing" }, | ||
959 | { 152, "arlan0-18" }, | ||
960 | { 153, "arlan0-ring" }, | ||
961 | { 154, "arlan0-shm-cpy" }, | ||
962 | { 155, "config0" }, | ||
963 | { 156, "reset0" }, | ||
964 | {} | ||
965 | }; | ||
966 | |||
967 | static const struct trans_ctl_table trans_arlan_conf_table1[] = { | ||
968 | { 1, "spreadingCode" }, | ||
969 | { 2, "channelNumber" }, | ||
970 | { 3, "scramblingDisable" }, | ||
971 | { 4, "txAttenuation" }, | ||
972 | { 5, "systemId" }, | ||
973 | { 6, "maxDatagramSize" }, | ||
974 | { 7, "maxFrameSize" }, | ||
975 | { 8, "maxRetries" }, | ||
976 | { 9, "receiveMode" }, | ||
977 | { 10, "priority" }, | ||
978 | { 11, "rootOrRepeater" }, | ||
979 | { 12, "SID" }, | ||
980 | { 13, "registrationMode" }, | ||
981 | { 14, "registrationFill" }, | ||
982 | { 15, "localTalkAddress" }, | ||
983 | { 16, "codeFormat" }, | ||
984 | { 17, "numChannels" }, | ||
985 | { 18, "channel1" }, | ||
986 | { 19, "channel2" }, | ||
987 | { 20, "channel3" }, | ||
988 | { 21, "channel4" }, | ||
989 | { 22, "txClear" }, | ||
990 | { 23, "txRetries" }, | ||
991 | { 24, "txRouting" }, | ||
992 | { 25, "txScrambled" }, | ||
993 | { 26, "rxParameter" }, | ||
994 | { 27, "txTimeoutMs" }, | ||
995 | { 28, "waitCardTimeout" }, | ||
996 | { 29, "channelSet" }, | ||
997 | { 30, "name" }, | ||
998 | { 31, "waitTime" }, | ||
999 | { 32, "lParameter" }, | ||
1000 | { 33, "_15" }, | ||
1001 | { 34, "headerSize" }, | ||
1002 | { 36, "tx_delay_ms" }, | ||
1003 | { 37, "retries" }, | ||
1004 | { 38, "ReTransmitPacketMaxSize" }, | ||
1005 | { 39, "waitReTransmitPacketMaxSize" }, | ||
1006 | { 40, "fastReTransCount" }, | ||
1007 | { 41, "driverRetransmissions" }, | ||
1008 | { 42, "txAckTimeoutMs" }, | ||
1009 | { 43, "registrationInterrupts" }, | ||
1010 | { 44, "hardwareType" }, | ||
1011 | { 45, "radioType" }, | ||
1012 | { 46, "writeEEPROM" }, | ||
1013 | { 47, "writeRadioType" }, | ||
1014 | { 48, "entry_exit_debug" }, | ||
1015 | { 49, "debug" }, | ||
1016 | { 50, "in_speed" }, | ||
1017 | { 51, "out_speed" }, | ||
1018 | { 52, "in_speed10" }, | ||
1019 | { 53, "out_speed10" }, | ||
1020 | { 54, "in_speed_max" }, | ||
1021 | { 55, "out_speed_max" }, | ||
1022 | { 56, "measure_rate" }, | ||
1023 | { 57, "pre_Command_Wait" }, | ||
1024 | { 58, "rx_tweak1" }, | ||
1025 | { 59, "rx_tweak2" }, | ||
1026 | { 60, "tx_queue_len" }, | ||
1027 | |||
1028 | { 150, "arlan1-txRing" }, | ||
1029 | { 151, "arlan1-rxRing" }, | ||
1030 | { 152, "arlan1-18" }, | ||
1031 | { 153, "arlan1-ring" }, | ||
1032 | { 154, "arlan1-shm-cpy" }, | ||
1033 | { 155, "config1" }, | ||
1034 | { 156, "reset1" }, | ||
1035 | {} | ||
1036 | }; | ||
1037 | |||
1038 | static const struct trans_ctl_table trans_arlan_conf_table2[] = { | ||
1039 | { 1, "spreadingCode" }, | ||
1040 | { 2, "channelNumber" }, | ||
1041 | { 3, "scramblingDisable" }, | ||
1042 | { 4, "txAttenuation" }, | ||
1043 | { 5, "systemId" }, | ||
1044 | { 6, "maxDatagramSize" }, | ||
1045 | { 7, "maxFrameSize" }, | ||
1046 | { 8, "maxRetries" }, | ||
1047 | { 9, "receiveMode" }, | ||
1048 | { 10, "priority" }, | ||
1049 | { 11, "rootOrRepeater" }, | ||
1050 | { 12, "SID" }, | ||
1051 | { 13, "registrationMode" }, | ||
1052 | { 14, "registrationFill" }, | ||
1053 | { 15, "localTalkAddress" }, | ||
1054 | { 16, "codeFormat" }, | ||
1055 | { 17, "numChannels" }, | ||
1056 | { 18, "channel1" }, | ||
1057 | { 19, "channel2" }, | ||
1058 | { 20, "channel3" }, | ||
1059 | { 21, "channel4" }, | ||
1060 | { 22, "txClear" }, | ||
1061 | { 23, "txRetries" }, | ||
1062 | { 24, "txRouting" }, | ||
1063 | { 25, "txScrambled" }, | ||
1064 | { 26, "rxParameter" }, | ||
1065 | { 27, "txTimeoutMs" }, | ||
1066 | { 28, "waitCardTimeout" }, | ||
1067 | { 29, "channelSet" }, | ||
1068 | { 30, "name" }, | ||
1069 | { 31, "waitTime" }, | ||
1070 | { 32, "lParameter" }, | ||
1071 | { 33, "_15" }, | ||
1072 | { 34, "headerSize" }, | ||
1073 | { 36, "tx_delay_ms" }, | ||
1074 | { 37, "retries" }, | ||
1075 | { 38, "ReTransmitPacketMaxSize" }, | ||
1076 | { 39, "waitReTransmitPacketMaxSize" }, | ||
1077 | { 40, "fastReTransCount" }, | ||
1078 | { 41, "driverRetransmissions" }, | ||
1079 | { 42, "txAckTimeoutMs" }, | ||
1080 | { 43, "registrationInterrupts" }, | ||
1081 | { 44, "hardwareType" }, | ||
1082 | { 45, "radioType" }, | ||
1083 | { 46, "writeEEPROM" }, | ||
1084 | { 47, "writeRadioType" }, | ||
1085 | { 48, "entry_exit_debug" }, | ||
1086 | { 49, "debug" }, | ||
1087 | { 50, "in_speed" }, | ||
1088 | { 51, "out_speed" }, | ||
1089 | { 52, "in_speed10" }, | ||
1090 | { 53, "out_speed10" }, | ||
1091 | { 54, "in_speed_max" }, | ||
1092 | { 55, "out_speed_max" }, | ||
1093 | { 56, "measure_rate" }, | ||
1094 | { 57, "pre_Command_Wait" }, | ||
1095 | { 58, "rx_tweak1" }, | ||
1096 | { 59, "rx_tweak2" }, | ||
1097 | { 60, "tx_queue_len" }, | ||
1098 | |||
1099 | { 150, "arlan2-txRing" }, | ||
1100 | { 151, "arlan2-rxRing" }, | ||
1101 | { 152, "arlan2-18" }, | ||
1102 | { 153, "arlan2-ring" }, | ||
1103 | { 154, "arlan2-shm-cpy" }, | ||
1104 | { 155, "config2" }, | ||
1105 | { 156, "reset2" }, | ||
1106 | {} | ||
1107 | }; | ||
1108 | |||
1109 | static const struct trans_ctl_table trans_arlan_conf_table3[] = { | ||
1110 | { 1, "spreadingCode" }, | ||
1111 | { 2, "channelNumber" }, | ||
1112 | { 3, "scramblingDisable" }, | ||
1113 | { 4, "txAttenuation" }, | ||
1114 | { 5, "systemId" }, | ||
1115 | { 6, "maxDatagramSize" }, | ||
1116 | { 7, "maxFrameSize" }, | ||
1117 | { 8, "maxRetries" }, | ||
1118 | { 9, "receiveMode" }, | ||
1119 | { 10, "priority" }, | ||
1120 | { 11, "rootOrRepeater" }, | ||
1121 | { 12, "SID" }, | ||
1122 | { 13, "registrationMode" }, | ||
1123 | { 14, "registrationFill" }, | ||
1124 | { 15, "localTalkAddress" }, | ||
1125 | { 16, "codeFormat" }, | ||
1126 | { 17, "numChannels" }, | ||
1127 | { 18, "channel1" }, | ||
1128 | { 19, "channel2" }, | ||
1129 | { 20, "channel3" }, | ||
1130 | { 21, "channel4" }, | ||
1131 | { 22, "txClear" }, | ||
1132 | { 23, "txRetries" }, | ||
1133 | { 24, "txRouting" }, | ||
1134 | { 25, "txScrambled" }, | ||
1135 | { 26, "rxParameter" }, | ||
1136 | { 27, "txTimeoutMs" }, | ||
1137 | { 28, "waitCardTimeout" }, | ||
1138 | { 29, "channelSet" }, | ||
1139 | { 30, "name" }, | ||
1140 | { 31, "waitTime" }, | ||
1141 | { 32, "lParameter" }, | ||
1142 | { 33, "_15" }, | ||
1143 | { 34, "headerSize" }, | ||
1144 | { 36, "tx_delay_ms" }, | ||
1145 | { 37, "retries" }, | ||
1146 | { 38, "ReTransmitPacketMaxSize" }, | ||
1147 | { 39, "waitReTransmitPacketMaxSize" }, | ||
1148 | { 40, "fastReTransCount" }, | ||
1149 | { 41, "driverRetransmissions" }, | ||
1150 | { 42, "txAckTimeoutMs" }, | ||
1151 | { 43, "registrationInterrupts" }, | ||
1152 | { 44, "hardwareType" }, | ||
1153 | { 45, "radioType" }, | ||
1154 | { 46, "writeEEPROM" }, | ||
1155 | { 47, "writeRadioType" }, | ||
1156 | { 48, "entry_exit_debug" }, | ||
1157 | { 49, "debug" }, | ||
1158 | { 50, "in_speed" }, | ||
1159 | { 51, "out_speed" }, | ||
1160 | { 52, "in_speed10" }, | ||
1161 | { 53, "out_speed10" }, | ||
1162 | { 54, "in_speed_max" }, | ||
1163 | { 55, "out_speed_max" }, | ||
1164 | { 56, "measure_rate" }, | ||
1165 | { 57, "pre_Command_Wait" }, | ||
1166 | { 58, "rx_tweak1" }, | ||
1167 | { 59, "rx_tweak2" }, | ||
1168 | { 60, "tx_queue_len" }, | ||
1169 | |||
1170 | { 150, "arlan3-txRing" }, | ||
1171 | { 151, "arlan3-rxRing" }, | ||
1172 | { 152, "arlan3-18" }, | ||
1173 | { 153, "arlan3-ring" }, | ||
1174 | { 154, "arlan3-shm-cpy" }, | ||
1175 | { 155, "config3" }, | ||
1176 | { 156, "reset3" }, | ||
1177 | {} | ||
1178 | }; | ||
1179 | |||
1180 | static const struct trans_ctl_table trans_arlan_table[] = { | ||
1181 | { 1, "arlan0", trans_arlan_conf_table0 }, | ||
1182 | { 2, "arlan1", trans_arlan_conf_table1 }, | ||
1183 | { 3, "arlan2", trans_arlan_conf_table2 }, | ||
1184 | { 4, "arlan3", trans_arlan_conf_table3 }, | ||
1185 | {} | ||
1186 | }; | ||
1187 | |||
1188 | static const struct trans_ctl_table trans_s390dbf_table[] = { | ||
1189 | { 5678 /* CTL_S390DBF_STOPPABLE */, "debug_stoppable" }, | ||
1190 | { 5679 /* CTL_S390DBF_ACTIVE */, "debug_active" }, | ||
1191 | {} | ||
1192 | }; | ||
1193 | |||
1194 | static const struct trans_ctl_table trans_sunrpc_table[] = { | ||
1195 | { CTL_RPCDEBUG, "rpc_debug" }, | ||
1196 | { CTL_NFSDEBUG, "nfs_debug" }, | ||
1197 | { CTL_NFSDDEBUG, "nfsd_debug" }, | ||
1198 | { CTL_NLMDEBUG, "nlm_debug" }, | ||
1199 | { CTL_SLOTTABLE_UDP, "udp_slot_table_entries" }, | ||
1200 | { CTL_SLOTTABLE_TCP, "tcp_slot_table_entries" }, | ||
1201 | { CTL_MIN_RESVPORT, "min_resvport" }, | ||
1202 | { CTL_MAX_RESVPORT, "max_resvport" }, | ||
1203 | {} | ||
1204 | }; | ||
1205 | |||
1206 | static const struct trans_ctl_table trans_pm_table[] = { | ||
1207 | { 1 /* CTL_PM_SUSPEND */, "suspend" }, | ||
1208 | { 2 /* CTL_PM_CMODE */, "cmode" }, | ||
1209 | { 3 /* CTL_PM_P0 */, "p0" }, | ||
1210 | { 4 /* CTL_PM_CM */, "cm" }, | ||
1211 | {} | ||
1212 | }; | ||
1213 | |||
1214 | static const struct trans_ctl_table trans_frv_table[] = { | ||
1215 | { 1, "cache-mode" }, | ||
1216 | { 2, "pin-cxnr" }, | ||
1217 | {} | ||
1218 | }; | ||
1219 | |||
1220 | static const struct trans_ctl_table trans_root_table[] = { | ||
1221 | { CTL_KERN, "kernel", trans_kern_table }, | ||
1222 | { CTL_VM, "vm", trans_vm_table }, | ||
1223 | { CTL_NET, "net", trans_net_table }, | ||
1224 | /* CTL_PROC not used */ | ||
1225 | { CTL_FS, "fs", trans_fs_table }, | ||
1226 | { CTL_DEBUG, "debug", trans_debug_table }, | ||
1227 | { CTL_DEV, "dev", trans_dev_table }, | ||
1228 | { CTL_BUS, "bus", trans_bus_table }, | ||
1229 | { CTL_ABI, "abi" }, | ||
1230 | /* CTL_CPU not used */ | ||
1231 | { CTL_ARLAN, "arlan", trans_arlan_table }, | ||
1232 | { CTL_S390DBF, "s390dbf", trans_s390dbf_table }, | ||
1233 | { CTL_SUNRPC, "sunrpc", trans_sunrpc_table }, | ||
1234 | { CTL_PM, "pm", trans_pm_table }, | ||
1235 | { CTL_FRV, "frv", trans_frv_table }, | ||
1236 | {} | ||
1237 | }; | ||
1238 | |||
1239 | |||
1240 | |||
1241 | 8 | ||
1242 | static int sysctl_depth(struct ctl_table *table) | 9 | static int sysctl_depth(struct ctl_table *table) |
1243 | { | 10 | { |
@@ -1261,47 +28,6 @@ static struct ctl_table *sysctl_parent(struct ctl_table *table, int n) | |||
1261 | return table; | 28 | return table; |
1262 | } | 29 | } |
1263 | 30 | ||
1264 | static const struct trans_ctl_table *sysctl_binary_lookup(struct ctl_table *table) | ||
1265 | { | ||
1266 | struct ctl_table *test; | ||
1267 | const struct trans_ctl_table *ref; | ||
1268 | int cur_depth; | ||
1269 | |||
1270 | cur_depth = sysctl_depth(table); | ||
1271 | |||
1272 | ref = trans_root_table; | ||
1273 | repeat: | ||
1274 | test = sysctl_parent(table, cur_depth); | ||
1275 | for (; ref->ctl_name || ref->procname || ref->child; ref++) { | ||
1276 | int match = 0; | ||
1277 | |||
1278 | if (cur_depth && !ref->child) | ||
1279 | continue; | ||
1280 | |||
1281 | if (test->procname && ref->procname && | ||
1282 | (strcmp(test->procname, ref->procname) == 0)) | ||
1283 | match++; | ||
1284 | |||
1285 | if (test->ctl_name && ref->ctl_name && | ||
1286 | (test->ctl_name == ref->ctl_name)) | ||
1287 | match++; | ||
1288 | |||
1289 | if (!ref->ctl_name && !ref->procname) | ||
1290 | match++; | ||
1291 | |||
1292 | if (match) { | ||
1293 | if (cur_depth != 0) { | ||
1294 | cur_depth--; | ||
1295 | ref = ref->child; | ||
1296 | goto repeat; | ||
1297 | } | ||
1298 | goto out; | ||
1299 | } | ||
1300 | } | ||
1301 | ref = NULL; | ||
1302 | out: | ||
1303 | return ref; | ||
1304 | } | ||
1305 | 31 | ||
1306 | static void sysctl_print_path(struct ctl_table *table) | 32 | static void sysctl_print_path(struct ctl_table *table) |
1307 | { | 33 | { |
@@ -1315,26 +41,6 @@ static void sysctl_print_path(struct ctl_table *table) | |||
1315 | } | 41 | } |
1316 | } | 42 | } |
1317 | printk(" "); | 43 | printk(" "); |
1318 | if (table->ctl_name) { | ||
1319 | for (i = depth; i >= 0; i--) { | ||
1320 | tmp = sysctl_parent(table, i); | ||
1321 | printk(".%d", tmp->ctl_name); | ||
1322 | } | ||
1323 | } | ||
1324 | } | ||
1325 | |||
1326 | static void sysctl_repair_table(struct ctl_table *table) | ||
1327 | { | ||
1328 | /* Don't complain about the classic default | ||
1329 | * sysctl strategy routine. Maybe later we | ||
1330 | * can get the tables fixed and complain about | ||
1331 | * this. | ||
1332 | */ | ||
1333 | if (table->ctl_name && table->procname && | ||
1334 | (table->proc_handler == proc_dointvec) && | ||
1335 | (!table->strategy)) { | ||
1336 | table->strategy = sysctl_data; | ||
1337 | } | ||
1338 | } | 44 | } |
1339 | 45 | ||
1340 | static struct ctl_table *sysctl_check_lookup(struct nsproxy *namespaces, | 46 | static struct ctl_table *sysctl_check_lookup(struct nsproxy *namespaces, |
@@ -1352,7 +58,7 @@ static struct ctl_table *sysctl_check_lookup(struct nsproxy *namespaces, | |||
1352 | ref = head->ctl_table; | 58 | ref = head->ctl_table; |
1353 | repeat: | 59 | repeat: |
1354 | test = sysctl_parent(table, cur_depth); | 60 | test = sysctl_parent(table, cur_depth); |
1355 | for (; ref->ctl_name || ref->procname; ref++) { | 61 | for (; ref->procname; ref++) { |
1356 | int match = 0; | 62 | int match = 0; |
1357 | if (cur_depth && !ref->child) | 63 | if (cur_depth && !ref->child) |
1358 | continue; | 64 | continue; |
@@ -1361,10 +67,6 @@ repeat: | |||
1361 | (strcmp(test->procname, ref->procname) == 0)) | 67 | (strcmp(test->procname, ref->procname) == 0)) |
1362 | match++; | 68 | match++; |
1363 | 69 | ||
1364 | if (test->ctl_name && ref->ctl_name && | ||
1365 | (test->ctl_name == ref->ctl_name)) | ||
1366 | match++; | ||
1367 | |||
1368 | if (match) { | 70 | if (match) { |
1369 | if (cur_depth != 0) { | 71 | if (cur_depth != 0) { |
1370 | cur_depth--; | 72 | cur_depth--; |
@@ -1392,38 +94,6 @@ static void set_fail(const char **fail, struct ctl_table *table, const char *str | |||
1392 | *fail = str; | 94 | *fail = str; |
1393 | } | 95 | } |
1394 | 96 | ||
1395 | static int sysctl_check_dir(struct nsproxy *namespaces, | ||
1396 | struct ctl_table *table) | ||
1397 | { | ||
1398 | struct ctl_table *ref; | ||
1399 | int error; | ||
1400 | |||
1401 | error = 0; | ||
1402 | ref = sysctl_check_lookup(namespaces, table); | ||
1403 | if (ref) { | ||
1404 | int match = 0; | ||
1405 | if ((!table->procname && !ref->procname) || | ||
1406 | (table->procname && ref->procname && | ||
1407 | (strcmp(table->procname, ref->procname) == 0))) | ||
1408 | match++; | ||
1409 | |||
1410 | if ((!table->ctl_name && !ref->ctl_name) || | ||
1411 | (table->ctl_name && ref->ctl_name && | ||
1412 | (table->ctl_name == ref->ctl_name))) | ||
1413 | match++; | ||
1414 | |||
1415 | if (match != 2) { | ||
1416 | printk(KERN_ERR "%s: failed: ", __func__); | ||
1417 | sysctl_print_path(table); | ||
1418 | printk(" ref: "); | ||
1419 | sysctl_print_path(ref); | ||
1420 | printk("\n"); | ||
1421 | error = -EINVAL; | ||
1422 | } | ||
1423 | } | ||
1424 | return error; | ||
1425 | } | ||
1426 | |||
1427 | static void sysctl_check_leaf(struct nsproxy *namespaces, | 97 | static void sysctl_check_leaf(struct nsproxy *namespaces, |
1428 | struct ctl_table *table, const char **fail) | 98 | struct ctl_table *table, const char **fail) |
1429 | { | 99 | { |
@@ -1434,37 +104,15 @@ static void sysctl_check_leaf(struct nsproxy *namespaces, | |||
1434 | set_fail(fail, table, "Sysctl already exists"); | 104 | set_fail(fail, table, "Sysctl already exists"); |
1435 | } | 105 | } |
1436 | 106 | ||
1437 | static void sysctl_check_bin_path(struct ctl_table *table, const char **fail) | ||
1438 | { | ||
1439 | const struct trans_ctl_table *ref; | ||
1440 | |||
1441 | ref = sysctl_binary_lookup(table); | ||
1442 | if (table->ctl_name && !ref) | ||
1443 | set_fail(fail, table, "Unknown sysctl binary path"); | ||
1444 | if (ref) { | ||
1445 | if (ref->procname && | ||
1446 | (!table->procname || | ||
1447 | (strcmp(table->procname, ref->procname) != 0))) | ||
1448 | set_fail(fail, table, "procname does not match binary path procname"); | ||
1449 | |||
1450 | if (ref->ctl_name && table->ctl_name && | ||
1451 | (table->ctl_name != ref->ctl_name)) | ||
1452 | set_fail(fail, table, "ctl_name does not match binary path ctl_name"); | ||
1453 | } | ||
1454 | } | ||
1455 | |||
1456 | int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) | 107 | int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) |
1457 | { | 108 | { |
1458 | int error = 0; | 109 | int error = 0; |
1459 | for (; table->ctl_name || table->procname; table++) { | 110 | for (; table->procname; table++) { |
1460 | const char *fail = NULL; | 111 | const char *fail = NULL; |
1461 | 112 | ||
1462 | sysctl_repair_table(table); | ||
1463 | if (table->parent) { | 113 | if (table->parent) { |
1464 | if (table->procname && !table->parent->procname) | 114 | if (table->procname && !table->parent->procname) |
1465 | set_fail(&fail, table, "Parent without procname"); | 115 | set_fail(&fail, table, "Parent without procname"); |
1466 | if (table->ctl_name && !table->parent->ctl_name) | ||
1467 | set_fail(&fail, table, "Parent without ctl_name"); | ||
1468 | } | 116 | } |
1469 | if (!table->procname) | 117 | if (!table->procname) |
1470 | set_fail(&fail, table, "No procname"); | 118 | set_fail(&fail, table, "No procname"); |
@@ -1477,21 +125,12 @@ int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) | |||
1477 | set_fail(&fail, table, "Writable sysctl directory"); | 125 | set_fail(&fail, table, "Writable sysctl directory"); |
1478 | if (table->proc_handler) | 126 | if (table->proc_handler) |
1479 | set_fail(&fail, table, "Directory with proc_handler"); | 127 | set_fail(&fail, table, "Directory with proc_handler"); |
1480 | if (table->strategy) | ||
1481 | set_fail(&fail, table, "Directory with strategy"); | ||
1482 | if (table->extra1) | 128 | if (table->extra1) |
1483 | set_fail(&fail, table, "Directory with extra1"); | 129 | set_fail(&fail, table, "Directory with extra1"); |
1484 | if (table->extra2) | 130 | if (table->extra2) |
1485 | set_fail(&fail, table, "Directory with extra2"); | 131 | set_fail(&fail, table, "Directory with extra2"); |
1486 | if (sysctl_check_dir(namespaces, table)) | ||
1487 | set_fail(&fail, table, "Inconsistent directory names"); | ||
1488 | } else { | 132 | } else { |
1489 | if ((table->strategy == sysctl_data) || | 133 | if ((table->proc_handler == proc_dostring) || |
1490 | (table->strategy == sysctl_string) || | ||
1491 | (table->strategy == sysctl_intvec) || | ||
1492 | (table->strategy == sysctl_jiffies) || | ||
1493 | (table->strategy == sysctl_ms_jiffies) || | ||
1494 | (table->proc_handler == proc_dostring) || | ||
1495 | (table->proc_handler == proc_dointvec) || | 134 | (table->proc_handler == proc_dointvec) || |
1496 | (table->proc_handler == proc_dointvec_minmax) || | 135 | (table->proc_handler == proc_dointvec_minmax) || |
1497 | (table->proc_handler == proc_dointvec_jiffies) || | 136 | (table->proc_handler == proc_dointvec_jiffies) || |
@@ -1513,14 +152,6 @@ int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) | |||
1513 | set_fail(&fail, table, "No max"); | 152 | set_fail(&fail, table, "No max"); |
1514 | } | 153 | } |
1515 | } | 154 | } |
1516 | #ifdef CONFIG_SYSCTL_SYSCALL | ||
1517 | if (table->ctl_name && !table->strategy) | ||
1518 | set_fail(&fail, table, "Missing strategy"); | ||
1519 | #endif | ||
1520 | #if 0 | ||
1521 | if (!table->ctl_name && table->strategy) | ||
1522 | set_fail(&fail, table, "Strategy without ctl_name"); | ||
1523 | #endif | ||
1524 | #ifdef CONFIG_PROC_SYSCTL | 155 | #ifdef CONFIG_PROC_SYSCTL |
1525 | if (table->procname && !table->proc_handler) | 156 | if (table->procname && !table->proc_handler) |
1526 | set_fail(&fail, table, "No proc_handler"); | 157 | set_fail(&fail, table, "No proc_handler"); |
@@ -1531,7 +162,6 @@ int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) | |||
1531 | #endif | 162 | #endif |
1532 | sysctl_check_leaf(namespaces, table, &fail); | 163 | sysctl_check_leaf(namespaces, table, &fail); |
1533 | } | 164 | } |
1534 | sysctl_check_bin_path(table, &fail); | ||
1535 | if (table->mode > 0777) | 165 | if (table->mode > 0777) |
1536 | set_fail(&fail, table, "bogus .mode"); | 166 | set_fail(&fail, table, "bogus .mode"); |
1537 | if (fail) { | 167 | if (fail) { |
diff --git a/kernel/time.c b/kernel/time.c index 804798005d19..c6324d96009e 100644 --- a/kernel/time.c +++ b/kernel/time.c | |||
@@ -136,7 +136,6 @@ static inline void warp_clock(void) | |||
136 | write_seqlock_irq(&xtime_lock); | 136 | write_seqlock_irq(&xtime_lock); |
137 | wall_to_monotonic.tv_sec -= sys_tz.tz_minuteswest * 60; | 137 | wall_to_monotonic.tv_sec -= sys_tz.tz_minuteswest * 60; |
138 | xtime.tv_sec += sys_tz.tz_minuteswest * 60; | 138 | xtime.tv_sec += sys_tz.tz_minuteswest * 60; |
139 | update_xtime_cache(0); | ||
140 | write_sequnlock_irq(&xtime_lock); | 139 | write_sequnlock_irq(&xtime_lock); |
141 | clock_was_set(); | 140 | clock_was_set(); |
142 | } | 141 | } |
diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index 620b58abdc32..20a8920029ee 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c | |||
@@ -20,6 +20,8 @@ | |||
20 | #include <linux/sysdev.h> | 20 | #include <linux/sysdev.h> |
21 | #include <linux/tick.h> | 21 | #include <linux/tick.h> |
22 | 22 | ||
23 | #include "tick-internal.h" | ||
24 | |||
23 | /* The registered clock event devices */ | 25 | /* The registered clock event devices */ |
24 | static LIST_HEAD(clockevent_devices); | 26 | static LIST_HEAD(clockevent_devices); |
25 | static LIST_HEAD(clockevents_released); | 27 | static LIST_HEAD(clockevents_released); |
@@ -37,10 +39,9 @@ static DEFINE_SPINLOCK(clockevents_lock); | |||
37 | * | 39 | * |
38 | * Math helper, returns latch value converted to nanoseconds (bound checked) | 40 | * Math helper, returns latch value converted to nanoseconds (bound checked) |
39 | */ | 41 | */ |
40 | unsigned long clockevent_delta2ns(unsigned long latch, | 42 | u64 clockevent_delta2ns(unsigned long latch, struct clock_event_device *evt) |
41 | struct clock_event_device *evt) | ||
42 | { | 43 | { |
43 | u64 clc = ((u64) latch << evt->shift); | 44 | u64 clc = (u64) latch << evt->shift; |
44 | 45 | ||
45 | if (unlikely(!evt->mult)) { | 46 | if (unlikely(!evt->mult)) { |
46 | evt->mult = 1; | 47 | evt->mult = 1; |
@@ -50,10 +51,10 @@ unsigned long clockevent_delta2ns(unsigned long latch, | |||
50 | do_div(clc, evt->mult); | 51 | do_div(clc, evt->mult); |
51 | if (clc < 1000) | 52 | if (clc < 1000) |
52 | clc = 1000; | 53 | clc = 1000; |
53 | if (clc > LONG_MAX) | 54 | if (clc > KTIME_MAX) |
54 | clc = LONG_MAX; | 55 | clc = KTIME_MAX; |
55 | 56 | ||
56 | return (unsigned long) clc; | 57 | return clc; |
57 | } | 58 | } |
58 | EXPORT_SYMBOL_GPL(clockevent_delta2ns); | 59 | EXPORT_SYMBOL_GPL(clockevent_delta2ns); |
59 | 60 | ||
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index 5e18c6ab2c6a..e85c23404d34 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
@@ -39,7 +39,7 @@ void timecounter_init(struct timecounter *tc, | |||
39 | tc->cycle_last = cc->read(cc); | 39 | tc->cycle_last = cc->read(cc); |
40 | tc->nsec = start_tstamp; | 40 | tc->nsec = start_tstamp; |
41 | } | 41 | } |
42 | EXPORT_SYMBOL(timecounter_init); | 42 | EXPORT_SYMBOL_GPL(timecounter_init); |
43 | 43 | ||
44 | /** | 44 | /** |
45 | * timecounter_read_delta - get nanoseconds since last call of this function | 45 | * timecounter_read_delta - get nanoseconds since last call of this function |
@@ -83,7 +83,7 @@ u64 timecounter_read(struct timecounter *tc) | |||
83 | 83 | ||
84 | return nsec; | 84 | return nsec; |
85 | } | 85 | } |
86 | EXPORT_SYMBOL(timecounter_read); | 86 | EXPORT_SYMBOL_GPL(timecounter_read); |
87 | 87 | ||
88 | u64 timecounter_cyc2time(struct timecounter *tc, | 88 | u64 timecounter_cyc2time(struct timecounter *tc, |
89 | cycle_t cycle_tstamp) | 89 | cycle_t cycle_tstamp) |
@@ -105,7 +105,60 @@ u64 timecounter_cyc2time(struct timecounter *tc, | |||
105 | 105 | ||
106 | return nsec; | 106 | return nsec; |
107 | } | 107 | } |
108 | EXPORT_SYMBOL(timecounter_cyc2time); | 108 | EXPORT_SYMBOL_GPL(timecounter_cyc2time); |
109 | |||
110 | /** | ||
111 | * clocks_calc_mult_shift - calculate mult/shift factors for scaled math of clocks | ||
112 | * @mult: pointer to mult variable | ||
113 | * @shift: pointer to shift variable | ||
114 | * @from: frequency to convert from | ||
115 | * @to: frequency to convert to | ||
116 | * @minsec: guaranteed runtime conversion range in seconds | ||
117 | * | ||
118 | * The function evaluates the shift/mult pair for the scaled math | ||
119 | * operations of clocksources and clockevents. | ||
120 | * | ||
121 | * @to and @from are frequency values in HZ. For clock sources @to is | ||
122 | * NSEC_PER_SEC == 1GHz and @from is the counter frequency. For clock | ||
123 | * event @to is the counter frequency and @from is NSEC_PER_SEC. | ||
124 | * | ||
125 | * The @minsec conversion range argument controls the time frame in | ||
126 | * seconds which must be covered by the runtime conversion with the | ||
127 | * calculated mult and shift factors. This guarantees that no 64bit | ||
128 | * overflow happens when the input value of the conversion is | ||
129 | * multiplied with the calculated mult factor. Larger ranges may | ||
130 | * reduce the conversion accuracy by chosing smaller mult and shift | ||
131 | * factors. | ||
132 | */ | ||
133 | void | ||
134 | clocks_calc_mult_shift(u32 *mult, u32 *shift, u32 from, u32 to, u32 minsec) | ||
135 | { | ||
136 | u64 tmp; | ||
137 | u32 sft, sftacc= 32; | ||
138 | |||
139 | /* | ||
140 | * Calculate the shift factor which is limiting the conversion | ||
141 | * range: | ||
142 | */ | ||
143 | tmp = ((u64)minsec * from) >> 32; | ||
144 | while (tmp) { | ||
145 | tmp >>=1; | ||
146 | sftacc--; | ||
147 | } | ||
148 | |||
149 | /* | ||
150 | * Find the conversion shift/mult pair which has the best | ||
151 | * accuracy and fits the maxsec conversion range: | ||
152 | */ | ||
153 | for (sft = 32; sft > 0; sft--) { | ||
154 | tmp = (u64) to << sft; | ||
155 | do_div(tmp, from); | ||
156 | if ((tmp >> sftacc) == 0) | ||
157 | break; | ||
158 | } | ||
159 | *mult = tmp; | ||
160 | *shift = sft; | ||
161 | } | ||
109 | 162 | ||
110 | /*[Clocksource internal variables]--------- | 163 | /*[Clocksource internal variables]--------- |
111 | * curr_clocksource: | 164 | * curr_clocksource: |
@@ -413,6 +466,47 @@ void clocksource_touch_watchdog(void) | |||
413 | clocksource_resume_watchdog(); | 466 | clocksource_resume_watchdog(); |
414 | } | 467 | } |
415 | 468 | ||
469 | /** | ||
470 | * clocksource_max_deferment - Returns max time the clocksource can be deferred | ||
471 | * @cs: Pointer to clocksource | ||
472 | * | ||
473 | */ | ||
474 | static u64 clocksource_max_deferment(struct clocksource *cs) | ||
475 | { | ||
476 | u64 max_nsecs, max_cycles; | ||
477 | |||
478 | /* | ||
479 | * Calculate the maximum number of cycles that we can pass to the | ||
480 | * cyc2ns function without overflowing a 64-bit signed result. The | ||
481 | * maximum number of cycles is equal to ULLONG_MAX/cs->mult which | ||
482 | * is equivalent to the below. | ||
483 | * max_cycles < (2^63)/cs->mult | ||
484 | * max_cycles < 2^(log2((2^63)/cs->mult)) | ||
485 | * max_cycles < 2^(log2(2^63) - log2(cs->mult)) | ||
486 | * max_cycles < 2^(63 - log2(cs->mult)) | ||
487 | * max_cycles < 1 << (63 - log2(cs->mult)) | ||
488 | * Please note that we add 1 to the result of the log2 to account for | ||
489 | * any rounding errors, ensure the above inequality is satisfied and | ||
490 | * no overflow will occur. | ||
491 | */ | ||
492 | max_cycles = 1ULL << (63 - (ilog2(cs->mult) + 1)); | ||
493 | |||
494 | /* | ||
495 | * The actual maximum number of cycles we can defer the clocksource is | ||
496 | * determined by the minimum of max_cycles and cs->mask. | ||
497 | */ | ||
498 | max_cycles = min_t(u64, max_cycles, (u64) cs->mask); | ||
499 | max_nsecs = clocksource_cyc2ns(max_cycles, cs->mult, cs->shift); | ||
500 | |||
501 | /* | ||
502 | * To ensure that the clocksource does not wrap whilst we are idle, | ||
503 | * limit the time the clocksource can be deferred by 12.5%. Please | ||
504 | * note a margin of 12.5% is used because this can be computed with | ||
505 | * a shift, versus say 10% which would require division. | ||
506 | */ | ||
507 | return max_nsecs - (max_nsecs >> 5); | ||
508 | } | ||
509 | |||
416 | #ifdef CONFIG_GENERIC_TIME | 510 | #ifdef CONFIG_GENERIC_TIME |
417 | 511 | ||
418 | /** | 512 | /** |
@@ -511,6 +605,9 @@ static void clocksource_enqueue(struct clocksource *cs) | |||
511 | */ | 605 | */ |
512 | int clocksource_register(struct clocksource *cs) | 606 | int clocksource_register(struct clocksource *cs) |
513 | { | 607 | { |
608 | /* calculate max idle time permitted for this clocksource */ | ||
609 | cs->max_idle_ns = clocksource_max_deferment(cs); | ||
610 | |||
514 | mutex_lock(&clocksource_mutex); | 611 | mutex_lock(&clocksource_mutex); |
515 | clocksource_enqueue(cs); | 612 | clocksource_enqueue(cs); |
516 | clocksource_select(); | 613 | clocksource_select(); |
@@ -580,7 +677,7 @@ sysfs_show_current_clocksources(struct sys_device *dev, | |||
580 | * @count: length of buffer | 677 | * @count: length of buffer |
581 | * | 678 | * |
582 | * Takes input from sysfs interface for manually overriding the default | 679 | * Takes input from sysfs interface for manually overriding the default |
583 | * clocksource selction. | 680 | * clocksource selection. |
584 | */ | 681 | */ |
585 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, | 682 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, |
586 | struct sysdev_attribute *attr, | 683 | struct sysdev_attribute *attr, |
diff --git a/kernel/time/tick-oneshot.c b/kernel/time/tick-oneshot.c index a96c0e2b89cf..0a8a213016f0 100644 --- a/kernel/time/tick-oneshot.c +++ b/kernel/time/tick-oneshot.c | |||
@@ -50,9 +50,9 @@ int tick_dev_program_event(struct clock_event_device *dev, ktime_t expires, | |||
50 | dev->min_delta_ns += dev->min_delta_ns >> 1; | 50 | dev->min_delta_ns += dev->min_delta_ns >> 1; |
51 | 51 | ||
52 | printk(KERN_WARNING | 52 | printk(KERN_WARNING |
53 | "CE: %s increasing min_delta_ns to %lu nsec\n", | 53 | "CE: %s increasing min_delta_ns to %llu nsec\n", |
54 | dev->name ? dev->name : "?", | 54 | dev->name ? dev->name : "?", |
55 | dev->min_delta_ns << 1); | 55 | (unsigned long long) dev->min_delta_ns << 1); |
56 | 56 | ||
57 | i = 0; | 57 | i = 0; |
58 | } | 58 | } |
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 89aed5933ed4..f992762d7f51 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c | |||
@@ -134,18 +134,13 @@ __setup("nohz=", setup_tick_nohz); | |||
134 | * value. We do this unconditionally on any cpu, as we don't know whether the | 134 | * value. We do this unconditionally on any cpu, as we don't know whether the |
135 | * cpu, which has the update task assigned is in a long sleep. | 135 | * cpu, which has the update task assigned is in a long sleep. |
136 | */ | 136 | */ |
137 | static void tick_nohz_update_jiffies(void) | 137 | static void tick_nohz_update_jiffies(ktime_t now) |
138 | { | 138 | { |
139 | int cpu = smp_processor_id(); | 139 | int cpu = smp_processor_id(); |
140 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); | 140 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); |
141 | unsigned long flags; | 141 | unsigned long flags; |
142 | ktime_t now; | ||
143 | |||
144 | if (!ts->tick_stopped) | ||
145 | return; | ||
146 | 142 | ||
147 | cpumask_clear_cpu(cpu, nohz_cpu_mask); | 143 | cpumask_clear_cpu(cpu, nohz_cpu_mask); |
148 | now = ktime_get(); | ||
149 | ts->idle_waketime = now; | 144 | ts->idle_waketime = now; |
150 | 145 | ||
151 | local_irq_save(flags); | 146 | local_irq_save(flags); |
@@ -155,20 +150,17 @@ static void tick_nohz_update_jiffies(void) | |||
155 | touch_softlockup_watchdog(); | 150 | touch_softlockup_watchdog(); |
156 | } | 151 | } |
157 | 152 | ||
158 | static void tick_nohz_stop_idle(int cpu) | 153 | static void tick_nohz_stop_idle(int cpu, ktime_t now) |
159 | { | 154 | { |
160 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); | 155 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); |
156 | ktime_t delta; | ||
161 | 157 | ||
162 | if (ts->idle_active) { | 158 | delta = ktime_sub(now, ts->idle_entrytime); |
163 | ktime_t now, delta; | 159 | ts->idle_lastupdate = now; |
164 | now = ktime_get(); | 160 | ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta); |
165 | delta = ktime_sub(now, ts->idle_entrytime); | 161 | ts->idle_active = 0; |
166 | ts->idle_lastupdate = now; | ||
167 | ts->idle_sleeptime = ktime_add(ts->idle_sleeptime, delta); | ||
168 | ts->idle_active = 0; | ||
169 | 162 | ||
170 | sched_clock_idle_wakeup_event(0); | 163 | sched_clock_idle_wakeup_event(0); |
171 | } | ||
172 | } | 164 | } |
173 | 165 | ||
174 | static ktime_t tick_nohz_start_idle(struct tick_sched *ts) | 166 | static ktime_t tick_nohz_start_idle(struct tick_sched *ts) |
@@ -216,6 +208,7 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
216 | struct tick_sched *ts; | 208 | struct tick_sched *ts; |
217 | ktime_t last_update, expires, now; | 209 | ktime_t last_update, expires, now; |
218 | struct clock_event_device *dev = __get_cpu_var(tick_cpu_device).evtdev; | 210 | struct clock_event_device *dev = __get_cpu_var(tick_cpu_device).evtdev; |
211 | u64 time_delta; | ||
219 | int cpu; | 212 | int cpu; |
220 | 213 | ||
221 | local_irq_save(flags); | 214 | local_irq_save(flags); |
@@ -263,7 +256,7 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
263 | 256 | ||
264 | if (ratelimit < 10) { | 257 | if (ratelimit < 10) { |
265 | printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n", | 258 | printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n", |
266 | local_softirq_pending()); | 259 | (unsigned int) local_softirq_pending()); |
267 | ratelimit++; | 260 | ratelimit++; |
268 | } | 261 | } |
269 | goto end; | 262 | goto end; |
@@ -275,14 +268,18 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
275 | seq = read_seqbegin(&xtime_lock); | 268 | seq = read_seqbegin(&xtime_lock); |
276 | last_update = last_jiffies_update; | 269 | last_update = last_jiffies_update; |
277 | last_jiffies = jiffies; | 270 | last_jiffies = jiffies; |
271 | time_delta = timekeeping_max_deferment(); | ||
278 | } while (read_seqretry(&xtime_lock, seq)); | 272 | } while (read_seqretry(&xtime_lock, seq)); |
279 | 273 | ||
280 | /* Get the next timer wheel timer */ | 274 | if (rcu_needs_cpu(cpu) || printk_needs_cpu(cpu) || |
281 | next_jiffies = get_next_timer_interrupt(last_jiffies); | 275 | arch_needs_cpu(cpu)) { |
282 | delta_jiffies = next_jiffies - last_jiffies; | 276 | next_jiffies = last_jiffies + 1; |
283 | |||
284 | if (rcu_needs_cpu(cpu) || printk_needs_cpu(cpu)) | ||
285 | delta_jiffies = 1; | 277 | delta_jiffies = 1; |
278 | } else { | ||
279 | /* Get the next timer wheel timer */ | ||
280 | next_jiffies = get_next_timer_interrupt(last_jiffies); | ||
281 | delta_jiffies = next_jiffies - last_jiffies; | ||
282 | } | ||
286 | /* | 283 | /* |
287 | * Do not stop the tick, if we are only one off | 284 | * Do not stop the tick, if we are only one off |
288 | * or if the cpu is required for rcu | 285 | * or if the cpu is required for rcu |
@@ -294,22 +291,51 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
294 | if ((long)delta_jiffies >= 1) { | 291 | if ((long)delta_jiffies >= 1) { |
295 | 292 | ||
296 | /* | 293 | /* |
297 | * calculate the expiry time for the next timer wheel | ||
298 | * timer | ||
299 | */ | ||
300 | expires = ktime_add_ns(last_update, tick_period.tv64 * | ||
301 | delta_jiffies); | ||
302 | |||
303 | /* | ||
304 | * If this cpu is the one which updates jiffies, then | 294 | * If this cpu is the one which updates jiffies, then |
305 | * give up the assignment and let it be taken by the | 295 | * give up the assignment and let it be taken by the |
306 | * cpu which runs the tick timer next, which might be | 296 | * cpu which runs the tick timer next, which might be |
307 | * this cpu as well. If we don't drop this here the | 297 | * this cpu as well. If we don't drop this here the |
308 | * jiffies might be stale and do_timer() never | 298 | * jiffies might be stale and do_timer() never |
309 | * invoked. | 299 | * invoked. Keep track of the fact that it was the one |
300 | * which had the do_timer() duty last. If this cpu is | ||
301 | * the one which had the do_timer() duty last, we | ||
302 | * limit the sleep time to the timekeeping | ||
303 | * max_deferement value which we retrieved | ||
304 | * above. Otherwise we can sleep as long as we want. | ||
310 | */ | 305 | */ |
311 | if (cpu == tick_do_timer_cpu) | 306 | if (cpu == tick_do_timer_cpu) { |
312 | tick_do_timer_cpu = TICK_DO_TIMER_NONE; | 307 | tick_do_timer_cpu = TICK_DO_TIMER_NONE; |
308 | ts->do_timer_last = 1; | ||
309 | } else if (tick_do_timer_cpu != TICK_DO_TIMER_NONE) { | ||
310 | time_delta = KTIME_MAX; | ||
311 | ts->do_timer_last = 0; | ||
312 | } else if (!ts->do_timer_last) { | ||
313 | time_delta = KTIME_MAX; | ||
314 | } | ||
315 | |||
316 | /* | ||
317 | * calculate the expiry time for the next timer wheel | ||
318 | * timer. delta_jiffies >= NEXT_TIMER_MAX_DELTA signals | ||
319 | * that there is no timer pending or at least extremely | ||
320 | * far into the future (12 days for HZ=1000). In this | ||
321 | * case we set the expiry to the end of time. | ||
322 | */ | ||
323 | if (likely(delta_jiffies < NEXT_TIMER_MAX_DELTA)) { | ||
324 | /* | ||
325 | * Calculate the time delta for the next timer event. | ||
326 | * If the time delta exceeds the maximum time delta | ||
327 | * permitted by the current clocksource then adjust | ||
328 | * the time delta accordingly to ensure the | ||
329 | * clocksource does not wrap. | ||
330 | */ | ||
331 | time_delta = min_t(u64, time_delta, | ||
332 | tick_period.tv64 * delta_jiffies); | ||
333 | } | ||
334 | |||
335 | if (time_delta < KTIME_MAX) | ||
336 | expires = ktime_add_ns(last_update, time_delta); | ||
337 | else | ||
338 | expires.tv64 = KTIME_MAX; | ||
313 | 339 | ||
314 | if (delta_jiffies > 1) | 340 | if (delta_jiffies > 1) |
315 | cpumask_set_cpu(cpu, nohz_cpu_mask); | 341 | cpumask_set_cpu(cpu, nohz_cpu_mask); |
@@ -342,22 +368,19 @@ void tick_nohz_stop_sched_tick(int inidle) | |||
342 | 368 | ||
343 | ts->idle_sleeps++; | 369 | ts->idle_sleeps++; |
344 | 370 | ||
371 | /* Mark expires */ | ||
372 | ts->idle_expires = expires; | ||
373 | |||
345 | /* | 374 | /* |
346 | * delta_jiffies >= NEXT_TIMER_MAX_DELTA signals that | 375 | * If the expiration time == KTIME_MAX, then |
347 | * there is no timer pending or at least extremly far | 376 | * in this case we simply stop the tick timer. |
348 | * into the future (12 days for HZ=1000). In this case | ||
349 | * we simply stop the tick timer: | ||
350 | */ | 377 | */ |
351 | if (unlikely(delta_jiffies >= NEXT_TIMER_MAX_DELTA)) { | 378 | if (unlikely(expires.tv64 == KTIME_MAX)) { |
352 | ts->idle_expires.tv64 = KTIME_MAX; | ||
353 | if (ts->nohz_mode == NOHZ_MODE_HIGHRES) | 379 | if (ts->nohz_mode == NOHZ_MODE_HIGHRES) |
354 | hrtimer_cancel(&ts->sched_timer); | 380 | hrtimer_cancel(&ts->sched_timer); |
355 | goto out; | 381 | goto out; |
356 | } | 382 | } |
357 | 383 | ||
358 | /* Mark expiries */ | ||
359 | ts->idle_expires = expires; | ||
360 | |||
361 | if (ts->nohz_mode == NOHZ_MODE_HIGHRES) { | 384 | if (ts->nohz_mode == NOHZ_MODE_HIGHRES) { |
362 | hrtimer_start(&ts->sched_timer, expires, | 385 | hrtimer_start(&ts->sched_timer, expires, |
363 | HRTIMER_MODE_ABS_PINNED); | 386 | HRTIMER_MODE_ABS_PINNED); |
@@ -436,7 +459,11 @@ void tick_nohz_restart_sched_tick(void) | |||
436 | ktime_t now; | 459 | ktime_t now; |
437 | 460 | ||
438 | local_irq_disable(); | 461 | local_irq_disable(); |
439 | tick_nohz_stop_idle(cpu); | 462 | if (ts->idle_active || (ts->inidle && ts->tick_stopped)) |
463 | now = ktime_get(); | ||
464 | |||
465 | if (ts->idle_active) | ||
466 | tick_nohz_stop_idle(cpu, now); | ||
440 | 467 | ||
441 | if (!ts->inidle || !ts->tick_stopped) { | 468 | if (!ts->inidle || !ts->tick_stopped) { |
442 | ts->inidle = 0; | 469 | ts->inidle = 0; |
@@ -450,7 +477,6 @@ void tick_nohz_restart_sched_tick(void) | |||
450 | 477 | ||
451 | /* Update jiffies first */ | 478 | /* Update jiffies first */ |
452 | select_nohz_load_balancer(0); | 479 | select_nohz_load_balancer(0); |
453 | now = ktime_get(); | ||
454 | tick_do_update_jiffies64(now); | 480 | tick_do_update_jiffies64(now); |
455 | cpumask_clear_cpu(cpu, nohz_cpu_mask); | 481 | cpumask_clear_cpu(cpu, nohz_cpu_mask); |
456 | 482 | ||
@@ -584,22 +610,18 @@ static void tick_nohz_switch_to_nohz(void) | |||
584 | * timer and do not touch the other magic bits which need to be done | 610 | * timer and do not touch the other magic bits which need to be done |
585 | * when idle is left. | 611 | * when idle is left. |
586 | */ | 612 | */ |
587 | static void tick_nohz_kick_tick(int cpu) | 613 | static void tick_nohz_kick_tick(int cpu, ktime_t now) |
588 | { | 614 | { |
589 | #if 0 | 615 | #if 0 |
590 | /* Switch back to 2.6.27 behaviour */ | 616 | /* Switch back to 2.6.27 behaviour */ |
591 | 617 | ||
592 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); | 618 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); |
593 | ktime_t delta, now; | 619 | ktime_t delta; |
594 | |||
595 | if (!ts->tick_stopped) | ||
596 | return; | ||
597 | 620 | ||
598 | /* | 621 | /* |
599 | * Do not touch the tick device, when the next expiry is either | 622 | * Do not touch the tick device, when the next expiry is either |
600 | * already reached or less/equal than the tick period. | 623 | * already reached or less/equal than the tick period. |
601 | */ | 624 | */ |
602 | now = ktime_get(); | ||
603 | delta = ktime_sub(hrtimer_get_expires(&ts->sched_timer), now); | 625 | delta = ktime_sub(hrtimer_get_expires(&ts->sched_timer), now); |
604 | if (delta.tv64 <= tick_period.tv64) | 626 | if (delta.tv64 <= tick_period.tv64) |
605 | return; | 627 | return; |
@@ -608,9 +630,26 @@ static void tick_nohz_kick_tick(int cpu) | |||
608 | #endif | 630 | #endif |
609 | } | 631 | } |
610 | 632 | ||
633 | static inline void tick_check_nohz(int cpu) | ||
634 | { | ||
635 | struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); | ||
636 | ktime_t now; | ||
637 | |||
638 | if (!ts->idle_active && !ts->tick_stopped) | ||
639 | return; | ||
640 | now = ktime_get(); | ||
641 | if (ts->idle_active) | ||
642 | tick_nohz_stop_idle(cpu, now); | ||
643 | if (ts->tick_stopped) { | ||
644 | tick_nohz_update_jiffies(now); | ||
645 | tick_nohz_kick_tick(cpu, now); | ||
646 | } | ||
647 | } | ||
648 | |||
611 | #else | 649 | #else |
612 | 650 | ||
613 | static inline void tick_nohz_switch_to_nohz(void) { } | 651 | static inline void tick_nohz_switch_to_nohz(void) { } |
652 | static inline void tick_check_nohz(int cpu) { } | ||
614 | 653 | ||
615 | #endif /* NO_HZ */ | 654 | #endif /* NO_HZ */ |
616 | 655 | ||
@@ -620,11 +659,7 @@ static inline void tick_nohz_switch_to_nohz(void) { } | |||
620 | void tick_check_idle(int cpu) | 659 | void tick_check_idle(int cpu) |
621 | { | 660 | { |
622 | tick_check_oneshot_broadcast(cpu); | 661 | tick_check_oneshot_broadcast(cpu); |
623 | #ifdef CONFIG_NO_HZ | 662 | tick_check_nohz(cpu); |
624 | tick_nohz_stop_idle(cpu); | ||
625 | tick_nohz_update_jiffies(); | ||
626 | tick_nohz_kick_tick(cpu); | ||
627 | #endif | ||
628 | } | 663 | } |
629 | 664 | ||
630 | /* | 665 | /* |
diff --git a/kernel/time/timecompare.c b/kernel/time/timecompare.c index 71e7f1a19156..96ff643a5a59 100644 --- a/kernel/time/timecompare.c +++ b/kernel/time/timecompare.c | |||
@@ -40,7 +40,7 @@ ktime_t timecompare_transform(struct timecompare *sync, | |||
40 | 40 | ||
41 | return ns_to_ktime(nsec); | 41 | return ns_to_ktime(nsec); |
42 | } | 42 | } |
43 | EXPORT_SYMBOL(timecompare_transform); | 43 | EXPORT_SYMBOL_GPL(timecompare_transform); |
44 | 44 | ||
45 | int timecompare_offset(struct timecompare *sync, | 45 | int timecompare_offset(struct timecompare *sync, |
46 | s64 *offset, | 46 | s64 *offset, |
@@ -131,7 +131,7 @@ int timecompare_offset(struct timecompare *sync, | |||
131 | 131 | ||
132 | return used; | 132 | return used; |
133 | } | 133 | } |
134 | EXPORT_SYMBOL(timecompare_offset); | 134 | EXPORT_SYMBOL_GPL(timecompare_offset); |
135 | 135 | ||
136 | void __timecompare_update(struct timecompare *sync, | 136 | void __timecompare_update(struct timecompare *sync, |
137 | u64 source_tstamp) | 137 | u64 source_tstamp) |
@@ -188,4 +188,4 @@ void __timecompare_update(struct timecompare *sync, | |||
188 | } | 188 | } |
189 | } | 189 | } |
190 | } | 190 | } |
191 | EXPORT_SYMBOL(__timecompare_update); | 191 | EXPORT_SYMBOL_GPL(__timecompare_update); |
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index c3a4e2907eaa..af4135f05825 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -165,19 +165,12 @@ struct timespec raw_time; | |||
165 | /* flag for if timekeeping is suspended */ | 165 | /* flag for if timekeeping is suspended */ |
166 | int __read_mostly timekeeping_suspended; | 166 | int __read_mostly timekeeping_suspended; |
167 | 167 | ||
168 | static struct timespec xtime_cache __attribute__ ((aligned (16))); | ||
169 | void update_xtime_cache(u64 nsec) | ||
170 | { | ||
171 | xtime_cache = xtime; | ||
172 | timespec_add_ns(&xtime_cache, nsec); | ||
173 | } | ||
174 | |||
175 | /* must hold xtime_lock */ | 168 | /* must hold xtime_lock */ |
176 | void timekeeping_leap_insert(int leapsecond) | 169 | void timekeeping_leap_insert(int leapsecond) |
177 | { | 170 | { |
178 | xtime.tv_sec += leapsecond; | 171 | xtime.tv_sec += leapsecond; |
179 | wall_to_monotonic.tv_sec -= leapsecond; | 172 | wall_to_monotonic.tv_sec -= leapsecond; |
180 | update_vsyscall(&xtime, timekeeper.clock); | 173 | update_vsyscall(&xtime, timekeeper.clock, timekeeper.mult); |
181 | } | 174 | } |
182 | 175 | ||
183 | #ifdef CONFIG_GENERIC_TIME | 176 | #ifdef CONFIG_GENERIC_TIME |
@@ -332,12 +325,10 @@ int do_settimeofday(struct timespec *tv) | |||
332 | 325 | ||
333 | xtime = *tv; | 326 | xtime = *tv; |
334 | 327 | ||
335 | update_xtime_cache(0); | ||
336 | |||
337 | timekeeper.ntp_error = 0; | 328 | timekeeper.ntp_error = 0; |
338 | ntp_clear(); | 329 | ntp_clear(); |
339 | 330 | ||
340 | update_vsyscall(&xtime, timekeeper.clock); | 331 | update_vsyscall(&xtime, timekeeper.clock, timekeeper.mult); |
341 | 332 | ||
342 | write_sequnlock_irqrestore(&xtime_lock, flags); | 333 | write_sequnlock_irqrestore(&xtime_lock, flags); |
343 | 334 | ||
@@ -488,6 +479,17 @@ int timekeeping_valid_for_hres(void) | |||
488 | } | 479 | } |
489 | 480 | ||
490 | /** | 481 | /** |
482 | * timekeeping_max_deferment - Returns max time the clocksource can be deferred | ||
483 | * | ||
484 | * Caller must observe xtime_lock via read_seqbegin/read_seqretry to | ||
485 | * ensure that the clocksource does not change! | ||
486 | */ | ||
487 | u64 timekeeping_max_deferment(void) | ||
488 | { | ||
489 | return timekeeper.clock->max_idle_ns; | ||
490 | } | ||
491 | |||
492 | /** | ||
491 | * read_persistent_clock - Return time from the persistent clock. | 493 | * read_persistent_clock - Return time from the persistent clock. |
492 | * | 494 | * |
493 | * Weak dummy function for arches that do not yet support it. | 495 | * Weak dummy function for arches that do not yet support it. |
@@ -548,7 +550,6 @@ void __init timekeeping_init(void) | |||
548 | } | 550 | } |
549 | set_normalized_timespec(&wall_to_monotonic, | 551 | set_normalized_timespec(&wall_to_monotonic, |
550 | -boot.tv_sec, -boot.tv_nsec); | 552 | -boot.tv_sec, -boot.tv_nsec); |
551 | update_xtime_cache(0); | ||
552 | total_sleep_time.tv_sec = 0; | 553 | total_sleep_time.tv_sec = 0; |
553 | total_sleep_time.tv_nsec = 0; | 554 | total_sleep_time.tv_nsec = 0; |
554 | write_sequnlock_irqrestore(&xtime_lock, flags); | 555 | write_sequnlock_irqrestore(&xtime_lock, flags); |
@@ -582,7 +583,6 @@ static int timekeeping_resume(struct sys_device *dev) | |||
582 | wall_to_monotonic = timespec_sub(wall_to_monotonic, ts); | 583 | wall_to_monotonic = timespec_sub(wall_to_monotonic, ts); |
583 | total_sleep_time = timespec_add_safe(total_sleep_time, ts); | 584 | total_sleep_time = timespec_add_safe(total_sleep_time, ts); |
584 | } | 585 | } |
585 | update_xtime_cache(0); | ||
586 | /* re-base the last cycle value */ | 586 | /* re-base the last cycle value */ |
587 | timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock); | 587 | timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock); |
588 | timekeeper.ntp_error = 0; | 588 | timekeeper.ntp_error = 0; |
@@ -723,6 +723,49 @@ static void timekeeping_adjust(s64 offset) | |||
723 | } | 723 | } |
724 | 724 | ||
725 | /** | 725 | /** |
726 | * logarithmic_accumulation - shifted accumulation of cycles | ||
727 | * | ||
728 | * This functions accumulates a shifted interval of cycles into | ||
729 | * into a shifted interval nanoseconds. Allows for O(log) accumulation | ||
730 | * loop. | ||
731 | * | ||
732 | * Returns the unconsumed cycles. | ||
733 | */ | ||
734 | static cycle_t logarithmic_accumulation(cycle_t offset, int shift) | ||
735 | { | ||
736 | u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift; | ||
737 | |||
738 | /* If the offset is smaller then a shifted interval, do nothing */ | ||
739 | if (offset < timekeeper.cycle_interval<<shift) | ||
740 | return offset; | ||
741 | |||
742 | /* Accumulate one shifted interval */ | ||
743 | offset -= timekeeper.cycle_interval << shift; | ||
744 | timekeeper.clock->cycle_last += timekeeper.cycle_interval << shift; | ||
745 | |||
746 | timekeeper.xtime_nsec += timekeeper.xtime_interval << shift; | ||
747 | while (timekeeper.xtime_nsec >= nsecps) { | ||
748 | timekeeper.xtime_nsec -= nsecps; | ||
749 | xtime.tv_sec++; | ||
750 | second_overflow(); | ||
751 | } | ||
752 | |||
753 | /* Accumulate into raw time */ | ||
754 | raw_time.tv_nsec += timekeeper.raw_interval << shift;; | ||
755 | while (raw_time.tv_nsec >= NSEC_PER_SEC) { | ||
756 | raw_time.tv_nsec -= NSEC_PER_SEC; | ||
757 | raw_time.tv_sec++; | ||
758 | } | ||
759 | |||
760 | /* Accumulate error between NTP and clock interval */ | ||
761 | timekeeper.ntp_error += tick_length << shift; | ||
762 | timekeeper.ntp_error -= timekeeper.xtime_interval << | ||
763 | (timekeeper.ntp_error_shift + shift); | ||
764 | |||
765 | return offset; | ||
766 | } | ||
767 | |||
768 | /** | ||
726 | * update_wall_time - Uses the current clocksource to increment the wall time | 769 | * update_wall_time - Uses the current clocksource to increment the wall time |
727 | * | 770 | * |
728 | * Called from the timer interrupt, must hold a write on xtime_lock. | 771 | * Called from the timer interrupt, must hold a write on xtime_lock. |
@@ -731,7 +774,7 @@ void update_wall_time(void) | |||
731 | { | 774 | { |
732 | struct clocksource *clock; | 775 | struct clocksource *clock; |
733 | cycle_t offset; | 776 | cycle_t offset; |
734 | u64 nsecs; | 777 | int shift = 0, maxshift; |
735 | 778 | ||
736 | /* Make sure we're fully resumed: */ | 779 | /* Make sure we're fully resumed: */ |
737 | if (unlikely(timekeeping_suspended)) | 780 | if (unlikely(timekeeping_suspended)) |
@@ -745,33 +788,22 @@ void update_wall_time(void) | |||
745 | #endif | 788 | #endif |
746 | timekeeper.xtime_nsec = (s64)xtime.tv_nsec << timekeeper.shift; | 789 | timekeeper.xtime_nsec = (s64)xtime.tv_nsec << timekeeper.shift; |
747 | 790 | ||
748 | /* normally this loop will run just once, however in the | 791 | /* |
749 | * case of lost or late ticks, it will accumulate correctly. | 792 | * With NO_HZ we may have to accumulate many cycle_intervals |
793 | * (think "ticks") worth of time at once. To do this efficiently, | ||
794 | * we calculate the largest doubling multiple of cycle_intervals | ||
795 | * that is smaller then the offset. We then accumulate that | ||
796 | * chunk in one go, and then try to consume the next smaller | ||
797 | * doubled multiple. | ||
750 | */ | 798 | */ |
799 | shift = ilog2(offset) - ilog2(timekeeper.cycle_interval); | ||
800 | shift = max(0, shift); | ||
801 | /* Bound shift to one less then what overflows tick_length */ | ||
802 | maxshift = (8*sizeof(tick_length) - (ilog2(tick_length)+1)) - 1; | ||
803 | shift = min(shift, maxshift); | ||
751 | while (offset >= timekeeper.cycle_interval) { | 804 | while (offset >= timekeeper.cycle_interval) { |
752 | u64 nsecps = (u64)NSEC_PER_SEC << timekeeper.shift; | 805 | offset = logarithmic_accumulation(offset, shift); |
753 | 806 | shift--; | |
754 | /* accumulate one interval */ | ||
755 | offset -= timekeeper.cycle_interval; | ||
756 | clock->cycle_last += timekeeper.cycle_interval; | ||
757 | |||
758 | timekeeper.xtime_nsec += timekeeper.xtime_interval; | ||
759 | if (timekeeper.xtime_nsec >= nsecps) { | ||
760 | timekeeper.xtime_nsec -= nsecps; | ||
761 | xtime.tv_sec++; | ||
762 | second_overflow(); | ||
763 | } | ||
764 | |||
765 | raw_time.tv_nsec += timekeeper.raw_interval; | ||
766 | if (raw_time.tv_nsec >= NSEC_PER_SEC) { | ||
767 | raw_time.tv_nsec -= NSEC_PER_SEC; | ||
768 | raw_time.tv_sec++; | ||
769 | } | ||
770 | |||
771 | /* accumulate error between NTP and clock interval */ | ||
772 | timekeeper.ntp_error += tick_length; | ||
773 | timekeeper.ntp_error -= timekeeper.xtime_interval << | ||
774 | timekeeper.ntp_error_shift; | ||
775 | } | 807 | } |
776 | 808 | ||
777 | /* correct the clock when NTP error is too big */ | 809 | /* correct the clock when NTP error is too big */ |
@@ -807,11 +839,8 @@ void update_wall_time(void) | |||
807 | timekeeper.ntp_error += timekeeper.xtime_nsec << | 839 | timekeeper.ntp_error += timekeeper.xtime_nsec << |
808 | timekeeper.ntp_error_shift; | 840 | timekeeper.ntp_error_shift; |
809 | 841 | ||
810 | nsecs = clocksource_cyc2ns(offset, timekeeper.mult, timekeeper.shift); | ||
811 | update_xtime_cache(nsecs); | ||
812 | |||
813 | /* check to see if there is a new clocksource to use */ | 842 | /* check to see if there is a new clocksource to use */ |
814 | update_vsyscall(&xtime, timekeeper.clock); | 843 | update_vsyscall(&xtime, timekeeper.clock, timekeeper.mult); |
815 | } | 844 | } |
816 | 845 | ||
817 | /** | 846 | /** |
@@ -846,13 +875,13 @@ void monotonic_to_bootbased(struct timespec *ts) | |||
846 | 875 | ||
847 | unsigned long get_seconds(void) | 876 | unsigned long get_seconds(void) |
848 | { | 877 | { |
849 | return xtime_cache.tv_sec; | 878 | return xtime.tv_sec; |
850 | } | 879 | } |
851 | EXPORT_SYMBOL(get_seconds); | 880 | EXPORT_SYMBOL(get_seconds); |
852 | 881 | ||
853 | struct timespec __current_kernel_time(void) | 882 | struct timespec __current_kernel_time(void) |
854 | { | 883 | { |
855 | return xtime_cache; | 884 | return xtime; |
856 | } | 885 | } |
857 | 886 | ||
858 | struct timespec current_kernel_time(void) | 887 | struct timespec current_kernel_time(void) |
@@ -862,8 +891,7 @@ struct timespec current_kernel_time(void) | |||
862 | 891 | ||
863 | do { | 892 | do { |
864 | seq = read_seqbegin(&xtime_lock); | 893 | seq = read_seqbegin(&xtime_lock); |
865 | 894 | now = xtime; | |
866 | now = xtime_cache; | ||
867 | } while (read_seqretry(&xtime_lock, seq)); | 895 | } while (read_seqretry(&xtime_lock, seq)); |
868 | 896 | ||
869 | return now; | 897 | return now; |
@@ -877,8 +905,7 @@ struct timespec get_monotonic_coarse(void) | |||
877 | 905 | ||
878 | do { | 906 | do { |
879 | seq = read_seqbegin(&xtime_lock); | 907 | seq = read_seqbegin(&xtime_lock); |
880 | 908 | now = xtime; | |
881 | now = xtime_cache; | ||
882 | mono = wall_to_monotonic; | 909 | mono = wall_to_monotonic; |
883 | } while (read_seqretry(&xtime_lock, seq)); | 910 | } while (read_seqretry(&xtime_lock, seq)); |
884 | 911 | ||
diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c index 1b5b7aa2fdfd..9d80db4747d4 100644 --- a/kernel/time/timer_list.c +++ b/kernel/time/timer_list.c | |||
@@ -150,6 +150,9 @@ static void print_cpu(struct seq_file *m, int cpu, u64 now) | |||
150 | P_ns(expires_next); | 150 | P_ns(expires_next); |
151 | P(hres_active); | 151 | P(hres_active); |
152 | P(nr_events); | 152 | P(nr_events); |
153 | P(nr_retries); | ||
154 | P(nr_hangs); | ||
155 | P_ns(max_hang_time); | ||
153 | #endif | 156 | #endif |
154 | #undef P | 157 | #undef P |
155 | #undef P_ns | 158 | #undef P_ns |
@@ -204,10 +207,12 @@ print_tickdevice(struct seq_file *m, struct tick_device *td, int cpu) | |||
204 | return; | 207 | return; |
205 | } | 208 | } |
206 | SEQ_printf(m, "%s\n", dev->name); | 209 | SEQ_printf(m, "%s\n", dev->name); |
207 | SEQ_printf(m, " max_delta_ns: %lu\n", dev->max_delta_ns); | 210 | SEQ_printf(m, " max_delta_ns: %llu\n", |
208 | SEQ_printf(m, " min_delta_ns: %lu\n", dev->min_delta_ns); | 211 | (unsigned long long) dev->max_delta_ns); |
209 | SEQ_printf(m, " mult: %lu\n", dev->mult); | 212 | SEQ_printf(m, " min_delta_ns: %llu\n", |
210 | SEQ_printf(m, " shift: %d\n", dev->shift); | 213 | (unsigned long long) dev->min_delta_ns); |
214 | SEQ_printf(m, " mult: %u\n", dev->mult); | ||
215 | SEQ_printf(m, " shift: %u\n", dev->shift); | ||
211 | SEQ_printf(m, " mode: %d\n", dev->mode); | 216 | SEQ_printf(m, " mode: %d\n", dev->mode); |
212 | SEQ_printf(m, " next_event: %Ld nsecs\n", | 217 | SEQ_printf(m, " next_event: %Ld nsecs\n", |
213 | (unsigned long long) ktime_to_ns(dev->next_event)); | 218 | (unsigned long long) ktime_to_ns(dev->next_event)); |
@@ -252,7 +257,7 @@ static int timer_list_show(struct seq_file *m, void *v) | |||
252 | u64 now = ktime_to_ns(ktime_get()); | 257 | u64 now = ktime_to_ns(ktime_get()); |
253 | int cpu; | 258 | int cpu; |
254 | 259 | ||
255 | SEQ_printf(m, "Timer List Version: v0.4\n"); | 260 | SEQ_printf(m, "Timer List Version: v0.5\n"); |
256 | SEQ_printf(m, "HRTIMER_MAX_CLOCK_BASES: %d\n", HRTIMER_MAX_CLOCK_BASES); | 261 | SEQ_printf(m, "HRTIMER_MAX_CLOCK_BASES: %d\n", HRTIMER_MAX_CLOCK_BASES); |
257 | SEQ_printf(m, "now at %Ld nsecs\n", (unsigned long long)now); | 262 | SEQ_printf(m, "now at %Ld nsecs\n", (unsigned long long)now); |
258 | 263 | ||
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 874f2893cff0..88bd9ae2a9ed 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
@@ -1361,11 +1361,7 @@ int trace_array_vprintk(struct trace_array *tr, | |||
1361 | pause_graph_tracing(); | 1361 | pause_graph_tracing(); |
1362 | raw_local_irq_save(irq_flags); | 1362 | raw_local_irq_save(irq_flags); |
1363 | __raw_spin_lock(&trace_buf_lock); | 1363 | __raw_spin_lock(&trace_buf_lock); |
1364 | if (args == NULL) { | 1364 | len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args); |
1365 | strncpy(trace_buf, fmt, TRACE_BUF_SIZE); | ||
1366 | len = strlen(trace_buf); | ||
1367 | } else | ||
1368 | len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args); | ||
1369 | 1365 | ||
1370 | size = sizeof(*entry) + len + 1; | 1366 | size = sizeof(*entry) + len + 1; |
1371 | buffer = tr->buffer; | 1367 | buffer = tr->buffer; |
@@ -1516,6 +1512,8 @@ static void *s_next(struct seq_file *m, void *v, loff_t *pos) | |||
1516 | int i = (int)*pos; | 1512 | int i = (int)*pos; |
1517 | void *ent; | 1513 | void *ent; |
1518 | 1514 | ||
1515 | WARN_ON_ONCE(iter->leftover); | ||
1516 | |||
1519 | (*pos)++; | 1517 | (*pos)++; |
1520 | 1518 | ||
1521 | /* can't go backwards */ | 1519 | /* can't go backwards */ |
@@ -1614,8 +1612,16 @@ static void *s_start(struct seq_file *m, loff_t *pos) | |||
1614 | ; | 1612 | ; |
1615 | 1613 | ||
1616 | } else { | 1614 | } else { |
1617 | l = *pos - 1; | 1615 | /* |
1618 | p = s_next(m, p, &l); | 1616 | * If we overflowed the seq_file before, then we want |
1617 | * to just reuse the trace_seq buffer again. | ||
1618 | */ | ||
1619 | if (iter->leftover) | ||
1620 | p = iter; | ||
1621 | else { | ||
1622 | l = *pos - 1; | ||
1623 | p = s_next(m, p, &l); | ||
1624 | } | ||
1619 | } | 1625 | } |
1620 | 1626 | ||
1621 | trace_event_read_lock(); | 1627 | trace_event_read_lock(); |
@@ -1923,6 +1929,7 @@ static enum print_line_t print_trace_line(struct trace_iterator *iter) | |||
1923 | static int s_show(struct seq_file *m, void *v) | 1929 | static int s_show(struct seq_file *m, void *v) |
1924 | { | 1930 | { |
1925 | struct trace_iterator *iter = v; | 1931 | struct trace_iterator *iter = v; |
1932 | int ret; | ||
1926 | 1933 | ||
1927 | if (iter->ent == NULL) { | 1934 | if (iter->ent == NULL) { |
1928 | if (iter->tr) { | 1935 | if (iter->tr) { |
@@ -1942,9 +1949,27 @@ static int s_show(struct seq_file *m, void *v) | |||
1942 | if (!(trace_flags & TRACE_ITER_VERBOSE)) | 1949 | if (!(trace_flags & TRACE_ITER_VERBOSE)) |
1943 | print_func_help_header(m); | 1950 | print_func_help_header(m); |
1944 | } | 1951 | } |
1952 | } else if (iter->leftover) { | ||
1953 | /* | ||
1954 | * If we filled the seq_file buffer earlier, we | ||
1955 | * want to just show it now. | ||
1956 | */ | ||
1957 | ret = trace_print_seq(m, &iter->seq); | ||
1958 | |||
1959 | /* ret should this time be zero, but you never know */ | ||
1960 | iter->leftover = ret; | ||
1961 | |||
1945 | } else { | 1962 | } else { |
1946 | print_trace_line(iter); | 1963 | print_trace_line(iter); |
1947 | trace_print_seq(m, &iter->seq); | 1964 | ret = trace_print_seq(m, &iter->seq); |
1965 | /* | ||
1966 | * If we overflow the seq_file buffer, then it will | ||
1967 | * ask us for this data again at start up. | ||
1968 | * Use that instead. | ||
1969 | * ret is 0 if seq_file write succeeded. | ||
1970 | * -1 otherwise. | ||
1971 | */ | ||
1972 | iter->leftover = ret; | ||
1948 | } | 1973 | } |
1949 | 1974 | ||
1950 | return 0; | 1975 | return 0; |
@@ -2898,6 +2923,10 @@ static int tracing_release_pipe(struct inode *inode, struct file *file) | |||
2898 | else | 2923 | else |
2899 | cpumask_clear_cpu(iter->cpu_file, tracing_reader_cpumask); | 2924 | cpumask_clear_cpu(iter->cpu_file, tracing_reader_cpumask); |
2900 | 2925 | ||
2926 | |||
2927 | if (iter->trace->pipe_close) | ||
2928 | iter->trace->pipe_close(iter); | ||
2929 | |||
2901 | mutex_unlock(&trace_types_lock); | 2930 | mutex_unlock(&trace_types_lock); |
2902 | 2931 | ||
2903 | free_cpumask_var(iter->started); | 2932 | free_cpumask_var(iter->started); |
@@ -3320,6 +3349,16 @@ tracing_entries_write(struct file *filp, const char __user *ubuf, | |||
3320 | return cnt; | 3349 | return cnt; |
3321 | } | 3350 | } |
3322 | 3351 | ||
3352 | static int mark_printk(const char *fmt, ...) | ||
3353 | { | ||
3354 | int ret; | ||
3355 | va_list args; | ||
3356 | va_start(args, fmt); | ||
3357 | ret = trace_vprintk(0, fmt, args); | ||
3358 | va_end(args); | ||
3359 | return ret; | ||
3360 | } | ||
3361 | |||
3323 | static ssize_t | 3362 | static ssize_t |
3324 | tracing_mark_write(struct file *filp, const char __user *ubuf, | 3363 | tracing_mark_write(struct file *filp, const char __user *ubuf, |
3325 | size_t cnt, loff_t *fpos) | 3364 | size_t cnt, loff_t *fpos) |
@@ -3346,7 +3385,7 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, | |||
3346 | } else | 3385 | } else |
3347 | buf[cnt] = '\0'; | 3386 | buf[cnt] = '\0'; |
3348 | 3387 | ||
3349 | cnt = trace_vprintk(0, buf, NULL); | 3388 | cnt = mark_printk("%s", buf); |
3350 | kfree(buf); | 3389 | kfree(buf); |
3351 | *fpos += cnt; | 3390 | *fpos += cnt; |
3352 | 3391 | ||
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 1d7f4830a80d..7fa33cab6962 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h | |||
@@ -272,6 +272,7 @@ struct tracer_flags { | |||
272 | * @pipe_open: called when the trace_pipe file is opened | 272 | * @pipe_open: called when the trace_pipe file is opened |
273 | * @wait_pipe: override how the user waits for traces on trace_pipe | 273 | * @wait_pipe: override how the user waits for traces on trace_pipe |
274 | * @close: called when the trace file is released | 274 | * @close: called when the trace file is released |
275 | * @pipe_close: called when the trace_pipe file is released | ||
275 | * @read: override the default read callback on trace_pipe | 276 | * @read: override the default read callback on trace_pipe |
276 | * @splice_read: override the default splice_read callback on trace_pipe | 277 | * @splice_read: override the default splice_read callback on trace_pipe |
277 | * @selftest: selftest to run on boot (see trace_selftest.c) | 278 | * @selftest: selftest to run on boot (see trace_selftest.c) |
@@ -290,6 +291,7 @@ struct tracer { | |||
290 | void (*pipe_open)(struct trace_iterator *iter); | 291 | void (*pipe_open)(struct trace_iterator *iter); |
291 | void (*wait_pipe)(struct trace_iterator *iter); | 292 | void (*wait_pipe)(struct trace_iterator *iter); |
292 | void (*close)(struct trace_iterator *iter); | 293 | void (*close)(struct trace_iterator *iter); |
294 | void (*pipe_close)(struct trace_iterator *iter); | ||
293 | ssize_t (*read)(struct trace_iterator *iter, | 295 | ssize_t (*read)(struct trace_iterator *iter, |
294 | struct file *filp, char __user *ubuf, | 296 | struct file *filp, char __user *ubuf, |
295 | size_t cnt, loff_t *ppos); | 297 | size_t cnt, loff_t *ppos); |
diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c index 45e6c01b2e4d..a43d009c561a 100644 --- a/kernel/trace/trace_functions_graph.c +++ b/kernel/trace/trace_functions_graph.c | |||
@@ -14,9 +14,20 @@ | |||
14 | #include "trace.h" | 14 | #include "trace.h" |
15 | #include "trace_output.h" | 15 | #include "trace_output.h" |
16 | 16 | ||
17 | struct fgraph_data { | 17 | struct fgraph_cpu_data { |
18 | pid_t last_pid; | 18 | pid_t last_pid; |
19 | int depth; | 19 | int depth; |
20 | int ignore; | ||
21 | }; | ||
22 | |||
23 | struct fgraph_data { | ||
24 | struct fgraph_cpu_data *cpu_data; | ||
25 | |||
26 | /* Place to preserve last processed entry. */ | ||
27 | struct ftrace_graph_ent_entry ent; | ||
28 | struct ftrace_graph_ret_entry ret; | ||
29 | int failed; | ||
30 | int cpu; | ||
20 | }; | 31 | }; |
21 | 32 | ||
22 | #define TRACE_GRAPH_INDENT 2 | 33 | #define TRACE_GRAPH_INDENT 2 |
@@ -384,7 +395,7 @@ verif_pid(struct trace_seq *s, pid_t pid, int cpu, struct fgraph_data *data) | |||
384 | if (!data) | 395 | if (!data) |
385 | return TRACE_TYPE_HANDLED; | 396 | return TRACE_TYPE_HANDLED; |
386 | 397 | ||
387 | last_pid = &(per_cpu_ptr(data, cpu)->last_pid); | 398 | last_pid = &(per_cpu_ptr(data->cpu_data, cpu)->last_pid); |
388 | 399 | ||
389 | if (*last_pid == pid) | 400 | if (*last_pid == pid) |
390 | return TRACE_TYPE_HANDLED; | 401 | return TRACE_TYPE_HANDLED; |
@@ -435,26 +446,49 @@ static struct ftrace_graph_ret_entry * | |||
435 | get_return_for_leaf(struct trace_iterator *iter, | 446 | get_return_for_leaf(struct trace_iterator *iter, |
436 | struct ftrace_graph_ent_entry *curr) | 447 | struct ftrace_graph_ent_entry *curr) |
437 | { | 448 | { |
438 | struct ring_buffer_iter *ring_iter; | 449 | struct fgraph_data *data = iter->private; |
450 | struct ring_buffer_iter *ring_iter = NULL; | ||
439 | struct ring_buffer_event *event; | 451 | struct ring_buffer_event *event; |
440 | struct ftrace_graph_ret_entry *next; | 452 | struct ftrace_graph_ret_entry *next; |
441 | 453 | ||
442 | ring_iter = iter->buffer_iter[iter->cpu]; | 454 | /* |
455 | * If the previous output failed to write to the seq buffer, | ||
456 | * then we just reuse the data from before. | ||
457 | */ | ||
458 | if (data && data->failed) { | ||
459 | curr = &data->ent; | ||
460 | next = &data->ret; | ||
461 | } else { | ||
443 | 462 | ||
444 | /* First peek to compare current entry and the next one */ | 463 | ring_iter = iter->buffer_iter[iter->cpu]; |
445 | if (ring_iter) | 464 | |
446 | event = ring_buffer_iter_peek(ring_iter, NULL); | 465 | /* First peek to compare current entry and the next one */ |
447 | else { | 466 | if (ring_iter) |
448 | /* We need to consume the current entry to see the next one */ | 467 | event = ring_buffer_iter_peek(ring_iter, NULL); |
449 | ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL); | 468 | else { |
450 | event = ring_buffer_peek(iter->tr->buffer, iter->cpu, | 469 | /* |
451 | NULL); | 470 | * We need to consume the current entry to see |
452 | } | 471 | * the next one. |
472 | */ | ||
473 | ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL); | ||
474 | event = ring_buffer_peek(iter->tr->buffer, iter->cpu, | ||
475 | NULL); | ||
476 | } | ||
453 | 477 | ||
454 | if (!event) | 478 | if (!event) |
455 | return NULL; | 479 | return NULL; |
480 | |||
481 | next = ring_buffer_event_data(event); | ||
456 | 482 | ||
457 | next = ring_buffer_event_data(event); | 483 | if (data) { |
484 | /* | ||
485 | * Save current and next entries for later reference | ||
486 | * if the output fails. | ||
487 | */ | ||
488 | data->ent = *curr; | ||
489 | data->ret = *next; | ||
490 | } | ||
491 | } | ||
458 | 492 | ||
459 | if (next->ent.type != TRACE_GRAPH_RET) | 493 | if (next->ent.type != TRACE_GRAPH_RET) |
460 | return NULL; | 494 | return NULL; |
@@ -640,7 +674,7 @@ print_graph_entry_leaf(struct trace_iterator *iter, | |||
640 | 674 | ||
641 | if (data) { | 675 | if (data) { |
642 | int cpu = iter->cpu; | 676 | int cpu = iter->cpu; |
643 | int *depth = &(per_cpu_ptr(data, cpu)->depth); | 677 | int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); |
644 | 678 | ||
645 | /* | 679 | /* |
646 | * Comments display at + 1 to depth. Since | 680 | * Comments display at + 1 to depth. Since |
@@ -688,7 +722,7 @@ print_graph_entry_nested(struct trace_iterator *iter, | |||
688 | 722 | ||
689 | if (data) { | 723 | if (data) { |
690 | int cpu = iter->cpu; | 724 | int cpu = iter->cpu; |
691 | int *depth = &(per_cpu_ptr(data, cpu)->depth); | 725 | int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); |
692 | 726 | ||
693 | *depth = call->depth; | 727 | *depth = call->depth; |
694 | } | 728 | } |
@@ -782,19 +816,34 @@ static enum print_line_t | |||
782 | print_graph_entry(struct ftrace_graph_ent_entry *field, struct trace_seq *s, | 816 | print_graph_entry(struct ftrace_graph_ent_entry *field, struct trace_seq *s, |
783 | struct trace_iterator *iter) | 817 | struct trace_iterator *iter) |
784 | { | 818 | { |
785 | int cpu = iter->cpu; | 819 | struct fgraph_data *data = iter->private; |
786 | struct ftrace_graph_ent *call = &field->graph_ent; | 820 | struct ftrace_graph_ent *call = &field->graph_ent; |
787 | struct ftrace_graph_ret_entry *leaf_ret; | 821 | struct ftrace_graph_ret_entry *leaf_ret; |
822 | static enum print_line_t ret; | ||
823 | int cpu = iter->cpu; | ||
788 | 824 | ||
789 | if (print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func)) | 825 | if (print_graph_prologue(iter, s, TRACE_GRAPH_ENT, call->func)) |
790 | return TRACE_TYPE_PARTIAL_LINE; | 826 | return TRACE_TYPE_PARTIAL_LINE; |
791 | 827 | ||
792 | leaf_ret = get_return_for_leaf(iter, field); | 828 | leaf_ret = get_return_for_leaf(iter, field); |
793 | if (leaf_ret) | 829 | if (leaf_ret) |
794 | return print_graph_entry_leaf(iter, field, leaf_ret, s); | 830 | ret = print_graph_entry_leaf(iter, field, leaf_ret, s); |
795 | else | 831 | else |
796 | return print_graph_entry_nested(iter, field, s, cpu); | 832 | ret = print_graph_entry_nested(iter, field, s, cpu); |
797 | 833 | ||
834 | if (data) { | ||
835 | /* | ||
836 | * If we failed to write our output, then we need to make | ||
837 | * note of it. Because we already consumed our entry. | ||
838 | */ | ||
839 | if (s->full) { | ||
840 | data->failed = 1; | ||
841 | data->cpu = cpu; | ||
842 | } else | ||
843 | data->failed = 0; | ||
844 | } | ||
845 | |||
846 | return ret; | ||
798 | } | 847 | } |
799 | 848 | ||
800 | static enum print_line_t | 849 | static enum print_line_t |
@@ -810,7 +859,7 @@ print_graph_return(struct ftrace_graph_ret *trace, struct trace_seq *s, | |||
810 | 859 | ||
811 | if (data) { | 860 | if (data) { |
812 | int cpu = iter->cpu; | 861 | int cpu = iter->cpu; |
813 | int *depth = &(per_cpu_ptr(data, cpu)->depth); | 862 | int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); |
814 | 863 | ||
815 | /* | 864 | /* |
816 | * Comments display at + 1 to depth. This is the | 865 | * Comments display at + 1 to depth. This is the |
@@ -873,7 +922,7 @@ print_graph_comment(struct trace_seq *s, struct trace_entry *ent, | |||
873 | int i; | 922 | int i; |
874 | 923 | ||
875 | if (data) | 924 | if (data) |
876 | depth = per_cpu_ptr(data, iter->cpu)->depth; | 925 | depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth; |
877 | 926 | ||
878 | if (print_graph_prologue(iter, s, 0, 0)) | 927 | if (print_graph_prologue(iter, s, 0, 0)) |
879 | return TRACE_TYPE_PARTIAL_LINE; | 928 | return TRACE_TYPE_PARTIAL_LINE; |
@@ -941,8 +990,33 @@ print_graph_comment(struct trace_seq *s, struct trace_entry *ent, | |||
941 | enum print_line_t | 990 | enum print_line_t |
942 | print_graph_function(struct trace_iterator *iter) | 991 | print_graph_function(struct trace_iterator *iter) |
943 | { | 992 | { |
993 | struct ftrace_graph_ent_entry *field; | ||
994 | struct fgraph_data *data = iter->private; | ||
944 | struct trace_entry *entry = iter->ent; | 995 | struct trace_entry *entry = iter->ent; |
945 | struct trace_seq *s = &iter->seq; | 996 | struct trace_seq *s = &iter->seq; |
997 | int cpu = iter->cpu; | ||
998 | int ret; | ||
999 | |||
1000 | if (data && per_cpu_ptr(data->cpu_data, cpu)->ignore) { | ||
1001 | per_cpu_ptr(data->cpu_data, cpu)->ignore = 0; | ||
1002 | return TRACE_TYPE_HANDLED; | ||
1003 | } | ||
1004 | |||
1005 | /* | ||
1006 | * If the last output failed, there's a possibility we need | ||
1007 | * to print out the missing entry which would never go out. | ||
1008 | */ | ||
1009 | if (data && data->failed) { | ||
1010 | field = &data->ent; | ||
1011 | iter->cpu = data->cpu; | ||
1012 | ret = print_graph_entry(field, s, iter); | ||
1013 | if (ret == TRACE_TYPE_HANDLED && iter->cpu != cpu) { | ||
1014 | per_cpu_ptr(data->cpu_data, iter->cpu)->ignore = 1; | ||
1015 | ret = TRACE_TYPE_NO_CONSUME; | ||
1016 | } | ||
1017 | iter->cpu = cpu; | ||
1018 | return ret; | ||
1019 | } | ||
946 | 1020 | ||
947 | switch (entry->type) { | 1021 | switch (entry->type) { |
948 | case TRACE_GRAPH_ENT: { | 1022 | case TRACE_GRAPH_ENT: { |
@@ -952,7 +1026,7 @@ print_graph_function(struct trace_iterator *iter) | |||
952 | * sizeof(struct ftrace_graph_ent_entry) is very small, | 1026 | * sizeof(struct ftrace_graph_ent_entry) is very small, |
953 | * it can be safely saved at the stack. | 1027 | * it can be safely saved at the stack. |
954 | */ | 1028 | */ |
955 | struct ftrace_graph_ent_entry *field, saved; | 1029 | struct ftrace_graph_ent_entry saved; |
956 | trace_assign_type(field, entry); | 1030 | trace_assign_type(field, entry); |
957 | saved = *field; | 1031 | saved = *field; |
958 | return print_graph_entry(&saved, s, iter); | 1032 | return print_graph_entry(&saved, s, iter); |
@@ -1030,31 +1104,54 @@ static void print_graph_headers(struct seq_file *s) | |||
1030 | static void graph_trace_open(struct trace_iterator *iter) | 1104 | static void graph_trace_open(struct trace_iterator *iter) |
1031 | { | 1105 | { |
1032 | /* pid and depth on the last trace processed */ | 1106 | /* pid and depth on the last trace processed */ |
1033 | struct fgraph_data *data = alloc_percpu(struct fgraph_data); | 1107 | struct fgraph_data *data; |
1034 | int cpu; | 1108 | int cpu; |
1035 | 1109 | ||
1110 | iter->private = NULL; | ||
1111 | |||
1112 | data = kzalloc(sizeof(*data), GFP_KERNEL); | ||
1036 | if (!data) | 1113 | if (!data) |
1037 | pr_warning("function graph tracer: not enough memory\n"); | 1114 | goto out_err; |
1038 | else | 1115 | |
1039 | for_each_possible_cpu(cpu) { | 1116 | data->cpu_data = alloc_percpu(struct fgraph_cpu_data); |
1040 | pid_t *pid = &(per_cpu_ptr(data, cpu)->last_pid); | 1117 | if (!data->cpu_data) |
1041 | int *depth = &(per_cpu_ptr(data, cpu)->depth); | 1118 | goto out_err_free; |
1042 | *pid = -1; | 1119 | |
1043 | *depth = 0; | 1120 | for_each_possible_cpu(cpu) { |
1044 | } | 1121 | pid_t *pid = &(per_cpu_ptr(data->cpu_data, cpu)->last_pid); |
1122 | int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); | ||
1123 | int *ignore = &(per_cpu_ptr(data->cpu_data, cpu)->ignore); | ||
1124 | *pid = -1; | ||
1125 | *depth = 0; | ||
1126 | *ignore = 0; | ||
1127 | } | ||
1045 | 1128 | ||
1046 | iter->private = data; | 1129 | iter->private = data; |
1130 | |||
1131 | return; | ||
1132 | |||
1133 | out_err_free: | ||
1134 | kfree(data); | ||
1135 | out_err: | ||
1136 | pr_warning("function graph tracer: not enough memory\n"); | ||
1047 | } | 1137 | } |
1048 | 1138 | ||
1049 | static void graph_trace_close(struct trace_iterator *iter) | 1139 | static void graph_trace_close(struct trace_iterator *iter) |
1050 | { | 1140 | { |
1051 | free_percpu(iter->private); | 1141 | struct fgraph_data *data = iter->private; |
1142 | |||
1143 | if (data) { | ||
1144 | free_percpu(data->cpu_data); | ||
1145 | kfree(data); | ||
1146 | } | ||
1052 | } | 1147 | } |
1053 | 1148 | ||
1054 | static struct tracer graph_trace __read_mostly = { | 1149 | static struct tracer graph_trace __read_mostly = { |
1055 | .name = "function_graph", | 1150 | .name = "function_graph", |
1056 | .open = graph_trace_open, | 1151 | .open = graph_trace_open, |
1152 | .pipe_open = graph_trace_open, | ||
1057 | .close = graph_trace_close, | 1153 | .close = graph_trace_close, |
1154 | .pipe_close = graph_trace_close, | ||
1058 | .wait_pipe = poll_wait_pipe, | 1155 | .wait_pipe = poll_wait_pipe, |
1059 | .init = graph_trace_init, | 1156 | .init = graph_trace_init, |
1060 | .reset = graph_trace_reset, | 1157 | .reset = graph_trace_reset, |
diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c index aff5f80b59b8..b52d397e57eb 100644 --- a/kernel/trace/trace_kprobe.c +++ b/kernel/trace/trace_kprobe.c | |||
@@ -606,23 +606,22 @@ static int create_trace_probe(int argc, char **argv) | |||
606 | */ | 606 | */ |
607 | struct trace_probe *tp; | 607 | struct trace_probe *tp; |
608 | int i, ret = 0; | 608 | int i, ret = 0; |
609 | int is_return = 0; | 609 | int is_return = 0, is_delete = 0; |
610 | char *symbol = NULL, *event = NULL, *arg = NULL, *group = NULL; | 610 | char *symbol = NULL, *event = NULL, *arg = NULL, *group = NULL; |
611 | unsigned long offset = 0; | 611 | unsigned long offset = 0; |
612 | void *addr = NULL; | 612 | void *addr = NULL; |
613 | char buf[MAX_EVENT_NAME_LEN]; | 613 | char buf[MAX_EVENT_NAME_LEN]; |
614 | 614 | ||
615 | if (argc < 2) { | 615 | /* argc must be >= 1 */ |
616 | pr_info("Probe point is not specified.\n"); | ||
617 | return -EINVAL; | ||
618 | } | ||
619 | |||
620 | if (argv[0][0] == 'p') | 616 | if (argv[0][0] == 'p') |
621 | is_return = 0; | 617 | is_return = 0; |
622 | else if (argv[0][0] == 'r') | 618 | else if (argv[0][0] == 'r') |
623 | is_return = 1; | 619 | is_return = 1; |
620 | else if (argv[0][0] == '-') | ||
621 | is_delete = 1; | ||
624 | else { | 622 | else { |
625 | pr_info("Probe definition must be started with 'p' or 'r'.\n"); | 623 | pr_info("Probe definition must be started with 'p', 'r' or" |
624 | " '-'.\n"); | ||
626 | return -EINVAL; | 625 | return -EINVAL; |
627 | } | 626 | } |
628 | 627 | ||
@@ -642,7 +641,29 @@ static int create_trace_probe(int argc, char **argv) | |||
642 | return -EINVAL; | 641 | return -EINVAL; |
643 | } | 642 | } |
644 | } | 643 | } |
644 | if (!group) | ||
645 | group = KPROBE_EVENT_SYSTEM; | ||
645 | 646 | ||
647 | if (is_delete) { | ||
648 | if (!event) { | ||
649 | pr_info("Delete command needs an event name.\n"); | ||
650 | return -EINVAL; | ||
651 | } | ||
652 | tp = find_probe_event(event, group); | ||
653 | if (!tp) { | ||
654 | pr_info("Event %s/%s doesn't exist.\n", group, event); | ||
655 | return -ENOENT; | ||
656 | } | ||
657 | /* delete an event */ | ||
658 | unregister_trace_probe(tp); | ||
659 | free_trace_probe(tp); | ||
660 | return 0; | ||
661 | } | ||
662 | |||
663 | if (argc < 2) { | ||
664 | pr_info("Probe point is not specified.\n"); | ||
665 | return -EINVAL; | ||
666 | } | ||
646 | if (isdigit(argv[1][0])) { | 667 | if (isdigit(argv[1][0])) { |
647 | if (is_return) { | 668 | if (is_return) { |
648 | pr_info("Return probe point must be a symbol.\n"); | 669 | pr_info("Return probe point must be a symbol.\n"); |
@@ -671,8 +692,6 @@ static int create_trace_probe(int argc, char **argv) | |||
671 | argc -= 2; argv += 2; | 692 | argc -= 2; argv += 2; |
672 | 693 | ||
673 | /* setup a probe */ | 694 | /* setup a probe */ |
674 | if (!group) | ||
675 | group = KPROBE_EVENT_SYSTEM; | ||
676 | if (!event) { | 695 | if (!event) { |
677 | /* Make a new event name */ | 696 | /* Make a new event name */ |
678 | if (symbol) | 697 | if (symbol) |
@@ -1114,7 +1133,7 @@ static int kprobe_event_define_fields(struct ftrace_event_call *event_call) | |||
1114 | struct trace_probe *tp = (struct trace_probe *)event_call->data; | 1133 | struct trace_probe *tp = (struct trace_probe *)event_call->data; |
1115 | 1134 | ||
1116 | ret = trace_define_common_fields(event_call); | 1135 | ret = trace_define_common_fields(event_call); |
1117 | if (!ret) | 1136 | if (ret) |
1118 | return ret; | 1137 | return ret; |
1119 | 1138 | ||
1120 | DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0); | 1139 | DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0); |
@@ -1132,7 +1151,7 @@ static int kretprobe_event_define_fields(struct ftrace_event_call *event_call) | |||
1132 | struct trace_probe *tp = (struct trace_probe *)event_call->data; | 1151 | struct trace_probe *tp = (struct trace_probe *)event_call->data; |
1133 | 1152 | ||
1134 | ret = trace_define_common_fields(event_call); | 1153 | ret = trace_define_common_fields(event_call); |
1135 | if (!ret) | 1154 | if (ret) |
1136 | return ret; | 1155 | return ret; |
1137 | 1156 | ||
1138 | DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0); | 1157 | DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0); |
diff --git a/kernel/trace/trace_ksym.c b/kernel/trace/trace_ksym.c index ddfa0fd43bc0..acb87d4a4ac1 100644 --- a/kernel/trace/trace_ksym.c +++ b/kernel/trace/trace_ksym.c | |||
@@ -79,11 +79,12 @@ void ksym_collect_stats(unsigned long hbp_hit_addr) | |||
79 | } | 79 | } |
80 | #endif /* CONFIG_PROFILE_KSYM_TRACER */ | 80 | #endif /* CONFIG_PROFILE_KSYM_TRACER */ |
81 | 81 | ||
82 | void ksym_hbp_handler(struct perf_event *hbp, void *data) | 82 | void ksym_hbp_handler(struct perf_event *hbp, int nmi, |
83 | struct perf_sample_data *data, | ||
84 | struct pt_regs *regs) | ||
83 | { | 85 | { |
84 | struct ring_buffer_event *event; | 86 | struct ring_buffer_event *event; |
85 | struct ksym_trace_entry *entry; | 87 | struct ksym_trace_entry *entry; |
86 | struct pt_regs *regs = data; | ||
87 | struct ring_buffer *buffer; | 88 | struct ring_buffer *buffer; |
88 | int pc; | 89 | int pc; |
89 | 90 | ||
diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c index b6c12c6a1bcd..8e46b3323cdc 100644 --- a/kernel/trace/trace_output.c +++ b/kernel/trace/trace_output.c | |||
@@ -23,13 +23,21 @@ static struct hlist_head event_hash[EVENT_HASHSIZE] __read_mostly; | |||
23 | 23 | ||
24 | static int next_event_type = __TRACE_LAST_TYPE + 1; | 24 | static int next_event_type = __TRACE_LAST_TYPE + 1; |
25 | 25 | ||
26 | void trace_print_seq(struct seq_file *m, struct trace_seq *s) | 26 | int trace_print_seq(struct seq_file *m, struct trace_seq *s) |
27 | { | 27 | { |
28 | int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len; | 28 | int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len; |
29 | int ret; | ||
30 | |||
31 | ret = seq_write(m, s->buffer, len); | ||
29 | 32 | ||
30 | seq_write(m, s->buffer, len); | 33 | /* |
34 | * Only reset this buffer if we successfully wrote to the | ||
35 | * seq_file buffer. | ||
36 | */ | ||
37 | if (!ret) | ||
38 | trace_seq_init(s); | ||
31 | 39 | ||
32 | trace_seq_init(s); | 40 | return ret; |
33 | } | 41 | } |
34 | 42 | ||
35 | enum print_line_t trace_print_bprintk_msg_only(struct trace_iterator *iter) | 43 | enum print_line_t trace_print_bprintk_msg_only(struct trace_iterator *iter) |
@@ -85,7 +93,7 @@ trace_seq_printf(struct trace_seq *s, const char *fmt, ...) | |||
85 | va_list ap; | 93 | va_list ap; |
86 | int ret; | 94 | int ret; |
87 | 95 | ||
88 | if (!len) | 96 | if (s->full || !len) |
89 | return 0; | 97 | return 0; |
90 | 98 | ||
91 | va_start(ap, fmt); | 99 | va_start(ap, fmt); |
@@ -93,8 +101,10 @@ trace_seq_printf(struct trace_seq *s, const char *fmt, ...) | |||
93 | va_end(ap); | 101 | va_end(ap); |
94 | 102 | ||
95 | /* If we can't write it all, don't bother writing anything */ | 103 | /* If we can't write it all, don't bother writing anything */ |
96 | if (ret >= len) | 104 | if (ret >= len) { |
105 | s->full = 1; | ||
97 | return 0; | 106 | return 0; |
107 | } | ||
98 | 108 | ||
99 | s->len += ret; | 109 | s->len += ret; |
100 | 110 | ||
@@ -119,14 +129,16 @@ trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args) | |||
119 | int len = (PAGE_SIZE - 1) - s->len; | 129 | int len = (PAGE_SIZE - 1) - s->len; |
120 | int ret; | 130 | int ret; |
121 | 131 | ||
122 | if (!len) | 132 | if (s->full || !len) |
123 | return 0; | 133 | return 0; |
124 | 134 | ||
125 | ret = vsnprintf(s->buffer + s->len, len, fmt, args); | 135 | ret = vsnprintf(s->buffer + s->len, len, fmt, args); |
126 | 136 | ||
127 | /* If we can't write it all, don't bother writing anything */ | 137 | /* If we can't write it all, don't bother writing anything */ |
128 | if (ret >= len) | 138 | if (ret >= len) { |
139 | s->full = 1; | ||
129 | return 0; | 140 | return 0; |
141 | } | ||
130 | 142 | ||
131 | s->len += ret; | 143 | s->len += ret; |
132 | 144 | ||
@@ -139,14 +151,16 @@ int trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) | |||
139 | int len = (PAGE_SIZE - 1) - s->len; | 151 | int len = (PAGE_SIZE - 1) - s->len; |
140 | int ret; | 152 | int ret; |
141 | 153 | ||
142 | if (!len) | 154 | if (s->full || !len) |
143 | return 0; | 155 | return 0; |
144 | 156 | ||
145 | ret = bstr_printf(s->buffer + s->len, len, fmt, binary); | 157 | ret = bstr_printf(s->buffer + s->len, len, fmt, binary); |
146 | 158 | ||
147 | /* If we can't write it all, don't bother writing anything */ | 159 | /* If we can't write it all, don't bother writing anything */ |
148 | if (ret >= len) | 160 | if (ret >= len) { |
161 | s->full = 1; | ||
149 | return 0; | 162 | return 0; |
163 | } | ||
150 | 164 | ||
151 | s->len += ret; | 165 | s->len += ret; |
152 | 166 | ||
@@ -167,8 +181,13 @@ int trace_seq_puts(struct trace_seq *s, const char *str) | |||
167 | { | 181 | { |
168 | int len = strlen(str); | 182 | int len = strlen(str); |
169 | 183 | ||
170 | if (len > ((PAGE_SIZE - 1) - s->len)) | 184 | if (s->full) |
185 | return 0; | ||
186 | |||
187 | if (len > ((PAGE_SIZE - 1) - s->len)) { | ||
188 | s->full = 1; | ||
171 | return 0; | 189 | return 0; |
190 | } | ||
172 | 191 | ||
173 | memcpy(s->buffer + s->len, str, len); | 192 | memcpy(s->buffer + s->len, str, len); |
174 | s->len += len; | 193 | s->len += len; |
@@ -178,9 +197,14 @@ int trace_seq_puts(struct trace_seq *s, const char *str) | |||
178 | 197 | ||
179 | int trace_seq_putc(struct trace_seq *s, unsigned char c) | 198 | int trace_seq_putc(struct trace_seq *s, unsigned char c) |
180 | { | 199 | { |
181 | if (s->len >= (PAGE_SIZE - 1)) | 200 | if (s->full) |
182 | return 0; | 201 | return 0; |
183 | 202 | ||
203 | if (s->len >= (PAGE_SIZE - 1)) { | ||
204 | s->full = 1; | ||
205 | return 0; | ||
206 | } | ||
207 | |||
184 | s->buffer[s->len++] = c; | 208 | s->buffer[s->len++] = c; |
185 | 209 | ||
186 | return 1; | 210 | return 1; |
@@ -188,9 +212,14 @@ int trace_seq_putc(struct trace_seq *s, unsigned char c) | |||
188 | 212 | ||
189 | int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len) | 213 | int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len) |
190 | { | 214 | { |
191 | if (len > ((PAGE_SIZE - 1) - s->len)) | 215 | if (s->full) |
192 | return 0; | 216 | return 0; |
193 | 217 | ||
218 | if (len > ((PAGE_SIZE - 1) - s->len)) { | ||
219 | s->full = 1; | ||
220 | return 0; | ||
221 | } | ||
222 | |||
194 | memcpy(s->buffer + s->len, mem, len); | 223 | memcpy(s->buffer + s->len, mem, len); |
195 | s->len += len; | 224 | s->len += len; |
196 | 225 | ||
@@ -203,6 +232,9 @@ int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, size_t len) | |||
203 | const unsigned char *data = mem; | 232 | const unsigned char *data = mem; |
204 | int i, j; | 233 | int i, j; |
205 | 234 | ||
235 | if (s->full) | ||
236 | return 0; | ||
237 | |||
206 | #ifdef __BIG_ENDIAN | 238 | #ifdef __BIG_ENDIAN |
207 | for (i = 0, j = 0; i < len; i++) { | 239 | for (i = 0, j = 0; i < len; i++) { |
208 | #else | 240 | #else |
@@ -220,8 +252,13 @@ void *trace_seq_reserve(struct trace_seq *s, size_t len) | |||
220 | { | 252 | { |
221 | void *ret; | 253 | void *ret; |
222 | 254 | ||
223 | if (len > ((PAGE_SIZE - 1) - s->len)) | 255 | if (s->full) |
256 | return 0; | ||
257 | |||
258 | if (len > ((PAGE_SIZE - 1) - s->len)) { | ||
259 | s->full = 1; | ||
224 | return NULL; | 260 | return NULL; |
261 | } | ||
225 | 262 | ||
226 | ret = s->buffer + s->len; | 263 | ret = s->buffer + s->len; |
227 | s->len += len; | 264 | s->len += len; |
@@ -233,8 +270,14 @@ int trace_seq_path(struct trace_seq *s, struct path *path) | |||
233 | { | 270 | { |
234 | unsigned char *p; | 271 | unsigned char *p; |
235 | 272 | ||
236 | if (s->len >= (PAGE_SIZE - 1)) | 273 | if (s->full) |
274 | return 0; | ||
275 | |||
276 | if (s->len >= (PAGE_SIZE - 1)) { | ||
277 | s->full = 1; | ||
237 | return 0; | 278 | return 0; |
279 | } | ||
280 | |||
238 | p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len); | 281 | p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len); |
239 | if (!IS_ERR(p)) { | 282 | if (!IS_ERR(p)) { |
240 | p = mangle_path(s->buffer + s->len, p, "\n"); | 283 | p = mangle_path(s->buffer + s->len, p, "\n"); |
@@ -247,6 +290,7 @@ int trace_seq_path(struct trace_seq *s, struct path *path) | |||
247 | return 1; | 290 | return 1; |
248 | } | 291 | } |
249 | 292 | ||
293 | s->full = 1; | ||
250 | return 0; | 294 | return 0; |
251 | } | 295 | } |
252 | 296 | ||
@@ -373,6 +417,9 @@ int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm, | |||
373 | unsigned long vmstart = 0; | 417 | unsigned long vmstart = 0; |
374 | int ret = 1; | 418 | int ret = 1; |
375 | 419 | ||
420 | if (s->full) | ||
421 | return 0; | ||
422 | |||
376 | if (mm) { | 423 | if (mm) { |
377 | const struct vm_area_struct *vma; | 424 | const struct vm_area_struct *vma; |
378 | 425 | ||
diff --git a/kernel/user-return-notifier.c b/kernel/user-return-notifier.c new file mode 100644 index 000000000000..eb27fd3430a2 --- /dev/null +++ b/kernel/user-return-notifier.c | |||
@@ -0,0 +1,44 @@ | |||
1 | |||
2 | #include <linux/user-return-notifier.h> | ||
3 | #include <linux/percpu.h> | ||
4 | #include <linux/sched.h> | ||
5 | #include <linux/module.h> | ||
6 | |||
7 | static DEFINE_PER_CPU(struct hlist_head, return_notifier_list); | ||
8 | |||
9 | /* | ||
10 | * Request a notification when the current cpu returns to userspace. Must be | ||
11 | * called in atomic context. The notifier will also be called in atomic | ||
12 | * context. | ||
13 | */ | ||
14 | void user_return_notifier_register(struct user_return_notifier *urn) | ||
15 | { | ||
16 | set_tsk_thread_flag(current, TIF_USER_RETURN_NOTIFY); | ||
17 | hlist_add_head(&urn->link, &__get_cpu_var(return_notifier_list)); | ||
18 | } | ||
19 | EXPORT_SYMBOL_GPL(user_return_notifier_register); | ||
20 | |||
21 | /* | ||
22 | * Removes a registered user return notifier. Must be called from atomic | ||
23 | * context, and from the same cpu registration occured in. | ||
24 | */ | ||
25 | void user_return_notifier_unregister(struct user_return_notifier *urn) | ||
26 | { | ||
27 | hlist_del(&urn->link); | ||
28 | if (hlist_empty(&__get_cpu_var(return_notifier_list))) | ||
29 | clear_tsk_thread_flag(current, TIF_USER_RETURN_NOTIFY); | ||
30 | } | ||
31 | EXPORT_SYMBOL_GPL(user_return_notifier_unregister); | ||
32 | |||
33 | /* Calls registered user return notifiers */ | ||
34 | void fire_user_return_notifiers(void) | ||
35 | { | ||
36 | struct user_return_notifier *urn; | ||
37 | struct hlist_node *tmp1, *tmp2; | ||
38 | struct hlist_head *head; | ||
39 | |||
40 | head = &get_cpu_var(return_notifier_list); | ||
41 | hlist_for_each_entry_safe(urn, tmp1, tmp2, head, link) | ||
42 | urn->on_user_return(urn); | ||
43 | put_cpu_var(return_notifier_list); | ||
44 | } | ||
diff --git a/kernel/utsname_sysctl.c b/kernel/utsname_sysctl.c index 69eae358a726..a2cd77e70d4d 100644 --- a/kernel/utsname_sysctl.c +++ b/kernel/utsname_sysctl.c | |||
@@ -57,78 +57,47 @@ static int proc_do_uts_string(ctl_table *table, int write, | |||
57 | #define proc_do_uts_string NULL | 57 | #define proc_do_uts_string NULL |
58 | #endif | 58 | #endif |
59 | 59 | ||
60 | |||
61 | #ifdef CONFIG_SYSCTL_SYSCALL | ||
62 | /* The generic string strategy routine: */ | ||
63 | static int sysctl_uts_string(ctl_table *table, | ||
64 | void __user *oldval, size_t __user *oldlenp, | ||
65 | void __user *newval, size_t newlen) | ||
66 | { | ||
67 | struct ctl_table uts_table; | ||
68 | int r, write; | ||
69 | write = newval && newlen; | ||
70 | memcpy(&uts_table, table, sizeof(uts_table)); | ||
71 | uts_table.data = get_uts(table, write); | ||
72 | r = sysctl_string(&uts_table, oldval, oldlenp, newval, newlen); | ||
73 | put_uts(table, write, uts_table.data); | ||
74 | return r; | ||
75 | } | ||
76 | #else | ||
77 | #define sysctl_uts_string NULL | ||
78 | #endif | ||
79 | |||
80 | static struct ctl_table uts_kern_table[] = { | 60 | static struct ctl_table uts_kern_table[] = { |
81 | { | 61 | { |
82 | .ctl_name = KERN_OSTYPE, | ||
83 | .procname = "ostype", | 62 | .procname = "ostype", |
84 | .data = init_uts_ns.name.sysname, | 63 | .data = init_uts_ns.name.sysname, |
85 | .maxlen = sizeof(init_uts_ns.name.sysname), | 64 | .maxlen = sizeof(init_uts_ns.name.sysname), |
86 | .mode = 0444, | 65 | .mode = 0444, |
87 | .proc_handler = proc_do_uts_string, | 66 | .proc_handler = proc_do_uts_string, |
88 | .strategy = sysctl_uts_string, | ||
89 | }, | 67 | }, |
90 | { | 68 | { |
91 | .ctl_name = KERN_OSRELEASE, | ||
92 | .procname = "osrelease", | 69 | .procname = "osrelease", |
93 | .data = init_uts_ns.name.release, | 70 | .data = init_uts_ns.name.release, |
94 | .maxlen = sizeof(init_uts_ns.name.release), | 71 | .maxlen = sizeof(init_uts_ns.name.release), |
95 | .mode = 0444, | 72 | .mode = 0444, |
96 | .proc_handler = proc_do_uts_string, | 73 | .proc_handler = proc_do_uts_string, |
97 | .strategy = sysctl_uts_string, | ||
98 | }, | 74 | }, |
99 | { | 75 | { |
100 | .ctl_name = KERN_VERSION, | ||
101 | .procname = "version", | 76 | .procname = "version", |
102 | .data = init_uts_ns.name.version, | 77 | .data = init_uts_ns.name.version, |
103 | .maxlen = sizeof(init_uts_ns.name.version), | 78 | .maxlen = sizeof(init_uts_ns.name.version), |
104 | .mode = 0444, | 79 | .mode = 0444, |
105 | .proc_handler = proc_do_uts_string, | 80 | .proc_handler = proc_do_uts_string, |
106 | .strategy = sysctl_uts_string, | ||
107 | }, | 81 | }, |
108 | { | 82 | { |
109 | .ctl_name = KERN_NODENAME, | ||
110 | .procname = "hostname", | 83 | .procname = "hostname", |
111 | .data = init_uts_ns.name.nodename, | 84 | .data = init_uts_ns.name.nodename, |
112 | .maxlen = sizeof(init_uts_ns.name.nodename), | 85 | .maxlen = sizeof(init_uts_ns.name.nodename), |
113 | .mode = 0644, | 86 | .mode = 0644, |
114 | .proc_handler = proc_do_uts_string, | 87 | .proc_handler = proc_do_uts_string, |
115 | .strategy = sysctl_uts_string, | ||
116 | }, | 88 | }, |
117 | { | 89 | { |
118 | .ctl_name = KERN_DOMAINNAME, | ||
119 | .procname = "domainname", | 90 | .procname = "domainname", |
120 | .data = init_uts_ns.name.domainname, | 91 | .data = init_uts_ns.name.domainname, |
121 | .maxlen = sizeof(init_uts_ns.name.domainname), | 92 | .maxlen = sizeof(init_uts_ns.name.domainname), |
122 | .mode = 0644, | 93 | .mode = 0644, |
123 | .proc_handler = proc_do_uts_string, | 94 | .proc_handler = proc_do_uts_string, |
124 | .strategy = sysctl_uts_string, | ||
125 | }, | 95 | }, |
126 | {} | 96 | {} |
127 | }; | 97 | }; |
128 | 98 | ||
129 | static struct ctl_table uts_root_table[] = { | 99 | static struct ctl_table uts_root_table[] = { |
130 | { | 100 | { |
131 | .ctl_name = CTL_KERN, | ||
132 | .procname = "kernel", | 101 | .procname = "kernel", |
133 | .mode = 0555, | 102 | .mode = 0555, |
134 | .child = uts_kern_table, | 103 | .child = uts_kern_table, |
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 67e526b6ae81..dee48658805c 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -68,6 +68,116 @@ struct workqueue_struct { | |||
68 | #endif | 68 | #endif |
69 | }; | 69 | }; |
70 | 70 | ||
71 | #ifdef CONFIG_DEBUG_OBJECTS_WORK | ||
72 | |||
73 | static struct debug_obj_descr work_debug_descr; | ||
74 | |||
75 | /* | ||
76 | * fixup_init is called when: | ||
77 | * - an active object is initialized | ||
78 | */ | ||
79 | static int work_fixup_init(void *addr, enum debug_obj_state state) | ||
80 | { | ||
81 | struct work_struct *work = addr; | ||
82 | |||
83 | switch (state) { | ||
84 | case ODEBUG_STATE_ACTIVE: | ||
85 | cancel_work_sync(work); | ||
86 | debug_object_init(work, &work_debug_descr); | ||
87 | return 1; | ||
88 | default: | ||
89 | return 0; | ||
90 | } | ||
91 | } | ||
92 | |||
93 | /* | ||
94 | * fixup_activate is called when: | ||
95 | * - an active object is activated | ||
96 | * - an unknown object is activated (might be a statically initialized object) | ||
97 | */ | ||
98 | static int work_fixup_activate(void *addr, enum debug_obj_state state) | ||
99 | { | ||
100 | struct work_struct *work = addr; | ||
101 | |||
102 | switch (state) { | ||
103 | |||
104 | case ODEBUG_STATE_NOTAVAILABLE: | ||
105 | /* | ||
106 | * This is not really a fixup. The work struct was | ||
107 | * statically initialized. We just make sure that it | ||
108 | * is tracked in the object tracker. | ||
109 | */ | ||
110 | if (test_bit(WORK_STRUCT_STATIC, work_data_bits(work))) { | ||
111 | debug_object_init(work, &work_debug_descr); | ||
112 | debug_object_activate(work, &work_debug_descr); | ||
113 | return 0; | ||
114 | } | ||
115 | WARN_ON_ONCE(1); | ||
116 | return 0; | ||
117 | |||
118 | case ODEBUG_STATE_ACTIVE: | ||
119 | WARN_ON(1); | ||
120 | |||
121 | default: | ||
122 | return 0; | ||
123 | } | ||
124 | } | ||
125 | |||
126 | /* | ||
127 | * fixup_free is called when: | ||
128 | * - an active object is freed | ||
129 | */ | ||
130 | static int work_fixup_free(void *addr, enum debug_obj_state state) | ||
131 | { | ||
132 | struct work_struct *work = addr; | ||
133 | |||
134 | switch (state) { | ||
135 | case ODEBUG_STATE_ACTIVE: | ||
136 | cancel_work_sync(work); | ||
137 | debug_object_free(work, &work_debug_descr); | ||
138 | return 1; | ||
139 | default: | ||
140 | return 0; | ||
141 | } | ||
142 | } | ||
143 | |||
144 | static struct debug_obj_descr work_debug_descr = { | ||
145 | .name = "work_struct", | ||
146 | .fixup_init = work_fixup_init, | ||
147 | .fixup_activate = work_fixup_activate, | ||
148 | .fixup_free = work_fixup_free, | ||
149 | }; | ||
150 | |||
151 | static inline void debug_work_activate(struct work_struct *work) | ||
152 | { | ||
153 | debug_object_activate(work, &work_debug_descr); | ||
154 | } | ||
155 | |||
156 | static inline void debug_work_deactivate(struct work_struct *work) | ||
157 | { | ||
158 | debug_object_deactivate(work, &work_debug_descr); | ||
159 | } | ||
160 | |||
161 | void __init_work(struct work_struct *work, int onstack) | ||
162 | { | ||
163 | if (onstack) | ||
164 | debug_object_init_on_stack(work, &work_debug_descr); | ||
165 | else | ||
166 | debug_object_init(work, &work_debug_descr); | ||
167 | } | ||
168 | EXPORT_SYMBOL_GPL(__init_work); | ||
169 | |||
170 | void destroy_work_on_stack(struct work_struct *work) | ||
171 | { | ||
172 | debug_object_free(work, &work_debug_descr); | ||
173 | } | ||
174 | EXPORT_SYMBOL_GPL(destroy_work_on_stack); | ||
175 | |||
176 | #else | ||
177 | static inline void debug_work_activate(struct work_struct *work) { } | ||
178 | static inline void debug_work_deactivate(struct work_struct *work) { } | ||
179 | #endif | ||
180 | |||
71 | /* Serializes the accesses to the list of workqueues. */ | 181 | /* Serializes the accesses to the list of workqueues. */ |
72 | static DEFINE_SPINLOCK(workqueue_lock); | 182 | static DEFINE_SPINLOCK(workqueue_lock); |
73 | static LIST_HEAD(workqueues); | 183 | static LIST_HEAD(workqueues); |
@@ -145,6 +255,7 @@ static void __queue_work(struct cpu_workqueue_struct *cwq, | |||
145 | { | 255 | { |
146 | unsigned long flags; | 256 | unsigned long flags; |
147 | 257 | ||
258 | debug_work_activate(work); | ||
148 | spin_lock_irqsave(&cwq->lock, flags); | 259 | spin_lock_irqsave(&cwq->lock, flags); |
149 | insert_work(cwq, work, &cwq->worklist); | 260 | insert_work(cwq, work, &cwq->worklist); |
150 | spin_unlock_irqrestore(&cwq->lock, flags); | 261 | spin_unlock_irqrestore(&cwq->lock, flags); |
@@ -280,6 +391,7 @@ static void run_workqueue(struct cpu_workqueue_struct *cwq) | |||
280 | struct lockdep_map lockdep_map = work->lockdep_map; | 391 | struct lockdep_map lockdep_map = work->lockdep_map; |
281 | #endif | 392 | #endif |
282 | trace_workqueue_execution(cwq->thread, work); | 393 | trace_workqueue_execution(cwq->thread, work); |
394 | debug_work_deactivate(work); | ||
283 | cwq->current_work = work; | 395 | cwq->current_work = work; |
284 | list_del_init(cwq->worklist.next); | 396 | list_del_init(cwq->worklist.next); |
285 | spin_unlock_irq(&cwq->lock); | 397 | spin_unlock_irq(&cwq->lock); |
@@ -350,11 +462,18 @@ static void wq_barrier_func(struct work_struct *work) | |||
350 | static void insert_wq_barrier(struct cpu_workqueue_struct *cwq, | 462 | static void insert_wq_barrier(struct cpu_workqueue_struct *cwq, |
351 | struct wq_barrier *barr, struct list_head *head) | 463 | struct wq_barrier *barr, struct list_head *head) |
352 | { | 464 | { |
353 | INIT_WORK(&barr->work, wq_barrier_func); | 465 | /* |
466 | * debugobject calls are safe here even with cwq->lock locked | ||
467 | * as we know for sure that this will not trigger any of the | ||
468 | * checks and call back into the fixup functions where we | ||
469 | * might deadlock. | ||
470 | */ | ||
471 | INIT_WORK_ON_STACK(&barr->work, wq_barrier_func); | ||
354 | __set_bit(WORK_STRUCT_PENDING, work_data_bits(&barr->work)); | 472 | __set_bit(WORK_STRUCT_PENDING, work_data_bits(&barr->work)); |
355 | 473 | ||
356 | init_completion(&barr->done); | 474 | init_completion(&barr->done); |
357 | 475 | ||
476 | debug_work_activate(&barr->work); | ||
358 | insert_work(cwq, &barr->work, head); | 477 | insert_work(cwq, &barr->work, head); |
359 | } | 478 | } |
360 | 479 | ||
@@ -372,8 +491,10 @@ static int flush_cpu_workqueue(struct cpu_workqueue_struct *cwq) | |||
372 | } | 491 | } |
373 | spin_unlock_irq(&cwq->lock); | 492 | spin_unlock_irq(&cwq->lock); |
374 | 493 | ||
375 | if (active) | 494 | if (active) { |
376 | wait_for_completion(&barr.done); | 495 | wait_for_completion(&barr.done); |
496 | destroy_work_on_stack(&barr.work); | ||
497 | } | ||
377 | 498 | ||
378 | return active; | 499 | return active; |
379 | } | 500 | } |
@@ -451,6 +572,7 @@ out: | |||
451 | return 0; | 572 | return 0; |
452 | 573 | ||
453 | wait_for_completion(&barr.done); | 574 | wait_for_completion(&barr.done); |
575 | destroy_work_on_stack(&barr.work); | ||
454 | return 1; | 576 | return 1; |
455 | } | 577 | } |
456 | EXPORT_SYMBOL_GPL(flush_work); | 578 | EXPORT_SYMBOL_GPL(flush_work); |
@@ -485,6 +607,7 @@ static int try_to_grab_pending(struct work_struct *work) | |||
485 | */ | 607 | */ |
486 | smp_rmb(); | 608 | smp_rmb(); |
487 | if (cwq == get_wq_data(work)) { | 609 | if (cwq == get_wq_data(work)) { |
610 | debug_work_deactivate(work); | ||
488 | list_del_init(&work->entry); | 611 | list_del_init(&work->entry); |
489 | ret = 1; | 612 | ret = 1; |
490 | } | 613 | } |
@@ -507,8 +630,10 @@ static void wait_on_cpu_work(struct cpu_workqueue_struct *cwq, | |||
507 | } | 630 | } |
508 | spin_unlock_irq(&cwq->lock); | 631 | spin_unlock_irq(&cwq->lock); |
509 | 632 | ||
510 | if (unlikely(running)) | 633 | if (unlikely(running)) { |
511 | wait_for_completion(&barr.done); | 634 | wait_for_completion(&barr.done); |
635 | destroy_work_on_stack(&barr.work); | ||
636 | } | ||
512 | } | 637 | } |
513 | 638 | ||
514 | static void wait_on_work(struct work_struct *work) | 639 | static void wait_on_work(struct work_struct *work) |