diff options
Diffstat (limited to 'kernel/user_namespace.c')
-rw-r--r-- | kernel/user_namespace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/user_namespace.c b/kernel/user_namespace.c index fcc02560fd6b..aa312b0dc3ec 100644 --- a/kernel/user_namespace.c +++ b/kernel/user_namespace.c | |||
@@ -526,21 +526,21 @@ static void m_stop(struct seq_file *seq, void *v) | |||
526 | return; | 526 | return; |
527 | } | 527 | } |
528 | 528 | ||
529 | struct seq_operations proc_uid_seq_operations = { | 529 | const struct seq_operations proc_uid_seq_operations = { |
530 | .start = uid_m_start, | 530 | .start = uid_m_start, |
531 | .stop = m_stop, | 531 | .stop = m_stop, |
532 | .next = m_next, | 532 | .next = m_next, |
533 | .show = uid_m_show, | 533 | .show = uid_m_show, |
534 | }; | 534 | }; |
535 | 535 | ||
536 | struct seq_operations proc_gid_seq_operations = { | 536 | const struct seq_operations proc_gid_seq_operations = { |
537 | .start = gid_m_start, | 537 | .start = gid_m_start, |
538 | .stop = m_stop, | 538 | .stop = m_stop, |
539 | .next = m_next, | 539 | .next = m_next, |
540 | .show = gid_m_show, | 540 | .show = gid_m_show, |
541 | }; | 541 | }; |
542 | 542 | ||
543 | struct seq_operations proc_projid_seq_operations = { | 543 | const struct seq_operations proc_projid_seq_operations = { |
544 | .start = projid_m_start, | 544 | .start = projid_m_start, |
545 | .stop = m_stop, | 545 | .stop = m_stop, |
546 | .next = m_next, | 546 | .next = m_next, |