Gentoo Archives: gentoo-commits

From: "Mike Pagano (mpagano)" <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] linux-patches r1684 - genpatches-2.6/trunk/2.6.33
Date: Wed, 24 Feb 2010 23:24:37
Message-Id: E1NkQal-0005K7-BY@stork.gentoo.org
1 Author: mpagano
2 Date: 2010-02-24 23:24:30 +0000 (Wed, 24 Feb 2010)
3 New Revision: 1684
4
5 Modified:
6 genpatches-2.6/trunk/2.6.33/0000_README
7 genpatches-2.6/trunk/2.6.33/4400_alpha-sysctl-uac.patch
8 Log:
9 Update to alpha unaligned access control patch
10
11 Modified: genpatches-2.6/trunk/2.6.33/0000_README
12 ===================================================================
13 --- genpatches-2.6/trunk/2.6.33/0000_README 2010-02-23 18:24:43 UTC (rev 1683)
14 +++ genpatches-2.6/trunk/2.6.33/0000_README 2010-02-24 23:24:30 UTC (rev 1684)
15 @@ -39,6 +39,10 @@
16 Individual Patch Descriptions:
17 --------------------------------------------------------------------------
18
19 +Patch: 4100_dm-bbr.patch
20 +From: EVMS 2.5.2
21 +Desc: Bad block relocation support for LiveCD users
22 +
23 Patch: 4200_fbcondecor-0.9.6.patch
24 From: http://dev.gentoo.org/~spock
25 Desc: Bootsplash successor by Michal Januszewski
26
27 Modified: genpatches-2.6/trunk/2.6.33/4400_alpha-sysctl-uac.patch
28 ===================================================================
29 --- genpatches-2.6/trunk/2.6.33/4400_alpha-sysctl-uac.patch 2010-02-23 18:24:43 UTC (rev 1683)
30 +++ genpatches-2.6/trunk/2.6.33/4400_alpha-sysctl-uac.patch 2010-02-24 23:24:30 UTC (rev 1684)
31 @@ -131,32 +131,33 @@
32 +#ifdef CONFIG_ALPHA_UAC_SYSCTL
33 + __initcall(init_uac_sysctl);
34 +#endif
35 -Index: linux-2.6.26-gentoo/kernel/sysctl.c
36 +Index: linux-2.6.33-gentoo/kernel/sysctl.c
37 ===================================================================
38 ---- linux-2.6.26-gentoo.orig/kernel/sysctl.c
39 -+++ linux-2.6.26-gentoo/kernel/sysctl.c
40 -@@ -177,6 +177,9 @@ extern struct ctl_table random_table[];
41 +--- a/kernel/sysctl.c 2010-02-24 17:52:58.000000000 -0500
42 ++++ b/kernel/sysctl.c 2010-02-24 17:57:49.000000000 -0500
43 +@@ -193,6 +193,10 @@ extern struct ctl_table random_table[];
44 #ifdef CONFIG_INOTIFY_USER
45 extern struct ctl_table inotify_table[];
46 #endif
47 +#ifdef CONFIG_ALPHA_UAC_SYSCTL
48 +extern struct ctl_table uac_table[];
49 +#endif
50 -
51 - #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT
52 - int sysctl_legacy_va_layout;
53 -@@ -832,6 +835,14 @@ static struct ctl_table kern_table[] = {
54 ++
55 + #ifdef CONFIG_EPOLL
56 + extern struct ctl_table epoll_table[];
57 + #endif
58 +@@ -940,6 +944,14 @@ static struct ctl_table kern_table[] = {
59 * NOTE: do not add new entries to this table unless you have read
60 * Documentation/sysctl/ctl_unnumbered.txt
61 */
62 +#ifdef CONFIG_ALPHA_UAC_SYSCTL
63 -+ {
64 -+ .ctl_name = CTL_UNNUMBERED,
65 -+ .procname = "uac",
66 -+ .mode = 0555,
67 -+ .child = uac_table,
68 -+ },
69 ++{
70 ++ .ctl_name = CTL_UNNUMBERED,
71 ++ .procname = "uac",
72 ++ .mode = 0555,
73 ++ .child = uac_table,
74 ++},
75 +#endif /* CONFIG_ALPHA_UAC_SYSCTL */
76 - { .ctl_name = 0 }
77 + { }
78 };