diff options
127 files changed, 2295 insertions, 1684 deletions
diff --git a/.gitignore b/.gitignore index b1f5b9df2ae1..e1d5c17c12c2 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -12,6 +12,9 @@ | |||
12 | *.ko | 12 | *.ko |
13 | *.so | 13 | *.so |
14 | *.mod.c | 14 | *.mod.c |
15 | *.i | ||
16 | *.lst | ||
17 | *.symtypes | ||
15 | 18 | ||
16 | # | 19 | # |
17 | # Top-level generic files | 20 | # Top-level generic files |
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches index 2cd7f02ffd0b..d42ab4c9e893 100644 --- a/Documentation/SubmittingPatches +++ b/Documentation/SubmittingPatches | |||
@@ -308,6 +308,8 @@ then you just add a line saying | |||
308 | 308 | ||
309 | Signed-off-by: Random J Developer <random@developer.example.org> | 309 | Signed-off-by: Random J Developer <random@developer.example.org> |
310 | 310 | ||
311 | using your real name (sorry, no pseudonyms or anonymous contributions.) | ||
312 | |||
311 | Some people also put extra tags at the end. They'll just be ignored for | 313 | Some people also put extra tags at the end. They'll just be ignored for |
312 | now, but you can do this to mark internal company procedures or just | 314 | now, but you can do this to mark internal company procedures or just |
313 | point out some special detail about the sign-off. | 315 | point out some special detail about the sign-off. |
diff --git a/Documentation/cciss.txt b/Documentation/cciss.txt index 15378422fc46..9c629ffa0e58 100644 --- a/Documentation/cciss.txt +++ b/Documentation/cciss.txt | |||
@@ -20,6 +20,7 @@ This driver is known to work with the following cards: | |||
20 | * SA P400i | 20 | * SA P400i |
21 | * SA E200 | 21 | * SA E200 |
22 | * SA E200i | 22 | * SA E200i |
23 | * SA E500 | ||
23 | 24 | ||
24 | If nodes are not already created in the /dev/cciss directory, run as root: | 25 | If nodes are not already created in the /dev/cciss directory, run as root: |
25 | 26 | ||
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index d1cd5f93e028..552507fe9a7e 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -281,3 +281,16 @@ Why: The deferred output hooks are a layering violation causing unusual | |||
281 | Who: Patrick McHardy <kaber@trash.net> | 281 | Who: Patrick McHardy <kaber@trash.net> |
282 | 282 | ||
283 | --------------------------- | 283 | --------------------------- |
284 | |||
285 | What: frame diverter | ||
286 | When: November 2006 | ||
287 | Why: The frame diverter is included in most distribution kernels, but is | ||
288 | broken. It does not correctly handle many things: | ||
289 | - IPV6 | ||
290 | - non-linear skb's | ||
291 | - network device RCU on removal | ||
292 | - input frames not correctly checked for protocol errors | ||
293 | It also adds allocation overhead even if not enabled. | ||
294 | It is not clear if anyone is still using it. | ||
295 | Who: Stephen Hemminger <shemminger@osdl.org> | ||
296 | |||
diff --git a/Documentation/i386/boot.txt b/Documentation/i386/boot.txt index 10312bebe55d..c51314b1a463 100644 --- a/Documentation/i386/boot.txt +++ b/Documentation/i386/boot.txt | |||
@@ -181,6 +181,7 @@ filled out, however: | |||
181 | 5 ELILO | 181 | 5 ELILO |
182 | 7 GRuB | 182 | 7 GRuB |
183 | 8 U-BOOT | 183 | 8 U-BOOT |
184 | 9 Xen | ||
184 | 185 | ||
185 | Please contact <hpa@zytor.com> if you need a bootloader ID | 186 | Please contact <hpa@zytor.com> if you need a bootloader ID |
186 | value assigned. | 187 | value assigned. |
diff --git a/Documentation/i386/zero-page.txt b/Documentation/i386/zero-page.txt index df28c7416781..c04a421f4a7c 100644 --- a/Documentation/i386/zero-page.txt +++ b/Documentation/i386/zero-page.txt | |||
@@ -63,6 +63,10 @@ Offset Type Description | |||
63 | 2 for bootsect-loader | 63 | 2 for bootsect-loader |
64 | 3 for SYSLINUX | 64 | 3 for SYSLINUX |
65 | 4 for ETHERBOOT | 65 | 4 for ETHERBOOT |
66 | 5 for ELILO | ||
67 | 7 for GRuB | ||
68 | 8 for U-BOOT | ||
69 | 9 for Xen | ||
66 | V = version | 70 | V = version |
67 | 0x211 char loadflags: | 71 | 0x211 char loadflags: |
68 | bit0 = 1: kernel is loaded high (bzImage) | 72 | bit0 = 1: kernel is loaded high (bzImage) |
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 7947cede8712..87a17337c7f6 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -697,6 +697,12 @@ running once the system is up. | |||
697 | ips= [HW,SCSI] Adaptec / IBM ServeRAID controller | 697 | ips= [HW,SCSI] Adaptec / IBM ServeRAID controller |
698 | See header of drivers/scsi/ips.c. | 698 | See header of drivers/scsi/ips.c. |
699 | 699 | ||
700 | ports= [IP_VS_FTP] IPVS ftp helper module | ||
701 | Default is 21. | ||
702 | Up to 8 (IP_VS_APP_MAX_PORTS) ports | ||
703 | may be specified. | ||
704 | Format: <port>,<port>.... | ||
705 | |||
700 | irqfixup [HW] | 706 | irqfixup [HW] |
701 | When an interrupt is not handled search all handlers | 707 | When an interrupt is not handled search all handlers |
702 | for it. Intended to get systems with badly broken | 708 | for it. Intended to get systems with badly broken |
diff --git a/Documentation/networking/ip-sysctl.txt b/Documentation/networking/ip-sysctl.txt index 3e0c017e7877..90ed78110fd4 100644 --- a/Documentation/networking/ip-sysctl.txt +++ b/Documentation/networking/ip-sysctl.txt | |||
@@ -102,9 +102,15 @@ inet_peer_gc_maxtime - INTEGER | |||
102 | TCP variables: | 102 | TCP variables: |
103 | 103 | ||
104 | tcp_abc - INTEGER | 104 | tcp_abc - INTEGER |
105 | Controls Appropriate Byte Count defined in RFC3465. If set to | 105 | Controls Appropriate Byte Count (ABC) defined in RFC3465. |
106 | 0 then does congestion avoid once per ack. 1 is conservative | 106 | ABC is a way of increasing congestion window (cwnd) more slowly |
107 | value, and 2 is more agressive. | 107 | in response to partial acknowledgments. |
108 | Possible values are: | ||
109 | 0 increase cwnd once per acknowledgment (no ABC) | ||
110 | 1 increase cwnd once per acknowledgment of full sized segment | ||
111 | 2 allow increase cwnd by two if acknowledgment is | ||
112 | of two segments to compensate for delayed acknowledgments. | ||
113 | Default: 0 (off) | ||
108 | 114 | ||
109 | tcp_syn_retries - INTEGER | 115 | tcp_syn_retries - INTEGER |
110 | Number of times initial SYNs for an active TCP connection attempt | 116 | Number of times initial SYNs for an active TCP connection attempt |
diff --git a/MAINTAINERS b/MAINTAINERS index 25cd7073a20b..a34c53c08742 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -416,7 +416,7 @@ S: Supported | |||
416 | ATM | 416 | ATM |
417 | P: Chas Williams | 417 | P: Chas Williams |
418 | M: chas@cmf.nrl.navy.mil | 418 | M: chas@cmf.nrl.navy.mil |
419 | L: linux-atm-general@lists.sourceforge.net | 419 | L: linux-atm-general@lists.sourceforge.net (subscribers-only) |
420 | W: http://linux-atm.sourceforge.net | 420 | W: http://linux-atm.sourceforge.net |
421 | S: Maintained | 421 | S: Maintained |
422 | 422 | ||
@@ -2810,6 +2810,14 @@ M: hadi@cyberus.ca | |||
2810 | L: netdev@vger.kernel.org | 2810 | L: netdev@vger.kernel.org |
2811 | S: Maintained | 2811 | S: Maintained |
2812 | 2812 | ||
2813 | TCP LOW PRIORITY MODULE | ||
2814 | P: Wong Hoi Sing, Edison | ||
2815 | M: hswong3i@gmail.com | ||
2816 | P: Hung Hing Lun, Mike | ||
2817 | M: hlhung3i@gmail.com | ||
2818 | W: http://tcp-lp-mod.sourceforge.net/ | ||
2819 | S: Maintained | ||
2820 | |||
2813 | TI OMAP RANDOM NUMBER GENERATOR SUPPORT | 2821 | TI OMAP RANDOM NUMBER GENERATOR SUPPORT |
2814 | P: Deepak Saxena | 2822 | P: Deepak Saxena |
2815 | M: dsaxena@plexity.net | 2823 | M: dsaxena@plexity.net |
@@ -889,7 +889,7 @@ depend dep: | |||
889 | 889 | ||
890 | # --------------------------------------------------------------------------- | 890 | # --------------------------------------------------------------------------- |
891 | # Kernel headers | 891 | # Kernel headers |
892 | INSTALL_HDR_PATH=$(MODLIB)/abi | 892 | INSTALL_HDR_PATH=$(objtree)/usr |
893 | export INSTALL_HDR_PATH | 893 | export INSTALL_HDR_PATH |
894 | 894 | ||
895 | PHONY += headers_install | 895 | PHONY += headers_install |
@@ -986,7 +986,7 @@ CLEAN_FILES += vmlinux System.map \ | |||
986 | .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map | 986 | .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map |
987 | 987 | ||
988 | # Directories & files removed with 'make mrproper' | 988 | # Directories & files removed with 'make mrproper' |
989 | MRPROPER_DIRS += include/config include2 | 989 | MRPROPER_DIRS += include/config include2 usr/include |
990 | MRPROPER_FILES += .config .config.old include/asm .version .old_version \ | 990 | MRPROPER_FILES += .config .config.old include/asm .version .old_version \ |
991 | include/linux/autoconf.h include/linux/version.h \ | 991 | include/linux/autoconf.h include/linux/version.h \ |
992 | include/linux/utsrelease.h \ | 992 | include/linux/utsrelease.h \ |
@@ -1077,7 +1077,7 @@ help: | |||
1077 | @echo ' kernelrelease - Output the release version string' | 1077 | @echo ' kernelrelease - Output the release version string' |
1078 | @echo ' kernelversion - Output the version stored in Makefile' | 1078 | @echo ' kernelversion - Output the version stored in Makefile' |
1079 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH' | 1079 | @echo ' headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH' |
1080 | @echo ' (default: /lib/modules/$$VERSION/abi)' | 1080 | @echo ' (default: $(INSTALL_HDR_PATH))' |
1081 | @echo '' | 1081 | @echo '' |
1082 | @echo 'Static analysers' | 1082 | @echo 'Static analysers' |
1083 | @echo ' checkstack - Generate a list of stack hogs' | 1083 | @echo ' checkstack - Generate a list of stack hogs' |
diff --git a/arch/arm/configs/pnx4008_defconfig b/arch/arm/configs/pnx4008_defconfig index 8a078d479d57..a4989f44baaa 100644 --- a/arch/arm/configs/pnx4008_defconfig +++ b/arch/arm/configs/pnx4008_defconfig | |||
@@ -1,14 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17-rc1 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Thu Apr 6 17:05:58 2006 | 4 | # Mon Sep 11 13:59:24 2006 |
5 | # | 5 | # |
6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
8 | CONFIG_GENERIC_HARDIRQS=y | ||
9 | CONFIG_HARDIRQS_SW_RESEND=y | ||
10 | CONFIG_GENERIC_IRQ_PROBE=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 11 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
9 | CONFIG_GENERIC_HWEIGHT=y | 12 | CONFIG_GENERIC_HWEIGHT=y |
10 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 13 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
11 | CONFIG_VECTORS_BASE=0xffff0000 | 14 | CONFIG_VECTORS_BASE=0xffff0000 |
15 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
12 | 16 | ||
13 | # | 17 | # |
14 | # Code maturity level options | 18 | # Code maturity level options |
@@ -28,6 +32,7 @@ CONFIG_SYSVIPC=y | |||
28 | CONFIG_POSIX_MQUEUE=y | 32 | CONFIG_POSIX_MQUEUE=y |
29 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
30 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
35 | # CONFIG_TASKSTATS is not set | ||
31 | CONFIG_SYSCTL=y | 36 | CONFIG_SYSCTL=y |
32 | CONFIG_AUDIT=y | 37 | CONFIG_AUDIT=y |
33 | # CONFIG_IKCONFIG is not set | 38 | # CONFIG_IKCONFIG is not set |
@@ -44,14 +49,15 @@ CONFIG_PRINTK=y | |||
44 | CONFIG_BUG=y | 49 | CONFIG_BUG=y |
45 | CONFIG_ELF_CORE=y | 50 | CONFIG_ELF_CORE=y |
46 | CONFIG_BASE_FULL=y | 51 | CONFIG_BASE_FULL=y |
52 | CONFIG_RT_MUTEXES=y | ||
47 | CONFIG_FUTEX=y | 53 | CONFIG_FUTEX=y |
48 | CONFIG_EPOLL=y | 54 | CONFIG_EPOLL=y |
49 | CONFIG_SHMEM=y | 55 | CONFIG_SHMEM=y |
50 | CONFIG_SLAB=y | 56 | CONFIG_SLAB=y |
57 | CONFIG_VM_EVENT_COUNTERS=y | ||
51 | # CONFIG_TINY_SHMEM is not set | 58 | # CONFIG_TINY_SHMEM is not set |
52 | CONFIG_BASE_SMALL=0 | 59 | CONFIG_BASE_SMALL=0 |
53 | # CONFIG_SLOB is not set | 60 | # CONFIG_SLOB is not set |
54 | CONFIG_OBSOLETE_INTERMODULE=m | ||
55 | 61 | ||
56 | # | 62 | # |
57 | # Loadable module support | 63 | # Loadable module support |
@@ -84,18 +90,26 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
84 | # | 90 | # |
85 | # System Type | 91 | # System Type |
86 | # | 92 | # |
93 | # CONFIG_ARCH_AAEC2000 is not set | ||
94 | # CONFIG_ARCH_INTEGRATOR is not set | ||
95 | # CONFIG_ARCH_REALVIEW is not set | ||
96 | # CONFIG_ARCH_VERSATILE is not set | ||
97 | # CONFIG_ARCH_AT91 is not set | ||
87 | # CONFIG_ARCH_CLPS7500 is not set | 98 | # CONFIG_ARCH_CLPS7500 is not set |
88 | # CONFIG_ARCH_CLPS711X is not set | 99 | # CONFIG_ARCH_CLPS711X is not set |
89 | # CONFIG_ARCH_CO285 is not set | 100 | # CONFIG_ARCH_CO285 is not set |
90 | # CONFIG_ARCH_EBSA110 is not set | 101 | # CONFIG_ARCH_EBSA110 is not set |
91 | # CONFIG_ARCH_EP93XX is not set | 102 | # CONFIG_ARCH_EP93XX is not set |
92 | # CONFIG_ARCH_FOOTBRIDGE is not set | 103 | # CONFIG_ARCH_FOOTBRIDGE is not set |
93 | # CONFIG_ARCH_INTEGRATOR is not set | 104 | # CONFIG_ARCH_NETX is not set |
105 | # CONFIG_ARCH_H720X is not set | ||
106 | # CONFIG_ARCH_IMX is not set | ||
94 | # CONFIG_ARCH_IOP3XX is not set | 107 | # CONFIG_ARCH_IOP3XX is not set |
95 | # CONFIG_ARCH_IXP4XX is not set | 108 | # CONFIG_ARCH_IXP4XX is not set |
96 | # CONFIG_ARCH_IXP2000 is not set | 109 | # CONFIG_ARCH_IXP2000 is not set |
97 | # CONFIG_ARCH_IXP23XX is not set | 110 | # CONFIG_ARCH_IXP23XX is not set |
98 | # CONFIG_ARCH_L7200 is not set | 111 | # CONFIG_ARCH_L7200 is not set |
112 | CONFIG_ARCH_PNX4008=y | ||
99 | # CONFIG_ARCH_PXA is not set | 113 | # CONFIG_ARCH_PXA is not set |
100 | # CONFIG_ARCH_RPC is not set | 114 | # CONFIG_ARCH_RPC is not set |
101 | # CONFIG_ARCH_SA1100 is not set | 115 | # CONFIG_ARCH_SA1100 is not set |
@@ -103,13 +117,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
103 | # CONFIG_ARCH_SHARK is not set | 117 | # CONFIG_ARCH_SHARK is not set |
104 | # CONFIG_ARCH_LH7A40X is not set | 118 | # CONFIG_ARCH_LH7A40X is not set |
105 | # CONFIG_ARCH_OMAP is not set | 119 | # CONFIG_ARCH_OMAP is not set |
106 | # CONFIG_ARCH_VERSATILE is not set | ||
107 | # CONFIG_ARCH_REALVIEW is not set | ||
108 | # CONFIG_ARCH_IMX is not set | ||
109 | # CONFIG_ARCH_H720X is not set | ||
110 | # CONFIG_ARCH_AAEC2000 is not set | ||
111 | # CONFIG_ARCH_AT91RM9200 is not set | ||
112 | CONFIG_ARCH_PNX4008=y | ||
113 | 120 | ||
114 | # | 121 | # |
115 | # Processor Type | 122 | # Processor Type |
@@ -138,15 +145,7 @@ CONFIG_ARM_THUMB=y | |||
138 | # | 145 | # |
139 | # PCCARD (PCMCIA/CardBus) support | 146 | # PCCARD (PCMCIA/CardBus) support |
140 | # | 147 | # |
141 | CONFIG_PCCARD=m | 148 | # CONFIG_PCCARD is not set |
142 | # CONFIG_PCMCIA_DEBUG is not set | ||
143 | CONFIG_PCMCIA=m | ||
144 | CONFIG_PCMCIA_LOAD_CIS=y | ||
145 | CONFIG_PCMCIA_IOCTL=y | ||
146 | |||
147 | # | ||
148 | # PC-card bridges | ||
149 | # | ||
150 | 149 | ||
151 | # | 150 | # |
152 | # Kernel Features | 151 | # Kernel Features |
@@ -164,13 +163,14 @@ CONFIG_FLATMEM=y | |||
164 | CONFIG_FLAT_NODE_MEM_MAP=y | 163 | CONFIG_FLAT_NODE_MEM_MAP=y |
165 | # CONFIG_SPARSEMEM_STATIC is not set | 164 | # CONFIG_SPARSEMEM_STATIC is not set |
166 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | 165 | CONFIG_SPLIT_PTLOCK_CPUS=4096 |
166 | # CONFIG_RESOURCES_64BIT is not set | ||
167 | CONFIG_ALIGNMENT_TRAP=y | 167 | CONFIG_ALIGNMENT_TRAP=y |
168 | 168 | ||
169 | # | 169 | # |
170 | # Boot options | 170 | # Boot options |
171 | # | 171 | # |
172 | CONFIG_ZBOOT_ROM_TEXT=0 | 172 | CONFIG_ZBOOT_ROM_TEXT=0x0 |
173 | CONFIG_ZBOOT_ROM_BSS=0 | 173 | CONFIG_ZBOOT_ROM_BSS=0x0 |
174 | CONFIG_CMDLINE="mem=64M console=ttyS0,115200" | 174 | CONFIG_CMDLINE="mem=64M console=ttyS0,115200" |
175 | # CONFIG_XIP_KERNEL is not set | 175 | # CONFIG_XIP_KERNEL is not set |
176 | 176 | ||
@@ -181,7 +181,8 @@ CONFIG_CMDLINE="mem=64M console=ttyS0,115200" | |||
181 | # | 181 | # |
182 | # At least one emulation must be selected | 182 | # At least one emulation must be selected |
183 | # | 183 | # |
184 | # CONFIG_FPE_NWFPE is not set | 184 | CONFIG_FPE_NWFPE=y |
185 | # CONFIG_FPE_NWFPE_XP is not set | ||
185 | # CONFIG_FPE_FASTFPE is not set | 186 | # CONFIG_FPE_FASTFPE is not set |
186 | # CONFIG_VFP is not set | 187 | # CONFIG_VFP is not set |
187 | 188 | ||
@@ -199,7 +200,7 @@ CONFIG_BINFMT_MISC=m | |||
199 | CONFIG_PM=y | 200 | CONFIG_PM=y |
200 | CONFIG_PM_LEGACY=y | 201 | CONFIG_PM_LEGACY=y |
201 | # CONFIG_PM_DEBUG is not set | 202 | # CONFIG_PM_DEBUG is not set |
202 | CONFIG_APM=m | 203 | # CONFIG_APM is not set |
203 | 204 | ||
204 | # | 205 | # |
205 | # Networking | 206 | # Networking |
@@ -210,12 +211,12 @@ CONFIG_NET=y | |||
210 | # Networking options | 211 | # Networking options |
211 | # | 212 | # |
212 | # CONFIG_NETDEBUG is not set | 213 | # CONFIG_NETDEBUG is not set |
213 | CONFIG_PACKET=m | 214 | CONFIG_PACKET=y |
214 | CONFIG_PACKET_MMAP=y | 215 | CONFIG_PACKET_MMAP=y |
215 | CONFIG_UNIX=m | 216 | CONFIG_UNIX=y |
216 | CONFIG_XFRM=y | 217 | CONFIG_XFRM=y |
217 | CONFIG_XFRM_USER=m | 218 | # CONFIG_XFRM_USER is not set |
218 | CONFIG_NET_KEY=m | 219 | # CONFIG_NET_KEY is not set |
219 | CONFIG_INET=y | 220 | CONFIG_INET=y |
220 | CONFIG_IP_MULTICAST=y | 221 | CONFIG_IP_MULTICAST=y |
221 | CONFIG_IP_ADVANCED_ROUTER=y | 222 | CONFIG_IP_ADVANCED_ROUTER=y |
@@ -227,10 +228,12 @@ CONFIG_IP_ROUTE_FWMARK=y | |||
227 | CONFIG_IP_ROUTE_MULTIPATH=y | 228 | CONFIG_IP_ROUTE_MULTIPATH=y |
228 | # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set | 229 | # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set |
229 | CONFIG_IP_ROUTE_VERBOSE=y | 230 | CONFIG_IP_ROUTE_VERBOSE=y |
230 | # CONFIG_IP_PNP is not set | 231 | CONFIG_IP_PNP=y |
231 | CONFIG_NET_IPIP=m | 232 | CONFIG_IP_PNP_DHCP=y |
232 | CONFIG_NET_IPGRE=m | 233 | CONFIG_IP_PNP_BOOTP=y |
233 | CONFIG_NET_IPGRE_BROADCAST=y | 234 | # CONFIG_IP_PNP_RARP is not set |
235 | # CONFIG_NET_IPIP is not set | ||
236 | # CONFIG_NET_IPGRE is not set | ||
234 | CONFIG_IP_MROUTE=y | 237 | CONFIG_IP_MROUTE=y |
235 | CONFIG_IP_PIMSM_V1=y | 238 | CONFIG_IP_PIMSM_V1=y |
236 | CONFIG_IP_PIMSM_V2=y | 239 | CONFIG_IP_PIMSM_V2=y |
@@ -241,6 +244,8 @@ CONFIG_INET_ESP=m | |||
241 | CONFIG_INET_IPCOMP=m | 244 | CONFIG_INET_IPCOMP=m |
242 | CONFIG_INET_XFRM_TUNNEL=m | 245 | CONFIG_INET_XFRM_TUNNEL=m |
243 | CONFIG_INET_TUNNEL=m | 246 | CONFIG_INET_TUNNEL=m |
247 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
248 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
244 | CONFIG_INET_DIAG=y | 249 | CONFIG_INET_DIAG=y |
245 | CONFIG_INET_TCP_DIAG=y | 250 | CONFIG_INET_TCP_DIAG=y |
246 | # CONFIG_TCP_CONG_ADVANCED is not set | 251 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -287,7 +292,10 @@ CONFIG_INET6_ESP=m | |||
287 | CONFIG_INET6_IPCOMP=m | 292 | CONFIG_INET6_IPCOMP=m |
288 | CONFIG_INET6_XFRM_TUNNEL=m | 293 | CONFIG_INET6_XFRM_TUNNEL=m |
289 | CONFIG_INET6_TUNNEL=m | 294 | CONFIG_INET6_TUNNEL=m |
295 | CONFIG_INET6_XFRM_MODE_TRANSPORT=m | ||
296 | CONFIG_INET6_XFRM_MODE_TUNNEL=m | ||
290 | CONFIG_IPV6_TUNNEL=m | 297 | CONFIG_IPV6_TUNNEL=m |
298 | # CONFIG_NETWORK_SECMARK is not set | ||
291 | CONFIG_NETFILTER=y | 299 | CONFIG_NETFILTER=y |
292 | # CONFIG_NETFILTER_DEBUG is not set | 300 | # CONFIG_NETFILTER_DEBUG is not set |
293 | CONFIG_BRIDGE_NETFILTER=y | 301 | CONFIG_BRIDGE_NETFILTER=y |
@@ -313,6 +321,7 @@ CONFIG_IP_NF_TFTP=m | |||
313 | CONFIG_IP_NF_AMANDA=m | 321 | CONFIG_IP_NF_AMANDA=m |
314 | # CONFIG_IP_NF_PPTP is not set | 322 | # CONFIG_IP_NF_PPTP is not set |
315 | # CONFIG_IP_NF_H323 is not set | 323 | # CONFIG_IP_NF_H323 is not set |
324 | # CONFIG_IP_NF_SIP is not set | ||
316 | CONFIG_IP_NF_QUEUE=m | 325 | CONFIG_IP_NF_QUEUE=m |
317 | 326 | ||
318 | # | 327 | # |
@@ -384,7 +393,7 @@ CONFIG_LLC2=m | |||
384 | CONFIG_IPX=m | 393 | CONFIG_IPX=m |
385 | # CONFIG_IPX_INTERN is not set | 394 | # CONFIG_IPX_INTERN is not set |
386 | CONFIG_ATALK=m | 395 | CONFIG_ATALK=m |
387 | CONFIG_DEV_APPLETALK=y | 396 | CONFIG_DEV_APPLETALK=m |
388 | CONFIG_IPDDP=m | 397 | CONFIG_IPDDP=m |
389 | CONFIG_IPDDP_ENCAP=y | 398 | CONFIG_IPDDP_ENCAP=y |
390 | CONFIG_IPDDP_DECAP=y | 399 | CONFIG_IPDDP_DECAP=y |
@@ -445,110 +454,9 @@ CONFIG_NET_ESTIMATOR=y | |||
445 | # Network testing | 454 | # Network testing |
446 | # | 455 | # |
447 | CONFIG_NET_PKTGEN=m | 456 | CONFIG_NET_PKTGEN=m |
448 | CONFIG_HAMRADIO=y | 457 | # CONFIG_HAMRADIO is not set |
449 | 458 | # CONFIG_IRDA is not set | |
450 | # | 459 | # CONFIG_BT is not set |
451 | # Packet Radio protocols | ||
452 | # | ||
453 | CONFIG_AX25=m | ||
454 | # CONFIG_AX25_DAMA_SLAVE is not set | ||
455 | CONFIG_NETROM=m | ||
456 | CONFIG_ROSE=m | ||
457 | |||
458 | # | ||
459 | # AX.25 network device drivers | ||
460 | # | ||
461 | CONFIG_MKISS=m | ||
462 | CONFIG_6PACK=m | ||
463 | CONFIG_BPQETHER=m | ||
464 | CONFIG_BAYCOM_SER_FDX=m | ||
465 | CONFIG_BAYCOM_SER_HDX=m | ||
466 | CONFIG_BAYCOM_PAR=m | ||
467 | CONFIG_BAYCOM_EPP=m | ||
468 | CONFIG_YAM=m | ||
469 | CONFIG_IRDA=m | ||
470 | |||
471 | # | ||
472 | # IrDA protocols | ||
473 | # | ||
474 | CONFIG_IRLAN=m | ||
475 | CONFIG_IRNET=m | ||
476 | CONFIG_IRCOMM=m | ||
477 | # CONFIG_IRDA_ULTRA is not set | ||
478 | |||
479 | # | ||
480 | # IrDA options | ||
481 | # | ||
482 | CONFIG_IRDA_CACHE_LAST_LSAP=y | ||
483 | CONFIG_IRDA_FAST_RR=y | ||
484 | CONFIG_IRDA_DEBUG=y | ||
485 | |||
486 | # | ||
487 | # Infrared-port device drivers | ||
488 | # | ||
489 | |||
490 | # | ||
491 | # SIR device drivers | ||
492 | # | ||
493 | CONFIG_IRTTY_SIR=m | ||
494 | |||
495 | # | ||
496 | # Dongle support | ||
497 | # | ||
498 | CONFIG_DONGLE=y | ||
499 | CONFIG_ESI_DONGLE=m | ||
500 | CONFIG_ACTISYS_DONGLE=m | ||
501 | CONFIG_TEKRAM_DONGLE=m | ||
502 | # CONFIG_TOIM3232_DONGLE is not set | ||
503 | CONFIG_LITELINK_DONGLE=m | ||
504 | CONFIG_MA600_DONGLE=m | ||
505 | CONFIG_GIRBIL_DONGLE=m | ||
506 | CONFIG_MCP2120_DONGLE=m | ||
507 | CONFIG_OLD_BELKIN_DONGLE=m | ||
508 | CONFIG_ACT200L_DONGLE=m | ||
509 | |||
510 | # | ||
511 | # Old SIR device drivers | ||
512 | # | ||
513 | CONFIG_IRPORT_SIR=m | ||
514 | |||
515 | # | ||
516 | # Old Serial dongle support | ||
517 | # | ||
518 | # CONFIG_DONGLE_OLD is not set | ||
519 | |||
520 | # | ||
521 | # FIR device drivers | ||
522 | # | ||
523 | CONFIG_USB_IRDA=m | ||
524 | CONFIG_SIGMATEL_FIR=m | ||
525 | CONFIG_BT=m | ||
526 | CONFIG_BT_L2CAP=m | ||
527 | CONFIG_BT_SCO=m | ||
528 | CONFIG_BT_RFCOMM=m | ||
529 | CONFIG_BT_RFCOMM_TTY=y | ||
530 | CONFIG_BT_BNEP=m | ||
531 | CONFIG_BT_BNEP_MC_FILTER=y | ||
532 | CONFIG_BT_BNEP_PROTO_FILTER=y | ||
533 | CONFIG_BT_CMTP=m | ||
534 | CONFIG_BT_HIDP=m | ||
535 | |||
536 | # | ||
537 | # Bluetooth device drivers | ||
538 | # | ||
539 | CONFIG_BT_HCIUSB=m | ||
540 | CONFIG_BT_HCIUSB_SCO=y | ||
541 | CONFIG_BT_HCIUART=m | ||
542 | CONFIG_BT_HCIUART_H4=y | ||
543 | CONFIG_BT_HCIUART_BCSP=y | ||
544 | CONFIG_BT_HCIBCM203X=m | ||
545 | # CONFIG_BT_HCIBPA10X is not set | ||
546 | CONFIG_BT_HCIBFUSB=m | ||
547 | CONFIG_BT_HCIDTL1=m | ||
548 | CONFIG_BT_HCIBT3C=m | ||
549 | CONFIG_BT_HCIBLUECARD=m | ||
550 | CONFIG_BT_HCIBTUART=m | ||
551 | CONFIG_BT_HCIVHCI=m | ||
552 | CONFIG_IEEE80211=m | 460 | CONFIG_IEEE80211=m |
553 | # CONFIG_IEEE80211_DEBUG is not set | 461 | # CONFIG_IEEE80211_DEBUG is not set |
554 | # CONFIG_IEEE80211_CRYPT_WEP is not set | 462 | # CONFIG_IEEE80211_CRYPT_WEP is not set |
@@ -566,8 +474,9 @@ CONFIG_WIRELESS_EXT=y | |||
566 | # | 474 | # |
567 | CONFIG_STANDALONE=y | 475 | CONFIG_STANDALONE=y |
568 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 476 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
569 | CONFIG_FW_LOADER=m | 477 | CONFIG_FW_LOADER=y |
570 | # CONFIG_DEBUG_DRIVER is not set | 478 | # CONFIG_DEBUG_DRIVER is not set |
479 | # CONFIG_SYS_HYPERVISOR is not set | ||
571 | 480 | ||
572 | # | 481 | # |
573 | # Connector - unified userspace <-> kernelspace linker | 482 | # Connector - unified userspace <-> kernelspace linker |
@@ -577,11 +486,11 @@ CONFIG_FW_LOADER=m | |||
577 | # | 486 | # |
578 | # Memory Technology Devices (MTD) | 487 | # Memory Technology Devices (MTD) |
579 | # | 488 | # |
580 | CONFIG_MTD=m | 489 | CONFIG_MTD=y |
581 | # CONFIG_MTD_DEBUG is not set | 490 | # CONFIG_MTD_DEBUG is not set |
582 | CONFIG_MTD_CONCAT=m | 491 | CONFIG_MTD_CONCAT=y |
583 | CONFIG_MTD_PARTITIONS=y | 492 | CONFIG_MTD_PARTITIONS=y |
584 | CONFIG_MTD_REDBOOT_PARTS=m | 493 | CONFIG_MTD_REDBOOT_PARTS=y |
585 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | 494 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 |
586 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | 495 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set |
587 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | 496 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set |
@@ -591,22 +500,18 @@ CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | |||
591 | # | 500 | # |
592 | # User Modules And Translation Layers | 501 | # User Modules And Translation Layers |
593 | # | 502 | # |
594 | CONFIG_MTD_CHAR=m | 503 | CONFIG_MTD_CHAR=y |
595 | CONFIG_MTD_BLOCK=m | 504 | CONFIG_MTD_BLOCK=y |
596 | CONFIG_MTD_BLOCK_RO=m | 505 | # CONFIG_FTL is not set |
597 | CONFIG_FTL=m | 506 | # CONFIG_NFTL is not set |
598 | CONFIG_NFTL=m | 507 | # CONFIG_INFTL is not set |
599 | CONFIG_NFTL_RW=y | ||
600 | CONFIG_INFTL=m | ||
601 | # CONFIG_RFD_FTL is not set | 508 | # CONFIG_RFD_FTL is not set |
602 | 509 | ||
603 | # | 510 | # |
604 | # RAM/ROM/Flash chip drivers | 511 | # RAM/ROM/Flash chip drivers |
605 | # | 512 | # |
606 | CONFIG_MTD_CFI=m | 513 | # CONFIG_MTD_CFI is not set |
607 | CONFIG_MTD_JEDECPROBE=m | 514 | # CONFIG_MTD_JEDECPROBE is not set |
608 | CONFIG_MTD_GEN_PROBE=m | ||
609 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
610 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | 515 | CONFIG_MTD_MAP_BANK_WIDTH_1=y |
611 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | 516 | CONFIG_MTD_MAP_BANK_WIDTH_2=y |
612 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | 517 | CONFIG_MTD_MAP_BANK_WIDTH_4=y |
@@ -617,36 +522,27 @@ CONFIG_MTD_CFI_I1=y | |||
617 | CONFIG_MTD_CFI_I2=y | 522 | CONFIG_MTD_CFI_I2=y |
618 | # CONFIG_MTD_CFI_I4 is not set | 523 | # CONFIG_MTD_CFI_I4 is not set |
619 | # CONFIG_MTD_CFI_I8 is not set | 524 | # CONFIG_MTD_CFI_I8 is not set |
620 | CONFIG_MTD_CFI_INTELEXT=m | 525 | # CONFIG_MTD_RAM is not set |
621 | CONFIG_MTD_CFI_AMDSTD=m | 526 | # CONFIG_MTD_ROM is not set |
622 | CONFIG_MTD_CFI_STAA=m | 527 | # CONFIG_MTD_ABSENT is not set |
623 | CONFIG_MTD_CFI_UTIL=m | ||
624 | CONFIG_MTD_RAM=m | ||
625 | CONFIG_MTD_ROM=m | ||
626 | CONFIG_MTD_ABSENT=m | ||
627 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | 528 | # CONFIG_MTD_OBSOLETE_CHIPS is not set |
628 | 529 | ||
629 | # | 530 | # |
630 | # Mapping drivers for chip access | 531 | # Mapping drivers for chip access |
631 | # | 532 | # |
632 | CONFIG_MTD_COMPLEX_MAPPINGS=y | 533 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
633 | CONFIG_MTD_PHYSMAP=m | ||
634 | CONFIG_MTD_PHYSMAP_START=0x8000000 | ||
635 | CONFIG_MTD_PHYSMAP_LEN=0x4000000 | ||
636 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
637 | # CONFIG_MTD_ARM_INTEGRATOR is not set | ||
638 | # CONFIG_MTD_IMPA7 is not set | ||
639 | # CONFIG_MTD_PLATRAM is not set | 534 | # CONFIG_MTD_PLATRAM is not set |
640 | 535 | ||
641 | # | 536 | # |
642 | # Self-contained MTD device drivers | 537 | # Self-contained MTD device drivers |
643 | # | 538 | # |
539 | # CONFIG_MTD_DATAFLASH is not set | ||
540 | # CONFIG_MTD_M25P80 is not set | ||
644 | CONFIG_MTD_SLRAM=m | 541 | CONFIG_MTD_SLRAM=m |
645 | CONFIG_MTD_PHRAM=m | 542 | CONFIG_MTD_PHRAM=m |
646 | CONFIG_MTD_MTDRAM=m | 543 | CONFIG_MTD_MTDRAM=m |
647 | CONFIG_MTDRAM_TOTAL_SIZE=4096 | 544 | CONFIG_MTDRAM_TOTAL_SIZE=4096 |
648 | CONFIG_MTDRAM_ERASE_SIZE=128 | 545 | CONFIG_MTDRAM_ERASE_SIZE=128 |
649 | CONFIG_MTD_BLKMTD=m | ||
650 | # CONFIG_MTD_BLOCK2MTD is not set | 546 | # CONFIG_MTD_BLOCK2MTD is not set |
651 | 547 | ||
652 | # | 548 | # |
@@ -663,14 +559,12 @@ CONFIG_MTD_DOCPROBE_ADDRESS=0 | |||
663 | # | 559 | # |
664 | # NAND Flash Device Drivers | 560 | # NAND Flash Device Drivers |
665 | # | 561 | # |
666 | CONFIG_MTD_NAND=m | 562 | CONFIG_MTD_NAND=y |
667 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set | 563 | # CONFIG_MTD_NAND_VERIFY_WRITE is not set |
668 | CONFIG_MTD_NAND_IDS=m | 564 | # CONFIG_MTD_NAND_ECC_SMC is not set |
669 | CONFIG_MTD_NAND_DISKONCHIP=m | 565 | CONFIG_MTD_NAND_IDS=y |
670 | # CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set | 566 | # CONFIG_MTD_NAND_DISKONCHIP is not set |
671 | CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 | 567 | CONFIG_MTD_NAND_NANDSIM=m |
672 | # CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set | ||
673 | # CONFIG_MTD_NAND_NANDSIM is not set | ||
674 | 568 | ||
675 | # | 569 | # |
676 | # OneNAND Flash Device Drivers | 570 | # OneNAND Flash Device Drivers |
@@ -680,15 +574,7 @@ CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 | |||
680 | # | 574 | # |
681 | # Parallel port support | 575 | # Parallel port support |
682 | # | 576 | # |
683 | CONFIG_PARPORT=m | 577 | # CONFIG_PARPORT is not set |
684 | CONFIG_PARPORT_PC=m | ||
685 | CONFIG_PARPORT_PC_FIFO=y | ||
686 | # CONFIG_PARPORT_PC_SUPERIO is not set | ||
687 | CONFIG_PARPORT_PC_PCMCIA=m | ||
688 | CONFIG_PARPORT_NOT_PC=y | ||
689 | # CONFIG_PARPORT_ARC is not set | ||
690 | # CONFIG_PARPORT_GSC is not set | ||
691 | CONFIG_PARPORT_1284=y | ||
692 | 578 | ||
693 | # | 579 | # |
694 | # Plug and Play support | 580 | # Plug and Play support |
@@ -697,45 +583,15 @@ CONFIG_PARPORT_1284=y | |||
697 | # | 583 | # |
698 | # Block devices | 584 | # Block devices |
699 | # | 585 | # |
700 | CONFIG_PARIDE=m | ||
701 | CONFIG_PARIDE_PARPORT=m | ||
702 | |||
703 | # | ||
704 | # Parallel IDE high-level drivers | ||
705 | # | ||
706 | CONFIG_PARIDE_PD=m | ||
707 | CONFIG_PARIDE_PCD=m | ||
708 | CONFIG_PARIDE_PF=m | ||
709 | CONFIG_PARIDE_PT=m | ||
710 | CONFIG_PARIDE_PG=m | ||
711 | |||
712 | # | ||
713 | # Parallel IDE protocol modules | ||
714 | # | ||
715 | CONFIG_PARIDE_ATEN=m | ||
716 | CONFIG_PARIDE_BPCK=m | ||
717 | CONFIG_PARIDE_BPCK6=m | ||
718 | CONFIG_PARIDE_COMM=m | ||
719 | CONFIG_PARIDE_DSTR=m | ||
720 | CONFIG_PARIDE_FIT2=m | ||
721 | CONFIG_PARIDE_FIT3=m | ||
722 | CONFIG_PARIDE_EPAT=m | ||
723 | # CONFIG_PARIDE_EPATC8 is not set | ||
724 | CONFIG_PARIDE_EPIA=m | ||
725 | CONFIG_PARIDE_FRIQ=m | ||
726 | CONFIG_PARIDE_FRPW=m | ||
727 | CONFIG_PARIDE_KBIC=m | ||
728 | CONFIG_PARIDE_KTTI=m | ||
729 | CONFIG_PARIDE_ON20=m | ||
730 | CONFIG_PARIDE_ON26=m | ||
731 | # CONFIG_BLK_DEV_COW_COMMON is not set | 586 | # CONFIG_BLK_DEV_COW_COMMON is not set |
732 | CONFIG_BLK_DEV_LOOP=m | 587 | CONFIG_BLK_DEV_LOOP=y |
733 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 588 | CONFIG_BLK_DEV_CRYPTOLOOP=y |
734 | CONFIG_BLK_DEV_NBD=m | 589 | CONFIG_BLK_DEV_NBD=y |
735 | # CONFIG_BLK_DEV_UB is not set | 590 | # CONFIG_BLK_DEV_UB is not set |
736 | CONFIG_BLK_DEV_RAM=y | 591 | CONFIG_BLK_DEV_RAM=y |
737 | CONFIG_BLK_DEV_RAM_COUNT=16 | 592 | CONFIG_BLK_DEV_RAM_COUNT=16 |
738 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 593 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
594 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
739 | CONFIG_BLK_DEV_INITRD=y | 595 | CONFIG_BLK_DEV_INITRD=y |
740 | CONFIG_CDROM_PKTCDVD=m | 596 | CONFIG_CDROM_PKTCDVD=m |
741 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 | 597 | CONFIG_CDROM_PKTCDVD_BUFFERS=8 |
@@ -743,34 +599,6 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
743 | # CONFIG_ATA_OVER_ETH is not set | 599 | # CONFIG_ATA_OVER_ETH is not set |
744 | 600 | ||
745 | # | 601 | # |
746 | # ATA/ATAPI/MFM/RLL support | ||
747 | # | ||
748 | CONFIG_IDE=m | ||
749 | CONFIG_BLK_DEV_IDE=m | ||
750 | |||
751 | # | ||
752 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
753 | # | ||
754 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
755 | CONFIG_BLK_DEV_IDEDISK=m | ||
756 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
757 | CONFIG_BLK_DEV_IDECS=m | ||
758 | CONFIG_BLK_DEV_IDECD=m | ||
759 | CONFIG_BLK_DEV_IDETAPE=m | ||
760 | CONFIG_BLK_DEV_IDEFLOPPY=m | ||
761 | CONFIG_BLK_DEV_IDESCSI=m | ||
762 | # CONFIG_IDE_TASK_IOCTL is not set | ||
763 | |||
764 | # | ||
765 | # IDE chipset support/bugfixes | ||
766 | # | ||
767 | CONFIG_IDE_GENERIC=m | ||
768 | # CONFIG_IDE_ARM is not set | ||
769 | # CONFIG_BLK_DEV_IDEDMA is not set | ||
770 | # CONFIG_IDEDMA_AUTO is not set | ||
771 | # CONFIG_BLK_DEV_HD is not set | ||
772 | |||
773 | # | ||
774 | # SCSI device support | 602 | # SCSI device support |
775 | # | 603 | # |
776 | # CONFIG_RAID_ATTRS is not set | 604 | # CONFIG_RAID_ATTRS is not set |
@@ -808,41 +636,12 @@ CONFIG_SCSI_FC_ATTRS=m | |||
808 | # | 636 | # |
809 | # CONFIG_ISCSI_TCP is not set | 637 | # CONFIG_ISCSI_TCP is not set |
810 | CONFIG_SCSI_SATA=m | 638 | CONFIG_SCSI_SATA=m |
811 | CONFIG_SCSI_PPA=m | ||
812 | CONFIG_SCSI_IMM=m | ||
813 | # CONFIG_SCSI_IZIP_EPP16 is not set | ||
814 | # CONFIG_SCSI_IZIP_SLOW_CTR is not set | ||
815 | CONFIG_SCSI_DEBUG=m | 639 | CONFIG_SCSI_DEBUG=m |
816 | 640 | ||
817 | # | 641 | # |
818 | # PCMCIA SCSI adapter support | ||
819 | # | ||
820 | CONFIG_PCMCIA_AHA152X=m | ||
821 | CONFIG_PCMCIA_FDOMAIN=m | ||
822 | CONFIG_PCMCIA_NINJA_SCSI=m | ||
823 | CONFIG_PCMCIA_QLOGIC=m | ||
824 | CONFIG_PCMCIA_SYM53C500=m | ||
825 | |||
826 | # | ||
827 | # Multi-device support (RAID and LVM) | 642 | # Multi-device support (RAID and LVM) |
828 | # | 643 | # |
829 | CONFIG_MD=y | 644 | # CONFIG_MD is not set |
830 | CONFIG_BLK_DEV_MD=m | ||
831 | CONFIG_MD_LINEAR=m | ||
832 | CONFIG_MD_RAID0=m | ||
833 | CONFIG_MD_RAID1=m | ||
834 | CONFIG_MD_RAID10=m | ||
835 | CONFIG_MD_RAID5=m | ||
836 | # CONFIG_MD_RAID5_RESHAPE is not set | ||
837 | CONFIG_MD_RAID6=m | ||
838 | CONFIG_MD_MULTIPATH=m | ||
839 | CONFIG_MD_FAULTY=m | ||
840 | CONFIG_BLK_DEV_DM=m | ||
841 | CONFIG_DM_CRYPT=m | ||
842 | CONFIG_DM_SNAPSHOT=m | ||
843 | CONFIG_DM_MIRROR=m | ||
844 | CONFIG_DM_ZERO=m | ||
845 | # CONFIG_DM_MULTIPATH is not set | ||
846 | 645 | ||
847 | # | 646 | # |
848 | # Fusion MPT device support | 647 | # Fusion MPT device support |
@@ -878,9 +677,6 @@ CONFIG_NET_ETHERNET=y | |||
878 | CONFIG_MII=m | 677 | CONFIG_MII=m |
879 | # CONFIG_SMC91X is not set | 678 | # CONFIG_SMC91X is not set |
880 | # CONFIG_DM9000 is not set | 679 | # CONFIG_DM9000 is not set |
881 | CONFIG_NET_POCKET=y | ||
882 | CONFIG_DE600=m | ||
883 | CONFIG_DE620=m | ||
884 | 680 | ||
885 | # | 681 | # |
886 | # Ethernet (1000 Mbit) | 682 | # Ethernet (1000 Mbit) |
@@ -904,49 +700,13 @@ CONFIG_NET_RADIO=y | |||
904 | # Obsolete Wireless cards support (pre-802.11) | 700 | # Obsolete Wireless cards support (pre-802.11) |
905 | # | 701 | # |
906 | CONFIG_STRIP=m | 702 | CONFIG_STRIP=m |
907 | CONFIG_PCMCIA_WAVELAN=m | 703 | # CONFIG_USB_ZD1201 is not set |
908 | CONFIG_PCMCIA_NETWAVE=m | ||
909 | |||
910 | # | ||
911 | # Wireless 802.11 Frequency Hopping cards support | ||
912 | # | ||
913 | CONFIG_PCMCIA_RAYCS=m | ||
914 | |||
915 | # | ||
916 | # Wireless 802.11b ISA/PCI cards support | ||
917 | # | ||
918 | CONFIG_HERMES=m | ||
919 | CONFIG_ATMEL=m | ||
920 | |||
921 | # | ||
922 | # Wireless 802.11b Pcmcia/Cardbus cards support | ||
923 | # | ||
924 | CONFIG_PCMCIA_HERMES=m | ||
925 | # CONFIG_PCMCIA_SPECTRUM is not set | ||
926 | CONFIG_AIRO_CS=m | ||
927 | CONFIG_PCMCIA_ATMEL=m | ||
928 | CONFIG_PCMCIA_WL3501=m | ||
929 | # CONFIG_HOSTAP is not set | 704 | # CONFIG_HOSTAP is not set |
930 | CONFIG_NET_WIRELESS=y | ||
931 | |||
932 | # | ||
933 | # PCMCIA network device support | ||
934 | # | ||
935 | CONFIG_NET_PCMCIA=y | ||
936 | CONFIG_PCMCIA_3C589=m | ||
937 | CONFIG_PCMCIA_3C574=m | ||
938 | CONFIG_PCMCIA_FMVJ18X=m | ||
939 | CONFIG_PCMCIA_PCNET=m | ||
940 | CONFIG_PCMCIA_NMCLAN=m | ||
941 | CONFIG_PCMCIA_SMC91C92=m | ||
942 | CONFIG_PCMCIA_XIRC2PS=m | ||
943 | CONFIG_PCMCIA_AXNET=m | ||
944 | 705 | ||
945 | # | 706 | # |
946 | # Wan interfaces | 707 | # Wan interfaces |
947 | # | 708 | # |
948 | CONFIG_WAN=y | 709 | CONFIG_WAN=y |
949 | CONFIG_SYNCLINK_SYNCPPP=m | ||
950 | CONFIG_HDLC=m | 710 | CONFIG_HDLC=m |
951 | CONFIG_HDLC_RAW=y | 711 | CONFIG_HDLC_RAW=y |
952 | CONFIG_HDLC_RAW_ETH=y | 712 | CONFIG_HDLC_RAW_ETH=y |
@@ -966,7 +726,6 @@ CONFIG_X25_ASY=m | |||
966 | # | 726 | # |
967 | # CONFIG_ATM_DUMMY is not set | 727 | # CONFIG_ATM_DUMMY is not set |
968 | CONFIG_ATM_TCP=m | 728 | CONFIG_ATM_TCP=m |
969 | CONFIG_PLIP=m | ||
970 | CONFIG_PPP=m | 729 | CONFIG_PPP=m |
971 | CONFIG_PPP_MULTILINK=y | 730 | CONFIG_PPP_MULTILINK=y |
972 | CONFIG_PPP_FILTER=y | 731 | CONFIG_PPP_FILTER=y |
@@ -991,114 +750,7 @@ CONFIG_NET_POLL_CONTROLLER=y | |||
991 | # | 750 | # |
992 | # ISDN subsystem | 751 | # ISDN subsystem |
993 | # | 752 | # |
994 | CONFIG_ISDN=m | 753 | # CONFIG_ISDN is not set |
995 | |||
996 | # | ||
997 | # Old ISDN4Linux | ||
998 | # | ||
999 | CONFIG_ISDN_I4L=m | ||
1000 | CONFIG_ISDN_PPP=y | ||
1001 | CONFIG_ISDN_PPP_VJ=y | ||
1002 | CONFIG_ISDN_MPP=y | ||
1003 | CONFIG_IPPP_FILTER=y | ||
1004 | CONFIG_ISDN_PPP_BSDCOMP=m | ||
1005 | CONFIG_ISDN_AUDIO=y | ||
1006 | CONFIG_ISDN_TTY_FAX=y | ||
1007 | CONFIG_ISDN_X25=y | ||
1008 | |||
1009 | # | ||
1010 | # ISDN feature submodules | ||
1011 | # | ||
1012 | CONFIG_ISDN_DRV_LOOP=m | ||
1013 | CONFIG_ISDN_DIVERSION=m | ||
1014 | |||
1015 | # | ||
1016 | # ISDN4Linux hardware drivers | ||
1017 | # | ||
1018 | |||
1019 | # | ||
1020 | # Passive cards | ||
1021 | # | ||
1022 | CONFIG_ISDN_DRV_HISAX=m | ||
1023 | |||
1024 | # | ||
1025 | # D-channel protocol features | ||
1026 | # | ||
1027 | CONFIG_HISAX_EURO=y | ||
1028 | CONFIG_DE_AOC=y | ||
1029 | # CONFIG_HISAX_NO_SENDCOMPLETE is not set | ||
1030 | # CONFIG_HISAX_NO_LLC is not set | ||
1031 | # CONFIG_HISAX_NO_KEYPAD is not set | ||
1032 | CONFIG_HISAX_1TR6=y | ||
1033 | CONFIG_HISAX_NI1=y | ||
1034 | CONFIG_HISAX_MAX_CARDS=8 | ||
1035 | |||
1036 | # | ||
1037 | # HiSax supported cards | ||
1038 | # | ||
1039 | CONFIG_HISAX_16_3=y | ||
1040 | CONFIG_HISAX_S0BOX=y | ||
1041 | CONFIG_HISAX_FRITZPCI=y | ||
1042 | CONFIG_HISAX_AVM_A1_PCMCIA=y | ||
1043 | CONFIG_HISAX_ELSA=y | ||
1044 | CONFIG_HISAX_DIEHLDIVA=y | ||
1045 | CONFIG_HISAX_SEDLBAUER=y | ||
1046 | CONFIG_HISAX_NICCY=y | ||
1047 | CONFIG_HISAX_GAZEL=y | ||
1048 | CONFIG_HISAX_HFC_SX=y | ||
1049 | # CONFIG_HISAX_DEBUG is not set | ||
1050 | |||
1051 | # | ||
1052 | # HiSax PCMCIA card service modules | ||
1053 | # | ||
1054 | CONFIG_HISAX_SEDLBAUER_CS=m | ||
1055 | CONFIG_HISAX_ELSA_CS=m | ||
1056 | CONFIG_HISAX_AVM_A1_CS=m | ||
1057 | CONFIG_HISAX_TELES_CS=m | ||
1058 | |||
1059 | # | ||
1060 | # HiSax sub driver modules | ||
1061 | # | ||
1062 | CONFIG_HISAX_ST5481=m | ||
1063 | CONFIG_HISAX_HFCUSB=m | ||
1064 | # CONFIG_HISAX_HFC4S8S is not set | ||
1065 | CONFIG_HISAX_HDLC=y | ||
1066 | |||
1067 | # | ||
1068 | # Active cards | ||
1069 | # | ||
1070 | |||
1071 | # | ||
1072 | # Siemens Gigaset | ||
1073 | # | ||
1074 | # CONFIG_ISDN_DRV_GIGASET is not set | ||
1075 | |||
1076 | # | ||
1077 | # CAPI subsystem | ||
1078 | # | ||
1079 | CONFIG_ISDN_CAPI=m | ||
1080 | CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y | ||
1081 | CONFIG_ISDN_CAPI_MIDDLEWARE=y | ||
1082 | CONFIG_ISDN_CAPI_CAPI20=m | ||
1083 | CONFIG_ISDN_CAPI_CAPIFS_BOOL=y | ||
1084 | CONFIG_ISDN_CAPI_CAPIFS=m | ||
1085 | CONFIG_ISDN_CAPI_CAPIDRV=m | ||
1086 | |||
1087 | # | ||
1088 | # CAPI hardware drivers | ||
1089 | # | ||
1090 | |||
1091 | # | ||
1092 | # Active AVM cards | ||
1093 | # | ||
1094 | CONFIG_CAPI_AVM=y | ||
1095 | CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m | ||
1096 | CONFIG_ISDN_DRV_AVMB1_AVM_CS=m | ||
1097 | |||
1098 | # | ||
1099 | # Active Eicon DIVA Server cards | ||
1100 | # | ||
1101 | CONFIG_CAPI_EICON=y | ||
1102 | 754 | ||
1103 | # | 755 | # |
1104 | # Input device support | 756 | # Input device support |
@@ -1108,10 +760,7 @@ CONFIG_INPUT=y | |||
1108 | # | 760 | # |
1109 | # Userland interfaces | 761 | # Userland interfaces |
1110 | # | 762 | # |
1111 | CONFIG_INPUT_MOUSEDEV=m | 763 | # CONFIG_INPUT_MOUSEDEV is not set |
1112 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
1113 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
1114 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
1115 | CONFIG_INPUT_JOYDEV=m | 764 | CONFIG_INPUT_JOYDEV=m |
1116 | CONFIG_INPUT_TSDEV=m | 765 | CONFIG_INPUT_TSDEV=m |
1117 | CONFIG_INPUT_TSDEV_SCREEN_X=240 | 766 | CONFIG_INPUT_TSDEV_SCREEN_X=240 |
@@ -1153,11 +802,9 @@ CONFIG_JOYSTICK_SPACEORB=m | |||
1153 | CONFIG_JOYSTICK_SPACEBALL=m | 802 | CONFIG_JOYSTICK_SPACEBALL=m |
1154 | CONFIG_JOYSTICK_STINGER=m | 803 | CONFIG_JOYSTICK_STINGER=m |
1155 | # CONFIG_JOYSTICK_TWIDJOY is not set | 804 | # CONFIG_JOYSTICK_TWIDJOY is not set |
1156 | CONFIG_JOYSTICK_DB9=m | ||
1157 | CONFIG_JOYSTICK_GAMECON=m | ||
1158 | CONFIG_JOYSTICK_TURBOGRAFX=m | ||
1159 | CONFIG_JOYSTICK_JOYDUMP=m | 805 | CONFIG_JOYSTICK_JOYDUMP=m |
1160 | CONFIG_INPUT_TOUCHSCREEN=y | 806 | CONFIG_INPUT_TOUCHSCREEN=y |
807 | # CONFIG_TOUCHSCREEN_ADS7846 is not set | ||
1161 | CONFIG_TOUCHSCREEN_GUNZE=m | 808 | CONFIG_TOUCHSCREEN_GUNZE=m |
1162 | # CONFIG_TOUCHSCREEN_ELO is not set | 809 | # CONFIG_TOUCHSCREEN_ELO is not set |
1163 | # CONFIG_TOUCHSCREEN_MTOUCH is not set | 810 | # CONFIG_TOUCHSCREEN_MTOUCH is not set |
@@ -1170,7 +817,6 @@ CONFIG_INPUT_UINPUT=m | |||
1170 | # | 817 | # |
1171 | CONFIG_SERIO=y | 818 | CONFIG_SERIO=y |
1172 | CONFIG_SERIO_SERPORT=m | 819 | CONFIG_SERIO_SERPORT=m |
1173 | CONFIG_SERIO_PARKBD=m | ||
1174 | CONFIG_SERIO_LIBPS2=y | 820 | CONFIG_SERIO_LIBPS2=y |
1175 | CONFIG_SERIO_RAW=m | 821 | CONFIG_SERIO_RAW=m |
1176 | CONFIG_GAMEPORT=m | 822 | CONFIG_GAMEPORT=m |
@@ -1183,32 +829,14 @@ CONFIG_GAMEPORT_L4=m | |||
1183 | CONFIG_VT=y | 829 | CONFIG_VT=y |
1184 | CONFIG_VT_CONSOLE=y | 830 | CONFIG_VT_CONSOLE=y |
1185 | CONFIG_HW_CONSOLE=y | 831 | CONFIG_HW_CONSOLE=y |
1186 | CONFIG_SERIAL_NONSTANDARD=y | 832 | # CONFIG_VT_HW_CONSOLE_BINDING is not set |
1187 | CONFIG_COMPUTONE=m | 833 | # CONFIG_SERIAL_NONSTANDARD is not set |
1188 | CONFIG_ROCKETPORT=m | ||
1189 | CONFIG_CYCLADES=m | ||
1190 | # CONFIG_CYZ_INTR is not set | ||
1191 | CONFIG_DIGIEPCA=m | ||
1192 | CONFIG_MOXA_INTELLIO=m | ||
1193 | CONFIG_MOXA_SMARTIO=m | ||
1194 | # CONFIG_ISI is not set | ||
1195 | CONFIG_SYNCLINKMP=m | ||
1196 | CONFIG_N_HDLC=m | ||
1197 | # CONFIG_RISCOM8 is not set | ||
1198 | # CONFIG_SPECIALIX is not set | ||
1199 | CONFIG_SX=m | ||
1200 | CONFIG_RIO=m | ||
1201 | CONFIG_RIO_OLDPCI=y | ||
1202 | CONFIG_STALDRV=y | ||
1203 | CONFIG_STALLION=m | ||
1204 | CONFIG_ISTALLION=m | ||
1205 | 834 | ||
1206 | # | 835 | # |
1207 | # Serial drivers | 836 | # Serial drivers |
1208 | # | 837 | # |
1209 | CONFIG_SERIAL_8250=y | 838 | CONFIG_SERIAL_8250=y |
1210 | CONFIG_SERIAL_8250_CONSOLE=y | 839 | CONFIG_SERIAL_8250_CONSOLE=y |
1211 | CONFIG_SERIAL_8250_CS=m | ||
1212 | CONFIG_SERIAL_8250_NR_UARTS=4 | 840 | CONFIG_SERIAL_8250_NR_UARTS=4 |
1213 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 841 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
1214 | CONFIG_SERIAL_8250_EXTENDED=y | 842 | CONFIG_SERIAL_8250_EXTENDED=y |
@@ -1225,20 +853,11 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
1225 | CONFIG_UNIX98_PTYS=y | 853 | CONFIG_UNIX98_PTYS=y |
1226 | CONFIG_LEGACY_PTYS=y | 854 | CONFIG_LEGACY_PTYS=y |
1227 | CONFIG_LEGACY_PTY_COUNT=256 | 855 | CONFIG_LEGACY_PTY_COUNT=256 |
1228 | CONFIG_PRINTER=m | ||
1229 | # CONFIG_LP_CONSOLE is not set | ||
1230 | CONFIG_PPDEV=m | ||
1231 | CONFIG_TIPAR=m | ||
1232 | 856 | ||
1233 | # | 857 | # |
1234 | # IPMI | 858 | # IPMI |
1235 | # | 859 | # |
1236 | CONFIG_IPMI_HANDLER=m | 860 | # CONFIG_IPMI_HANDLER is not set |
1237 | # CONFIG_IPMI_PANIC_EVENT is not set | ||
1238 | CONFIG_IPMI_DEVICE_INTERFACE=m | ||
1239 | CONFIG_IPMI_SI=m | ||
1240 | CONFIG_IPMI_WATCHDOG=m | ||
1241 | CONFIG_IPMI_POWEROFF=m | ||
1242 | 861 | ||
1243 | # | 862 | # |
1244 | # Watchdog Cards | 863 | # Watchdog Cards |
@@ -1255,22 +874,15 @@ CONFIG_SOFT_WATCHDOG=m | |||
1255 | # USB-based Watchdog Cards | 874 | # USB-based Watchdog Cards |
1256 | # | 875 | # |
1257 | CONFIG_USBPCWATCHDOG=m | 876 | CONFIG_USBPCWATCHDOG=m |
1258 | CONFIG_NVRAM=m | 877 | CONFIG_HW_RANDOM=y |
1259 | CONFIG_DTLK=m | 878 | # CONFIG_NVRAM is not set |
1260 | CONFIG_R3964=m | 879 | # CONFIG_DTLK is not set |
880 | # CONFIG_R3964 is not set | ||
1261 | 881 | ||
1262 | # | 882 | # |
1263 | # Ftape, the floppy tape device driver | 883 | # Ftape, the floppy tape device driver |
1264 | # | 884 | # |
1265 | 885 | # CONFIG_RAW_DRIVER is not set | |
1266 | # | ||
1267 | # PCMCIA character devices | ||
1268 | # | ||
1269 | CONFIG_SYNCLINK_CS=m | ||
1270 | # CONFIG_CARDMAN_4000 is not set | ||
1271 | # CONFIG_CARDMAN_4040 is not set | ||
1272 | CONFIG_RAW_DRIVER=m | ||
1273 | CONFIG_MAX_RAW_DEVS=256 | ||
1274 | 886 | ||
1275 | # | 887 | # |
1276 | # TPM devices | 888 | # TPM devices |
@@ -1281,8 +893,8 @@ CONFIG_MAX_RAW_DEVS=256 | |||
1281 | # | 893 | # |
1282 | # I2C support | 894 | # I2C support |
1283 | # | 895 | # |
1284 | CONFIG_I2C=m | 896 | CONFIG_I2C=y |
1285 | CONFIG_I2C_CHARDEV=m | 897 | CONFIG_I2C_CHARDEV=y |
1286 | 898 | ||
1287 | # | 899 | # |
1288 | # I2C Algorithms | 900 | # I2C Algorithms |
@@ -1294,11 +906,10 @@ CONFIG_I2C_ALGOPCA=m | |||
1294 | # | 906 | # |
1295 | # I2C Hardware Bus support | 907 | # I2C Hardware Bus support |
1296 | # | 908 | # |
1297 | CONFIG_I2C_ISA=m | 909 | # CONFIG_I2C_OCORES is not set |
1298 | CONFIG_I2C_PARPORT=m | 910 | # CONFIG_I2C_PARPORT_LIGHT is not set |
1299 | CONFIG_I2C_PARPORT_LIGHT=m | 911 | # CONFIG_I2C_STUB is not set |
1300 | CONFIG_I2C_STUB=m | 912 | # CONFIG_I2C_PCA_ISA is not set |
1301 | CONFIG_I2C_PCA_ISA=m | ||
1302 | 913 | ||
1303 | # | 914 | # |
1304 | # Miscellaneous I2C Chip support | 915 | # Miscellaneous I2C Chip support |
@@ -1318,66 +929,28 @@ CONFIG_SENSORS_PCF8591=m | |||
1318 | # | 929 | # |
1319 | # SPI support | 930 | # SPI support |
1320 | # | 931 | # |
1321 | # CONFIG_SPI is not set | 932 | CONFIG_SPI=y |
1322 | # CONFIG_SPI_MASTER is not set | 933 | # CONFIG_SPI_DEBUG is not set |
934 | CONFIG_SPI_MASTER=y | ||
1323 | 935 | ||
1324 | # | 936 | # |
1325 | # Dallas's 1-wire bus | 937 | # SPI Master Controller Drivers |
1326 | # | 938 | # |
1327 | CONFIG_W1=m | 939 | CONFIG_SPI_BITBANG=y |
1328 | 940 | ||
1329 | # | 941 | # |
1330 | # 1-wire Bus Masters | 942 | # SPI Protocol Masters |
1331 | # | 943 | # |
1332 | # CONFIG_W1_MASTER_DS9490 is not set | ||
1333 | # CONFIG_W1_MASTER_DS2482 is not set | ||
1334 | 944 | ||
1335 | # | 945 | # |
1336 | # 1-wire Slaves | 946 | # Dallas's 1-wire bus |
1337 | # | 947 | # |
1338 | # CONFIG_W1_SLAVE_THERM is not set | ||
1339 | # CONFIG_W1_SLAVE_SMEM is not set | ||
1340 | # CONFIG_W1_SLAVE_DS2433 is not set | ||
1341 | 948 | ||
1342 | # | 949 | # |
1343 | # Hardware Monitoring support | 950 | # Hardware Monitoring support |
1344 | # | 951 | # |
1345 | CONFIG_HWMON=y | 952 | # CONFIG_HWMON is not set |
1346 | CONFIG_HWMON_VID=m | 953 | # CONFIG_HWMON_VID is not set |
1347 | CONFIG_SENSORS_ADM1021=m | ||
1348 | CONFIG_SENSORS_ADM1025=m | ||
1349 | CONFIG_SENSORS_ADM1026=m | ||
1350 | CONFIG_SENSORS_ADM1031=m | ||
1351 | # CONFIG_SENSORS_ADM9240 is not set | ||
1352 | CONFIG_SENSORS_ASB100=m | ||
1353 | # CONFIG_SENSORS_ATXP1 is not set | ||
1354 | CONFIG_SENSORS_DS1621=m | ||
1355 | # CONFIG_SENSORS_F71805F is not set | ||
1356 | CONFIG_SENSORS_FSCHER=m | ||
1357 | # CONFIG_SENSORS_FSCPOS is not set | ||
1358 | CONFIG_SENSORS_GL518SM=m | ||
1359 | # CONFIG_SENSORS_GL520SM is not set | ||
1360 | CONFIG_SENSORS_IT87=m | ||
1361 | CONFIG_SENSORS_LM63=m | ||
1362 | CONFIG_SENSORS_LM75=m | ||
1363 | CONFIG_SENSORS_LM77=m | ||
1364 | CONFIG_SENSORS_LM78=m | ||
1365 | CONFIG_SENSORS_LM80=m | ||
1366 | CONFIG_SENSORS_LM83=m | ||
1367 | CONFIG_SENSORS_LM85=m | ||
1368 | CONFIG_SENSORS_LM87=m | ||
1369 | CONFIG_SENSORS_LM90=m | ||
1370 | # CONFIG_SENSORS_LM92 is not set | ||
1371 | CONFIG_SENSORS_MAX1619=m | ||
1372 | CONFIG_SENSORS_PC87360=m | ||
1373 | CONFIG_SENSORS_SMSC47M1=m | ||
1374 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
1375 | CONFIG_SENSORS_W83781D=m | ||
1376 | # CONFIG_SENSORS_W83792D is not set | ||
1377 | CONFIG_SENSORS_W83L785TS=m | ||
1378 | CONFIG_SENSORS_W83627HF=m | ||
1379 | # CONFIG_SENSORS_W83627EHF is not set | ||
1380 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
1381 | 954 | ||
1382 | # | 955 | # |
1383 | # Misc devices | 956 | # Misc devices |
@@ -1389,9 +962,18 @@ CONFIG_SENSORS_W83627HF=m | |||
1389 | # CONFIG_NEW_LEDS is not set | 962 | # CONFIG_NEW_LEDS is not set |
1390 | 963 | ||
1391 | # | 964 | # |
965 | # LED drivers | ||
966 | # | ||
967 | |||
968 | # | ||
969 | # LED Triggers | ||
970 | # | ||
971 | |||
972 | # | ||
1392 | # Multimedia devices | 973 | # Multimedia devices |
1393 | # | 974 | # |
1394 | # CONFIG_VIDEO_DEV is not set | 975 | # CONFIG_VIDEO_DEV is not set |
976 | CONFIG_VIDEO_V4L2=y | ||
1395 | 977 | ||
1396 | # | 978 | # |
1397 | # Digital Video Broadcasting Devices | 979 | # Digital Video Broadcasting Devices |
@@ -1460,18 +1042,25 @@ CONFIG_DVB_TDA10021=m | |||
1460 | CONFIG_DVB_STV0297=m | 1042 | CONFIG_DVB_STV0297=m |
1461 | 1043 | ||
1462 | # | 1044 | # |
1463 | # ATSC (North American/Korean Terresterial DTV) frontends | 1045 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends |
1464 | # | 1046 | # |
1465 | # CONFIG_DVB_NXT200X is not set | 1047 | # CONFIG_DVB_NXT200X is not set |
1466 | # CONFIG_DVB_OR51211 is not set | 1048 | # CONFIG_DVB_OR51211 is not set |
1467 | # CONFIG_DVB_OR51132 is not set | 1049 | # CONFIG_DVB_OR51132 is not set |
1468 | # CONFIG_DVB_BCM3510 is not set | 1050 | # CONFIG_DVB_BCM3510 is not set |
1469 | # CONFIG_DVB_LGDT330X is not set | 1051 | # CONFIG_DVB_LGDT330X is not set |
1052 | |||
1053 | # | ||
1054 | # Miscellaneous devices | ||
1055 | # | ||
1056 | CONFIG_DVB_LNBP21=m | ||
1057 | # CONFIG_DVB_ISL6421 is not set | ||
1470 | # CONFIG_USB_DABUSB is not set | 1058 | # CONFIG_USB_DABUSB is not set |
1471 | 1059 | ||
1472 | # | 1060 | # |
1473 | # Graphics support | 1061 | # Graphics support |
1474 | # | 1062 | # |
1063 | CONFIG_FIRMWARE_EDID=y | ||
1475 | # CONFIG_FB is not set | 1064 | # CONFIG_FB is not set |
1476 | 1065 | ||
1477 | # | 1066 | # |
@@ -1479,6 +1068,7 @@ CONFIG_DVB_STV0297=m | |||
1479 | # | 1068 | # |
1480 | # CONFIG_VGA_CONSOLE is not set | 1069 | # CONFIG_VGA_CONSOLE is not set |
1481 | CONFIG_DUMMY_CONSOLE=y | 1070 | CONFIG_DUMMY_CONSOLE=y |
1071 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1482 | 1072 | ||
1483 | # | 1073 | # |
1484 | # Sound | 1074 | # Sound |
@@ -1526,17 +1116,12 @@ CONFIG_SND_MPU401=m | |||
1526 | CONFIG_SND_USB_AUDIO=m | 1116 | CONFIG_SND_USB_AUDIO=m |
1527 | 1117 | ||
1528 | # | 1118 | # |
1529 | # PCMCIA devices | ||
1530 | # | ||
1531 | |||
1532 | # | ||
1533 | # Open Sound System | 1119 | # Open Sound System |
1534 | # | 1120 | # |
1535 | CONFIG_SOUND_PRIME=m | 1121 | CONFIG_SOUND_PRIME=m |
1536 | # CONFIG_OBSOLETE_OSS_DRIVER is not set | 1122 | # CONFIG_OSS_OBSOLETE_DRIVER is not set |
1537 | # CONFIG_SOUND_MSNDCLAS is not set | 1123 | # CONFIG_SOUND_MSNDCLAS is not set |
1538 | # CONFIG_SOUND_MSNDPIN is not set | 1124 | # CONFIG_SOUND_MSNDPIN is not set |
1539 | CONFIG_SOUND_TVMIXER=m | ||
1540 | 1125 | ||
1541 | # | 1126 | # |
1542 | # USB support | 1127 | # USB support |
@@ -1544,7 +1129,7 @@ CONFIG_SOUND_TVMIXER=m | |||
1544 | CONFIG_USB_ARCH_HAS_HCD=y | 1129 | CONFIG_USB_ARCH_HAS_HCD=y |
1545 | # CONFIG_USB_ARCH_HAS_OHCI is not set | 1130 | # CONFIG_USB_ARCH_HAS_OHCI is not set |
1546 | # CONFIG_USB_ARCH_HAS_EHCI is not set | 1131 | # CONFIG_USB_ARCH_HAS_EHCI is not set |
1547 | CONFIG_USB=m | 1132 | CONFIG_USB=y |
1548 | # CONFIG_USB_DEBUG is not set | 1133 | # CONFIG_USB_DEBUG is not set |
1549 | 1134 | ||
1550 | # | 1135 | # |
@@ -1561,7 +1146,6 @@ CONFIG_USB_BANDWIDTH=y | |||
1561 | # | 1146 | # |
1562 | # CONFIG_USB_ISP116X_HCD is not set | 1147 | # CONFIG_USB_ISP116X_HCD is not set |
1563 | CONFIG_USB_SL811_HCD=m | 1148 | CONFIG_USB_SL811_HCD=m |
1564 | # CONFIG_USB_SL811_CS is not set | ||
1565 | 1149 | ||
1566 | # | 1150 | # |
1567 | # USB Device Class drivers | 1151 | # USB Device Class drivers |
@@ -1580,7 +1164,6 @@ CONFIG_USB_STORAGE=m | |||
1580 | # CONFIG_USB_STORAGE_DEBUG is not set | 1164 | # CONFIG_USB_STORAGE_DEBUG is not set |
1581 | CONFIG_USB_STORAGE_DATAFAB=y | 1165 | CONFIG_USB_STORAGE_DATAFAB=y |
1582 | CONFIG_USB_STORAGE_FREECOM=y | 1166 | CONFIG_USB_STORAGE_FREECOM=y |
1583 | CONFIG_USB_STORAGE_ISD200=y | ||
1584 | CONFIG_USB_STORAGE_DPCM=y | 1167 | CONFIG_USB_STORAGE_DPCM=y |
1585 | CONFIG_USB_STORAGE_USBAT=y | 1168 | CONFIG_USB_STORAGE_USBAT=y |
1586 | CONFIG_USB_STORAGE_SDDR09=y | 1169 | CONFIG_USB_STORAGE_SDDR09=y |
@@ -1608,9 +1191,7 @@ CONFIG_USB_WACOM=m | |||
1608 | # CONFIG_USB_ACECAD is not set | 1191 | # CONFIG_USB_ACECAD is not set |
1609 | CONFIG_USB_KBTAB=m | 1192 | CONFIG_USB_KBTAB=m |
1610 | CONFIG_USB_POWERMATE=m | 1193 | CONFIG_USB_POWERMATE=m |
1611 | CONFIG_USB_MTOUCH=m | 1194 | # CONFIG_USB_TOUCHSCREEN is not set |
1612 | # CONFIG_USB_ITMTOUCH is not set | ||
1613 | CONFIG_USB_EGALAX=m | ||
1614 | # CONFIG_USB_YEALINK is not set | 1195 | # CONFIG_USB_YEALINK is not set |
1615 | CONFIG_USB_XPAD=m | 1196 | CONFIG_USB_XPAD=m |
1616 | CONFIG_USB_ATI_REMOTE=m | 1197 | CONFIG_USB_ATI_REMOTE=m |
@@ -1640,13 +1221,11 @@ CONFIG_USB_NET_NET1080=m | |||
1640 | # CONFIG_USB_NET_RNDIS_HOST is not set | 1221 | # CONFIG_USB_NET_RNDIS_HOST is not set |
1641 | # CONFIG_USB_NET_CDC_SUBSET is not set | 1222 | # CONFIG_USB_NET_CDC_SUBSET is not set |
1642 | CONFIG_USB_NET_ZAURUS=m | 1223 | CONFIG_USB_NET_ZAURUS=m |
1643 | # CONFIG_USB_ZD1201 is not set | ||
1644 | CONFIG_USB_MON=y | 1224 | CONFIG_USB_MON=y |
1645 | 1225 | ||
1646 | # | 1226 | # |
1647 | # USB port drivers | 1227 | # USB port drivers |
1648 | # | 1228 | # |
1649 | CONFIG_USB_USS720=m | ||
1650 | 1229 | ||
1651 | # | 1230 | # |
1652 | # USB Serial Converter support | 1231 | # USB Serial Converter support |
@@ -1654,7 +1233,7 @@ CONFIG_USB_USS720=m | |||
1654 | CONFIG_USB_SERIAL=m | 1233 | CONFIG_USB_SERIAL=m |
1655 | CONFIG_USB_SERIAL_GENERIC=y | 1234 | CONFIG_USB_SERIAL_GENERIC=y |
1656 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 1235 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
1657 | # CONFIG_USB_SERIAL_ANYDATA is not set | 1236 | # CONFIG_USB_SERIAL_ARK3116 is not set |
1658 | CONFIG_USB_SERIAL_BELKIN=m | 1237 | CONFIG_USB_SERIAL_BELKIN=m |
1659 | CONFIG_USB_SERIAL_WHITEHEAT=m | 1238 | CONFIG_USB_SERIAL_WHITEHEAT=m |
1660 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | 1239 | CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m |
@@ -1662,6 +1241,7 @@ CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m | |||
1662 | CONFIG_USB_SERIAL_CYPRESS_M8=m | 1241 | CONFIG_USB_SERIAL_CYPRESS_M8=m |
1663 | CONFIG_USB_SERIAL_EMPEG=m | 1242 | CONFIG_USB_SERIAL_EMPEG=m |
1664 | CONFIG_USB_SERIAL_FTDI_SIO=m | 1243 | CONFIG_USB_SERIAL_FTDI_SIO=m |
1244 | # CONFIG_USB_SERIAL_FUNSOFT is not set | ||
1665 | CONFIG_USB_SERIAL_VISOR=m | 1245 | CONFIG_USB_SERIAL_VISOR=m |
1666 | CONFIG_USB_SERIAL_IPAQ=m | 1246 | CONFIG_USB_SERIAL_IPAQ=m |
1667 | CONFIG_USB_SERIAL_IR=m | 1247 | CONFIG_USB_SERIAL_IR=m |
@@ -1691,9 +1271,11 @@ CONFIG_USB_SERIAL_PL2303=m | |||
1691 | # CONFIG_USB_SERIAL_HP4X is not set | 1271 | # CONFIG_USB_SERIAL_HP4X is not set |
1692 | CONFIG_USB_SERIAL_SAFE=m | 1272 | CONFIG_USB_SERIAL_SAFE=m |
1693 | # CONFIG_USB_SERIAL_SAFE_PADDED is not set | 1273 | # CONFIG_USB_SERIAL_SAFE_PADDED is not set |
1274 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | ||
1694 | # CONFIG_USB_SERIAL_TI is not set | 1275 | # CONFIG_USB_SERIAL_TI is not set |
1695 | CONFIG_USB_SERIAL_CYBERJACK=m | 1276 | CONFIG_USB_SERIAL_CYBERJACK=m |
1696 | CONFIG_USB_SERIAL_XIRCOM=m | 1277 | CONFIG_USB_SERIAL_XIRCOM=m |
1278 | # CONFIG_USB_SERIAL_OPTION is not set | ||
1697 | CONFIG_USB_SERIAL_OMNINET=m | 1279 | CONFIG_USB_SERIAL_OMNINET=m |
1698 | CONFIG_USB_EZUSB=y | 1280 | CONFIG_USB_EZUSB=y |
1699 | 1281 | ||
@@ -1707,10 +1289,12 @@ CONFIG_USB_RIO500=m | |||
1707 | CONFIG_USB_LEGOTOWER=m | 1289 | CONFIG_USB_LEGOTOWER=m |
1708 | CONFIG_USB_LCD=m | 1290 | CONFIG_USB_LCD=m |
1709 | CONFIG_USB_LED=m | 1291 | CONFIG_USB_LED=m |
1292 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1710 | CONFIG_USB_CYTHERM=m | 1293 | CONFIG_USB_CYTHERM=m |
1711 | CONFIG_USB_PHIDGETKIT=m | 1294 | CONFIG_USB_PHIDGETKIT=m |
1712 | CONFIG_USB_PHIDGETSERVO=m | 1295 | CONFIG_USB_PHIDGETSERVO=m |
1713 | # CONFIG_USB_IDMOUSE is not set | 1296 | # CONFIG_USB_IDMOUSE is not set |
1297 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1714 | # CONFIG_USB_LD is not set | 1298 | # CONFIG_USB_LD is not set |
1715 | CONFIG_USB_TEST=m | 1299 | CONFIG_USB_TEST=m |
1716 | 1300 | ||
@@ -1787,7 +1371,6 @@ CONFIG_JFS_POSIX_ACL=y | |||
1787 | CONFIG_JFS_STATISTICS=y | 1371 | CONFIG_JFS_STATISTICS=y |
1788 | CONFIG_FS_POSIX_ACL=y | 1372 | CONFIG_FS_POSIX_ACL=y |
1789 | CONFIG_XFS_FS=m | 1373 | CONFIG_XFS_FS=m |
1790 | CONFIG_XFS_EXPORT=y | ||
1791 | CONFIG_XFS_QUOTA=y | 1374 | CONFIG_XFS_QUOTA=y |
1792 | CONFIG_XFS_SECURITY=y | 1375 | CONFIG_XFS_SECURITY=y |
1793 | CONFIG_XFS_POSIX_ACL=y | 1376 | CONFIG_XFS_POSIX_ACL=y |
@@ -1796,6 +1379,7 @@ CONFIG_XFS_RT=y | |||
1796 | CONFIG_MINIX_FS=m | 1379 | CONFIG_MINIX_FS=m |
1797 | CONFIG_ROMFS_FS=m | 1380 | CONFIG_ROMFS_FS=m |
1798 | CONFIG_INOTIFY=y | 1381 | CONFIG_INOTIFY=y |
1382 | CONFIG_INOTIFY_USER=y | ||
1799 | CONFIG_QUOTA=y | 1383 | CONFIG_QUOTA=y |
1800 | CONFIG_QFMT_V1=m | 1384 | CONFIG_QFMT_V1=m |
1801 | CONFIG_QFMT_V2=m | 1385 | CONFIG_QFMT_V2=m |
@@ -1856,6 +1440,7 @@ CONFIG_JFFS2_FS=m | |||
1856 | CONFIG_JFFS2_FS_DEBUG=0 | 1440 | CONFIG_JFFS2_FS_DEBUG=0 |
1857 | CONFIG_JFFS2_FS_WRITEBUFFER=y | 1441 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
1858 | # CONFIG_JFFS2_SUMMARY is not set | 1442 | # CONFIG_JFFS2_SUMMARY is not set |
1443 | # CONFIG_JFFS2_FS_XATTR is not set | ||
1859 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | 1444 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set |
1860 | CONFIG_JFFS2_ZLIB=y | 1445 | CONFIG_JFFS2_ZLIB=y |
1861 | CONFIG_JFFS2_RTIME=y | 1446 | CONFIG_JFFS2_RTIME=y |
@@ -1866,11 +1451,13 @@ CONFIG_HPFS_FS=m | |||
1866 | CONFIG_QNX4FS_FS=m | 1451 | CONFIG_QNX4FS_FS=m |
1867 | CONFIG_SYSV_FS=m | 1452 | CONFIG_SYSV_FS=m |
1868 | CONFIG_UFS_FS=m | 1453 | CONFIG_UFS_FS=m |
1454 | # CONFIG_UFS_FS_WRITE is not set | ||
1455 | # CONFIG_UFS_DEBUG is not set | ||
1869 | 1456 | ||
1870 | # | 1457 | # |
1871 | # Network File Systems | 1458 | # Network File Systems |
1872 | # | 1459 | # |
1873 | CONFIG_NFS_FS=m | 1460 | CONFIG_NFS_FS=y |
1874 | CONFIG_NFS_V3=y | 1461 | CONFIG_NFS_V3=y |
1875 | # CONFIG_NFS_V3_ACL is not set | 1462 | # CONFIG_NFS_V3_ACL is not set |
1876 | CONFIG_NFS_V4=y | 1463 | CONFIG_NFS_V4=y |
@@ -1880,19 +1467,22 @@ CONFIG_NFSD_V3=y | |||
1880 | # CONFIG_NFSD_V3_ACL is not set | 1467 | # CONFIG_NFSD_V3_ACL is not set |
1881 | CONFIG_NFSD_V4=y | 1468 | CONFIG_NFSD_V4=y |
1882 | CONFIG_NFSD_TCP=y | 1469 | CONFIG_NFSD_TCP=y |
1883 | CONFIG_LOCKD=m | 1470 | CONFIG_ROOT_NFS=y |
1471 | CONFIG_LOCKD=y | ||
1884 | CONFIG_LOCKD_V4=y | 1472 | CONFIG_LOCKD_V4=y |
1885 | CONFIG_EXPORTFS=m | 1473 | CONFIG_EXPORTFS=m |
1886 | CONFIG_NFS_COMMON=y | 1474 | CONFIG_NFS_COMMON=y |
1887 | CONFIG_SUNRPC=m | 1475 | CONFIG_SUNRPC=y |
1888 | CONFIG_SUNRPC_GSS=m | 1476 | CONFIG_SUNRPC_GSS=y |
1889 | CONFIG_RPCSEC_GSS_KRB5=m | 1477 | CONFIG_RPCSEC_GSS_KRB5=y |
1890 | CONFIG_RPCSEC_GSS_SPKM3=m | 1478 | CONFIG_RPCSEC_GSS_SPKM3=m |
1891 | CONFIG_SMB_FS=m | 1479 | CONFIG_SMB_FS=m |
1892 | # CONFIG_SMB_NLS_DEFAULT is not set | 1480 | # CONFIG_SMB_NLS_DEFAULT is not set |
1893 | CONFIG_CIFS=m | 1481 | CONFIG_CIFS=m |
1894 | # CONFIG_CIFS_STATS is not set | 1482 | # CONFIG_CIFS_STATS is not set |
1483 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
1895 | # CONFIG_CIFS_XATTR is not set | 1484 | # CONFIG_CIFS_XATTR is not set |
1485 | # CONFIG_CIFS_DEBUG2 is not set | ||
1896 | # CONFIG_CIFS_EXPERIMENTAL is not set | 1486 | # CONFIG_CIFS_EXPERIMENTAL is not set |
1897 | CONFIG_NCP_FS=m | 1487 | CONFIG_NCP_FS=m |
1898 | CONFIG_NCPFS_PACKET_SIGNING=y | 1488 | CONFIG_NCPFS_PACKET_SIGNING=y |
@@ -1940,7 +1530,7 @@ CONFIG_SUN_PARTITION=y | |||
1940 | # | 1530 | # |
1941 | # Native Language Support | 1531 | # Native Language Support |
1942 | # | 1532 | # |
1943 | CONFIG_NLS=y | 1533 | CONFIG_NLS=m |
1944 | CONFIG_NLS_DEFAULT="cp437" | 1534 | CONFIG_NLS_DEFAULT="cp437" |
1945 | CONFIG_NLS_CODEPAGE_437=m | 1535 | CONFIG_NLS_CODEPAGE_437=m |
1946 | CONFIG_NLS_CODEPAGE_737=m | 1536 | CONFIG_NLS_CODEPAGE_737=m |
@@ -1984,26 +1574,29 @@ CONFIG_NLS_UTF8=m | |||
1984 | # | 1574 | # |
1985 | # Profiling support | 1575 | # Profiling support |
1986 | # | 1576 | # |
1987 | CONFIG_PROFILING=y | 1577 | # CONFIG_PROFILING is not set |
1988 | CONFIG_OPROFILE=m | ||
1989 | 1578 | ||
1990 | # | 1579 | # |
1991 | # Kernel hacking | 1580 | # Kernel hacking |
1992 | # | 1581 | # |
1993 | # CONFIG_PRINTK_TIME is not set | 1582 | # CONFIG_PRINTK_TIME is not set |
1994 | CONFIG_MAGIC_SYSRQ=y | 1583 | CONFIG_MAGIC_SYSRQ=y |
1584 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1995 | CONFIG_DEBUG_KERNEL=y | 1585 | CONFIG_DEBUG_KERNEL=y |
1996 | CONFIG_LOG_BUF_SHIFT=14 | 1586 | CONFIG_LOG_BUF_SHIFT=14 |
1997 | CONFIG_DETECT_SOFTLOCKUP=y | 1587 | CONFIG_DETECT_SOFTLOCKUP=y |
1998 | # CONFIG_SCHEDSTATS is not set | 1588 | # CONFIG_SCHEDSTATS is not set |
1999 | # CONFIG_DEBUG_SLAB is not set | 1589 | # CONFIG_DEBUG_SLAB is not set |
2000 | CONFIG_DEBUG_PREEMPT=y | 1590 | # CONFIG_DEBUG_RT_MUTEXES is not set |
2001 | CONFIG_DEBUG_MUTEXES=y | 1591 | # CONFIG_RT_MUTEX_TESTER is not set |
2002 | # CONFIG_DEBUG_SPINLOCK is not set | 1592 | # CONFIG_DEBUG_SPINLOCK is not set |
1593 | CONFIG_DEBUG_MUTEXES=y | ||
1594 | # CONFIG_DEBUG_RWSEMS is not set | ||
2003 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1595 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1596 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
2004 | # CONFIG_DEBUG_KOBJECT is not set | 1597 | # CONFIG_DEBUG_KOBJECT is not set |
2005 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1598 | # CONFIG_DEBUG_BUGVERBOSE is not set |
2006 | CONFIG_DEBUG_INFO=y | 1599 | # CONFIG_DEBUG_INFO is not set |
2007 | # CONFIG_DEBUG_FS is not set | 1600 | # CONFIG_DEBUG_FS is not set |
2008 | # CONFIG_DEBUG_VM is not set | 1601 | # CONFIG_DEBUG_VM is not set |
2009 | CONFIG_FRAME_POINTER=y | 1602 | CONFIG_FRAME_POINTER=y |
@@ -2013,8 +1606,7 @@ CONFIG_FORCED_INLINING=y | |||
2013 | # CONFIG_DEBUG_USER is not set | 1606 | # CONFIG_DEBUG_USER is not set |
2014 | # CONFIG_DEBUG_WAITQ is not set | 1607 | # CONFIG_DEBUG_WAITQ is not set |
2015 | # CONFIG_DEBUG_ERRORS is not set | 1608 | # CONFIG_DEBUG_ERRORS is not set |
2016 | CONFIG_DEBUG_LL=y | 1609 | # CONFIG_DEBUG_LL is not set |
2017 | # CONFIG_DEBUG_ICEDCC is not set | ||
2018 | 1610 | ||
2019 | # | 1611 | # |
2020 | # Security options | 1612 | # Security options |
@@ -2039,7 +1631,7 @@ CONFIG_CRYPTO_SHA256=m | |||
2039 | CONFIG_CRYPTO_SHA512=m | 1631 | CONFIG_CRYPTO_SHA512=m |
2040 | CONFIG_CRYPTO_WP512=m | 1632 | CONFIG_CRYPTO_WP512=m |
2041 | # CONFIG_CRYPTO_TGR192 is not set | 1633 | # CONFIG_CRYPTO_TGR192 is not set |
2042 | CONFIG_CRYPTO_DES=m | 1634 | CONFIG_CRYPTO_DES=y |
2043 | CONFIG_CRYPTO_BLOWFISH=m | 1635 | CONFIG_CRYPTO_BLOWFISH=m |
2044 | CONFIG_CRYPTO_TWOFISH=m | 1636 | CONFIG_CRYPTO_TWOFISH=m |
2045 | CONFIG_CRYPTO_SERPENT=m | 1637 | CONFIG_CRYPTO_SERPENT=m |
@@ -2068,5 +1660,6 @@ CONFIG_CRC32=y | |||
2068 | CONFIG_LIBCRC32C=m | 1660 | CONFIG_LIBCRC32C=m |
2069 | CONFIG_ZLIB_INFLATE=y | 1661 | CONFIG_ZLIB_INFLATE=y |
2070 | CONFIG_ZLIB_DEFLATE=m | 1662 | CONFIG_ZLIB_DEFLATE=m |
2071 | CONFIG_REED_SOLOMON=m | 1663 | CONFIG_TEXTSEARCH=y |
2072 | CONFIG_REED_SOLOMON_DEC16=y | 1664 | CONFIG_TEXTSEARCH_KMP=m |
1665 | CONFIG_PLIST=y | ||
diff --git a/arch/arm/mach-s3c2410/Kconfig b/arch/arm/mach-s3c2410/Kconfig index b4171dd43df0..bbd138be6a70 100644 --- a/arch/arm/mach-s3c2410/Kconfig +++ b/arch/arm/mach-s3c2410/Kconfig | |||
@@ -81,9 +81,17 @@ config SMDK2440_CPU2442 | |||
81 | depends on ARCH_S3C2440 | 81 | depends on ARCH_S3C2440 |
82 | select CPU_S3C2442 | 82 | select CPU_S3C2442 |
83 | 83 | ||
84 | config MACH_S3C2413 | ||
85 | bool | ||
86 | help | ||
87 | Internal node for S3C2413 verison of SMDK2413, so that | ||
88 | machine_is_s3c2413() will work when MACH_SMDK2413 is | ||
89 | selected | ||
90 | |||
84 | config MACH_SMDK2413 | 91 | config MACH_SMDK2413 |
85 | bool "SMDK2413" | 92 | bool "SMDK2413" |
86 | select CPU_S3C2412 | 93 | select CPU_S3C2412 |
94 | select MACH_S3C2413 | ||
87 | select MACH_SMDK | 95 | select MACH_SMDK |
88 | help | 96 | help |
89 | Say Y here if you are using an SMDK2413 | 97 | Say Y here if you are using an SMDK2413 |
diff --git a/arch/arm/mach-s3c2410/irq.h b/arch/arm/mach-s3c2410/irq.h index f7cc4c983de5..842a9f42c97b 100644 --- a/arch/arm/mach-s3c2410/irq.h +++ b/arch/arm/mach-s3c2410/irq.h | |||
@@ -100,5 +100,10 @@ s3c_irqsub_ack(unsigned int irqno, unsigned int parentmask, unsigned int group) | |||
100 | 100 | ||
101 | /* exported for use in arch/arm/mach-s3c2410 */ | 101 | /* exported for use in arch/arm/mach-s3c2410 */ |
102 | 102 | ||
103 | #ifdef CONFIG_PM | ||
103 | extern int s3c_irq_wake(unsigned int irqno, unsigned int state); | 104 | extern int s3c_irq_wake(unsigned int irqno, unsigned int state); |
105 | #else | ||
106 | #define s3c_irq_wake NULL | ||
107 | #endif | ||
108 | |||
104 | extern int s3c_irqext_type(unsigned int irq, unsigned int type); | 109 | extern int s3c_irqext_type(unsigned int irq, unsigned int type); |
diff --git a/arch/arm/mach-s3c2410/s3c2412.c b/arch/arm/mach-s3c2410/s3c2412.c index e24ffd5e478b..2d163f7600be 100644 --- a/arch/arm/mach-s3c2410/s3c2412.c +++ b/arch/arm/mach-s3c2410/s3c2412.c | |||
@@ -35,11 +35,15 @@ | |||
35 | #include <asm/mach/irq.h> | 35 | #include <asm/mach/irq.h> |
36 | 36 | ||
37 | #include <asm/hardware.h> | 37 | #include <asm/hardware.h> |
38 | #include <asm/proc-fns.h> | ||
38 | #include <asm/io.h> | 39 | #include <asm/io.h> |
39 | #include <asm/irq.h> | 40 | #include <asm/irq.h> |
40 | 41 | ||
42 | #include <asm/arch/idle.h> | ||
43 | |||
41 | #include <asm/arch/regs-clock.h> | 44 | #include <asm/arch/regs-clock.h> |
42 | #include <asm/arch/regs-serial.h> | 45 | #include <asm/arch/regs-serial.h> |
46 | #include <asm/arch/regs-power.h> | ||
43 | #include <asm/arch/regs-gpio.h> | 47 | #include <asm/arch/regs-gpio.h> |
44 | #include <asm/arch/regs-gpioj.h> | 48 | #include <asm/arch/regs-gpioj.h> |
45 | #include <asm/arch/regs-dsc.h> | 49 | #include <asm/arch/regs-dsc.h> |
@@ -75,6 +79,27 @@ void __init s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no) | |||
75 | s3c_device_nand.name = "s3c2412-nand"; | 79 | s3c_device_nand.name = "s3c2412-nand"; |
76 | } | 80 | } |
77 | 81 | ||
82 | /* s3c2412_idle | ||
83 | * | ||
84 | * use the standard idle call by ensuring the idle mode | ||
85 | * in power config, then issuing the idle co-processor | ||
86 | * instruction | ||
87 | */ | ||
88 | |||
89 | static void s3c2412_idle(void) | ||
90 | { | ||
91 | unsigned long tmp; | ||
92 | |||
93 | /* ensure our idle mode is to go to idle */ | ||
94 | |||
95 | tmp = __raw_readl(S3C2412_PWRCFG); | ||
96 | tmp &= ~S3C2412_PWRCFG_STANDBYWFI_MASK; | ||
97 | tmp |= S3C2412_PWRCFG_STANDBYWFI_IDLE; | ||
98 | __raw_writel(tmp, S3C2412_PWRCFG); | ||
99 | |||
100 | cpu_do_idle(); | ||
101 | } | ||
102 | |||
78 | /* s3c2412_map_io | 103 | /* s3c2412_map_io |
79 | * | 104 | * |
80 | * register the standard cpu IO areas, and any passed in from the | 105 | * register the standard cpu IO areas, and any passed in from the |
@@ -87,6 +112,10 @@ void __init s3c2412_map_io(struct map_desc *mach_desc, int mach_size) | |||
87 | 112 | ||
88 | s3c24xx_va_gpio2 = S3C24XX_VA_GPIO + 0x10; | 113 | s3c24xx_va_gpio2 = S3C24XX_VA_GPIO + 0x10; |
89 | 114 | ||
115 | /* set our idle function */ | ||
116 | |||
117 | s3c24xx_idle = s3c2412_idle; | ||
118 | |||
90 | /* register our io-tables */ | 119 | /* register our io-tables */ |
91 | 120 | ||
92 | iotable_init(s3c2412_iodesc, ARRAY_SIZE(s3c2412_iodesc)); | 121 | iotable_init(s3c2412_iodesc, ARRAY_SIZE(s3c2412_iodesc)); |
diff --git a/arch/arm/mm/proc-xscale.S b/arch/arm/mm/proc-xscale.S index 561bff73a036..3ca0c92e98a2 100644 --- a/arch/arm/mm/proc-xscale.S +++ b/arch/arm/mm/proc-xscale.S | |||
@@ -644,7 +644,7 @@ __80219_proc_info: | |||
644 | .type __8032x_proc_info,#object | 644 | .type __8032x_proc_info,#object |
645 | __8032x_proc_info: | 645 | __8032x_proc_info: |
646 | .long 0x69052420 | 646 | .long 0x69052420 |
647 | .long 0xffffffe0 | 647 | .long 0xfffff7e0 |
648 | .long PMD_TYPE_SECT | \ | 648 | .long PMD_TYPE_SECT | \ |
649 | PMD_SECT_BUFFERABLE | \ | 649 | PMD_SECT_BUFFERABLE | \ |
650 | PMD_SECT_CACHEABLE | \ | 650 | PMD_SECT_CACHEABLE | \ |
diff --git a/arch/i386/kernel/entry.S b/arch/i386/kernel/entry.S index 37a7d2eaf4a0..87f9f60b803b 100644 --- a/arch/i386/kernel/entry.S +++ b/arch/i386/kernel/entry.S | |||
@@ -209,6 +209,10 @@ ENTRY(ret_from_fork) | |||
209 | GET_THREAD_INFO(%ebp) | 209 | GET_THREAD_INFO(%ebp) |
210 | popl %eax | 210 | popl %eax |
211 | CFI_ADJUST_CFA_OFFSET -4 | 211 | CFI_ADJUST_CFA_OFFSET -4 |
212 | pushl $0x0202 # Reset kernel eflags | ||
213 | CFI_ADJUST_CFA_OFFSET 4 | ||
214 | popfl | ||
215 | CFI_ADJUST_CFA_OFFSET -4 | ||
212 | jmp syscall_exit | 216 | jmp syscall_exit |
213 | CFI_ENDPROC | 217 | CFI_ENDPROC |
214 | 218 | ||
diff --git a/arch/i386/oprofile/nmi_int.c b/arch/i386/oprofile/nmi_int.c index c8c1df8ff2b4..5f8dc8a21bd7 100644 --- a/arch/i386/oprofile/nmi_int.c +++ b/arch/i386/oprofile/nmi_int.c | |||
@@ -337,6 +337,8 @@ static int __init ppro_init(char ** cpu_type) | |||
337 | 337 | ||
338 | if (cpu_model == 14) | 338 | if (cpu_model == 14) |
339 | *cpu_type = "i386/core"; | 339 | *cpu_type = "i386/core"; |
340 | else if (cpu_model == 15) | ||
341 | *cpu_type = "i386/core_2"; | ||
340 | else if (cpu_model > 0xd) | 342 | else if (cpu_model > 0xd) |
341 | return 0; | 343 | return 0; |
342 | else if (cpu_model == 9) { | 344 | else if (cpu_model == 9) { |
diff --git a/arch/powerpc/configs/cell_defconfig b/arch/powerpc/configs/cell_defconfig index e028a2ecb8a3..6fd9e7acec29 100644 --- a/arch/powerpc/configs/cell_defconfig +++ b/arch/powerpc/configs/cell_defconfig | |||
@@ -1,13 +1,14 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17-rc6 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Thu Jun 22 15:28:36 2006 | 4 | # Sun Sep 10 10:20:32 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
@@ -35,6 +36,7 @@ CONFIG_PPC_STD_MMU=y | |||
35 | CONFIG_VIRT_CPU_ACCOUNTING=y | 36 | CONFIG_VIRT_CPU_ACCOUNTING=y |
36 | CONFIG_SMP=y | 37 | CONFIG_SMP=y |
37 | CONFIG_NR_CPUS=4 | 38 | CONFIG_NR_CPUS=4 |
39 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
38 | 40 | ||
39 | # | 41 | # |
40 | # Code maturity level options | 42 | # Code maturity level options |
@@ -52,6 +54,7 @@ CONFIG_SWAP=y | |||
52 | CONFIG_SYSVIPC=y | 54 | CONFIG_SYSVIPC=y |
53 | # CONFIG_POSIX_MQUEUE is not set | 55 | # CONFIG_POSIX_MQUEUE is not set |
54 | # CONFIG_BSD_PROCESS_ACCT is not set | 56 | # CONFIG_BSD_PROCESS_ACCT is not set |
57 | # CONFIG_TASKSTATS is not set | ||
55 | CONFIG_SYSCTL=y | 58 | CONFIG_SYSCTL=y |
56 | # CONFIG_AUDIT is not set | 59 | # CONFIG_AUDIT is not set |
57 | CONFIG_IKCONFIG=y | 60 | CONFIG_IKCONFIG=y |
@@ -69,10 +72,12 @@ CONFIG_PRINTK=y | |||
69 | CONFIG_BUG=y | 72 | CONFIG_BUG=y |
70 | CONFIG_ELF_CORE=y | 73 | CONFIG_ELF_CORE=y |
71 | CONFIG_BASE_FULL=y | 74 | CONFIG_BASE_FULL=y |
75 | CONFIG_RT_MUTEXES=y | ||
72 | CONFIG_FUTEX=y | 76 | CONFIG_FUTEX=y |
73 | CONFIG_EPOLL=y | 77 | CONFIG_EPOLL=y |
74 | CONFIG_SHMEM=y | 78 | CONFIG_SHMEM=y |
75 | CONFIG_SLAB=y | 79 | CONFIG_SLAB=y |
80 | CONFIG_VM_EVENT_COUNTERS=y | ||
76 | # CONFIG_TINY_SHMEM is not set | 81 | # CONFIG_TINY_SHMEM is not set |
77 | CONFIG_BASE_SMALL=0 | 82 | CONFIG_BASE_SMALL=0 |
78 | # CONFIG_SLOB is not set | 83 | # CONFIG_SLOB is not set |
@@ -119,7 +124,7 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
119 | CONFIG_PPC_CELL=y | 124 | CONFIG_PPC_CELL=y |
120 | CONFIG_PPC_CELL_NATIVE=y | 125 | CONFIG_PPC_CELL_NATIVE=y |
121 | CONFIG_PPC_IBM_CELL_BLADE=y | 126 | CONFIG_PPC_IBM_CELL_BLADE=y |
122 | CONFIG_PPC_SYSTEMSIM=y | 127 | CONFIG_UDBG_RTAS_CONSOLE=y |
123 | # CONFIG_U3_DART is not set | 128 | # CONFIG_U3_DART is not set |
124 | CONFIG_PPC_RTAS=y | 129 | CONFIG_PPC_RTAS=y |
125 | # CONFIG_RTAS_ERROR_LOGGING is not set | 130 | # CONFIG_RTAS_ERROR_LOGGING is not set |
@@ -130,6 +135,7 @@ CONFIG_MMIO_NVRAM=y | |||
130 | # CONFIG_PPC_970_NAP is not set | 135 | # CONFIG_PPC_970_NAP is not set |
131 | # CONFIG_CPU_FREQ is not set | 136 | # CONFIG_CPU_FREQ is not set |
132 | # CONFIG_WANT_EARLY_SERIAL is not set | 137 | # CONFIG_WANT_EARLY_SERIAL is not set |
138 | # CONFIG_MPIC is not set | ||
133 | 139 | ||
134 | # | 140 | # |
135 | # Cell Broadband Engine options | 141 | # Cell Broadband Engine options |
@@ -154,6 +160,7 @@ CONFIG_BINFMT_ELF=y | |||
154 | CONFIG_BINFMT_MISC=m | 160 | CONFIG_BINFMT_MISC=m |
155 | CONFIG_FORCE_MAX_ZONEORDER=13 | 161 | CONFIG_FORCE_MAX_ZONEORDER=13 |
156 | # CONFIG_IOMMU_VMERGE is not set | 162 | # CONFIG_IOMMU_VMERGE is not set |
163 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
157 | CONFIG_KEXEC=y | 164 | CONFIG_KEXEC=y |
158 | # CONFIG_CRASH_DUMP is not set | 165 | # CONFIG_CRASH_DUMP is not set |
159 | CONFIG_IRQ_ALL_CPUS=y | 166 | CONFIG_IRQ_ALL_CPUS=y |
@@ -173,6 +180,7 @@ CONFIG_SPARSEMEM_EXTREME=y | |||
173 | CONFIG_MEMORY_HOTPLUG=y | 180 | CONFIG_MEMORY_HOTPLUG=y |
174 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 181 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
175 | CONFIG_MIGRATION=y | 182 | CONFIG_MIGRATION=y |
183 | CONFIG_RESOURCES_64BIT=y | ||
176 | CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y | 184 | CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y |
177 | CONFIG_ARCH_MEMORY_PROBE=y | 185 | CONFIG_ARCH_MEMORY_PROBE=y |
178 | # CONFIG_PPC_64K_PAGES is not set | 186 | # CONFIG_PPC_64K_PAGES is not set |
@@ -187,6 +195,7 @@ CONFIG_ISA_DMA_API=y | |||
187 | # Bus options | 195 | # Bus options |
188 | # | 196 | # |
189 | CONFIG_GENERIC_ISA_DMA=y | 197 | CONFIG_GENERIC_ISA_DMA=y |
198 | # CONFIG_MPIC_WEIRD is not set | ||
190 | # CONFIG_PPC_I8259 is not set | 199 | # CONFIG_PPC_I8259 is not set |
191 | # CONFIG_PPC_INDIRECT_PCI is not set | 200 | # CONFIG_PPC_INDIRECT_PCI is not set |
192 | CONFIG_PCI=y | 201 | CONFIG_PCI=y |
@@ -235,6 +244,8 @@ CONFIG_SYN_COOKIES=y | |||
235 | # CONFIG_INET_IPCOMP is not set | 244 | # CONFIG_INET_IPCOMP is not set |
236 | # CONFIG_INET_XFRM_TUNNEL is not set | 245 | # CONFIG_INET_XFRM_TUNNEL is not set |
237 | CONFIG_INET_TUNNEL=y | 246 | CONFIG_INET_TUNNEL=y |
247 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
248 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
238 | CONFIG_INET_DIAG=y | 249 | CONFIG_INET_DIAG=y |
239 | CONFIG_INET_TCP_DIAG=y | 250 | CONFIG_INET_TCP_DIAG=y |
240 | # CONFIG_TCP_CONG_ADVANCED is not set | 251 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -252,7 +263,10 @@ CONFIG_INET6_ESP=m | |||
252 | CONFIG_INET6_IPCOMP=m | 263 | CONFIG_INET6_IPCOMP=m |
253 | CONFIG_INET6_XFRM_TUNNEL=m | 264 | CONFIG_INET6_XFRM_TUNNEL=m |
254 | CONFIG_INET6_TUNNEL=m | 265 | CONFIG_INET6_TUNNEL=m |
266 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
267 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
255 | CONFIG_IPV6_TUNNEL=m | 268 | CONFIG_IPV6_TUNNEL=m |
269 | # CONFIG_NETWORK_SECMARK is not set | ||
256 | CONFIG_NETFILTER=y | 270 | CONFIG_NETFILTER=y |
257 | # CONFIG_NETFILTER_DEBUG is not set | 271 | # CONFIG_NETFILTER_DEBUG is not set |
258 | 272 | ||
@@ -277,6 +291,7 @@ CONFIG_IP_NF_TFTP=m | |||
277 | CONFIG_IP_NF_AMANDA=m | 291 | CONFIG_IP_NF_AMANDA=m |
278 | # CONFIG_IP_NF_PPTP is not set | 292 | # CONFIG_IP_NF_PPTP is not set |
279 | # CONFIG_IP_NF_H323 is not set | 293 | # CONFIG_IP_NF_H323 is not set |
294 | # CONFIG_IP_NF_SIP is not set | ||
280 | CONFIG_IP_NF_QUEUE=m | 295 | CONFIG_IP_NF_QUEUE=m |
281 | 296 | ||
282 | # | 297 | # |
@@ -336,6 +351,7 @@ CONFIG_STANDALONE=y | |||
336 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 351 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
337 | CONFIG_FW_LOADER=y | 352 | CONFIG_FW_LOADER=y |
338 | # CONFIG_DEBUG_DRIVER is not set | 353 | # CONFIG_DEBUG_DRIVER is not set |
354 | # CONFIG_SYS_HYPERVISOR is not set | ||
339 | 355 | ||
340 | # | 356 | # |
341 | # Connector - unified userspace <-> kernelspace linker | 357 | # Connector - unified userspace <-> kernelspace linker |
@@ -372,6 +388,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
372 | CONFIG_BLK_DEV_RAM=y | 388 | CONFIG_BLK_DEV_RAM=y |
373 | CONFIG_BLK_DEV_RAM_COUNT=16 | 389 | CONFIG_BLK_DEV_RAM_COUNT=16 |
374 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 390 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
391 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
375 | CONFIG_BLK_DEV_INITRD=y | 392 | CONFIG_BLK_DEV_INITRD=y |
376 | # CONFIG_CDROM_PKTCDVD is not set | 393 | # CONFIG_CDROM_PKTCDVD is not set |
377 | # CONFIG_ATA_OVER_ETH is not set | 394 | # CONFIG_ATA_OVER_ETH is not set |
@@ -449,8 +466,7 @@ CONFIG_MD_LINEAR=m | |||
449 | CONFIG_MD_RAID0=m | 466 | CONFIG_MD_RAID0=m |
450 | CONFIG_MD_RAID1=m | 467 | CONFIG_MD_RAID1=m |
451 | # CONFIG_MD_RAID10 is not set | 468 | # CONFIG_MD_RAID10 is not set |
452 | # CONFIG_MD_RAID5 is not set | 469 | # CONFIG_MD_RAID456 is not set |
453 | # CONFIG_MD_RAID6 is not set | ||
454 | # CONFIG_MD_MULTIPATH is not set | 470 | # CONFIG_MD_MULTIPATH is not set |
455 | # CONFIG_MD_FAULTY is not set | 471 | # CONFIG_MD_FAULTY is not set |
456 | CONFIG_BLK_DEV_DM=m | 472 | CONFIG_BLK_DEV_DM=m |
@@ -544,6 +560,7 @@ CONFIG_SPIDER_NET=m | |||
544 | # CONFIG_CHELSIO_T1 is not set | 560 | # CONFIG_CHELSIO_T1 is not set |
545 | # CONFIG_IXGB is not set | 561 | # CONFIG_IXGB is not set |
546 | # CONFIG_S2IO is not set | 562 | # CONFIG_S2IO is not set |
563 | # CONFIG_MYRI10GE is not set | ||
547 | 564 | ||
548 | # | 565 | # |
549 | # Token Ring devices | 566 | # Token Ring devices |
@@ -620,6 +637,7 @@ CONFIG_SERIO_SERPORT=y | |||
620 | CONFIG_VT=y | 637 | CONFIG_VT=y |
621 | CONFIG_VT_CONSOLE=y | 638 | CONFIG_VT_CONSOLE=y |
622 | CONFIG_HW_CONSOLE=y | 639 | CONFIG_HW_CONSOLE=y |
640 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
623 | CONFIG_SERIAL_NONSTANDARD=y | 641 | CONFIG_SERIAL_NONSTANDARD=y |
624 | # CONFIG_COMPUTONE is not set | 642 | # CONFIG_COMPUTONE is not set |
625 | # CONFIG_ROCKETPORT is not set | 643 | # CONFIG_ROCKETPORT is not set |
@@ -680,6 +698,7 @@ CONFIG_WATCHDOG_RTAS=y | |||
680 | # | 698 | # |
681 | # CONFIG_PCIPCWATCHDOG is not set | 699 | # CONFIG_PCIPCWATCHDOG is not set |
682 | # CONFIG_WDTPCI is not set | 700 | # CONFIG_WDTPCI is not set |
701 | # CONFIG_HW_RANDOM is not set | ||
683 | CONFIG_GEN_RTC=y | 702 | CONFIG_GEN_RTC=y |
684 | # CONFIG_GEN_RTC_X is not set | 703 | # CONFIG_GEN_RTC_X is not set |
685 | # CONFIG_DTLK is not set | 704 | # CONFIG_DTLK is not set |
@@ -725,6 +744,7 @@ CONFIG_I2C_ALGOBIT=y | |||
725 | # CONFIG_I2C_I810 is not set | 744 | # CONFIG_I2C_I810 is not set |
726 | # CONFIG_I2C_PIIX4 is not set | 745 | # CONFIG_I2C_PIIX4 is not set |
727 | # CONFIG_I2C_NFORCE2 is not set | 746 | # CONFIG_I2C_NFORCE2 is not set |
747 | # CONFIG_I2C_OCORES is not set | ||
728 | # CONFIG_I2C_PARPORT_LIGHT is not set | 748 | # CONFIG_I2C_PARPORT_LIGHT is not set |
729 | # CONFIG_I2C_PROSAVAGE is not set | 749 | # CONFIG_I2C_PROSAVAGE is not set |
730 | # CONFIG_I2C_SAVAGE4 is not set | 750 | # CONFIG_I2C_SAVAGE4 is not set |
@@ -761,7 +781,6 @@ CONFIG_I2C_ALGOBIT=y | |||
761 | # | 781 | # |
762 | # Dallas's 1-wire bus | 782 | # Dallas's 1-wire bus |
763 | # | 783 | # |
764 | # CONFIG_W1 is not set | ||
765 | 784 | ||
766 | # | 785 | # |
767 | # Hardware Monitoring support | 786 | # Hardware Monitoring support |
@@ -787,6 +806,7 @@ CONFIG_VIDEO_V4L2=y | |||
787 | # | 806 | # |
788 | # Graphics support | 807 | # Graphics support |
789 | # | 808 | # |
809 | CONFIG_FIRMWARE_EDID=y | ||
790 | # CONFIG_FB is not set | 810 | # CONFIG_FB is not set |
791 | 811 | ||
792 | # | 812 | # |
@@ -794,6 +814,7 @@ CONFIG_VIDEO_V4L2=y | |||
794 | # | 814 | # |
795 | # CONFIG_VGA_CONSOLE is not set | 815 | # CONFIG_VGA_CONSOLE is not set |
796 | CONFIG_DUMMY_CONSOLE=y | 816 | CONFIG_DUMMY_CONSOLE=y |
817 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
797 | 818 | ||
798 | # | 819 | # |
799 | # Sound | 820 | # Sound |
@@ -841,6 +862,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
841 | CONFIG_INFINIBAND=y | 862 | CONFIG_INFINIBAND=y |
842 | CONFIG_INFINIBAND_USER_MAD=m | 863 | CONFIG_INFINIBAND_USER_MAD=m |
843 | CONFIG_INFINIBAND_USER_ACCESS=m | 864 | CONFIG_INFINIBAND_USER_ACCESS=m |
865 | CONFIG_INFINIBAND_ADDR_TRANS=y | ||
844 | CONFIG_INFINIBAND_MTHCA=m | 866 | CONFIG_INFINIBAND_MTHCA=m |
845 | CONFIG_INFINIBAND_MTHCA_DEBUG=y | 867 | CONFIG_INFINIBAND_MTHCA_DEBUG=y |
846 | CONFIG_INFINIBAND_IPOIB=m | 868 | CONFIG_INFINIBAND_IPOIB=m |
@@ -857,6 +879,19 @@ CONFIG_INFINIBAND_IPOIB_DEBUG_DATA=y | |||
857 | # CONFIG_RTC_CLASS is not set | 879 | # CONFIG_RTC_CLASS is not set |
858 | 880 | ||
859 | # | 881 | # |
882 | # DMA Engine support | ||
883 | # | ||
884 | # CONFIG_DMA_ENGINE is not set | ||
885 | |||
886 | # | ||
887 | # DMA Clients | ||
888 | # | ||
889 | |||
890 | # | ||
891 | # DMA Devices | ||
892 | # | ||
893 | |||
894 | # | ||
860 | # File systems | 895 | # File systems |
861 | # | 896 | # |
862 | CONFIG_EXT2_FS=y | 897 | CONFIG_EXT2_FS=y |
@@ -877,6 +912,7 @@ CONFIG_FS_POSIX_ACL=y | |||
877 | # CONFIG_MINIX_FS is not set | 912 | # CONFIG_MINIX_FS is not set |
878 | # CONFIG_ROMFS_FS is not set | 913 | # CONFIG_ROMFS_FS is not set |
879 | CONFIG_INOTIFY=y | 914 | CONFIG_INOTIFY=y |
915 | CONFIG_INOTIFY_USER=y | ||
880 | # CONFIG_QUOTA is not set | 916 | # CONFIG_QUOTA is not set |
881 | CONFIG_DNOTIFY=y | 917 | CONFIG_DNOTIFY=y |
882 | # CONFIG_AUTOFS_FS is not set | 918 | # CONFIG_AUTOFS_FS is not set |
@@ -1034,6 +1070,9 @@ CONFIG_CRC32=y | |||
1034 | # CONFIG_LIBCRC32C is not set | 1070 | # CONFIG_LIBCRC32C is not set |
1035 | CONFIG_ZLIB_INFLATE=m | 1071 | CONFIG_ZLIB_INFLATE=m |
1036 | CONFIG_ZLIB_DEFLATE=m | 1072 | CONFIG_ZLIB_DEFLATE=m |
1073 | CONFIG_TEXTSEARCH=y | ||
1074 | CONFIG_TEXTSEARCH_KMP=m | ||
1075 | CONFIG_PLIST=y | ||
1037 | 1076 | ||
1038 | # | 1077 | # |
1039 | # Instrumentation Support | 1078 | # Instrumentation Support |
@@ -1046,14 +1085,19 @@ CONFIG_ZLIB_DEFLATE=m | |||
1046 | # | 1085 | # |
1047 | # CONFIG_PRINTK_TIME is not set | 1086 | # CONFIG_PRINTK_TIME is not set |
1048 | CONFIG_MAGIC_SYSRQ=y | 1087 | CONFIG_MAGIC_SYSRQ=y |
1088 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1049 | CONFIG_DEBUG_KERNEL=y | 1089 | CONFIG_DEBUG_KERNEL=y |
1050 | CONFIG_LOG_BUF_SHIFT=15 | 1090 | CONFIG_LOG_BUF_SHIFT=15 |
1051 | CONFIG_DETECT_SOFTLOCKUP=y | 1091 | CONFIG_DETECT_SOFTLOCKUP=y |
1052 | # CONFIG_SCHEDSTATS is not set | 1092 | # CONFIG_SCHEDSTATS is not set |
1053 | # CONFIG_DEBUG_SLAB is not set | 1093 | # CONFIG_DEBUG_SLAB is not set |
1054 | CONFIG_DEBUG_MUTEXES=y | 1094 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1095 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1055 | # CONFIG_DEBUG_SPINLOCK is not set | 1096 | # CONFIG_DEBUG_SPINLOCK is not set |
1097 | CONFIG_DEBUG_MUTEXES=y | ||
1098 | # CONFIG_DEBUG_RWSEMS is not set | ||
1056 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1099 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
1100 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1057 | # CONFIG_DEBUG_KOBJECT is not set | 1101 | # CONFIG_DEBUG_KOBJECT is not set |
1058 | # CONFIG_DEBUG_INFO is not set | 1102 | # CONFIG_DEBUG_INFO is not set |
1059 | CONFIG_DEBUG_FS=y | 1103 | CONFIG_DEBUG_FS=y |
diff --git a/arch/powerpc/configs/chrp32_defconfig b/arch/powerpc/configs/chrp32_defconfig index 0fa010a63a8e..bbf2b5f8a8cb 100644 --- a/arch/powerpc/configs/chrp32_defconfig +++ b/arch/powerpc/configs/chrp32_defconfig | |||
@@ -1,13 +1,14 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Mon Jul 3 12:08:41 2006 | 4 | # Sun Sep 10 10:22:54 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
@@ -42,6 +43,7 @@ CONFIG_PPC_STD_MMU=y | |||
42 | CONFIG_PPC_STD_MMU_32=y | 43 | CONFIG_PPC_STD_MMU_32=y |
43 | CONFIG_SMP=y | 44 | CONFIG_SMP=y |
44 | CONFIG_NR_CPUS=4 | 45 | CONFIG_NR_CPUS=4 |
46 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
45 | 47 | ||
46 | # | 48 | # |
47 | # Code maturity level options | 49 | # Code maturity level options |
@@ -59,6 +61,7 @@ CONFIG_SWAP=y | |||
59 | CONFIG_SYSVIPC=y | 61 | CONFIG_SYSVIPC=y |
60 | CONFIG_POSIX_MQUEUE=y | 62 | CONFIG_POSIX_MQUEUE=y |
61 | # CONFIG_BSD_PROCESS_ACCT is not set | 63 | # CONFIG_BSD_PROCESS_ACCT is not set |
64 | # CONFIG_TASKSTATS is not set | ||
62 | CONFIG_SYSCTL=y | 65 | CONFIG_SYSCTL=y |
63 | # CONFIG_AUDIT is not set | 66 | # CONFIG_AUDIT is not set |
64 | CONFIG_IKCONFIG=y | 67 | CONFIG_IKCONFIG=y |
@@ -76,10 +79,12 @@ CONFIG_PRINTK=y | |||
76 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
77 | CONFIG_ELF_CORE=y | 80 | CONFIG_ELF_CORE=y |
78 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
82 | CONFIG_RT_MUTEXES=y | ||
79 | CONFIG_FUTEX=y | 83 | CONFIG_FUTEX=y |
80 | CONFIG_EPOLL=y | 84 | CONFIG_EPOLL=y |
81 | CONFIG_SHMEM=y | 85 | CONFIG_SHMEM=y |
82 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
87 | CONFIG_VM_EVENT_COUNTERS=y | ||
83 | # CONFIG_TINY_SHMEM is not set | 88 | # CONFIG_TINY_SHMEM is not set |
84 | CONFIG_BASE_SMALL=0 | 89 | CONFIG_BASE_SMALL=0 |
85 | # CONFIG_SLOB is not set | 90 | # CONFIG_SLOB is not set |
@@ -126,7 +131,7 @@ CONFIG_PPC_CHRP=y | |||
126 | # CONFIG_PPC_PMAC is not set | 131 | # CONFIG_PPC_PMAC is not set |
127 | # CONFIG_PPC_CELL is not set | 132 | # CONFIG_PPC_CELL is not set |
128 | # CONFIG_PPC_CELL_NATIVE is not set | 133 | # CONFIG_PPC_CELL_NATIVE is not set |
129 | CONFIG_MPIC=y | 134 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
130 | CONFIG_PPC_RTAS=y | 135 | CONFIG_PPC_RTAS=y |
131 | # CONFIG_RTAS_ERROR_LOGGING is not set | 136 | # CONFIG_RTAS_ERROR_LOGGING is not set |
132 | CONFIG_RTAS_PROC=y | 137 | CONFIG_RTAS_PROC=y |
@@ -136,6 +141,7 @@ CONFIG_PPC_MPC106=y | |||
136 | # CONFIG_CPU_FREQ is not set | 141 | # CONFIG_CPU_FREQ is not set |
137 | # CONFIG_TAU is not set | 142 | # CONFIG_TAU is not set |
138 | # CONFIG_WANT_EARLY_SERIAL is not set | 143 | # CONFIG_WANT_EARLY_SERIAL is not set |
144 | CONFIG_MPIC=y | ||
139 | 145 | ||
140 | # | 146 | # |
141 | # Kernel options | 147 | # Kernel options |
@@ -151,6 +157,7 @@ CONFIG_PREEMPT_NONE=y | |||
151 | CONFIG_PREEMPT_BKL=y | 157 | CONFIG_PREEMPT_BKL=y |
152 | CONFIG_BINFMT_ELF=y | 158 | CONFIG_BINFMT_ELF=y |
153 | CONFIG_BINFMT_MISC=y | 159 | CONFIG_BINFMT_MISC=y |
160 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
154 | # CONFIG_KEXEC is not set | 161 | # CONFIG_KEXEC is not set |
155 | CONFIG_IRQ_ALL_CPUS=y | 162 | CONFIG_IRQ_ALL_CPUS=y |
156 | CONFIG_ARCH_FLATMEM_ENABLE=y | 163 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -162,6 +169,7 @@ CONFIG_FLATMEM=y | |||
162 | CONFIG_FLAT_NODE_MEM_MAP=y | 169 | CONFIG_FLAT_NODE_MEM_MAP=y |
163 | # CONFIG_SPARSEMEM_STATIC is not set | 170 | # CONFIG_SPARSEMEM_STATIC is not set |
164 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 171 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
172 | # CONFIG_RESOURCES_64BIT is not set | ||
165 | CONFIG_PROC_DEVICETREE=y | 173 | CONFIG_PROC_DEVICETREE=y |
166 | # CONFIG_CMDLINE_BOOL is not set | 174 | # CONFIG_CMDLINE_BOOL is not set |
167 | # CONFIG_PM is not set | 175 | # CONFIG_PM is not set |
@@ -173,6 +181,7 @@ CONFIG_ISA_DMA_API=y | |||
173 | # | 181 | # |
174 | CONFIG_ISA=y | 182 | CONFIG_ISA=y |
175 | CONFIG_GENERIC_ISA_DMA=y | 183 | CONFIG_GENERIC_ISA_DMA=y |
184 | # CONFIG_MPIC_WEIRD is not set | ||
176 | CONFIG_PPC_I8259=y | 185 | CONFIG_PPC_I8259=y |
177 | CONFIG_PPC_INDIRECT_PCI=y | 186 | CONFIG_PPC_INDIRECT_PCI=y |
178 | CONFIG_PCI=y | 187 | CONFIG_PCI=y |
@@ -366,6 +375,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
366 | CONFIG_BLK_DEV_RAM=y | 375 | CONFIG_BLK_DEV_RAM=y |
367 | CONFIG_BLK_DEV_RAM_COUNT=16 | 376 | CONFIG_BLK_DEV_RAM_COUNT=16 |
368 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 377 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
378 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
369 | CONFIG_BLK_DEV_INITRD=y | 379 | CONFIG_BLK_DEV_INITRD=y |
370 | # CONFIG_CDROM_PKTCDVD is not set | 380 | # CONFIG_CDROM_PKTCDVD is not set |
371 | # CONFIG_ATA_OVER_ETH is not set | 381 | # CONFIG_ATA_OVER_ETH is not set |
@@ -622,6 +632,7 @@ CONFIG_8139TOO=y | |||
622 | # CONFIG_TLAN is not set | 632 | # CONFIG_TLAN is not set |
623 | CONFIG_VIA_RHINE=y | 633 | CONFIG_VIA_RHINE=y |
624 | # CONFIG_VIA_RHINE_MMIO is not set | 634 | # CONFIG_VIA_RHINE_MMIO is not set |
635 | # CONFIG_VIA_RHINE_NAPI is not set | ||
625 | 636 | ||
626 | # | 637 | # |
627 | # Ethernet (1000 Mbit) | 638 | # Ethernet (1000 Mbit) |
@@ -751,6 +762,7 @@ CONFIG_SERIO_LIBPS2=y | |||
751 | CONFIG_VT=y | 762 | CONFIG_VT=y |
752 | CONFIG_VT_CONSOLE=y | 763 | CONFIG_VT_CONSOLE=y |
753 | CONFIG_HW_CONSOLE=y | 764 | CONFIG_HW_CONSOLE=y |
765 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
754 | # CONFIG_SERIAL_NONSTANDARD is not set | 766 | # CONFIG_SERIAL_NONSTANDARD is not set |
755 | 767 | ||
756 | # | 768 | # |
@@ -783,6 +795,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
783 | # Watchdog Cards | 795 | # Watchdog Cards |
784 | # | 796 | # |
785 | # CONFIG_WATCHDOG is not set | 797 | # CONFIG_WATCHDOG is not set |
798 | # CONFIG_HW_RANDOM is not set | ||
786 | CONFIG_NVRAM=y | 799 | CONFIG_NVRAM=y |
787 | CONFIG_GEN_RTC=y | 800 | CONFIG_GEN_RTC=y |
788 | # CONFIG_GEN_RTC_X is not set | 801 | # CONFIG_GEN_RTC_X is not set |
@@ -894,12 +907,12 @@ CONFIG_VIDEO_V4L2=y | |||
894 | # | 907 | # |
895 | # Graphics support | 908 | # Graphics support |
896 | # | 909 | # |
910 | CONFIG_FIRMWARE_EDID=y | ||
897 | CONFIG_FB=y | 911 | CONFIG_FB=y |
898 | CONFIG_FB_CFB_FILLRECT=y | 912 | CONFIG_FB_CFB_FILLRECT=y |
899 | CONFIG_FB_CFB_COPYAREA=y | 913 | CONFIG_FB_CFB_COPYAREA=y |
900 | CONFIG_FB_CFB_IMAGEBLIT=y | 914 | CONFIG_FB_CFB_IMAGEBLIT=y |
901 | CONFIG_FB_MACMODES=y | 915 | CONFIG_FB_MACMODES=y |
902 | CONFIG_FB_FIRMWARE_EDID=y | ||
903 | # CONFIG_FB_BACKLIGHT is not set | 916 | # CONFIG_FB_BACKLIGHT is not set |
904 | CONFIG_FB_MODE_HELPERS=y | 917 | CONFIG_FB_MODE_HELPERS=y |
905 | CONFIG_FB_TILEBLITTING=y | 918 | CONFIG_FB_TILEBLITTING=y |
@@ -1079,7 +1092,7 @@ CONFIG_USB_MON=y | |||
1079 | # CONFIG_USB_LEGOTOWER is not set | 1092 | # CONFIG_USB_LEGOTOWER is not set |
1080 | # CONFIG_USB_LCD is not set | 1093 | # CONFIG_USB_LCD is not set |
1081 | # CONFIG_USB_LED is not set | 1094 | # CONFIG_USB_LED is not set |
1082 | # CONFIG_USB_CY7C63 is not set | 1095 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1083 | # CONFIG_USB_CYTHERM is not set | 1096 | # CONFIG_USB_CYTHERM is not set |
1084 | # CONFIG_USB_PHIDGETKIT is not set | 1097 | # CONFIG_USB_PHIDGETKIT is not set |
1085 | # CONFIG_USB_PHIDGETSERVO is not set | 1098 | # CONFIG_USB_PHIDGETSERVO is not set |
@@ -1305,6 +1318,7 @@ CONFIG_ZLIB_INFLATE=m | |||
1305 | CONFIG_ZLIB_DEFLATE=m | 1318 | CONFIG_ZLIB_DEFLATE=m |
1306 | CONFIG_TEXTSEARCH=y | 1319 | CONFIG_TEXTSEARCH=y |
1307 | CONFIG_TEXTSEARCH_KMP=m | 1320 | CONFIG_TEXTSEARCH_KMP=m |
1321 | CONFIG_PLIST=y | ||
1308 | 1322 | ||
1309 | # | 1323 | # |
1310 | # Instrumentation Support | 1324 | # Instrumentation Support |
@@ -1316,14 +1330,19 @@ CONFIG_TEXTSEARCH_KMP=m | |||
1316 | # | 1330 | # |
1317 | # CONFIG_PRINTK_TIME is not set | 1331 | # CONFIG_PRINTK_TIME is not set |
1318 | CONFIG_MAGIC_SYSRQ=y | 1332 | CONFIG_MAGIC_SYSRQ=y |
1333 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1319 | CONFIG_DEBUG_KERNEL=y | 1334 | CONFIG_DEBUG_KERNEL=y |
1320 | CONFIG_LOG_BUF_SHIFT=15 | 1335 | CONFIG_LOG_BUF_SHIFT=15 |
1321 | CONFIG_DETECT_SOFTLOCKUP=y | 1336 | CONFIG_DETECT_SOFTLOCKUP=y |
1322 | # CONFIG_SCHEDSTATS is not set | 1337 | # CONFIG_SCHEDSTATS is not set |
1323 | # CONFIG_DEBUG_SLAB is not set | 1338 | # CONFIG_DEBUG_SLAB is not set |
1324 | CONFIG_DEBUG_MUTEXES=y | 1339 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1340 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1325 | # CONFIG_DEBUG_SPINLOCK is not set | 1341 | # CONFIG_DEBUG_SPINLOCK is not set |
1342 | CONFIG_DEBUG_MUTEXES=y | ||
1343 | # CONFIG_DEBUG_RWSEMS is not set | ||
1326 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1344 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
1345 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1327 | # CONFIG_DEBUG_KOBJECT is not set | 1346 | # CONFIG_DEBUG_KOBJECT is not set |
1328 | # CONFIG_DEBUG_HIGHMEM is not set | 1347 | # CONFIG_DEBUG_HIGHMEM is not set |
1329 | # CONFIG_DEBUG_INFO is not set | 1348 | # CONFIG_DEBUG_INFO is not set |
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig index 8c6bd17c6929..4b9c2ed925f5 100644 --- a/arch/powerpc/configs/g5_defconfig +++ b/arch/powerpc/configs/g5_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.18-rc3 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Tue Aug 8 09:12:29 2006 | 4 | # Sun Sep 10 10:22:55 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
@@ -126,7 +126,6 @@ CONFIG_PPC_PMAC64=y | |||
126 | # CONFIG_PPC_IBM_CELL_BLADE is not set | 126 | # CONFIG_PPC_IBM_CELL_BLADE is not set |
127 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 127 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
128 | CONFIG_U3_DART=y | 128 | CONFIG_U3_DART=y |
129 | CONFIG_MPIC=y | ||
130 | # CONFIG_PPC_RTAS is not set | 129 | # CONFIG_PPC_RTAS is not set |
131 | # CONFIG_MMIO_NVRAM is not set | 130 | # CONFIG_MMIO_NVRAM is not set |
132 | CONFIG_MPIC_BROKEN_U3=y | 131 | CONFIG_MPIC_BROKEN_U3=y |
@@ -146,6 +145,7 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y | |||
146 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set | 145 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set |
147 | CONFIG_CPU_FREQ_PMAC64=y | 146 | CONFIG_CPU_FREQ_PMAC64=y |
148 | # CONFIG_WANT_EARLY_SERIAL is not set | 147 | # CONFIG_WANT_EARLY_SERIAL is not set |
148 | CONFIG_MPIC=y | ||
149 | 149 | ||
150 | # | 150 | # |
151 | # Kernel options | 151 | # Kernel options |
@@ -192,6 +192,7 @@ CONFIG_ISA_DMA_API=y | |||
192 | # Bus options | 192 | # Bus options |
193 | # | 193 | # |
194 | CONFIG_GENERIC_ISA_DMA=y | 194 | CONFIG_GENERIC_ISA_DMA=y |
195 | # CONFIG_MPIC_WEIRD is not set | ||
195 | # CONFIG_PPC_I8259 is not set | 196 | # CONFIG_PPC_I8259 is not set |
196 | # CONFIG_PPC_INDIRECT_PCI is not set | 197 | # CONFIG_PPC_INDIRECT_PCI is not set |
197 | CONFIG_PCI=y | 198 | CONFIG_PCI=y |
@@ -772,7 +773,6 @@ CONFIG_HW_CONSOLE=y | |||
772 | CONFIG_UNIX98_PTYS=y | 773 | CONFIG_UNIX98_PTYS=y |
773 | CONFIG_LEGACY_PTYS=y | 774 | CONFIG_LEGACY_PTYS=y |
774 | CONFIG_LEGACY_PTY_COUNT=256 | 775 | CONFIG_LEGACY_PTY_COUNT=256 |
775 | # CONFIG_BRIQ_PANEL is not set | ||
776 | 776 | ||
777 | # | 777 | # |
778 | # IPMI | 778 | # IPMI |
@@ -1195,7 +1195,6 @@ CONFIG_USB_MON=y | |||
1195 | CONFIG_USB_SERIAL=m | 1195 | CONFIG_USB_SERIAL=m |
1196 | CONFIG_USB_SERIAL_GENERIC=y | 1196 | CONFIG_USB_SERIAL_GENERIC=y |
1197 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 1197 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
1198 | # CONFIG_USB_SERIAL_ANYDATA is not set | ||
1199 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1198 | # CONFIG_USB_SERIAL_ARK3116 is not set |
1200 | CONFIG_USB_SERIAL_BELKIN=m | 1199 | CONFIG_USB_SERIAL_BELKIN=m |
1201 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1200 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
diff --git a/arch/powerpc/configs/iseries_defconfig b/arch/powerpc/configs/iseries_defconfig index 72ed95b3ead6..eb0885ea0731 100644 --- a/arch/powerpc/configs/iseries_defconfig +++ b/arch/powerpc/configs/iseries_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.18-rc3 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Tue Aug 8 09:15:46 2006 | 4 | # Sun Sep 10 10:22:57 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
@@ -129,6 +129,7 @@ CONFIG_IBMVIO=y | |||
129 | # CONFIG_PPC_970_NAP is not set | 129 | # CONFIG_PPC_970_NAP is not set |
130 | # CONFIG_CPU_FREQ is not set | 130 | # CONFIG_CPU_FREQ is not set |
131 | # CONFIG_WANT_EARLY_SERIAL is not set | 131 | # CONFIG_WANT_EARLY_SERIAL is not set |
132 | # CONFIG_MPIC is not set | ||
132 | 133 | ||
133 | # | 134 | # |
134 | # Kernel options | 135 | # Kernel options |
@@ -172,6 +173,7 @@ CONFIG_ISA_DMA_API=y | |||
172 | # Bus options | 173 | # Bus options |
173 | # | 174 | # |
174 | CONFIG_GENERIC_ISA_DMA=y | 175 | CONFIG_GENERIC_ISA_DMA=y |
176 | # CONFIG_MPIC_WEIRD is not set | ||
175 | # CONFIG_PPC_I8259 is not set | 177 | # CONFIG_PPC_I8259 is not set |
176 | # CONFIG_PPC_INDIRECT_PCI is not set | 178 | # CONFIG_PPC_INDIRECT_PCI is not set |
177 | CONFIG_PCI=y | 179 | CONFIG_PCI=y |
@@ -716,7 +718,6 @@ CONFIG_SERIAL_ICOM=m | |||
716 | CONFIG_UNIX98_PTYS=y | 718 | CONFIG_UNIX98_PTYS=y |
717 | CONFIG_LEGACY_PTYS=y | 719 | CONFIG_LEGACY_PTYS=y |
718 | CONFIG_LEGACY_PTY_COUNT=256 | 720 | CONFIG_LEGACY_PTY_COUNT=256 |
719 | # CONFIG_BRIQ_PANEL is not set | ||
720 | 721 | ||
721 | # | 722 | # |
722 | # IPMI | 723 | # IPMI |
diff --git a/arch/powerpc/configs/maple_defconfig b/arch/powerpc/configs/maple_defconfig index 80a0db43aeb7..2860be106f4f 100644 --- a/arch/powerpc/configs/maple_defconfig +++ b/arch/powerpc/configs/maple_defconfig | |||
@@ -1,15 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.16-rc6 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Wed Mar 15 16:19:54 2006 | 4 | # Sun Sep 10 10:24:55 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
13 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
14 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
15 | CONFIG_COMPAT=y | 18 | CONFIG_COMPAT=y |
@@ -29,8 +32,10 @@ CONFIG_POWER4=y | |||
29 | CONFIG_PPC_FPU=y | 32 | CONFIG_PPC_FPU=y |
30 | # CONFIG_ALTIVEC is not set | 33 | # CONFIG_ALTIVEC is not set |
31 | CONFIG_PPC_STD_MMU=y | 34 | CONFIG_PPC_STD_MMU=y |
35 | CONFIG_VIRT_CPU_ACCOUNTING=y | ||
32 | CONFIG_SMP=y | 36 | CONFIG_SMP=y |
33 | CONFIG_NR_CPUS=2 | 37 | CONFIG_NR_CPUS=2 |
38 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
34 | 39 | ||
35 | # | 40 | # |
36 | # Code maturity level options | 41 | # Code maturity level options |
@@ -48,11 +53,13 @@ CONFIG_SWAP=y | |||
48 | CONFIG_SYSVIPC=y | 53 | CONFIG_SYSVIPC=y |
49 | CONFIG_POSIX_MQUEUE=y | 54 | CONFIG_POSIX_MQUEUE=y |
50 | # CONFIG_BSD_PROCESS_ACCT is not set | 55 | # CONFIG_BSD_PROCESS_ACCT is not set |
56 | # CONFIG_TASKSTATS is not set | ||
51 | CONFIG_SYSCTL=y | 57 | CONFIG_SYSCTL=y |
52 | # CONFIG_AUDIT is not set | 58 | # CONFIG_AUDIT is not set |
53 | CONFIG_IKCONFIG=y | 59 | CONFIG_IKCONFIG=y |
54 | CONFIG_IKCONFIG_PROC=y | 60 | CONFIG_IKCONFIG_PROC=y |
55 | # CONFIG_CPUSETS is not set | 61 | # CONFIG_CPUSETS is not set |
62 | # CONFIG_RELAY is not set | ||
56 | CONFIG_INITRAMFS_SOURCE="" | 63 | CONFIG_INITRAMFS_SOURCE="" |
57 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 64 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
58 | # CONFIG_EMBEDDED is not set | 65 | # CONFIG_EMBEDDED is not set |
@@ -64,14 +71,12 @@ CONFIG_PRINTK=y | |||
64 | CONFIG_BUG=y | 71 | CONFIG_BUG=y |
65 | CONFIG_ELF_CORE=y | 72 | CONFIG_ELF_CORE=y |
66 | CONFIG_BASE_FULL=y | 73 | CONFIG_BASE_FULL=y |
74 | CONFIG_RT_MUTEXES=y | ||
67 | CONFIG_FUTEX=y | 75 | CONFIG_FUTEX=y |
68 | CONFIG_EPOLL=y | 76 | CONFIG_EPOLL=y |
69 | CONFIG_SHMEM=y | 77 | CONFIG_SHMEM=y |
70 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
71 | CONFIG_CC_ALIGN_LABELS=0 | ||
72 | CONFIG_CC_ALIGN_LOOPS=0 | ||
73 | CONFIG_CC_ALIGN_JUMPS=0 | ||
74 | CONFIG_SLAB=y | 78 | CONFIG_SLAB=y |
79 | CONFIG_VM_EVENT_COUNTERS=y | ||
75 | # CONFIG_TINY_SHMEM is not set | 80 | # CONFIG_TINY_SHMEM is not set |
76 | CONFIG_BASE_SMALL=0 | 81 | CONFIG_BASE_SMALL=0 |
77 | # CONFIG_SLOB is not set | 82 | # CONFIG_SLOB is not set |
@@ -82,7 +87,6 @@ CONFIG_BASE_SMALL=0 | |||
82 | CONFIG_MODULES=y | 87 | CONFIG_MODULES=y |
83 | CONFIG_MODULE_UNLOAD=y | 88 | CONFIG_MODULE_UNLOAD=y |
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 89 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | CONFIG_OBSOLETE_MODPARM=y | ||
86 | CONFIG_MODVERSIONS=y | 90 | CONFIG_MODVERSIONS=y |
87 | CONFIG_MODULE_SRCVERSION_ALL=y | 91 | CONFIG_MODULE_SRCVERSION_ALL=y |
88 | CONFIG_KMOD=y | 92 | CONFIG_KMOD=y |
@@ -91,6 +95,7 @@ CONFIG_STOP_MACHINE=y | |||
91 | # | 95 | # |
92 | # Block layer | 96 | # Block layer |
93 | # | 97 | # |
98 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
94 | 99 | ||
95 | # | 100 | # |
96 | # IO Schedulers | 101 | # IO Schedulers |
@@ -116,14 +121,18 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
116 | # CONFIG_PPC_PMAC is not set | 121 | # CONFIG_PPC_PMAC is not set |
117 | CONFIG_PPC_MAPLE=y | 122 | CONFIG_PPC_MAPLE=y |
118 | # CONFIG_PPC_CELL is not set | 123 | # CONFIG_PPC_CELL is not set |
124 | # CONFIG_PPC_CELL_NATIVE is not set | ||
125 | # CONFIG_PPC_IBM_CELL_BLADE is not set | ||
126 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
119 | CONFIG_U3_DART=y | 127 | CONFIG_U3_DART=y |
120 | CONFIG_MPIC=y | ||
121 | # CONFIG_PPC_RTAS is not set | 128 | # CONFIG_PPC_RTAS is not set |
122 | # CONFIG_MMIO_NVRAM is not set | 129 | # CONFIG_MMIO_NVRAM is not set |
123 | CONFIG_MPIC_BROKEN_U3=y | 130 | CONFIG_MPIC_BROKEN_U3=y |
124 | # CONFIG_PPC_MPC106 is not set | 131 | # CONFIG_PPC_MPC106 is not set |
132 | CONFIG_PPC_970_NAP=y | ||
125 | # CONFIG_CPU_FREQ is not set | 133 | # CONFIG_CPU_FREQ is not set |
126 | # CONFIG_WANT_EARLY_SERIAL is not set | 134 | # CONFIG_WANT_EARLY_SERIAL is not set |
135 | CONFIG_MPIC=y | ||
127 | 136 | ||
128 | # | 137 | # |
129 | # Kernel options | 138 | # Kernel options |
@@ -140,6 +149,7 @@ CONFIG_BINFMT_ELF=y | |||
140 | # CONFIG_BINFMT_MISC is not set | 149 | # CONFIG_BINFMT_MISC is not set |
141 | CONFIG_FORCE_MAX_ZONEORDER=13 | 150 | CONFIG_FORCE_MAX_ZONEORDER=13 |
142 | CONFIG_IOMMU_VMERGE=y | 151 | CONFIG_IOMMU_VMERGE=y |
152 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
143 | CONFIG_KEXEC=y | 153 | CONFIG_KEXEC=y |
144 | # CONFIG_CRASH_DUMP is not set | 154 | # CONFIG_CRASH_DUMP is not set |
145 | CONFIG_IRQ_ALL_CPUS=y | 155 | CONFIG_IRQ_ALL_CPUS=y |
@@ -155,6 +165,7 @@ CONFIG_FLATMEM=y | |||
155 | CONFIG_FLAT_NODE_MEM_MAP=y | 165 | CONFIG_FLAT_NODE_MEM_MAP=y |
156 | # CONFIG_SPARSEMEM_STATIC is not set | 166 | # CONFIG_SPARSEMEM_STATIC is not set |
157 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 167 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
168 | CONFIG_RESOURCES_64BIT=y | ||
158 | # CONFIG_PPC_64K_PAGES is not set | 169 | # CONFIG_PPC_64K_PAGES is not set |
159 | # CONFIG_SCHED_SMT is not set | 170 | # CONFIG_SCHED_SMT is not set |
160 | CONFIG_PROC_DEVICETREE=y | 171 | CONFIG_PROC_DEVICETREE=y |
@@ -167,11 +178,12 @@ CONFIG_ISA_DMA_API=y | |||
167 | # Bus options | 178 | # Bus options |
168 | # | 179 | # |
169 | CONFIG_GENERIC_ISA_DMA=y | 180 | CONFIG_GENERIC_ISA_DMA=y |
181 | # CONFIG_MPIC_WEIRD is not set | ||
170 | # CONFIG_PPC_I8259 is not set | 182 | # CONFIG_PPC_I8259 is not set |
171 | # CONFIG_PPC_INDIRECT_PCI is not set | 183 | # CONFIG_PPC_INDIRECT_PCI is not set |
172 | CONFIG_PCI=y | 184 | CONFIG_PCI=y |
173 | CONFIG_PCI_DOMAINS=y | 185 | CONFIG_PCI_DOMAINS=y |
174 | CONFIG_PCI_LEGACY_PROC=y | 186 | # CONFIG_PCIEPORTBUS is not set |
175 | # CONFIG_PCI_DEBUG is not set | 187 | # CONFIG_PCI_DEBUG is not set |
176 | 188 | ||
177 | # | 189 | # |
@@ -197,6 +209,8 @@ CONFIG_NET=y | |||
197 | CONFIG_PACKET=y | 209 | CONFIG_PACKET=y |
198 | CONFIG_PACKET_MMAP=y | 210 | CONFIG_PACKET_MMAP=y |
199 | CONFIG_UNIX=y | 211 | CONFIG_UNIX=y |
212 | CONFIG_XFRM=y | ||
213 | CONFIG_XFRM_USER=m | ||
200 | # CONFIG_NET_KEY is not set | 214 | # CONFIG_NET_KEY is not set |
201 | CONFIG_INET=y | 215 | CONFIG_INET=y |
202 | CONFIG_IP_MULTICAST=y | 216 | CONFIG_IP_MULTICAST=y |
@@ -214,12 +228,18 @@ CONFIG_IP_PNP_DHCP=y | |||
214 | # CONFIG_INET_AH is not set | 228 | # CONFIG_INET_AH is not set |
215 | # CONFIG_INET_ESP is not set | 229 | # CONFIG_INET_ESP is not set |
216 | # CONFIG_INET_IPCOMP is not set | 230 | # CONFIG_INET_IPCOMP is not set |
231 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
217 | # CONFIG_INET_TUNNEL is not set | 232 | # CONFIG_INET_TUNNEL is not set |
233 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
234 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
218 | CONFIG_INET_DIAG=y | 235 | CONFIG_INET_DIAG=y |
219 | CONFIG_INET_TCP_DIAG=y | 236 | CONFIG_INET_TCP_DIAG=y |
220 | # CONFIG_TCP_CONG_ADVANCED is not set | 237 | # CONFIG_TCP_CONG_ADVANCED is not set |
221 | CONFIG_TCP_CONG_BIC=y | 238 | CONFIG_TCP_CONG_BIC=y |
222 | # CONFIG_IPV6 is not set | 239 | # CONFIG_IPV6 is not set |
240 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
241 | # CONFIG_INET6_TUNNEL is not set | ||
242 | # CONFIG_NETWORK_SECMARK is not set | ||
223 | # CONFIG_NETFILTER is not set | 243 | # CONFIG_NETFILTER is not set |
224 | 244 | ||
225 | # | 245 | # |
@@ -274,6 +294,7 @@ CONFIG_STANDALONE=y | |||
274 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 294 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
275 | # CONFIG_FW_LOADER is not set | 295 | # CONFIG_FW_LOADER is not set |
276 | # CONFIG_DEBUG_DRIVER is not set | 296 | # CONFIG_DEBUG_DRIVER is not set |
297 | # CONFIG_SYS_HYPERVISOR is not set | ||
277 | 298 | ||
278 | # | 299 | # |
279 | # Connector - unified userspace <-> kernelspace linker | 300 | # Connector - unified userspace <-> kernelspace linker |
@@ -310,6 +331,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
310 | CONFIG_BLK_DEV_RAM=y | 331 | CONFIG_BLK_DEV_RAM=y |
311 | CONFIG_BLK_DEV_RAM_COUNT=16 | 332 | CONFIG_BLK_DEV_RAM_COUNT=16 |
312 | CONFIG_BLK_DEV_RAM_SIZE=8192 | 333 | CONFIG_BLK_DEV_RAM_SIZE=8192 |
334 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
313 | # CONFIG_BLK_DEV_INITRD is not set | 335 | # CONFIG_BLK_DEV_INITRD is not set |
314 | # CONFIG_CDROM_PKTCDVD is not set | 336 | # CONFIG_CDROM_PKTCDVD is not set |
315 | # CONFIG_ATA_OVER_ETH is not set | 337 | # CONFIG_ATA_OVER_ETH is not set |
@@ -484,6 +506,7 @@ CONFIG_E1000=y | |||
484 | # CONFIG_CHELSIO_T1 is not set | 506 | # CONFIG_CHELSIO_T1 is not set |
485 | # CONFIG_IXGB is not set | 507 | # CONFIG_IXGB is not set |
486 | # CONFIG_S2IO is not set | 508 | # CONFIG_S2IO is not set |
509 | # CONFIG_MYRI10GE is not set | ||
487 | 510 | ||
488 | # | 511 | # |
489 | # Token Ring devices | 512 | # Token Ring devices |
@@ -556,6 +579,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=1200 | |||
556 | CONFIG_VT=y | 579 | CONFIG_VT=y |
557 | CONFIG_VT_CONSOLE=y | 580 | CONFIG_VT_CONSOLE=y |
558 | CONFIG_HW_CONSOLE=y | 581 | CONFIG_HW_CONSOLE=y |
582 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
559 | # CONFIG_SERIAL_NONSTANDARD is not set | 583 | # CONFIG_SERIAL_NONSTANDARD is not set |
560 | 584 | ||
561 | # | 585 | # |
@@ -563,6 +587,7 @@ CONFIG_HW_CONSOLE=y | |||
563 | # | 587 | # |
564 | CONFIG_SERIAL_8250=y | 588 | CONFIG_SERIAL_8250=y |
565 | CONFIG_SERIAL_8250_CONSOLE=y | 589 | CONFIG_SERIAL_8250_CONSOLE=y |
590 | CONFIG_SERIAL_8250_PCI=y | ||
566 | CONFIG_SERIAL_8250_NR_UARTS=4 | 591 | CONFIG_SERIAL_8250_NR_UARTS=4 |
567 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 592 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
568 | # CONFIG_SERIAL_8250_EXTENDED is not set | 593 | # CONFIG_SERIAL_8250_EXTENDED is not set |
@@ -586,7 +611,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
586 | # Watchdog Cards | 611 | # Watchdog Cards |
587 | # | 612 | # |
588 | # CONFIG_WATCHDOG is not set | 613 | # CONFIG_WATCHDOG is not set |
589 | # CONFIG_RTC is not set | 614 | # CONFIG_HW_RANDOM is not set |
590 | CONFIG_GEN_RTC=y | 615 | CONFIG_GEN_RTC=y |
591 | # CONFIG_GEN_RTC_X is not set | 616 | # CONFIG_GEN_RTC_X is not set |
592 | # CONFIG_DTLK is not set | 617 | # CONFIG_DTLK is not set |
@@ -632,10 +657,10 @@ CONFIG_I2C_AMD8111=y | |||
632 | # CONFIG_I2C_I810 is not set | 657 | # CONFIG_I2C_I810 is not set |
633 | # CONFIG_I2C_PIIX4 is not set | 658 | # CONFIG_I2C_PIIX4 is not set |
634 | # CONFIG_I2C_NFORCE2 is not set | 659 | # CONFIG_I2C_NFORCE2 is not set |
660 | # CONFIG_I2C_OCORES is not set | ||
635 | # CONFIG_I2C_PARPORT_LIGHT is not set | 661 | # CONFIG_I2C_PARPORT_LIGHT is not set |
636 | # CONFIG_I2C_PROSAVAGE is not set | 662 | # CONFIG_I2C_PROSAVAGE is not set |
637 | # CONFIG_I2C_SAVAGE4 is not set | 663 | # CONFIG_I2C_SAVAGE4 is not set |
638 | # CONFIG_SCx200_ACB is not set | ||
639 | # CONFIG_I2C_SIS5595 is not set | 664 | # CONFIG_I2C_SIS5595 is not set |
640 | # CONFIG_I2C_SIS630 is not set | 665 | # CONFIG_I2C_SIS630 is not set |
641 | # CONFIG_I2C_SIS96X is not set | 666 | # CONFIG_I2C_SIS96X is not set |
@@ -654,9 +679,7 @@ CONFIG_I2C_AMD8111=y | |||
654 | # CONFIG_SENSORS_PCF8574 is not set | 679 | # CONFIG_SENSORS_PCF8574 is not set |
655 | # CONFIG_SENSORS_PCA9539 is not set | 680 | # CONFIG_SENSORS_PCA9539 is not set |
656 | # CONFIG_SENSORS_PCF8591 is not set | 681 | # CONFIG_SENSORS_PCF8591 is not set |
657 | # CONFIG_SENSORS_RTC8564 is not set | ||
658 | # CONFIG_SENSORS_MAX6875 is not set | 682 | # CONFIG_SENSORS_MAX6875 is not set |
659 | # CONFIG_RTC_X1205_I2C is not set | ||
660 | # CONFIG_I2C_DEBUG_CORE is not set | 683 | # CONFIG_I2C_DEBUG_CORE is not set |
661 | # CONFIG_I2C_DEBUG_ALGO is not set | 684 | # CONFIG_I2C_DEBUG_ALGO is not set |
662 | # CONFIG_I2C_DEBUG_BUS is not set | 685 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -671,7 +694,6 @@ CONFIG_I2C_AMD8111=y | |||
671 | # | 694 | # |
672 | # Dallas's 1-wire bus | 695 | # Dallas's 1-wire bus |
673 | # | 696 | # |
674 | # CONFIG_W1 is not set | ||
675 | 697 | ||
676 | # | 698 | # |
677 | # Hardware Monitoring support | 699 | # Hardware Monitoring support |
@@ -684,22 +706,21 @@ CONFIG_I2C_AMD8111=y | |||
684 | # | 706 | # |
685 | 707 | ||
686 | # | 708 | # |
687 | # Multimedia Capabilities Port drivers | ||
688 | # | ||
689 | |||
690 | # | ||
691 | # Multimedia devices | 709 | # Multimedia devices |
692 | # | 710 | # |
693 | # CONFIG_VIDEO_DEV is not set | 711 | # CONFIG_VIDEO_DEV is not set |
712 | CONFIG_VIDEO_V4L2=y | ||
694 | 713 | ||
695 | # | 714 | # |
696 | # Digital Video Broadcasting Devices | 715 | # Digital Video Broadcasting Devices |
697 | # | 716 | # |
698 | # CONFIG_DVB is not set | 717 | # CONFIG_DVB is not set |
718 | # CONFIG_USB_DABUSB is not set | ||
699 | 719 | ||
700 | # | 720 | # |
701 | # Graphics support | 721 | # Graphics support |
702 | # | 722 | # |
723 | CONFIG_FIRMWARE_EDID=y | ||
703 | # CONFIG_FB is not set | 724 | # CONFIG_FB is not set |
704 | 725 | ||
705 | # | 726 | # |
@@ -707,6 +728,7 @@ CONFIG_I2C_AMD8111=y | |||
707 | # | 728 | # |
708 | # CONFIG_VGA_CONSOLE is not set | 729 | # CONFIG_VGA_CONSOLE is not set |
709 | CONFIG_DUMMY_CONSOLE=y | 730 | CONFIG_DUMMY_CONSOLE=y |
731 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
710 | 732 | ||
711 | # | 733 | # |
712 | # Sound | 734 | # Sound |
@@ -718,6 +740,7 @@ CONFIG_DUMMY_CONSOLE=y | |||
718 | # | 740 | # |
719 | CONFIG_USB_ARCH_HAS_HCD=y | 741 | CONFIG_USB_ARCH_HAS_HCD=y |
720 | CONFIG_USB_ARCH_HAS_OHCI=y | 742 | CONFIG_USB_ARCH_HAS_OHCI=y |
743 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
721 | CONFIG_USB=y | 744 | CONFIG_USB=y |
722 | # CONFIG_USB_DEBUG is not set | 745 | # CONFIG_USB_DEBUG is not set |
723 | 746 | ||
@@ -735,6 +758,7 @@ CONFIG_USB_DEVICEFS=y | |||
735 | CONFIG_USB_EHCI_HCD=y | 758 | CONFIG_USB_EHCI_HCD=y |
736 | CONFIG_USB_EHCI_SPLIT_ISO=y | 759 | CONFIG_USB_EHCI_SPLIT_ISO=y |
737 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 760 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
761 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
738 | # CONFIG_USB_ISP116X_HCD is not set | 762 | # CONFIG_USB_ISP116X_HCD is not set |
739 | CONFIG_USB_OHCI_HCD=y | 763 | CONFIG_USB_OHCI_HCD=y |
740 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | 764 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set |
@@ -771,9 +795,7 @@ CONFIG_USB_HIDINPUT=y | |||
771 | # CONFIG_USB_ACECAD is not set | 795 | # CONFIG_USB_ACECAD is not set |
772 | # CONFIG_USB_KBTAB is not set | 796 | # CONFIG_USB_KBTAB is not set |
773 | # CONFIG_USB_POWERMATE is not set | 797 | # CONFIG_USB_POWERMATE is not set |
774 | # CONFIG_USB_MTOUCH is not set | 798 | # CONFIG_USB_TOUCHSCREEN is not set |
775 | # CONFIG_USB_ITMTOUCH is not set | ||
776 | # CONFIG_USB_EGALAX is not set | ||
777 | # CONFIG_USB_YEALINK is not set | 799 | # CONFIG_USB_YEALINK is not set |
778 | # CONFIG_USB_XPAD is not set | 800 | # CONFIG_USB_XPAD is not set |
779 | # CONFIG_USB_ATI_REMOTE is not set | 801 | # CONFIG_USB_ATI_REMOTE is not set |
@@ -787,15 +809,6 @@ CONFIG_USB_HIDINPUT=y | |||
787 | # CONFIG_USB_MDC800 is not set | 809 | # CONFIG_USB_MDC800 is not set |
788 | 810 | ||
789 | # | 811 | # |
790 | # USB Multimedia devices | ||
791 | # | ||
792 | # CONFIG_USB_DABUSB is not set | ||
793 | |||
794 | # | ||
795 | # Video4Linux support is needed for USB Multimedia device support | ||
796 | # | ||
797 | |||
798 | # | ||
799 | # USB Network Adapters | 812 | # USB Network Adapters |
800 | # | 813 | # |
801 | # CONFIG_USB_CATC is not set | 814 | # CONFIG_USB_CATC is not set |
@@ -816,7 +829,7 @@ CONFIG_USB_SERIAL=y | |||
816 | # CONFIG_USB_SERIAL_CONSOLE is not set | 829 | # CONFIG_USB_SERIAL_CONSOLE is not set |
817 | CONFIG_USB_SERIAL_GENERIC=y | 830 | CONFIG_USB_SERIAL_GENERIC=y |
818 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 831 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
819 | # CONFIG_USB_SERIAL_ANYDATA is not set | 832 | # CONFIG_USB_SERIAL_ARK3116 is not set |
820 | # CONFIG_USB_SERIAL_BELKIN is not set | 833 | # CONFIG_USB_SERIAL_BELKIN is not set |
821 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 834 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
822 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 835 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
@@ -824,6 +837,7 @@ CONFIG_USB_SERIAL_GENERIC=y | |||
824 | CONFIG_USB_SERIAL_CYPRESS_M8=m | 837 | CONFIG_USB_SERIAL_CYPRESS_M8=m |
825 | # CONFIG_USB_SERIAL_EMPEG is not set | 838 | # CONFIG_USB_SERIAL_EMPEG is not set |
826 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 839 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
840 | # CONFIG_USB_SERIAL_FUNSOFT is not set | ||
827 | # CONFIG_USB_SERIAL_VISOR is not set | 841 | # CONFIG_USB_SERIAL_VISOR is not set |
828 | # CONFIG_USB_SERIAL_IPAQ is not set | 842 | # CONFIG_USB_SERIAL_IPAQ is not set |
829 | # CONFIG_USB_SERIAL_IR is not set | 843 | # CONFIG_USB_SERIAL_IR is not set |
@@ -848,12 +862,15 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
848 | # CONFIG_USB_SERIAL_KLSI is not set | 862 | # CONFIG_USB_SERIAL_KLSI is not set |
849 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | 863 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set |
850 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 864 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
865 | # CONFIG_USB_SERIAL_NAVMAN is not set | ||
851 | # CONFIG_USB_SERIAL_PL2303 is not set | 866 | # CONFIG_USB_SERIAL_PL2303 is not set |
852 | # CONFIG_USB_SERIAL_HP4X is not set | 867 | # CONFIG_USB_SERIAL_HP4X is not set |
853 | # CONFIG_USB_SERIAL_SAFE is not set | 868 | # CONFIG_USB_SERIAL_SAFE is not set |
869 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | ||
854 | CONFIG_USB_SERIAL_TI=m | 870 | CONFIG_USB_SERIAL_TI=m |
855 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 871 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
856 | # CONFIG_USB_SERIAL_XIRCOM is not set | 872 | # CONFIG_USB_SERIAL_XIRCOM is not set |
873 | # CONFIG_USB_SERIAL_OPTION is not set | ||
857 | # CONFIG_USB_SERIAL_OMNINET is not set | 874 | # CONFIG_USB_SERIAL_OMNINET is not set |
858 | CONFIG_USB_EZUSB=y | 875 | CONFIG_USB_EZUSB=y |
859 | 876 | ||
@@ -867,10 +884,12 @@ CONFIG_USB_EZUSB=y | |||
867 | # CONFIG_USB_LEGOTOWER is not set | 884 | # CONFIG_USB_LEGOTOWER is not set |
868 | # CONFIG_USB_LCD is not set | 885 | # CONFIG_USB_LCD is not set |
869 | # CONFIG_USB_LED is not set | 886 | # CONFIG_USB_LED is not set |
887 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
870 | # CONFIG_USB_CYTHERM is not set | 888 | # CONFIG_USB_CYTHERM is not set |
871 | # CONFIG_USB_PHIDGETKIT is not set | 889 | # CONFIG_USB_PHIDGETKIT is not set |
872 | # CONFIG_USB_PHIDGETSERVO is not set | 890 | # CONFIG_USB_PHIDGETSERVO is not set |
873 | # CONFIG_USB_IDMOUSE is not set | 891 | # CONFIG_USB_IDMOUSE is not set |
892 | # CONFIG_USB_APPLEDISPLAY is not set | ||
874 | # CONFIG_USB_SISUSBVGA is not set | 893 | # CONFIG_USB_SISUSBVGA is not set |
875 | # CONFIG_USB_LD is not set | 894 | # CONFIG_USB_LD is not set |
876 | # CONFIG_USB_TEST is not set | 895 | # CONFIG_USB_TEST is not set |
@@ -890,6 +909,19 @@ CONFIG_USB_EZUSB=y | |||
890 | # CONFIG_MMC is not set | 909 | # CONFIG_MMC is not set |
891 | 910 | ||
892 | # | 911 | # |
912 | # LED devices | ||
913 | # | ||
914 | # CONFIG_NEW_LEDS is not set | ||
915 | |||
916 | # | ||
917 | # LED drivers | ||
918 | # | ||
919 | |||
920 | # | ||
921 | # LED Triggers | ||
922 | # | ||
923 | |||
924 | # | ||
893 | # InfiniBand support | 925 | # InfiniBand support |
894 | # | 926 | # |
895 | # CONFIG_INFINIBAND is not set | 927 | # CONFIG_INFINIBAND is not set |
@@ -899,6 +931,24 @@ CONFIG_USB_EZUSB=y | |||
899 | # | 931 | # |
900 | 932 | ||
901 | # | 933 | # |
934 | # Real Time Clock | ||
935 | # | ||
936 | # CONFIG_RTC_CLASS is not set | ||
937 | |||
938 | # | ||
939 | # DMA Engine support | ||
940 | # | ||
941 | # CONFIG_DMA_ENGINE is not set | ||
942 | |||
943 | # | ||
944 | # DMA Clients | ||
945 | # | ||
946 | |||
947 | # | ||
948 | # DMA Devices | ||
949 | # | ||
950 | |||
951 | # | ||
902 | # File systems | 952 | # File systems |
903 | # | 953 | # |
904 | CONFIG_EXT2_FS=y | 954 | CONFIG_EXT2_FS=y |
@@ -917,6 +967,7 @@ CONFIG_FS_POSIX_ACL=y | |||
917 | # CONFIG_MINIX_FS is not set | 967 | # CONFIG_MINIX_FS is not set |
918 | # CONFIG_ROMFS_FS is not set | 968 | # CONFIG_ROMFS_FS is not set |
919 | CONFIG_INOTIFY=y | 969 | CONFIG_INOTIFY=y |
970 | CONFIG_INOTIFY_USER=y | ||
920 | # CONFIG_QUOTA is not set | 971 | # CONFIG_QUOTA is not set |
921 | CONFIG_DNOTIFY=y | 972 | CONFIG_DNOTIFY=y |
922 | # CONFIG_AUTOFS_FS is not set | 973 | # CONFIG_AUTOFS_FS is not set |
@@ -949,7 +1000,6 @@ CONFIG_TMPFS=y | |||
949 | CONFIG_HUGETLBFS=y | 1000 | CONFIG_HUGETLBFS=y |
950 | CONFIG_HUGETLB_PAGE=y | 1001 | CONFIG_HUGETLB_PAGE=y |
951 | CONFIG_RAMFS=y | 1002 | CONFIG_RAMFS=y |
952 | # CONFIG_RELAYFS_FS is not set | ||
953 | # CONFIG_CONFIGFS_FS is not set | 1003 | # CONFIG_CONFIGFS_FS is not set |
954 | 1004 | ||
955 | # | 1005 | # |
@@ -1067,6 +1117,7 @@ CONFIG_CRC_CCITT=y | |||
1067 | CONFIG_CRC32=y | 1117 | CONFIG_CRC32=y |
1068 | # CONFIG_LIBCRC32C is not set | 1118 | # CONFIG_LIBCRC32C is not set |
1069 | CONFIG_ZLIB_INFLATE=y | 1119 | CONFIG_ZLIB_INFLATE=y |
1120 | CONFIG_PLIST=y | ||
1070 | 1121 | ||
1071 | # | 1122 | # |
1072 | # Instrumentation Support | 1123 | # Instrumentation Support |
@@ -1079,14 +1130,20 @@ CONFIG_ZLIB_INFLATE=y | |||
1079 | # | 1130 | # |
1080 | # CONFIG_PRINTK_TIME is not set | 1131 | # CONFIG_PRINTK_TIME is not set |
1081 | CONFIG_MAGIC_SYSRQ=y | 1132 | CONFIG_MAGIC_SYSRQ=y |
1133 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1082 | CONFIG_DEBUG_KERNEL=y | 1134 | CONFIG_DEBUG_KERNEL=y |
1083 | CONFIG_LOG_BUF_SHIFT=17 | 1135 | CONFIG_LOG_BUF_SHIFT=17 |
1084 | CONFIG_DETECT_SOFTLOCKUP=y | 1136 | CONFIG_DETECT_SOFTLOCKUP=y |
1085 | # CONFIG_SCHEDSTATS is not set | 1137 | # CONFIG_SCHEDSTATS is not set |
1086 | CONFIG_DEBUG_SLAB=y | 1138 | CONFIG_DEBUG_SLAB=y |
1087 | # CONFIG_DEBUG_MUTEXES is not set | 1139 | # CONFIG_DEBUG_SLAB_LEAK is not set |
1140 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1141 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1088 | # CONFIG_DEBUG_SPINLOCK is not set | 1142 | # CONFIG_DEBUG_SPINLOCK is not set |
1143 | # CONFIG_DEBUG_MUTEXES is not set | ||
1144 | # CONFIG_DEBUG_RWSEMS is not set | ||
1089 | CONFIG_DEBUG_SPINLOCK_SLEEP=y | 1145 | CONFIG_DEBUG_SPINLOCK_SLEEP=y |
1146 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1090 | # CONFIG_DEBUG_KOBJECT is not set | 1147 | # CONFIG_DEBUG_KOBJECT is not set |
1091 | # CONFIG_DEBUG_INFO is not set | 1148 | # CONFIG_DEBUG_INFO is not set |
1092 | CONFIG_DEBUG_FS=y | 1149 | CONFIG_DEBUG_FS=y |
@@ -1100,11 +1157,7 @@ CONFIG_XMON=y | |||
1100 | CONFIG_XMON_DEFAULT=y | 1157 | CONFIG_XMON_DEFAULT=y |
1101 | # CONFIG_IRQSTACKS is not set | 1158 | # CONFIG_IRQSTACKS is not set |
1102 | CONFIG_BOOTX_TEXT=y | 1159 | CONFIG_BOOTX_TEXT=y |
1103 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 1160 | # CONFIG_PPC_EARLY_DEBUG is not set |
1104 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
1105 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
1106 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
1107 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
1108 | 1161 | ||
1109 | # | 1162 | # |
1110 | # Security options | 1163 | # Security options |
diff --git a/arch/powerpc/configs/mpc7448_hpc2_defconfig b/arch/powerpc/configs/mpc7448_hpc2_defconfig index 15a50f4ceb1f..719fba4eb421 100644 --- a/arch/powerpc/configs/mpc7448_hpc2_defconfig +++ b/arch/powerpc/configs/mpc7448_hpc2_defconfig | |||
@@ -1,16 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17-rc4 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Sat May 27 18:45:55 2006 | 4 | # Sun Sep 10 10:26:55 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
14 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
15 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
16 | CONFIG_GENERIC_NVRAM=y | 18 | CONFIG_GENERIC_NVRAM=y |
@@ -29,6 +31,7 @@ CONFIG_CLASSIC32=y | |||
29 | # CONFIG_PPC_82xx is not set | 31 | # CONFIG_PPC_82xx is not set |
30 | # CONFIG_PPC_83xx is not set | 32 | # CONFIG_PPC_83xx is not set |
31 | # CONFIG_PPC_85xx is not set | 33 | # CONFIG_PPC_85xx is not set |
34 | # CONFIG_PPC_86xx is not set | ||
32 | # CONFIG_40x is not set | 35 | # CONFIG_40x is not set |
33 | # CONFIG_44x is not set | 36 | # CONFIG_44x is not set |
34 | # CONFIG_8xx is not set | 37 | # CONFIG_8xx is not set |
@@ -39,6 +42,7 @@ CONFIG_PPC_FPU=y | |||
39 | CONFIG_PPC_STD_MMU=y | 42 | CONFIG_PPC_STD_MMU=y |
40 | CONFIG_PPC_STD_MMU_32=y | 43 | CONFIG_PPC_STD_MMU_32=y |
41 | # CONFIG_SMP is not set | 44 | # CONFIG_SMP is not set |
45 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
42 | 46 | ||
43 | # | 47 | # |
44 | # Code maturity level options | 48 | # Code maturity level options |
@@ -56,6 +60,7 @@ CONFIG_SWAP=y | |||
56 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
57 | # CONFIG_POSIX_MQUEUE is not set | 61 | # CONFIG_POSIX_MQUEUE is not set |
58 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
59 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
60 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
61 | # CONFIG_IKCONFIG is not set | 66 | # CONFIG_IKCONFIG is not set |
@@ -70,10 +75,12 @@ CONFIG_PRINTK=y | |||
70 | CONFIG_BUG=y | 75 | CONFIG_BUG=y |
71 | CONFIG_ELF_CORE=y | 76 | CONFIG_ELF_CORE=y |
72 | CONFIG_BASE_FULL=y | 77 | CONFIG_BASE_FULL=y |
78 | CONFIG_RT_MUTEXES=y | ||
73 | CONFIG_FUTEX=y | 79 | CONFIG_FUTEX=y |
74 | CONFIG_EPOLL=y | 80 | CONFIG_EPOLL=y |
75 | CONFIG_SHMEM=y | 81 | CONFIG_SHMEM=y |
76 | CONFIG_SLAB=y | 82 | CONFIG_SLAB=y |
83 | CONFIG_VM_EVENT_COUNTERS=y | ||
77 | # CONFIG_TINY_SHMEM is not set | 84 | # CONFIG_TINY_SHMEM is not set |
78 | CONFIG_BASE_SMALL=0 | 85 | CONFIG_BASE_SMALL=0 |
79 | # CONFIG_SLOB is not set | 86 | # CONFIG_SLOB is not set |
@@ -110,13 +117,16 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
110 | # CONFIG_PPC_ISERIES is not set | 117 | # CONFIG_PPC_ISERIES is not set |
111 | CONFIG_EMBEDDED6xx=y | 118 | CONFIG_EMBEDDED6xx=y |
112 | # CONFIG_APUS is not set | 119 | # CONFIG_APUS is not set |
113 | CONFIG_MPIC=y | 120 | # CONFIG_PPC_CELL is not set |
121 | # CONFIG_PPC_CELL_NATIVE is not set | ||
122 | # CONFIG_UDBG_RTAS_CONSOLE is not set | ||
114 | # CONFIG_PPC_RTAS is not set | 123 | # CONFIG_PPC_RTAS is not set |
115 | # CONFIG_MMIO_NVRAM is not set | 124 | # CONFIG_MMIO_NVRAM is not set |
116 | # CONFIG_PPC_MPC106 is not set | 125 | # CONFIG_PPC_MPC106 is not set |
117 | # CONFIG_PPC_970_NAP is not set | 126 | # CONFIG_PPC_970_NAP is not set |
118 | # CONFIG_CPU_FREQ is not set | 127 | # CONFIG_CPU_FREQ is not set |
119 | # CONFIG_TAU is not set | 128 | # CONFIG_TAU is not set |
129 | # CONFIG_PPC_TODC is not set | ||
120 | # CONFIG_KATANA is not set | 130 | # CONFIG_KATANA is not set |
121 | # CONFIG_WILLOW is not set | 131 | # CONFIG_WILLOW is not set |
122 | # CONFIG_CPCI690 is not set | 132 | # CONFIG_CPCI690 is not set |
@@ -146,6 +156,7 @@ CONFIG_MPC7448HPC2=y | |||
146 | # CONFIG_EV64360 is not set | 156 | # CONFIG_EV64360 is not set |
147 | CONFIG_TSI108_BRIDGE=y | 157 | CONFIG_TSI108_BRIDGE=y |
148 | # CONFIG_WANT_EARLY_SERIAL is not set | 158 | # CONFIG_WANT_EARLY_SERIAL is not set |
159 | CONFIG_MPIC=y | ||
149 | 160 | ||
150 | # | 161 | # |
151 | # Kernel options | 162 | # Kernel options |
@@ -160,6 +171,7 @@ CONFIG_PREEMPT_NONE=y | |||
160 | # CONFIG_PREEMPT is not set | 171 | # CONFIG_PREEMPT is not set |
161 | CONFIG_BINFMT_ELF=y | 172 | CONFIG_BINFMT_ELF=y |
162 | CONFIG_BINFMT_MISC=y | 173 | CONFIG_BINFMT_MISC=y |
174 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
163 | CONFIG_ARCH_FLATMEM_ENABLE=y | 175 | CONFIG_ARCH_FLATMEM_ENABLE=y |
164 | CONFIG_SELECT_MEMORY_MODEL=y | 176 | CONFIG_SELECT_MEMORY_MODEL=y |
165 | CONFIG_FLATMEM_MANUAL=y | 177 | CONFIG_FLATMEM_MANUAL=y |
@@ -169,10 +181,10 @@ CONFIG_FLATMEM=y | |||
169 | CONFIG_FLAT_NODE_MEM_MAP=y | 181 | CONFIG_FLAT_NODE_MEM_MAP=y |
170 | # CONFIG_SPARSEMEM_STATIC is not set | 182 | # CONFIG_SPARSEMEM_STATIC is not set |
171 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 183 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
184 | # CONFIG_RESOURCES_64BIT is not set | ||
172 | CONFIG_PROC_DEVICETREE=y | 185 | CONFIG_PROC_DEVICETREE=y |
173 | # CONFIG_CMDLINE_BOOL is not set | 186 | # CONFIG_CMDLINE_BOOL is not set |
174 | # CONFIG_PM is not set | 187 | # CONFIG_PM is not set |
175 | # CONFIG_SOFTWARE_SUSPEND is not set | ||
176 | # CONFIG_SECCOMP is not set | 188 | # CONFIG_SECCOMP is not set |
177 | CONFIG_ISA_DMA_API=y | 189 | CONFIG_ISA_DMA_API=y |
178 | 190 | ||
@@ -180,10 +192,12 @@ CONFIG_ISA_DMA_API=y | |||
180 | # Bus options | 192 | # Bus options |
181 | # | 193 | # |
182 | CONFIG_GENERIC_ISA_DMA=y | 194 | CONFIG_GENERIC_ISA_DMA=y |
195 | CONFIG_MPIC_WEIRD=y | ||
183 | # CONFIG_PPC_I8259 is not set | 196 | # CONFIG_PPC_I8259 is not set |
184 | # CONFIG_PPC_INDIRECT_PCI is not set | 197 | # CONFIG_PPC_INDIRECT_PCI is not set |
185 | CONFIG_PCI=y | 198 | CONFIG_PCI=y |
186 | CONFIG_PCI_DOMAINS=y | 199 | CONFIG_PCI_DOMAINS=y |
200 | # CONFIG_PCIEPORTBUS is not set | ||
187 | 201 | ||
188 | # | 202 | # |
189 | # PCCARD (PCMCIA/CardBus) support | 203 | # PCCARD (PCMCIA/CardBus) support |
@@ -221,6 +235,8 @@ CONFIG_NET=y | |||
221 | CONFIG_PACKET=y | 235 | CONFIG_PACKET=y |
222 | # CONFIG_PACKET_MMAP is not set | 236 | # CONFIG_PACKET_MMAP is not set |
223 | CONFIG_UNIX=y | 237 | CONFIG_UNIX=y |
238 | CONFIG_XFRM=y | ||
239 | CONFIG_XFRM_USER=y | ||
224 | # CONFIG_NET_KEY is not set | 240 | # CONFIG_NET_KEY is not set |
225 | CONFIG_INET=y | 241 | CONFIG_INET=y |
226 | CONFIG_IP_MULTICAST=y | 242 | CONFIG_IP_MULTICAST=y |
@@ -240,6 +256,8 @@ CONFIG_SYN_COOKIES=y | |||
240 | # CONFIG_INET_IPCOMP is not set | 256 | # CONFIG_INET_IPCOMP is not set |
241 | # CONFIG_INET_XFRM_TUNNEL is not set | 257 | # CONFIG_INET_XFRM_TUNNEL is not set |
242 | # CONFIG_INET_TUNNEL is not set | 258 | # CONFIG_INET_TUNNEL is not set |
259 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
260 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
243 | CONFIG_INET_DIAG=y | 261 | CONFIG_INET_DIAG=y |
244 | CONFIG_INET_TCP_DIAG=y | 262 | CONFIG_INET_TCP_DIAG=y |
245 | # CONFIG_TCP_CONG_ADVANCED is not set | 263 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -247,6 +265,7 @@ CONFIG_TCP_CONG_BIC=y | |||
247 | # CONFIG_IPV6 is not set | 265 | # CONFIG_IPV6 is not set |
248 | # CONFIG_INET6_XFRM_TUNNEL is not set | 266 | # CONFIG_INET6_XFRM_TUNNEL is not set |
249 | # CONFIG_INET6_TUNNEL is not set | 267 | # CONFIG_INET6_TUNNEL is not set |
268 | # CONFIG_NETWORK_SECMARK is not set | ||
250 | # CONFIG_NETFILTER is not set | 269 | # CONFIG_NETFILTER is not set |
251 | 270 | ||
252 | # | 271 | # |
@@ -300,6 +319,7 @@ CONFIG_TCP_CONG_BIC=y | |||
300 | CONFIG_STANDALONE=y | 319 | CONFIG_STANDALONE=y |
301 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 320 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
302 | # CONFIG_FW_LOADER is not set | 321 | # CONFIG_FW_LOADER is not set |
322 | # CONFIG_SYS_HYPERVISOR is not set | ||
303 | 323 | ||
304 | # | 324 | # |
305 | # Connector - unified userspace <-> kernelspace linker | 325 | # Connector - unified userspace <-> kernelspace linker |
@@ -336,6 +356,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
336 | CONFIG_BLK_DEV_RAM=y | 356 | CONFIG_BLK_DEV_RAM=y |
337 | CONFIG_BLK_DEV_RAM_COUNT=16 | 357 | CONFIG_BLK_DEV_RAM_COUNT=16 |
338 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 358 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
359 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
339 | CONFIG_BLK_DEV_INITRD=y | 360 | CONFIG_BLK_DEV_INITRD=y |
340 | # CONFIG_CDROM_PKTCDVD is not set | 361 | # CONFIG_CDROM_PKTCDVD is not set |
341 | # CONFIG_ATA_OVER_ETH is not set | 362 | # CONFIG_ATA_OVER_ETH is not set |
@@ -399,6 +420,7 @@ CONFIG_SCSI_SATA=y | |||
399 | CONFIG_SCSI_SATA_MV=y | 420 | CONFIG_SCSI_SATA_MV=y |
400 | # CONFIG_SCSI_SATA_NV is not set | 421 | # CONFIG_SCSI_SATA_NV is not set |
401 | # CONFIG_SCSI_PDC_ADMA is not set | 422 | # CONFIG_SCSI_PDC_ADMA is not set |
423 | # CONFIG_SCSI_HPTIOP is not set | ||
402 | # CONFIG_SCSI_SATA_QSTOR is not set | 424 | # CONFIG_SCSI_SATA_QSTOR is not set |
403 | # CONFIG_SCSI_SATA_PROMISE is not set | 425 | # CONFIG_SCSI_SATA_PROMISE is not set |
404 | # CONFIG_SCSI_SATA_SX4 is not set | 426 | # CONFIG_SCSI_SATA_SX4 is not set |
@@ -481,6 +503,9 @@ CONFIG_PHYLIB=y | |||
481 | # CONFIG_QSEMI_PHY is not set | 503 | # CONFIG_QSEMI_PHY is not set |
482 | # CONFIG_LXT_PHY is not set | 504 | # CONFIG_LXT_PHY is not set |
483 | # CONFIG_CICADA_PHY is not set | 505 | # CONFIG_CICADA_PHY is not set |
506 | # CONFIG_VITESSE_PHY is not set | ||
507 | # CONFIG_SMSC_PHY is not set | ||
508 | # CONFIG_FIXED_PHY is not set | ||
484 | 509 | ||
485 | # | 510 | # |
486 | # Ethernet (10 or 100Mbit) | 511 | # Ethernet (10 or 100Mbit) |
@@ -538,7 +563,6 @@ CONFIG_8139TOO=y | |||
538 | # CONFIG_VIA_VELOCITY is not set | 563 | # CONFIG_VIA_VELOCITY is not set |
539 | # CONFIG_TIGON3 is not set | 564 | # CONFIG_TIGON3 is not set |
540 | # CONFIG_BNX2 is not set | 565 | # CONFIG_BNX2 is not set |
541 | CONFIG_TSI108_ETH=y | ||
542 | 566 | ||
543 | # | 567 | # |
544 | # Ethernet (10000 Mbit) | 568 | # Ethernet (10000 Mbit) |
@@ -546,6 +570,7 @@ CONFIG_TSI108_ETH=y | |||
546 | # CONFIG_CHELSIO_T1 is not set | 570 | # CONFIG_CHELSIO_T1 is not set |
547 | # CONFIG_IXGB is not set | 571 | # CONFIG_IXGB is not set |
548 | # CONFIG_S2IO is not set | 572 | # CONFIG_S2IO is not set |
573 | # CONFIG_MYRI10GE is not set | ||
549 | 574 | ||
550 | # | 575 | # |
551 | # Token Ring devices | 576 | # Token Ring devices |
@@ -645,6 +670,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
645 | # Watchdog Cards | 670 | # Watchdog Cards |
646 | # | 671 | # |
647 | # CONFIG_WATCHDOG is not set | 672 | # CONFIG_WATCHDOG is not set |
673 | # CONFIG_HW_RANDOM is not set | ||
648 | # CONFIG_NVRAM is not set | 674 | # CONFIG_NVRAM is not set |
649 | CONFIG_GEN_RTC=y | 675 | CONFIG_GEN_RTC=y |
650 | # CONFIG_GEN_RTC_X is not set | 676 | # CONFIG_GEN_RTC_X is not set |
@@ -679,13 +705,13 @@ CONFIG_GEN_RTC=y | |||
679 | # | 705 | # |
680 | # Dallas's 1-wire bus | 706 | # Dallas's 1-wire bus |
681 | # | 707 | # |
682 | # CONFIG_W1 is not set | ||
683 | 708 | ||
684 | # | 709 | # |
685 | # Hardware Monitoring support | 710 | # Hardware Monitoring support |
686 | # | 711 | # |
687 | CONFIG_HWMON=y | 712 | CONFIG_HWMON=y |
688 | # CONFIG_HWMON_VID is not set | 713 | # CONFIG_HWMON_VID is not set |
714 | # CONFIG_SENSORS_ABITUGURU is not set | ||
689 | # CONFIG_SENSORS_F71805F is not set | 715 | # CONFIG_SENSORS_F71805F is not set |
690 | # CONFIG_HWMON_DEBUG_CHIP is not set | 716 | # CONFIG_HWMON_DEBUG_CHIP is not set |
691 | 717 | ||
@@ -697,6 +723,7 @@ CONFIG_HWMON=y | |||
697 | # Multimedia devices | 723 | # Multimedia devices |
698 | # | 724 | # |
699 | # CONFIG_VIDEO_DEV is not set | 725 | # CONFIG_VIDEO_DEV is not set |
726 | CONFIG_VIDEO_V4L2=y | ||
700 | 727 | ||
701 | # | 728 | # |
702 | # Digital Video Broadcasting Devices | 729 | # Digital Video Broadcasting Devices |
@@ -706,7 +733,9 @@ CONFIG_HWMON=y | |||
706 | # | 733 | # |
707 | # Graphics support | 734 | # Graphics support |
708 | # | 735 | # |
736 | CONFIG_FIRMWARE_EDID=y | ||
709 | # CONFIG_FB is not set | 737 | # CONFIG_FB is not set |
738 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
710 | 739 | ||
711 | # | 740 | # |
712 | # Sound | 741 | # Sound |
@@ -763,6 +792,19 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
763 | # CONFIG_RTC_CLASS is not set | 792 | # CONFIG_RTC_CLASS is not set |
764 | 793 | ||
765 | # | 794 | # |
795 | # DMA Engine support | ||
796 | # | ||
797 | # CONFIG_DMA_ENGINE is not set | ||
798 | |||
799 | # | ||
800 | # DMA Clients | ||
801 | # | ||
802 | |||
803 | # | ||
804 | # DMA Devices | ||
805 | # | ||
806 | |||
807 | # | ||
766 | # File systems | 808 | # File systems |
767 | # | 809 | # |
768 | CONFIG_EXT2_FS=y | 810 | CONFIG_EXT2_FS=y |
@@ -783,6 +825,7 @@ CONFIG_FS_MBCACHE=y | |||
783 | # CONFIG_MINIX_FS is not set | 825 | # CONFIG_MINIX_FS is not set |
784 | # CONFIG_ROMFS_FS is not set | 826 | # CONFIG_ROMFS_FS is not set |
785 | CONFIG_INOTIFY=y | 827 | CONFIG_INOTIFY=y |
828 | CONFIG_INOTIFY_USER=y | ||
786 | # CONFIG_QUOTA is not set | 829 | # CONFIG_QUOTA is not set |
787 | CONFIG_DNOTIFY=y | 830 | CONFIG_DNOTIFY=y |
788 | # CONFIG_AUTOFS_FS is not set | 831 | # CONFIG_AUTOFS_FS is not set |
@@ -884,6 +927,7 @@ CONFIG_MSDOS_PARTITION=y | |||
884 | # CONFIG_CRC16 is not set | 927 | # CONFIG_CRC16 is not set |
885 | CONFIG_CRC32=y | 928 | CONFIG_CRC32=y |
886 | # CONFIG_LIBCRC32C is not set | 929 | # CONFIG_LIBCRC32C is not set |
930 | CONFIG_PLIST=y | ||
887 | 931 | ||
888 | # | 932 | # |
889 | # Instrumentation Support | 933 | # Instrumentation Support |
@@ -895,17 +939,13 @@ CONFIG_CRC32=y | |||
895 | # | 939 | # |
896 | # CONFIG_PRINTK_TIME is not set | 940 | # CONFIG_PRINTK_TIME is not set |
897 | # CONFIG_MAGIC_SYSRQ is not set | 941 | # CONFIG_MAGIC_SYSRQ is not set |
942 | # CONFIG_UNUSED_SYMBOLS is not set | ||
898 | # CONFIG_DEBUG_KERNEL is not set | 943 | # CONFIG_DEBUG_KERNEL is not set |
899 | CONFIG_LOG_BUF_SHIFT=14 | 944 | CONFIG_LOG_BUF_SHIFT=14 |
900 | # CONFIG_DEBUG_FS is not set | 945 | # CONFIG_DEBUG_FS is not set |
901 | # CONFIG_UNWIND_INFO is not set | 946 | # CONFIG_UNWIND_INFO is not set |
902 | # CONFIG_BOOTX_TEXT is not set | 947 | # CONFIG_BOOTX_TEXT is not set |
903 | # CONFIG_SERIAL_TEXT_DEBUG is not set | 948 | # CONFIG_PPC_EARLY_DEBUG is not set |
904 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | ||
905 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
906 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
907 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
908 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
909 | 949 | ||
910 | # | 950 | # |
911 | # Security options | 951 | # Security options |
diff --git a/arch/powerpc/configs/mpc834x_itx_defconfig b/arch/powerpc/configs/mpc834x_itx_defconfig index fc2d9789adc8..8da6a47f0339 100644 --- a/arch/powerpc/configs/mpc834x_itx_defconfig +++ b/arch/powerpc/configs/mpc834x_itx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Fri Jun 30 17:53:25 2006 | 4 | # Sun Sep 10 10:28:05 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
@@ -60,6 +60,7 @@ CONFIG_SWAP=y | |||
60 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
61 | # CONFIG_POSIX_MQUEUE is not set | 61 | # CONFIG_POSIX_MQUEUE is not set |
62 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
63 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
64 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
65 | # CONFIG_IKCONFIG is not set | 66 | # CONFIG_IKCONFIG is not set |
@@ -78,6 +79,7 @@ CONFIG_FUTEX=y | |||
78 | # CONFIG_EPOLL is not set | 79 | # CONFIG_EPOLL is not set |
79 | CONFIG_SHMEM=y | 80 | CONFIG_SHMEM=y |
80 | CONFIG_SLAB=y | 81 | CONFIG_SLAB=y |
82 | CONFIG_VM_EVENT_COUNTERS=y | ||
81 | # CONFIG_TINY_SHMEM is not set | 83 | # CONFIG_TINY_SHMEM is not set |
82 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
83 | # CONFIG_SLOB is not set | 85 | # CONFIG_SLOB is not set |
@@ -120,6 +122,7 @@ CONFIG_PPC_GEN550=y | |||
120 | # CONFIG_MPC834x_SYS is not set | 122 | # CONFIG_MPC834x_SYS is not set |
121 | CONFIG_MPC834x_ITX=y | 123 | CONFIG_MPC834x_ITX=y |
122 | CONFIG_MPC834x=y | 124 | CONFIG_MPC834x=y |
125 | # CONFIG_MPIC is not set | ||
123 | 126 | ||
124 | # | 127 | # |
125 | # Kernel options | 128 | # Kernel options |
@@ -148,7 +151,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
148 | CONFIG_PROC_DEVICETREE=y | 151 | CONFIG_PROC_DEVICETREE=y |
149 | # CONFIG_CMDLINE_BOOL is not set | 152 | # CONFIG_CMDLINE_BOOL is not set |
150 | # CONFIG_PM is not set | 153 | # CONFIG_PM is not set |
151 | # CONFIG_SOFTWARE_SUSPEND is not set | ||
152 | CONFIG_SECCOMP=y | 154 | CONFIG_SECCOMP=y |
153 | CONFIG_ISA_DMA_API=y | 155 | CONFIG_ISA_DMA_API=y |
154 | 156 | ||
@@ -156,6 +158,7 @@ CONFIG_ISA_DMA_API=y | |||
156 | # Bus options | 158 | # Bus options |
157 | # | 159 | # |
158 | CONFIG_GENERIC_ISA_DMA=y | 160 | CONFIG_GENERIC_ISA_DMA=y |
161 | # CONFIG_MPIC_WEIRD is not set | ||
159 | # CONFIG_PPC_I8259 is not set | 162 | # CONFIG_PPC_I8259 is not set |
160 | CONFIG_PPC_INDIRECT_PCI=y | 163 | CONFIG_PPC_INDIRECT_PCI=y |
161 | CONFIG_FSL_SOC=y | 164 | CONFIG_FSL_SOC=y |
@@ -401,6 +404,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
401 | CONFIG_BLK_DEV_RAM=y | 404 | CONFIG_BLK_DEV_RAM=y |
402 | CONFIG_BLK_DEV_RAM_COUNT=16 | 405 | CONFIG_BLK_DEV_RAM_COUNT=16 |
403 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 406 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
407 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
404 | CONFIG_BLK_DEV_INITRD=y | 408 | CONFIG_BLK_DEV_INITRD=y |
405 | # CONFIG_CDROM_PKTCDVD is not set | 409 | # CONFIG_CDROM_PKTCDVD is not set |
406 | # CONFIG_ATA_OVER_ETH is not set | 410 | # CONFIG_ATA_OVER_ETH is not set |
@@ -561,6 +565,7 @@ CONFIG_PHYLIB=y | |||
561 | CONFIG_CICADA_PHY=y | 565 | CONFIG_CICADA_PHY=y |
562 | # CONFIG_VITESSE_PHY is not set | 566 | # CONFIG_VITESSE_PHY is not set |
563 | # CONFIG_SMSC_PHY is not set | 567 | # CONFIG_SMSC_PHY is not set |
568 | # CONFIG_FIXED_PHY is not set | ||
564 | 569 | ||
565 | # | 570 | # |
566 | # Ethernet (10 or 100Mbit) | 571 | # Ethernet (10 or 100Mbit) |
@@ -905,6 +910,7 @@ CONFIG_VIDEO_V4L2=y | |||
905 | # | 910 | # |
906 | CONFIG_FIRMWARE_EDID=y | 911 | CONFIG_FIRMWARE_EDID=y |
907 | # CONFIG_FB is not set | 912 | # CONFIG_FB is not set |
913 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
908 | 914 | ||
909 | # | 915 | # |
910 | # Sound | 916 | # Sound |
@@ -1025,7 +1031,7 @@ CONFIG_USB_MON=y | |||
1025 | # CONFIG_USB_LEGOTOWER is not set | 1031 | # CONFIG_USB_LEGOTOWER is not set |
1026 | # CONFIG_USB_LCD is not set | 1032 | # CONFIG_USB_LCD is not set |
1027 | # CONFIG_USB_LED is not set | 1033 | # CONFIG_USB_LED is not set |
1028 | # CONFIG_USB_CY7C63 is not set | 1034 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1029 | # CONFIG_USB_CYTHERM is not set | 1035 | # CONFIG_USB_CYTHERM is not set |
1030 | # CONFIG_USB_PHIDGETKIT is not set | 1036 | # CONFIG_USB_PHIDGETKIT is not set |
1031 | # CONFIG_USB_PHIDGETSERVO is not set | 1037 | # CONFIG_USB_PHIDGETSERVO is not set |
@@ -1110,6 +1116,7 @@ CONFIG_RTC_INTF_DEV_UIE_EMUL=y | |||
1110 | # CONFIG_RTC_DRV_X1205 is not set | 1116 | # CONFIG_RTC_DRV_X1205 is not set |
1111 | CONFIG_RTC_DRV_DS1307=y | 1117 | CONFIG_RTC_DRV_DS1307=y |
1112 | # CONFIG_RTC_DRV_DS1553 is not set | 1118 | # CONFIG_RTC_DRV_DS1553 is not set |
1119 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1113 | # CONFIG_RTC_DRV_DS1672 is not set | 1120 | # CONFIG_RTC_DRV_DS1672 is not set |
1114 | # CONFIG_RTC_DRV_DS1742 is not set | 1121 | # CONFIG_RTC_DRV_DS1742 is not set |
1115 | # CONFIG_RTC_DRV_PCF8563 is not set | 1122 | # CONFIG_RTC_DRV_PCF8563 is not set |
@@ -1226,7 +1233,6 @@ CONFIG_RPCSEC_GSS_KRB5=y | |||
1226 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1233 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1227 | # CONFIG_SMB_FS is not set | 1234 | # CONFIG_SMB_FS is not set |
1228 | # CONFIG_CIFS is not set | 1235 | # CONFIG_CIFS is not set |
1229 | # CONFIG_CIFS_DEBUG2 is not set | ||
1230 | # CONFIG_NCP_FS is not set | 1236 | # CONFIG_NCP_FS is not set |
1231 | # CONFIG_CODA_FS is not set | 1237 | # CONFIG_CODA_FS is not set |
1232 | # CONFIG_AFS_FS is not set | 1238 | # CONFIG_AFS_FS is not set |
@@ -1279,11 +1285,13 @@ CONFIG_LOG_BUF_SHIFT=17 | |||
1279 | CONFIG_DETECT_SOFTLOCKUP=y | 1285 | CONFIG_DETECT_SOFTLOCKUP=y |
1280 | # CONFIG_SCHEDSTATS is not set | 1286 | # CONFIG_SCHEDSTATS is not set |
1281 | # CONFIG_DEBUG_SLAB is not set | 1287 | # CONFIG_DEBUG_SLAB is not set |
1282 | # CONFIG_DEBUG_MUTEXES is not set | ||
1283 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1288 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1284 | # CONFIG_RT_MUTEX_TESTER is not set | 1289 | # CONFIG_RT_MUTEX_TESTER is not set |
1285 | # CONFIG_DEBUG_SPINLOCK is not set | 1290 | # CONFIG_DEBUG_SPINLOCK is not set |
1291 | # CONFIG_DEBUG_MUTEXES is not set | ||
1292 | # CONFIG_DEBUG_RWSEMS is not set | ||
1286 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1293 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1294 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1287 | # CONFIG_DEBUG_KOBJECT is not set | 1295 | # CONFIG_DEBUG_KOBJECT is not set |
1288 | CONFIG_DEBUG_INFO=y | 1296 | CONFIG_DEBUG_INFO=y |
1289 | # CONFIG_DEBUG_FS is not set | 1297 | # CONFIG_DEBUG_FS is not set |
diff --git a/arch/powerpc/configs/mpc834x_mds_defconfig b/arch/powerpc/configs/mpc834x_mds_defconfig index 5078b0441d61..9eefab967898 100644 --- a/arch/powerpc/configs/mpc834x_mds_defconfig +++ b/arch/powerpc/configs/mpc834x_mds_defconfig | |||
@@ -1,15 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.16-rc6 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Wed Mar 15 16:19:56 2006 | 4 | # Sun Sep 10 10:28:54 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
13 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
14 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
15 | CONFIG_GENERIC_NVRAM=y | 18 | CONFIG_GENERIC_NVRAM=y |
@@ -27,17 +30,19 @@ CONFIG_DEFAULT_UIMAGE=y | |||
27 | # CONFIG_PPC_52xx is not set | 30 | # CONFIG_PPC_52xx is not set |
28 | # CONFIG_PPC_82xx is not set | 31 | # CONFIG_PPC_82xx is not set |
29 | CONFIG_PPC_83xx=y | 32 | CONFIG_PPC_83xx=y |
33 | # CONFIG_PPC_85xx is not set | ||
34 | # CONFIG_PPC_86xx is not set | ||
30 | # CONFIG_40x is not set | 35 | # CONFIG_40x is not set |
31 | # CONFIG_44x is not set | 36 | # CONFIG_44x is not set |
32 | # CONFIG_8xx is not set | 37 | # CONFIG_8xx is not set |
33 | # CONFIG_E200 is not set | 38 | # CONFIG_E200 is not set |
34 | # CONFIG_E500 is not set | ||
35 | CONFIG_6xx=y | 39 | CONFIG_6xx=y |
36 | CONFIG_83xx=y | 40 | CONFIG_83xx=y |
37 | CONFIG_PPC_FPU=y | 41 | CONFIG_PPC_FPU=y |
38 | CONFIG_PPC_STD_MMU=y | 42 | CONFIG_PPC_STD_MMU=y |
39 | CONFIG_PPC_STD_MMU_32=y | 43 | CONFIG_PPC_STD_MMU_32=y |
40 | # CONFIG_SMP is not set | 44 | # CONFIG_SMP is not set |
45 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
41 | 46 | ||
42 | # | 47 | # |
43 | # Code maturity level options | 48 | # Code maturity level options |
@@ -55,9 +60,11 @@ CONFIG_SWAP=y | |||
55 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
56 | # CONFIG_POSIX_MQUEUE is not set | 61 | # CONFIG_POSIX_MQUEUE is not set |
57 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
58 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
59 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
60 | # CONFIG_IKCONFIG is not set | 66 | # CONFIG_IKCONFIG is not set |
67 | # CONFIG_RELAY is not set | ||
61 | CONFIG_INITRAMFS_SOURCE="" | 68 | CONFIG_INITRAMFS_SOURCE="" |
62 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 69 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
63 | CONFIG_EMBEDDED=y | 70 | CONFIG_EMBEDDED=y |
@@ -67,14 +74,12 @@ CONFIG_PRINTK=y | |||
67 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
68 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
69 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
77 | CONFIG_RT_MUTEXES=y | ||
70 | CONFIG_FUTEX=y | 78 | CONFIG_FUTEX=y |
71 | # CONFIG_EPOLL is not set | 79 | # CONFIG_EPOLL is not set |
72 | CONFIG_SHMEM=y | 80 | CONFIG_SHMEM=y |
73 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
74 | CONFIG_CC_ALIGN_LABELS=0 | ||
75 | CONFIG_CC_ALIGN_LOOPS=0 | ||
76 | CONFIG_CC_ALIGN_JUMPS=0 | ||
77 | CONFIG_SLAB=y | 81 | CONFIG_SLAB=y |
82 | CONFIG_VM_EVENT_COUNTERS=y | ||
78 | # CONFIG_TINY_SHMEM is not set | 83 | # CONFIG_TINY_SHMEM is not set |
79 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
80 | # CONFIG_SLOB is not set | 85 | # CONFIG_SLOB is not set |
@@ -85,7 +90,6 @@ CONFIG_BASE_SMALL=0 | |||
85 | CONFIG_MODULES=y | 90 | CONFIG_MODULES=y |
86 | CONFIG_MODULE_UNLOAD=y | 91 | CONFIG_MODULE_UNLOAD=y |
87 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 92 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
88 | CONFIG_OBSOLETE_MODPARM=y | ||
89 | # CONFIG_MODVERSIONS is not set | 93 | # CONFIG_MODVERSIONS is not set |
90 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 94 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
91 | # CONFIG_KMOD is not set | 95 | # CONFIG_KMOD is not set |
@@ -94,6 +98,8 @@ CONFIG_OBSOLETE_MODPARM=y | |||
94 | # Block layer | 98 | # Block layer |
95 | # | 99 | # |
96 | # CONFIG_LBD is not set | 100 | # CONFIG_LBD is not set |
101 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
102 | # CONFIG_LSF is not set | ||
97 | 103 | ||
98 | # | 104 | # |
99 | # IO Schedulers | 105 | # IO Schedulers |
@@ -114,7 +120,9 @@ CONFIG_PPC_GEN550=y | |||
114 | # Platform support | 120 | # Platform support |
115 | # | 121 | # |
116 | CONFIG_MPC834x_SYS=y | 122 | CONFIG_MPC834x_SYS=y |
123 | # CONFIG_MPC834x_ITX is not set | ||
117 | CONFIG_MPC834x=y | 124 | CONFIG_MPC834x=y |
125 | # CONFIG_MPIC is not set | ||
118 | 126 | ||
119 | # | 127 | # |
120 | # Kernel options | 128 | # Kernel options |
@@ -129,6 +137,7 @@ CONFIG_PREEMPT_NONE=y | |||
129 | # CONFIG_PREEMPT is not set | 137 | # CONFIG_PREEMPT is not set |
130 | CONFIG_BINFMT_ELF=y | 138 | CONFIG_BINFMT_ELF=y |
131 | # CONFIG_BINFMT_MISC is not set | 139 | # CONFIG_BINFMT_MISC is not set |
140 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
132 | CONFIG_ARCH_FLATMEM_ENABLE=y | 141 | CONFIG_ARCH_FLATMEM_ENABLE=y |
133 | CONFIG_SELECT_MEMORY_MODEL=y | 142 | CONFIG_SELECT_MEMORY_MODEL=y |
134 | CONFIG_FLATMEM_MANUAL=y | 143 | CONFIG_FLATMEM_MANUAL=y |
@@ -138,10 +147,10 @@ CONFIG_FLATMEM=y | |||
138 | CONFIG_FLAT_NODE_MEM_MAP=y | 147 | CONFIG_FLAT_NODE_MEM_MAP=y |
139 | # CONFIG_SPARSEMEM_STATIC is not set | 148 | # CONFIG_SPARSEMEM_STATIC is not set |
140 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 149 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
150 | # CONFIG_RESOURCES_64BIT is not set | ||
141 | CONFIG_PROC_DEVICETREE=y | 151 | CONFIG_PROC_DEVICETREE=y |
142 | # CONFIG_CMDLINE_BOOL is not set | 152 | # CONFIG_CMDLINE_BOOL is not set |
143 | # CONFIG_PM is not set | 153 | # CONFIG_PM is not set |
144 | # CONFIG_SOFTWARE_SUSPEND is not set | ||
145 | CONFIG_SECCOMP=y | 154 | CONFIG_SECCOMP=y |
146 | CONFIG_ISA_DMA_API=y | 155 | CONFIG_ISA_DMA_API=y |
147 | 156 | ||
@@ -149,12 +158,13 @@ CONFIG_ISA_DMA_API=y | |||
149 | # Bus options | 158 | # Bus options |
150 | # | 159 | # |
151 | CONFIG_GENERIC_ISA_DMA=y | 160 | CONFIG_GENERIC_ISA_DMA=y |
161 | # CONFIG_MPIC_WEIRD is not set | ||
152 | # CONFIG_PPC_I8259 is not set | 162 | # CONFIG_PPC_I8259 is not set |
153 | CONFIG_PPC_INDIRECT_PCI=y | 163 | CONFIG_PPC_INDIRECT_PCI=y |
154 | CONFIG_FSL_SOC=y | 164 | CONFIG_FSL_SOC=y |
155 | CONFIG_PCI=y | 165 | CONFIG_PCI=y |
156 | CONFIG_PCI_DOMAINS=y | 166 | CONFIG_PCI_DOMAINS=y |
157 | # CONFIG_PCI_LEGACY_PROC is not set | 167 | # CONFIG_PCIEPORTBUS is not set |
158 | 168 | ||
159 | # | 169 | # |
160 | # PCCARD (PCMCIA/CardBus) support | 170 | # PCCARD (PCMCIA/CardBus) support |
@@ -192,6 +202,8 @@ CONFIG_NET=y | |||
192 | CONFIG_PACKET=y | 202 | CONFIG_PACKET=y |
193 | # CONFIG_PACKET_MMAP is not set | 203 | # CONFIG_PACKET_MMAP is not set |
194 | CONFIG_UNIX=y | 204 | CONFIG_UNIX=y |
205 | CONFIG_XFRM=y | ||
206 | CONFIG_XFRM_USER=m | ||
195 | # CONFIG_NET_KEY is not set | 207 | # CONFIG_NET_KEY is not set |
196 | CONFIG_INET=y | 208 | CONFIG_INET=y |
197 | CONFIG_IP_MULTICAST=y | 209 | CONFIG_IP_MULTICAST=y |
@@ -209,12 +221,18 @@ CONFIG_SYN_COOKIES=y | |||
209 | # CONFIG_INET_AH is not set | 221 | # CONFIG_INET_AH is not set |
210 | # CONFIG_INET_ESP is not set | 222 | # CONFIG_INET_ESP is not set |
211 | # CONFIG_INET_IPCOMP is not set | 223 | # CONFIG_INET_IPCOMP is not set |
224 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
212 | # CONFIG_INET_TUNNEL is not set | 225 | # CONFIG_INET_TUNNEL is not set |
226 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
227 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
213 | CONFIG_INET_DIAG=y | 228 | CONFIG_INET_DIAG=y |
214 | CONFIG_INET_TCP_DIAG=y | 229 | CONFIG_INET_TCP_DIAG=y |
215 | # CONFIG_TCP_CONG_ADVANCED is not set | 230 | # CONFIG_TCP_CONG_ADVANCED is not set |
216 | CONFIG_TCP_CONG_BIC=y | 231 | CONFIG_TCP_CONG_BIC=y |
217 | # CONFIG_IPV6 is not set | 232 | # CONFIG_IPV6 is not set |
233 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
234 | # CONFIG_INET6_TUNNEL is not set | ||
235 | # CONFIG_NETWORK_SECMARK is not set | ||
218 | # CONFIG_NETFILTER is not set | 236 | # CONFIG_NETFILTER is not set |
219 | 237 | ||
220 | # | 238 | # |
@@ -268,6 +286,7 @@ CONFIG_TCP_CONG_BIC=y | |||
268 | CONFIG_STANDALONE=y | 286 | CONFIG_STANDALONE=y |
269 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 287 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
270 | # CONFIG_FW_LOADER is not set | 288 | # CONFIG_FW_LOADER is not set |
289 | # CONFIG_SYS_HYPERVISOR is not set | ||
271 | 290 | ||
272 | # | 291 | # |
273 | # Connector - unified userspace <-> kernelspace linker | 292 | # Connector - unified userspace <-> kernelspace linker |
@@ -304,6 +323,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
304 | CONFIG_BLK_DEV_RAM=y | 323 | CONFIG_BLK_DEV_RAM=y |
305 | CONFIG_BLK_DEV_RAM_COUNT=16 | 324 | CONFIG_BLK_DEV_RAM_COUNT=16 |
306 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 325 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
326 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
307 | CONFIG_BLK_DEV_INITRD=y | 327 | CONFIG_BLK_DEV_INITRD=y |
308 | # CONFIG_CDROM_PKTCDVD is not set | 328 | # CONFIG_CDROM_PKTCDVD is not set |
309 | # CONFIG_ATA_OVER_ETH is not set | 329 | # CONFIG_ATA_OVER_ETH is not set |
@@ -371,6 +391,9 @@ CONFIG_MARVELL_PHY=y | |||
371 | # CONFIG_QSEMI_PHY is not set | 391 | # CONFIG_QSEMI_PHY is not set |
372 | # CONFIG_LXT_PHY is not set | 392 | # CONFIG_LXT_PHY is not set |
373 | # CONFIG_CICADA_PHY is not set | 393 | # CONFIG_CICADA_PHY is not set |
394 | # CONFIG_VITESSE_PHY is not set | ||
395 | # CONFIG_SMSC_PHY is not set | ||
396 | # CONFIG_FIXED_PHY is not set | ||
374 | 397 | ||
375 | # | 398 | # |
376 | # Ethernet (10 or 100Mbit) | 399 | # Ethernet (10 or 100Mbit) |
@@ -433,6 +456,7 @@ CONFIG_GIANFAR=y | |||
433 | # CONFIG_CHELSIO_T1 is not set | 456 | # CONFIG_CHELSIO_T1 is not set |
434 | # CONFIG_IXGB is not set | 457 | # CONFIG_IXGB is not set |
435 | # CONFIG_S2IO is not set | 458 | # CONFIG_S2IO is not set |
459 | # CONFIG_MYRI10GE is not set | ||
436 | 460 | ||
437 | # | 461 | # |
438 | # Token Ring devices | 462 | # Token Ring devices |
@@ -507,6 +531,7 @@ CONFIG_INPUT=y | |||
507 | # | 531 | # |
508 | CONFIG_SERIAL_8250=y | 532 | CONFIG_SERIAL_8250=y |
509 | CONFIG_SERIAL_8250_CONSOLE=y | 533 | CONFIG_SERIAL_8250_CONSOLE=y |
534 | CONFIG_SERIAL_8250_PCI=y | ||
510 | CONFIG_SERIAL_8250_NR_UARTS=4 | 535 | CONFIG_SERIAL_8250_NR_UARTS=4 |
511 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 536 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
512 | # CONFIG_SERIAL_8250_EXTENDED is not set | 537 | # CONFIG_SERIAL_8250_EXTENDED is not set |
@@ -543,6 +568,7 @@ CONFIG_83xx_WDT=y | |||
543 | # | 568 | # |
544 | # CONFIG_PCIPCWATCHDOG is not set | 569 | # CONFIG_PCIPCWATCHDOG is not set |
545 | # CONFIG_WDTPCI is not set | 570 | # CONFIG_WDTPCI is not set |
571 | # CONFIG_HW_RANDOM is not set | ||
546 | # CONFIG_NVRAM is not set | 572 | # CONFIG_NVRAM is not set |
547 | CONFIG_GEN_RTC=y | 573 | CONFIG_GEN_RTC=y |
548 | # CONFIG_GEN_RTC_X is not set | 574 | # CONFIG_GEN_RTC_X is not set |
@@ -589,10 +615,10 @@ CONFIG_I2C_CHARDEV=y | |||
589 | # CONFIG_I2C_PIIX4 is not set | 615 | # CONFIG_I2C_PIIX4 is not set |
590 | CONFIG_I2C_MPC=y | 616 | CONFIG_I2C_MPC=y |
591 | # CONFIG_I2C_NFORCE2 is not set | 617 | # CONFIG_I2C_NFORCE2 is not set |
618 | # CONFIG_I2C_OCORES is not set | ||
592 | # CONFIG_I2C_PARPORT_LIGHT is not set | 619 | # CONFIG_I2C_PARPORT_LIGHT is not set |
593 | # CONFIG_I2C_PROSAVAGE is not set | 620 | # CONFIG_I2C_PROSAVAGE is not set |
594 | # CONFIG_I2C_SAVAGE4 is not set | 621 | # CONFIG_I2C_SAVAGE4 is not set |
595 | # CONFIG_SCx200_ACB is not set | ||
596 | # CONFIG_I2C_SIS5595 is not set | 622 | # CONFIG_I2C_SIS5595 is not set |
597 | # CONFIG_I2C_SIS630 is not set | 623 | # CONFIG_I2C_SIS630 is not set |
598 | # CONFIG_I2C_SIS96X is not set | 624 | # CONFIG_I2C_SIS96X is not set |
@@ -611,10 +637,8 @@ CONFIG_I2C_MPC=y | |||
611 | # CONFIG_SENSORS_PCF8574 is not set | 637 | # CONFIG_SENSORS_PCF8574 is not set |
612 | # CONFIG_SENSORS_PCA9539 is not set | 638 | # CONFIG_SENSORS_PCA9539 is not set |
613 | # CONFIG_SENSORS_PCF8591 is not set | 639 | # CONFIG_SENSORS_PCF8591 is not set |
614 | # CONFIG_SENSORS_RTC8564 is not set | ||
615 | # CONFIG_SENSORS_M41T00 is not set | 640 | # CONFIG_SENSORS_M41T00 is not set |
616 | # CONFIG_SENSORS_MAX6875 is not set | 641 | # CONFIG_SENSORS_MAX6875 is not set |
617 | # CONFIG_RTC_X1205_I2C is not set | ||
618 | # CONFIG_I2C_DEBUG_CORE is not set | 642 | # CONFIG_I2C_DEBUG_CORE is not set |
619 | # CONFIG_I2C_DEBUG_ALGO is not set | 643 | # CONFIG_I2C_DEBUG_ALGO is not set |
620 | # CONFIG_I2C_DEBUG_BUS is not set | 644 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -629,13 +653,13 @@ CONFIG_I2C_MPC=y | |||
629 | # | 653 | # |
630 | # Dallas's 1-wire bus | 654 | # Dallas's 1-wire bus |
631 | # | 655 | # |
632 | # CONFIG_W1 is not set | ||
633 | 656 | ||
634 | # | 657 | # |
635 | # Hardware Monitoring support | 658 | # Hardware Monitoring support |
636 | # | 659 | # |
637 | CONFIG_HWMON=y | 660 | CONFIG_HWMON=y |
638 | # CONFIG_HWMON_VID is not set | 661 | # CONFIG_HWMON_VID is not set |
662 | # CONFIG_SENSORS_ABITUGURU is not set | ||
639 | # CONFIG_SENSORS_ADM1021 is not set | 663 | # CONFIG_SENSORS_ADM1021 is not set |
640 | # CONFIG_SENSORS_ADM1025 is not set | 664 | # CONFIG_SENSORS_ADM1025 is not set |
641 | # CONFIG_SENSORS_ADM1026 is not set | 665 | # CONFIG_SENSORS_ADM1026 is not set |
@@ -664,10 +688,12 @@ CONFIG_HWMON=y | |||
664 | # CONFIG_SENSORS_PC87360 is not set | 688 | # CONFIG_SENSORS_PC87360 is not set |
665 | # CONFIG_SENSORS_SIS5595 is not set | 689 | # CONFIG_SENSORS_SIS5595 is not set |
666 | # CONFIG_SENSORS_SMSC47M1 is not set | 690 | # CONFIG_SENSORS_SMSC47M1 is not set |
691 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
667 | # CONFIG_SENSORS_SMSC47B397 is not set | 692 | # CONFIG_SENSORS_SMSC47B397 is not set |
668 | # CONFIG_SENSORS_VIA686A is not set | 693 | # CONFIG_SENSORS_VIA686A is not set |
669 | # CONFIG_SENSORS_VT8231 is not set | 694 | # CONFIG_SENSORS_VT8231 is not set |
670 | # CONFIG_SENSORS_W83781D is not set | 695 | # CONFIG_SENSORS_W83781D is not set |
696 | # CONFIG_SENSORS_W83791D is not set | ||
671 | # CONFIG_SENSORS_W83792D is not set | 697 | # CONFIG_SENSORS_W83792D is not set |
672 | # CONFIG_SENSORS_W83L785TS is not set | 698 | # CONFIG_SENSORS_W83L785TS is not set |
673 | # CONFIG_SENSORS_W83627HF is not set | 699 | # CONFIG_SENSORS_W83627HF is not set |
@@ -679,13 +705,10 @@ CONFIG_HWMON=y | |||
679 | # | 705 | # |
680 | 706 | ||
681 | # | 707 | # |
682 | # Multimedia Capabilities Port drivers | ||
683 | # | ||
684 | |||
685 | # | ||
686 | # Multimedia devices | 708 | # Multimedia devices |
687 | # | 709 | # |
688 | # CONFIG_VIDEO_DEV is not set | 710 | # CONFIG_VIDEO_DEV is not set |
711 | CONFIG_VIDEO_V4L2=y | ||
689 | 712 | ||
690 | # | 713 | # |
691 | # Digital Video Broadcasting Devices | 714 | # Digital Video Broadcasting Devices |
@@ -695,7 +718,9 @@ CONFIG_HWMON=y | |||
695 | # | 718 | # |
696 | # Graphics support | 719 | # Graphics support |
697 | # | 720 | # |
721 | CONFIG_FIRMWARE_EDID=y | ||
698 | # CONFIG_FB is not set | 722 | # CONFIG_FB is not set |
723 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
699 | 724 | ||
700 | # | 725 | # |
701 | # Sound | 726 | # Sound |
@@ -707,6 +732,7 @@ CONFIG_HWMON=y | |||
707 | # | 732 | # |
708 | CONFIG_USB_ARCH_HAS_HCD=y | 733 | CONFIG_USB_ARCH_HAS_HCD=y |
709 | CONFIG_USB_ARCH_HAS_OHCI=y | 734 | CONFIG_USB_ARCH_HAS_OHCI=y |
735 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
710 | # CONFIG_USB is not set | 736 | # CONFIG_USB is not set |
711 | 737 | ||
712 | # | 738 | # |
@@ -724,6 +750,19 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
724 | # CONFIG_MMC is not set | 750 | # CONFIG_MMC is not set |
725 | 751 | ||
726 | # | 752 | # |
753 | # LED devices | ||
754 | # | ||
755 | # CONFIG_NEW_LEDS is not set | ||
756 | |||
757 | # | ||
758 | # LED drivers | ||
759 | # | ||
760 | |||
761 | # | ||
762 | # LED Triggers | ||
763 | # | ||
764 | |||
765 | # | ||
727 | # InfiniBand support | 766 | # InfiniBand support |
728 | # | 767 | # |
729 | # CONFIG_INFINIBAND is not set | 768 | # CONFIG_INFINIBAND is not set |
@@ -733,6 +772,24 @@ CONFIG_USB_ARCH_HAS_OHCI=y | |||
733 | # | 772 | # |
734 | 773 | ||
735 | # | 774 | # |
775 | # Real Time Clock | ||
776 | # | ||
777 | # CONFIG_RTC_CLASS is not set | ||
778 | |||
779 | # | ||
780 | # DMA Engine support | ||
781 | # | ||
782 | # CONFIG_DMA_ENGINE is not set | ||
783 | |||
784 | # | ||
785 | # DMA Clients | ||
786 | # | ||
787 | |||
788 | # | ||
789 | # DMA Devices | ||
790 | # | ||
791 | |||
792 | # | ||
736 | # File systems | 793 | # File systems |
737 | # | 794 | # |
738 | CONFIG_EXT2_FS=y | 795 | CONFIG_EXT2_FS=y |
@@ -753,6 +810,7 @@ CONFIG_FS_MBCACHE=y | |||
753 | # CONFIG_MINIX_FS is not set | 810 | # CONFIG_MINIX_FS is not set |
754 | # CONFIG_ROMFS_FS is not set | 811 | # CONFIG_ROMFS_FS is not set |
755 | CONFIG_INOTIFY=y | 812 | CONFIG_INOTIFY=y |
813 | CONFIG_INOTIFY_USER=y | ||
756 | # CONFIG_QUOTA is not set | 814 | # CONFIG_QUOTA is not set |
757 | CONFIG_DNOTIFY=y | 815 | CONFIG_DNOTIFY=y |
758 | # CONFIG_AUTOFS_FS is not set | 816 | # CONFIG_AUTOFS_FS is not set |
@@ -781,7 +839,6 @@ CONFIG_SYSFS=y | |||
781 | CONFIG_TMPFS=y | 839 | CONFIG_TMPFS=y |
782 | # CONFIG_HUGETLB_PAGE is not set | 840 | # CONFIG_HUGETLB_PAGE is not set |
783 | CONFIG_RAMFS=y | 841 | CONFIG_RAMFS=y |
784 | # CONFIG_RELAYFS_FS is not set | ||
785 | # CONFIG_CONFIGFS_FS is not set | 842 | # CONFIG_CONFIGFS_FS is not set |
786 | 843 | ||
787 | # | 844 | # |
@@ -854,6 +911,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
854 | # CONFIG_CRC16 is not set | 911 | # CONFIG_CRC16 is not set |
855 | CONFIG_CRC32=y | 912 | CONFIG_CRC32=y |
856 | # CONFIG_LIBCRC32C is not set | 913 | # CONFIG_LIBCRC32C is not set |
914 | CONFIG_PLIST=y | ||
857 | 915 | ||
858 | # | 916 | # |
859 | # Instrumentation Support | 917 | # Instrumentation Support |
@@ -865,15 +923,13 @@ CONFIG_CRC32=y | |||
865 | # | 923 | # |
866 | # CONFIG_PRINTK_TIME is not set | 924 | # CONFIG_PRINTK_TIME is not set |
867 | # CONFIG_MAGIC_SYSRQ is not set | 925 | # CONFIG_MAGIC_SYSRQ is not set |
926 | # CONFIG_UNUSED_SYMBOLS is not set | ||
868 | # CONFIG_DEBUG_KERNEL is not set | 927 | # CONFIG_DEBUG_KERNEL is not set |
869 | CONFIG_LOG_BUF_SHIFT=14 | 928 | CONFIG_LOG_BUF_SHIFT=14 |
929 | # CONFIG_DEBUG_FS is not set | ||
870 | # CONFIG_BOOTX_TEXT is not set | 930 | # CONFIG_BOOTX_TEXT is not set |
871 | # CONFIG_SERIAL_TEXT_DEBUG is not set | 931 | # CONFIG_SERIAL_TEXT_DEBUG is not set |
872 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 932 | # CONFIG_PPC_EARLY_DEBUG is not set |
873 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
874 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
875 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
876 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
877 | 933 | ||
878 | # | 934 | # |
879 | # Security options | 935 | # Security options |
diff --git a/arch/powerpc/configs/mpc8540_ads_defconfig b/arch/powerpc/configs/mpc8540_ads_defconfig index 7f0780f1aa39..67e7d0b5793d 100644 --- a/arch/powerpc/configs/mpc8540_ads_defconfig +++ b/arch/powerpc/configs/mpc8540_ads_defconfig | |||
@@ -1,16 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.16 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Mon Mar 27 23:37:36 2006 | 4 | # Sun Sep 10 10:29:23 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
14 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
15 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
16 | CONFIG_GENERIC_NVRAM=y | 18 | CONFIG_GENERIC_NVRAM=y |
@@ -29,6 +31,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
29 | # CONFIG_PPC_82xx is not set | 31 | # CONFIG_PPC_82xx is not set |
30 | # CONFIG_PPC_83xx is not set | 32 | # CONFIG_PPC_83xx is not set |
31 | CONFIG_PPC_85xx=y | 33 | CONFIG_PPC_85xx=y |
34 | # CONFIG_PPC_86xx is not set | ||
32 | # CONFIG_40x is not set | 35 | # CONFIG_40x is not set |
33 | # CONFIG_44x is not set | 36 | # CONFIG_44x is not set |
34 | # CONFIG_8xx is not set | 37 | # CONFIG_8xx is not set |
@@ -39,6 +42,7 @@ CONFIG_BOOKE=y | |||
39 | CONFIG_FSL_BOOKE=y | 42 | CONFIG_FSL_BOOKE=y |
40 | # CONFIG_PHYS_64BIT is not set | 43 | # CONFIG_PHYS_64BIT is not set |
41 | CONFIG_SPE=y | 44 | CONFIG_SPE=y |
45 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
42 | 46 | ||
43 | # | 47 | # |
44 | # Code maturity level options | 48 | # Code maturity level options |
@@ -56,6 +60,7 @@ CONFIG_SWAP=y | |||
56 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
57 | # CONFIG_POSIX_MQUEUE is not set | 61 | # CONFIG_POSIX_MQUEUE is not set |
58 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
59 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
60 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
61 | # CONFIG_IKCONFIG is not set | 66 | # CONFIG_IKCONFIG is not set |
@@ -71,10 +76,12 @@ CONFIG_PRINTK=y | |||
71 | CONFIG_BUG=y | 76 | CONFIG_BUG=y |
72 | CONFIG_ELF_CORE=y | 77 | CONFIG_ELF_CORE=y |
73 | CONFIG_BASE_FULL=y | 78 | CONFIG_BASE_FULL=y |
79 | CONFIG_RT_MUTEXES=y | ||
74 | CONFIG_FUTEX=y | 80 | CONFIG_FUTEX=y |
75 | CONFIG_EPOLL=y | 81 | CONFIG_EPOLL=y |
76 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
77 | CONFIG_SLAB=y | 83 | CONFIG_SLAB=y |
84 | CONFIG_VM_EVENT_COUNTERS=y | ||
78 | # CONFIG_TINY_SHMEM is not set | 85 | # CONFIG_TINY_SHMEM is not set |
79 | CONFIG_BASE_SMALL=0 | 86 | CONFIG_BASE_SMALL=0 |
80 | # CONFIG_SLOB is not set | 87 | # CONFIG_SLOB is not set |
@@ -103,15 +110,16 @@ CONFIG_DEFAULT_AS=y | |||
103 | # CONFIG_DEFAULT_CFQ is not set | 110 | # CONFIG_DEFAULT_CFQ is not set |
104 | # CONFIG_DEFAULT_NOOP is not set | 111 | # CONFIG_DEFAULT_NOOP is not set |
105 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 112 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
106 | CONFIG_MPIC=y | ||
107 | # CONFIG_WANT_EARLY_SERIAL is not set | 113 | # CONFIG_WANT_EARLY_SERIAL is not set |
108 | 114 | ||
109 | # | 115 | # |
110 | # Platform support | 116 | # Platform support |
111 | # | 117 | # |
112 | CONFIG_MPC8540_ADS=y | 118 | CONFIG_MPC8540_ADS=y |
119 | # CONFIG_MPC85xx_CDS is not set | ||
113 | CONFIG_MPC8540=y | 120 | CONFIG_MPC8540=y |
114 | CONFIG_PPC_INDIRECT_PCI_BE=y | 121 | CONFIG_PPC_INDIRECT_PCI_BE=y |
122 | CONFIG_MPIC=y | ||
115 | 123 | ||
116 | # | 124 | # |
117 | # Kernel options | 125 | # Kernel options |
@@ -127,6 +135,7 @@ CONFIG_PREEMPT_NONE=y | |||
127 | CONFIG_BINFMT_ELF=y | 135 | CONFIG_BINFMT_ELF=y |
128 | CONFIG_BINFMT_MISC=y | 136 | CONFIG_BINFMT_MISC=y |
129 | CONFIG_MATH_EMULATION=y | 137 | CONFIG_MATH_EMULATION=y |
138 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
130 | CONFIG_ARCH_FLATMEM_ENABLE=y | 139 | CONFIG_ARCH_FLATMEM_ENABLE=y |
131 | CONFIG_SELECT_MEMORY_MODEL=y | 140 | CONFIG_SELECT_MEMORY_MODEL=y |
132 | CONFIG_FLATMEM_MANUAL=y | 141 | CONFIG_FLATMEM_MANUAL=y |
@@ -136,16 +145,17 @@ CONFIG_FLATMEM=y | |||
136 | CONFIG_FLAT_NODE_MEM_MAP=y | 145 | CONFIG_FLAT_NODE_MEM_MAP=y |
137 | # CONFIG_SPARSEMEM_STATIC is not set | 146 | # CONFIG_SPARSEMEM_STATIC is not set |
138 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 147 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
148 | # CONFIG_RESOURCES_64BIT is not set | ||
139 | CONFIG_PROC_DEVICETREE=y | 149 | CONFIG_PROC_DEVICETREE=y |
140 | # CONFIG_CMDLINE_BOOL is not set | 150 | # CONFIG_CMDLINE_BOOL is not set |
141 | # CONFIG_PM is not set | 151 | # CONFIG_PM is not set |
142 | # CONFIG_SOFTWARE_SUSPEND is not set | ||
143 | # CONFIG_SECCOMP is not set | 152 | # CONFIG_SECCOMP is not set |
144 | CONFIG_ISA_DMA_API=y | 153 | CONFIG_ISA_DMA_API=y |
145 | 154 | ||
146 | # | 155 | # |
147 | # Bus options | 156 | # Bus options |
148 | # | 157 | # |
158 | # CONFIG_MPIC_WEIRD is not set | ||
149 | # CONFIG_PPC_I8259 is not set | 159 | # CONFIG_PPC_I8259 is not set |
150 | CONFIG_PPC_INDIRECT_PCI=y | 160 | CONFIG_PPC_INDIRECT_PCI=y |
151 | CONFIG_FSL_SOC=y | 161 | CONFIG_FSL_SOC=y |
@@ -187,6 +197,8 @@ CONFIG_NET=y | |||
187 | CONFIG_PACKET=y | 197 | CONFIG_PACKET=y |
188 | # CONFIG_PACKET_MMAP is not set | 198 | # CONFIG_PACKET_MMAP is not set |
189 | CONFIG_UNIX=y | 199 | CONFIG_UNIX=y |
200 | CONFIG_XFRM=y | ||
201 | CONFIG_XFRM_USER=y | ||
190 | # CONFIG_NET_KEY is not set | 202 | # CONFIG_NET_KEY is not set |
191 | CONFIG_INET=y | 203 | CONFIG_INET=y |
192 | CONFIG_IP_MULTICAST=y | 204 | CONFIG_IP_MULTICAST=y |
@@ -204,12 +216,18 @@ CONFIG_SYN_COOKIES=y | |||
204 | # CONFIG_INET_AH is not set | 216 | # CONFIG_INET_AH is not set |
205 | # CONFIG_INET_ESP is not set | 217 | # CONFIG_INET_ESP is not set |
206 | # CONFIG_INET_IPCOMP is not set | 218 | # CONFIG_INET_IPCOMP is not set |
219 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
207 | # CONFIG_INET_TUNNEL is not set | 220 | # CONFIG_INET_TUNNEL is not set |
221 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
222 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
208 | CONFIG_INET_DIAG=y | 223 | CONFIG_INET_DIAG=y |
209 | CONFIG_INET_TCP_DIAG=y | 224 | CONFIG_INET_TCP_DIAG=y |
210 | # CONFIG_TCP_CONG_ADVANCED is not set | 225 | # CONFIG_TCP_CONG_ADVANCED is not set |
211 | CONFIG_TCP_CONG_BIC=y | 226 | CONFIG_TCP_CONG_BIC=y |
212 | # CONFIG_IPV6 is not set | 227 | # CONFIG_IPV6 is not set |
228 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
229 | # CONFIG_INET6_TUNNEL is not set | ||
230 | # CONFIG_NETWORK_SECMARK is not set | ||
213 | # CONFIG_NETFILTER is not set | 231 | # CONFIG_NETFILTER is not set |
214 | 232 | ||
215 | # | 233 | # |
@@ -264,6 +282,7 @@ CONFIG_STANDALONE=y | |||
264 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 282 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
265 | # CONFIG_FW_LOADER is not set | 283 | # CONFIG_FW_LOADER is not set |
266 | # CONFIG_DEBUG_DRIVER is not set | 284 | # CONFIG_DEBUG_DRIVER is not set |
285 | # CONFIG_SYS_HYPERVISOR is not set | ||
267 | 286 | ||
268 | # | 287 | # |
269 | # Connector - unified userspace <-> kernelspace linker | 288 | # Connector - unified userspace <-> kernelspace linker |
@@ -295,6 +314,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
295 | CONFIG_BLK_DEV_RAM=y | 314 | CONFIG_BLK_DEV_RAM=y |
296 | CONFIG_BLK_DEV_RAM_COUNT=16 | 315 | CONFIG_BLK_DEV_RAM_COUNT=16 |
297 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 316 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
317 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
298 | CONFIG_BLK_DEV_INITRD=y | 318 | CONFIG_BLK_DEV_INITRD=y |
299 | # CONFIG_CDROM_PKTCDVD is not set | 319 | # CONFIG_CDROM_PKTCDVD is not set |
300 | # CONFIG_ATA_OVER_ETH is not set | 320 | # CONFIG_ATA_OVER_ETH is not set |
@@ -355,6 +375,9 @@ CONFIG_PHYLIB=y | |||
355 | # CONFIG_QSEMI_PHY is not set | 375 | # CONFIG_QSEMI_PHY is not set |
356 | # CONFIG_LXT_PHY is not set | 376 | # CONFIG_LXT_PHY is not set |
357 | # CONFIG_CICADA_PHY is not set | 377 | # CONFIG_CICADA_PHY is not set |
378 | # CONFIG_VITESSE_PHY is not set | ||
379 | # CONFIG_SMSC_PHY is not set | ||
380 | # CONFIG_FIXED_PHY is not set | ||
358 | 381 | ||
359 | # | 382 | # |
360 | # Ethernet (10 or 100Mbit) | 383 | # Ethernet (10 or 100Mbit) |
@@ -464,6 +487,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
464 | # Watchdog Cards | 487 | # Watchdog Cards |
465 | # | 488 | # |
466 | # CONFIG_WATCHDOG is not set | 489 | # CONFIG_WATCHDOG is not set |
490 | # CONFIG_HW_RANDOM is not set | ||
467 | # CONFIG_NVRAM is not set | 491 | # CONFIG_NVRAM is not set |
468 | CONFIG_GEN_RTC=y | 492 | CONFIG_GEN_RTC=y |
469 | # CONFIG_GEN_RTC_X is not set | 493 | # CONFIG_GEN_RTC_X is not set |
@@ -473,7 +497,6 @@ CONFIG_GEN_RTC=y | |||
473 | # | 497 | # |
474 | # Ftape, the floppy tape device driver | 498 | # Ftape, the floppy tape device driver |
475 | # | 499 | # |
476 | # CONFIG_AGP is not set | ||
477 | # CONFIG_RAW_DRIVER is not set | 500 | # CONFIG_RAW_DRIVER is not set |
478 | 501 | ||
479 | # | 502 | # |
@@ -496,13 +519,13 @@ CONFIG_GEN_RTC=y | |||
496 | # | 519 | # |
497 | # Dallas's 1-wire bus | 520 | # Dallas's 1-wire bus |
498 | # | 521 | # |
499 | # CONFIG_W1 is not set | ||
500 | 522 | ||
501 | # | 523 | # |
502 | # Hardware Monitoring support | 524 | # Hardware Monitoring support |
503 | # | 525 | # |
504 | CONFIG_HWMON=y | 526 | CONFIG_HWMON=y |
505 | # CONFIG_HWMON_VID is not set | 527 | # CONFIG_HWMON_VID is not set |
528 | # CONFIG_SENSORS_ABITUGURU is not set | ||
506 | # CONFIG_SENSORS_F71805F is not set | 529 | # CONFIG_SENSORS_F71805F is not set |
507 | # CONFIG_HWMON_DEBUG_CHIP is not set | 530 | # CONFIG_HWMON_DEBUG_CHIP is not set |
508 | 531 | ||
@@ -514,6 +537,7 @@ CONFIG_HWMON=y | |||
514 | # Multimedia devices | 537 | # Multimedia devices |
515 | # | 538 | # |
516 | # CONFIG_VIDEO_DEV is not set | 539 | # CONFIG_VIDEO_DEV is not set |
540 | CONFIG_VIDEO_V4L2=y | ||
517 | 541 | ||
518 | # | 542 | # |
519 | # Digital Video Broadcasting Devices | 543 | # Digital Video Broadcasting Devices |
@@ -523,7 +547,9 @@ CONFIG_HWMON=y | |||
523 | # | 547 | # |
524 | # Graphics support | 548 | # Graphics support |
525 | # | 549 | # |
550 | CONFIG_FIRMWARE_EDID=y | ||
526 | # CONFIG_FB is not set | 551 | # CONFIG_FB is not set |
552 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
527 | 553 | ||
528 | # | 554 | # |
529 | # Sound | 555 | # Sound |
@@ -552,6 +578,19 @@ CONFIG_HWMON=y | |||
552 | # CONFIG_MMC is not set | 578 | # CONFIG_MMC is not set |
553 | 579 | ||
554 | # | 580 | # |
581 | # LED devices | ||
582 | # | ||
583 | # CONFIG_NEW_LEDS is not set | ||
584 | |||
585 | # | ||
586 | # LED drivers | ||
587 | # | ||
588 | |||
589 | # | ||
590 | # LED Triggers | ||
591 | # | ||
592 | |||
593 | # | ||
555 | # InfiniBand support | 594 | # InfiniBand support |
556 | # | 595 | # |
557 | 596 | ||
@@ -560,6 +599,24 @@ CONFIG_HWMON=y | |||
560 | # | 599 | # |
561 | 600 | ||
562 | # | 601 | # |
602 | # Real Time Clock | ||
603 | # | ||
604 | # CONFIG_RTC_CLASS is not set | ||
605 | |||
606 | # | ||
607 | # DMA Engine support | ||
608 | # | ||
609 | # CONFIG_DMA_ENGINE is not set | ||
610 | |||
611 | # | ||
612 | # DMA Clients | ||
613 | # | ||
614 | |||
615 | # | ||
616 | # DMA Devices | ||
617 | # | ||
618 | |||
619 | # | ||
563 | # File systems | 620 | # File systems |
564 | # | 621 | # |
565 | CONFIG_EXT2_FS=y | 622 | CONFIG_EXT2_FS=y |
@@ -580,6 +637,7 @@ CONFIG_FS_MBCACHE=y | |||
580 | # CONFIG_MINIX_FS is not set | 637 | # CONFIG_MINIX_FS is not set |
581 | # CONFIG_ROMFS_FS is not set | 638 | # CONFIG_ROMFS_FS is not set |
582 | CONFIG_INOTIFY=y | 639 | CONFIG_INOTIFY=y |
640 | CONFIG_INOTIFY_USER=y | ||
583 | # CONFIG_QUOTA is not set | 641 | # CONFIG_QUOTA is not set |
584 | CONFIG_DNOTIFY=y | 642 | CONFIG_DNOTIFY=y |
585 | # CONFIG_AUTOFS_FS is not set | 643 | # CONFIG_AUTOFS_FS is not set |
@@ -677,6 +735,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
677 | # CONFIG_CRC16 is not set | 735 | # CONFIG_CRC16 is not set |
678 | CONFIG_CRC32=y | 736 | CONFIG_CRC32=y |
679 | # CONFIG_LIBCRC32C is not set | 737 | # CONFIG_LIBCRC32C is not set |
738 | CONFIG_PLIST=y | ||
680 | 739 | ||
681 | # | 740 | # |
682 | # Instrumentation Support | 741 | # Instrumentation Support |
@@ -688,14 +747,19 @@ CONFIG_CRC32=y | |||
688 | # | 747 | # |
689 | # CONFIG_PRINTK_TIME is not set | 748 | # CONFIG_PRINTK_TIME is not set |
690 | # CONFIG_MAGIC_SYSRQ is not set | 749 | # CONFIG_MAGIC_SYSRQ is not set |
750 | # CONFIG_UNUSED_SYMBOLS is not set | ||
691 | CONFIG_DEBUG_KERNEL=y | 751 | CONFIG_DEBUG_KERNEL=y |
692 | CONFIG_LOG_BUF_SHIFT=14 | 752 | CONFIG_LOG_BUF_SHIFT=14 |
693 | CONFIG_DETECT_SOFTLOCKUP=y | 753 | CONFIG_DETECT_SOFTLOCKUP=y |
694 | # CONFIG_SCHEDSTATS is not set | 754 | # CONFIG_SCHEDSTATS is not set |
695 | # CONFIG_DEBUG_SLAB is not set | 755 | # CONFIG_DEBUG_SLAB is not set |
696 | CONFIG_DEBUG_MUTEXES=y | 756 | # CONFIG_DEBUG_RT_MUTEXES is not set |
757 | # CONFIG_RT_MUTEX_TESTER is not set | ||
697 | # CONFIG_DEBUG_SPINLOCK is not set | 758 | # CONFIG_DEBUG_SPINLOCK is not set |
759 | CONFIG_DEBUG_MUTEXES=y | ||
760 | # CONFIG_DEBUG_RWSEMS is not set | ||
698 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 761 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
762 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
699 | # CONFIG_DEBUG_KOBJECT is not set | 763 | # CONFIG_DEBUG_KOBJECT is not set |
700 | # CONFIG_DEBUG_INFO is not set | 764 | # CONFIG_DEBUG_INFO is not set |
701 | # CONFIG_DEBUG_FS is not set | 765 | # CONFIG_DEBUG_FS is not set |
@@ -706,11 +770,7 @@ CONFIG_FORCED_INLINING=y | |||
706 | # CONFIG_DEBUGGER is not set | 770 | # CONFIG_DEBUGGER is not set |
707 | # CONFIG_BDI_SWITCH is not set | 771 | # CONFIG_BDI_SWITCH is not set |
708 | # CONFIG_BOOTX_TEXT is not set | 772 | # CONFIG_BOOTX_TEXT is not set |
709 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 773 | # CONFIG_PPC_EARLY_DEBUG is not set |
710 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
711 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
712 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
713 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
714 | 774 | ||
715 | # | 775 | # |
716 | # Security options | 776 | # Security options |
diff --git a/arch/powerpc/configs/mpc85xx_cds_defconfig b/arch/powerpc/configs/mpc85xx_cds_defconfig index 9bb022a523fe..72edf9f66829 100644 --- a/arch/powerpc/configs/mpc85xx_cds_defconfig +++ b/arch/powerpc/configs/mpc85xx_cds_defconfig | |||
@@ -1,16 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.16 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Sun Apr 2 11:23:42 2006 | 4 | # Sun Sep 10 10:29:49 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
14 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
15 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
16 | CONFIG_GENERIC_NVRAM=y | 18 | CONFIG_GENERIC_NVRAM=y |
@@ -19,7 +21,7 @@ CONFIG_ARCH_MAY_HAVE_PC_FDC=y | |||
19 | CONFIG_PPC_OF=y | 21 | CONFIG_PPC_OF=y |
20 | CONFIG_PPC_UDBG_16550=y | 22 | CONFIG_PPC_UDBG_16550=y |
21 | # CONFIG_GENERIC_TBSYNC is not set | 23 | # CONFIG_GENERIC_TBSYNC is not set |
22 | # CONFIG_DEFAULT_UIMAGE is not set | 24 | CONFIG_DEFAULT_UIMAGE=y |
23 | 25 | ||
24 | # | 26 | # |
25 | # Processor support | 27 | # Processor support |
@@ -29,6 +31,7 @@ CONFIG_PPC_UDBG_16550=y | |||
29 | # CONFIG_PPC_82xx is not set | 31 | # CONFIG_PPC_82xx is not set |
30 | # CONFIG_PPC_83xx is not set | 32 | # CONFIG_PPC_83xx is not set |
31 | CONFIG_PPC_85xx=y | 33 | CONFIG_PPC_85xx=y |
34 | # CONFIG_PPC_86xx is not set | ||
32 | # CONFIG_40x is not set | 35 | # CONFIG_40x is not set |
33 | # CONFIG_44x is not set | 36 | # CONFIG_44x is not set |
34 | # CONFIG_8xx is not set | 37 | # CONFIG_8xx is not set |
@@ -39,6 +42,7 @@ CONFIG_BOOKE=y | |||
39 | CONFIG_FSL_BOOKE=y | 42 | CONFIG_FSL_BOOKE=y |
40 | # CONFIG_PHYS_64BIT is not set | 43 | # CONFIG_PHYS_64BIT is not set |
41 | CONFIG_SPE=y | 44 | CONFIG_SPE=y |
45 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
42 | 46 | ||
43 | # | 47 | # |
44 | # Code maturity level options | 48 | # Code maturity level options |
@@ -56,6 +60,7 @@ CONFIG_SWAP=y | |||
56 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
57 | # CONFIG_POSIX_MQUEUE is not set | 61 | # CONFIG_POSIX_MQUEUE is not set |
58 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
59 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
60 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
61 | # CONFIG_IKCONFIG is not set | 66 | # CONFIG_IKCONFIG is not set |
@@ -71,10 +76,12 @@ CONFIG_PRINTK=y | |||
71 | CONFIG_BUG=y | 76 | CONFIG_BUG=y |
72 | CONFIG_ELF_CORE=y | 77 | CONFIG_ELF_CORE=y |
73 | CONFIG_BASE_FULL=y | 78 | CONFIG_BASE_FULL=y |
79 | CONFIG_RT_MUTEXES=y | ||
74 | CONFIG_FUTEX=y | 80 | CONFIG_FUTEX=y |
75 | CONFIG_EPOLL=y | 81 | CONFIG_EPOLL=y |
76 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
77 | CONFIG_SLAB=y | 83 | CONFIG_SLAB=y |
84 | CONFIG_VM_EVENT_COUNTERS=y | ||
78 | # CONFIG_TINY_SHMEM is not set | 85 | # CONFIG_TINY_SHMEM is not set |
79 | CONFIG_BASE_SMALL=0 | 86 | CONFIG_BASE_SMALL=0 |
80 | # CONFIG_SLOB is not set | 87 | # CONFIG_SLOB is not set |
@@ -103,7 +110,6 @@ CONFIG_DEFAULT_AS=y | |||
103 | # CONFIG_DEFAULT_CFQ is not set | 110 | # CONFIG_DEFAULT_CFQ is not set |
104 | # CONFIG_DEFAULT_NOOP is not set | 111 | # CONFIG_DEFAULT_NOOP is not set |
105 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 112 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
106 | CONFIG_MPIC=y | ||
107 | # CONFIG_WANT_EARLY_SERIAL is not set | 113 | # CONFIG_WANT_EARLY_SERIAL is not set |
108 | 114 | ||
109 | # | 115 | # |
@@ -113,6 +119,7 @@ CONFIG_MPIC=y | |||
113 | CONFIG_MPC85xx_CDS=y | 119 | CONFIG_MPC85xx_CDS=y |
114 | CONFIG_MPC8540=y | 120 | CONFIG_MPC8540=y |
115 | CONFIG_PPC_INDIRECT_PCI_BE=y | 121 | CONFIG_PPC_INDIRECT_PCI_BE=y |
122 | CONFIG_MPIC=y | ||
116 | 123 | ||
117 | # | 124 | # |
118 | # Kernel options | 125 | # Kernel options |
@@ -128,6 +135,7 @@ CONFIG_PREEMPT_NONE=y | |||
128 | CONFIG_BINFMT_ELF=y | 135 | CONFIG_BINFMT_ELF=y |
129 | CONFIG_BINFMT_MISC=y | 136 | CONFIG_BINFMT_MISC=y |
130 | CONFIG_MATH_EMULATION=y | 137 | CONFIG_MATH_EMULATION=y |
138 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
131 | CONFIG_ARCH_FLATMEM_ENABLE=y | 139 | CONFIG_ARCH_FLATMEM_ENABLE=y |
132 | CONFIG_SELECT_MEMORY_MODEL=y | 140 | CONFIG_SELECT_MEMORY_MODEL=y |
133 | CONFIG_FLATMEM_MANUAL=y | 141 | CONFIG_FLATMEM_MANUAL=y |
@@ -137,21 +145,23 @@ CONFIG_FLATMEM=y | |||
137 | CONFIG_FLAT_NODE_MEM_MAP=y | 145 | CONFIG_FLAT_NODE_MEM_MAP=y |
138 | # CONFIG_SPARSEMEM_STATIC is not set | 146 | # CONFIG_SPARSEMEM_STATIC is not set |
139 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 147 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
148 | # CONFIG_RESOURCES_64BIT is not set | ||
140 | CONFIG_PROC_DEVICETREE=y | 149 | CONFIG_PROC_DEVICETREE=y |
141 | # CONFIG_CMDLINE_BOOL is not set | 150 | # CONFIG_CMDLINE_BOOL is not set |
142 | # CONFIG_PM is not set | 151 | # CONFIG_PM is not set |
143 | # CONFIG_SOFTWARE_SUSPEND is not set | ||
144 | # CONFIG_SECCOMP is not set | 152 | # CONFIG_SECCOMP is not set |
145 | CONFIG_ISA_DMA_API=y | 153 | CONFIG_ISA_DMA_API=y |
146 | 154 | ||
147 | # | 155 | # |
148 | # Bus options | 156 | # Bus options |
149 | # | 157 | # |
150 | CONFIG_PPC_I8259=y | 158 | # CONFIG_MPIC_WEIRD is not set |
159 | # CONFIG_PPC_I8259 is not set | ||
151 | CONFIG_PPC_INDIRECT_PCI=y | 160 | CONFIG_PPC_INDIRECT_PCI=y |
152 | CONFIG_FSL_SOC=y | 161 | CONFIG_FSL_SOC=y |
153 | CONFIG_PCI=y | 162 | CONFIG_PCI=y |
154 | CONFIG_PCI_DOMAINS=y | 163 | CONFIG_PCI_DOMAINS=y |
164 | # CONFIG_PCIEPORTBUS is not set | ||
155 | # CONFIG_PCI_DEBUG is not set | 165 | # CONFIG_PCI_DEBUG is not set |
156 | 166 | ||
157 | # | 167 | # |
@@ -190,6 +200,8 @@ CONFIG_NET=y | |||
190 | CONFIG_PACKET=y | 200 | CONFIG_PACKET=y |
191 | # CONFIG_PACKET_MMAP is not set | 201 | # CONFIG_PACKET_MMAP is not set |
192 | CONFIG_UNIX=y | 202 | CONFIG_UNIX=y |
203 | CONFIG_XFRM=y | ||
204 | CONFIG_XFRM_USER=y | ||
193 | # CONFIG_NET_KEY is not set | 205 | # CONFIG_NET_KEY is not set |
194 | CONFIG_INET=y | 206 | CONFIG_INET=y |
195 | CONFIG_IP_MULTICAST=y | 207 | CONFIG_IP_MULTICAST=y |
@@ -209,6 +221,8 @@ CONFIG_SYN_COOKIES=y | |||
209 | # CONFIG_INET_IPCOMP is not set | 221 | # CONFIG_INET_IPCOMP is not set |
210 | # CONFIG_INET_XFRM_TUNNEL is not set | 222 | # CONFIG_INET_XFRM_TUNNEL is not set |
211 | # CONFIG_INET_TUNNEL is not set | 223 | # CONFIG_INET_TUNNEL is not set |
224 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
225 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
212 | CONFIG_INET_DIAG=y | 226 | CONFIG_INET_DIAG=y |
213 | CONFIG_INET_TCP_DIAG=y | 227 | CONFIG_INET_TCP_DIAG=y |
214 | # CONFIG_TCP_CONG_ADVANCED is not set | 228 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -216,6 +230,7 @@ CONFIG_TCP_CONG_BIC=y | |||
216 | # CONFIG_IPV6 is not set | 230 | # CONFIG_IPV6 is not set |
217 | # CONFIG_INET6_XFRM_TUNNEL is not set | 231 | # CONFIG_INET6_XFRM_TUNNEL is not set |
218 | # CONFIG_INET6_TUNNEL is not set | 232 | # CONFIG_INET6_TUNNEL is not set |
233 | # CONFIG_NETWORK_SECMARK is not set | ||
219 | # CONFIG_NETFILTER is not set | 234 | # CONFIG_NETFILTER is not set |
220 | 235 | ||
221 | # | 236 | # |
@@ -270,6 +285,7 @@ CONFIG_STANDALONE=y | |||
270 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 285 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
271 | # CONFIG_FW_LOADER is not set | 286 | # CONFIG_FW_LOADER is not set |
272 | # CONFIG_DEBUG_DRIVER is not set | 287 | # CONFIG_DEBUG_DRIVER is not set |
288 | # CONFIG_SYS_HYPERVISOR is not set | ||
273 | 289 | ||
274 | # | 290 | # |
275 | # Connector - unified userspace <-> kernelspace linker | 291 | # Connector - unified userspace <-> kernelspace linker |
@@ -306,6 +322,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
306 | CONFIG_BLK_DEV_RAM=y | 322 | CONFIG_BLK_DEV_RAM=y |
307 | CONFIG_BLK_DEV_RAM_COUNT=16 | 323 | CONFIG_BLK_DEV_RAM_COUNT=16 |
308 | CONFIG_BLK_DEV_RAM_SIZE=32768 | 324 | CONFIG_BLK_DEV_RAM_SIZE=32768 |
325 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
309 | CONFIG_BLK_DEV_INITRD=y | 326 | CONFIG_BLK_DEV_INITRD=y |
310 | # CONFIG_CDROM_PKTCDVD is not set | 327 | # CONFIG_CDROM_PKTCDVD is not set |
311 | # CONFIG_ATA_OVER_ETH is not set | 328 | # CONFIG_ATA_OVER_ETH is not set |
@@ -425,6 +442,9 @@ CONFIG_PHYLIB=y | |||
425 | # CONFIG_QSEMI_PHY is not set | 442 | # CONFIG_QSEMI_PHY is not set |
426 | # CONFIG_LXT_PHY is not set | 443 | # CONFIG_LXT_PHY is not set |
427 | # CONFIG_CICADA_PHY is not set | 444 | # CONFIG_CICADA_PHY is not set |
445 | # CONFIG_VITESSE_PHY is not set | ||
446 | # CONFIG_SMSC_PHY is not set | ||
447 | # CONFIG_FIXED_PHY is not set | ||
428 | 448 | ||
429 | # | 449 | # |
430 | # Ethernet (10 or 100Mbit) | 450 | # Ethernet (10 or 100Mbit) |
@@ -470,6 +490,7 @@ CONFIG_GFAR_NAPI=y | |||
470 | # CONFIG_CHELSIO_T1 is not set | 490 | # CONFIG_CHELSIO_T1 is not set |
471 | # CONFIG_IXGB is not set | 491 | # CONFIG_IXGB is not set |
472 | # CONFIG_S2IO is not set | 492 | # CONFIG_S2IO is not set |
493 | # CONFIG_MYRI10GE is not set | ||
473 | 494 | ||
474 | # | 495 | # |
475 | # Token Ring devices | 496 | # Token Ring devices |
@@ -568,6 +589,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
568 | # Watchdog Cards | 589 | # Watchdog Cards |
569 | # | 590 | # |
570 | # CONFIG_WATCHDOG is not set | 591 | # CONFIG_WATCHDOG is not set |
592 | # CONFIG_HW_RANDOM is not set | ||
571 | # CONFIG_NVRAM is not set | 593 | # CONFIG_NVRAM is not set |
572 | CONFIG_GEN_RTC=y | 594 | CONFIG_GEN_RTC=y |
573 | # CONFIG_GEN_RTC_X is not set | 595 | # CONFIG_GEN_RTC_X is not set |
@@ -602,13 +624,13 @@ CONFIG_GEN_RTC=y | |||
602 | # | 624 | # |
603 | # Dallas's 1-wire bus | 625 | # Dallas's 1-wire bus |
604 | # | 626 | # |
605 | # CONFIG_W1 is not set | ||
606 | 627 | ||
607 | # | 628 | # |
608 | # Hardware Monitoring support | 629 | # Hardware Monitoring support |
609 | # | 630 | # |
610 | CONFIG_HWMON=y | 631 | CONFIG_HWMON=y |
611 | # CONFIG_HWMON_VID is not set | 632 | # CONFIG_HWMON_VID is not set |
633 | # CONFIG_SENSORS_ABITUGURU is not set | ||
612 | # CONFIG_SENSORS_F71805F is not set | 634 | # CONFIG_SENSORS_F71805F is not set |
613 | # CONFIG_HWMON_DEBUG_CHIP is not set | 635 | # CONFIG_HWMON_DEBUG_CHIP is not set |
614 | 636 | ||
@@ -620,6 +642,7 @@ CONFIG_HWMON=y | |||
620 | # Multimedia devices | 642 | # Multimedia devices |
621 | # | 643 | # |
622 | # CONFIG_VIDEO_DEV is not set | 644 | # CONFIG_VIDEO_DEV is not set |
645 | CONFIG_VIDEO_V4L2=y | ||
623 | 646 | ||
624 | # | 647 | # |
625 | # Digital Video Broadcasting Devices | 648 | # Digital Video Broadcasting Devices |
@@ -629,7 +652,9 @@ CONFIG_HWMON=y | |||
629 | # | 652 | # |
630 | # Graphics support | 653 | # Graphics support |
631 | # | 654 | # |
655 | CONFIG_FIRMWARE_EDID=y | ||
632 | # CONFIG_FB is not set | 656 | # CONFIG_FB is not set |
657 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
633 | 658 | ||
634 | # | 659 | # |
635 | # Sound | 660 | # Sound |
@@ -664,6 +689,14 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
664 | # CONFIG_NEW_LEDS is not set | 689 | # CONFIG_NEW_LEDS is not set |
665 | 690 | ||
666 | # | 691 | # |
692 | # LED drivers | ||
693 | # | ||
694 | |||
695 | # | ||
696 | # LED Triggers | ||
697 | # | ||
698 | |||
699 | # | ||
667 | # InfiniBand support | 700 | # InfiniBand support |
668 | # | 701 | # |
669 | # CONFIG_INFINIBAND is not set | 702 | # CONFIG_INFINIBAND is not set |
@@ -678,6 +711,19 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
678 | # CONFIG_RTC_CLASS is not set | 711 | # CONFIG_RTC_CLASS is not set |
679 | 712 | ||
680 | # | 713 | # |
714 | # DMA Engine support | ||
715 | # | ||
716 | # CONFIG_DMA_ENGINE is not set | ||
717 | |||
718 | # | ||
719 | # DMA Clients | ||
720 | # | ||
721 | |||
722 | # | ||
723 | # DMA Devices | ||
724 | # | ||
725 | |||
726 | # | ||
681 | # File systems | 727 | # File systems |
682 | # | 728 | # |
683 | CONFIG_EXT2_FS=y | 729 | CONFIG_EXT2_FS=y |
@@ -698,6 +744,7 @@ CONFIG_FS_MBCACHE=y | |||
698 | # CONFIG_MINIX_FS is not set | 744 | # CONFIG_MINIX_FS is not set |
699 | # CONFIG_ROMFS_FS is not set | 745 | # CONFIG_ROMFS_FS is not set |
700 | CONFIG_INOTIFY=y | 746 | CONFIG_INOTIFY=y |
747 | CONFIG_INOTIFY_USER=y | ||
701 | # CONFIG_QUOTA is not set | 748 | # CONFIG_QUOTA is not set |
702 | CONFIG_DNOTIFY=y | 749 | CONFIG_DNOTIFY=y |
703 | # CONFIG_AUTOFS_FS is not set | 750 | # CONFIG_AUTOFS_FS is not set |
@@ -795,6 +842,7 @@ CONFIG_PARTITION_ADVANCED=y | |||
795 | # CONFIG_CRC16 is not set | 842 | # CONFIG_CRC16 is not set |
796 | CONFIG_CRC32=y | 843 | CONFIG_CRC32=y |
797 | # CONFIG_LIBCRC32C is not set | 844 | # CONFIG_LIBCRC32C is not set |
845 | CONFIG_PLIST=y | ||
798 | 846 | ||
799 | # | 847 | # |
800 | # Instrumentation Support | 848 | # Instrumentation Support |
@@ -806,14 +854,19 @@ CONFIG_CRC32=y | |||
806 | # | 854 | # |
807 | # CONFIG_PRINTK_TIME is not set | 855 | # CONFIG_PRINTK_TIME is not set |
808 | # CONFIG_MAGIC_SYSRQ is not set | 856 | # CONFIG_MAGIC_SYSRQ is not set |
857 | # CONFIG_UNUSED_SYMBOLS is not set | ||
809 | CONFIG_DEBUG_KERNEL=y | 858 | CONFIG_DEBUG_KERNEL=y |
810 | CONFIG_LOG_BUF_SHIFT=14 | 859 | CONFIG_LOG_BUF_SHIFT=14 |
811 | CONFIG_DETECT_SOFTLOCKUP=y | 860 | CONFIG_DETECT_SOFTLOCKUP=y |
812 | # CONFIG_SCHEDSTATS is not set | 861 | # CONFIG_SCHEDSTATS is not set |
813 | # CONFIG_DEBUG_SLAB is not set | 862 | # CONFIG_DEBUG_SLAB is not set |
814 | CONFIG_DEBUG_MUTEXES=y | 863 | # CONFIG_DEBUG_RT_MUTEXES is not set |
864 | # CONFIG_RT_MUTEX_TESTER is not set | ||
815 | # CONFIG_DEBUG_SPINLOCK is not set | 865 | # CONFIG_DEBUG_SPINLOCK is not set |
866 | CONFIG_DEBUG_MUTEXES=y | ||
867 | # CONFIG_DEBUG_RWSEMS is not set | ||
816 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 868 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
869 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
817 | # CONFIG_DEBUG_KOBJECT is not set | 870 | # CONFIG_DEBUG_KOBJECT is not set |
818 | # CONFIG_DEBUG_INFO is not set | 871 | # CONFIG_DEBUG_INFO is not set |
819 | # CONFIG_DEBUG_FS is not set | 872 | # CONFIG_DEBUG_FS is not set |
@@ -824,11 +877,7 @@ CONFIG_FORCED_INLINING=y | |||
824 | # CONFIG_DEBUGGER is not set | 877 | # CONFIG_DEBUGGER is not set |
825 | # CONFIG_BDI_SWITCH is not set | 878 | # CONFIG_BDI_SWITCH is not set |
826 | # CONFIG_BOOTX_TEXT is not set | 879 | # CONFIG_BOOTX_TEXT is not set |
827 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 880 | # CONFIG_PPC_EARLY_DEBUG is not set |
828 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
829 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
830 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
831 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
832 | 881 | ||
833 | # | 882 | # |
834 | # Security options | 883 | # Security options |
diff --git a/arch/powerpc/configs/mpc8641_hpcn_defconfig b/arch/powerpc/configs/mpc8641_hpcn_defconfig index d7a30f9bc535..92a527fccf83 100644 --- a/arch/powerpc/configs/mpc8641_hpcn_defconfig +++ b/arch/powerpc/configs/mpc8641_hpcn_defconfig | |||
@@ -1,16 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17-rc3 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Fri Jun 16 10:47:09 2006 | 4 | # Sun Sep 10 10:30:15 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
12 | CONFIG_GENERIC_HWEIGHT=y | 13 | CONFIG_GENERIC_HWEIGHT=y |
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
14 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
15 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
16 | CONFIG_GENERIC_NVRAM=y | 18 | CONFIG_GENERIC_NVRAM=y |
@@ -41,6 +43,7 @@ CONFIG_PPC_STD_MMU=y | |||
41 | CONFIG_PPC_STD_MMU_32=y | 43 | CONFIG_PPC_STD_MMU_32=y |
42 | CONFIG_SMP=y | 44 | CONFIG_SMP=y |
43 | CONFIG_NR_CPUS=2 | 45 | CONFIG_NR_CPUS=2 |
46 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
44 | 47 | ||
45 | # | 48 | # |
46 | # Code maturity level options | 49 | # Code maturity level options |
@@ -58,6 +61,7 @@ CONFIG_LOCALVERSION="" | |||
58 | # CONFIG_SYSVIPC is not set | 61 | # CONFIG_SYSVIPC is not set |
59 | # CONFIG_POSIX_MQUEUE is not set | 62 | # CONFIG_POSIX_MQUEUE is not set |
60 | # CONFIG_BSD_PROCESS_ACCT is not set | 63 | # CONFIG_BSD_PROCESS_ACCT is not set |
64 | # CONFIG_TASKSTATS is not set | ||
61 | CONFIG_SYSCTL=y | 65 | CONFIG_SYSCTL=y |
62 | # CONFIG_AUDIT is not set | 66 | # CONFIG_AUDIT is not set |
63 | CONFIG_IKCONFIG=y | 67 | CONFIG_IKCONFIG=y |
@@ -75,10 +79,12 @@ CONFIG_PRINTK=y | |||
75 | CONFIG_BUG=y | 79 | CONFIG_BUG=y |
76 | # CONFIG_ELF_CORE is not set | 80 | # CONFIG_ELF_CORE is not set |
77 | CONFIG_BASE_FULL=y | 81 | CONFIG_BASE_FULL=y |
82 | CONFIG_RT_MUTEXES=y | ||
78 | CONFIG_FUTEX=y | 83 | CONFIG_FUTEX=y |
79 | CONFIG_EPOLL=y | 84 | CONFIG_EPOLL=y |
80 | CONFIG_SHMEM=y | 85 | CONFIG_SHMEM=y |
81 | # CONFIG_SLAB is not set | 86 | # CONFIG_SLAB is not set |
87 | CONFIG_VM_EVENT_COUNTERS=y | ||
82 | # CONFIG_TINY_SHMEM is not set | 88 | # CONFIG_TINY_SHMEM is not set |
83 | CONFIG_BASE_SMALL=0 | 89 | CONFIG_BASE_SMALL=0 |
84 | CONFIG_SLOB=y | 90 | CONFIG_SLOB=y |
@@ -107,9 +113,9 @@ CONFIG_DEFAULT_DEADLINE=y | |||
107 | # CONFIG_DEFAULT_CFQ is not set | 113 | # CONFIG_DEFAULT_CFQ is not set |
108 | # CONFIG_DEFAULT_NOOP is not set | 114 | # CONFIG_DEFAULT_NOOP is not set |
109 | CONFIG_DEFAULT_IOSCHED="deadline" | 115 | CONFIG_DEFAULT_IOSCHED="deadline" |
110 | CONFIG_MPIC=y | ||
111 | # CONFIG_WANT_EARLY_SERIAL is not set | 116 | # CONFIG_WANT_EARLY_SERIAL is not set |
112 | CONFIG_PPC_INDIRECT_PCI_BE=y | 117 | CONFIG_PPC_INDIRECT_PCI_BE=y |
118 | CONFIG_MPIC=y | ||
113 | 119 | ||
114 | # | 120 | # |
115 | # Platform Support | 121 | # Platform Support |
@@ -131,6 +137,7 @@ CONFIG_PREEMPT_NONE=y | |||
131 | CONFIG_PREEMPT_BKL=y | 137 | CONFIG_PREEMPT_BKL=y |
132 | CONFIG_BINFMT_ELF=y | 138 | CONFIG_BINFMT_ELF=y |
133 | # CONFIG_BINFMT_MISC is not set | 139 | # CONFIG_BINFMT_MISC is not set |
140 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
134 | # CONFIG_IRQ_ALL_CPUS is not set | 141 | # CONFIG_IRQ_ALL_CPUS is not set |
135 | CONFIG_ARCH_FLATMEM_ENABLE=y | 142 | CONFIG_ARCH_FLATMEM_ENABLE=y |
136 | CONFIG_SELECT_MEMORY_MODEL=y | 143 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -141,6 +148,7 @@ CONFIG_FLATMEM=y | |||
141 | CONFIG_FLAT_NODE_MEM_MAP=y | 148 | CONFIG_FLAT_NODE_MEM_MAP=y |
142 | # CONFIG_SPARSEMEM_STATIC is not set | 149 | # CONFIG_SPARSEMEM_STATIC is not set |
143 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 150 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
151 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | CONFIG_PROC_DEVICETREE=y | 152 | CONFIG_PROC_DEVICETREE=y |
145 | # CONFIG_CMDLINE_BOOL is not set | 153 | # CONFIG_CMDLINE_BOOL is not set |
146 | # CONFIG_PM is not set | 154 | # CONFIG_PM is not set |
@@ -151,11 +159,13 @@ CONFIG_ISA_DMA_API=y | |||
151 | # Bus options | 159 | # Bus options |
152 | # | 160 | # |
153 | CONFIG_GENERIC_ISA_DMA=y | 161 | CONFIG_GENERIC_ISA_DMA=y |
162 | # CONFIG_MPIC_WEIRD is not set | ||
154 | CONFIG_PPC_I8259=y | 163 | CONFIG_PPC_I8259=y |
155 | CONFIG_PPC_INDIRECT_PCI=y | 164 | CONFIG_PPC_INDIRECT_PCI=y |
156 | CONFIG_FSL_SOC=y | 165 | CONFIG_FSL_SOC=y |
157 | CONFIG_PCI=y | 166 | CONFIG_PCI=y |
158 | CONFIG_PCI_DOMAINS=y | 167 | CONFIG_PCI_DOMAINS=y |
168 | # CONFIG_PCIEPORTBUS is not set | ||
159 | # CONFIG_PCI_DEBUG is not set | 169 | # CONFIG_PCI_DEBUG is not set |
160 | 170 | ||
161 | # | 171 | # |
@@ -194,6 +204,8 @@ CONFIG_NET=y | |||
194 | CONFIG_PACKET=y | 204 | CONFIG_PACKET=y |
195 | # CONFIG_PACKET_MMAP is not set | 205 | # CONFIG_PACKET_MMAP is not set |
196 | CONFIG_UNIX=y | 206 | CONFIG_UNIX=y |
207 | CONFIG_XFRM=y | ||
208 | CONFIG_XFRM_USER=y | ||
197 | # CONFIG_NET_KEY is not set | 209 | # CONFIG_NET_KEY is not set |
198 | CONFIG_INET=y | 210 | CONFIG_INET=y |
199 | # CONFIG_IP_MULTICAST is not set | 211 | # CONFIG_IP_MULTICAST is not set |
@@ -212,6 +224,8 @@ CONFIG_IP_PNP_RARP=y | |||
212 | # CONFIG_INET_IPCOMP is not set | 224 | # CONFIG_INET_IPCOMP is not set |
213 | # CONFIG_INET_XFRM_TUNNEL is not set | 225 | # CONFIG_INET_XFRM_TUNNEL is not set |
214 | # CONFIG_INET_TUNNEL is not set | 226 | # CONFIG_INET_TUNNEL is not set |
227 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
228 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
215 | CONFIG_INET_DIAG=y | 229 | CONFIG_INET_DIAG=y |
216 | CONFIG_INET_TCP_DIAG=y | 230 | CONFIG_INET_TCP_DIAG=y |
217 | # CONFIG_TCP_CONG_ADVANCED is not set | 231 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -224,7 +238,10 @@ CONFIG_IPV6=y | |||
224 | # CONFIG_INET6_IPCOMP is not set | 238 | # CONFIG_INET6_IPCOMP is not set |
225 | # CONFIG_INET6_XFRM_TUNNEL is not set | 239 | # CONFIG_INET6_XFRM_TUNNEL is not set |
226 | # CONFIG_INET6_TUNNEL is not set | 240 | # CONFIG_INET6_TUNNEL is not set |
241 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
242 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
227 | # CONFIG_IPV6_TUNNEL is not set | 243 | # CONFIG_IPV6_TUNNEL is not set |
244 | # CONFIG_NETWORK_SECMARK is not set | ||
228 | # CONFIG_NETFILTER is not set | 245 | # CONFIG_NETFILTER is not set |
229 | 246 | ||
230 | # | 247 | # |
@@ -279,6 +296,7 @@ CONFIG_STANDALONE=y | |||
279 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 296 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
280 | CONFIG_FW_LOADER=y | 297 | CONFIG_FW_LOADER=y |
281 | # CONFIG_DEBUG_DRIVER is not set | 298 | # CONFIG_DEBUG_DRIVER is not set |
299 | # CONFIG_SYS_HYPERVISOR is not set | ||
282 | 300 | ||
283 | # | 301 | # |
284 | # Connector - unified userspace <-> kernelspace linker | 302 | # Connector - unified userspace <-> kernelspace linker |
@@ -315,6 +333,7 @@ CONFIG_BLK_DEV_LOOP=y | |||
315 | CONFIG_BLK_DEV_RAM=y | 333 | CONFIG_BLK_DEV_RAM=y |
316 | CONFIG_BLK_DEV_RAM_COUNT=16 | 334 | CONFIG_BLK_DEV_RAM_COUNT=16 |
317 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 335 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
336 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
318 | CONFIG_BLK_DEV_INITRD=y | 337 | CONFIG_BLK_DEV_INITRD=y |
319 | # CONFIG_CDROM_PKTCDVD is not set | 338 | # CONFIG_CDROM_PKTCDVD is not set |
320 | # CONFIG_ATA_OVER_ETH is not set | 339 | # CONFIG_ATA_OVER_ETH is not set |
@@ -383,6 +402,8 @@ CONFIG_PHYLIB=y | |||
383 | # CONFIG_LXT_PHY is not set | 402 | # CONFIG_LXT_PHY is not set |
384 | # CONFIG_CICADA_PHY is not set | 403 | # CONFIG_CICADA_PHY is not set |
385 | CONFIG_VITESSE_PHY=y | 404 | CONFIG_VITESSE_PHY=y |
405 | # CONFIG_SMSC_PHY is not set | ||
406 | # CONFIG_FIXED_PHY is not set | ||
386 | 407 | ||
387 | # | 408 | # |
388 | # Ethernet (10 or 100Mbit) | 409 | # Ethernet (10 or 100Mbit) |
@@ -426,6 +447,7 @@ CONFIG_GIANFAR=y | |||
426 | # CONFIG_CHELSIO_T1 is not set | 447 | # CONFIG_CHELSIO_T1 is not set |
427 | # CONFIG_IXGB is not set | 448 | # CONFIG_IXGB is not set |
428 | # CONFIG_S2IO is not set | 449 | # CONFIG_S2IO is not set |
450 | # CONFIG_MYRI10GE is not set | ||
429 | 451 | ||
430 | # | 452 | # |
431 | # Token Ring devices | 453 | # Token Ring devices |
@@ -500,6 +522,7 @@ CONFIG_SERIO_LIBPS2=y | |||
500 | CONFIG_VT=y | 522 | CONFIG_VT=y |
501 | CONFIG_VT_CONSOLE=y | 523 | CONFIG_VT_CONSOLE=y |
502 | CONFIG_HW_CONSOLE=y | 524 | CONFIG_HW_CONSOLE=y |
525 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
503 | # CONFIG_SERIAL_NONSTANDARD is not set | 526 | # CONFIG_SERIAL_NONSTANDARD is not set |
504 | 527 | ||
505 | # | 528 | # |
@@ -534,6 +557,7 @@ CONFIG_UNIX98_PTYS=y | |||
534 | # Watchdog Cards | 557 | # Watchdog Cards |
535 | # | 558 | # |
536 | # CONFIG_WATCHDOG is not set | 559 | # CONFIG_WATCHDOG is not set |
560 | # CONFIG_HW_RANDOM is not set | ||
537 | # CONFIG_NVRAM is not set | 561 | # CONFIG_NVRAM is not set |
538 | # CONFIG_GEN_RTC is not set | 562 | # CONFIG_GEN_RTC is not set |
539 | # CONFIG_DTLK is not set | 563 | # CONFIG_DTLK is not set |
@@ -579,6 +603,7 @@ CONFIG_I2C=y | |||
579 | # CONFIG_I2C_PIIX4 is not set | 603 | # CONFIG_I2C_PIIX4 is not set |
580 | CONFIG_I2C_MPC=y | 604 | CONFIG_I2C_MPC=y |
581 | # CONFIG_I2C_NFORCE2 is not set | 605 | # CONFIG_I2C_NFORCE2 is not set |
606 | # CONFIG_I2C_OCORES is not set | ||
582 | # CONFIG_I2C_PARPORT_LIGHT is not set | 607 | # CONFIG_I2C_PARPORT_LIGHT is not set |
583 | # CONFIG_I2C_PROSAVAGE is not set | 608 | # CONFIG_I2C_PROSAVAGE is not set |
584 | # CONFIG_I2C_SAVAGE4 is not set | 609 | # CONFIG_I2C_SAVAGE4 is not set |
@@ -615,7 +640,6 @@ CONFIG_SENSORS_EEPROM=y | |||
615 | # | 640 | # |
616 | # Dallas's 1-wire bus | 641 | # Dallas's 1-wire bus |
617 | # | 642 | # |
618 | # CONFIG_W1 is not set | ||
619 | 643 | ||
620 | # | 644 | # |
621 | # Hardware Monitoring support | 645 | # Hardware Monitoring support |
@@ -631,6 +655,7 @@ CONFIG_SENSORS_EEPROM=y | |||
631 | # Multimedia devices | 655 | # Multimedia devices |
632 | # | 656 | # |
633 | # CONFIG_VIDEO_DEV is not set | 657 | # CONFIG_VIDEO_DEV is not set |
658 | CONFIG_VIDEO_V4L2=y | ||
634 | 659 | ||
635 | # | 660 | # |
636 | # Digital Video Broadcasting Devices | 661 | # Digital Video Broadcasting Devices |
@@ -640,6 +665,7 @@ CONFIG_SENSORS_EEPROM=y | |||
640 | # | 665 | # |
641 | # Graphics support | 666 | # Graphics support |
642 | # | 667 | # |
668 | CONFIG_FIRMWARE_EDID=y | ||
643 | # CONFIG_FB is not set | 669 | # CONFIG_FB is not set |
644 | 670 | ||
645 | # | 671 | # |
@@ -648,6 +674,7 @@ CONFIG_SENSORS_EEPROM=y | |||
648 | CONFIG_VGA_CONSOLE=y | 674 | CONFIG_VGA_CONSOLE=y |
649 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | 675 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set |
650 | CONFIG_DUMMY_CONSOLE=y | 676 | CONFIG_DUMMY_CONSOLE=y |
677 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
651 | 678 | ||
652 | # | 679 | # |
653 | # Sound | 680 | # Sound |
@@ -704,6 +731,19 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
704 | # CONFIG_RTC_CLASS is not set | 731 | # CONFIG_RTC_CLASS is not set |
705 | 732 | ||
706 | # | 733 | # |
734 | # DMA Engine support | ||
735 | # | ||
736 | # CONFIG_DMA_ENGINE is not set | ||
737 | |||
738 | # | ||
739 | # DMA Clients | ||
740 | # | ||
741 | |||
742 | # | ||
743 | # DMA Devices | ||
744 | # | ||
745 | |||
746 | # | ||
707 | # File systems | 747 | # File systems |
708 | # | 748 | # |
709 | CONFIG_EXT2_FS=y | 749 | CONFIG_EXT2_FS=y |
@@ -870,6 +910,7 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
870 | # CONFIG_CRC16 is not set | 910 | # CONFIG_CRC16 is not set |
871 | CONFIG_CRC32=y | 911 | CONFIG_CRC32=y |
872 | # CONFIG_LIBCRC32C is not set | 912 | # CONFIG_LIBCRC32C is not set |
913 | CONFIG_PLIST=y | ||
873 | 914 | ||
874 | # | 915 | # |
875 | # Instrumentation Support | 916 | # Instrumentation Support |
@@ -881,13 +922,18 @@ CONFIG_CRC32=y | |||
881 | # | 922 | # |
882 | # CONFIG_PRINTK_TIME is not set | 923 | # CONFIG_PRINTK_TIME is not set |
883 | # CONFIG_MAGIC_SYSRQ is not set | 924 | # CONFIG_MAGIC_SYSRQ is not set |
925 | # CONFIG_UNUSED_SYMBOLS is not set | ||
884 | CONFIG_DEBUG_KERNEL=y | 926 | CONFIG_DEBUG_KERNEL=y |
885 | CONFIG_LOG_BUF_SHIFT=14 | 927 | CONFIG_LOG_BUF_SHIFT=14 |
886 | CONFIG_DETECT_SOFTLOCKUP=y | 928 | CONFIG_DETECT_SOFTLOCKUP=y |
887 | # CONFIG_SCHEDSTATS is not set | 929 | # CONFIG_SCHEDSTATS is not set |
888 | # CONFIG_DEBUG_MUTEXES is not set | 930 | # CONFIG_DEBUG_RT_MUTEXES is not set |
931 | # CONFIG_RT_MUTEX_TESTER is not set | ||
889 | # CONFIG_DEBUG_SPINLOCK is not set | 932 | # CONFIG_DEBUG_SPINLOCK is not set |
933 | # CONFIG_DEBUG_MUTEXES is not set | ||
934 | # CONFIG_DEBUG_RWSEMS is not set | ||
890 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 935 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
936 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
891 | # CONFIG_DEBUG_KOBJECT is not set | 937 | # CONFIG_DEBUG_KOBJECT is not set |
892 | # CONFIG_DEBUG_HIGHMEM is not set | 938 | # CONFIG_DEBUG_HIGHMEM is not set |
893 | # CONFIG_DEBUG_INFO is not set | 939 | # CONFIG_DEBUG_INFO is not set |
@@ -899,11 +945,7 @@ CONFIG_FORCED_INLINING=y | |||
899 | # CONFIG_DEBUGGER is not set | 945 | # CONFIG_DEBUGGER is not set |
900 | # CONFIG_BDI_SWITCH is not set | 946 | # CONFIG_BDI_SWITCH is not set |
901 | # CONFIG_BOOTX_TEXT is not set | 947 | # CONFIG_BOOTX_TEXT is not set |
902 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 948 | # CONFIG_PPC_EARLY_DEBUG is not set |
903 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
904 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
905 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
906 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
907 | 949 | ||
908 | # | 950 | # |
909 | # Security options | 951 | # Security options |
diff --git a/arch/powerpc/configs/pmac32_defconfig b/arch/powerpc/configs/pmac32_defconfig index 3545af9896af..6861dde7d77b 100644 --- a/arch/powerpc/configs/pmac32_defconfig +++ b/arch/powerpc/configs/pmac32_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.17 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Mon Jul 3 14:20:49 2006 | 4 | # Sun Sep 10 10:30:23 2006 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | CONFIG_PPC32=y | 7 | CONFIG_PPC32=y |
@@ -60,6 +60,7 @@ CONFIG_SWAP=y | |||
60 | CONFIG_SYSVIPC=y | 60 | CONFIG_SYSVIPC=y |
61 | CONFIG_POSIX_MQUEUE=y | 61 | CONFIG_POSIX_MQUEUE=y |
62 | # CONFIG_BSD_PROCESS_ACCT is not set | 62 | # CONFIG_BSD_PROCESS_ACCT is not set |
63 | # CONFIG_TASKSTATS is not set | ||
63 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
64 | # CONFIG_AUDIT is not set | 65 | # CONFIG_AUDIT is not set |
65 | CONFIG_IKCONFIG=y | 66 | CONFIG_IKCONFIG=y |
@@ -128,7 +129,6 @@ CONFIG_PPC_PMAC=y | |||
128 | # CONFIG_PPC_CELL is not set | 129 | # CONFIG_PPC_CELL is not set |
129 | # CONFIG_PPC_CELL_NATIVE is not set | 130 | # CONFIG_PPC_CELL_NATIVE is not set |
130 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 131 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
131 | CONFIG_MPIC=y | ||
132 | # CONFIG_PPC_RTAS is not set | 132 | # CONFIG_PPC_RTAS is not set |
133 | # CONFIG_MMIO_NVRAM is not set | 133 | # CONFIG_MMIO_NVRAM is not set |
134 | CONFIG_PPC_MPC106=y | 134 | CONFIG_PPC_MPC106=y |
@@ -149,6 +149,7 @@ CONFIG_CPU_FREQ_PMAC=y | |||
149 | CONFIG_PPC601_SYNC_FIX=y | 149 | CONFIG_PPC601_SYNC_FIX=y |
150 | # CONFIG_TAU is not set | 150 | # CONFIG_TAU is not set |
151 | # CONFIG_WANT_EARLY_SERIAL is not set | 151 | # CONFIG_WANT_EARLY_SERIAL is not set |
152 | CONFIG_MPIC=y | ||
152 | 153 | ||
153 | # | 154 | # |
154 | # Kernel options | 155 | # Kernel options |
@@ -189,6 +190,7 @@ CONFIG_ISA_DMA_API=y | |||
189 | # Bus options | 190 | # Bus options |
190 | # | 191 | # |
191 | CONFIG_GENERIC_ISA_DMA=y | 192 | CONFIG_GENERIC_ISA_DMA=y |
193 | # CONFIG_MPIC_WEIRD is not set | ||
192 | # CONFIG_PPC_I8259 is not set | 194 | # CONFIG_PPC_I8259 is not set |
193 | CONFIG_PPC_INDIRECT_PCI=y | 195 | CONFIG_PPC_INDIRECT_PCI=y |
194 | CONFIG_PCI=y | 196 | CONFIG_PCI=y |
@@ -559,6 +561,7 @@ CONFIG_BLK_DEV_UB=m | |||
559 | CONFIG_BLK_DEV_RAM=y | 561 | CONFIG_BLK_DEV_RAM=y |
560 | CONFIG_BLK_DEV_RAM_COUNT=16 | 562 | CONFIG_BLK_DEV_RAM_COUNT=16 |
561 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 563 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
564 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
562 | CONFIG_BLK_DEV_INITRD=y | 565 | CONFIG_BLK_DEV_INITRD=y |
563 | # CONFIG_CDROM_PKTCDVD is not set | 566 | # CONFIG_CDROM_PKTCDVD is not set |
564 | # CONFIG_ATA_OVER_ETH is not set | 567 | # CONFIG_ATA_OVER_ETH is not set |
@@ -1502,7 +1505,6 @@ CONFIG_USB_MON=y | |||
1502 | CONFIG_USB_SERIAL=m | 1505 | CONFIG_USB_SERIAL=m |
1503 | # CONFIG_USB_SERIAL_GENERIC is not set | 1506 | # CONFIG_USB_SERIAL_GENERIC is not set |
1504 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 1507 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
1505 | # CONFIG_USB_SERIAL_ANYDATA is not set | ||
1506 | # CONFIG_USB_SERIAL_ARK3116 is not set | 1508 | # CONFIG_USB_SERIAL_ARK3116 is not set |
1507 | # CONFIG_USB_SERIAL_BELKIN is not set | 1509 | # CONFIG_USB_SERIAL_BELKIN is not set |
1508 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1510 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
@@ -1540,6 +1542,7 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
1540 | # CONFIG_USB_SERIAL_PL2303 is not set | 1542 | # CONFIG_USB_SERIAL_PL2303 is not set |
1541 | # CONFIG_USB_SERIAL_HP4X is not set | 1543 | # CONFIG_USB_SERIAL_HP4X is not set |
1542 | # CONFIG_USB_SERIAL_SAFE is not set | 1544 | # CONFIG_USB_SERIAL_SAFE is not set |
1545 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | ||
1543 | # CONFIG_USB_SERIAL_TI is not set | 1546 | # CONFIG_USB_SERIAL_TI is not set |
1544 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1547 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1545 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1548 | # CONFIG_USB_SERIAL_XIRCOM is not set |
@@ -1557,7 +1560,7 @@ CONFIG_USB_EZUSB=y | |||
1557 | # CONFIG_USB_LEGOTOWER is not set | 1560 | # CONFIG_USB_LEGOTOWER is not set |
1558 | # CONFIG_USB_LCD is not set | 1561 | # CONFIG_USB_LCD is not set |
1559 | # CONFIG_USB_LED is not set | 1562 | # CONFIG_USB_LED is not set |
1560 | # CONFIG_USB_CY7C63 is not set | 1563 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1561 | # CONFIG_USB_CYTHERM is not set | 1564 | # CONFIG_USB_CYTHERM is not set |
1562 | # CONFIG_USB_PHIDGETKIT is not set | 1565 | # CONFIG_USB_PHIDGETKIT is not set |
1563 | # CONFIG_USB_PHIDGETSERVO is not set | 1566 | # CONFIG_USB_PHIDGETSERVO is not set |
@@ -1728,7 +1731,6 @@ CONFIG_RPCSEC_GSS_KRB5=y | |||
1728 | CONFIG_SMB_FS=m | 1731 | CONFIG_SMB_FS=m |
1729 | # CONFIG_SMB_NLS_DEFAULT is not set | 1732 | # CONFIG_SMB_NLS_DEFAULT is not set |
1730 | # CONFIG_CIFS is not set | 1733 | # CONFIG_CIFS is not set |
1731 | # CONFIG_CIFS_DEBUG2 is not set | ||
1732 | # CONFIG_NCP_FS is not set | 1734 | # CONFIG_NCP_FS is not set |
1733 | # CONFIG_CODA_FS is not set | 1735 | # CONFIG_CODA_FS is not set |
1734 | # CONFIG_AFS_FS is not set | 1736 | # CONFIG_AFS_FS is not set |
@@ -1831,11 +1833,13 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
1831 | CONFIG_DETECT_SOFTLOCKUP=y | 1833 | CONFIG_DETECT_SOFTLOCKUP=y |
1832 | # CONFIG_SCHEDSTATS is not set | 1834 | # CONFIG_SCHEDSTATS is not set |
1833 | # CONFIG_DEBUG_SLAB is not set | 1835 | # CONFIG_DEBUG_SLAB is not set |
1834 | # CONFIG_DEBUG_MUTEXES is not set | ||
1835 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1836 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1836 | # CONFIG_RT_MUTEX_TESTER is not set | 1837 | # CONFIG_RT_MUTEX_TESTER is not set |
1837 | # CONFIG_DEBUG_SPINLOCK is not set | 1838 | # CONFIG_DEBUG_SPINLOCK is not set |
1839 | # CONFIG_DEBUG_MUTEXES is not set | ||
1840 | # CONFIG_DEBUG_RWSEMS is not set | ||
1838 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1841 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1842 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1839 | # CONFIG_DEBUG_KOBJECT is not set | 1843 | # CONFIG_DEBUG_KOBJECT is not set |
1840 | # CONFIG_DEBUG_INFO is not set | 1844 | # CONFIG_DEBUG_INFO is not set |
1841 | # CONFIG_DEBUG_FS is not set | 1845 | # CONFIG_DEBUG_FS is not set |
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig index 395e49847788..7517d0c5303f 100644 --- a/arch/powerpc/configs/ppc64_defconfig +++ b/arch/powerpc/configs/ppc64_defconfig | |||
@@ -1,15 +1,18 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.16-rc2 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Fri Feb 10 17:32:14 2006 | 4 | # Sun Sep 10 10:45:11 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
8 | CONFIG_PPC_MERGE=y | 8 | CONFIG_PPC_MERGE=y |
9 | CONFIG_MMU=y | 9 | CONFIG_MMU=y |
10 | CONFIG_GENERIC_HARDIRQS=y | 10 | CONFIG_GENERIC_HARDIRQS=y |
11 | CONFIG_IRQ_PER_CPU=y | ||
11 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 12 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
13 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 14 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
15 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
13 | CONFIG_PPC=y | 16 | CONFIG_PPC=y |
14 | CONFIG_EARLY_PRINTK=y | 17 | CONFIG_EARLY_PRINTK=y |
15 | CONFIG_COMPAT=y | 18 | CONFIG_COMPAT=y |
@@ -30,8 +33,10 @@ CONFIG_POWER4=y | |||
30 | CONFIG_PPC_FPU=y | 33 | CONFIG_PPC_FPU=y |
31 | CONFIG_ALTIVEC=y | 34 | CONFIG_ALTIVEC=y |
32 | CONFIG_PPC_STD_MMU=y | 35 | CONFIG_PPC_STD_MMU=y |
36 | CONFIG_VIRT_CPU_ACCOUNTING=y | ||
33 | CONFIG_SMP=y | 37 | CONFIG_SMP=y |
34 | CONFIG_NR_CPUS=32 | 38 | CONFIG_NR_CPUS=32 |
39 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
35 | 40 | ||
36 | # | 41 | # |
37 | # Code maturity level options | 42 | # Code maturity level options |
@@ -49,11 +54,14 @@ CONFIG_SWAP=y | |||
49 | CONFIG_SYSVIPC=y | 54 | CONFIG_SYSVIPC=y |
50 | CONFIG_POSIX_MQUEUE=y | 55 | CONFIG_POSIX_MQUEUE=y |
51 | # CONFIG_BSD_PROCESS_ACCT is not set | 56 | # CONFIG_BSD_PROCESS_ACCT is not set |
57 | CONFIG_TASKSTATS=y | ||
58 | CONFIG_TASK_DELAY_ACCT=y | ||
52 | CONFIG_SYSCTL=y | 59 | CONFIG_SYSCTL=y |
53 | # CONFIG_AUDIT is not set | 60 | # CONFIG_AUDIT is not set |
54 | CONFIG_IKCONFIG=y | 61 | CONFIG_IKCONFIG=y |
55 | CONFIG_IKCONFIG_PROC=y | 62 | CONFIG_IKCONFIG_PROC=y |
56 | CONFIG_CPUSETS=y | 63 | CONFIG_CPUSETS=y |
64 | CONFIG_RELAY=y | ||
57 | CONFIG_INITRAMFS_SOURCE="" | 65 | CONFIG_INITRAMFS_SOURCE="" |
58 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 66 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
59 | # CONFIG_EMBEDDED is not set | 67 | # CONFIG_EMBEDDED is not set |
@@ -65,14 +73,12 @@ CONFIG_PRINTK=y | |||
65 | CONFIG_BUG=y | 73 | CONFIG_BUG=y |
66 | CONFIG_ELF_CORE=y | 74 | CONFIG_ELF_CORE=y |
67 | CONFIG_BASE_FULL=y | 75 | CONFIG_BASE_FULL=y |
76 | CONFIG_RT_MUTEXES=y | ||
68 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
69 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
70 | CONFIG_SHMEM=y | 79 | CONFIG_SHMEM=y |
71 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
72 | CONFIG_CC_ALIGN_LABELS=0 | ||
73 | CONFIG_CC_ALIGN_LOOPS=0 | ||
74 | CONFIG_CC_ALIGN_JUMPS=0 | ||
75 | CONFIG_SLAB=y | 80 | CONFIG_SLAB=y |
81 | CONFIG_VM_EVENT_COUNTERS=y | ||
76 | # CONFIG_TINY_SHMEM is not set | 82 | # CONFIG_TINY_SHMEM is not set |
77 | CONFIG_BASE_SMALL=0 | 83 | CONFIG_BASE_SMALL=0 |
78 | # CONFIG_SLOB is not set | 84 | # CONFIG_SLOB is not set |
@@ -83,7 +89,6 @@ CONFIG_BASE_SMALL=0 | |||
83 | CONFIG_MODULES=y | 89 | CONFIG_MODULES=y |
84 | CONFIG_MODULE_UNLOAD=y | 90 | CONFIG_MODULE_UNLOAD=y |
85 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 91 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
86 | CONFIG_OBSOLETE_MODPARM=y | ||
87 | CONFIG_MODVERSIONS=y | 92 | CONFIG_MODVERSIONS=y |
88 | CONFIG_MODULE_SRCVERSION_ALL=y | 93 | CONFIG_MODULE_SRCVERSION_ALL=y |
89 | CONFIG_KMOD=y | 94 | CONFIG_KMOD=y |
@@ -92,6 +97,7 @@ CONFIG_STOP_MACHINE=y | |||
92 | # | 97 | # |
93 | # Block layer | 98 | # Block layer |
94 | # | 99 | # |
100 | CONFIG_BLK_DEV_IO_TRACE=y | ||
95 | 101 | ||
96 | # | 102 | # |
97 | # IO Schedulers | 103 | # IO Schedulers |
@@ -117,19 +123,22 @@ CONFIG_PPC_PSERIES=y | |||
117 | CONFIG_PPC_PMAC=y | 123 | CONFIG_PPC_PMAC=y |
118 | CONFIG_PPC_PMAC64=y | 124 | CONFIG_PPC_PMAC64=y |
119 | CONFIG_PPC_MAPLE=y | 125 | CONFIG_PPC_MAPLE=y |
120 | # CONFIG_PPC_CELL is not set | 126 | CONFIG_PPC_CELL=y |
127 | CONFIG_PPC_CELL_NATIVE=y | ||
128 | CONFIG_PPC_IBM_CELL_BLADE=y | ||
129 | CONFIG_UDBG_RTAS_CONSOLE=y | ||
121 | CONFIG_XICS=y | 130 | CONFIG_XICS=y |
122 | CONFIG_U3_DART=y | 131 | CONFIG_U3_DART=y |
123 | CONFIG_MPIC=y | ||
124 | CONFIG_PPC_RTAS=y | 132 | CONFIG_PPC_RTAS=y |
125 | CONFIG_RTAS_ERROR_LOGGING=y | 133 | CONFIG_RTAS_ERROR_LOGGING=y |
126 | CONFIG_RTAS_PROC=y | 134 | CONFIG_RTAS_PROC=y |
127 | CONFIG_RTAS_FLASH=m | 135 | CONFIG_RTAS_FLASH=m |
128 | # CONFIG_MMIO_NVRAM is not set | 136 | CONFIG_MMIO_NVRAM=y |
129 | CONFIG_MPIC_BROKEN_U3=y | 137 | CONFIG_MPIC_BROKEN_U3=y |
130 | CONFIG_IBMVIO=y | 138 | CONFIG_IBMVIO=y |
131 | # CONFIG_IBMEBUS is not set | 139 | # CONFIG_IBMEBUS is not set |
132 | # CONFIG_PPC_MPC106 is not set | 140 | # CONFIG_PPC_MPC106 is not set |
141 | CONFIG_PPC_970_NAP=y | ||
133 | CONFIG_CPU_FREQ=y | 142 | CONFIG_CPU_FREQ=y |
134 | CONFIG_CPU_FREQ_TABLE=y | 143 | CONFIG_CPU_FREQ_TABLE=y |
135 | # CONFIG_CPU_FREQ_DEBUG is not set | 144 | # CONFIG_CPU_FREQ_DEBUG is not set |
@@ -144,6 +153,15 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y | |||
144 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set | 153 | # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set |
145 | CONFIG_CPU_FREQ_PMAC64=y | 154 | CONFIG_CPU_FREQ_PMAC64=y |
146 | # CONFIG_WANT_EARLY_SERIAL is not set | 155 | # CONFIG_WANT_EARLY_SERIAL is not set |
156 | CONFIG_MPIC=y | ||
157 | |||
158 | # | ||
159 | # Cell Broadband Engine options | ||
160 | # | ||
161 | CONFIG_SPU_FS=m | ||
162 | CONFIG_SPU_BASE=y | ||
163 | CONFIG_SPUFS_MMAP=y | ||
164 | CONFIG_CBE_RAS=y | ||
147 | 165 | ||
148 | # | 166 | # |
149 | # Kernel options | 167 | # Kernel options |
@@ -161,6 +179,7 @@ CONFIG_BINFMT_MISC=m | |||
161 | CONFIG_FORCE_MAX_ZONEORDER=13 | 179 | CONFIG_FORCE_MAX_ZONEORDER=13 |
162 | CONFIG_IOMMU_VMERGE=y | 180 | CONFIG_IOMMU_VMERGE=y |
163 | CONFIG_HOTPLUG_CPU=y | 181 | CONFIG_HOTPLUG_CPU=y |
182 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
164 | CONFIG_KEXEC=y | 183 | CONFIG_KEXEC=y |
165 | # CONFIG_CRASH_DUMP is not set | 184 | # CONFIG_CRASH_DUMP is not set |
166 | CONFIG_IRQ_ALL_CPUS=y | 185 | CONFIG_IRQ_ALL_CPUS=y |
@@ -181,9 +200,10 @@ CONFIG_SPARSEMEM=y | |||
181 | CONFIG_HAVE_MEMORY_PRESENT=y | 200 | CONFIG_HAVE_MEMORY_PRESENT=y |
182 | # CONFIG_SPARSEMEM_STATIC is not set | 201 | # CONFIG_SPARSEMEM_STATIC is not set |
183 | CONFIG_SPARSEMEM_EXTREME=y | 202 | CONFIG_SPARSEMEM_EXTREME=y |
184 | # CONFIG_MEMORY_HOTPLUG is not set | 203 | CONFIG_MEMORY_HOTPLUG=y |
185 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 204 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
186 | CONFIG_MIGRATION=y | 205 | CONFIG_RESOURCES_64BIT=y |
206 | CONFIG_ARCH_MEMORY_PROBE=y | ||
187 | # CONFIG_PPC_64K_PAGES is not set | 207 | # CONFIG_PPC_64K_PAGES is not set |
188 | # CONFIG_SCHED_SMT is not set | 208 | # CONFIG_SCHED_SMT is not set |
189 | CONFIG_PROC_DEVICETREE=y | 209 | CONFIG_PROC_DEVICETREE=y |
@@ -196,11 +216,12 @@ CONFIG_ISA_DMA_API=y | |||
196 | # Bus options | 216 | # Bus options |
197 | # | 217 | # |
198 | CONFIG_GENERIC_ISA_DMA=y | 218 | CONFIG_GENERIC_ISA_DMA=y |
219 | # CONFIG_MPIC_WEIRD is not set | ||
199 | CONFIG_PPC_I8259=y | 220 | CONFIG_PPC_I8259=y |
200 | # CONFIG_PPC_INDIRECT_PCI is not set | 221 | # CONFIG_PPC_INDIRECT_PCI is not set |
201 | CONFIG_PCI=y | 222 | CONFIG_PCI=y |
202 | CONFIG_PCI_DOMAINS=y | 223 | CONFIG_PCI_DOMAINS=y |
203 | # CONFIG_PCI_LEGACY_PROC is not set | 224 | # CONFIG_PCIEPORTBUS is not set |
204 | # CONFIG_PCI_DEBUG is not set | 225 | # CONFIG_PCI_DEBUG is not set |
205 | 226 | ||
206 | # | 227 | # |
@@ -247,7 +268,10 @@ CONFIG_SYN_COOKIES=y | |||
247 | CONFIG_INET_AH=m | 268 | CONFIG_INET_AH=m |
248 | CONFIG_INET_ESP=m | 269 | CONFIG_INET_ESP=m |
249 | CONFIG_INET_IPCOMP=m | 270 | CONFIG_INET_IPCOMP=m |
271 | CONFIG_INET_XFRM_TUNNEL=m | ||
250 | CONFIG_INET_TUNNEL=y | 272 | CONFIG_INET_TUNNEL=y |
273 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
274 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
251 | CONFIG_INET_DIAG=y | 275 | CONFIG_INET_DIAG=y |
252 | CONFIG_INET_TCP_DIAG=y | 276 | CONFIG_INET_TCP_DIAG=y |
253 | # CONFIG_TCP_CONG_ADVANCED is not set | 277 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -258,6 +282,9 @@ CONFIG_TCP_CONG_BIC=y | |||
258 | # | 282 | # |
259 | # CONFIG_IP_VS is not set | 283 | # CONFIG_IP_VS is not set |
260 | # CONFIG_IPV6 is not set | 284 | # CONFIG_IPV6 is not set |
285 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
286 | # CONFIG_INET6_TUNNEL is not set | ||
287 | # CONFIG_NETWORK_SECMARK is not set | ||
261 | CONFIG_NETFILTER=y | 288 | CONFIG_NETFILTER=y |
262 | # CONFIG_NETFILTER_DEBUG is not set | 289 | # CONFIG_NETFILTER_DEBUG is not set |
263 | 290 | ||
@@ -284,6 +311,8 @@ CONFIG_IP_NF_IRC=m | |||
284 | CONFIG_IP_NF_TFTP=m | 311 | CONFIG_IP_NF_TFTP=m |
285 | CONFIG_IP_NF_AMANDA=m | 312 | CONFIG_IP_NF_AMANDA=m |
286 | # CONFIG_IP_NF_PPTP is not set | 313 | # CONFIG_IP_NF_PPTP is not set |
314 | # CONFIG_IP_NF_H323 is not set | ||
315 | CONFIG_IP_NF_SIP=m | ||
287 | CONFIG_IP_NF_QUEUE=m | 316 | CONFIG_IP_NF_QUEUE=m |
288 | 317 | ||
289 | # | 318 | # |
@@ -339,6 +368,7 @@ CONFIG_STANDALONE=y | |||
339 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 368 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
340 | CONFIG_FW_LOADER=y | 369 | CONFIG_FW_LOADER=y |
341 | # CONFIG_DEBUG_DRIVER is not set | 370 | # CONFIG_DEBUG_DRIVER is not set |
371 | # CONFIG_SYS_HYPERVISOR is not set | ||
342 | 372 | ||
343 | # | 373 | # |
344 | # Connector - unified userspace <-> kernelspace linker | 374 | # Connector - unified userspace <-> kernelspace linker |
@@ -376,6 +406,7 @@ CONFIG_BLK_DEV_NBD=m | |||
376 | CONFIG_BLK_DEV_RAM=y | 406 | CONFIG_BLK_DEV_RAM=y |
377 | CONFIG_BLK_DEV_RAM_COUNT=16 | 407 | CONFIG_BLK_DEV_RAM_COUNT=16 |
378 | CONFIG_BLK_DEV_RAM_SIZE=65536 | 408 | CONFIG_BLK_DEV_RAM_SIZE=65536 |
409 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
379 | CONFIG_BLK_DEV_INITRD=y | 410 | CONFIG_BLK_DEV_INITRD=y |
380 | # CONFIG_CDROM_PKTCDVD is not set | 411 | # CONFIG_CDROM_PKTCDVD is not set |
381 | # CONFIG_ATA_OVER_ETH is not set | 412 | # CONFIG_ATA_OVER_ETH is not set |
@@ -436,7 +467,6 @@ CONFIG_BLK_DEV_AMD74XX=y | |||
436 | CONFIG_BLK_DEV_IDE_PMAC=y | 467 | CONFIG_BLK_DEV_IDE_PMAC=y |
437 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 468 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
438 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | 469 | CONFIG_BLK_DEV_IDEDMA_PMAC=y |
439 | # CONFIG_BLK_DEV_IDE_PMAC_BLINK is not set | ||
440 | # CONFIG_IDE_ARM is not set | 470 | # CONFIG_IDE_ARM is not set |
441 | CONFIG_BLK_DEV_IDEDMA=y | 471 | CONFIG_BLK_DEV_IDEDMA=y |
442 | # CONFIG_IDEDMA_IVB is not set | 472 | # CONFIG_IDEDMA_IVB is not set |
@@ -497,6 +527,7 @@ CONFIG_SCSI_SATA_SVW=y | |||
497 | # CONFIG_SCSI_SATA_MV is not set | 527 | # CONFIG_SCSI_SATA_MV is not set |
498 | # CONFIG_SCSI_SATA_NV is not set | 528 | # CONFIG_SCSI_SATA_NV is not set |
499 | # CONFIG_SCSI_PDC_ADMA is not set | 529 | # CONFIG_SCSI_PDC_ADMA is not set |
530 | # CONFIG_SCSI_HPTIOP is not set | ||
500 | # CONFIG_SCSI_SATA_QSTOR is not set | 531 | # CONFIG_SCSI_SATA_QSTOR is not set |
501 | # CONFIG_SCSI_SATA_PROMISE is not set | 532 | # CONFIG_SCSI_SATA_PROMISE is not set |
502 | # CONFIG_SCSI_SATA_SX4 is not set | 533 | # CONFIG_SCSI_SATA_SX4 is not set |
@@ -519,11 +550,10 @@ CONFIG_SCSI_SYM53C8XX_2=y | |||
519 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 | 550 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 |
520 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | 551 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 |
521 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | 552 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 |
522 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | 553 | CONFIG_SCSI_SYM53C8XX_MMIO=y |
523 | CONFIG_SCSI_IPR=y | 554 | CONFIG_SCSI_IPR=y |
524 | CONFIG_SCSI_IPR_TRACE=y | 555 | CONFIG_SCSI_IPR_TRACE=y |
525 | CONFIG_SCSI_IPR_DUMP=y | 556 | CONFIG_SCSI_IPR_DUMP=y |
526 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
527 | # CONFIG_SCSI_QLOGIC_1280 is not set | 557 | # CONFIG_SCSI_QLOGIC_1280 is not set |
528 | # CONFIG_SCSI_QLA_FC is not set | 558 | # CONFIG_SCSI_QLA_FC is not set |
529 | CONFIG_SCSI_LPFC=m | 559 | CONFIG_SCSI_LPFC=m |
@@ -540,8 +570,8 @@ CONFIG_MD_LINEAR=y | |||
540 | CONFIG_MD_RAID0=y | 570 | CONFIG_MD_RAID0=y |
541 | CONFIG_MD_RAID1=y | 571 | CONFIG_MD_RAID1=y |
542 | CONFIG_MD_RAID10=y | 572 | CONFIG_MD_RAID10=y |
543 | CONFIG_MD_RAID5=y | 573 | CONFIG_MD_RAID456=y |
544 | CONFIG_MD_RAID6=m | 574 | CONFIG_MD_RAID5_RESHAPE=y |
545 | CONFIG_MD_MULTIPATH=m | 575 | CONFIG_MD_MULTIPATH=m |
546 | CONFIG_MD_FAULTY=m | 576 | CONFIG_MD_FAULTY=m |
547 | CONFIG_BLK_DEV_DM=y | 577 | CONFIG_BLK_DEV_DM=y |
@@ -585,7 +615,6 @@ CONFIG_IEEE1394_OHCI1394=y | |||
585 | # | 615 | # |
586 | CONFIG_IEEE1394_VIDEO1394=m | 616 | CONFIG_IEEE1394_VIDEO1394=m |
587 | CONFIG_IEEE1394_SBP2=m | 617 | CONFIG_IEEE1394_SBP2=m |
588 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | ||
589 | CONFIG_IEEE1394_ETH1394=m | 618 | CONFIG_IEEE1394_ETH1394=m |
590 | CONFIG_IEEE1394_DV1394=m | 619 | CONFIG_IEEE1394_DV1394=m |
591 | CONFIG_IEEE1394_RAWIO=y | 620 | CONFIG_IEEE1394_RAWIO=y |
@@ -599,6 +628,7 @@ CONFIG_IEEE1394_RAWIO=y | |||
599 | # Macintosh device drivers | 628 | # Macintosh device drivers |
600 | # | 629 | # |
601 | CONFIG_ADB_PMU=y | 630 | CONFIG_ADB_PMU=y |
631 | # CONFIG_ADB_PMU_LED is not set | ||
602 | CONFIG_PMAC_SMU=y | 632 | CONFIG_PMAC_SMU=y |
603 | CONFIG_THERM_PM72=y | 633 | CONFIG_THERM_PM72=y |
604 | CONFIG_WINDFARM=y | 634 | CONFIG_WINDFARM=y |
@@ -682,6 +712,7 @@ CONFIG_E1000=y | |||
682 | # CONFIG_VIA_VELOCITY is not set | 712 | # CONFIG_VIA_VELOCITY is not set |
683 | CONFIG_TIGON3=y | 713 | CONFIG_TIGON3=y |
684 | # CONFIG_BNX2 is not set | 714 | # CONFIG_BNX2 is not set |
715 | CONFIG_SPIDER_NET=m | ||
685 | # CONFIG_MV643XX_ETH is not set | 716 | # CONFIG_MV643XX_ETH is not set |
686 | 717 | ||
687 | # | 718 | # |
@@ -691,6 +722,7 @@ CONFIG_TIGON3=y | |||
691 | CONFIG_IXGB=m | 722 | CONFIG_IXGB=m |
692 | # CONFIG_IXGB_NAPI is not set | 723 | # CONFIG_IXGB_NAPI is not set |
693 | # CONFIG_S2IO is not set | 724 | # CONFIG_S2IO is not set |
725 | # CONFIG_MYRI10GE is not set | ||
694 | 726 | ||
695 | # | 727 | # |
696 | # Token Ring devices | 728 | # Token Ring devices |
@@ -792,6 +824,7 @@ CONFIG_SERIO_LIBPS2=y | |||
792 | CONFIG_VT=y | 824 | CONFIG_VT=y |
793 | CONFIG_VT_CONSOLE=y | 825 | CONFIG_VT_CONSOLE=y |
794 | CONFIG_HW_CONSOLE=y | 826 | CONFIG_HW_CONSOLE=y |
827 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
795 | # CONFIG_SERIAL_NONSTANDARD is not set | 828 | # CONFIG_SERIAL_NONSTANDARD is not set |
796 | 829 | ||
797 | # | 830 | # |
@@ -799,6 +832,7 @@ CONFIG_HW_CONSOLE=y | |||
799 | # | 832 | # |
800 | CONFIG_SERIAL_8250=y | 833 | CONFIG_SERIAL_8250=y |
801 | CONFIG_SERIAL_8250_CONSOLE=y | 834 | CONFIG_SERIAL_8250_CONSOLE=y |
835 | CONFIG_SERIAL_8250_PCI=y | ||
802 | CONFIG_SERIAL_8250_NR_UARTS=4 | 836 | CONFIG_SERIAL_8250_NR_UARTS=4 |
803 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | 837 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 |
804 | # CONFIG_SERIAL_8250_EXTENDED is not set | 838 | # CONFIG_SERIAL_8250_EXTENDED is not set |
@@ -814,7 +848,9 @@ CONFIG_SERIAL_ICOM=m | |||
814 | CONFIG_UNIX98_PTYS=y | 848 | CONFIG_UNIX98_PTYS=y |
815 | CONFIG_LEGACY_PTYS=y | 849 | CONFIG_LEGACY_PTYS=y |
816 | CONFIG_LEGACY_PTY_COUNT=256 | 850 | CONFIG_LEGACY_PTY_COUNT=256 |
851 | CONFIG_HVC_DRIVER=y | ||
817 | CONFIG_HVC_CONSOLE=y | 852 | CONFIG_HVC_CONSOLE=y |
853 | CONFIG_HVC_RTAS=y | ||
818 | CONFIG_HVCS=m | 854 | CONFIG_HVCS=m |
819 | 855 | ||
820 | # | 856 | # |
@@ -826,7 +862,7 @@ CONFIG_HVCS=m | |||
826 | # Watchdog Cards | 862 | # Watchdog Cards |
827 | # | 863 | # |
828 | # CONFIG_WATCHDOG is not set | 864 | # CONFIG_WATCHDOG is not set |
829 | # CONFIG_RTC is not set | 865 | # CONFIG_HW_RANDOM is not set |
830 | CONFIG_GEN_RTC=y | 866 | CONFIG_GEN_RTC=y |
831 | # CONFIG_GEN_RTC_X is not set | 867 | # CONFIG_GEN_RTC_X is not set |
832 | # CONFIG_DTLK is not set | 868 | # CONFIG_DTLK is not set |
@@ -874,10 +910,10 @@ CONFIG_I2C_AMD8111=y | |||
874 | # CONFIG_I2C_PIIX4 is not set | 910 | # CONFIG_I2C_PIIX4 is not set |
875 | CONFIG_I2C_POWERMAC=y | 911 | CONFIG_I2C_POWERMAC=y |
876 | # CONFIG_I2C_NFORCE2 is not set | 912 | # CONFIG_I2C_NFORCE2 is not set |
913 | # CONFIG_I2C_OCORES is not set | ||
877 | # CONFIG_I2C_PARPORT_LIGHT is not set | 914 | # CONFIG_I2C_PARPORT_LIGHT is not set |
878 | # CONFIG_I2C_PROSAVAGE is not set | 915 | # CONFIG_I2C_PROSAVAGE is not set |
879 | # CONFIG_I2C_SAVAGE4 is not set | 916 | # CONFIG_I2C_SAVAGE4 is not set |
880 | # CONFIG_SCx200_ACB is not set | ||
881 | # CONFIG_I2C_SIS5595 is not set | 917 | # CONFIG_I2C_SIS5595 is not set |
882 | # CONFIG_I2C_SIS630 is not set | 918 | # CONFIG_I2C_SIS630 is not set |
883 | # CONFIG_I2C_SIS96X is not set | 919 | # CONFIG_I2C_SIS96X is not set |
@@ -896,9 +932,7 @@ CONFIG_I2C_POWERMAC=y | |||
896 | # CONFIG_SENSORS_PCF8574 is not set | 932 | # CONFIG_SENSORS_PCF8574 is not set |
897 | # CONFIG_SENSORS_PCA9539 is not set | 933 | # CONFIG_SENSORS_PCA9539 is not set |
898 | # CONFIG_SENSORS_PCF8591 is not set | 934 | # CONFIG_SENSORS_PCF8591 is not set |
899 | # CONFIG_SENSORS_RTC8564 is not set | ||
900 | # CONFIG_SENSORS_MAX6875 is not set | 935 | # CONFIG_SENSORS_MAX6875 is not set |
901 | # CONFIG_RTC_X1205_I2C is not set | ||
902 | # CONFIG_I2C_DEBUG_CORE is not set | 936 | # CONFIG_I2C_DEBUG_CORE is not set |
903 | # CONFIG_I2C_DEBUG_ALGO is not set | 937 | # CONFIG_I2C_DEBUG_ALGO is not set |
904 | # CONFIG_I2C_DEBUG_BUS is not set | 938 | # CONFIG_I2C_DEBUG_BUS is not set |
@@ -913,7 +947,6 @@ CONFIG_I2C_POWERMAC=y | |||
913 | # | 947 | # |
914 | # Dallas's 1-wire bus | 948 | # Dallas's 1-wire bus |
915 | # | 949 | # |
916 | # CONFIG_W1 is not set | ||
917 | 950 | ||
918 | # | 951 | # |
919 | # Hardware Monitoring support | 952 | # Hardware Monitoring support |
@@ -926,37 +959,33 @@ CONFIG_I2C_POWERMAC=y | |||
926 | # | 959 | # |
927 | 960 | ||
928 | # | 961 | # |
929 | # Multimedia Capabilities Port drivers | ||
930 | # | ||
931 | |||
932 | # | ||
933 | # Multimedia devices | 962 | # Multimedia devices |
934 | # | 963 | # |
935 | # CONFIG_VIDEO_DEV is not set | 964 | # CONFIG_VIDEO_DEV is not set |
965 | CONFIG_VIDEO_V4L2=y | ||
936 | 966 | ||
937 | # | 967 | # |
938 | # Digital Video Broadcasting Devices | 968 | # Digital Video Broadcasting Devices |
939 | # | 969 | # |
940 | # CONFIG_DVB is not set | 970 | # CONFIG_DVB is not set |
971 | # CONFIG_USB_DABUSB is not set | ||
941 | 972 | ||
942 | # | 973 | # |
943 | # Graphics support | 974 | # Graphics support |
944 | # | 975 | # |
976 | CONFIG_FIRMWARE_EDID=y | ||
945 | CONFIG_FB=y | 977 | CONFIG_FB=y |
946 | CONFIG_FB_CFB_FILLRECT=y | 978 | CONFIG_FB_CFB_FILLRECT=y |
947 | CONFIG_FB_CFB_COPYAREA=y | 979 | CONFIG_FB_CFB_COPYAREA=y |
948 | CONFIG_FB_CFB_IMAGEBLIT=y | 980 | CONFIG_FB_CFB_IMAGEBLIT=y |
949 | CONFIG_FB_MACMODES=y | 981 | CONFIG_FB_MACMODES=y |
982 | # CONFIG_FB_BACKLIGHT is not set | ||
950 | CONFIG_FB_MODE_HELPERS=y | 983 | CONFIG_FB_MODE_HELPERS=y |
951 | CONFIG_FB_TILEBLITTING=y | 984 | CONFIG_FB_TILEBLITTING=y |
952 | # CONFIG_FB_CIRRUS is not set | 985 | # CONFIG_FB_CIRRUS is not set |
953 | # CONFIG_FB_PM2 is not set | 986 | # CONFIG_FB_PM2 is not set |
954 | # CONFIG_FB_CYBER2000 is not set | 987 | # CONFIG_FB_CYBER2000 is not set |
955 | CONFIG_FB_OF=y | 988 | CONFIG_FB_OF=y |
956 | # CONFIG_FB_CONTROL is not set | ||
957 | # CONFIG_FB_PLATINUM is not set | ||
958 | # CONFIG_FB_VALKYRIE is not set | ||
959 | # CONFIG_FB_CT65550 is not set | ||
960 | # CONFIG_FB_ASILIANT is not set | 989 | # CONFIG_FB_ASILIANT is not set |
961 | # CONFIG_FB_IMSTT is not set | 990 | # CONFIG_FB_IMSTT is not set |
962 | # CONFIG_FB_VGA16 is not set | 991 | # CONFIG_FB_VGA16 is not set |
@@ -970,7 +999,6 @@ CONFIG_FB_MATROX_G=y | |||
970 | CONFIG_FB_MATROX_I2C=m | 999 | CONFIG_FB_MATROX_I2C=m |
971 | CONFIG_FB_MATROX_MAVEN=m | 1000 | CONFIG_FB_MATROX_MAVEN=m |
972 | CONFIG_FB_MATROX_MULTIHEAD=y | 1001 | CONFIG_FB_MATROX_MULTIHEAD=y |
973 | # CONFIG_FB_RADEON_OLD is not set | ||
974 | CONFIG_FB_RADEON=y | 1002 | CONFIG_FB_RADEON=y |
975 | CONFIG_FB_RADEON_I2C=y | 1003 | CONFIG_FB_RADEON_I2C=y |
976 | # CONFIG_FB_RADEON_DEBUG is not set | 1004 | # CONFIG_FB_RADEON_DEBUG is not set |
@@ -1025,9 +1053,11 @@ CONFIG_SND_SEQ_DUMMY=m | |||
1025 | CONFIG_SND_OSSEMUL=y | 1053 | CONFIG_SND_OSSEMUL=y |
1026 | CONFIG_SND_MIXER_OSS=m | 1054 | CONFIG_SND_MIXER_OSS=m |
1027 | CONFIG_SND_PCM_OSS=m | 1055 | CONFIG_SND_PCM_OSS=m |
1056 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
1028 | CONFIG_SND_SEQUENCER_OSS=y | 1057 | CONFIG_SND_SEQUENCER_OSS=y |
1029 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1058 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1030 | CONFIG_SND_SUPPORT_OLD_API=y | 1059 | CONFIG_SND_SUPPORT_OLD_API=y |
1060 | CONFIG_SND_VERBOSE_PROCFS=y | ||
1031 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1061 | # CONFIG_SND_VERBOSE_PRINTK is not set |
1032 | # CONFIG_SND_DEBUG is not set | 1062 | # CONFIG_SND_DEBUG is not set |
1033 | 1063 | ||
@@ -1044,6 +1074,7 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
1044 | # PCI devices | 1074 | # PCI devices |
1045 | # | 1075 | # |
1046 | # CONFIG_SND_AD1889 is not set | 1076 | # CONFIG_SND_AD1889 is not set |
1077 | # CONFIG_SND_ALS300 is not set | ||
1047 | # CONFIG_SND_ALS4000 is not set | 1078 | # CONFIG_SND_ALS4000 is not set |
1048 | # CONFIG_SND_ALI5451 is not set | 1079 | # CONFIG_SND_ALI5451 is not set |
1049 | # CONFIG_SND_ATIIXP is not set | 1080 | # CONFIG_SND_ATIIXP is not set |
@@ -1057,6 +1088,18 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
1057 | # CONFIG_SND_CMIPCI is not set | 1088 | # CONFIG_SND_CMIPCI is not set |
1058 | # CONFIG_SND_CS4281 is not set | 1089 | # CONFIG_SND_CS4281 is not set |
1059 | # CONFIG_SND_CS46XX is not set | 1090 | # CONFIG_SND_CS46XX is not set |
1091 | # CONFIG_SND_DARLA20 is not set | ||
1092 | # CONFIG_SND_GINA20 is not set | ||
1093 | # CONFIG_SND_LAYLA20 is not set | ||
1094 | # CONFIG_SND_DARLA24 is not set | ||
1095 | # CONFIG_SND_GINA24 is not set | ||
1096 | # CONFIG_SND_LAYLA24 is not set | ||
1097 | # CONFIG_SND_MONA is not set | ||
1098 | # CONFIG_SND_MIA is not set | ||
1099 | # CONFIG_SND_ECHO3G is not set | ||
1100 | # CONFIG_SND_INDIGO is not set | ||
1101 | # CONFIG_SND_INDIGOIO is not set | ||
1102 | # CONFIG_SND_INDIGODJ is not set | ||
1060 | # CONFIG_SND_EMU10K1 is not set | 1103 | # CONFIG_SND_EMU10K1 is not set |
1061 | # CONFIG_SND_EMU10K1X is not set | 1104 | # CONFIG_SND_EMU10K1X is not set |
1062 | # CONFIG_SND_ENS1370 is not set | 1105 | # CONFIG_SND_ENS1370 is not set |
@@ -1076,6 +1119,7 @@ CONFIG_SND_SUPPORT_OLD_API=y | |||
1076 | # CONFIG_SND_MIXART is not set | 1119 | # CONFIG_SND_MIXART is not set |
1077 | # CONFIG_SND_NM256 is not set | 1120 | # CONFIG_SND_NM256 is not set |
1078 | # CONFIG_SND_PCXHR is not set | 1121 | # CONFIG_SND_PCXHR is not set |
1122 | # CONFIG_SND_RIPTIDE is not set | ||
1079 | # CONFIG_SND_RME32 is not set | 1123 | # CONFIG_SND_RME32 is not set |
1080 | # CONFIG_SND_RME96 is not set | 1124 | # CONFIG_SND_RME96 is not set |
1081 | # CONFIG_SND_RME9652 is not set | 1125 | # CONFIG_SND_RME9652 is not set |
@@ -1093,6 +1137,17 @@ CONFIG_SND_POWERMAC=m | |||
1093 | CONFIG_SND_POWERMAC_AUTO_DRC=y | 1137 | CONFIG_SND_POWERMAC_AUTO_DRC=y |
1094 | 1138 | ||
1095 | # | 1139 | # |
1140 | # Apple Onboard Audio driver | ||
1141 | # | ||
1142 | CONFIG_SND_AOA=m | ||
1143 | CONFIG_SND_AOA_FABRIC_LAYOUT=m | ||
1144 | CONFIG_SND_AOA_ONYX=m | ||
1145 | CONFIG_SND_AOA_TAS=m | ||
1146 | CONFIG_SND_AOA_TOONIE=m | ||
1147 | CONFIG_SND_AOA_SOUNDBUS=m | ||
1148 | CONFIG_SND_AOA_SOUNDBUS_I2S=m | ||
1149 | |||
1150 | # | ||
1096 | # USB devices | 1151 | # USB devices |
1097 | # | 1152 | # |
1098 | # CONFIG_SND_USB_AUDIO is not set | 1153 | # CONFIG_SND_USB_AUDIO is not set |
@@ -1108,6 +1163,7 @@ CONFIG_SND_POWERMAC_AUTO_DRC=y | |||
1108 | # | 1163 | # |
1109 | CONFIG_USB_ARCH_HAS_HCD=y | 1164 | CONFIG_USB_ARCH_HAS_HCD=y |
1110 | CONFIG_USB_ARCH_HAS_OHCI=y | 1165 | CONFIG_USB_ARCH_HAS_OHCI=y |
1166 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
1111 | CONFIG_USB=y | 1167 | CONFIG_USB=y |
1112 | # CONFIG_USB_DEBUG is not set | 1168 | # CONFIG_USB_DEBUG is not set |
1113 | 1169 | ||
@@ -1125,6 +1181,7 @@ CONFIG_USB_DEVICEFS=y | |||
1125 | CONFIG_USB_EHCI_HCD=y | 1181 | CONFIG_USB_EHCI_HCD=y |
1126 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | 1182 | # CONFIG_USB_EHCI_SPLIT_ISO is not set |
1127 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1183 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1184 | CONFIG_USB_EHCI_TT_NEWSCHED=y | ||
1128 | # CONFIG_USB_ISP116X_HCD is not set | 1185 | # CONFIG_USB_ISP116X_HCD is not set |
1129 | CONFIG_USB_OHCI_HCD=y | 1186 | CONFIG_USB_OHCI_HCD=y |
1130 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | 1187 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set |
@@ -1135,7 +1192,6 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1135 | # | 1192 | # |
1136 | # USB Device Class drivers | 1193 | # USB Device Class drivers |
1137 | # | 1194 | # |
1138 | # CONFIG_OBSOLETE_OSS_USB_DRIVER is not set | ||
1139 | # CONFIG_USB_ACM is not set | 1195 | # CONFIG_USB_ACM is not set |
1140 | # CONFIG_USB_PRINTER is not set | 1196 | # CONFIG_USB_PRINTER is not set |
1141 | 1197 | ||
@@ -1173,9 +1229,7 @@ CONFIG_USB_HIDDEV=y | |||
1173 | # CONFIG_USB_ACECAD is not set | 1229 | # CONFIG_USB_ACECAD is not set |
1174 | # CONFIG_USB_KBTAB is not set | 1230 | # CONFIG_USB_KBTAB is not set |
1175 | # CONFIG_USB_POWERMATE is not set | 1231 | # CONFIG_USB_POWERMATE is not set |
1176 | # CONFIG_USB_MTOUCH is not set | 1232 | # CONFIG_USB_TOUCHSCREEN is not set |
1177 | # CONFIG_USB_ITMTOUCH is not set | ||
1178 | # CONFIG_USB_EGALAX is not set | ||
1179 | # CONFIG_USB_YEALINK is not set | 1233 | # CONFIG_USB_YEALINK is not set |
1180 | # CONFIG_USB_XPAD is not set | 1234 | # CONFIG_USB_XPAD is not set |
1181 | # CONFIG_USB_ATI_REMOTE is not set | 1235 | # CONFIG_USB_ATI_REMOTE is not set |
@@ -1190,15 +1244,6 @@ CONFIG_USB_HIDDEV=y | |||
1190 | # CONFIG_USB_MICROTEK is not set | 1244 | # CONFIG_USB_MICROTEK is not set |
1191 | 1245 | ||
1192 | # | 1246 | # |
1193 | # USB Multimedia devices | ||
1194 | # | ||
1195 | # CONFIG_USB_DABUSB is not set | ||
1196 | |||
1197 | # | ||
1198 | # Video4Linux support is needed for USB Multimedia device support | ||
1199 | # | ||
1200 | |||
1201 | # | ||
1202 | # USB Network Adapters | 1247 | # USB Network Adapters |
1203 | # | 1248 | # |
1204 | # CONFIG_USB_CATC is not set | 1249 | # CONFIG_USB_CATC is not set |
@@ -1227,10 +1272,12 @@ CONFIG_USB_HIDDEV=y | |||
1227 | # CONFIG_USB_LEGOTOWER is not set | 1272 | # CONFIG_USB_LEGOTOWER is not set |
1228 | # CONFIG_USB_LCD is not set | 1273 | # CONFIG_USB_LCD is not set |
1229 | # CONFIG_USB_LED is not set | 1274 | # CONFIG_USB_LED is not set |
1275 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1230 | # CONFIG_USB_CYTHERM is not set | 1276 | # CONFIG_USB_CYTHERM is not set |
1231 | # CONFIG_USB_PHIDGETKIT is not set | 1277 | # CONFIG_USB_PHIDGETKIT is not set |
1232 | # CONFIG_USB_PHIDGETSERVO is not set | 1278 | # CONFIG_USB_PHIDGETSERVO is not set |
1233 | # CONFIG_USB_IDMOUSE is not set | 1279 | # CONFIG_USB_IDMOUSE is not set |
1280 | CONFIG_USB_APPLEDISPLAY=m | ||
1234 | # CONFIG_USB_SISUSBVGA is not set | 1281 | # CONFIG_USB_SISUSBVGA is not set |
1235 | # CONFIG_USB_LD is not set | 1282 | # CONFIG_USB_LD is not set |
1236 | # CONFIG_USB_TEST is not set | 1283 | # CONFIG_USB_TEST is not set |
@@ -1250,23 +1297,53 @@ CONFIG_USB_HIDDEV=y | |||
1250 | # CONFIG_MMC is not set | 1297 | # CONFIG_MMC is not set |
1251 | 1298 | ||
1252 | # | 1299 | # |
1300 | # LED devices | ||
1301 | # | ||
1302 | # CONFIG_NEW_LEDS is not set | ||
1303 | |||
1304 | # | ||
1305 | # LED drivers | ||
1306 | # | ||
1307 | |||
1308 | # | ||
1309 | # LED Triggers | ||
1310 | # | ||
1311 | |||
1312 | # | ||
1253 | # InfiniBand support | 1313 | # InfiniBand support |
1254 | # | 1314 | # |
1255 | CONFIG_INFINIBAND=m | 1315 | CONFIG_INFINIBAND=m |
1256 | # CONFIG_INFINIBAND_USER_MAD is not set | 1316 | # CONFIG_INFINIBAND_USER_MAD is not set |
1257 | # CONFIG_INFINIBAND_USER_ACCESS is not set | 1317 | # CONFIG_INFINIBAND_USER_ACCESS is not set |
1318 | CONFIG_INFINIBAND_ADDR_TRANS=y | ||
1258 | CONFIG_INFINIBAND_MTHCA=m | 1319 | CONFIG_INFINIBAND_MTHCA=m |
1259 | # CONFIG_INFINIBAND_MTHCA_DEBUG is not set | 1320 | CONFIG_INFINIBAND_MTHCA_DEBUG=y |
1260 | CONFIG_INFINIBAND_IPOIB=m | 1321 | CONFIG_INFINIBAND_IPOIB=m |
1261 | # CONFIG_INFINIBAND_IPOIB_DEBUG is not set | 1322 | CONFIG_INFINIBAND_IPOIB_DEBUG=y |
1323 | # CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set | ||
1262 | # CONFIG_INFINIBAND_SRP is not set | 1324 | # CONFIG_INFINIBAND_SRP is not set |
1325 | CONFIG_INFINIBAND_ISER=m | ||
1263 | 1326 | ||
1264 | # | 1327 | # |
1265 | # SN Devices | 1328 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) |
1266 | # | 1329 | # |
1267 | 1330 | ||
1268 | # | 1331 | # |
1269 | # EDAC - error detection and reporting (RAS) | 1332 | # Real Time Clock |
1333 | # | ||
1334 | # CONFIG_RTC_CLASS is not set | ||
1335 | |||
1336 | # | ||
1337 | # DMA Engine support | ||
1338 | # | ||
1339 | # CONFIG_DMA_ENGINE is not set | ||
1340 | |||
1341 | # | ||
1342 | # DMA Clients | ||
1343 | # | ||
1344 | |||
1345 | # | ||
1346 | # DMA Devices | ||
1270 | # | 1347 | # |
1271 | 1348 | ||
1272 | # | 1349 | # |
@@ -1298,7 +1375,6 @@ CONFIG_JFS_SECURITY=y | |||
1298 | # CONFIG_JFS_STATISTICS is not set | 1375 | # CONFIG_JFS_STATISTICS is not set |
1299 | CONFIG_FS_POSIX_ACL=y | 1376 | CONFIG_FS_POSIX_ACL=y |
1300 | CONFIG_XFS_FS=m | 1377 | CONFIG_XFS_FS=m |
1301 | CONFIG_XFS_EXPORT=y | ||
1302 | # CONFIG_XFS_QUOTA is not set | 1378 | # CONFIG_XFS_QUOTA is not set |
1303 | CONFIG_XFS_SECURITY=y | 1379 | CONFIG_XFS_SECURITY=y |
1304 | CONFIG_XFS_POSIX_ACL=y | 1380 | CONFIG_XFS_POSIX_ACL=y |
@@ -1307,6 +1383,7 @@ CONFIG_XFS_POSIX_ACL=y | |||
1307 | # CONFIG_MINIX_FS is not set | 1383 | # CONFIG_MINIX_FS is not set |
1308 | # CONFIG_ROMFS_FS is not set | 1384 | # CONFIG_ROMFS_FS is not set |
1309 | CONFIG_INOTIFY=y | 1385 | CONFIG_INOTIFY=y |
1386 | CONFIG_INOTIFY_USER=y | ||
1310 | # CONFIG_QUOTA is not set | 1387 | # CONFIG_QUOTA is not set |
1311 | CONFIG_DNOTIFY=y | 1388 | CONFIG_DNOTIFY=y |
1312 | CONFIG_AUTOFS_FS=y | 1389 | CONFIG_AUTOFS_FS=y |
@@ -1342,7 +1419,6 @@ CONFIG_TMPFS=y | |||
1342 | CONFIG_HUGETLBFS=y | 1419 | CONFIG_HUGETLBFS=y |
1343 | CONFIG_HUGETLB_PAGE=y | 1420 | CONFIG_HUGETLB_PAGE=y |
1344 | CONFIG_RAMFS=y | 1421 | CONFIG_RAMFS=y |
1345 | # CONFIG_RELAYFS_FS is not set | ||
1346 | # CONFIG_CONFIGFS_FS is not set | 1422 | # CONFIG_CONFIGFS_FS is not set |
1347 | 1423 | ||
1348 | # | 1424 | # |
@@ -1388,8 +1464,10 @@ CONFIG_RPCSEC_GSS_SPKM3=m | |||
1388 | # CONFIG_SMB_FS is not set | 1464 | # CONFIG_SMB_FS is not set |
1389 | CONFIG_CIFS=m | 1465 | CONFIG_CIFS=m |
1390 | # CONFIG_CIFS_STATS is not set | 1466 | # CONFIG_CIFS_STATS is not set |
1467 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
1391 | CONFIG_CIFS_XATTR=y | 1468 | CONFIG_CIFS_XATTR=y |
1392 | CONFIG_CIFS_POSIX=y | 1469 | CONFIG_CIFS_POSIX=y |
1470 | # CONFIG_CIFS_DEBUG2 is not set | ||
1393 | # CONFIG_CIFS_EXPERIMENTAL is not set | 1471 | # CONFIG_CIFS_EXPERIMENTAL is not set |
1394 | # CONFIG_NCP_FS is not set | 1472 | # CONFIG_NCP_FS is not set |
1395 | # CONFIG_CODA_FS is not set | 1473 | # CONFIG_CODA_FS is not set |
@@ -1470,6 +1548,9 @@ CONFIG_CRC32=y | |||
1470 | CONFIG_LIBCRC32C=m | 1548 | CONFIG_LIBCRC32C=m |
1471 | CONFIG_ZLIB_INFLATE=y | 1549 | CONFIG_ZLIB_INFLATE=y |
1472 | CONFIG_ZLIB_DEFLATE=m | 1550 | CONFIG_ZLIB_DEFLATE=m |
1551 | CONFIG_TEXTSEARCH=y | ||
1552 | CONFIG_TEXTSEARCH_KMP=m | ||
1553 | CONFIG_PLIST=y | ||
1473 | 1554 | ||
1474 | # | 1555 | # |
1475 | # Instrumentation Support | 1556 | # Instrumentation Support |
@@ -1483,14 +1564,19 @@ CONFIG_OPROFILE=y | |||
1483 | # | 1564 | # |
1484 | # CONFIG_PRINTK_TIME is not set | 1565 | # CONFIG_PRINTK_TIME is not set |
1485 | CONFIG_MAGIC_SYSRQ=y | 1566 | CONFIG_MAGIC_SYSRQ=y |
1567 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1486 | CONFIG_DEBUG_KERNEL=y | 1568 | CONFIG_DEBUG_KERNEL=y |
1487 | CONFIG_LOG_BUF_SHIFT=17 | 1569 | CONFIG_LOG_BUF_SHIFT=17 |
1488 | CONFIG_DETECT_SOFTLOCKUP=y | 1570 | CONFIG_DETECT_SOFTLOCKUP=y |
1489 | # CONFIG_SCHEDSTATS is not set | 1571 | # CONFIG_SCHEDSTATS is not set |
1490 | # CONFIG_DEBUG_SLAB is not set | 1572 | # CONFIG_DEBUG_SLAB is not set |
1491 | CONFIG_DEBUG_MUTEXES=y | 1573 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1574 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1492 | # CONFIG_DEBUG_SPINLOCK is not set | 1575 | # CONFIG_DEBUG_SPINLOCK is not set |
1576 | CONFIG_DEBUG_MUTEXES=y | ||
1577 | # CONFIG_DEBUG_RWSEMS is not set | ||
1493 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1578 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1579 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1494 | # CONFIG_DEBUG_KOBJECT is not set | 1580 | # CONFIG_DEBUG_KOBJECT is not set |
1495 | # CONFIG_DEBUG_INFO is not set | 1581 | # CONFIG_DEBUG_INFO is not set |
1496 | CONFIG_DEBUG_FS=y | 1582 | CONFIG_DEBUG_FS=y |
@@ -1504,11 +1590,7 @@ CONFIG_XMON=y | |||
1504 | # CONFIG_XMON_DEFAULT is not set | 1590 | # CONFIG_XMON_DEFAULT is not set |
1505 | CONFIG_IRQSTACKS=y | 1591 | CONFIG_IRQSTACKS=y |
1506 | CONFIG_BOOTX_TEXT=y | 1592 | CONFIG_BOOTX_TEXT=y |
1507 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | 1593 | # CONFIG_PPC_EARLY_DEBUG is not set |
1508 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
1509 | # CONFIG_PPC_EARLY_DEBUG_RTAS is not set | ||
1510 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
1511 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
1512 | 1594 | ||
1513 | # | 1595 | # |
1514 | # Security options | 1596 | # Security options |
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig index c18e8600d78f..a8cdf312e1b0 100644 --- a/arch/powerpc/configs/pseries_defconfig +++ b/arch/powerpc/configs/pseries_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.18-rc3 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Tue Aug 8 09:14:48 2006 | 4 | # Sun Sep 10 10:45:12 2006 |
5 | # | 5 | # |
6 | CONFIG_PPC64=y | 6 | CONFIG_PPC64=y |
7 | CONFIG_64BIT=y | 7 | CONFIG_64BIT=y |
@@ -128,7 +128,6 @@ CONFIG_PPC_PSERIES=y | |||
128 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 128 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
129 | CONFIG_XICS=y | 129 | CONFIG_XICS=y |
130 | # CONFIG_U3_DART is not set | 130 | # CONFIG_U3_DART is not set |
131 | CONFIG_MPIC=y | ||
132 | CONFIG_PPC_RTAS=y | 131 | CONFIG_PPC_RTAS=y |
133 | CONFIG_RTAS_ERROR_LOGGING=y | 132 | CONFIG_RTAS_ERROR_LOGGING=y |
134 | CONFIG_RTAS_PROC=y | 133 | CONFIG_RTAS_PROC=y |
@@ -140,6 +139,7 @@ CONFIG_IBMEBUS=y | |||
140 | # CONFIG_PPC_970_NAP is not set | 139 | # CONFIG_PPC_970_NAP is not set |
141 | # CONFIG_CPU_FREQ is not set | 140 | # CONFIG_CPU_FREQ is not set |
142 | # CONFIG_WANT_EARLY_SERIAL is not set | 141 | # CONFIG_WANT_EARLY_SERIAL is not set |
142 | CONFIG_MPIC=y | ||
143 | 143 | ||
144 | # | 144 | # |
145 | # Kernel options | 145 | # Kernel options |
@@ -196,6 +196,7 @@ CONFIG_ISA_DMA_API=y | |||
196 | # Bus options | 196 | # Bus options |
197 | # | 197 | # |
198 | CONFIG_GENERIC_ISA_DMA=y | 198 | CONFIG_GENERIC_ISA_DMA=y |
199 | # CONFIG_MPIC_WEIRD is not set | ||
199 | CONFIG_PPC_I8259=y | 200 | CONFIG_PPC_I8259=y |
200 | # CONFIG_PPC_INDIRECT_PCI is not set | 201 | # CONFIG_PPC_INDIRECT_PCI is not set |
201 | CONFIG_PCI=y | 202 | CONFIG_PCI=y |
@@ -790,7 +791,6 @@ CONFIG_SERIAL_JSM=m | |||
790 | CONFIG_UNIX98_PTYS=y | 791 | CONFIG_UNIX98_PTYS=y |
791 | CONFIG_LEGACY_PTYS=y | 792 | CONFIG_LEGACY_PTYS=y |
792 | CONFIG_LEGACY_PTY_COUNT=256 | 793 | CONFIG_LEGACY_PTY_COUNT=256 |
793 | # CONFIG_BRIQ_PANEL is not set | ||
794 | # CONFIG_PRINTER is not set | 794 | # CONFIG_PRINTER is not set |
795 | # CONFIG_PPDEV is not set | 795 | # CONFIG_PPDEV is not set |
796 | # CONFIG_TIPAR is not set | 796 | # CONFIG_TIPAR is not set |
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c index f04c18e08b8b..1af41f7616dc 100644 --- a/arch/powerpc/kernel/crash.c +++ b/arch/powerpc/kernel/crash.c | |||
@@ -295,7 +295,7 @@ void default_machine_crash_shutdown(struct pt_regs *regs) | |||
295 | struct irq_desc *desc = irq_desc + irq; | 295 | struct irq_desc *desc = irq_desc + irq; |
296 | 296 | ||
297 | if (desc->status & IRQ_INPROGRESS) | 297 | if (desc->status & IRQ_INPROGRESS) |
298 | desc->chip->end(irq); | 298 | desc->chip->eoi(irq); |
299 | 299 | ||
300 | if (!(desc->status & IRQ_DISABLED)) | 300 | if (!(desc->status & IRQ_DISABLED)) |
301 | desc->chip->disable(irq); | 301 | desc->chip->disable(irq); |
diff --git a/arch/powerpc/kernel/misc.S b/arch/powerpc/kernel/misc.S index fc23040d5a26..f770805f1215 100644 --- a/arch/powerpc/kernel/misc.S +++ b/arch/powerpc/kernel/misc.S | |||
@@ -17,15 +17,6 @@ | |||
17 | 17 | ||
18 | .text | 18 | .text |
19 | 19 | ||
20 | #ifdef CONFIG_PPC64 | ||
21 | #define IN_SYNC twi 0,r5,0; isync | ||
22 | #define EIEIO_32 | ||
23 | #define SYNC_64 sync | ||
24 | #else /* CONFIG_PPC32 */ | ||
25 | #define IN_SYNC | ||
26 | #define EIEIO_32 eieio | ||
27 | #define SYNC_64 | ||
28 | #endif | ||
29 | /* | 20 | /* |
30 | * Returns (address we are running at) - (address we were linked at) | 21 | * Returns (address we are running at) - (address we were linked at) |
31 | * for use before the text and data are mapped to KERNELBASE. | 22 | * for use before the text and data are mapped to KERNELBASE. |
@@ -70,6 +61,7 @@ _GLOBAL(add_reloc_offset) | |||
70 | * The *_ns versions don't do byte-swapping. | 61 | * The *_ns versions don't do byte-swapping. |
71 | */ | 62 | */ |
72 | _GLOBAL(_insb) | 63 | _GLOBAL(_insb) |
64 | sync | ||
73 | cmpwi 0,r5,0 | 65 | cmpwi 0,r5,0 |
74 | mtctr r5 | 66 | mtctr r5 |
75 | subi r4,r4,1 | 67 | subi r4,r4,1 |
@@ -78,7 +70,8 @@ _GLOBAL(_insb) | |||
78 | eieio | 70 | eieio |
79 | stbu r5,1(r4) | 71 | stbu r5,1(r4) |
80 | bdnz 00b | 72 | bdnz 00b |
81 | IN_SYNC | 73 | twi 0,r5,0 |
74 | isync | ||
82 | blr | 75 | blr |
83 | 76 | ||
84 | _GLOBAL(_outsb) | 77 | _GLOBAL(_outsb) |
@@ -86,14 +79,15 @@ _GLOBAL(_outsb) | |||
86 | mtctr r5 | 79 | mtctr r5 |
87 | subi r4,r4,1 | 80 | subi r4,r4,1 |
88 | blelr- | 81 | blelr- |
82 | sync | ||
89 | 00: lbzu r5,1(r4) | 83 | 00: lbzu r5,1(r4) |
90 | stb r5,0(r3) | 84 | stb r5,0(r3) |
91 | EIEIO_32 | ||
92 | bdnz 00b | 85 | bdnz 00b |
93 | SYNC_64 | 86 | sync |
94 | blr | 87 | blr |
95 | 88 | ||
96 | _GLOBAL(_insw) | 89 | _GLOBAL(_insw) |
90 | sync | ||
97 | cmpwi 0,r5,0 | 91 | cmpwi 0,r5,0 |
98 | mtctr r5 | 92 | mtctr r5 |
99 | subi r4,r4,2 | 93 | subi r4,r4,2 |
@@ -102,7 +96,8 @@ _GLOBAL(_insw) | |||
102 | eieio | 96 | eieio |
103 | sthu r5,2(r4) | 97 | sthu r5,2(r4) |
104 | bdnz 00b | 98 | bdnz 00b |
105 | IN_SYNC | 99 | twi 0,r5,0 |
100 | isync | ||
106 | blr | 101 | blr |
107 | 102 | ||
108 | _GLOBAL(_outsw) | 103 | _GLOBAL(_outsw) |
@@ -110,14 +105,15 @@ _GLOBAL(_outsw) | |||
110 | mtctr r5 | 105 | mtctr r5 |
111 | subi r4,r4,2 | 106 | subi r4,r4,2 |
112 | blelr- | 107 | blelr- |
108 | sync | ||
113 | 00: lhzu r5,2(r4) | 109 | 00: lhzu r5,2(r4) |
114 | EIEIO_32 | ||
115 | sthbrx r5,0,r3 | 110 | sthbrx r5,0,r3 |
116 | bdnz 00b | 111 | bdnz 00b |
117 | SYNC_64 | 112 | sync |
118 | blr | 113 | blr |
119 | 114 | ||
120 | _GLOBAL(_insl) | 115 | _GLOBAL(_insl) |
116 | sync | ||
121 | cmpwi 0,r5,0 | 117 | cmpwi 0,r5,0 |
122 | mtctr r5 | 118 | mtctr r5 |
123 | subi r4,r4,4 | 119 | subi r4,r4,4 |
@@ -126,7 +122,8 @@ _GLOBAL(_insl) | |||
126 | eieio | 122 | eieio |
127 | stwu r5,4(r4) | 123 | stwu r5,4(r4) |
128 | bdnz 00b | 124 | bdnz 00b |
129 | IN_SYNC | 125 | twi 0,r5,0 |
126 | isync | ||
130 | blr | 127 | blr |
131 | 128 | ||
132 | _GLOBAL(_outsl) | 129 | _GLOBAL(_outsl) |
@@ -134,17 +131,18 @@ _GLOBAL(_outsl) | |||
134 | mtctr r5 | 131 | mtctr r5 |
135 | subi r4,r4,4 | 132 | subi r4,r4,4 |
136 | blelr- | 133 | blelr- |
134 | sync | ||
137 | 00: lwzu r5,4(r4) | 135 | 00: lwzu r5,4(r4) |
138 | stwbrx r5,0,r3 | 136 | stwbrx r5,0,r3 |
139 | EIEIO_32 | ||
140 | bdnz 00b | 137 | bdnz 00b |
141 | SYNC_64 | 138 | sync |
142 | blr | 139 | blr |
143 | 140 | ||
144 | #ifdef CONFIG_PPC32 | 141 | #ifdef CONFIG_PPC32 |
145 | _GLOBAL(__ide_mm_insw) | 142 | _GLOBAL(__ide_mm_insw) |
146 | #endif | 143 | #endif |
147 | _GLOBAL(_insw_ns) | 144 | _GLOBAL(_insw_ns) |
145 | sync | ||
148 | cmpwi 0,r5,0 | 146 | cmpwi 0,r5,0 |
149 | mtctr r5 | 147 | mtctr r5 |
150 | subi r4,r4,2 | 148 | subi r4,r4,2 |
@@ -153,7 +151,8 @@ _GLOBAL(_insw_ns) | |||
153 | eieio | 151 | eieio |
154 | sthu r5,2(r4) | 152 | sthu r5,2(r4) |
155 | bdnz 00b | 153 | bdnz 00b |
156 | IN_SYNC | 154 | twi 0,r5,0 |
155 | isync | ||
157 | blr | 156 | blr |
158 | 157 | ||
159 | #ifdef CONFIG_PPC32 | 158 | #ifdef CONFIG_PPC32 |
@@ -164,17 +163,18 @@ _GLOBAL(_outsw_ns) | |||
164 | mtctr r5 | 163 | mtctr r5 |
165 | subi r4,r4,2 | 164 | subi r4,r4,2 |
166 | blelr- | 165 | blelr- |
166 | sync | ||
167 | 00: lhzu r5,2(r4) | 167 | 00: lhzu r5,2(r4) |
168 | sth r5,0(r3) | 168 | sth r5,0(r3) |
169 | EIEIO_32 | ||
170 | bdnz 00b | 169 | bdnz 00b |
171 | SYNC_64 | 170 | sync |
172 | blr | 171 | blr |
173 | 172 | ||
174 | #ifdef CONFIG_PPC32 | 173 | #ifdef CONFIG_PPC32 |
175 | _GLOBAL(__ide_mm_insl) | 174 | _GLOBAL(__ide_mm_insl) |
176 | #endif | 175 | #endif |
177 | _GLOBAL(_insl_ns) | 176 | _GLOBAL(_insl_ns) |
177 | sync | ||
178 | cmpwi 0,r5,0 | 178 | cmpwi 0,r5,0 |
179 | mtctr r5 | 179 | mtctr r5 |
180 | subi r4,r4,4 | 180 | subi r4,r4,4 |
@@ -183,7 +183,8 @@ _GLOBAL(_insl_ns) | |||
183 | eieio | 183 | eieio |
184 | stwu r5,4(r4) | 184 | stwu r5,4(r4) |
185 | bdnz 00b | 185 | bdnz 00b |
186 | IN_SYNC | 186 | twi 0,r5,0 |
187 | isync | ||
187 | blr | 188 | blr |
188 | 189 | ||
189 | #ifdef CONFIG_PPC32 | 190 | #ifdef CONFIG_PPC32 |
@@ -194,10 +195,10 @@ _GLOBAL(_outsl_ns) | |||
194 | mtctr r5 | 195 | mtctr r5 |
195 | subi r4,r4,4 | 196 | subi r4,r4,4 |
196 | blelr- | 197 | blelr- |
198 | sync | ||
197 | 00: lwzu r5,4(r4) | 199 | 00: lwzu r5,4(r4) |
198 | stw r5,0(r3) | 200 | stw r5,0(r3) |
199 | EIEIO_32 | ||
200 | bdnz 00b | 201 | bdnz 00b |
201 | SYNC_64 | 202 | sync |
202 | blr | 203 | blr |
203 | 204 | ||
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c index 0b1b52168bb7..5e583cf38786 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | |||
@@ -158,7 +158,7 @@ get_pci_irq_from_of(struct pci_controller *hose, int slot, int pin) | |||
158 | 158 | ||
159 | laddr[0] = (hose->first_busno << 16) | (PCI_DEVFN(slot, 0) << 8); | 159 | laddr[0] = (hose->first_busno << 16) | (PCI_DEVFN(slot, 0) << 8); |
160 | laddr[1] = laddr[2] = 0; | 160 | laddr[1] = laddr[2] = 0; |
161 | of_irq_map_raw(hosenode, &pin, laddr, &oirq); | 161 | of_irq_map_raw(hosenode, &pin, 1, laddr, &oirq); |
162 | DBG("mpc86xx_hpcn: pci irq addr %x, slot %d, pin %d, irq %d\n", | 162 | DBG("mpc86xx_hpcn: pci irq addr %x, slot %d, pin %d, irq %d\n", |
163 | laddr[0], slot, pin, oirq.specifier[0]); | 163 | laddr[0], slot, pin, oirq.specifier[0]); |
164 | return oirq.specifier[0]; | 164 | return oirq.specifier[0]; |
diff --git a/arch/powerpc/sysdev/dart_iommu.c b/arch/powerpc/sysdev/dart_iommu.c index e32fadde1f77..03b4477dd7f0 100644 --- a/arch/powerpc/sysdev/dart_iommu.c +++ b/arch/powerpc/sysdev/dart_iommu.c | |||
@@ -139,6 +139,7 @@ wait_more: | |||
139 | 139 | ||
140 | static void dart_flush(struct iommu_table *tbl) | 140 | static void dart_flush(struct iommu_table *tbl) |
141 | { | 141 | { |
142 | mb(); | ||
142 | if (dart_dirty) { | 143 | if (dart_dirty) { |
143 | dart_tlb_invalidate_all(); | 144 | dart_tlb_invalidate_all(); |
144 | dart_dirty = 0; | 145 | dart_dirty = 0; |
@@ -172,9 +173,13 @@ static void dart_build(struct iommu_table *tbl, long index, | |||
172 | uaddr += DART_PAGE_SIZE; | 173 | uaddr += DART_PAGE_SIZE; |
173 | } | 174 | } |
174 | 175 | ||
176 | /* make sure all updates have reached memory */ | ||
177 | mb(); | ||
178 | in_be32((unsigned __iomem *)dp); | ||
179 | mb(); | ||
180 | |||
175 | if (dart_is_u4) { | 181 | if (dart_is_u4) { |
176 | rpn = index; | 182 | rpn = index; |
177 | mb(); /* make sure all updates have reached memory */ | ||
178 | while (npages--) | 183 | while (npages--) |
179 | dart_tlb_invalidate_one(rpn++); | 184 | dart_tlb_invalidate_one(rpn++); |
180 | } else { | 185 | } else { |
diff --git a/arch/ppc/configs/prep_defconfig b/arch/ppc/configs/prep_defconfig index 4d33bee23a89..0aa333178b2a 100644 --- a/arch/ppc/configs/prep_defconfig +++ b/arch/ppc/configs/prep_defconfig | |||
@@ -1,56 +1,63 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.13-rc3 | 3 | # Linux kernel version: 2.6.18-rc6 |
4 | # Wed Jul 13 13:34:24 2005 | 4 | # Wed Sep 6 15:09:32 2006 |
5 | # | 5 | # |
6 | CONFIG_MMU=y | 6 | CONFIG_MMU=y |
7 | CONFIG_GENERIC_HARDIRQS=y | 7 | CONFIG_GENERIC_HARDIRQS=y |
8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | 8 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y |
9 | CONFIG_GENERIC_HWEIGHT=y | ||
9 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 10 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
10 | CONFIG_HAVE_DEC_LOCK=y | ||
11 | CONFIG_PPC=y | 11 | CONFIG_PPC=y |
12 | CONFIG_PPC32=y | 12 | CONFIG_PPC32=y |
13 | CONFIG_GENERIC_NVRAM=y | 13 | CONFIG_GENERIC_NVRAM=y |
14 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
14 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 15 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y |
16 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
17 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
15 | 18 | ||
16 | # | 19 | # |
17 | # Code maturity level options | 20 | # Code maturity level options |
18 | # | 21 | # |
19 | CONFIG_EXPERIMENTAL=y | 22 | CONFIG_EXPERIMENTAL=y |
20 | CONFIG_CLEAN_COMPILE=y | ||
21 | CONFIG_BROKEN_ON_SMP=y | 23 | CONFIG_BROKEN_ON_SMP=y |
22 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 24 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
23 | 25 | ||
24 | # | 26 | # |
25 | # General setup | 27 | # General setup |
26 | # | 28 | # |
27 | CONFIG_LOCALVERSION="" | 29 | CONFIG_LOCALVERSION="-prep" |
30 | CONFIG_LOCALVERSION_AUTO=y | ||
28 | CONFIG_SWAP=y | 31 | CONFIG_SWAP=y |
29 | CONFIG_SYSVIPC=y | 32 | CONFIG_SYSVIPC=y |
30 | CONFIG_POSIX_MQUEUE=y | 33 | CONFIG_POSIX_MQUEUE=y |
31 | # CONFIG_BSD_PROCESS_ACCT is not set | 34 | # CONFIG_BSD_PROCESS_ACCT is not set |
35 | # CONFIG_TASKSTATS is not set | ||
32 | CONFIG_SYSCTL=y | 36 | CONFIG_SYSCTL=y |
33 | # CONFIG_AUDIT is not set | 37 | # CONFIG_AUDIT is not set |
34 | CONFIG_HOTPLUG=y | ||
35 | CONFIG_KOBJECT_UEVENT=y | ||
36 | CONFIG_IKCONFIG=y | 38 | CONFIG_IKCONFIG=y |
37 | CONFIG_IKCONFIG_PROC=y | 39 | CONFIG_IKCONFIG_PROC=y |
40 | # CONFIG_RELAY is not set | ||
41 | CONFIG_INITRAMFS_SOURCE="" | ||
42 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
38 | # CONFIG_EMBEDDED is not set | 43 | # CONFIG_EMBEDDED is not set |
39 | CONFIG_KALLSYMS=y | 44 | CONFIG_KALLSYMS=y |
40 | # CONFIG_KALLSYMS_ALL is not set | 45 | # CONFIG_KALLSYMS_ALL is not set |
41 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 46 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
47 | CONFIG_HOTPLUG=y | ||
42 | CONFIG_PRINTK=y | 48 | CONFIG_PRINTK=y |
43 | CONFIG_BUG=y | 49 | CONFIG_BUG=y |
50 | CONFIG_ELF_CORE=y | ||
44 | CONFIG_BASE_FULL=y | 51 | CONFIG_BASE_FULL=y |
52 | CONFIG_RT_MUTEXES=y | ||
45 | CONFIG_FUTEX=y | 53 | CONFIG_FUTEX=y |
46 | CONFIG_EPOLL=y | 54 | CONFIG_EPOLL=y |
47 | CONFIG_SHMEM=y | 55 | CONFIG_SHMEM=y |
48 | CONFIG_CC_ALIGN_FUNCTIONS=0 | 56 | CONFIG_SLAB=y |
49 | CONFIG_CC_ALIGN_LABELS=0 | 57 | CONFIG_VM_EVENT_COUNTERS=y |
50 | CONFIG_CC_ALIGN_LOOPS=0 | ||
51 | CONFIG_CC_ALIGN_JUMPS=0 | ||
52 | # CONFIG_TINY_SHMEM is not set | 58 | # CONFIG_TINY_SHMEM is not set |
53 | CONFIG_BASE_SMALL=0 | 59 | CONFIG_BASE_SMALL=0 |
60 | # CONFIG_SLOB is not set | ||
54 | 61 | ||
55 | # | 62 | # |
56 | # Loadable module support | 63 | # Loadable module support |
@@ -58,69 +65,68 @@ CONFIG_BASE_SMALL=0 | |||
58 | CONFIG_MODULES=y | 65 | CONFIG_MODULES=y |
59 | CONFIG_MODULE_UNLOAD=y | 66 | CONFIG_MODULE_UNLOAD=y |
60 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 67 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
61 | CONFIG_OBSOLETE_MODPARM=y | ||
62 | CONFIG_MODVERSIONS=y | 68 | CONFIG_MODVERSIONS=y |
63 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 69 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
64 | CONFIG_KMOD=y | 70 | CONFIG_KMOD=y |
65 | 71 | ||
66 | # | 72 | # |
73 | # Block layer | ||
74 | # | ||
75 | CONFIG_LBD=y | ||
76 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
77 | # CONFIG_LSF is not set | ||
78 | |||
79 | # | ||
80 | # IO Schedulers | ||
81 | # | ||
82 | CONFIG_IOSCHED_NOOP=y | ||
83 | CONFIG_IOSCHED_AS=y | ||
84 | CONFIG_IOSCHED_DEADLINE=y | ||
85 | CONFIG_IOSCHED_CFQ=y | ||
86 | # CONFIG_DEFAULT_AS is not set | ||
87 | # CONFIG_DEFAULT_DEADLINE is not set | ||
88 | CONFIG_DEFAULT_CFQ=y | ||
89 | # CONFIG_DEFAULT_NOOP is not set | ||
90 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
91 | |||
92 | # | ||
67 | # Processor | 93 | # Processor |
68 | # | 94 | # |
69 | CONFIG_6xx=y | 95 | CONFIG_6xx=y |
70 | # CONFIG_40x is not set | 96 | # CONFIG_40x is not set |
71 | # CONFIG_44x is not set | 97 | # CONFIG_44x is not set |
72 | # CONFIG_POWER3 is not set | ||
73 | # CONFIG_POWER4 is not set | ||
74 | # CONFIG_8xx is not set | 98 | # CONFIG_8xx is not set |
75 | # CONFIG_E200 is not set | 99 | # CONFIG_E200 is not set |
76 | # CONFIG_E500 is not set | 100 | # CONFIG_E500 is not set |
77 | CONFIG_PPC_FPU=y | 101 | CONFIG_PPC_FPU=y |
78 | CONFIG_ALTIVEC=y | 102 | # CONFIG_ALTIVEC is not set |
79 | CONFIG_TAU=y | 103 | # CONFIG_TAU is not set |
80 | # CONFIG_TAU_INT is not set | ||
81 | # CONFIG_TAU_AVERAGE is not set | ||
82 | # CONFIG_KEXEC is not set | 104 | # CONFIG_KEXEC is not set |
83 | CONFIG_CPU_FREQ=y | 105 | # CONFIG_CPU_FREQ is not set |
84 | CONFIG_CPU_FREQ_TABLE=y | ||
85 | # CONFIG_CPU_FREQ_DEBUG is not set | ||
86 | CONFIG_CPU_FREQ_STAT=m | ||
87 | CONFIG_CPU_FREQ_STAT_DETAILS=y | ||
88 | CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y | ||
89 | # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set | ||
90 | CONFIG_CPU_FREQ_GOV_PERFORMANCE=y | ||
91 | CONFIG_CPU_FREQ_GOV_POWERSAVE=m | ||
92 | CONFIG_CPU_FREQ_GOV_USERSPACE=m | ||
93 | CONFIG_CPU_FREQ_GOV_ONDEMAND=m | ||
94 | CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m | ||
95 | CONFIG_CPU_FREQ_PMAC=y | ||
96 | CONFIG_PPC601_SYNC_FIX=y | 106 | CONFIG_PPC601_SYNC_FIX=y |
97 | CONFIG_PM=y | 107 | # CONFIG_WANT_EARLY_SERIAL is not set |
98 | CONFIG_PPC_STD_MMU=y | 108 | CONFIG_PPC_STD_MMU=y |
99 | 109 | ||
100 | # | 110 | # |
101 | # Platform options | 111 | # Platform options |
102 | # | 112 | # |
103 | CONFIG_PPC_MULTIPLATFORM=y | 113 | CONFIG_PPC_PREP=y |
104 | # CONFIG_APUS is not set | 114 | # CONFIG_APUS is not set |
105 | # CONFIG_KATANA is not set | 115 | # CONFIG_KATANA is not set |
106 | # CONFIG_WILLOW is not set | 116 | # CONFIG_WILLOW is not set |
107 | # CONFIG_CPCI690 is not set | 117 | # CONFIG_CPCI690 is not set |
108 | # CONFIG_PCORE is not set | ||
109 | # CONFIG_POWERPMC250 is not set | 118 | # CONFIG_POWERPMC250 is not set |
110 | # CONFIG_CHESTNUT is not set | 119 | # CONFIG_CHESTNUT is not set |
111 | # CONFIG_SPRUCE is not set | 120 | # CONFIG_SPRUCE is not set |
112 | # CONFIG_HDPU is not set | 121 | # CONFIG_HDPU is not set |
113 | # CONFIG_EV64260 is not set | 122 | # CONFIG_EV64260 is not set |
114 | # CONFIG_LOPEC is not set | 123 | # CONFIG_LOPEC is not set |
115 | # CONFIG_MCPN765 is not set | ||
116 | # CONFIG_MVME5100 is not set | 124 | # CONFIG_MVME5100 is not set |
117 | # CONFIG_PPLUS is not set | 125 | # CONFIG_PPLUS is not set |
118 | # CONFIG_PRPMC750 is not set | 126 | # CONFIG_PRPMC750 is not set |
119 | # CONFIG_PRPMC800 is not set | 127 | # CONFIG_PRPMC800 is not set |
120 | # CONFIG_SANDPOINT is not set | 128 | # CONFIG_SANDPOINT is not set |
121 | # CONFIG_RADSTONE_PPC7D is not set | 129 | # CONFIG_RADSTONE_PPC7D is not set |
122 | # CONFIG_ADIR is not set | ||
123 | # CONFIG_K2 is not set | ||
124 | # CONFIG_PAL4 is not set | 130 | # CONFIG_PAL4 is not set |
125 | # CONFIG_GEMINI is not set | 131 | # CONFIG_GEMINI is not set |
126 | # CONFIG_EST8260 is not set | 132 | # CONFIG_EST8260 is not set |
@@ -132,10 +138,7 @@ CONFIG_PPC_MULTIPLATFORM=y | |||
132 | # CONFIG_PQ2FADS is not set | 138 | # CONFIG_PQ2FADS is not set |
133 | # CONFIG_LITE5200 is not set | 139 | # CONFIG_LITE5200 is not set |
134 | # CONFIG_MPC834x_SYS is not set | 140 | # CONFIG_MPC834x_SYS is not set |
135 | CONFIG_PPC_CHRP=y | 141 | # CONFIG_EV64360 is not set |
136 | CONFIG_PPC_PMAC=y | ||
137 | CONFIG_PPC_PREP=y | ||
138 | CONFIG_PPC_OF=y | ||
139 | CONFIG_PPCBUG_NVRAM=y | 142 | CONFIG_PPCBUG_NVRAM=y |
140 | # CONFIG_SMP is not set | 143 | # CONFIG_SMP is not set |
141 | # CONFIG_HIGHMEM is not set | 144 | # CONFIG_HIGHMEM is not set |
@@ -152,12 +155,16 @@ CONFIG_FLATMEM_MANUAL=y | |||
152 | # CONFIG_SPARSEMEM_MANUAL is not set | 155 | # CONFIG_SPARSEMEM_MANUAL is not set |
153 | CONFIG_FLATMEM=y | 156 | CONFIG_FLATMEM=y |
154 | CONFIG_FLAT_NODE_MEM_MAP=y | 157 | CONFIG_FLAT_NODE_MEM_MAP=y |
158 | # CONFIG_SPARSEMEM_STATIC is not set | ||
159 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
160 | # CONFIG_RESOURCES_64BIT is not set | ||
155 | CONFIG_BINFMT_ELF=y | 161 | CONFIG_BINFMT_ELF=y |
156 | CONFIG_BINFMT_MISC=m | 162 | CONFIG_BINFMT_MISC=m |
157 | CONFIG_PROC_DEVICETREE=y | ||
158 | CONFIG_PREP_RESIDUAL=y | 163 | CONFIG_PREP_RESIDUAL=y |
159 | CONFIG_PROC_PREPRESIDUAL=y | 164 | CONFIG_PROC_PREPRESIDUAL=y |
160 | # CONFIG_CMDLINE_BOOL is not set | 165 | # CONFIG_CMDLINE_BOOL is not set |
166 | CONFIG_PM=y | ||
167 | # CONFIG_PM_LEGACY is not set | ||
161 | # CONFIG_PM_DEBUG is not set | 168 | # CONFIG_PM_DEBUG is not set |
162 | CONFIG_SOFTWARE_SUSPEND=y | 169 | CONFIG_SOFTWARE_SUSPEND=y |
163 | CONFIG_PM_STD_PARTITION="" | 170 | CONFIG_PM_STD_PARTITION="" |
@@ -169,10 +176,10 @@ CONFIG_ISA_DMA_API=y | |||
169 | # | 176 | # |
170 | CONFIG_ISA=y | 177 | CONFIG_ISA=y |
171 | CONFIG_GENERIC_ISA_DMA=y | 178 | CONFIG_GENERIC_ISA_DMA=y |
179 | CONFIG_PPC_I8259=y | ||
180 | CONFIG_PPC_INDIRECT_PCI=y | ||
172 | CONFIG_PCI=y | 181 | CONFIG_PCI=y |
173 | CONFIG_PCI_DOMAINS=y | 182 | CONFIG_PCI_DOMAINS=y |
174 | # CONFIG_PCI_LEGACY_PROC is not set | ||
175 | # CONFIG_PCI_NAMES is not set | ||
176 | # CONFIG_PCI_DEBUG is not set | 183 | # CONFIG_PCI_DEBUG is not set |
177 | 184 | ||
178 | # | 185 | # |
@@ -187,6 +194,11 @@ CONFIG_CARDBUS=y | |||
187 | # PC-card bridges | 194 | # PC-card bridges |
188 | # | 195 | # |
189 | CONFIG_YENTA=m | 196 | CONFIG_YENTA=m |
197 | CONFIG_YENTA_O2=y | ||
198 | CONFIG_YENTA_RICOH=y | ||
199 | CONFIG_YENTA_TI=y | ||
200 | CONFIG_YENTA_ENE_TUNE=y | ||
201 | CONFIG_YENTA_TOSHIBA=y | ||
190 | CONFIG_PCMCIA_PROBE=y | 202 | CONFIG_PCMCIA_PROBE=y |
191 | CONFIG_PCCARD_NONSTATIC=m | 203 | CONFIG_PCCARD_NONSTATIC=m |
192 | 204 | ||
@@ -212,6 +224,7 @@ CONFIG_NET=y | |||
212 | # | 224 | # |
213 | # Networking options | 225 | # Networking options |
214 | # | 226 | # |
227 | # CONFIG_NETDEBUG is not set | ||
215 | CONFIG_PACKET=y | 228 | CONFIG_PACKET=y |
216 | # CONFIG_PACKET_MMAP is not set | 229 | # CONFIG_PACKET_MMAP is not set |
217 | CONFIG_UNIX=y | 230 | CONFIG_UNIX=y |
@@ -229,9 +242,11 @@ CONFIG_SYN_COOKIES=y | |||
229 | # CONFIG_INET_AH is not set | 242 | # CONFIG_INET_AH is not set |
230 | # CONFIG_INET_ESP is not set | 243 | # CONFIG_INET_ESP is not set |
231 | # CONFIG_INET_IPCOMP is not set | 244 | # CONFIG_INET_IPCOMP is not set |
245 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
232 | # CONFIG_INET_TUNNEL is not set | 246 | # CONFIG_INET_TUNNEL is not set |
233 | CONFIG_IP_TCPDIAG=y | 247 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set |
234 | # CONFIG_IP_TCPDIAG_IPV6 is not set | 248 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set |
249 | # CONFIG_INET_DIAG is not set | ||
235 | # CONFIG_TCP_CONG_ADVANCED is not set | 250 | # CONFIG_TCP_CONG_ADVANCED is not set |
236 | CONFIG_TCP_CONG_BIC=y | 251 | CONFIG_TCP_CONG_BIC=y |
237 | 252 | ||
@@ -240,80 +255,77 @@ CONFIG_TCP_CONG_BIC=y | |||
240 | # | 255 | # |
241 | # CONFIG_IP_VS is not set | 256 | # CONFIG_IP_VS is not set |
242 | # CONFIG_IPV6 is not set | 257 | # CONFIG_IPV6 is not set |
258 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
259 | # CONFIG_INET6_TUNNEL is not set | ||
260 | # CONFIG_NETWORK_SECMARK is not set | ||
243 | CONFIG_NETFILTER=y | 261 | CONFIG_NETFILTER=y |
244 | # CONFIG_NETFILTER_DEBUG is not set | 262 | # CONFIG_NETFILTER_DEBUG is not set |
245 | 263 | ||
246 | # | 264 | # |
265 | # Core Netfilter Configuration | ||
266 | # | ||
267 | CONFIG_NETFILTER_NETLINK=m | ||
268 | CONFIG_NETFILTER_NETLINK_QUEUE=m | ||
269 | CONFIG_NETFILTER_NETLINK_LOG=m | ||
270 | CONFIG_NETFILTER_XTABLES=m | ||
271 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | ||
272 | CONFIG_NETFILTER_XT_TARGET_MARK=m | ||
273 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | ||
274 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | ||
275 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | ||
276 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m | ||
277 | CONFIG_NETFILTER_XT_MATCH_DCCP=m | ||
278 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
280 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
281 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
282 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
283 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
284 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
285 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
286 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
287 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
288 | CONFIG_NETFILTER_XT_MATCH_SCTP=m | ||
289 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
290 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
291 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
292 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
293 | |||
294 | # | ||
247 | # IP: Netfilter Configuration | 295 | # IP: Netfilter Configuration |
248 | # | 296 | # |
249 | CONFIG_IP_NF_CONNTRACK=m | 297 | CONFIG_IP_NF_CONNTRACK=m |
250 | # CONFIG_IP_NF_CT_ACCT is not set | 298 | # CONFIG_IP_NF_CT_ACCT is not set |
251 | CONFIG_IP_NF_CONNTRACK_MARK=y | 299 | CONFIG_IP_NF_CONNTRACK_MARK=y |
300 | # CONFIG_IP_NF_CONNTRACK_EVENTS is not set | ||
301 | # CONFIG_IP_NF_CONNTRACK_NETLINK is not set | ||
252 | # CONFIG_IP_NF_CT_PROTO_SCTP is not set | 302 | # CONFIG_IP_NF_CT_PROTO_SCTP is not set |
253 | CONFIG_IP_NF_FTP=m | 303 | CONFIG_IP_NF_FTP=m |
254 | CONFIG_IP_NF_IRC=m | 304 | CONFIG_IP_NF_IRC=m |
305 | # CONFIG_IP_NF_NETBIOS_NS is not set | ||
255 | CONFIG_IP_NF_TFTP=m | 306 | CONFIG_IP_NF_TFTP=m |
256 | CONFIG_IP_NF_AMANDA=m | 307 | CONFIG_IP_NF_AMANDA=m |
308 | # CONFIG_IP_NF_PPTP is not set | ||
309 | # CONFIG_IP_NF_H323 is not set | ||
310 | # CONFIG_IP_NF_SIP is not set | ||
257 | CONFIG_IP_NF_QUEUE=m | 311 | CONFIG_IP_NF_QUEUE=m |
258 | CONFIG_IP_NF_IPTABLES=m | 312 | # CONFIG_IP_NF_IPTABLES is not set |
259 | CONFIG_IP_NF_MATCH_LIMIT=m | 313 | # CONFIG_IP_NF_ARPTABLES is not set |
260 | CONFIG_IP_NF_MATCH_IPRANGE=m | 314 | |
261 | CONFIG_IP_NF_MATCH_MAC=m | 315 | # |
262 | CONFIG_IP_NF_MATCH_PKTTYPE=m | 316 | # DCCP Configuration (EXPERIMENTAL) |
263 | CONFIG_IP_NF_MATCH_MARK=m | 317 | # |
264 | CONFIG_IP_NF_MATCH_MULTIPORT=m | 318 | # CONFIG_IP_DCCP is not set |
265 | CONFIG_IP_NF_MATCH_TOS=m | ||
266 | CONFIG_IP_NF_MATCH_RECENT=m | ||
267 | CONFIG_IP_NF_MATCH_ECN=m | ||
268 | CONFIG_IP_NF_MATCH_DSCP=m | ||
269 | CONFIG_IP_NF_MATCH_AH_ESP=m | ||
270 | CONFIG_IP_NF_MATCH_LENGTH=m | ||
271 | CONFIG_IP_NF_MATCH_TTL=m | ||
272 | CONFIG_IP_NF_MATCH_TCPMSS=m | ||
273 | CONFIG_IP_NF_MATCH_HELPER=m | ||
274 | CONFIG_IP_NF_MATCH_STATE=m | ||
275 | CONFIG_IP_NF_MATCH_CONNTRACK=m | ||
276 | CONFIG_IP_NF_MATCH_OWNER=m | ||
277 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
278 | CONFIG_IP_NF_MATCH_REALM=m | ||
279 | CONFIG_IP_NF_MATCH_SCTP=m | ||
280 | CONFIG_IP_NF_MATCH_COMMENT=m | ||
281 | CONFIG_IP_NF_MATCH_CONNMARK=m | ||
282 | CONFIG_IP_NF_MATCH_HASHLIMIT=m | ||
283 | CONFIG_IP_NF_FILTER=m | ||
284 | CONFIG_IP_NF_TARGET_REJECT=m | ||
285 | CONFIG_IP_NF_TARGET_LOG=m | ||
286 | CONFIG_IP_NF_TARGET_ULOG=m | ||
287 | CONFIG_IP_NF_TARGET_TCPMSS=m | ||
288 | CONFIG_IP_NF_NAT=m | ||
289 | CONFIG_IP_NF_NAT_NEEDED=y | ||
290 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
291 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
292 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
293 | CONFIG_IP_NF_TARGET_SAME=m | ||
294 | CONFIG_IP_NF_NAT_SNMP_BASIC=m | ||
295 | CONFIG_IP_NF_NAT_IRC=m | ||
296 | CONFIG_IP_NF_NAT_FTP=m | ||
297 | CONFIG_IP_NF_NAT_TFTP=m | ||
298 | CONFIG_IP_NF_NAT_AMANDA=m | ||
299 | CONFIG_IP_NF_MANGLE=m | ||
300 | CONFIG_IP_NF_TARGET_TOS=m | ||
301 | CONFIG_IP_NF_TARGET_ECN=m | ||
302 | CONFIG_IP_NF_TARGET_DSCP=m | ||
303 | CONFIG_IP_NF_TARGET_MARK=m | ||
304 | CONFIG_IP_NF_TARGET_CLASSIFY=m | ||
305 | CONFIG_IP_NF_TARGET_CONNMARK=m | ||
306 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
307 | CONFIG_IP_NF_RAW=m | ||
308 | CONFIG_IP_NF_TARGET_NOTRACK=m | ||
309 | CONFIG_IP_NF_ARPTABLES=m | ||
310 | # CONFIG_IP_NF_ARPFILTER is not set | ||
311 | # CONFIG_IP_NF_ARP_MANGLE is not set | ||
312 | 319 | ||
313 | # | 320 | # |
314 | # SCTP Configuration (EXPERIMENTAL) | 321 | # SCTP Configuration (EXPERIMENTAL) |
315 | # | 322 | # |
316 | # CONFIG_IP_SCTP is not set | 323 | # CONFIG_IP_SCTP is not set |
324 | |||
325 | # | ||
326 | # TIPC Configuration (EXPERIMENTAL) | ||
327 | # | ||
328 | # CONFIG_TIPC is not set | ||
317 | # CONFIG_ATM is not set | 329 | # CONFIG_ATM is not set |
318 | # CONFIG_BRIDGE is not set | 330 | # CONFIG_BRIDGE is not set |
319 | # CONFIG_VLAN_8021Q is not set | 331 | # CONFIG_VLAN_8021Q is not set |
@@ -326,6 +338,10 @@ CONFIG_IP_NF_ARPTABLES=m | |||
326 | # CONFIG_NET_DIVERT is not set | 338 | # CONFIG_NET_DIVERT is not set |
327 | # CONFIG_ECONET is not set | 339 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 340 | # CONFIG_WAN_ROUTER is not set |
341 | |||
342 | # | ||
343 | # QoS and/or fair queueing | ||
344 | # | ||
329 | # CONFIG_NET_SCHED is not set | 345 | # CONFIG_NET_SCHED is not set |
330 | CONFIG_NET_CLS_ROUTE=y | 346 | CONFIG_NET_CLS_ROUTE=y |
331 | 347 | ||
@@ -333,13 +349,11 @@ CONFIG_NET_CLS_ROUTE=y | |||
333 | # Network testing | 349 | # Network testing |
334 | # | 350 | # |
335 | # CONFIG_NET_PKTGEN is not set | 351 | # CONFIG_NET_PKTGEN is not set |
336 | CONFIG_NETPOLL=y | ||
337 | # CONFIG_NETPOLL_RX is not set | ||
338 | # CONFIG_NETPOLL_TRAP is not set | ||
339 | CONFIG_NET_POLL_CONTROLLER=y | ||
340 | # CONFIG_HAMRADIO is not set | 352 | # CONFIG_HAMRADIO is not set |
341 | # CONFIG_IRDA is not set | 353 | # CONFIG_IRDA is not set |
342 | # CONFIG_BT is not set | 354 | # CONFIG_BT is not set |
355 | # CONFIG_IEEE80211 is not set | ||
356 | CONFIG_WIRELESS_EXT=y | ||
343 | 357 | ||
344 | # | 358 | # |
345 | # Device Drivers | 359 | # Device Drivers |
@@ -352,6 +366,12 @@ CONFIG_NET_POLL_CONTROLLER=y | |||
352 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 366 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
353 | CONFIG_FW_LOADER=m | 367 | CONFIG_FW_LOADER=m |
354 | # CONFIG_DEBUG_DRIVER is not set | 368 | # CONFIG_DEBUG_DRIVER is not set |
369 | # CONFIG_SYS_HYPERVISOR is not set | ||
370 | |||
371 | # | ||
372 | # Connector - unified userspace <-> kernelspace linker | ||
373 | # | ||
374 | # CONFIG_CONNECTOR is not set | ||
355 | 375 | ||
356 | # | 376 | # |
357 | # Memory Technology Devices (MTD) | 377 | # Memory Technology Devices (MTD) |
@@ -367,6 +387,7 @@ CONFIG_PARPORT_SERIAL=m | |||
367 | CONFIG_PARPORT_PC_FIFO=y | 387 | CONFIG_PARPORT_PC_FIFO=y |
368 | CONFIG_PARPORT_PC_SUPERIO=y | 388 | CONFIG_PARPORT_PC_SUPERIO=y |
369 | # CONFIG_PARPORT_GSC is not set | 389 | # CONFIG_PARPORT_GSC is not set |
390 | # CONFIG_PARPORT_AX88796 is not set | ||
370 | CONFIG_PARPORT_1284=y | 391 | CONFIG_PARPORT_1284=y |
371 | 392 | ||
372 | # | 393 | # |
@@ -378,7 +399,6 @@ CONFIG_PARPORT_1284=y | |||
378 | # Block devices | 399 | # Block devices |
379 | # | 400 | # |
380 | CONFIG_BLK_DEV_FD=m | 401 | CONFIG_BLK_DEV_FD=m |
381 | CONFIG_MAC_FLOPPY=m | ||
382 | # CONFIG_BLK_DEV_XD is not set | 402 | # CONFIG_BLK_DEV_XD is not set |
383 | # CONFIG_PARIDE is not set | 403 | # CONFIG_PARIDE is not set |
384 | # CONFIG_BLK_CPQ_DA is not set | 404 | # CONFIG_BLK_CPQ_DA is not set |
@@ -394,18 +414,9 @@ CONFIG_BLK_DEV_LOOP=y | |||
394 | CONFIG_BLK_DEV_RAM=y | 414 | CONFIG_BLK_DEV_RAM=y |
395 | CONFIG_BLK_DEV_RAM_COUNT=16 | 415 | CONFIG_BLK_DEV_RAM_COUNT=16 |
396 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 416 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
417 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
397 | CONFIG_BLK_DEV_INITRD=y | 418 | CONFIG_BLK_DEV_INITRD=y |
398 | CONFIG_INITRAMFS_SOURCE="" | ||
399 | CONFIG_LBD=y | ||
400 | # CONFIG_CDROM_PKTCDVD is not set | 419 | # CONFIG_CDROM_PKTCDVD is not set |
401 | |||
402 | # | ||
403 | # IO Schedulers | ||
404 | # | ||
405 | CONFIG_IOSCHED_NOOP=y | ||
406 | CONFIG_IOSCHED_AS=y | ||
407 | CONFIG_IOSCHED_DEADLINE=y | ||
408 | CONFIG_IOSCHED_CFQ=y | ||
409 | # CONFIG_ATA_OVER_ETH is not set | 420 | # CONFIG_ATA_OVER_ETH is not set |
410 | 421 | ||
411 | # | 422 | # |
@@ -422,7 +433,7 @@ CONFIG_BLK_DEV_IDEDISK=y | |||
422 | # CONFIG_IDEDISK_MULTI_MODE is not set | 433 | # CONFIG_IDEDISK_MULTI_MODE is not set |
423 | CONFIG_BLK_DEV_IDECD=y | 434 | CONFIG_BLK_DEV_IDECD=y |
424 | # CONFIG_BLK_DEV_IDETAPE is not set | 435 | # CONFIG_BLK_DEV_IDETAPE is not set |
425 | CONFIG_BLK_DEV_IDEFLOPPY=y | 436 | # CONFIG_BLK_DEV_IDEFLOPPY is not set |
426 | CONFIG_BLK_DEV_IDESCSI=y | 437 | CONFIG_BLK_DEV_IDESCSI=y |
427 | # CONFIG_IDE_TASK_IOCTL is not set | 438 | # CONFIG_IDE_TASK_IOCTL is not set |
428 | 439 | ||
@@ -435,7 +446,7 @@ CONFIG_IDEPCI_SHARE_IRQ=y | |||
435 | # CONFIG_BLK_DEV_OFFBOARD is not set | 446 | # CONFIG_BLK_DEV_OFFBOARD is not set |
436 | CONFIG_BLK_DEV_GENERIC=y | 447 | CONFIG_BLK_DEV_GENERIC=y |
437 | # CONFIG_BLK_DEV_OPTI621 is not set | 448 | # CONFIG_BLK_DEV_OPTI621 is not set |
438 | # CONFIG_BLK_DEV_SL82C105 is not set | 449 | CONFIG_BLK_DEV_SL82C105=y |
439 | CONFIG_BLK_DEV_IDEDMA_PCI=y | 450 | CONFIG_BLK_DEV_IDEDMA_PCI=y |
440 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | 451 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set |
441 | CONFIG_IDEDMA_PCI_AUTO=y | 452 | CONFIG_IDEDMA_PCI_AUTO=y |
@@ -443,7 +454,7 @@ CONFIG_IDEDMA_PCI_AUTO=y | |||
443 | # CONFIG_BLK_DEV_AEC62XX is not set | 454 | # CONFIG_BLK_DEV_AEC62XX is not set |
444 | # CONFIG_BLK_DEV_ALI15X3 is not set | 455 | # CONFIG_BLK_DEV_ALI15X3 is not set |
445 | # CONFIG_BLK_DEV_AMD74XX is not set | 456 | # CONFIG_BLK_DEV_AMD74XX is not set |
446 | CONFIG_BLK_DEV_CMD64X=y | 457 | # CONFIG_BLK_DEV_CMD64X is not set |
447 | # CONFIG_BLK_DEV_TRIFLEX is not set | 458 | # CONFIG_BLK_DEV_TRIFLEX is not set |
448 | # CONFIG_BLK_DEV_CY82C693 is not set | 459 | # CONFIG_BLK_DEV_CY82C693 is not set |
449 | # CONFIG_BLK_DEV_CS5520 is not set | 460 | # CONFIG_BLK_DEV_CS5520 is not set |
@@ -455,17 +466,12 @@ CONFIG_BLK_DEV_CMD64X=y | |||
455 | # CONFIG_BLK_DEV_IT821X is not set | 466 | # CONFIG_BLK_DEV_IT821X is not set |
456 | # CONFIG_BLK_DEV_NS87415 is not set | 467 | # CONFIG_BLK_DEV_NS87415 is not set |
457 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | 468 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set |
458 | CONFIG_BLK_DEV_PDC202XX_NEW=y | 469 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set |
459 | # CONFIG_PDC202XX_FORCE is not set | ||
460 | # CONFIG_BLK_DEV_SVWKS is not set | 470 | # CONFIG_BLK_DEV_SVWKS is not set |
461 | # CONFIG_BLK_DEV_SIIMAGE is not set | 471 | # CONFIG_BLK_DEV_SIIMAGE is not set |
462 | # CONFIG_BLK_DEV_SLC90E66 is not set | 472 | # CONFIG_BLK_DEV_SLC90E66 is not set |
463 | # CONFIG_BLK_DEV_TRM290 is not set | 473 | # CONFIG_BLK_DEV_TRM290 is not set |
464 | # CONFIG_BLK_DEV_VIA82CXXX is not set | 474 | # CONFIG_BLK_DEV_VIA82CXXX is not set |
465 | CONFIG_BLK_DEV_IDE_PMAC=y | ||
466 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | ||
467 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | ||
468 | CONFIG_BLK_DEV_IDE_PMAC_BLINK=y | ||
469 | # CONFIG_IDE_ARM is not set | 475 | # CONFIG_IDE_ARM is not set |
470 | # CONFIG_IDE_CHIPSETS is not set | 476 | # CONFIG_IDE_CHIPSETS is not set |
471 | CONFIG_BLK_DEV_IDEDMA=y | 477 | CONFIG_BLK_DEV_IDEDMA=y |
@@ -476,6 +482,7 @@ CONFIG_IDEDMA_AUTO=y | |||
476 | # | 482 | # |
477 | # SCSI device support | 483 | # SCSI device support |
478 | # | 484 | # |
485 | # CONFIG_RAID_ATTRS is not set | ||
479 | CONFIG_SCSI=y | 486 | CONFIG_SCSI=y |
480 | CONFIG_SCSI_PROC_FS=y | 487 | CONFIG_SCSI_PROC_FS=y |
481 | 488 | ||
@@ -503,10 +510,12 @@ CONFIG_SCSI_LOGGING=y | |||
503 | CONFIG_SCSI_SPI_ATTRS=y | 510 | CONFIG_SCSI_SPI_ATTRS=y |
504 | # CONFIG_SCSI_FC_ATTRS is not set | 511 | # CONFIG_SCSI_FC_ATTRS is not set |
505 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 512 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
513 | # CONFIG_SCSI_SAS_ATTRS is not set | ||
506 | 514 | ||
507 | # | 515 | # |
508 | # SCSI low-level drivers | 516 | # SCSI low-level drivers |
509 | # | 517 | # |
518 | # CONFIG_ISCSI_TCP is not set | ||
510 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 519 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
511 | # CONFIG_SCSI_3W_9XXX is not set | 520 | # CONFIG_SCSI_3W_9XXX is not set |
512 | # CONFIG_SCSI_7000FASST is not set | 521 | # CONFIG_SCSI_7000FASST is not set |
@@ -514,19 +523,16 @@ CONFIG_SCSI_SPI_ATTRS=y | |||
514 | # CONFIG_SCSI_AHA152X is not set | 523 | # CONFIG_SCSI_AHA152X is not set |
515 | # CONFIG_SCSI_AHA1542 is not set | 524 | # CONFIG_SCSI_AHA1542 is not set |
516 | # CONFIG_SCSI_AACRAID is not set | 525 | # CONFIG_SCSI_AACRAID is not set |
517 | CONFIG_SCSI_AIC7XXX=m | 526 | # CONFIG_SCSI_AIC7XXX is not set |
518 | CONFIG_AIC7XXX_CMDS_PER_DEVICE=253 | 527 | # CONFIG_SCSI_AIC7XXX_OLD is not set |
519 | CONFIG_AIC7XXX_RESET_DELAY_MS=15000 | ||
520 | CONFIG_AIC7XXX_DEBUG_ENABLE=y | ||
521 | CONFIG_AIC7XXX_DEBUG_MASK=0 | ||
522 | CONFIG_AIC7XXX_REG_PRETTY_PRINT=y | ||
523 | CONFIG_SCSI_AIC7XXX_OLD=m | ||
524 | # CONFIG_SCSI_AIC79XX is not set | 528 | # CONFIG_SCSI_AIC79XX is not set |
525 | # CONFIG_SCSI_DPT_I2O is not set | 529 | # CONFIG_SCSI_DPT_I2O is not set |
526 | # CONFIG_SCSI_IN2000 is not set | 530 | # CONFIG_SCSI_IN2000 is not set |
527 | # CONFIG_MEGARAID_NEWGEN is not set | 531 | # CONFIG_MEGARAID_NEWGEN is not set |
528 | # CONFIG_MEGARAID_LEGACY is not set | 532 | # CONFIG_MEGARAID_LEGACY is not set |
533 | # CONFIG_MEGARAID_SAS is not set | ||
529 | # CONFIG_SCSI_SATA is not set | 534 | # CONFIG_SCSI_SATA is not set |
535 | # CONFIG_SCSI_HPTIOP is not set | ||
530 | # CONFIG_SCSI_BUSLOGIC is not set | 536 | # CONFIG_SCSI_BUSLOGIC is not set |
531 | # CONFIG_SCSI_DMX3191D is not set | 537 | # CONFIG_SCSI_DMX3191D is not set |
532 | # CONFIG_SCSI_DTC3280 is not set | 538 | # CONFIG_SCSI_DTC3280 is not set |
@@ -545,19 +551,13 @@ CONFIG_SCSI_SYM53C8XX_2=y | |||
545 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 | 551 | CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=0 |
546 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 | 552 | CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 |
547 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 | 553 | CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 |
548 | # CONFIG_SCSI_SYM53C8XX_IOMAPPED is not set | 554 | CONFIG_SCSI_SYM53C8XX_MMIO=y |
549 | # CONFIG_SCSI_IPR is not set | 555 | # CONFIG_SCSI_IPR is not set |
550 | # CONFIG_SCSI_PAS16 is not set | 556 | # CONFIG_SCSI_PAS16 is not set |
551 | # CONFIG_SCSI_PSI240I is not set | 557 | # CONFIG_SCSI_PSI240I is not set |
552 | # CONFIG_SCSI_QLOGIC_FAS is not set | 558 | # CONFIG_SCSI_QLOGIC_FAS is not set |
553 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
554 | # CONFIG_SCSI_QLOGIC_1280 is not set | 559 | # CONFIG_SCSI_QLOGIC_1280 is not set |
555 | CONFIG_SCSI_QLA2XXX=y | 560 | # CONFIG_SCSI_QLA_FC is not set |
556 | # CONFIG_SCSI_QLA21XX is not set | ||
557 | # CONFIG_SCSI_QLA22XX is not set | ||
558 | # CONFIG_SCSI_QLA2300 is not set | ||
559 | # CONFIG_SCSI_QLA2322 is not set | ||
560 | # CONFIG_SCSI_QLA6312 is not set | ||
561 | # CONFIG_SCSI_LPFC is not set | 561 | # CONFIG_SCSI_LPFC is not set |
562 | # CONFIG_SCSI_SYM53C416 is not set | 562 | # CONFIG_SCSI_SYM53C416 is not set |
563 | # CONFIG_SCSI_DC395x is not set | 563 | # CONFIG_SCSI_DC395x is not set |
@@ -566,10 +566,6 @@ CONFIG_SCSI_QLA2XXX=y | |||
566 | # CONFIG_SCSI_U14_34F is not set | 566 | # CONFIG_SCSI_U14_34F is not set |
567 | # CONFIG_SCSI_NSP32 is not set | 567 | # CONFIG_SCSI_NSP32 is not set |
568 | # CONFIG_SCSI_DEBUG is not set | 568 | # CONFIG_SCSI_DEBUG is not set |
569 | CONFIG_SCSI_MESH=y | ||
570 | CONFIG_SCSI_MESH_SYNC_RATE=5 | ||
571 | CONFIG_SCSI_MESH_RESET_DELAY_MS=4000 | ||
572 | CONFIG_SCSI_MAC53C94=y | ||
573 | 569 | ||
574 | # | 570 | # |
575 | # Old CD-ROM drivers (not SCSI, not IDE) | 571 | # Old CD-ROM drivers (not SCSI, not IDE) |
@@ -587,6 +583,7 @@ CONFIG_SCSI_MAC53C94=y | |||
587 | # CONFIG_FUSION is not set | 583 | # CONFIG_FUSION is not set |
588 | # CONFIG_FUSION_SPI is not set | 584 | # CONFIG_FUSION_SPI is not set |
589 | # CONFIG_FUSION_FC is not set | 585 | # CONFIG_FUSION_FC is not set |
586 | # CONFIG_FUSION_SAS is not set | ||
590 | 587 | ||
591 | # | 588 | # |
592 | # IEEE 1394 (FireWire) support | 589 | # IEEE 1394 (FireWire) support |
@@ -613,12 +610,9 @@ CONFIG_IEEE1394_OHCI1394=m | |||
613 | # | 610 | # |
614 | CONFIG_IEEE1394_VIDEO1394=m | 611 | CONFIG_IEEE1394_VIDEO1394=m |
615 | CONFIG_IEEE1394_SBP2=m | 612 | CONFIG_IEEE1394_SBP2=m |
616 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | ||
617 | CONFIG_IEEE1394_ETH1394=m | 613 | CONFIG_IEEE1394_ETH1394=m |
618 | CONFIG_IEEE1394_DV1394=m | 614 | CONFIG_IEEE1394_DV1394=m |
619 | CONFIG_IEEE1394_RAWIO=m | 615 | CONFIG_IEEE1394_RAWIO=m |
620 | CONFIG_IEEE1394_CMP=m | ||
621 | CONFIG_IEEE1394_AMDTP=m | ||
622 | 616 | ||
623 | # | 617 | # |
624 | # I2O device support | 618 | # I2O device support |
@@ -628,18 +622,7 @@ CONFIG_IEEE1394_AMDTP=m | |||
628 | # | 622 | # |
629 | # Macintosh device drivers | 623 | # Macintosh device drivers |
630 | # | 624 | # |
631 | CONFIG_ADB=y | 625 | # CONFIG_WINDFARM is not set |
632 | CONFIG_ADB_CUDA=y | ||
633 | CONFIG_ADB_PMU=y | ||
634 | CONFIG_PMAC_APM_EMU=y | ||
635 | CONFIG_PMAC_MEDIABAY=y | ||
636 | CONFIG_PMAC_BACKLIGHT=y | ||
637 | CONFIG_ADB_MACIO=y | ||
638 | CONFIG_INPUT_ADBHID=y | ||
639 | CONFIG_MAC_EMUMOUSEBTN=y | ||
640 | CONFIG_THERM_WINDTUNNEL=m | ||
641 | CONFIG_THERM_ADT746X=m | ||
642 | # CONFIG_ANSLCD is not set | ||
643 | 626 | ||
644 | # | 627 | # |
645 | # Network device support | 628 | # Network device support |
@@ -656,15 +639,18 @@ CONFIG_TUN=m | |||
656 | # CONFIG_ARCNET is not set | 639 | # CONFIG_ARCNET is not set |
657 | 640 | ||
658 | # | 641 | # |
642 | # PHY device support | ||
643 | # | ||
644 | # CONFIG_PHYLIB is not set | ||
645 | |||
646 | # | ||
659 | # Ethernet (10 or 100Mbit) | 647 | # Ethernet (10 or 100Mbit) |
660 | # | 648 | # |
661 | CONFIG_NET_ETHERNET=y | 649 | CONFIG_NET_ETHERNET=y |
662 | CONFIG_MII=y | 650 | CONFIG_MII=y |
663 | CONFIG_MACE=y | ||
664 | # CONFIG_MACE_AAUI_PORT is not set | ||
665 | CONFIG_BMAC=y | ||
666 | # CONFIG_HAPPYMEAL is not set | 651 | # CONFIG_HAPPYMEAL is not set |
667 | CONFIG_SUNGEM=y | 652 | # CONFIG_SUNGEM is not set |
653 | # CONFIG_CASSINI is not set | ||
668 | # CONFIG_NET_VENDOR_3COM is not set | 654 | # CONFIG_NET_VENDOR_3COM is not set |
669 | # CONFIG_LANCE is not set | 655 | # CONFIG_LANCE is not set |
670 | # CONFIG_NET_VENDOR_SMC is not set | 656 | # CONFIG_NET_VENDOR_SMC is not set |
@@ -682,6 +668,7 @@ CONFIG_TULIP_MMIO=y | |||
682 | CONFIG_DE4X5=m | 668 | CONFIG_DE4X5=m |
683 | # CONFIG_WINBOND_840 is not set | 669 | # CONFIG_WINBOND_840 is not set |
684 | # CONFIG_DM9102 is not set | 670 | # CONFIG_DM9102 is not set |
671 | # CONFIG_ULI526X is not set | ||
685 | # CONFIG_PCMCIA_XIRCOM is not set | 672 | # CONFIG_PCMCIA_XIRCOM is not set |
686 | # CONFIG_PCMCIA_XIRTULIP is not set | 673 | # CONFIG_PCMCIA_XIRTULIP is not set |
687 | # CONFIG_AT1700 is not set | 674 | # CONFIG_AT1700 is not set |
@@ -722,18 +709,21 @@ CONFIG_PCNET32=y | |||
722 | # CONFIG_HAMACHI is not set | 709 | # CONFIG_HAMACHI is not set |
723 | # CONFIG_YELLOWFIN is not set | 710 | # CONFIG_YELLOWFIN is not set |
724 | # CONFIG_R8169 is not set | 711 | # CONFIG_R8169 is not set |
712 | # CONFIG_SIS190 is not set | ||
725 | # CONFIG_SKGE is not set | 713 | # CONFIG_SKGE is not set |
714 | # CONFIG_SKY2 is not set | ||
726 | # CONFIG_SK98LIN is not set | 715 | # CONFIG_SK98LIN is not set |
727 | # CONFIG_VIA_VELOCITY is not set | 716 | # CONFIG_VIA_VELOCITY is not set |
728 | # CONFIG_TIGON3 is not set | 717 | # CONFIG_TIGON3 is not set |
729 | # CONFIG_BNX2 is not set | 718 | # CONFIG_BNX2 is not set |
730 | # CONFIG_MV643XX_ETH is not set | ||
731 | 719 | ||
732 | # | 720 | # |
733 | # Ethernet (10000 Mbit) | 721 | # Ethernet (10000 Mbit) |
734 | # | 722 | # |
723 | # CONFIG_CHELSIO_T1 is not set | ||
735 | # CONFIG_IXGB is not set | 724 | # CONFIG_IXGB is not set |
736 | # CONFIG_S2IO is not set | 725 | # CONFIG_S2IO is not set |
726 | # CONFIG_MYRI10GE is not set | ||
737 | 727 | ||
738 | # | 728 | # |
739 | # Token Ring devices | 729 | # Token Ring devices |
@@ -744,6 +734,7 @@ CONFIG_PCNET32=y | |||
744 | # Wireless LAN (non-hamradio) | 734 | # Wireless LAN (non-hamradio) |
745 | # | 735 | # |
746 | CONFIG_NET_RADIO=y | 736 | CONFIG_NET_RADIO=y |
737 | # CONFIG_NET_WIRELESS_RTNETLINK is not set | ||
747 | 738 | ||
748 | # | 739 | # |
749 | # Obsolete Wireless cards support (pre-802.11) | 740 | # Obsolete Wireless cards support (pre-802.11) |
@@ -755,11 +746,13 @@ CONFIG_NET_RADIO=y | |||
755 | # | 746 | # |
756 | # Wireless 802.11b ISA/PCI cards support | 747 | # Wireless 802.11b ISA/PCI cards support |
757 | # | 748 | # |
749 | # CONFIG_IPW2100 is not set | ||
750 | # CONFIG_IPW2200 is not set | ||
758 | # CONFIG_AIRO is not set | 751 | # CONFIG_AIRO is not set |
759 | CONFIG_HERMES=m | 752 | CONFIG_HERMES=m |
760 | CONFIG_APPLE_AIRPORT=m | ||
761 | # CONFIG_PLX_HERMES is not set | 753 | # CONFIG_PLX_HERMES is not set |
762 | # CONFIG_TMD_HERMES is not set | 754 | # CONFIG_TMD_HERMES is not set |
755 | # CONFIG_NORTEL_HERMES is not set | ||
763 | # CONFIG_PCI_HERMES is not set | 756 | # CONFIG_PCI_HERMES is not set |
764 | # CONFIG_ATMEL is not set | 757 | # CONFIG_ATMEL is not set |
765 | 758 | ||
@@ -767,6 +760,8 @@ CONFIG_APPLE_AIRPORT=m | |||
767 | # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support | 760 | # Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support |
768 | # | 761 | # |
769 | # CONFIG_PRISM54 is not set | 762 | # CONFIG_PRISM54 is not set |
763 | # CONFIG_USB_ZD1201 is not set | ||
764 | # CONFIG_HOSTAP is not set | ||
770 | CONFIG_NET_WIRELESS=y | 765 | CONFIG_NET_WIRELESS=y |
771 | 766 | ||
772 | # | 767 | # |
@@ -783,11 +778,16 @@ CONFIG_PPP_ASYNC=y | |||
783 | # CONFIG_PPP_SYNC_TTY is not set | 778 | # CONFIG_PPP_SYNC_TTY is not set |
784 | CONFIG_PPP_DEFLATE=y | 779 | CONFIG_PPP_DEFLATE=y |
785 | CONFIG_PPP_BSDCOMP=m | 780 | CONFIG_PPP_BSDCOMP=m |
781 | # CONFIG_PPP_MPPE is not set | ||
786 | CONFIG_PPPOE=m | 782 | CONFIG_PPPOE=m |
787 | # CONFIG_SLIP is not set | 783 | # CONFIG_SLIP is not set |
788 | # CONFIG_NET_FC is not set | 784 | # CONFIG_NET_FC is not set |
789 | # CONFIG_SHAPER is not set | 785 | # CONFIG_SHAPER is not set |
790 | CONFIG_NETCONSOLE=m | 786 | CONFIG_NETCONSOLE=m |
787 | CONFIG_NETPOLL=y | ||
788 | # CONFIG_NETPOLL_RX is not set | ||
789 | # CONFIG_NETPOLL_TRAP is not set | ||
790 | CONFIG_NET_POLL_CONTROLLER=y | ||
791 | 791 | ||
792 | # | 792 | # |
793 | # ISDN subsystem | 793 | # ISDN subsystem |
@@ -835,7 +835,7 @@ CONFIG_MOUSE_PS2=y | |||
835 | # CONFIG_INPUT_JOYSTICK is not set | 835 | # CONFIG_INPUT_JOYSTICK is not set |
836 | # CONFIG_INPUT_TOUCHSCREEN is not set | 836 | # CONFIG_INPUT_TOUCHSCREEN is not set |
837 | CONFIG_INPUT_MISC=y | 837 | CONFIG_INPUT_MISC=y |
838 | # CONFIG_INPUT_PCSPKR is not set | 838 | CONFIG_INPUT_PCSPKR=m |
839 | CONFIG_INPUT_UINPUT=m | 839 | CONFIG_INPUT_UINPUT=m |
840 | 840 | ||
841 | # | 841 | # |
@@ -856,6 +856,7 @@ CONFIG_SERIO_LIBPS2=y | |||
856 | CONFIG_VT=y | 856 | CONFIG_VT=y |
857 | CONFIG_VT_CONSOLE=y | 857 | CONFIG_VT_CONSOLE=y |
858 | CONFIG_HW_CONSOLE=y | 858 | CONFIG_HW_CONSOLE=y |
859 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
859 | # CONFIG_SERIAL_NONSTANDARD is not set | 860 | # CONFIG_SERIAL_NONSTANDARD is not set |
860 | 861 | ||
861 | # | 862 | # |
@@ -863,7 +864,9 @@ CONFIG_HW_CONSOLE=y | |||
863 | # | 864 | # |
864 | CONFIG_SERIAL_8250=y | 865 | CONFIG_SERIAL_8250=y |
865 | CONFIG_SERIAL_8250_CONSOLE=y | 866 | CONFIG_SERIAL_8250_CONSOLE=y |
867 | CONFIG_SERIAL_8250_PCI=y | ||
866 | CONFIG_SERIAL_8250_NR_UARTS=4 | 868 | CONFIG_SERIAL_8250_NR_UARTS=4 |
869 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
867 | # CONFIG_SERIAL_8250_EXTENDED is not set | 870 | # CONFIG_SERIAL_8250_EXTENDED is not set |
868 | 871 | ||
869 | # | 872 | # |
@@ -871,8 +874,6 @@ CONFIG_SERIAL_8250_NR_UARTS=4 | |||
871 | # | 874 | # |
872 | CONFIG_SERIAL_CORE=y | 875 | CONFIG_SERIAL_CORE=y |
873 | CONFIG_SERIAL_CORE_CONSOLE=y | 876 | CONFIG_SERIAL_CORE_CONSOLE=y |
874 | CONFIG_SERIAL_PMACZILOG=y | ||
875 | CONFIG_SERIAL_PMACZILOG_CONSOLE=y | ||
876 | # CONFIG_SERIAL_JSM is not set | 877 | # CONFIG_SERIAL_JSM is not set |
877 | CONFIG_UNIX98_PTYS=y | 878 | CONFIG_UNIX98_PTYS=y |
878 | CONFIG_LEGACY_PTYS=y | 879 | CONFIG_LEGACY_PTYS=y |
@@ -890,6 +891,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
890 | # Watchdog Cards | 891 | # Watchdog Cards |
891 | # | 892 | # |
892 | # CONFIG_WATCHDOG is not set | 893 | # CONFIG_WATCHDOG is not set |
894 | # CONFIG_HW_RANDOM is not set | ||
893 | CONFIG_NVRAM=y | 895 | CONFIG_NVRAM=y |
894 | CONFIG_GEN_RTC=y | 896 | CONFIG_GEN_RTC=y |
895 | # CONFIG_GEN_RTC_X is not set | 897 | # CONFIG_GEN_RTC_X is not set |
@@ -900,21 +902,15 @@ CONFIG_GEN_RTC=y | |||
900 | # | 902 | # |
901 | # Ftape, the floppy tape device driver | 903 | # Ftape, the floppy tape device driver |
902 | # | 904 | # |
903 | CONFIG_AGP=m | 905 | # CONFIG_AGP is not set |
904 | CONFIG_AGP_UNINORTH=m | 906 | # CONFIG_DRM is not set |
905 | CONFIG_DRM=m | ||
906 | # CONFIG_DRM_TDFX is not set | ||
907 | CONFIG_DRM_R128=m | ||
908 | CONFIG_DRM_RADEON=m | ||
909 | # CONFIG_DRM_MGA is not set | ||
910 | # CONFIG_DRM_SIS is not set | ||
911 | # CONFIG_DRM_VIA is not set | ||
912 | # CONFIG_RAW_DRIVER is not set | 907 | # CONFIG_RAW_DRIVER is not set |
913 | 908 | ||
914 | # | 909 | # |
915 | # TPM devices | 910 | # TPM devices |
916 | # | 911 | # |
917 | # CONFIG_TCG_TPM is not set | 912 | # CONFIG_TCG_TPM is not set |
913 | # CONFIG_TELCLOCK is not set | ||
918 | 914 | ||
919 | # | 915 | # |
920 | # I2C support | 916 | # I2C support |
@@ -938,19 +934,16 @@ CONFIG_I2C_ALGOBIT=y | |||
938 | # CONFIG_I2C_AMD756 is not set | 934 | # CONFIG_I2C_AMD756 is not set |
939 | # CONFIG_I2C_AMD8111 is not set | 935 | # CONFIG_I2C_AMD8111 is not set |
940 | # CONFIG_I2C_ELEKTOR is not set | 936 | # CONFIG_I2C_ELEKTOR is not set |
941 | CONFIG_I2C_HYDRA=y | ||
942 | # CONFIG_I2C_I801 is not set | 937 | # CONFIG_I2C_I801 is not set |
943 | # CONFIG_I2C_I810 is not set | 938 | # CONFIG_I2C_I810 is not set |
944 | # CONFIG_I2C_PIIX4 is not set | 939 | # CONFIG_I2C_PIIX4 is not set |
945 | # CONFIG_I2C_ISA is not set | ||
946 | CONFIG_I2C_KEYWEST=m | ||
947 | # CONFIG_I2C_MPC is not set | 940 | # CONFIG_I2C_MPC is not set |
948 | # CONFIG_I2C_NFORCE2 is not set | 941 | # CONFIG_I2C_NFORCE2 is not set |
942 | # CONFIG_I2C_OCORES is not set | ||
949 | # CONFIG_I2C_PARPORT is not set | 943 | # CONFIG_I2C_PARPORT is not set |
950 | # CONFIG_I2C_PARPORT_LIGHT is not set | 944 | # CONFIG_I2C_PARPORT_LIGHT is not set |
951 | # CONFIG_I2C_PROSAVAGE is not set | 945 | # CONFIG_I2C_PROSAVAGE is not set |
952 | # CONFIG_I2C_SAVAGE4 is not set | 946 | # CONFIG_I2C_SAVAGE4 is not set |
953 | # CONFIG_SCx200_ACB is not set | ||
954 | # CONFIG_I2C_SIS5595 is not set | 947 | # CONFIG_I2C_SIS5595 is not set |
955 | # CONFIG_I2C_SIS630 is not set | 948 | # CONFIG_I2C_SIS630 is not set |
956 | # CONFIG_I2C_SIS96X is not set | 949 | # CONFIG_I2C_SIS96X is not set |
@@ -959,7 +952,6 @@ CONFIG_I2C_KEYWEST=m | |||
959 | # CONFIG_I2C_VIAPRO is not set | 952 | # CONFIG_I2C_VIAPRO is not set |
960 | # CONFIG_I2C_VOODOO3 is not set | 953 | # CONFIG_I2C_VOODOO3 is not set |
961 | # CONFIG_I2C_PCA_ISA is not set | 954 | # CONFIG_I2C_PCA_ISA is not set |
962 | # CONFIG_I2C_SENSOR is not set | ||
963 | 955 | ||
964 | # | 956 | # |
965 | # Miscellaneous I2C Chip support | 957 | # Miscellaneous I2C Chip support |
@@ -970,7 +962,6 @@ CONFIG_I2C_KEYWEST=m | |||
970 | # CONFIG_SENSORS_PCF8574 is not set | 962 | # CONFIG_SENSORS_PCF8574 is not set |
971 | # CONFIG_SENSORS_PCA9539 is not set | 963 | # CONFIG_SENSORS_PCA9539 is not set |
972 | # CONFIG_SENSORS_PCF8591 is not set | 964 | # CONFIG_SENSORS_PCF8591 is not set |
973 | # CONFIG_SENSORS_RTC8564 is not set | ||
974 | # CONFIG_SENSORS_M41T00 is not set | 965 | # CONFIG_SENSORS_M41T00 is not set |
975 | # CONFIG_SENSORS_MAX6875 is not set | 966 | # CONFIG_SENSORS_MAX6875 is not set |
976 | # CONFIG_I2C_DEBUG_CORE is not set | 967 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -979,14 +970,20 @@ CONFIG_I2C_KEYWEST=m | |||
979 | # CONFIG_I2C_DEBUG_CHIP is not set | 970 | # CONFIG_I2C_DEBUG_CHIP is not set |
980 | 971 | ||
981 | # | 972 | # |
973 | # SPI support | ||
974 | # | ||
975 | # CONFIG_SPI is not set | ||
976 | # CONFIG_SPI_MASTER is not set | ||
977 | |||
978 | # | ||
982 | # Dallas's 1-wire bus | 979 | # Dallas's 1-wire bus |
983 | # | 980 | # |
984 | # CONFIG_W1 is not set | ||
985 | 981 | ||
986 | # | 982 | # |
987 | # Hardware Monitoring support | 983 | # Hardware Monitoring support |
988 | # | 984 | # |
989 | # CONFIG_HWMON is not set | 985 | # CONFIG_HWMON is not set |
986 | # CONFIG_HWMON_VID is not set | ||
990 | 987 | ||
991 | # | 988 | # |
992 | # Misc devices | 989 | # Misc devices |
@@ -996,38 +993,36 @@ CONFIG_I2C_KEYWEST=m | |||
996 | # Multimedia devices | 993 | # Multimedia devices |
997 | # | 994 | # |
998 | # CONFIG_VIDEO_DEV is not set | 995 | # CONFIG_VIDEO_DEV is not set |
996 | CONFIG_VIDEO_V4L2=y | ||
999 | 997 | ||
1000 | # | 998 | # |
1001 | # Digital Video Broadcasting Devices | 999 | # Digital Video Broadcasting Devices |
1002 | # | 1000 | # |
1003 | # CONFIG_DVB is not set | 1001 | # CONFIG_DVB is not set |
1002 | # CONFIG_USB_DABUSB is not set | ||
1004 | 1003 | ||
1005 | # | 1004 | # |
1006 | # Graphics support | 1005 | # Graphics support |
1007 | # | 1006 | # |
1007 | # CONFIG_FIRMWARE_EDID is not set | ||
1008 | CONFIG_FB=y | 1008 | CONFIG_FB=y |
1009 | CONFIG_FB_CFB_FILLRECT=y | 1009 | CONFIG_FB_CFB_FILLRECT=y |
1010 | CONFIG_FB_CFB_COPYAREA=y | 1010 | CONFIG_FB_CFB_COPYAREA=y |
1011 | CONFIG_FB_CFB_IMAGEBLIT=y | 1011 | CONFIG_FB_CFB_IMAGEBLIT=y |
1012 | CONFIG_FB_SOFT_CURSOR=y | 1012 | # CONFIG_FB_MACMODES is not set |
1013 | CONFIG_FB_MACMODES=y | 1013 | # CONFIG_FB_BACKLIGHT is not set |
1014 | CONFIG_FB_MODE_HELPERS=y | 1014 | CONFIG_FB_MODE_HELPERS=y |
1015 | CONFIG_FB_TILEBLITTING=y | 1015 | CONFIG_FB_TILEBLITTING=y |
1016 | # CONFIG_FB_CIRRUS is not set | 1016 | # CONFIG_FB_CIRRUS is not set |
1017 | # CONFIG_FB_PM2 is not set | 1017 | # CONFIG_FB_PM2 is not set |
1018 | # CONFIG_FB_CYBER2000 is not set | 1018 | # CONFIG_FB_CYBER2000 is not set |
1019 | CONFIG_FB_OF=y | 1019 | # CONFIG_FB_CT65550 is not set |
1020 | CONFIG_FB_CONTROL=y | ||
1021 | CONFIG_FB_PLATINUM=y | ||
1022 | CONFIG_FB_VALKYRIE=y | ||
1023 | CONFIG_FB_CT65550=y | ||
1024 | # CONFIG_FB_ASILIANT is not set | 1020 | # CONFIG_FB_ASILIANT is not set |
1025 | CONFIG_FB_IMSTT=y | 1021 | # CONFIG_FB_IMSTT is not set |
1026 | # CONFIG_FB_VGA16 is not set | 1022 | # CONFIG_FB_VGA16 is not set |
1023 | # CONFIG_FB_S1D13XXX is not set | ||
1027 | # CONFIG_FB_NVIDIA is not set | 1024 | # CONFIG_FB_NVIDIA is not set |
1028 | CONFIG_FB_RIVA=y | 1025 | # CONFIG_FB_RIVA is not set |
1029 | CONFIG_FB_RIVA_I2C=y | ||
1030 | # CONFIG_FB_RIVA_DEBUG is not set | ||
1031 | CONFIG_FB_MATROX=y | 1026 | CONFIG_FB_MATROX=y |
1032 | CONFIG_FB_MATROX_MILLENIUM=y | 1027 | CONFIG_FB_MATROX_MILLENIUM=y |
1033 | CONFIG_FB_MATROX_MYSTIQUE=y | 1028 | CONFIG_FB_MATROX_MYSTIQUE=y |
@@ -1035,34 +1030,27 @@ CONFIG_FB_MATROX_G=y | |||
1035 | CONFIG_FB_MATROX_I2C=y | 1030 | CONFIG_FB_MATROX_I2C=y |
1036 | CONFIG_FB_MATROX_MAVEN=m | 1031 | CONFIG_FB_MATROX_MAVEN=m |
1037 | # CONFIG_FB_MATROX_MULTIHEAD is not set | 1032 | # CONFIG_FB_MATROX_MULTIHEAD is not set |
1038 | # CONFIG_FB_RADEON_OLD is not set | 1033 | # CONFIG_FB_RADEON is not set |
1039 | CONFIG_FB_RADEON=y | 1034 | # CONFIG_FB_ATY128 is not set |
1040 | CONFIG_FB_RADEON_I2C=y | 1035 | # CONFIG_FB_ATY is not set |
1041 | # CONFIG_FB_RADEON_DEBUG is not set | ||
1042 | CONFIG_FB_ATY128=y | ||
1043 | CONFIG_FB_ATY=y | ||
1044 | CONFIG_FB_ATY_CT=y | ||
1045 | CONFIG_FB_ATY_GENERIC_LCD=y | ||
1046 | CONFIG_FB_ATY_XL_INIT=y | ||
1047 | CONFIG_FB_ATY_GX=y | ||
1048 | # CONFIG_FB_SAVAGE is not set | 1036 | # CONFIG_FB_SAVAGE is not set |
1049 | # CONFIG_FB_SIS is not set | 1037 | # CONFIG_FB_SIS is not set |
1050 | # CONFIG_FB_NEOMAGIC is not set | 1038 | # CONFIG_FB_NEOMAGIC is not set |
1051 | # CONFIG_FB_KYRO is not set | 1039 | # CONFIG_FB_KYRO is not set |
1052 | CONFIG_FB_3DFX=y | 1040 | # CONFIG_FB_3DFX is not set |
1053 | # CONFIG_FB_3DFX_ACCEL is not set | ||
1054 | # CONFIG_FB_VOODOO1 is not set | 1041 | # CONFIG_FB_VOODOO1 is not set |
1055 | # CONFIG_FB_TRIDENT is not set | 1042 | # CONFIG_FB_TRIDENT is not set |
1056 | # CONFIG_FB_S1D13XXX is not set | ||
1057 | # CONFIG_FB_VIRTUAL is not set | 1043 | # CONFIG_FB_VIRTUAL is not set |
1058 | 1044 | ||
1059 | # | 1045 | # |
1060 | # Console display driver support | 1046 | # Console display driver support |
1061 | # | 1047 | # |
1062 | CONFIG_VGA_CONSOLE=y | 1048 | CONFIG_VGA_CONSOLE=y |
1049 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | ||
1063 | # CONFIG_MDA_CONSOLE is not set | 1050 | # CONFIG_MDA_CONSOLE is not set |
1064 | CONFIG_DUMMY_CONSOLE=y | 1051 | CONFIG_DUMMY_CONSOLE=y |
1065 | CONFIG_FRAMEBUFFER_CONSOLE=y | 1052 | CONFIG_FRAMEBUFFER_CONSOLE=y |
1053 | # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set | ||
1066 | # CONFIG_FONTS is not set | 1054 | # CONFIG_FONTS is not set |
1067 | CONFIG_FONT_8x8=y | 1055 | CONFIG_FONT_8x8=y |
1068 | CONFIG_FONT_8x16=y | 1056 | CONFIG_FONT_8x16=y |
@@ -1080,8 +1068,6 @@ CONFIG_LOGO_LINUX_CLUT224=y | |||
1080 | # Sound | 1068 | # Sound |
1081 | # | 1069 | # |
1082 | CONFIG_SOUND=m | 1070 | CONFIG_SOUND=m |
1083 | CONFIG_DMASOUND_PMAC=m | ||
1084 | CONFIG_DMASOUND=m | ||
1085 | 1071 | ||
1086 | # | 1072 | # |
1087 | # Advanced Linux Sound Architecture | 1073 | # Advanced Linux Sound Architecture |
@@ -1096,10 +1082,13 @@ CONFIG_SND_SEQUENCER=m | |||
1096 | CONFIG_SND_OSSEMUL=y | 1082 | CONFIG_SND_OSSEMUL=y |
1097 | CONFIG_SND_MIXER_OSS=m | 1083 | CONFIG_SND_MIXER_OSS=m |
1098 | CONFIG_SND_PCM_OSS=m | 1084 | CONFIG_SND_PCM_OSS=m |
1085 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
1099 | CONFIG_SND_SEQUENCER_OSS=y | 1086 | CONFIG_SND_SEQUENCER_OSS=y |
1087 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
1088 | CONFIG_SND_SUPPORT_OLD_API=y | ||
1089 | CONFIG_SND_VERBOSE_PROCFS=y | ||
1100 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1090 | # CONFIG_SND_VERBOSE_PRINTK is not set |
1101 | # CONFIG_SND_DEBUG is not set | 1091 | # CONFIG_SND_DEBUG is not set |
1102 | CONFIG_SND_GENERIC_PM=y | ||
1103 | 1092 | ||
1104 | # | 1093 | # |
1105 | # Generic devices | 1094 | # Generic devices |
@@ -1116,7 +1105,9 @@ CONFIG_SND_OPL3_LIB=m | |||
1116 | # ISA devices | 1105 | # ISA devices |
1117 | # | 1106 | # |
1118 | CONFIG_SND_CS4231_LIB=m | 1107 | CONFIG_SND_CS4231_LIB=m |
1108 | # CONFIG_SND_ADLIB is not set | ||
1119 | # CONFIG_SND_AD1848 is not set | 1109 | # CONFIG_SND_AD1848 is not set |
1110 | # CONFIG_SND_CMI8330 is not set | ||
1120 | # CONFIG_SND_CS4231 is not set | 1111 | # CONFIG_SND_CS4231 is not set |
1121 | CONFIG_SND_CS4232=m | 1112 | CONFIG_SND_CS4232=m |
1122 | # CONFIG_SND_CS4236 is not set | 1113 | # CONFIG_SND_CS4236 is not set |
@@ -1125,23 +1116,24 @@ CONFIG_SND_CS4232=m | |||
1125 | # CONFIG_SND_GUSCLASSIC is not set | 1116 | # CONFIG_SND_GUSCLASSIC is not set |
1126 | # CONFIG_SND_GUSEXTREME is not set | 1117 | # CONFIG_SND_GUSEXTREME is not set |
1127 | # CONFIG_SND_GUSMAX is not set | 1118 | # CONFIG_SND_GUSMAX is not set |
1128 | # CONFIG_SND_INTERWAVE is not set | 1119 | # CONFIG_SND_OPL3SA2 is not set |
1129 | # CONFIG_SND_INTERWAVE_STB is not set | ||
1130 | # CONFIG_SND_OPTI92X_AD1848 is not set | 1120 | # CONFIG_SND_OPTI92X_AD1848 is not set |
1131 | # CONFIG_SND_OPTI92X_CS4231 is not set | 1121 | # CONFIG_SND_OPTI92X_CS4231 is not set |
1132 | # CONFIG_SND_OPTI93X is not set | 1122 | # CONFIG_SND_OPTI93X is not set |
1123 | # CONFIG_SND_MIRO is not set | ||
1133 | # CONFIG_SND_SB8 is not set | 1124 | # CONFIG_SND_SB8 is not set |
1134 | # CONFIG_SND_SB16 is not set | 1125 | # CONFIG_SND_SB16 is not set |
1135 | # CONFIG_SND_SBAWE is not set | 1126 | # CONFIG_SND_SBAWE is not set |
1136 | # CONFIG_SND_WAVEFRONT is not set | ||
1137 | # CONFIG_SND_CMI8330 is not set | ||
1138 | # CONFIG_SND_OPL3SA2 is not set | ||
1139 | # CONFIG_SND_SGALAXY is not set | 1127 | # CONFIG_SND_SGALAXY is not set |
1140 | # CONFIG_SND_SSCAPE is not set | 1128 | # CONFIG_SND_SSCAPE is not set |
1129 | # CONFIG_SND_WAVEFRONT is not set | ||
1141 | 1130 | ||
1142 | # | 1131 | # |
1143 | # PCI devices | 1132 | # PCI devices |
1144 | # | 1133 | # |
1134 | # CONFIG_SND_AD1889 is not set | ||
1135 | # CONFIG_SND_ALS300 is not set | ||
1136 | # CONFIG_SND_ALS4000 is not set | ||
1145 | # CONFIG_SND_ALI5451 is not set | 1137 | # CONFIG_SND_ALI5451 is not set |
1146 | # CONFIG_SND_ATIIXP is not set | 1138 | # CONFIG_SND_ATIIXP is not set |
1147 | # CONFIG_SND_ATIIXP_MODEM is not set | 1139 | # CONFIG_SND_ATIIXP_MODEM is not set |
@@ -1150,43 +1142,61 @@ CONFIG_SND_CS4232=m | |||
1150 | # CONFIG_SND_AU8830 is not set | 1142 | # CONFIG_SND_AU8830 is not set |
1151 | # CONFIG_SND_AZT3328 is not set | 1143 | # CONFIG_SND_AZT3328 is not set |
1152 | # CONFIG_SND_BT87X is not set | 1144 | # CONFIG_SND_BT87X is not set |
1153 | # CONFIG_SND_CS46XX is not set | 1145 | # CONFIG_SND_CA0106 is not set |
1146 | # CONFIG_SND_CMIPCI is not set | ||
1154 | # CONFIG_SND_CS4281 is not set | 1147 | # CONFIG_SND_CS4281 is not set |
1148 | # CONFIG_SND_CS46XX is not set | ||
1149 | # CONFIG_SND_DARLA20 is not set | ||
1150 | # CONFIG_SND_GINA20 is not set | ||
1151 | # CONFIG_SND_LAYLA20 is not set | ||
1152 | # CONFIG_SND_DARLA24 is not set | ||
1153 | # CONFIG_SND_GINA24 is not set | ||
1154 | # CONFIG_SND_LAYLA24 is not set | ||
1155 | # CONFIG_SND_MONA is not set | ||
1156 | # CONFIG_SND_MIA is not set | ||
1157 | # CONFIG_SND_ECHO3G is not set | ||
1158 | # CONFIG_SND_INDIGO is not set | ||
1159 | # CONFIG_SND_INDIGOIO is not set | ||
1160 | # CONFIG_SND_INDIGODJ is not set | ||
1155 | # CONFIG_SND_EMU10K1 is not set | 1161 | # CONFIG_SND_EMU10K1 is not set |
1156 | # CONFIG_SND_EMU10K1X is not set | 1162 | # CONFIG_SND_EMU10K1X is not set |
1157 | # CONFIG_SND_CA0106 is not set | ||
1158 | # CONFIG_SND_KORG1212 is not set | ||
1159 | # CONFIG_SND_MIXART is not set | ||
1160 | # CONFIG_SND_NM256 is not set | ||
1161 | # CONFIG_SND_RME32 is not set | ||
1162 | # CONFIG_SND_RME96 is not set | ||
1163 | # CONFIG_SND_RME9652 is not set | ||
1164 | # CONFIG_SND_HDSP is not set | ||
1165 | # CONFIG_SND_HDSPM is not set | ||
1166 | # CONFIG_SND_TRIDENT is not set | ||
1167 | # CONFIG_SND_YMFPCI is not set | ||
1168 | # CONFIG_SND_ALS4000 is not set | ||
1169 | # CONFIG_SND_CMIPCI is not set | ||
1170 | # CONFIG_SND_ENS1370 is not set | 1163 | # CONFIG_SND_ENS1370 is not set |
1171 | # CONFIG_SND_ENS1371 is not set | 1164 | # CONFIG_SND_ENS1371 is not set |
1172 | # CONFIG_SND_ES1938 is not set | 1165 | # CONFIG_SND_ES1938 is not set |
1173 | # CONFIG_SND_ES1968 is not set | 1166 | # CONFIG_SND_ES1968 is not set |
1174 | # CONFIG_SND_MAESTRO3 is not set | ||
1175 | # CONFIG_SND_FM801 is not set | 1167 | # CONFIG_SND_FM801 is not set |
1168 | # CONFIG_SND_HDA_INTEL is not set | ||
1169 | # CONFIG_SND_HDSP is not set | ||
1170 | # CONFIG_SND_HDSPM is not set | ||
1176 | # CONFIG_SND_ICE1712 is not set | 1171 | # CONFIG_SND_ICE1712 is not set |
1177 | # CONFIG_SND_ICE1724 is not set | 1172 | # CONFIG_SND_ICE1724 is not set |
1178 | # CONFIG_SND_INTEL8X0 is not set | 1173 | # CONFIG_SND_INTEL8X0 is not set |
1179 | # CONFIG_SND_INTEL8X0M is not set | 1174 | # CONFIG_SND_INTEL8X0M is not set |
1175 | # CONFIG_SND_KORG1212 is not set | ||
1176 | # CONFIG_SND_MAESTRO3 is not set | ||
1177 | # CONFIG_SND_MIXART is not set | ||
1178 | # CONFIG_SND_NM256 is not set | ||
1179 | # CONFIG_SND_PCXHR is not set | ||
1180 | # CONFIG_SND_RIPTIDE is not set | ||
1181 | # CONFIG_SND_RME32 is not set | ||
1182 | # CONFIG_SND_RME96 is not set | ||
1183 | # CONFIG_SND_RME9652 is not set | ||
1180 | # CONFIG_SND_SONICVIBES is not set | 1184 | # CONFIG_SND_SONICVIBES is not set |
1185 | # CONFIG_SND_TRIDENT is not set | ||
1181 | # CONFIG_SND_VIA82XX is not set | 1186 | # CONFIG_SND_VIA82XX is not set |
1182 | # CONFIG_SND_VIA82XX_MODEM is not set | 1187 | # CONFIG_SND_VIA82XX_MODEM is not set |
1183 | # CONFIG_SND_VX222 is not set | 1188 | # CONFIG_SND_VX222 is not set |
1184 | # CONFIG_SND_HDA_INTEL is not set | 1189 | # CONFIG_SND_YMFPCI is not set |
1185 | 1190 | ||
1186 | # | 1191 | # |
1187 | # ALSA PowerMac devices | 1192 | # ALSA PowerMac devices |
1188 | # | 1193 | # |
1189 | CONFIG_SND_POWERMAC=m | 1194 | |
1195 | # | ||
1196 | # Apple Onboard Audio driver | ||
1197 | # | ||
1198 | # CONFIG_SND_AOA is not set | ||
1199 | # CONFIG_SND_AOA_SOUNDBUS is not set | ||
1190 | 1200 | ||
1191 | # | 1201 | # |
1192 | # USB devices | 1202 | # USB devices |
@@ -1204,6 +1214,7 @@ CONFIG_SND_USB_AUDIO=m | |||
1204 | # | 1214 | # |
1205 | CONFIG_USB_ARCH_HAS_HCD=y | 1215 | CONFIG_USB_ARCH_HAS_HCD=y |
1206 | CONFIG_USB_ARCH_HAS_OHCI=y | 1216 | CONFIG_USB_ARCH_HAS_OHCI=y |
1217 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
1207 | CONFIG_USB=y | 1218 | CONFIG_USB=y |
1208 | # CONFIG_USB_DEBUG is not set | 1219 | # CONFIG_USB_DEBUG is not set |
1209 | 1220 | ||
@@ -1222,6 +1233,7 @@ CONFIG_USB_DEVICEFS=y | |||
1222 | CONFIG_USB_EHCI_HCD=m | 1233 | CONFIG_USB_EHCI_HCD=m |
1223 | CONFIG_USB_EHCI_SPLIT_ISO=y | 1234 | CONFIG_USB_EHCI_SPLIT_ISO=y |
1224 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1235 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1236 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
1225 | # CONFIG_USB_ISP116X_HCD is not set | 1237 | # CONFIG_USB_ISP116X_HCD is not set |
1226 | CONFIG_USB_OHCI_HCD=y | 1238 | CONFIG_USB_OHCI_HCD=y |
1227 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | 1239 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set |
@@ -1232,14 +1244,15 @@ CONFIG_USB_UHCI_HCD=m | |||
1232 | # | 1244 | # |
1233 | # USB Device Class drivers | 1245 | # USB Device Class drivers |
1234 | # | 1246 | # |
1235 | # CONFIG_USB_AUDIO is not set | ||
1236 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
1237 | # CONFIG_USB_MIDI is not set | ||
1238 | CONFIG_USB_ACM=m | 1247 | CONFIG_USB_ACM=m |
1239 | CONFIG_USB_PRINTER=m | 1248 | CONFIG_USB_PRINTER=m |
1240 | 1249 | ||
1241 | # | 1250 | # |
1242 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | 1251 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
1252 | # | ||
1253 | |||
1254 | # | ||
1255 | # may also be needed; see USB_STORAGE Help for more information | ||
1243 | # | 1256 | # |
1244 | CONFIG_USB_STORAGE=m | 1257 | CONFIG_USB_STORAGE=m |
1245 | # CONFIG_USB_STORAGE_DEBUG is not set | 1258 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -1251,12 +1264,15 @@ CONFIG_USB_STORAGE_USBAT=y | |||
1251 | CONFIG_USB_STORAGE_SDDR09=y | 1264 | CONFIG_USB_STORAGE_SDDR09=y |
1252 | CONFIG_USB_STORAGE_SDDR55=y | 1265 | CONFIG_USB_STORAGE_SDDR55=y |
1253 | CONFIG_USB_STORAGE_JUMPSHOT=y | 1266 | CONFIG_USB_STORAGE_JUMPSHOT=y |
1267 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1268 | # CONFIG_USB_LIBUSUAL is not set | ||
1254 | 1269 | ||
1255 | # | 1270 | # |
1256 | # USB Input Devices | 1271 | # USB Input Devices |
1257 | # | 1272 | # |
1258 | CONFIG_USB_HID=y | 1273 | CONFIG_USB_HID=y |
1259 | CONFIG_USB_HIDINPUT=y | 1274 | CONFIG_USB_HIDINPUT=y |
1275 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
1260 | # CONFIG_HID_FF is not set | 1276 | # CONFIG_HID_FF is not set |
1261 | CONFIG_USB_HIDDEV=y | 1277 | CONFIG_USB_HIDDEV=y |
1262 | # CONFIG_USB_AIPTEK is not set | 1278 | # CONFIG_USB_AIPTEK is not set |
@@ -1264,12 +1280,13 @@ CONFIG_USB_HIDDEV=y | |||
1264 | # CONFIG_USB_ACECAD is not set | 1280 | # CONFIG_USB_ACECAD is not set |
1265 | # CONFIG_USB_KBTAB is not set | 1281 | # CONFIG_USB_KBTAB is not set |
1266 | # CONFIG_USB_POWERMATE is not set | 1282 | # CONFIG_USB_POWERMATE is not set |
1267 | # CONFIG_USB_MTOUCH is not set | 1283 | # CONFIG_USB_TOUCHSCREEN is not set |
1268 | # CONFIG_USB_ITMTOUCH is not set | 1284 | # CONFIG_USB_YEALINK is not set |
1269 | # CONFIG_USB_EGALAX is not set | ||
1270 | # CONFIG_USB_XPAD is not set | 1285 | # CONFIG_USB_XPAD is not set |
1271 | # CONFIG_USB_ATI_REMOTE is not set | 1286 | # CONFIG_USB_ATI_REMOTE is not set |
1287 | # CONFIG_USB_ATI_REMOTE2 is not set | ||
1272 | # CONFIG_USB_KEYSPAN_REMOTE is not set | 1288 | # CONFIG_USB_KEYSPAN_REMOTE is not set |
1289 | # CONFIG_USB_APPLETOUCH is not set | ||
1273 | 1290 | ||
1274 | # | 1291 | # |
1275 | # USB Imaging devices | 1292 | # USB Imaging devices |
@@ -1278,15 +1295,6 @@ CONFIG_USB_HIDDEV=y | |||
1278 | # CONFIG_USB_MICROTEK is not set | 1295 | # CONFIG_USB_MICROTEK is not set |
1279 | 1296 | ||
1280 | # | 1297 | # |
1281 | # USB Multimedia devices | ||
1282 | # | ||
1283 | # CONFIG_USB_DABUSB is not set | ||
1284 | |||
1285 | # | ||
1286 | # Video4Linux support is needed for USB Multimedia device support | ||
1287 | # | ||
1288 | |||
1289 | # | ||
1290 | # USB Network Adapters | 1298 | # USB Network Adapters |
1291 | # | 1299 | # |
1292 | # CONFIG_USB_CATC is not set | 1300 | # CONFIG_USB_CATC is not set |
@@ -1294,7 +1302,6 @@ CONFIG_USB_HIDDEV=y | |||
1294 | CONFIG_USB_PEGASUS=m | 1302 | CONFIG_USB_PEGASUS=m |
1295 | # CONFIG_USB_RTL8150 is not set | 1303 | # CONFIG_USB_RTL8150 is not set |
1296 | # CONFIG_USB_USBNET is not set | 1304 | # CONFIG_USB_USBNET is not set |
1297 | # CONFIG_USB_ZD1201 is not set | ||
1298 | # CONFIG_USB_MON is not set | 1305 | # CONFIG_USB_MON is not set |
1299 | 1306 | ||
1300 | # | 1307 | # |
@@ -1308,6 +1315,7 @@ CONFIG_USB_PEGASUS=m | |||
1308 | CONFIG_USB_SERIAL=m | 1315 | CONFIG_USB_SERIAL=m |
1309 | # CONFIG_USB_SERIAL_GENERIC is not set | 1316 | # CONFIG_USB_SERIAL_GENERIC is not set |
1310 | # CONFIG_USB_SERIAL_AIRPRIME is not set | 1317 | # CONFIG_USB_SERIAL_AIRPRIME is not set |
1318 | # CONFIG_USB_SERIAL_ARK3116 is not set | ||
1311 | # CONFIG_USB_SERIAL_BELKIN is not set | 1319 | # CONFIG_USB_SERIAL_BELKIN is not set |
1312 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1320 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
1313 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1321 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
@@ -1315,6 +1323,7 @@ CONFIG_USB_SERIAL=m | |||
1315 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1323 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
1316 | # CONFIG_USB_SERIAL_EMPEG is not set | 1324 | # CONFIG_USB_SERIAL_EMPEG is not set |
1317 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1325 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
1326 | # CONFIG_USB_SERIAL_FUNSOFT is not set | ||
1318 | CONFIG_USB_SERIAL_VISOR=m | 1327 | CONFIG_USB_SERIAL_VISOR=m |
1319 | # CONFIG_USB_SERIAL_IPAQ is not set | 1328 | # CONFIG_USB_SERIAL_IPAQ is not set |
1320 | # CONFIG_USB_SERIAL_IR is not set | 1329 | # CONFIG_USB_SERIAL_IR is not set |
@@ -1339,9 +1348,11 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
1339 | # CONFIG_USB_SERIAL_KLSI is not set | 1348 | # CONFIG_USB_SERIAL_KLSI is not set |
1340 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set | 1349 | # CONFIG_USB_SERIAL_KOBIL_SCT is not set |
1341 | # CONFIG_USB_SERIAL_MCT_U232 is not set | 1350 | # CONFIG_USB_SERIAL_MCT_U232 is not set |
1351 | # CONFIG_USB_SERIAL_NAVMAN is not set | ||
1342 | # CONFIG_USB_SERIAL_PL2303 is not set | 1352 | # CONFIG_USB_SERIAL_PL2303 is not set |
1343 | # CONFIG_USB_SERIAL_HP4X is not set | 1353 | # CONFIG_USB_SERIAL_HP4X is not set |
1344 | # CONFIG_USB_SERIAL_SAFE is not set | 1354 | # CONFIG_USB_SERIAL_SAFE is not set |
1355 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | ||
1345 | # CONFIG_USB_SERIAL_TI is not set | 1356 | # CONFIG_USB_SERIAL_TI is not set |
1346 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1357 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1347 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1358 | # CONFIG_USB_SERIAL_XIRCOM is not set |
@@ -1359,10 +1370,12 @@ CONFIG_USB_EZUSB=y | |||
1359 | # CONFIG_USB_LEGOTOWER is not set | 1370 | # CONFIG_USB_LEGOTOWER is not set |
1360 | # CONFIG_USB_LCD is not set | 1371 | # CONFIG_USB_LCD is not set |
1361 | # CONFIG_USB_LED is not set | 1372 | # CONFIG_USB_LED is not set |
1373 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1362 | # CONFIG_USB_CYTHERM is not set | 1374 | # CONFIG_USB_CYTHERM is not set |
1363 | # CONFIG_USB_PHIDGETKIT is not set | 1375 | # CONFIG_USB_PHIDGETKIT is not set |
1364 | # CONFIG_USB_PHIDGETSERVO is not set | 1376 | # CONFIG_USB_PHIDGETSERVO is not set |
1365 | # CONFIG_USB_IDMOUSE is not set | 1377 | # CONFIG_USB_IDMOUSE is not set |
1378 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1366 | # CONFIG_USB_SISUSBVGA is not set | 1379 | # CONFIG_USB_SISUSBVGA is not set |
1367 | # CONFIG_USB_LD is not set | 1380 | # CONFIG_USB_LD is not set |
1368 | # CONFIG_USB_TEST is not set | 1381 | # CONFIG_USB_TEST is not set |
@@ -1382,12 +1395,43 @@ CONFIG_USB_EZUSB=y | |||
1382 | # CONFIG_MMC is not set | 1395 | # CONFIG_MMC is not set |
1383 | 1396 | ||
1384 | # | 1397 | # |
1398 | # LED devices | ||
1399 | # | ||
1400 | # CONFIG_NEW_LEDS is not set | ||
1401 | |||
1402 | # | ||
1403 | # LED drivers | ||
1404 | # | ||
1405 | |||
1406 | # | ||
1407 | # LED Triggers | ||
1408 | # | ||
1409 | |||
1410 | # | ||
1385 | # InfiniBand support | 1411 | # InfiniBand support |
1386 | # | 1412 | # |
1387 | # CONFIG_INFINIBAND is not set | 1413 | # CONFIG_INFINIBAND is not set |
1388 | 1414 | ||
1389 | # | 1415 | # |
1390 | # SN Devices | 1416 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) |
1417 | # | ||
1418 | |||
1419 | # | ||
1420 | # Real Time Clock | ||
1421 | # | ||
1422 | # CONFIG_RTC_CLASS is not set | ||
1423 | |||
1424 | # | ||
1425 | # DMA Engine support | ||
1426 | # | ||
1427 | # CONFIG_DMA_ENGINE is not set | ||
1428 | |||
1429 | # | ||
1430 | # DMA Clients | ||
1431 | # | ||
1432 | |||
1433 | # | ||
1434 | # DMA Devices | ||
1391 | # | 1435 | # |
1392 | 1436 | ||
1393 | # | 1437 | # |
@@ -1417,23 +1461,21 @@ CONFIG_JFS_SECURITY=y | |||
1417 | # CONFIG_JFS_DEBUG is not set | 1461 | # CONFIG_JFS_DEBUG is not set |
1418 | # CONFIG_JFS_STATISTICS is not set | 1462 | # CONFIG_JFS_STATISTICS is not set |
1419 | CONFIG_FS_POSIX_ACL=y | 1463 | CONFIG_FS_POSIX_ACL=y |
1420 | |||
1421 | # | ||
1422 | # XFS support | ||
1423 | # | ||
1424 | CONFIG_XFS_FS=m | 1464 | CONFIG_XFS_FS=m |
1425 | CONFIG_XFS_EXPORT=y | ||
1426 | # CONFIG_XFS_RT is not set | ||
1427 | # CONFIG_XFS_QUOTA is not set | 1465 | # CONFIG_XFS_QUOTA is not set |
1428 | CONFIG_XFS_SECURITY=y | 1466 | CONFIG_XFS_SECURITY=y |
1429 | CONFIG_XFS_POSIX_ACL=y | 1467 | CONFIG_XFS_POSIX_ACL=y |
1468 | # CONFIG_XFS_RT is not set | ||
1469 | # CONFIG_OCFS2_FS is not set | ||
1430 | # CONFIG_MINIX_FS is not set | 1470 | # CONFIG_MINIX_FS is not set |
1431 | # CONFIG_ROMFS_FS is not set | 1471 | # CONFIG_ROMFS_FS is not set |
1432 | CONFIG_INOTIFY=y | 1472 | CONFIG_INOTIFY=y |
1473 | CONFIG_INOTIFY_USER=y | ||
1433 | # CONFIG_QUOTA is not set | 1474 | # CONFIG_QUOTA is not set |
1434 | CONFIG_DNOTIFY=y | 1475 | CONFIG_DNOTIFY=y |
1435 | # CONFIG_AUTOFS_FS is not set | 1476 | # CONFIG_AUTOFS_FS is not set |
1436 | CONFIG_AUTOFS4_FS=m | 1477 | CONFIG_AUTOFS4_FS=m |
1478 | # CONFIG_FUSE_FS is not set | ||
1437 | 1479 | ||
1438 | # | 1480 | # |
1439 | # CD-ROM/DVD Filesystems | 1481 | # CD-ROM/DVD Filesystems |
@@ -1460,13 +1502,10 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | |||
1460 | CONFIG_PROC_FS=y | 1502 | CONFIG_PROC_FS=y |
1461 | CONFIG_PROC_KCORE=y | 1503 | CONFIG_PROC_KCORE=y |
1462 | CONFIG_SYSFS=y | 1504 | CONFIG_SYSFS=y |
1463 | CONFIG_DEVPTS_FS_XATTR=y | ||
1464 | CONFIG_DEVPTS_FS_SECURITY=y | ||
1465 | CONFIG_TMPFS=y | 1505 | CONFIG_TMPFS=y |
1466 | CONFIG_TMPFS_XATTR=y | ||
1467 | CONFIG_TMPFS_SECURITY=y | ||
1468 | # CONFIG_HUGETLB_PAGE is not set | 1506 | # CONFIG_HUGETLB_PAGE is not set |
1469 | CONFIG_RAMFS=y | 1507 | CONFIG_RAMFS=y |
1508 | # CONFIG_CONFIGFS_FS is not set | ||
1470 | 1509 | ||
1471 | # | 1510 | # |
1472 | # Miscellaneous filesystems | 1511 | # Miscellaneous filesystems |
@@ -1485,6 +1524,7 @@ CONFIG_CRAMFS=m | |||
1485 | # CONFIG_SYSV_FS is not set | 1524 | # CONFIG_SYSV_FS is not set |
1486 | CONFIG_UFS_FS=m | 1525 | CONFIG_UFS_FS=m |
1487 | # CONFIG_UFS_FS_WRITE is not set | 1526 | # CONFIG_UFS_FS_WRITE is not set |
1527 | # CONFIG_UFS_DEBUG is not set | ||
1488 | 1528 | ||
1489 | # | 1529 | # |
1490 | # Network File Systems | 1530 | # Network File Systems |
@@ -1513,6 +1553,7 @@ CONFIG_SUNRPC=y | |||
1513 | # CONFIG_NCP_FS is not set | 1553 | # CONFIG_NCP_FS is not set |
1514 | # CONFIG_CODA_FS is not set | 1554 | # CONFIG_CODA_FS is not set |
1515 | # CONFIG_AFS_FS is not set | 1555 | # CONFIG_AFS_FS is not set |
1556 | # CONFIG_9P_FS is not set | ||
1516 | 1557 | ||
1517 | # | 1558 | # |
1518 | # Partition Types | 1559 | # Partition Types |
@@ -1532,6 +1573,7 @@ CONFIG_MSDOS_PARTITION=y | |||
1532 | # CONFIG_SGI_PARTITION is not set | 1573 | # CONFIG_SGI_PARTITION is not set |
1533 | # CONFIG_ULTRIX_PARTITION is not set | 1574 | # CONFIG_ULTRIX_PARTITION is not set |
1534 | # CONFIG_SUN_PARTITION is not set | 1575 | # CONFIG_SUN_PARTITION is not set |
1576 | # CONFIG_KARMA_PARTITION is not set | ||
1535 | # CONFIG_EFI_PARTITION is not set | 1577 | # CONFIG_EFI_PARTITION is not set |
1536 | 1578 | ||
1537 | # | 1579 | # |
@@ -1582,33 +1624,44 @@ CONFIG_NLS_UTF8=m | |||
1582 | # Library routines | 1624 | # Library routines |
1583 | # | 1625 | # |
1584 | CONFIG_CRC_CCITT=y | 1626 | CONFIG_CRC_CCITT=y |
1627 | # CONFIG_CRC16 is not set | ||
1585 | CONFIG_CRC32=y | 1628 | CONFIG_CRC32=y |
1586 | # CONFIG_LIBCRC32C is not set | 1629 | # CONFIG_LIBCRC32C is not set |
1587 | CONFIG_ZLIB_INFLATE=y | 1630 | CONFIG_ZLIB_INFLATE=y |
1588 | CONFIG_ZLIB_DEFLATE=y | 1631 | CONFIG_ZLIB_DEFLATE=y |
1589 | 1632 | CONFIG_TEXTSEARCH=y | |
1590 | # | 1633 | CONFIG_TEXTSEARCH_KMP=m |
1591 | # Profiling support | 1634 | CONFIG_TEXTSEARCH_BM=m |
1592 | # | 1635 | CONFIG_TEXTSEARCH_FSM=m |
1636 | CONFIG_PLIST=y | ||
1593 | # CONFIG_PROFILING is not set | 1637 | # CONFIG_PROFILING is not set |
1594 | 1638 | ||
1595 | # | 1639 | # |
1596 | # Kernel hacking | 1640 | # Kernel hacking |
1597 | # | 1641 | # |
1598 | # CONFIG_PRINTK_TIME is not set | 1642 | # CONFIG_PRINTK_TIME is not set |
1599 | CONFIG_DEBUG_KERNEL=y | ||
1600 | CONFIG_MAGIC_SYSRQ=y | 1643 | CONFIG_MAGIC_SYSRQ=y |
1644 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1645 | CONFIG_DEBUG_KERNEL=y | ||
1601 | CONFIG_LOG_BUF_SHIFT=14 | 1646 | CONFIG_LOG_BUF_SHIFT=14 |
1647 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1602 | # CONFIG_SCHEDSTATS is not set | 1648 | # CONFIG_SCHEDSTATS is not set |
1603 | # CONFIG_DEBUG_SLAB is not set | 1649 | # CONFIG_DEBUG_SLAB is not set |
1650 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1651 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1604 | # CONFIG_DEBUG_SPINLOCK is not set | 1652 | # CONFIG_DEBUG_SPINLOCK is not set |
1653 | # CONFIG_DEBUG_MUTEXES is not set | ||
1654 | # CONFIG_DEBUG_RWSEMS is not set | ||
1605 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | 1655 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set |
1656 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1606 | # CONFIG_DEBUG_KOBJECT is not set | 1657 | # CONFIG_DEBUG_KOBJECT is not set |
1607 | # CONFIG_DEBUG_INFO is not set | 1658 | # CONFIG_DEBUG_INFO is not set |
1608 | # CONFIG_DEBUG_FS is not set | 1659 | # CONFIG_DEBUG_FS is not set |
1660 | # CONFIG_DEBUG_VM is not set | ||
1661 | CONFIG_FORCED_INLINING=y | ||
1662 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1609 | # CONFIG_XMON is not set | 1663 | # CONFIG_XMON is not set |
1610 | # CONFIG_BDI_SWITCH is not set | 1664 | # CONFIG_BDI_SWITCH is not set |
1611 | CONFIG_BOOTX_TEXT=y | ||
1612 | 1665 | ||
1613 | # | 1666 | # |
1614 | # Security options | 1667 | # Security options |
diff --git a/arch/sparc/kernel/sys_sparc.c b/arch/sparc/kernel/sys_sparc.c index 94ff58c9d4a9..896863fb208a 100644 --- a/arch/sparc/kernel/sys_sparc.c +++ b/arch/sparc/kernel/sys_sparc.c | |||
@@ -470,19 +470,21 @@ asmlinkage int sys_getdomainname(char __user *name, int len) | |||
470 | { | 470 | { |
471 | int nlen, err; | 471 | int nlen, err; |
472 | 472 | ||
473 | if (len < 0 || len > __NEW_UTS_LEN) | 473 | if (len < 0) |
474 | return -EINVAL; | 474 | return -EINVAL; |
475 | 475 | ||
476 | down_read(&uts_sem); | 476 | down_read(&uts_sem); |
477 | 477 | ||
478 | nlen = strlen(system_utsname.domainname) + 1; | 478 | nlen = strlen(system_utsname.domainname) + 1; |
479 | if (nlen < len) | 479 | err = -EINVAL; |
480 | len = nlen; | 480 | if (nlen > len) |
481 | goto out; | ||
481 | 482 | ||
482 | err = -EFAULT; | 483 | err = -EFAULT; |
483 | if (!copy_to_user(name, system_utsname.domainname, len)) | 484 | if (!copy_to_user(name, system_utsname.domainname, nlen)) |
484 | err = 0; | 485 | err = 0; |
485 | 486 | ||
487 | out: | ||
486 | up_read(&uts_sem); | 488 | up_read(&uts_sem); |
487 | return err; | 489 | return err; |
488 | } | 490 | } |
diff --git a/arch/sparc64/kernel/sys_sparc.c b/arch/sparc64/kernel/sys_sparc.c index bf5f14ee73de..c608c947e6c3 100644 --- a/arch/sparc64/kernel/sys_sparc.c +++ b/arch/sparc64/kernel/sys_sparc.c | |||
@@ -707,19 +707,21 @@ asmlinkage long sys_getdomainname(char __user *name, int len) | |||
707 | { | 707 | { |
708 | int nlen, err; | 708 | int nlen, err; |
709 | 709 | ||
710 | if (len < 0 || len > __NEW_UTS_LEN) | 710 | if (len < 0) |
711 | return -EINVAL; | 711 | return -EINVAL; |
712 | 712 | ||
713 | down_read(&uts_sem); | 713 | down_read(&uts_sem); |
714 | 714 | ||
715 | nlen = strlen(system_utsname.domainname) + 1; | 715 | nlen = strlen(system_utsname.domainname) + 1; |
716 | if (nlen < len) | 716 | err = -EINVAL; |
717 | len = nlen; | 717 | if (nlen > len) |
718 | goto out; | ||
718 | 719 | ||
719 | err = -EFAULT; | 720 | err = -EFAULT; |
720 | if (!copy_to_user(name, system_utsname.domainname, len)) | 721 | if (!copy_to_user(name, system_utsname.domainname, nlen)) |
721 | err = 0; | 722 | err = 0; |
722 | 723 | ||
724 | out: | ||
723 | up_read(&uts_sem); | 725 | up_read(&uts_sem); |
724 | return err; | 726 | return err; |
725 | } | 727 | } |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index bb66a12c84e5..e85c2f8cf193 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -1276,10 +1276,15 @@ int ata_dev_read_id(struct ata_device *dev, unsigned int *p_class, | |||
1276 | swap_buf_le16(id, ATA_ID_WORDS); | 1276 | swap_buf_le16(id, ATA_ID_WORDS); |
1277 | 1277 | ||
1278 | /* sanity check */ | 1278 | /* sanity check */ |
1279 | if ((class == ATA_DEV_ATA) != (ata_id_is_ata(id) | ata_id_is_cfa(id))) { | 1279 | rc = -EINVAL; |
1280 | rc = -EINVAL; | 1280 | reason = "device reports illegal type"; |
1281 | reason = "device reports illegal type"; | 1281 | |
1282 | goto err_out; | 1282 | if (class == ATA_DEV_ATA) { |
1283 | if (!ata_id_is_ata(id) && !ata_id_is_cfa(id)) | ||
1284 | goto err_out; | ||
1285 | } else { | ||
1286 | if (ata_id_is_ata(id)) | ||
1287 | goto err_out; | ||
1283 | } | 1288 | } |
1284 | 1289 | ||
1285 | if (post_reset && class == ATA_DEV_ATA) { | 1290 | if (post_reset && class == ATA_DEV_ATA) { |
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index d369130f4235..dd96123a2b7f 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c | |||
@@ -2282,6 +2282,8 @@ __enqueue_tpd(struct he_dev *he_dev, struct he_tpd *tpd, unsigned cid) | |||
2282 | TPDRQ_MASK(he_readl(he_dev, TPDRQ_B_H))); | 2282 | TPDRQ_MASK(he_readl(he_dev, TPDRQ_B_H))); |
2283 | 2283 | ||
2284 | if (new_tail == he_dev->tpdrq_head) { | 2284 | if (new_tail == he_dev->tpdrq_head) { |
2285 | int slot; | ||
2286 | |||
2285 | hprintk("tpdrq full (cid 0x%x)\n", cid); | 2287 | hprintk("tpdrq full (cid 0x%x)\n", cid); |
2286 | /* | 2288 | /* |
2287 | * FIXME | 2289 | * FIXME |
@@ -2289,6 +2291,13 @@ __enqueue_tpd(struct he_dev *he_dev, struct he_tpd *tpd, unsigned cid) | |||
2289 | * after service_tbrq, service the backlog | 2291 | * after service_tbrq, service the backlog |
2290 | * for now, we just drop the pdu | 2292 | * for now, we just drop the pdu |
2291 | */ | 2293 | */ |
2294 | for (slot = 0; slot < TPD_MAXIOV; ++slot) { | ||
2295 | if (tpd->iovec[slot].addr) | ||
2296 | pci_unmap_single(he_dev->pci_dev, | ||
2297 | tpd->iovec[slot].addr, | ||
2298 | tpd->iovec[slot].len & TPD_LEN_MASK, | ||
2299 | PCI_DMA_TODEVICE); | ||
2300 | } | ||
2292 | if (tpd->skb) { | 2301 | if (tpd->skb) { |
2293 | if (tpd->vcc->pop) | 2302 | if (tpd->vcc->pop) |
2294 | tpd->vcc->pop(tpd->vcc, tpd->skb); | 2303 | tpd->vcc->pop(tpd->vcc, tpd->skb); |
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 7b0eca703a67..2cd3391ff878 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -48,14 +48,14 @@ | |||
48 | #include <linux/completion.h> | 48 | #include <linux/completion.h> |
49 | 49 | ||
50 | #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) | 50 | #define CCISS_DRIVER_VERSION(maj,min,submin) ((maj<<16)|(min<<8)|(submin)) |
51 | #define DRIVER_NAME "HP CISS Driver (v 2.6.10)" | 51 | #define DRIVER_NAME "HP CISS Driver (v 3.6.10)" |
52 | #define DRIVER_VERSION CCISS_DRIVER_VERSION(2,6,10) | 52 | #define DRIVER_VERSION CCISS_DRIVER_VERSION(3,6,10) |
53 | 53 | ||
54 | /* Embedded module documentation macros - see modules.h */ | 54 | /* Embedded module documentation macros - see modules.h */ |
55 | MODULE_AUTHOR("Hewlett-Packard Company"); | 55 | MODULE_AUTHOR("Hewlett-Packard Company"); |
56 | MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 2.6.10"); | 56 | MODULE_DESCRIPTION("Driver for HP Controller SA5xxx SA6xxx version 3.6.10"); |
57 | MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400" | 57 | MODULE_SUPPORTED_DEVICE("HP SA5i SA5i+ SA532 SA5300 SA5312 SA641 SA642 SA6400" |
58 | " SA6i P600 P800 P400 P400i E200 E200i"); | 58 | " SA6i P600 P800 P400 P400i E200 E200i E500"); |
59 | MODULE_LICENSE("GPL"); | 59 | MODULE_LICENSE("GPL"); |
60 | 60 | ||
61 | #include "cciss_cmd.h" | 61 | #include "cciss_cmd.h" |
@@ -82,6 +82,7 @@ static const struct pci_device_id cciss_pci_device_id[] = { | |||
82 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213}, | 82 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3213}, |
83 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214}, | 83 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3214}, |
84 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215}, | 84 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSD, 0x103C, 0x3215}, |
85 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSC, 0x103C, 0x3233}, | ||
85 | {0,} | 86 | {0,} |
86 | }; | 87 | }; |
87 | 88 | ||
@@ -110,6 +111,7 @@ static struct board_type products[] = { | |||
110 | {0x3213103C, "Smart Array E200i", &SA5_access}, | 111 | {0x3213103C, "Smart Array E200i", &SA5_access}, |
111 | {0x3214103C, "Smart Array E200i", &SA5_access}, | 112 | {0x3214103C, "Smart Array E200i", &SA5_access}, |
112 | {0x3215103C, "Smart Array E200i", &SA5_access}, | 113 | {0x3215103C, "Smart Array E200i", &SA5_access}, |
114 | {0x3233103C, "Smart Array E500", &SA5_access}, | ||
113 | }; | 115 | }; |
114 | 116 | ||
115 | /* How long to wait (in milliseconds) for board to go into simple mode */ | 117 | /* How long to wait (in milliseconds) for board to go into simple mode */ |
diff --git a/drivers/char/hvc_console.c b/drivers/char/hvc_console.c index ca2f538e549e..613d67f1c7f0 100644 --- a/drivers/char/hvc_console.c +++ b/drivers/char/hvc_console.c | |||
@@ -668,6 +668,7 @@ int khvcd(void *unused) | |||
668 | do { | 668 | do { |
669 | poll_mask = 0; | 669 | poll_mask = 0; |
670 | hvc_kicked = 0; | 670 | hvc_kicked = 0; |
671 | try_to_freeze(); | ||
671 | wmb(); | 672 | wmb(); |
672 | if (cpus_empty(cpus_in_xmon)) { | 673 | if (cpus_empty(cpus_in_xmon)) { |
673 | spin_lock(&hvc_structs_lock); | 674 | spin_lock(&hvc_structs_lock); |
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index f57eba0bf253..abca98beac14 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -402,10 +402,10 @@ static void handle_flags(struct smi_info *smi_info) | |||
402 | smi_info->curr_msg->data, | 402 | smi_info->curr_msg->data, |
403 | smi_info->curr_msg->data_size); | 403 | smi_info->curr_msg->data_size); |
404 | smi_info->si_state = SI_GETTING_EVENTS; | 404 | smi_info->si_state = SI_GETTING_EVENTS; |
405 | } else if (smi_info->msg_flags & OEM_DATA_AVAIL) { | 405 | } else if (smi_info->msg_flags & OEM_DATA_AVAIL && |
406 | if (smi_info->oem_data_avail_handler) | 406 | smi_info->oem_data_avail_handler) { |
407 | if (smi_info->oem_data_avail_handler(smi_info)) | 407 | if (smi_info->oem_data_avail_handler(smi_info)) |
408 | goto retry; | 408 | goto retry; |
409 | } else { | 409 | } else { |
410 | smi_info->si_state = SI_NORMAL; | 410 | smi_info->si_state = SI_NORMAL; |
411 | } | 411 | } |
@@ -2481,6 +2481,7 @@ static __devinit int init_ipmi_si(void) | |||
2481 | #ifdef CONFIG_PCI | 2481 | #ifdef CONFIG_PCI |
2482 | pci_unregister_driver(&ipmi_pci_driver); | 2482 | pci_unregister_driver(&ipmi_pci_driver); |
2483 | #endif | 2483 | #endif |
2484 | driver_unregister(&ipmi_driver); | ||
2484 | printk("ipmi_si: Unable to find any System Interface(s)\n"); | 2485 | printk("ipmi_si: Unable to find any System Interface(s)\n"); |
2485 | return -ENODEV; | 2486 | return -ENODEV; |
2486 | } else { | 2487 | } else { |
diff --git a/drivers/ide/pci/alim15x3.c b/drivers/ide/pci/alim15x3.c index 351dab2fcacf..d419e4bb54f4 100644 --- a/drivers/ide/pci/alim15x3.c +++ b/drivers/ide/pci/alim15x3.c | |||
@@ -730,7 +730,7 @@ static unsigned int __devinit ata66_ali15x3 (ide_hwif_t *hwif) | |||
730 | 730 | ||
731 | if(m5229_revision <= 0x20) | 731 | if(m5229_revision <= 0x20) |
732 | tmpbyte = (tmpbyte & (~0x02)) | 0x01; | 732 | tmpbyte = (tmpbyte & (~0x02)) | 0x01; |
733 | else if (m5229_revision == 0xc7) | 733 | else if (m5229_revision == 0xc7 || m5229_revision == 0xc8) |
734 | tmpbyte |= 0x03; | 734 | tmpbyte |= 0x03; |
735 | else | 735 | else |
736 | tmpbyte |= 0x01; | 736 | tmpbyte |= 0x01; |
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index d6f99d5720fc..5d625a81193f 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c | |||
@@ -49,7 +49,7 @@ MODULE_DESCRIPTION("Generic RDMA CM Agent"); | |||
49 | MODULE_LICENSE("Dual BSD/GPL"); | 49 | MODULE_LICENSE("Dual BSD/GPL"); |
50 | 50 | ||
51 | #define CMA_CM_RESPONSE_TIMEOUT 20 | 51 | #define CMA_CM_RESPONSE_TIMEOUT 20 |
52 | #define CMA_MAX_CM_RETRIES 3 | 52 | #define CMA_MAX_CM_RETRIES 15 |
53 | 53 | ||
54 | static void cma_add_one(struct ib_device *device); | 54 | static void cma_add_one(struct ib_device *device); |
55 | static void cma_remove_one(struct ib_device *device); | 55 | static void cma_remove_one(struct ib_device *device); |
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c index b5e6a7be603d..ec356ce7cdcd 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c | |||
@@ -326,6 +326,7 @@ ipoib_mcast_sendonly_join_complete(int status, | |||
326 | 326 | ||
327 | /* Clear the busy flag so we try again */ | 327 | /* Clear the busy flag so we try again */ |
328 | clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); | 328 | clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); |
329 | mcast->query = NULL; | ||
329 | } | 330 | } |
330 | 331 | ||
331 | complete(&mcast->done); | 332 | complete(&mcast->done); |
diff --git a/drivers/infiniband/ulp/srp/ib_srp.c b/drivers/infiniband/ulp/srp/ib_srp.c index 8257d5a2c8f8..fd8344cdc0db 100644 --- a/drivers/infiniband/ulp/srp/ib_srp.c +++ b/drivers/infiniband/ulp/srp/ib_srp.c | |||
@@ -799,13 +799,6 @@ static void srp_process_rsp(struct srp_target_port *target, struct srp_rsp *rsp) | |||
799 | spin_unlock_irqrestore(target->scsi_host->host_lock, flags); | 799 | spin_unlock_irqrestore(target->scsi_host->host_lock, flags); |
800 | } | 800 | } |
801 | 801 | ||
802 | static void srp_reconnect_work(void *target_ptr) | ||
803 | { | ||
804 | struct srp_target_port *target = target_ptr; | ||
805 | |||
806 | srp_reconnect_target(target); | ||
807 | } | ||
808 | |||
809 | static void srp_handle_recv(struct srp_target_port *target, struct ib_wc *wc) | 802 | static void srp_handle_recv(struct srp_target_port *target, struct ib_wc *wc) |
810 | { | 803 | { |
811 | struct srp_iu *iu; | 804 | struct srp_iu *iu; |
@@ -858,7 +851,6 @@ static void srp_completion(struct ib_cq *cq, void *target_ptr) | |||
858 | { | 851 | { |
859 | struct srp_target_port *target = target_ptr; | 852 | struct srp_target_port *target = target_ptr; |
860 | struct ib_wc wc; | 853 | struct ib_wc wc; |
861 | unsigned long flags; | ||
862 | 854 | ||
863 | ib_req_notify_cq(cq, IB_CQ_NEXT_COMP); | 855 | ib_req_notify_cq(cq, IB_CQ_NEXT_COMP); |
864 | while (ib_poll_cq(cq, 1, &wc) > 0) { | 856 | while (ib_poll_cq(cq, 1, &wc) > 0) { |
@@ -866,10 +858,6 @@ static void srp_completion(struct ib_cq *cq, void *target_ptr) | |||
866 | printk(KERN_ERR PFX "failed %s status %d\n", | 858 | printk(KERN_ERR PFX "failed %s status %d\n", |
867 | wc.wr_id & SRP_OP_RECV ? "receive" : "send", | 859 | wc.wr_id & SRP_OP_RECV ? "receive" : "send", |
868 | wc.status); | 860 | wc.status); |
869 | spin_lock_irqsave(target->scsi_host->host_lock, flags); | ||
870 | if (target->state == SRP_TARGET_LIVE) | ||
871 | schedule_work(&target->work); | ||
872 | spin_unlock_irqrestore(target->scsi_host->host_lock, flags); | ||
873 | break; | 861 | break; |
874 | } | 862 | } |
875 | 863 | ||
@@ -1705,8 +1693,6 @@ static ssize_t srp_create_target(struct class_device *class_dev, | |||
1705 | target->scsi_host = target_host; | 1693 | target->scsi_host = target_host; |
1706 | target->srp_host = host; | 1694 | target->srp_host = host; |
1707 | 1695 | ||
1708 | INIT_WORK(&target->work, srp_reconnect_work, target); | ||
1709 | |||
1710 | INIT_LIST_HEAD(&target->free_reqs); | 1696 | INIT_LIST_HEAD(&target->free_reqs); |
1711 | INIT_LIST_HEAD(&target->req_queue); | 1697 | INIT_LIST_HEAD(&target->req_queue); |
1712 | for (i = 0; i < SRP_SQ_SIZE; ++i) { | 1698 | for (i = 0; i < SRP_SQ_SIZE; ++i) { |
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index c8cbc00243fe..0a54d003ef34 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c | |||
@@ -1204,7 +1204,7 @@ static int nand_write_oob_syndrome(struct mtd_info *mtd, | |||
1204 | pos = steps * (eccsize + chunk); | 1204 | pos = steps * (eccsize + chunk); |
1205 | steps = 0; | 1205 | steps = 0; |
1206 | } else | 1206 | } else |
1207 | pos = eccsize + chunk; | 1207 | pos = eccsize; |
1208 | 1208 | ||
1209 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page); | 1209 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page); |
1210 | for (i = 0; i < steps; i++) { | 1210 | for (i = 0; i < steps; i++) { |
@@ -1567,7 +1567,7 @@ static uint8_t *nand_fill_oob(struct nand_chip *chip, uint8_t *oob, | |||
1567 | bytes = min_t(size_t, len, free->length); | 1567 | bytes = min_t(size_t, len, free->length); |
1568 | boffs = free->offset; | 1568 | boffs = free->offset; |
1569 | } | 1569 | } |
1570 | memcpy(chip->oob_poi + woffs, oob, bytes); | 1570 | memcpy(chip->oob_poi + boffs, oob, bytes); |
1571 | oob += bytes; | 1571 | oob += bytes; |
1572 | } | 1572 | } |
1573 | return oob; | 1573 | return oob; |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index 726f43d55937..98ef9f85482f 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
@@ -1433,8 +1433,8 @@ e1000_configure_tx(struct e1000_adapter *adapter) | |||
1433 | E1000_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL)); | 1433 | E1000_WRITE_REG(hw, TDBAL, (tdba & 0x00000000ffffffffULL)); |
1434 | E1000_WRITE_REG(hw, TDT, 0); | 1434 | E1000_WRITE_REG(hw, TDT, 0); |
1435 | E1000_WRITE_REG(hw, TDH, 0); | 1435 | E1000_WRITE_REG(hw, TDH, 0); |
1436 | adapter->tx_ring[0].tdh = E1000_TDH; | 1436 | adapter->tx_ring[0].tdh = ((hw->mac_type >= e1000_82543) ? E1000_TDH : E1000_82542_TDH); |
1437 | adapter->tx_ring[0].tdt = E1000_TDT; | 1437 | adapter->tx_ring[0].tdt = ((hw->mac_type >= e1000_82543) ? E1000_TDT : E1000_82542_TDT); |
1438 | break; | 1438 | break; |
1439 | } | 1439 | } |
1440 | 1440 | ||
@@ -1840,8 +1840,8 @@ e1000_configure_rx(struct e1000_adapter *adapter) | |||
1840 | E1000_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL)); | 1840 | E1000_WRITE_REG(hw, RDBAL, (rdba & 0x00000000ffffffffULL)); |
1841 | E1000_WRITE_REG(hw, RDT, 0); | 1841 | E1000_WRITE_REG(hw, RDT, 0); |
1842 | E1000_WRITE_REG(hw, RDH, 0); | 1842 | E1000_WRITE_REG(hw, RDH, 0); |
1843 | adapter->rx_ring[0].rdh = E1000_RDH; | 1843 | adapter->rx_ring[0].rdh = ((hw->mac_type >= e1000_82543) ? E1000_RDH : E1000_82542_RDH); |
1844 | adapter->rx_ring[0].rdt = E1000_RDT; | 1844 | adapter->rx_ring[0].rdt = ((hw->mac_type >= e1000_82543) ? E1000_RDT : E1000_82542_RDT); |
1845 | break; | 1845 | break; |
1846 | } | 1846 | } |
1847 | 1847 | ||
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c index 760c61b98867..eeab1df5bef3 100644 --- a/drivers/net/mv643xx_eth.c +++ b/drivers/net/mv643xx_eth.c | |||
@@ -385,6 +385,8 @@ static int mv643xx_eth_receive_queue(struct net_device *dev, int budget) | |||
385 | struct pkt_info pkt_info; | 385 | struct pkt_info pkt_info; |
386 | 386 | ||
387 | while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) { | 387 | while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) { |
388 | dma_unmap_single(NULL, pkt_info.buf_ptr, RX_SKB_SIZE, | ||
389 | DMA_FROM_DEVICE); | ||
388 | mp->rx_desc_count--; | 390 | mp->rx_desc_count--; |
389 | received_packets++; | 391 | received_packets++; |
390 | 392 | ||
diff --git a/drivers/net/wireless/zd1211rw/zd_chip.c b/drivers/net/wireless/zd1211rw/zd_chip.c index da9d06bdb818..aa792821854e 100644 --- a/drivers/net/wireless/zd1211rw/zd_chip.c +++ b/drivers/net/wireless/zd1211rw/zd_chip.c | |||
@@ -1430,9 +1430,43 @@ static int ofdm_qual_db(u8 status_quality, u8 rate, unsigned int size) | |||
1430 | break; | 1430 | break; |
1431 | } | 1431 | } |
1432 | 1432 | ||
1433 | switch (rate) { | ||
1434 | case ZD_OFDM_RATE_6M: | ||
1435 | case ZD_OFDM_RATE_9M: | ||
1436 | i += 3; | ||
1437 | break; | ||
1438 | case ZD_OFDM_RATE_12M: | ||
1439 | case ZD_OFDM_RATE_18M: | ||
1440 | i += 5; | ||
1441 | break; | ||
1442 | case ZD_OFDM_RATE_24M: | ||
1443 | case ZD_OFDM_RATE_36M: | ||
1444 | i += 9; | ||
1445 | break; | ||
1446 | case ZD_OFDM_RATE_48M: | ||
1447 | case ZD_OFDM_RATE_54M: | ||
1448 | i += 15; | ||
1449 | break; | ||
1450 | default: | ||
1451 | return -EINVAL; | ||
1452 | } | ||
1453 | |||
1433 | return i; | 1454 | return i; |
1434 | } | 1455 | } |
1435 | 1456 | ||
1457 | static int ofdm_qual_percent(u8 status_quality, u8 rate, unsigned int size) | ||
1458 | { | ||
1459 | int r; | ||
1460 | |||
1461 | r = ofdm_qual_db(status_quality, rate, size); | ||
1462 | ZD_ASSERT(r >= 0); | ||
1463 | if (r < 0) | ||
1464 | r = 0; | ||
1465 | |||
1466 | r = (r * 100)/29; | ||
1467 | return r <= 100 ? r : 100; | ||
1468 | } | ||
1469 | |||
1436 | static unsigned int log10times100(unsigned int x) | 1470 | static unsigned int log10times100(unsigned int x) |
1437 | { | 1471 | { |
1438 | static const u8 log10[] = { | 1472 | static const u8 log10[] = { |
@@ -1476,31 +1510,28 @@ static int cck_snr_db(u8 status_quality) | |||
1476 | return r; | 1510 | return r; |
1477 | } | 1511 | } |
1478 | 1512 | ||
1479 | static int rx_qual_db(const void *rx_frame, unsigned int size, | 1513 | static int cck_qual_percent(u8 status_quality) |
1480 | const struct rx_status *status) | ||
1481 | { | 1514 | { |
1482 | return (status->frame_status&ZD_RX_OFDM) ? | 1515 | int r; |
1483 | ofdm_qual_db(status->signal_quality_ofdm, | 1516 | |
1484 | zd_ofdm_plcp_header_rate(rx_frame), | 1517 | r = cck_snr_db(status_quality); |
1485 | size) : | 1518 | r = (100*r)/17; |
1486 | cck_snr_db(status->signal_quality_cck); | 1519 | return r <= 100 ? r : 100; |
1487 | } | 1520 | } |
1488 | 1521 | ||
1489 | u8 zd_rx_qual_percent(const void *rx_frame, unsigned int size, | 1522 | u8 zd_rx_qual_percent(const void *rx_frame, unsigned int size, |
1490 | const struct rx_status *status) | 1523 | const struct rx_status *status) |
1491 | { | 1524 | { |
1492 | int r = rx_qual_db(rx_frame, size, status); | 1525 | return (status->frame_status&ZD_RX_OFDM) ? |
1493 | if (r < 0) | 1526 | ofdm_qual_percent(status->signal_quality_ofdm, |
1494 | r = 0; | 1527 | zd_ofdm_plcp_header_rate(rx_frame), |
1495 | r = (r * 100) / 14; | 1528 | size) : |
1496 | if (r > 100) | 1529 | cck_qual_percent(status->signal_quality_cck); |
1497 | r = 100; | ||
1498 | return r; | ||
1499 | } | 1530 | } |
1500 | 1531 | ||
1501 | u8 zd_rx_strength_percent(u8 rssi) | 1532 | u8 zd_rx_strength_percent(u8 rssi) |
1502 | { | 1533 | { |
1503 | int r = (rssi*100) / 30; | 1534 | int r = (rssi*100) / 41; |
1504 | if (r > 100) | 1535 | if (r > 100) |
1505 | r = 100; | 1536 | r = 100; |
1506 | return (u8) r; | 1537 | return (u8) r; |
diff --git a/drivers/net/wireless/zd1211rw/zd_mac.c b/drivers/net/wireless/zd1211rw/zd_mac.c index d6f3e02a0b54..a9bd80a08613 100644 --- a/drivers/net/wireless/zd1211rw/zd_mac.c +++ b/drivers/net/wireless/zd1211rw/zd_mac.c | |||
@@ -816,13 +816,25 @@ static int filter_rx(struct ieee80211_device *ieee, | |||
816 | return -EINVAL; | 816 | return -EINVAL; |
817 | } | 817 | } |
818 | 818 | ||
819 | static void update_qual_rssi(struct zd_mac *mac, u8 qual_percent, u8 rssi) | 819 | static void update_qual_rssi(struct zd_mac *mac, |
820 | const u8 *buffer, unsigned int length, | ||
821 | u8 qual_percent, u8 rssi_percent) | ||
820 | { | 822 | { |
821 | unsigned long flags; | 823 | unsigned long flags; |
824 | struct ieee80211_hdr_3addr *hdr; | ||
825 | int i; | ||
826 | |||
827 | hdr = (struct ieee80211_hdr_3addr *)buffer; | ||
828 | if (length < offsetof(struct ieee80211_hdr_3addr, addr3)) | ||
829 | return; | ||
830 | if (memcmp(hdr->addr2, zd_mac_to_ieee80211(mac)->bssid, ETH_ALEN) != 0) | ||
831 | return; | ||
822 | 832 | ||
823 | spin_lock_irqsave(&mac->lock, flags); | 833 | spin_lock_irqsave(&mac->lock, flags); |
824 | mac->qual_average = (7 * mac->qual_average + qual_percent) / 8; | 834 | i = mac->stats_count % ZD_MAC_STATS_BUFFER_SIZE; |
825 | mac->rssi_average = (7 * mac->rssi_average + rssi) / 8; | 835 | mac->qual_buffer[i] = qual_percent; |
836 | mac->rssi_buffer[i] = rssi_percent; | ||
837 | mac->stats_count++; | ||
826 | spin_unlock_irqrestore(&mac->lock, flags); | 838 | spin_unlock_irqrestore(&mac->lock, flags); |
827 | } | 839 | } |
828 | 840 | ||
@@ -853,7 +865,6 @@ static int fill_rx_stats(struct ieee80211_rx_stats *stats, | |||
853 | if (stats->rate) | 865 | if (stats->rate) |
854 | stats->mask |= IEEE80211_STATMASK_RATE; | 866 | stats->mask |= IEEE80211_STATMASK_RATE; |
855 | 867 | ||
856 | update_qual_rssi(mac, stats->signal, stats->rssi); | ||
857 | return 0; | 868 | return 0; |
858 | } | 869 | } |
859 | 870 | ||
@@ -877,6 +888,8 @@ int zd_mac_rx(struct zd_mac *mac, const u8 *buffer, unsigned int length) | |||
877 | sizeof(struct rx_status); | 888 | sizeof(struct rx_status); |
878 | buffer += ZD_PLCP_HEADER_SIZE; | 889 | buffer += ZD_PLCP_HEADER_SIZE; |
879 | 890 | ||
891 | update_qual_rssi(mac, buffer, length, stats.signal, stats.rssi); | ||
892 | |||
880 | r = filter_rx(ieee, buffer, length, &stats); | 893 | r = filter_rx(ieee, buffer, length, &stats); |
881 | if (r <= 0) | 894 | if (r <= 0) |
882 | return r; | 895 | return r; |
@@ -981,17 +994,31 @@ struct iw_statistics *zd_mac_get_wireless_stats(struct net_device *ndev) | |||
981 | { | 994 | { |
982 | struct zd_mac *mac = zd_netdev_mac(ndev); | 995 | struct zd_mac *mac = zd_netdev_mac(ndev); |
983 | struct iw_statistics *iw_stats = &mac->iw_stats; | 996 | struct iw_statistics *iw_stats = &mac->iw_stats; |
997 | unsigned int i, count, qual_total, rssi_total; | ||
984 | 998 | ||
985 | memset(iw_stats, 0, sizeof(struct iw_statistics)); | 999 | memset(iw_stats, 0, sizeof(struct iw_statistics)); |
986 | /* We are not setting the status, because ieee->state is not updated | 1000 | /* We are not setting the status, because ieee->state is not updated |
987 | * at all and this driver doesn't track authentication state. | 1001 | * at all and this driver doesn't track authentication state. |
988 | */ | 1002 | */ |
989 | spin_lock_irq(&mac->lock); | 1003 | spin_lock_irq(&mac->lock); |
990 | iw_stats->qual.qual = mac->qual_average; | 1004 | count = mac->stats_count < ZD_MAC_STATS_BUFFER_SIZE ? |
991 | iw_stats->qual.level = mac->rssi_average; | 1005 | mac->stats_count : ZD_MAC_STATS_BUFFER_SIZE; |
992 | iw_stats->qual.updated = IW_QUAL_QUAL_UPDATED|IW_QUAL_LEVEL_UPDATED| | 1006 | qual_total = rssi_total = 0; |
993 | IW_QUAL_NOISE_INVALID; | 1007 | for (i = 0; i < count; i++) { |
1008 | qual_total += mac->qual_buffer[i]; | ||
1009 | rssi_total += mac->rssi_buffer[i]; | ||
1010 | } | ||
994 | spin_unlock_irq(&mac->lock); | 1011 | spin_unlock_irq(&mac->lock); |
1012 | iw_stats->qual.updated = IW_QUAL_NOISE_INVALID; | ||
1013 | if (count > 0) { | ||
1014 | iw_stats->qual.qual = qual_total / count; | ||
1015 | iw_stats->qual.level = rssi_total / count; | ||
1016 | iw_stats->qual.updated |= | ||
1017 | IW_QUAL_QUAL_UPDATED|IW_QUAL_LEVEL_UPDATED; | ||
1018 | } else { | ||
1019 | iw_stats->qual.updated |= | ||
1020 | IW_QUAL_QUAL_INVALID|IW_QUAL_LEVEL_INVALID; | ||
1021 | } | ||
995 | /* TODO: update counter */ | 1022 | /* TODO: update counter */ |
996 | return iw_stats; | 1023 | return iw_stats; |
997 | } | 1024 | } |
diff --git a/drivers/net/wireless/zd1211rw/zd_mac.h b/drivers/net/wireless/zd1211rw/zd_mac.h index 71e382c589ee..b3ba49b84634 100644 --- a/drivers/net/wireless/zd1211rw/zd_mac.h +++ b/drivers/net/wireless/zd1211rw/zd_mac.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* zd_mac.c | 1 | /* zd_mac.h |
2 | * | 2 | * |
3 | * This program is free software; you can redistribute it and/or modify | 3 | * This program is free software; you can redistribute it and/or modify |
4 | * it under the terms of the GNU General Public License as published by | 4 | * it under the terms of the GNU General Public License as published by |
@@ -87,9 +87,9 @@ struct rx_length_info { | |||
87 | #define RX_LENGTH_INFO_TAG 0x697e | 87 | #define RX_LENGTH_INFO_TAG 0x697e |
88 | 88 | ||
89 | struct rx_status { | 89 | struct rx_status { |
90 | u8 signal_quality_cck; | ||
90 | /* rssi */ | 91 | /* rssi */ |
91 | u8 signal_strength; | 92 | u8 signal_strength; |
92 | u8 signal_quality_cck; | ||
93 | u8 signal_quality_ofdm; | 93 | u8 signal_quality_ofdm; |
94 | u8 decryption_type; | 94 | u8 decryption_type; |
95 | u8 frame_status; | 95 | u8 frame_status; |
@@ -120,14 +120,17 @@ enum mac_flags { | |||
120 | MAC_FIXED_CHANNEL = 0x01, | 120 | MAC_FIXED_CHANNEL = 0x01, |
121 | }; | 121 | }; |
122 | 122 | ||
123 | #define ZD_MAC_STATS_BUFFER_SIZE 16 | ||
124 | |||
123 | struct zd_mac { | 125 | struct zd_mac { |
124 | struct net_device *netdev; | 126 | struct net_device *netdev; |
125 | struct zd_chip chip; | 127 | struct zd_chip chip; |
126 | spinlock_t lock; | 128 | spinlock_t lock; |
127 | /* Unlocked reading possible */ | 129 | /* Unlocked reading possible */ |
128 | struct iw_statistics iw_stats; | 130 | struct iw_statistics iw_stats; |
129 | u8 qual_average; | 131 | unsigned int stats_count; |
130 | u8 rssi_average; | 132 | u8 qual_buffer[ZD_MAC_STATS_BUFFER_SIZE]; |
133 | u8 rssi_buffer[ZD_MAC_STATS_BUFFER_SIZE]; | ||
131 | u8 regdomain; | 134 | u8 regdomain; |
132 | u8 default_regdomain; | 135 | u8 default_regdomain; |
133 | u8 requested_channel; | 136 | u8 requested_channel; |
diff --git a/drivers/s390/net/Kconfig b/drivers/s390/net/Kconfig index 548854754921..1a93fa684e9f 100644 --- a/drivers/s390/net/Kconfig +++ b/drivers/s390/net/Kconfig | |||
@@ -92,15 +92,6 @@ config QETH_VLAN | |||
92 | If CONFIG_QETH is switched on, this option will include IEEE | 92 | If CONFIG_QETH is switched on, this option will include IEEE |
93 | 802.1q VLAN support in the qeth device driver. | 93 | 802.1q VLAN support in the qeth device driver. |
94 | 94 | ||
95 | config QETH_PERF_STATS | ||
96 | bool "Performance statistics in /proc" | ||
97 | depends on QETH | ||
98 | help | ||
99 | When switched on, this option will add a file in the proc-fs | ||
100 | (/proc/qeth_perf_stats) containing performance statistics. It | ||
101 | may slightly impact performance, so this is only recommended for | ||
102 | internal tuning of the device driver. | ||
103 | |||
104 | config CCWGROUP | 95 | config CCWGROUP |
105 | tristate | 96 | tristate |
106 | default (LCS || CTC || QETH) | 97 | default (LCS || CTC || QETH) |
diff --git a/drivers/s390/net/Makefile b/drivers/s390/net/Makefile index 6775a837d646..4777e36a922f 100644 --- a/drivers/s390/net/Makefile +++ b/drivers/s390/net/Makefile | |||
@@ -10,7 +10,6 @@ obj-$(CONFIG_SMSGIUCV) += smsgiucv.o | |||
10 | obj-$(CONFIG_CTC) += ctc.o fsm.o cu3088.o | 10 | obj-$(CONFIG_CTC) += ctc.o fsm.o cu3088.o |
11 | obj-$(CONFIG_LCS) += lcs.o cu3088.o | 11 | obj-$(CONFIG_LCS) += lcs.o cu3088.o |
12 | obj-$(CONFIG_CLAW) += claw.o cu3088.o | 12 | obj-$(CONFIG_CLAW) += claw.o cu3088.o |
13 | obj-$(CONFIG_MPC) += ctcmpc.o fsm.o cu3088.o | ||
14 | qeth-y := qeth_main.o qeth_mpc.o qeth_sys.o qeth_eddp.o | 13 | qeth-y := qeth_main.o qeth_mpc.o qeth_sys.o qeth_eddp.o |
15 | qeth-$(CONFIG_PROC_FS) += qeth_proc.o | 14 | qeth-$(CONFIG_PROC_FS) += qeth_proc.o |
16 | obj-$(CONFIG_QETH) += qeth.o | 15 | obj-$(CONFIG_QETH) += qeth.o |
diff --git a/drivers/s390/net/ctcmain.c b/drivers/s390/net/ctcmain.c index 8a4b58120146..3257c22dd79c 100644 --- a/drivers/s390/net/ctcmain.c +++ b/drivers/s390/net/ctcmain.c | |||
@@ -1714,6 +1714,9 @@ add_channel(struct ccw_device *cdev, enum channel_types type) | |||
1714 | kfree(ch); | 1714 | kfree(ch); |
1715 | return 0; | 1715 | return 0; |
1716 | } | 1716 | } |
1717 | |||
1718 | spin_lock_init(&ch->collect_lock); | ||
1719 | |||
1717 | fsm_settimer(ch->fsm, &ch->timer); | 1720 | fsm_settimer(ch->fsm, &ch->timer); |
1718 | skb_queue_head_init(&ch->io_queue); | 1721 | skb_queue_head_init(&ch->io_queue); |
1719 | skb_queue_head_init(&ch->collect_queue); | 1722 | skb_queue_head_init(&ch->collect_queue); |
diff --git a/drivers/s390/net/iucv.c b/drivers/s390/net/iucv.c index 0e863df4027a..821dde86e240 100644 --- a/drivers/s390/net/iucv.c +++ b/drivers/s390/net/iucv.c | |||
@@ -335,8 +335,8 @@ do { \ | |||
335 | 335 | ||
336 | #else | 336 | #else |
337 | 337 | ||
338 | #define iucv_debug(lvl, fmt, args...) | 338 | #define iucv_debug(lvl, fmt, args...) do { } while (0) |
339 | #define iucv_dumpit(title, buf, len) | 339 | #define iucv_dumpit(title, buf, len) do { } while (0) |
340 | 340 | ||
341 | #endif | 341 | #endif |
342 | 342 | ||
diff --git a/drivers/s390/net/lcs.c b/drivers/s390/net/lcs.c index 2eded55ae88d..16ac68c27a27 100644 --- a/drivers/s390/net/lcs.c +++ b/drivers/s390/net/lcs.c | |||
@@ -670,9 +670,8 @@ lcs_ready_buffer(struct lcs_channel *channel, struct lcs_buffer *buffer) | |||
670 | int index, rc; | 670 | int index, rc; |
671 | 671 | ||
672 | LCS_DBF_TEXT(5, trace, "rdybuff"); | 672 | LCS_DBF_TEXT(5, trace, "rdybuff"); |
673 | if (buffer->state != BUF_STATE_LOCKED && | 673 | BUG_ON(buffer->state != BUF_STATE_LOCKED && |
674 | buffer->state != BUF_STATE_PROCESSED) | 674 | buffer->state != BUF_STATE_PROCESSED); |
675 | BUG(); | ||
676 | spin_lock_irqsave(get_ccwdev_lock(channel->ccwdev), flags); | 675 | spin_lock_irqsave(get_ccwdev_lock(channel->ccwdev), flags); |
677 | buffer->state = BUF_STATE_READY; | 676 | buffer->state = BUF_STATE_READY; |
678 | index = buffer - channel->iob; | 677 | index = buffer - channel->iob; |
@@ -696,8 +695,7 @@ __lcs_processed_buffer(struct lcs_channel *channel, struct lcs_buffer *buffer) | |||
696 | int index, prev, next; | 695 | int index, prev, next; |
697 | 696 | ||
698 | LCS_DBF_TEXT(5, trace, "prcsbuff"); | 697 | LCS_DBF_TEXT(5, trace, "prcsbuff"); |
699 | if (buffer->state != BUF_STATE_READY) | 698 | BUG_ON(buffer->state != BUF_STATE_READY); |
700 | BUG(); | ||
701 | buffer->state = BUF_STATE_PROCESSED; | 699 | buffer->state = BUF_STATE_PROCESSED; |
702 | index = buffer - channel->iob; | 700 | index = buffer - channel->iob; |
703 | prev = (index - 1) & (LCS_NUM_BUFFS - 1); | 701 | prev = (index - 1) & (LCS_NUM_BUFFS - 1); |
@@ -729,9 +727,8 @@ lcs_release_buffer(struct lcs_channel *channel, struct lcs_buffer *buffer) | |||
729 | unsigned long flags; | 727 | unsigned long flags; |
730 | 728 | ||
731 | LCS_DBF_TEXT(5, trace, "relbuff"); | 729 | LCS_DBF_TEXT(5, trace, "relbuff"); |
732 | if (buffer->state != BUF_STATE_LOCKED && | 730 | BUG_ON(buffer->state != BUF_STATE_LOCKED && |
733 | buffer->state != BUF_STATE_PROCESSED) | 731 | buffer->state != BUF_STATE_PROCESSED); |
734 | BUG(); | ||
735 | spin_lock_irqsave(get_ccwdev_lock(channel->ccwdev), flags); | 732 | spin_lock_irqsave(get_ccwdev_lock(channel->ccwdev), flags); |
736 | buffer->state = BUF_STATE_EMPTY; | 733 | buffer->state = BUF_STATE_EMPTY; |
737 | spin_unlock_irqrestore(get_ccwdev_lock(channel->ccwdev), flags); | 734 | spin_unlock_irqrestore(get_ccwdev_lock(channel->ccwdev), flags); |
diff --git a/drivers/s390/net/netiucv.c b/drivers/s390/net/netiucv.c index 5d6e6cbfa360..d7d1cc0a5c8e 100644 --- a/drivers/s390/net/netiucv.c +++ b/drivers/s390/net/netiucv.c | |||
@@ -112,7 +112,12 @@ struct iucv_connection { | |||
112 | /** | 112 | /** |
113 | * Linked list of all connection structs. | 113 | * Linked list of all connection structs. |
114 | */ | 114 | */ |
115 | static struct iucv_connection *iucv_connections; | 115 | struct iucv_connection_struct { |
116 | struct iucv_connection *iucv_connections; | ||
117 | rwlock_t iucv_rwlock; | ||
118 | }; | ||
119 | |||
120 | static struct iucv_connection_struct iucv_conns; | ||
116 | 121 | ||
117 | /** | 122 | /** |
118 | * Representation of event-data for the | 123 | * Representation of event-data for the |
@@ -1368,8 +1373,10 @@ user_write (struct device *dev, struct device_attribute *attr, const char *buf, | |||
1368 | struct net_device *ndev = priv->conn->netdev; | 1373 | struct net_device *ndev = priv->conn->netdev; |
1369 | char *p; | 1374 | char *p; |
1370 | char *tmp; | 1375 | char *tmp; |
1371 | char username[10]; | 1376 | char username[9]; |
1372 | int i; | 1377 | int i; |
1378 | struct iucv_connection **clist = &iucv_conns.iucv_connections; | ||
1379 | unsigned long flags; | ||
1373 | 1380 | ||
1374 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); | 1381 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); |
1375 | if (count>9) { | 1382 | if (count>9) { |
@@ -1382,7 +1389,7 @@ user_write (struct device *dev, struct device_attribute *attr, const char *buf, | |||
1382 | tmp = strsep((char **) &buf, "\n"); | 1389 | tmp = strsep((char **) &buf, "\n"); |
1383 | for (i=0, p=tmp; i<8 && *p; i++, p++) { | 1390 | for (i=0, p=tmp; i<8 && *p; i++, p++) { |
1384 | if (isalnum(*p) || (*p == '$')) | 1391 | if (isalnum(*p) || (*p == '$')) |
1385 | username[i]= *p; | 1392 | username[i]= toupper(*p); |
1386 | else if (*p == '\n') { | 1393 | else if (*p == '\n') { |
1387 | /* trailing lf, grr */ | 1394 | /* trailing lf, grr */ |
1388 | break; | 1395 | break; |
@@ -1395,11 +1402,11 @@ user_write (struct device *dev, struct device_attribute *attr, const char *buf, | |||
1395 | return -EINVAL; | 1402 | return -EINVAL; |
1396 | } | 1403 | } |
1397 | } | 1404 | } |
1398 | while (i<9) | 1405 | while (i<8) |
1399 | username[i++] = ' '; | 1406 | username[i++] = ' '; |
1400 | username[9] = '\0'; | 1407 | username[8] = '\0'; |
1401 | 1408 | ||
1402 | if (memcmp(username, priv->conn->userid, 8)) { | 1409 | if (memcmp(username, priv->conn->userid, 9)) { |
1403 | /* username changed */ | 1410 | /* username changed */ |
1404 | if (ndev->flags & (IFF_UP | IFF_RUNNING)) { | 1411 | if (ndev->flags & (IFF_UP | IFF_RUNNING)) { |
1405 | PRINT_WARN( | 1412 | PRINT_WARN( |
@@ -1410,6 +1417,19 @@ user_write (struct device *dev, struct device_attribute *attr, const char *buf, | |||
1410 | return -EBUSY; | 1417 | return -EBUSY; |
1411 | } | 1418 | } |
1412 | } | 1419 | } |
1420 | read_lock_irqsave(&iucv_conns.iucv_rwlock, flags); | ||
1421 | while (*clist) { | ||
1422 | if (!strncmp(username, (*clist)->userid, 9) || | ||
1423 | ((*clist)->netdev != ndev)) | ||
1424 | break; | ||
1425 | clist = &((*clist)->next); | ||
1426 | } | ||
1427 | read_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
1428 | if (*clist) { | ||
1429 | PRINT_WARN("netiucv: Connection to %s already exists\n", | ||
1430 | username); | ||
1431 | return -EEXIST; | ||
1432 | } | ||
1413 | memcpy(priv->conn->userid, username, 9); | 1433 | memcpy(priv->conn->userid, username, 9); |
1414 | 1434 | ||
1415 | return count; | 1435 | return count; |
@@ -1781,13 +1801,15 @@ netiucv_unregister_device(struct device *dev) | |||
1781 | static struct iucv_connection * | 1801 | static struct iucv_connection * |
1782 | netiucv_new_connection(struct net_device *dev, char *username) | 1802 | netiucv_new_connection(struct net_device *dev, char *username) |
1783 | { | 1803 | { |
1784 | struct iucv_connection **clist = &iucv_connections; | 1804 | unsigned long flags; |
1805 | struct iucv_connection **clist = &iucv_conns.iucv_connections; | ||
1785 | struct iucv_connection *conn = | 1806 | struct iucv_connection *conn = |
1786 | kzalloc(sizeof(struct iucv_connection), GFP_KERNEL); | 1807 | kzalloc(sizeof(struct iucv_connection), GFP_KERNEL); |
1787 | 1808 | ||
1788 | if (conn) { | 1809 | if (conn) { |
1789 | skb_queue_head_init(&conn->collect_queue); | 1810 | skb_queue_head_init(&conn->collect_queue); |
1790 | skb_queue_head_init(&conn->commit_queue); | 1811 | skb_queue_head_init(&conn->commit_queue); |
1812 | spin_lock_init(&conn->collect_lock); | ||
1791 | conn->max_buffsize = NETIUCV_BUFSIZE_DEFAULT; | 1813 | conn->max_buffsize = NETIUCV_BUFSIZE_DEFAULT; |
1792 | conn->netdev = dev; | 1814 | conn->netdev = dev; |
1793 | 1815 | ||
@@ -1822,8 +1844,10 @@ netiucv_new_connection(struct net_device *dev, char *username) | |||
1822 | fsm_newstate(conn->fsm, CONN_STATE_STOPPED); | 1844 | fsm_newstate(conn->fsm, CONN_STATE_STOPPED); |
1823 | } | 1845 | } |
1824 | 1846 | ||
1847 | write_lock_irqsave(&iucv_conns.iucv_rwlock, flags); | ||
1825 | conn->next = *clist; | 1848 | conn->next = *clist; |
1826 | *clist = conn; | 1849 | *clist = conn; |
1850 | write_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
1827 | } | 1851 | } |
1828 | return conn; | 1852 | return conn; |
1829 | } | 1853 | } |
@@ -1835,14 +1859,17 @@ netiucv_new_connection(struct net_device *dev, char *username) | |||
1835 | static void | 1859 | static void |
1836 | netiucv_remove_connection(struct iucv_connection *conn) | 1860 | netiucv_remove_connection(struct iucv_connection *conn) |
1837 | { | 1861 | { |
1838 | struct iucv_connection **clist = &iucv_connections; | 1862 | struct iucv_connection **clist = &iucv_conns.iucv_connections; |
1863 | unsigned long flags; | ||
1839 | 1864 | ||
1840 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); | 1865 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); |
1841 | if (conn == NULL) | 1866 | if (conn == NULL) |
1842 | return; | 1867 | return; |
1868 | write_lock_irqsave(&iucv_conns.iucv_rwlock, flags); | ||
1843 | while (*clist) { | 1869 | while (*clist) { |
1844 | if (*clist == conn) { | 1870 | if (*clist == conn) { |
1845 | *clist = conn->next; | 1871 | *clist = conn->next; |
1872 | write_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
1846 | if (conn->handle) { | 1873 | if (conn->handle) { |
1847 | iucv_unregister_program(conn->handle); | 1874 | iucv_unregister_program(conn->handle); |
1848 | conn->handle = NULL; | 1875 | conn->handle = NULL; |
@@ -1855,6 +1882,7 @@ netiucv_remove_connection(struct iucv_connection *conn) | |||
1855 | } | 1882 | } |
1856 | clist = &((*clist)->next); | 1883 | clist = &((*clist)->next); |
1857 | } | 1884 | } |
1885 | write_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
1858 | } | 1886 | } |
1859 | 1887 | ||
1860 | /** | 1888 | /** |
@@ -1947,9 +1975,11 @@ static ssize_t | |||
1947 | conn_write(struct device_driver *drv, const char *buf, size_t count) | 1975 | conn_write(struct device_driver *drv, const char *buf, size_t count) |
1948 | { | 1976 | { |
1949 | char *p; | 1977 | char *p; |
1950 | char username[10]; | 1978 | char username[9]; |
1951 | int i, ret; | 1979 | int i, ret; |
1952 | struct net_device *dev; | 1980 | struct net_device *dev; |
1981 | struct iucv_connection **clist = &iucv_conns.iucv_connections; | ||
1982 | unsigned long flags; | ||
1953 | 1983 | ||
1954 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); | 1984 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); |
1955 | if (count>9) { | 1985 | if (count>9) { |
@@ -1960,7 +1990,7 @@ conn_write(struct device_driver *drv, const char *buf, size_t count) | |||
1960 | 1990 | ||
1961 | for (i=0, p=(char *)buf; i<8 && *p; i++, p++) { | 1991 | for (i=0, p=(char *)buf; i<8 && *p; i++, p++) { |
1962 | if (isalnum(*p) || (*p == '$')) | 1992 | if (isalnum(*p) || (*p == '$')) |
1963 | username[i]= *p; | 1993 | username[i]= toupper(*p); |
1964 | else if (*p == '\n') { | 1994 | else if (*p == '\n') { |
1965 | /* trailing lf, grr */ | 1995 | /* trailing lf, grr */ |
1966 | break; | 1996 | break; |
@@ -1971,9 +2001,22 @@ conn_write(struct device_driver *drv, const char *buf, size_t count) | |||
1971 | return -EINVAL; | 2001 | return -EINVAL; |
1972 | } | 2002 | } |
1973 | } | 2003 | } |
1974 | while (i<9) | 2004 | while (i<8) |
1975 | username[i++] = ' '; | 2005 | username[i++] = ' '; |
1976 | username[9] = '\0'; | 2006 | username[8] = '\0'; |
2007 | |||
2008 | read_lock_irqsave(&iucv_conns.iucv_rwlock, flags); | ||
2009 | while (*clist) { | ||
2010 | if (!strncmp(username, (*clist)->userid, 9)) | ||
2011 | break; | ||
2012 | clist = &((*clist)->next); | ||
2013 | } | ||
2014 | read_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
2015 | if (*clist) { | ||
2016 | PRINT_WARN("netiucv: Connection to %s already exists\n", | ||
2017 | username); | ||
2018 | return -EEXIST; | ||
2019 | } | ||
1977 | dev = netiucv_init_netdevice(username); | 2020 | dev = netiucv_init_netdevice(username); |
1978 | if (!dev) { | 2021 | if (!dev) { |
1979 | PRINT_WARN( | 2022 | PRINT_WARN( |
@@ -2015,7 +2058,8 @@ DRIVER_ATTR(connection, 0200, NULL, conn_write); | |||
2015 | static ssize_t | 2058 | static ssize_t |
2016 | remove_write (struct device_driver *drv, const char *buf, size_t count) | 2059 | remove_write (struct device_driver *drv, const char *buf, size_t count) |
2017 | { | 2060 | { |
2018 | struct iucv_connection **clist = &iucv_connections; | 2061 | struct iucv_connection **clist = &iucv_conns.iucv_connections; |
2062 | unsigned long flags; | ||
2019 | struct net_device *ndev; | 2063 | struct net_device *ndev; |
2020 | struct netiucv_priv *priv; | 2064 | struct netiucv_priv *priv; |
2021 | struct device *dev; | 2065 | struct device *dev; |
@@ -2026,7 +2070,7 @@ remove_write (struct device_driver *drv, const char *buf, size_t count) | |||
2026 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); | 2070 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); |
2027 | 2071 | ||
2028 | if (count >= IFNAMSIZ) | 2072 | if (count >= IFNAMSIZ) |
2029 | count = IFNAMSIZ-1; | 2073 | count = IFNAMSIZ - 1;; |
2030 | 2074 | ||
2031 | for (i=0, p=(char *)buf; i<count && *p; i++, p++) { | 2075 | for (i=0, p=(char *)buf; i<count && *p; i++, p++) { |
2032 | if ((*p == '\n') || (*p == ' ')) { | 2076 | if ((*p == '\n') || (*p == ' ')) { |
@@ -2038,6 +2082,7 @@ remove_write (struct device_driver *drv, const char *buf, size_t count) | |||
2038 | } | 2082 | } |
2039 | name[i] = '\0'; | 2083 | name[i] = '\0'; |
2040 | 2084 | ||
2085 | read_lock_irqsave(&iucv_conns.iucv_rwlock, flags); | ||
2041 | while (*clist) { | 2086 | while (*clist) { |
2042 | ndev = (*clist)->netdev; | 2087 | ndev = (*clist)->netdev; |
2043 | priv = (struct netiucv_priv*)ndev->priv; | 2088 | priv = (struct netiucv_priv*)ndev->priv; |
@@ -2047,6 +2092,7 @@ remove_write (struct device_driver *drv, const char *buf, size_t count) | |||
2047 | clist = &((*clist)->next); | 2092 | clist = &((*clist)->next); |
2048 | continue; | 2093 | continue; |
2049 | } | 2094 | } |
2095 | read_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
2050 | if (ndev->flags & (IFF_UP | IFF_RUNNING)) { | 2096 | if (ndev->flags & (IFF_UP | IFF_RUNNING)) { |
2051 | PRINT_WARN( | 2097 | PRINT_WARN( |
2052 | "netiucv: net device %s active with peer %s\n", | 2098 | "netiucv: net device %s active with peer %s\n", |
@@ -2060,6 +2106,7 @@ remove_write (struct device_driver *drv, const char *buf, size_t count) | |||
2060 | netiucv_unregister_device(dev); | 2106 | netiucv_unregister_device(dev); |
2061 | return count; | 2107 | return count; |
2062 | } | 2108 | } |
2109 | read_unlock_irqrestore(&iucv_conns.iucv_rwlock, flags); | ||
2063 | PRINT_WARN("netiucv: net device %s unknown\n", name); | 2110 | PRINT_WARN("netiucv: net device %s unknown\n", name); |
2064 | IUCV_DBF_TEXT(data, 2, "remove_write: unknown device\n"); | 2111 | IUCV_DBF_TEXT(data, 2, "remove_write: unknown device\n"); |
2065 | return -EINVAL; | 2112 | return -EINVAL; |
@@ -2077,8 +2124,8 @@ static void __exit | |||
2077 | netiucv_exit(void) | 2124 | netiucv_exit(void) |
2078 | { | 2125 | { |
2079 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); | 2126 | IUCV_DBF_TEXT(trace, 3, __FUNCTION__); |
2080 | while (iucv_connections) { | 2127 | while (iucv_conns.iucv_connections) { |
2081 | struct net_device *ndev = iucv_connections->netdev; | 2128 | struct net_device *ndev = iucv_conns.iucv_connections->netdev; |
2082 | struct netiucv_priv *priv = (struct netiucv_priv*)ndev->priv; | 2129 | struct netiucv_priv *priv = (struct netiucv_priv*)ndev->priv; |
2083 | struct device *dev = priv->dev; | 2130 | struct device *dev = priv->dev; |
2084 | 2131 | ||
@@ -2120,6 +2167,7 @@ netiucv_init(void) | |||
2120 | if (!ret) { | 2167 | if (!ret) { |
2121 | ret = driver_create_file(&netiucv_driver, &driver_attr_remove); | 2168 | ret = driver_create_file(&netiucv_driver, &driver_attr_remove); |
2122 | netiucv_banner(); | 2169 | netiucv_banner(); |
2170 | rwlock_init(&iucv_conns.iucv_rwlock); | ||
2123 | } else { | 2171 | } else { |
2124 | PRINT_ERR("NETIUCV: failed to add driver attribute.\n"); | 2172 | PRINT_ERR("NETIUCV: failed to add driver attribute.\n"); |
2125 | IUCV_DBF_TEXT_(setup, 2, "ret %d from driver_create_file\n", ret); | 2173 | IUCV_DBF_TEXT_(setup, 2, "ret %d from driver_create_file\n", ret); |
diff --git a/drivers/s390/net/qeth.h b/drivers/s390/net/qeth.h index 619f4a0c7160..821383d8cbe7 100644 --- a/drivers/s390/net/qeth.h +++ b/drivers/s390/net/qeth.h | |||
@@ -176,7 +176,6 @@ extern struct ccwgroup_driver qeth_ccwgroup_driver; | |||
176 | /** | 176 | /** |
177 | * card stuff | 177 | * card stuff |
178 | */ | 178 | */ |
179 | #ifdef CONFIG_QETH_PERF_STATS | ||
180 | struct qeth_perf_stats { | 179 | struct qeth_perf_stats { |
181 | unsigned int bufs_rec; | 180 | unsigned int bufs_rec; |
182 | unsigned int bufs_sent; | 181 | unsigned int bufs_sent; |
@@ -211,8 +210,10 @@ struct qeth_perf_stats { | |||
211 | unsigned int large_send_cnt; | 210 | unsigned int large_send_cnt; |
212 | unsigned int sg_skbs_sent; | 211 | unsigned int sg_skbs_sent; |
213 | unsigned int sg_frags_sent; | 212 | unsigned int sg_frags_sent; |
213 | /* initial values when measuring starts */ | ||
214 | unsigned long initial_rx_packets; | ||
215 | unsigned long initial_tx_packets; | ||
214 | }; | 216 | }; |
215 | #endif /* CONFIG_QETH_PERF_STATS */ | ||
216 | 217 | ||
217 | /* Routing stuff */ | 218 | /* Routing stuff */ |
218 | struct qeth_routing_info { | 219 | struct qeth_routing_info { |
@@ -462,6 +463,7 @@ enum qeth_qdio_info_states { | |||
462 | QETH_QDIO_UNINITIALIZED, | 463 | QETH_QDIO_UNINITIALIZED, |
463 | QETH_QDIO_ALLOCATED, | 464 | QETH_QDIO_ALLOCATED, |
464 | QETH_QDIO_ESTABLISHED, | 465 | QETH_QDIO_ESTABLISHED, |
466 | QETH_QDIO_CLEANING | ||
465 | }; | 467 | }; |
466 | 468 | ||
467 | struct qeth_buffer_pool_entry { | 469 | struct qeth_buffer_pool_entry { |
@@ -536,7 +538,7 @@ struct qeth_qdio_out_q { | |||
536 | } __attribute__ ((aligned(256))); | 538 | } __attribute__ ((aligned(256))); |
537 | 539 | ||
538 | struct qeth_qdio_info { | 540 | struct qeth_qdio_info { |
539 | volatile enum qeth_qdio_info_states state; | 541 | atomic_t state; |
540 | /* input */ | 542 | /* input */ |
541 | struct qeth_qdio_q *in_q; | 543 | struct qeth_qdio_q *in_q; |
542 | struct qeth_qdio_buffer_pool in_buf_pool; | 544 | struct qeth_qdio_buffer_pool in_buf_pool; |
@@ -767,6 +769,7 @@ struct qeth_card_options { | |||
767 | int fake_ll; | 769 | int fake_ll; |
768 | int layer2; | 770 | int layer2; |
769 | enum qeth_large_send_types large_send; | 771 | enum qeth_large_send_types large_send; |
772 | int performance_stats; | ||
770 | }; | 773 | }; |
771 | 774 | ||
772 | /* | 775 | /* |
@@ -819,9 +822,7 @@ struct qeth_card { | |||
819 | struct list_head cmd_waiter_list; | 822 | struct list_head cmd_waiter_list; |
820 | /* QDIO buffer handling */ | 823 | /* QDIO buffer handling */ |
821 | struct qeth_qdio_info qdio; | 824 | struct qeth_qdio_info qdio; |
822 | #ifdef CONFIG_QETH_PERF_STATS | ||
823 | struct qeth_perf_stats perf_stats; | 825 | struct qeth_perf_stats perf_stats; |
824 | #endif /* CONFIG_QETH_PERF_STATS */ | ||
825 | int use_hard_stop; | 826 | int use_hard_stop; |
826 | int (*orig_hard_header)(struct sk_buff *,struct net_device *, | 827 | int (*orig_hard_header)(struct sk_buff *,struct net_device *, |
827 | unsigned short,void *,void *,unsigned); | 828 | unsigned short,void *,void *,unsigned); |
@@ -859,23 +860,18 @@ qeth_get_ipa_adp_type(enum qeth_link_types link_type) | |||
859 | } | 860 | } |
860 | } | 861 | } |
861 | 862 | ||
862 | static inline int | 863 | static inline struct sk_buff * |
863 | qeth_realloc_headroom(struct qeth_card *card, struct sk_buff **skb, int size) | 864 | qeth_realloc_headroom(struct qeth_card *card, struct sk_buff *skb, int size) |
864 | { | 865 | { |
865 | struct sk_buff *new_skb = NULL; | 866 | struct sk_buff *new_skb = skb; |
866 | 867 | ||
867 | if (skb_headroom(*skb) < size){ | 868 | if (skb_headroom(skb) >= size) |
868 | new_skb = skb_realloc_headroom(*skb, size); | 869 | return skb; |
869 | if (!new_skb) { | 870 | new_skb = skb_realloc_headroom(skb, size); |
870 | PRINT_ERR("qeth_prepare_skb: could " | 871 | if (!new_skb) |
871 | "not realloc headroom for qeth_hdr " | 872 | PRINT_ERR("Could not realloc headroom for qeth_hdr " |
872 | "on interface %s", QETH_CARD_IFNAME(card)); | 873 | "on interface %s", QETH_CARD_IFNAME(card)); |
873 | return -ENOMEM; | 874 | return new_skb; |
874 | } | ||
875 | kfree_skb(*skb); | ||
876 | *skb = new_skb; | ||
877 | } | ||
878 | return 0; | ||
879 | } | 875 | } |
880 | 876 | ||
881 | static inline struct sk_buff * | 877 | static inline struct sk_buff * |
@@ -885,16 +881,15 @@ qeth_pskb_unshare(struct sk_buff *skb, int pri) | |||
885 | if (!skb_cloned(skb)) | 881 | if (!skb_cloned(skb)) |
886 | return skb; | 882 | return skb; |
887 | nskb = skb_copy(skb, pri); | 883 | nskb = skb_copy(skb, pri); |
888 | kfree_skb(skb); /* free our shared copy */ | ||
889 | return nskb; | 884 | return nskb; |
890 | } | 885 | } |
891 | 886 | ||
892 | static inline void * | 887 | static inline void * |
893 | qeth_push_skb(struct qeth_card *card, struct sk_buff **skb, int size) | 888 | qeth_push_skb(struct qeth_card *card, struct sk_buff *skb, int size) |
894 | { | 889 | { |
895 | void *hdr; | 890 | void *hdr; |
896 | 891 | ||
897 | hdr = (void *) skb_push(*skb, size); | 892 | hdr = (void *) skb_push(skb, size); |
898 | /* | 893 | /* |
899 | * sanity check, the Linux memory allocation scheme should | 894 | * sanity check, the Linux memory allocation scheme should |
900 | * never present us cases like this one (the qdio header size plus | 895 | * never present us cases like this one (the qdio header size plus |
@@ -903,8 +898,7 @@ qeth_push_skb(struct qeth_card *card, struct sk_buff **skb, int size) | |||
903 | if ((((unsigned long) hdr) & (~(PAGE_SIZE - 1))) != | 898 | if ((((unsigned long) hdr) & (~(PAGE_SIZE - 1))) != |
904 | (((unsigned long) hdr + size + | 899 | (((unsigned long) hdr + size + |
905 | QETH_IP_HEADER_SIZE) & (~(PAGE_SIZE - 1)))) { | 900 | QETH_IP_HEADER_SIZE) & (~(PAGE_SIZE - 1)))) { |
906 | PRINT_ERR("qeth_prepare_skb: misaligned " | 901 | PRINT_ERR("Misaligned packet on interface %s. Discarded.", |
907 | "packet on interface %s. Discarded.", | ||
908 | QETH_CARD_IFNAME(card)); | 902 | QETH_CARD_IFNAME(card)); |
909 | return NULL; | 903 | return NULL; |
910 | } | 904 | } |
@@ -1056,13 +1050,11 @@ qeth_get_arphdr_type(int cardtype, int linktype) | |||
1056 | } | 1050 | } |
1057 | } | 1051 | } |
1058 | 1052 | ||
1059 | #ifdef CONFIG_QETH_PERF_STATS | ||
1060 | static inline int | 1053 | static inline int |
1061 | qeth_get_micros(void) | 1054 | qeth_get_micros(void) |
1062 | { | 1055 | { |
1063 | return (int) (get_clock() >> 12); | 1056 | return (int) (get_clock() >> 12); |
1064 | } | 1057 | } |
1065 | #endif | ||
1066 | 1058 | ||
1067 | static inline int | 1059 | static inline int |
1068 | qeth_get_qdio_q_format(struct qeth_card *card) | 1060 | qeth_get_qdio_q_format(struct qeth_card *card) |
@@ -1096,10 +1088,11 @@ qeth_string_to_ipaddr4(const char *buf, __u8 *addr) | |||
1096 | { | 1088 | { |
1097 | int count = 0, rc = 0; | 1089 | int count = 0, rc = 0; |
1098 | int in[4]; | 1090 | int in[4]; |
1091 | char c; | ||
1099 | 1092 | ||
1100 | rc = sscanf(buf, "%d.%d.%d.%d%n", | 1093 | rc = sscanf(buf, "%u.%u.%u.%u%c", |
1101 | &in[0], &in[1], &in[2], &in[3], &count); | 1094 | &in[0], &in[1], &in[2], &in[3], &c); |
1102 | if (rc != 4 || count<=0) | 1095 | if (rc != 4 && (rc != 5 || c != '\n')) |
1103 | return -EINVAL; | 1096 | return -EINVAL; |
1104 | for (count = 0; count < 4; count++) { | 1097 | for (count = 0; count < 4; count++) { |
1105 | if (in[count] > 255) | 1098 | if (in[count] > 255) |
@@ -1123,24 +1116,28 @@ qeth_ipaddr6_to_string(const __u8 *addr, char *buf) | |||
1123 | static inline int | 1116 | static inline int |
1124 | qeth_string_to_ipaddr6(const char *buf, __u8 *addr) | 1117 | qeth_string_to_ipaddr6(const char *buf, __u8 *addr) |
1125 | { | 1118 | { |
1126 | char *end, *start; | 1119 | const char *end, *end_tmp, *start; |
1127 | __u16 *in; | 1120 | __u16 *in; |
1128 | char num[5]; | 1121 | char num[5]; |
1129 | int num2, cnt, out, found, save_cnt; | 1122 | int num2, cnt, out, found, save_cnt; |
1130 | unsigned short in_tmp[8] = {0, }; | 1123 | unsigned short in_tmp[8] = {0, }; |
1131 | 1124 | ||
1132 | cnt = out = found = save_cnt = num2 = 0; | 1125 | cnt = out = found = save_cnt = num2 = 0; |
1133 | end = start = (char *) buf; | 1126 | end = start = buf; |
1134 | in = (__u16 *) addr; | 1127 | in = (__u16 *) addr; |
1135 | memset(in, 0, 16); | 1128 | memset(in, 0, 16); |
1136 | while (end) { | 1129 | while (*end) { |
1137 | end = strchr(end,':'); | 1130 | end = strchr(start,':'); |
1138 | if (end == NULL) { | 1131 | if (end == NULL) { |
1139 | end = (char *)buf + (strlen(buf)); | 1132 | end = buf + strlen(buf); |
1140 | out = 1; | 1133 | if ((end_tmp = strchr(start, '\n')) != NULL) |
1134 | end = end_tmp; | ||
1135 | out = 1; | ||
1141 | } | 1136 | } |
1142 | if ((end - start)) { | 1137 | if ((end - start)) { |
1143 | memset(num, 0, 5); | 1138 | memset(num, 0, 5); |
1139 | if ((end - start) > 4) | ||
1140 | return -EINVAL; | ||
1144 | memcpy(num, start, end - start); | 1141 | memcpy(num, start, end - start); |
1145 | if (!qeth_isxdigit(num)) | 1142 | if (!qeth_isxdigit(num)) |
1146 | return -EINVAL; | 1143 | return -EINVAL; |
@@ -1158,6 +1155,8 @@ qeth_string_to_ipaddr6(const char *buf, __u8 *addr) | |||
1158 | } | 1155 | } |
1159 | start = ++end; | 1156 | start = ++end; |
1160 | } | 1157 | } |
1158 | if (cnt + save_cnt > 8) | ||
1159 | return -EINVAL; | ||
1161 | cnt = 7; | 1160 | cnt = 7; |
1162 | while (save_cnt) | 1161 | while (save_cnt) |
1163 | in[cnt--] = in_tmp[--save_cnt]; | 1162 | in[cnt--] = in_tmp[--save_cnt]; |
diff --git a/drivers/s390/net/qeth_eddp.c b/drivers/s390/net/qeth_eddp.c index 8491598f9149..a363721cf28d 100644 --- a/drivers/s390/net/qeth_eddp.c +++ b/drivers/s390/net/qeth_eddp.c | |||
@@ -179,9 +179,8 @@ out_check: | |||
179 | flush_cnt++; | 179 | flush_cnt++; |
180 | } | 180 | } |
181 | } else { | 181 | } else { |
182 | #ifdef CONFIG_QETH_PERF_STATS | 182 | if (queue->card->options.performance_stats) |
183 | queue->card->perf_stats.skbs_sent_pack++; | 183 | queue->card->perf_stats.skbs_sent_pack++; |
184 | #endif | ||
185 | QETH_DBF_TEXT(trace, 6, "fillbfpa"); | 184 | QETH_DBF_TEXT(trace, 6, "fillbfpa"); |
186 | if (buf->next_element_to_fill >= | 185 | if (buf->next_element_to_fill >= |
187 | QETH_MAX_BUFFER_ELEMENTS(queue->card)) { | 186 | QETH_MAX_BUFFER_ELEMENTS(queue->card)) { |
diff --git a/drivers/s390/net/qeth_main.c b/drivers/s390/net/qeth_main.c index e1327b8fce00..5613b4564fa2 100644 --- a/drivers/s390/net/qeth_main.c +++ b/drivers/s390/net/qeth_main.c | |||
@@ -1073,6 +1073,7 @@ qeth_set_intial_options(struct qeth_card *card) | |||
1073 | card->options.layer2 = 1; | 1073 | card->options.layer2 = 1; |
1074 | else | 1074 | else |
1075 | card->options.layer2 = 0; | 1075 | card->options.layer2 = 0; |
1076 | card->options.performance_stats = 1; | ||
1076 | } | 1077 | } |
1077 | 1078 | ||
1078 | /** | 1079 | /** |
@@ -1708,6 +1709,7 @@ qeth_check_ipa_data(struct qeth_card *card, struct qeth_cmd_buffer *iob) | |||
1708 | "IP address reset.\n", | 1709 | "IP address reset.\n", |
1709 | QETH_CARD_IFNAME(card), | 1710 | QETH_CARD_IFNAME(card), |
1710 | card->info.chpid); | 1711 | card->info.chpid); |
1712 | netif_carrier_on(card->dev); | ||
1711 | qeth_schedule_recovery(card); | 1713 | qeth_schedule_recovery(card); |
1712 | return NULL; | 1714 | return NULL; |
1713 | case IPA_CMD_MODCCID: | 1715 | case IPA_CMD_MODCCID: |
@@ -2464,24 +2466,6 @@ qeth_rebuild_skb_fake_ll(struct qeth_card *card, struct sk_buff *skb, | |||
2464 | qeth_rebuild_skb_fake_ll_eth(card, skb, hdr); | 2466 | qeth_rebuild_skb_fake_ll_eth(card, skb, hdr); |
2465 | } | 2467 | } |
2466 | 2468 | ||
2467 | static inline void | ||
2468 | qeth_rebuild_skb_vlan(struct qeth_card *card, struct sk_buff *skb, | ||
2469 | struct qeth_hdr *hdr) | ||
2470 | { | ||
2471 | #ifdef CONFIG_QETH_VLAN | ||
2472 | u16 *vlan_tag; | ||
2473 | |||
2474 | if (hdr->hdr.l3.ext_flags & | ||
2475 | (QETH_HDR_EXT_VLAN_FRAME | QETH_HDR_EXT_INCLUDE_VLAN_TAG)) { | ||
2476 | vlan_tag = (u16 *) skb_push(skb, VLAN_HLEN); | ||
2477 | *vlan_tag = (hdr->hdr.l3.ext_flags & QETH_HDR_EXT_VLAN_FRAME)? | ||
2478 | hdr->hdr.l3.vlan_id : *((u16 *)&hdr->hdr.l3.dest_addr[12]); | ||
2479 | *(vlan_tag + 1) = skb->protocol; | ||
2480 | skb->protocol = __constant_htons(ETH_P_8021Q); | ||
2481 | } | ||
2482 | #endif /* CONFIG_QETH_VLAN */ | ||
2483 | } | ||
2484 | |||
2485 | static inline __u16 | 2469 | static inline __u16 |
2486 | qeth_layer2_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, | 2470 | qeth_layer2_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, |
2487 | struct qeth_hdr *hdr) | 2471 | struct qeth_hdr *hdr) |
@@ -2510,15 +2494,16 @@ qeth_layer2_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, | |||
2510 | return vlan_id; | 2494 | return vlan_id; |
2511 | } | 2495 | } |
2512 | 2496 | ||
2513 | static inline void | 2497 | static inline __u16 |
2514 | qeth_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, | 2498 | qeth_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, |
2515 | struct qeth_hdr *hdr) | 2499 | struct qeth_hdr *hdr) |
2516 | { | 2500 | { |
2501 | unsigned short vlan_id = 0; | ||
2517 | #ifdef CONFIG_QETH_IPV6 | 2502 | #ifdef CONFIG_QETH_IPV6 |
2518 | if (hdr->hdr.l3.flags & QETH_HDR_PASSTHRU) { | 2503 | if (hdr->hdr.l3.flags & QETH_HDR_PASSTHRU) { |
2519 | skb->pkt_type = PACKET_HOST; | 2504 | skb->pkt_type = PACKET_HOST; |
2520 | skb->protocol = qeth_type_trans(skb, card->dev); | 2505 | skb->protocol = qeth_type_trans(skb, card->dev); |
2521 | return; | 2506 | return 0; |
2522 | } | 2507 | } |
2523 | #endif /* CONFIG_QETH_IPV6 */ | 2508 | #endif /* CONFIG_QETH_IPV6 */ |
2524 | skb->protocol = htons((hdr->hdr.l3.flags & QETH_HDR_IPV6)? ETH_P_IPV6 : | 2509 | skb->protocol = htons((hdr->hdr.l3.flags & QETH_HDR_IPV6)? ETH_P_IPV6 : |
@@ -2540,7 +2525,13 @@ qeth_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, | |||
2540 | default: | 2525 | default: |
2541 | skb->pkt_type = PACKET_HOST; | 2526 | skb->pkt_type = PACKET_HOST; |
2542 | } | 2527 | } |
2543 | qeth_rebuild_skb_vlan(card, skb, hdr); | 2528 | |
2529 | if (hdr->hdr.l3.ext_flags & | ||
2530 | (QETH_HDR_EXT_VLAN_FRAME | QETH_HDR_EXT_INCLUDE_VLAN_TAG)) { | ||
2531 | vlan_id = (hdr->hdr.l3.ext_flags & QETH_HDR_EXT_VLAN_FRAME)? | ||
2532 | hdr->hdr.l3.vlan_id : *((u16 *)&hdr->hdr.l3.dest_addr[12]); | ||
2533 | } | ||
2534 | |||
2544 | if (card->options.fake_ll) | 2535 | if (card->options.fake_ll) |
2545 | qeth_rebuild_skb_fake_ll(card, skb, hdr); | 2536 | qeth_rebuild_skb_fake_ll(card, skb, hdr); |
2546 | else | 2537 | else |
@@ -2556,6 +2547,7 @@ qeth_rebuild_skb(struct qeth_card *card, struct sk_buff *skb, | |||
2556 | else | 2547 | else |
2557 | skb->ip_summed = SW_CHECKSUMMING; | 2548 | skb->ip_summed = SW_CHECKSUMMING; |
2558 | } | 2549 | } |
2550 | return vlan_id; | ||
2559 | } | 2551 | } |
2560 | 2552 | ||
2561 | static inline void | 2553 | static inline void |
@@ -2568,20 +2560,20 @@ qeth_process_inbound_buffer(struct qeth_card *card, | |||
2568 | int offset; | 2560 | int offset; |
2569 | int rxrc; | 2561 | int rxrc; |
2570 | __u16 vlan_tag = 0; | 2562 | __u16 vlan_tag = 0; |
2563 | __u16 *vlan_addr; | ||
2571 | 2564 | ||
2572 | /* get first element of current buffer */ | 2565 | /* get first element of current buffer */ |
2573 | element = (struct qdio_buffer_element *)&buf->buffer->element[0]; | 2566 | element = (struct qdio_buffer_element *)&buf->buffer->element[0]; |
2574 | offset = 0; | 2567 | offset = 0; |
2575 | #ifdef CONFIG_QETH_PERF_STATS | 2568 | if (card->options.performance_stats) |
2576 | card->perf_stats.bufs_rec++; | 2569 | card->perf_stats.bufs_rec++; |
2577 | #endif | ||
2578 | while((skb = qeth_get_next_skb(card, buf->buffer, &element, | 2570 | while((skb = qeth_get_next_skb(card, buf->buffer, &element, |
2579 | &offset, &hdr))) { | 2571 | &offset, &hdr))) { |
2580 | skb->dev = card->dev; | 2572 | skb->dev = card->dev; |
2581 | if (hdr->hdr.l2.id == QETH_HEADER_TYPE_LAYER2) | 2573 | if (hdr->hdr.l2.id == QETH_HEADER_TYPE_LAYER2) |
2582 | vlan_tag = qeth_layer2_rebuild_skb(card, skb, hdr); | 2574 | vlan_tag = qeth_layer2_rebuild_skb(card, skb, hdr); |
2583 | else if (hdr->hdr.l3.id == QETH_HEADER_TYPE_LAYER3) | 2575 | else if (hdr->hdr.l3.id == QETH_HEADER_TYPE_LAYER3) |
2584 | qeth_rebuild_skb(card, skb, hdr); | 2576 | vlan_tag = qeth_rebuild_skb(card, skb, hdr); |
2585 | else { /*in case of OSN*/ | 2577 | else { /*in case of OSN*/ |
2586 | skb_push(skb, sizeof(struct qeth_hdr)); | 2578 | skb_push(skb, sizeof(struct qeth_hdr)); |
2587 | memcpy(skb->data, hdr, sizeof(struct qeth_hdr)); | 2579 | memcpy(skb->data, hdr, sizeof(struct qeth_hdr)); |
@@ -2591,14 +2583,19 @@ qeth_process_inbound_buffer(struct qeth_card *card, | |||
2591 | dev_kfree_skb_any(skb); | 2583 | dev_kfree_skb_any(skb); |
2592 | continue; | 2584 | continue; |
2593 | } | 2585 | } |
2586 | if (card->info.type == QETH_CARD_TYPE_OSN) | ||
2587 | rxrc = card->osn_info.data_cb(skb); | ||
2588 | else | ||
2594 | #ifdef CONFIG_QETH_VLAN | 2589 | #ifdef CONFIG_QETH_VLAN |
2595 | if (vlan_tag) | 2590 | if (vlan_tag) |
2596 | vlan_hwaccel_rx(skb, card->vlangrp, vlan_tag); | 2591 | if (card->vlangrp) |
2592 | vlan_hwaccel_rx(skb, card->vlangrp, vlan_tag); | ||
2593 | else { | ||
2594 | dev_kfree_skb_any(skb); | ||
2595 | continue; | ||
2596 | } | ||
2597 | else | 2597 | else |
2598 | #endif | 2598 | #endif |
2599 | if (card->info.type == QETH_CARD_TYPE_OSN) | ||
2600 | rxrc = card->osn_info.data_cb(skb); | ||
2601 | else | ||
2602 | rxrc = netif_rx(skb); | 2599 | rxrc = netif_rx(skb); |
2603 | card->dev->last_rx = jiffies; | 2600 | card->dev->last_rx = jiffies; |
2604 | card->stats.rx_packets++; | 2601 | card->stats.rx_packets++; |
@@ -2626,7 +2623,7 @@ qeth_init_input_buffer(struct qeth_card *card, struct qeth_qdio_buffer *buf) | |||
2626 | { | 2623 | { |
2627 | struct qeth_buffer_pool_entry *pool_entry; | 2624 | struct qeth_buffer_pool_entry *pool_entry; |
2628 | int i; | 2625 | int i; |
2629 | 2626 | ||
2630 | pool_entry = qeth_get_buffer_pool_entry(card); | 2627 | pool_entry = qeth_get_buffer_pool_entry(card); |
2631 | /* | 2628 | /* |
2632 | * since the buffer is accessed only from the input_tasklet | 2629 | * since the buffer is accessed only from the input_tasklet |
@@ -2700,17 +2697,18 @@ qeth_queue_input_buffer(struct qeth_card *card, int index) | |||
2700 | * 'index') un-requeued -> this buffer is the first buffer that | 2697 | * 'index') un-requeued -> this buffer is the first buffer that |
2701 | * will be requeued the next time | 2698 | * will be requeued the next time |
2702 | */ | 2699 | */ |
2703 | #ifdef CONFIG_QETH_PERF_STATS | 2700 | if (card->options.performance_stats) { |
2704 | card->perf_stats.inbound_do_qdio_cnt++; | 2701 | card->perf_stats.inbound_do_qdio_cnt++; |
2705 | card->perf_stats.inbound_do_qdio_start_time = qeth_get_micros(); | 2702 | card->perf_stats.inbound_do_qdio_start_time = |
2706 | #endif | 2703 | qeth_get_micros(); |
2704 | } | ||
2707 | rc = do_QDIO(CARD_DDEV(card), | 2705 | rc = do_QDIO(CARD_DDEV(card), |
2708 | QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT, | 2706 | QDIO_FLAG_SYNC_INPUT | QDIO_FLAG_UNDER_INTERRUPT, |
2709 | 0, queue->next_buf_to_init, count, NULL); | 2707 | 0, queue->next_buf_to_init, count, NULL); |
2710 | #ifdef CONFIG_QETH_PERF_STATS | 2708 | if (card->options.performance_stats) |
2711 | card->perf_stats.inbound_do_qdio_time += qeth_get_micros() - | 2709 | card->perf_stats.inbound_do_qdio_time += |
2712 | card->perf_stats.inbound_do_qdio_start_time; | 2710 | qeth_get_micros() - |
2713 | #endif | 2711 | card->perf_stats.inbound_do_qdio_start_time; |
2714 | if (rc){ | 2712 | if (rc){ |
2715 | PRINT_WARN("qeth_queue_input_buffer's do_QDIO " | 2713 | PRINT_WARN("qeth_queue_input_buffer's do_QDIO " |
2716 | "return %i (device %s).\n", | 2714 | "return %i (device %s).\n", |
@@ -2746,10 +2744,10 @@ qeth_qdio_input_handler(struct ccw_device * ccwdev, unsigned int status, | |||
2746 | QETH_DBF_TEXT(trace, 6, "qdinput"); | 2744 | QETH_DBF_TEXT(trace, 6, "qdinput"); |
2747 | card = (struct qeth_card *) card_ptr; | 2745 | card = (struct qeth_card *) card_ptr; |
2748 | net_dev = card->dev; | 2746 | net_dev = card->dev; |
2749 | #ifdef CONFIG_QETH_PERF_STATS | 2747 | if (card->options.performance_stats) { |
2750 | card->perf_stats.inbound_cnt++; | 2748 | card->perf_stats.inbound_cnt++; |
2751 | card->perf_stats.inbound_start_time = qeth_get_micros(); | 2749 | card->perf_stats.inbound_start_time = qeth_get_micros(); |
2752 | #endif | 2750 | } |
2753 | if (status & QDIO_STATUS_LOOK_FOR_ERROR) { | 2751 | if (status & QDIO_STATUS_LOOK_FOR_ERROR) { |
2754 | if (status & QDIO_STATUS_ACTIVATE_CHECK_CONDITION){ | 2752 | if (status & QDIO_STATUS_ACTIVATE_CHECK_CONDITION){ |
2755 | QETH_DBF_TEXT(trace, 1,"qdinchk"); | 2753 | QETH_DBF_TEXT(trace, 1,"qdinchk"); |
@@ -2771,10 +2769,9 @@ qeth_qdio_input_handler(struct ccw_device * ccwdev, unsigned int status, | |||
2771 | qeth_put_buffer_pool_entry(card, buffer->pool_entry); | 2769 | qeth_put_buffer_pool_entry(card, buffer->pool_entry); |
2772 | qeth_queue_input_buffer(card, index); | 2770 | qeth_queue_input_buffer(card, index); |
2773 | } | 2771 | } |
2774 | #ifdef CONFIG_QETH_PERF_STATS | 2772 | if (card->options.performance_stats) |
2775 | card->perf_stats.inbound_time += qeth_get_micros() - | 2773 | card->perf_stats.inbound_time += qeth_get_micros() - |
2776 | card->perf_stats.inbound_start_time; | 2774 | card->perf_stats.inbound_start_time; |
2777 | #endif | ||
2778 | } | 2775 | } |
2779 | 2776 | ||
2780 | static inline int | 2777 | static inline int |
@@ -2864,10 +2861,11 @@ qeth_flush_buffers(struct qeth_qdio_out_q *queue, int under_int, | |||
2864 | } | 2861 | } |
2865 | 2862 | ||
2866 | queue->card->dev->trans_start = jiffies; | 2863 | queue->card->dev->trans_start = jiffies; |
2867 | #ifdef CONFIG_QETH_PERF_STATS | 2864 | if (queue->card->options.performance_stats) { |
2868 | queue->card->perf_stats.outbound_do_qdio_cnt++; | 2865 | queue->card->perf_stats.outbound_do_qdio_cnt++; |
2869 | queue->card->perf_stats.outbound_do_qdio_start_time = qeth_get_micros(); | 2866 | queue->card->perf_stats.outbound_do_qdio_start_time = |
2870 | #endif | 2867 | qeth_get_micros(); |
2868 | } | ||
2871 | if (under_int) | 2869 | if (under_int) |
2872 | rc = do_QDIO(CARD_DDEV(queue->card), | 2870 | rc = do_QDIO(CARD_DDEV(queue->card), |
2873 | QDIO_FLAG_SYNC_OUTPUT | QDIO_FLAG_UNDER_INTERRUPT, | 2871 | QDIO_FLAG_SYNC_OUTPUT | QDIO_FLAG_UNDER_INTERRUPT, |
@@ -2875,10 +2873,10 @@ qeth_flush_buffers(struct qeth_qdio_out_q *queue, int under_int, | |||
2875 | else | 2873 | else |
2876 | rc = do_QDIO(CARD_DDEV(queue->card), QDIO_FLAG_SYNC_OUTPUT, | 2874 | rc = do_QDIO(CARD_DDEV(queue->card), QDIO_FLAG_SYNC_OUTPUT, |
2877 | queue->queue_no, index, count, NULL); | 2875 | queue->queue_no, index, count, NULL); |
2878 | #ifdef CONFIG_QETH_PERF_STATS | 2876 | if (queue->card->options.performance_stats) |
2879 | queue->card->perf_stats.outbound_do_qdio_time += qeth_get_micros() - | 2877 | queue->card->perf_stats.outbound_do_qdio_time += |
2880 | queue->card->perf_stats.outbound_do_qdio_start_time; | 2878 | qeth_get_micros() - |
2881 | #endif | 2879 | queue->card->perf_stats.outbound_do_qdio_start_time; |
2882 | if (rc){ | 2880 | if (rc){ |
2883 | QETH_DBF_TEXT(trace, 2, "flushbuf"); | 2881 | QETH_DBF_TEXT(trace, 2, "flushbuf"); |
2884 | QETH_DBF_TEXT_(trace, 2, " err%d", rc); | 2882 | QETH_DBF_TEXT_(trace, 2, " err%d", rc); |
@@ -2890,9 +2888,8 @@ qeth_flush_buffers(struct qeth_qdio_out_q *queue, int under_int, | |||
2890 | return; | 2888 | return; |
2891 | } | 2889 | } |
2892 | atomic_add(count, &queue->used_buffers); | 2890 | atomic_add(count, &queue->used_buffers); |
2893 | #ifdef CONFIG_QETH_PERF_STATS | 2891 | if (queue->card->options.performance_stats) |
2894 | queue->card->perf_stats.bufs_sent += count; | 2892 | queue->card->perf_stats.bufs_sent += count; |
2895 | #endif | ||
2896 | } | 2893 | } |
2897 | 2894 | ||
2898 | /* | 2895 | /* |
@@ -2907,9 +2904,8 @@ qeth_switch_to_packing_if_needed(struct qeth_qdio_out_q *queue) | |||
2907 | >= QETH_HIGH_WATERMARK_PACK){ | 2904 | >= QETH_HIGH_WATERMARK_PACK){ |
2908 | /* switch non-PACKING -> PACKING */ | 2905 | /* switch non-PACKING -> PACKING */ |
2909 | QETH_DBF_TEXT(trace, 6, "np->pack"); | 2906 | QETH_DBF_TEXT(trace, 6, "np->pack"); |
2910 | #ifdef CONFIG_QETH_PERF_STATS | 2907 | if (queue->card->options.performance_stats) |
2911 | queue->card->perf_stats.sc_dp_p++; | 2908 | queue->card->perf_stats.sc_dp_p++; |
2912 | #endif | ||
2913 | queue->do_pack = 1; | 2909 | queue->do_pack = 1; |
2914 | } | 2910 | } |
2915 | } | 2911 | } |
@@ -2932,9 +2928,8 @@ qeth_switch_to_nonpacking_if_needed(struct qeth_qdio_out_q *queue) | |||
2932 | <= QETH_LOW_WATERMARK_PACK) { | 2928 | <= QETH_LOW_WATERMARK_PACK) { |
2933 | /* switch PACKING -> non-PACKING */ | 2929 | /* switch PACKING -> non-PACKING */ |
2934 | QETH_DBF_TEXT(trace, 6, "pack->np"); | 2930 | QETH_DBF_TEXT(trace, 6, "pack->np"); |
2935 | #ifdef CONFIG_QETH_PERF_STATS | 2931 | if (queue->card->options.performance_stats) |
2936 | queue->card->perf_stats.sc_p_dp++; | 2932 | queue->card->perf_stats.sc_p_dp++; |
2937 | #endif | ||
2938 | queue->do_pack = 0; | 2933 | queue->do_pack = 0; |
2939 | /* flush packing buffers */ | 2934 | /* flush packing buffers */ |
2940 | buffer = &queue->bufs[queue->next_buf_to_fill]; | 2935 | buffer = &queue->bufs[queue->next_buf_to_fill]; |
@@ -2946,7 +2941,7 @@ qeth_switch_to_nonpacking_if_needed(struct qeth_qdio_out_q *queue) | |||
2946 | queue->next_buf_to_fill = | 2941 | queue->next_buf_to_fill = |
2947 | (queue->next_buf_to_fill + 1) % | 2942 | (queue->next_buf_to_fill + 1) % |
2948 | QDIO_MAX_BUFFERS_PER_Q; | 2943 | QDIO_MAX_BUFFERS_PER_Q; |
2949 | } | 2944 | } |
2950 | } | 2945 | } |
2951 | } | 2946 | } |
2952 | return flush_count; | 2947 | return flush_count; |
@@ -3002,11 +2997,10 @@ qeth_check_outbound_queue(struct qeth_qdio_out_q *queue) | |||
3002 | !atomic_read(&queue->set_pci_flags_count)) | 2997 | !atomic_read(&queue->set_pci_flags_count)) |
3003 | flush_cnt += | 2998 | flush_cnt += |
3004 | qeth_flush_buffers_on_no_pci(queue); | 2999 | qeth_flush_buffers_on_no_pci(queue); |
3005 | #ifdef CONFIG_QETH_PERF_STATS | 3000 | if (queue->card->options.performance_stats && |
3006 | if (q_was_packing) | 3001 | q_was_packing) |
3007 | queue->card->perf_stats.bufs_sent_pack += | 3002 | queue->card->perf_stats.bufs_sent_pack += |
3008 | flush_cnt; | 3003 | flush_cnt; |
3009 | #endif | ||
3010 | if (flush_cnt) | 3004 | if (flush_cnt) |
3011 | qeth_flush_buffers(queue, 1, index, flush_cnt); | 3005 | qeth_flush_buffers(queue, 1, index, flush_cnt); |
3012 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | 3006 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); |
@@ -3036,10 +3030,11 @@ qeth_qdio_output_handler(struct ccw_device * ccwdev, unsigned int status, | |||
3036 | return; | 3030 | return; |
3037 | } | 3031 | } |
3038 | } | 3032 | } |
3039 | #ifdef CONFIG_QETH_PERF_STATS | 3033 | if (card->options.performance_stats) { |
3040 | card->perf_stats.outbound_handler_cnt++; | 3034 | card->perf_stats.outbound_handler_cnt++; |
3041 | card->perf_stats.outbound_handler_start_time = qeth_get_micros(); | 3035 | card->perf_stats.outbound_handler_start_time = |
3042 | #endif | 3036 | qeth_get_micros(); |
3037 | } | ||
3043 | for(i = first_element; i < (first_element + count); ++i){ | 3038 | for(i = first_element; i < (first_element + count); ++i){ |
3044 | buffer = &queue->bufs[i % QDIO_MAX_BUFFERS_PER_Q]; | 3039 | buffer = &queue->bufs[i % QDIO_MAX_BUFFERS_PER_Q]; |
3045 | /*we only handle the KICK_IT error by doing a recovery */ | 3040 | /*we only handle the KICK_IT error by doing a recovery */ |
@@ -3058,10 +3053,9 @@ qeth_qdio_output_handler(struct ccw_device * ccwdev, unsigned int status, | |||
3058 | qeth_check_outbound_queue(queue); | 3053 | qeth_check_outbound_queue(queue); |
3059 | 3054 | ||
3060 | netif_wake_queue(queue->card->dev); | 3055 | netif_wake_queue(queue->card->dev); |
3061 | #ifdef CONFIG_QETH_PERF_STATS | 3056 | if (card->options.performance_stats) |
3062 | card->perf_stats.outbound_handler_time += qeth_get_micros() - | 3057 | card->perf_stats.outbound_handler_time += qeth_get_micros() - |
3063 | card->perf_stats.outbound_handler_start_time; | 3058 | card->perf_stats.outbound_handler_start_time; |
3064 | #endif | ||
3065 | } | 3059 | } |
3066 | 3060 | ||
3067 | static void | 3061 | static void |
@@ -3185,13 +3179,14 @@ qeth_alloc_qdio_buffers(struct qeth_card *card) | |||
3185 | 3179 | ||
3186 | QETH_DBF_TEXT(setup, 2, "allcqdbf"); | 3180 | QETH_DBF_TEXT(setup, 2, "allcqdbf"); |
3187 | 3181 | ||
3188 | if (card->qdio.state == QETH_QDIO_ALLOCATED) | 3182 | if (atomic_cmpxchg(&card->qdio.state, QETH_QDIO_UNINITIALIZED, |
3183 | QETH_QDIO_ALLOCATED) != QETH_QDIO_UNINITIALIZED) | ||
3189 | return 0; | 3184 | return 0; |
3190 | 3185 | ||
3191 | card->qdio.in_q = kmalloc(sizeof(struct qeth_qdio_q), | 3186 | card->qdio.in_q = kmalloc(sizeof(struct qeth_qdio_q), |
3192 | GFP_KERNEL|GFP_DMA); | 3187 | GFP_KERNEL|GFP_DMA); |
3193 | if (!card->qdio.in_q) | 3188 | if (!card->qdio.in_q) |
3194 | return - ENOMEM; | 3189 | goto out_nomem; |
3195 | QETH_DBF_TEXT(setup, 2, "inq"); | 3190 | QETH_DBF_TEXT(setup, 2, "inq"); |
3196 | QETH_DBF_HEX(setup, 2, &card->qdio.in_q, sizeof(void *)); | 3191 | QETH_DBF_HEX(setup, 2, &card->qdio.in_q, sizeof(void *)); |
3197 | memset(card->qdio.in_q, 0, sizeof(struct qeth_qdio_q)); | 3192 | memset(card->qdio.in_q, 0, sizeof(struct qeth_qdio_q)); |
@@ -3200,27 +3195,19 @@ qeth_alloc_qdio_buffers(struct qeth_card *card) | |||
3200 | card->qdio.in_q->bufs[i].buffer = | 3195 | card->qdio.in_q->bufs[i].buffer = |
3201 | &card->qdio.in_q->qdio_bufs[i]; | 3196 | &card->qdio.in_q->qdio_bufs[i]; |
3202 | /* inbound buffer pool */ | 3197 | /* inbound buffer pool */ |
3203 | if (qeth_alloc_buffer_pool(card)){ | 3198 | if (qeth_alloc_buffer_pool(card)) |
3204 | kfree(card->qdio.in_q); | 3199 | goto out_freeinq; |
3205 | return -ENOMEM; | ||
3206 | } | ||
3207 | /* outbound */ | 3200 | /* outbound */ |
3208 | card->qdio.out_qs = | 3201 | card->qdio.out_qs = |
3209 | kmalloc(card->qdio.no_out_queues * | 3202 | kmalloc(card->qdio.no_out_queues * |
3210 | sizeof(struct qeth_qdio_out_q *), GFP_KERNEL); | 3203 | sizeof(struct qeth_qdio_out_q *), GFP_KERNEL); |
3211 | if (!card->qdio.out_qs){ | 3204 | if (!card->qdio.out_qs) |
3212 | qeth_free_buffer_pool(card); | 3205 | goto out_freepool; |
3213 | return -ENOMEM; | 3206 | for (i = 0; i < card->qdio.no_out_queues; ++i) { |
3214 | } | ||
3215 | for (i = 0; i < card->qdio.no_out_queues; ++i){ | ||
3216 | card->qdio.out_qs[i] = kmalloc(sizeof(struct qeth_qdio_out_q), | 3207 | card->qdio.out_qs[i] = kmalloc(sizeof(struct qeth_qdio_out_q), |
3217 | GFP_KERNEL|GFP_DMA); | 3208 | GFP_KERNEL|GFP_DMA); |
3218 | if (!card->qdio.out_qs[i]){ | 3209 | if (!card->qdio.out_qs[i]) |
3219 | while (i > 0) | 3210 | goto out_freeoutq; |
3220 | kfree(card->qdio.out_qs[--i]); | ||
3221 | kfree(card->qdio.out_qs); | ||
3222 | return -ENOMEM; | ||
3223 | } | ||
3224 | QETH_DBF_TEXT_(setup, 2, "outq %i", i); | 3211 | QETH_DBF_TEXT_(setup, 2, "outq %i", i); |
3225 | QETH_DBF_HEX(setup, 2, &card->qdio.out_qs[i], sizeof(void *)); | 3212 | QETH_DBF_HEX(setup, 2, &card->qdio.out_qs[i], sizeof(void *)); |
3226 | memset(card->qdio.out_qs[i], 0, sizeof(struct qeth_qdio_out_q)); | 3213 | memset(card->qdio.out_qs[i], 0, sizeof(struct qeth_qdio_out_q)); |
@@ -3237,8 +3224,19 @@ qeth_alloc_qdio_buffers(struct qeth_card *card) | |||
3237 | INIT_LIST_HEAD(&card->qdio.out_qs[i]->bufs[j].ctx_list); | 3224 | INIT_LIST_HEAD(&card->qdio.out_qs[i]->bufs[j].ctx_list); |
3238 | } | 3225 | } |
3239 | } | 3226 | } |
3240 | card->qdio.state = QETH_QDIO_ALLOCATED; | ||
3241 | return 0; | 3227 | return 0; |
3228 | |||
3229 | out_freeoutq: | ||
3230 | while (i > 0) | ||
3231 | kfree(card->qdio.out_qs[--i]); | ||
3232 | kfree(card->qdio.out_qs); | ||
3233 | out_freepool: | ||
3234 | qeth_free_buffer_pool(card); | ||
3235 | out_freeinq: | ||
3236 | kfree(card->qdio.in_q); | ||
3237 | out_nomem: | ||
3238 | atomic_set(&card->qdio.state, QETH_QDIO_UNINITIALIZED); | ||
3239 | return -ENOMEM; | ||
3242 | } | 3240 | } |
3243 | 3241 | ||
3244 | static void | 3242 | static void |
@@ -3247,7 +3245,8 @@ qeth_free_qdio_buffers(struct qeth_card *card) | |||
3247 | int i, j; | 3245 | int i, j; |
3248 | 3246 | ||
3249 | QETH_DBF_TEXT(trace, 2, "freeqdbf"); | 3247 | QETH_DBF_TEXT(trace, 2, "freeqdbf"); |
3250 | if (card->qdio.state == QETH_QDIO_UNINITIALIZED) | 3248 | if (atomic_swap(&card->qdio.state, QETH_QDIO_UNINITIALIZED) == |
3249 | QETH_QDIO_UNINITIALIZED) | ||
3251 | return; | 3250 | return; |
3252 | kfree(card->qdio.in_q); | 3251 | kfree(card->qdio.in_q); |
3253 | /* inbound buffer pool */ | 3252 | /* inbound buffer pool */ |
@@ -3260,7 +3259,6 @@ qeth_free_qdio_buffers(struct qeth_card *card) | |||
3260 | kfree(card->qdio.out_qs[i]); | 3259 | kfree(card->qdio.out_qs[i]); |
3261 | } | 3260 | } |
3262 | kfree(card->qdio.out_qs); | 3261 | kfree(card->qdio.out_qs); |
3263 | card->qdio.state = QETH_QDIO_UNINITIALIZED; | ||
3264 | } | 3262 | } |
3265 | 3263 | ||
3266 | static void | 3264 | static void |
@@ -3282,7 +3280,7 @@ static void | |||
3282 | qeth_init_qdio_info(struct qeth_card *card) | 3280 | qeth_init_qdio_info(struct qeth_card *card) |
3283 | { | 3281 | { |
3284 | QETH_DBF_TEXT(setup, 4, "intqdinf"); | 3282 | QETH_DBF_TEXT(setup, 4, "intqdinf"); |
3285 | card->qdio.state = QETH_QDIO_UNINITIALIZED; | 3283 | atomic_set(&card->qdio.state, QETH_QDIO_UNINITIALIZED); |
3286 | /* inbound */ | 3284 | /* inbound */ |
3287 | card->qdio.in_buf_size = QETH_IN_BUF_SIZE_DEFAULT; | 3285 | card->qdio.in_buf_size = QETH_IN_BUF_SIZE_DEFAULT; |
3288 | card->qdio.init_pool.buf_count = QETH_IN_BUF_COUNT_DEFAULT; | 3286 | card->qdio.init_pool.buf_count = QETH_IN_BUF_COUNT_DEFAULT; |
@@ -3345,7 +3343,7 @@ qeth_qdio_establish(struct qeth_card *card) | |||
3345 | struct qdio_buffer **in_sbal_ptrs; | 3343 | struct qdio_buffer **in_sbal_ptrs; |
3346 | struct qdio_buffer **out_sbal_ptrs; | 3344 | struct qdio_buffer **out_sbal_ptrs; |
3347 | int i, j, k; | 3345 | int i, j, k; |
3348 | int rc; | 3346 | int rc = 0; |
3349 | 3347 | ||
3350 | QETH_DBF_TEXT(setup, 2, "qdioest"); | 3348 | QETH_DBF_TEXT(setup, 2, "qdioest"); |
3351 | 3349 | ||
@@ -3404,8 +3402,10 @@ qeth_qdio_establish(struct qeth_card *card) | |||
3404 | init_data.input_sbal_addr_array = (void **) in_sbal_ptrs; | 3402 | init_data.input_sbal_addr_array = (void **) in_sbal_ptrs; |
3405 | init_data.output_sbal_addr_array = (void **) out_sbal_ptrs; | 3403 | init_data.output_sbal_addr_array = (void **) out_sbal_ptrs; |
3406 | 3404 | ||
3407 | if (!(rc = qdio_initialize(&init_data))) | 3405 | if (atomic_cmpxchg(&card->qdio.state, QETH_QDIO_ALLOCATED, |
3408 | card->qdio.state = QETH_QDIO_ESTABLISHED; | 3406 | QETH_QDIO_ESTABLISHED) == QETH_QDIO_ALLOCATED) |
3407 | if ((rc = qdio_initialize(&init_data))) | ||
3408 | atomic_set(&card->qdio.state, QETH_QDIO_ALLOCATED); | ||
3409 | 3409 | ||
3410 | kfree(out_sbal_ptrs); | 3410 | kfree(out_sbal_ptrs); |
3411 | kfree(in_sbal_ptrs); | 3411 | kfree(in_sbal_ptrs); |
@@ -3521,13 +3521,20 @@ qeth_qdio_clear_card(struct qeth_card *card, int use_halt) | |||
3521 | int rc = 0; | 3521 | int rc = 0; |
3522 | 3522 | ||
3523 | QETH_DBF_TEXT(trace,3,"qdioclr"); | 3523 | QETH_DBF_TEXT(trace,3,"qdioclr"); |
3524 | if (card->qdio.state == QETH_QDIO_ESTABLISHED){ | 3524 | switch (atomic_cmpxchg(&card->qdio.state, QETH_QDIO_ESTABLISHED, |
3525 | QETH_QDIO_CLEANING)) { | ||
3526 | case QETH_QDIO_ESTABLISHED: | ||
3525 | if ((rc = qdio_cleanup(CARD_DDEV(card), | 3527 | if ((rc = qdio_cleanup(CARD_DDEV(card), |
3526 | (card->info.type == QETH_CARD_TYPE_IQD) ? | 3528 | (card->info.type == QETH_CARD_TYPE_IQD) ? |
3527 | QDIO_FLAG_CLEANUP_USING_HALT : | 3529 | QDIO_FLAG_CLEANUP_USING_HALT : |
3528 | QDIO_FLAG_CLEANUP_USING_CLEAR))) | 3530 | QDIO_FLAG_CLEANUP_USING_CLEAR))) |
3529 | QETH_DBF_TEXT_(trace, 3, "1err%d", rc); | 3531 | QETH_DBF_TEXT_(trace, 3, "1err%d", rc); |
3530 | card->qdio.state = QETH_QDIO_ALLOCATED; | 3532 | atomic_set(&card->qdio.state, QETH_QDIO_ALLOCATED); |
3533 | break; | ||
3534 | case QETH_QDIO_CLEANING: | ||
3535 | return rc; | ||
3536 | default: | ||
3537 | break; | ||
3531 | } | 3538 | } |
3532 | if ((rc = qeth_clear_halt_card(card, use_halt))) | 3539 | if ((rc = qeth_clear_halt_card(card, use_halt))) |
3533 | QETH_DBF_TEXT_(trace, 3, "2err%d", rc); | 3540 | QETH_DBF_TEXT_(trace, 3, "2err%d", rc); |
@@ -3687,10 +3694,10 @@ qeth_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
3687 | /* return OK; otherwise ksoftirqd goes to 100% */ | 3694 | /* return OK; otherwise ksoftirqd goes to 100% */ |
3688 | return NETDEV_TX_OK; | 3695 | return NETDEV_TX_OK; |
3689 | } | 3696 | } |
3690 | #ifdef CONFIG_QETH_PERF_STATS | 3697 | if (card->options.performance_stats) { |
3691 | card->perf_stats.outbound_cnt++; | 3698 | card->perf_stats.outbound_cnt++; |
3692 | card->perf_stats.outbound_start_time = qeth_get_micros(); | 3699 | card->perf_stats.outbound_start_time = qeth_get_micros(); |
3693 | #endif | 3700 | } |
3694 | netif_stop_queue(dev); | 3701 | netif_stop_queue(dev); |
3695 | if ((rc = qeth_send_packet(card, skb))) { | 3702 | if ((rc = qeth_send_packet(card, skb))) { |
3696 | if (rc == -EBUSY) { | 3703 | if (rc == -EBUSY) { |
@@ -3704,10 +3711,9 @@ qeth_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
3704 | } | 3711 | } |
3705 | } | 3712 | } |
3706 | netif_wake_queue(dev); | 3713 | netif_wake_queue(dev); |
3707 | #ifdef CONFIG_QETH_PERF_STATS | 3714 | if (card->options.performance_stats) |
3708 | card->perf_stats.outbound_time += qeth_get_micros() - | 3715 | card->perf_stats.outbound_time += qeth_get_micros() - |
3709 | card->perf_stats.outbound_start_time; | 3716 | card->perf_stats.outbound_start_time; |
3710 | #endif | ||
3711 | return rc; | 3717 | return rc; |
3712 | } | 3718 | } |
3713 | 3719 | ||
@@ -3922,49 +3928,59 @@ qeth_get_ip_version(struct sk_buff *skb) | |||
3922 | } | 3928 | } |
3923 | } | 3929 | } |
3924 | 3930 | ||
3925 | static inline int | 3931 | static inline struct qeth_hdr * |
3926 | qeth_prepare_skb(struct qeth_card *card, struct sk_buff **skb, | 3932 | __qeth_prepare_skb(struct qeth_card *card, struct sk_buff *skb, int ipv) |
3927 | struct qeth_hdr **hdr, int ipv) | ||
3928 | { | 3933 | { |
3929 | int rc = 0; | ||
3930 | #ifdef CONFIG_QETH_VLAN | 3934 | #ifdef CONFIG_QETH_VLAN |
3931 | u16 *tag; | 3935 | u16 *tag; |
3932 | #endif | 3936 | if (card->vlangrp && vlan_tx_tag_present(skb) && |
3933 | |||
3934 | QETH_DBF_TEXT(trace, 6, "prepskb"); | ||
3935 | if (card->info.type == QETH_CARD_TYPE_OSN) { | ||
3936 | *hdr = (struct qeth_hdr *)(*skb)->data; | ||
3937 | return rc; | ||
3938 | } | ||
3939 | rc = qeth_realloc_headroom(card, skb, sizeof(struct qeth_hdr)); | ||
3940 | if (rc) | ||
3941 | return rc; | ||
3942 | #ifdef CONFIG_QETH_VLAN | ||
3943 | if (card->vlangrp && vlan_tx_tag_present(*skb) && | ||
3944 | ((ipv == 6) || card->options.layer2) ) { | 3937 | ((ipv == 6) || card->options.layer2) ) { |
3945 | /* | 3938 | /* |
3946 | * Move the mac addresses (6 bytes src, 6 bytes dest) | 3939 | * Move the mac addresses (6 bytes src, 6 bytes dest) |
3947 | * to the beginning of the new header. We are using three | 3940 | * to the beginning of the new header. We are using three |
3948 | * memcpys instead of one memmove to save cycles. | 3941 | * memcpys instead of one memmove to save cycles. |
3949 | */ | 3942 | */ |
3950 | skb_push(*skb, VLAN_HLEN); | 3943 | skb_push(skb, VLAN_HLEN); |
3951 | memcpy((*skb)->data, (*skb)->data + 4, 4); | 3944 | memcpy(skb->data, skb->data + 4, 4); |
3952 | memcpy((*skb)->data + 4, (*skb)->data + 8, 4); | 3945 | memcpy(skb->data + 4, skb->data + 8, 4); |
3953 | memcpy((*skb)->data + 8, (*skb)->data + 12, 4); | 3946 | memcpy(skb->data + 8, skb->data + 12, 4); |
3954 | tag = (u16 *)((*skb)->data + 12); | 3947 | tag = (u16 *)(skb->data + 12); |
3955 | /* | 3948 | /* |
3956 | * first two bytes = ETH_P_8021Q (0x8100) | 3949 | * first two bytes = ETH_P_8021Q (0x8100) |
3957 | * second two bytes = VLANID | 3950 | * second two bytes = VLANID |
3958 | */ | 3951 | */ |
3959 | *tag = __constant_htons(ETH_P_8021Q); | 3952 | *tag = __constant_htons(ETH_P_8021Q); |
3960 | *(tag + 1) = htons(vlan_tx_tag_get(*skb)); | 3953 | *(tag + 1) = htons(vlan_tx_tag_get(skb)); |
3961 | } | 3954 | } |
3962 | #endif | 3955 | #endif |
3963 | *hdr = (struct qeth_hdr *) | 3956 | return ((struct qeth_hdr *) |
3964 | qeth_push_skb(card, skb, sizeof(struct qeth_hdr)); | 3957 | qeth_push_skb(card, skb, sizeof(struct qeth_hdr))); |
3965 | if (*hdr == NULL) | 3958 | } |
3966 | return -EINVAL; | 3959 | |
3967 | return 0; | 3960 | static inline void |
3961 | __qeth_free_new_skb(struct sk_buff *orig_skb, struct sk_buff *new_skb) | ||
3962 | { | ||
3963 | if (orig_skb != new_skb) | ||
3964 | dev_kfree_skb_any(new_skb); | ||
3965 | } | ||
3966 | |||
3967 | static inline struct sk_buff * | ||
3968 | qeth_prepare_skb(struct qeth_card *card, struct sk_buff *skb, | ||
3969 | struct qeth_hdr **hdr, int ipv) | ||
3970 | { | ||
3971 | struct sk_buff *new_skb; | ||
3972 | |||
3973 | QETH_DBF_TEXT(trace, 6, "prepskb"); | ||
3974 | |||
3975 | new_skb = qeth_realloc_headroom(card, skb, sizeof(struct qeth_hdr)); | ||
3976 | if (new_skb == NULL) | ||
3977 | return NULL; | ||
3978 | *hdr = __qeth_prepare_skb(card, new_skb, ipv); | ||
3979 | if (*hdr == NULL) { | ||
3980 | __qeth_free_new_skb(skb, new_skb); | ||
3981 | return NULL; | ||
3982 | } | ||
3983 | return new_skb; | ||
3968 | } | 3984 | } |
3969 | 3985 | ||
3970 | static inline u8 | 3986 | static inline u8 |
@@ -4206,9 +4222,8 @@ qeth_fill_buffer(struct qeth_qdio_out_q *queue, | |||
4206 | flush_cnt = 1; | 4222 | flush_cnt = 1; |
4207 | } else { | 4223 | } else { |
4208 | QETH_DBF_TEXT(trace, 6, "fillbfpa"); | 4224 | QETH_DBF_TEXT(trace, 6, "fillbfpa"); |
4209 | #ifdef CONFIG_QETH_PERF_STATS | 4225 | if (queue->card->options.performance_stats) |
4210 | queue->card->perf_stats.skbs_sent_pack++; | 4226 | queue->card->perf_stats.skbs_sent_pack++; |
4211 | #endif | ||
4212 | if (buf->next_element_to_fill >= | 4227 | if (buf->next_element_to_fill >= |
4213 | QETH_MAX_BUFFER_ELEMENTS(queue->card)) { | 4228 | QETH_MAX_BUFFER_ELEMENTS(queue->card)) { |
4214 | /* | 4229 | /* |
@@ -4245,21 +4260,15 @@ qeth_do_send_packet_fast(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4245 | * check if buffer is empty to make sure that we do not 'overtake' | 4260 | * check if buffer is empty to make sure that we do not 'overtake' |
4246 | * ourselves and try to fill a buffer that is already primed | 4261 | * ourselves and try to fill a buffer that is already primed |
4247 | */ | 4262 | */ |
4248 | if (atomic_read(&buffer->state) != QETH_QDIO_BUF_EMPTY) { | 4263 | if (atomic_read(&buffer->state) != QETH_QDIO_BUF_EMPTY) |
4249 | card->stats.tx_dropped++; | 4264 | goto out; |
4250 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | ||
4251 | return -EBUSY; | ||
4252 | } | ||
4253 | if (ctx == NULL) | 4265 | if (ctx == NULL) |
4254 | queue->next_buf_to_fill = (queue->next_buf_to_fill + 1) % | 4266 | queue->next_buf_to_fill = (queue->next_buf_to_fill + 1) % |
4255 | QDIO_MAX_BUFFERS_PER_Q; | 4267 | QDIO_MAX_BUFFERS_PER_Q; |
4256 | else { | 4268 | else { |
4257 | buffers_needed = qeth_eddp_check_buffers_for_context(queue,ctx); | 4269 | buffers_needed = qeth_eddp_check_buffers_for_context(queue,ctx); |
4258 | if (buffers_needed < 0) { | 4270 | if (buffers_needed < 0) |
4259 | card->stats.tx_dropped++; | 4271 | goto out; |
4260 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | ||
4261 | return -EBUSY; | ||
4262 | } | ||
4263 | queue->next_buf_to_fill = | 4272 | queue->next_buf_to_fill = |
4264 | (queue->next_buf_to_fill + buffers_needed) % | 4273 | (queue->next_buf_to_fill + buffers_needed) % |
4265 | QDIO_MAX_BUFFERS_PER_Q; | 4274 | QDIO_MAX_BUFFERS_PER_Q; |
@@ -4274,6 +4283,9 @@ qeth_do_send_packet_fast(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4274 | qeth_flush_buffers(queue, 0, index, flush_cnt); | 4283 | qeth_flush_buffers(queue, 0, index, flush_cnt); |
4275 | } | 4284 | } |
4276 | return 0; | 4285 | return 0; |
4286 | out: | ||
4287 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | ||
4288 | return -EBUSY; | ||
4277 | } | 4289 | } |
4278 | 4290 | ||
4279 | static inline int | 4291 | static inline int |
@@ -4299,8 +4311,7 @@ qeth_do_send_packet(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4299 | * check if buffer is empty to make sure that we do not 'overtake' | 4311 | * check if buffer is empty to make sure that we do not 'overtake' |
4300 | * ourselves and try to fill a buffer that is already primed | 4312 | * ourselves and try to fill a buffer that is already primed |
4301 | */ | 4313 | */ |
4302 | if (atomic_read(&buffer->state) != QETH_QDIO_BUF_EMPTY){ | 4314 | if (atomic_read(&buffer->state) != QETH_QDIO_BUF_EMPTY) { |
4303 | card->stats.tx_dropped++; | ||
4304 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | 4315 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); |
4305 | return -EBUSY; | 4316 | return -EBUSY; |
4306 | } | 4317 | } |
@@ -4323,7 +4334,6 @@ qeth_do_send_packet(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4323 | * again */ | 4334 | * again */ |
4324 | if (atomic_read(&buffer->state) != | 4335 | if (atomic_read(&buffer->state) != |
4325 | QETH_QDIO_BUF_EMPTY){ | 4336 | QETH_QDIO_BUF_EMPTY){ |
4326 | card->stats.tx_dropped++; | ||
4327 | qeth_flush_buffers(queue, 0, start_index, flush_count); | 4337 | qeth_flush_buffers(queue, 0, start_index, flush_count); |
4328 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); | 4338 | atomic_set(&queue->state, QETH_OUT_Q_UNLOCKED); |
4329 | return -EBUSY; | 4339 | return -EBUSY; |
@@ -4334,7 +4344,6 @@ qeth_do_send_packet(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4334 | * free buffers) to handle eddp context */ | 4344 | * free buffers) to handle eddp context */ |
4335 | if (qeth_eddp_check_buffers_for_context(queue,ctx) < 0){ | 4345 | if (qeth_eddp_check_buffers_for_context(queue,ctx) < 0){ |
4336 | printk("eddp tx_dropped 1\n"); | 4346 | printk("eddp tx_dropped 1\n"); |
4337 | card->stats.tx_dropped++; | ||
4338 | rc = -EBUSY; | 4347 | rc = -EBUSY; |
4339 | goto out; | 4348 | goto out; |
4340 | } | 4349 | } |
@@ -4346,7 +4355,6 @@ qeth_do_send_packet(struct qeth_card *card, struct qeth_qdio_out_q *queue, | |||
4346 | tmp = qeth_eddp_fill_buffer(queue,ctx,queue->next_buf_to_fill); | 4355 | tmp = qeth_eddp_fill_buffer(queue,ctx,queue->next_buf_to_fill); |
4347 | if (tmp < 0) { | 4356 | if (tmp < 0) { |
4348 | printk("eddp tx_dropped 2\n"); | 4357 | printk("eddp tx_dropped 2\n"); |
4349 | card->stats.tx_dropped++; | ||
4350 | rc = - EBUSY; | 4358 | rc = - EBUSY; |
4351 | goto out; | 4359 | goto out; |
4352 | } | 4360 | } |
@@ -4380,10 +4388,8 @@ out: | |||
4380 | qeth_flush_buffers(queue, 0, start_index, flush_count); | 4388 | qeth_flush_buffers(queue, 0, start_index, flush_count); |
4381 | } | 4389 | } |
4382 | /* at this point the queue is UNLOCKED again */ | 4390 | /* at this point the queue is UNLOCKED again */ |
4383 | #ifdef CONFIG_QETH_PERF_STATS | 4391 | if (queue->card->options.performance_stats && do_pack) |
4384 | if (do_pack) | ||
4385 | queue->card->perf_stats.bufs_sent_pack += flush_count; | 4392 | queue->card->perf_stats.bufs_sent_pack += flush_count; |
4386 | #endif /* CONFIG_QETH_PERF_STATS */ | ||
4387 | 4393 | ||
4388 | return rc; | 4394 | return rc; |
4389 | } | 4395 | } |
@@ -4394,21 +4400,21 @@ qeth_get_elements_no(struct qeth_card *card, void *hdr, | |||
4394 | { | 4400 | { |
4395 | int elements_needed = 0; | 4401 | int elements_needed = 0; |
4396 | 4402 | ||
4397 | if (skb_shinfo(skb)->nr_frags > 0) { | 4403 | if (skb_shinfo(skb)->nr_frags > 0) |
4398 | elements_needed = (skb_shinfo(skb)->nr_frags + 1); | 4404 | elements_needed = (skb_shinfo(skb)->nr_frags + 1); |
4399 | } | 4405 | if (elements_needed == 0) |
4400 | if (elements_needed == 0 ) | ||
4401 | elements_needed = 1 + (((((unsigned long) hdr) % PAGE_SIZE) | 4406 | elements_needed = 1 + (((((unsigned long) hdr) % PAGE_SIZE) |
4402 | + skb->len) >> PAGE_SHIFT); | 4407 | + skb->len) >> PAGE_SHIFT); |
4403 | if ((elements_needed + elems) > QETH_MAX_BUFFER_ELEMENTS(card)){ | 4408 | if ((elements_needed + elems) > QETH_MAX_BUFFER_ELEMENTS(card)){ |
4404 | PRINT_ERR("qeth_do_send_packet: invalid size of " | 4409 | PRINT_ERR("Invalid size of IP packet " |
4405 | "IP packet (Number=%d / Length=%d). Discarded.\n", | 4410 | "(Number=%d / Length=%d). Discarded.\n", |
4406 | (elements_needed+elems), skb->len); | 4411 | (elements_needed+elems), skb->len); |
4407 | return 0; | 4412 | return 0; |
4408 | } | 4413 | } |
4409 | return elements_needed; | 4414 | return elements_needed; |
4410 | } | 4415 | } |
4411 | 4416 | ||
4417 | |||
4412 | static inline int | 4418 | static inline int |
4413 | qeth_send_packet(struct qeth_card *card, struct sk_buff *skb) | 4419 | qeth_send_packet(struct qeth_card *card, struct sk_buff *skb) |
4414 | { | 4420 | { |
@@ -4420,112 +4426,112 @@ qeth_send_packet(struct qeth_card *card, struct sk_buff *skb) | |||
4420 | enum qeth_large_send_types large_send = QETH_LARGE_SEND_NO; | 4426 | enum qeth_large_send_types large_send = QETH_LARGE_SEND_NO; |
4421 | struct qeth_eddp_context *ctx = NULL; | 4427 | struct qeth_eddp_context *ctx = NULL; |
4422 | int tx_bytes = skb->len; | 4428 | int tx_bytes = skb->len; |
4423 | #ifdef CONFIG_QETH_PERF_STATS | ||
4424 | unsigned short nr_frags = skb_shinfo(skb)->nr_frags; | 4429 | unsigned short nr_frags = skb_shinfo(skb)->nr_frags; |
4425 | unsigned short tso_size = skb_shinfo(skb)->gso_size; | 4430 | unsigned short tso_size = skb_shinfo(skb)->gso_size; |
4426 | #endif | 4431 | struct sk_buff *new_skb, *new_skb2; |
4427 | int rc; | 4432 | int rc; |
4428 | 4433 | ||
4429 | QETH_DBF_TEXT(trace, 6, "sendpkt"); | 4434 | QETH_DBF_TEXT(trace, 6, "sendpkt"); |
4430 | 4435 | ||
4436 | new_skb = skb; | ||
4437 | if ((card->info.type == QETH_CARD_TYPE_OSN) && | ||
4438 | (skb->protocol == htons(ETH_P_IPV6))) | ||
4439 | return -EPERM; | ||
4440 | cast_type = qeth_get_cast_type(card, skb); | ||
4441 | if ((cast_type == RTN_BROADCAST) && | ||
4442 | (card->info.broadcast_capable == 0)) | ||
4443 | return -EPERM; | ||
4444 | queue = card->qdio.out_qs | ||
4445 | [qeth_get_priority_queue(card, skb, ipv, cast_type)]; | ||
4431 | if (!card->options.layer2) { | 4446 | if (!card->options.layer2) { |
4432 | ipv = qeth_get_ip_version(skb); | 4447 | ipv = qeth_get_ip_version(skb); |
4433 | if ((card->dev->hard_header == qeth_fake_header) && ipv) { | 4448 | if ((card->dev->hard_header == qeth_fake_header) && ipv) { |
4434 | if ((skb = qeth_pskb_unshare(skb,GFP_ATOMIC)) == NULL) { | 4449 | new_skb = qeth_pskb_unshare(skb, GFP_ATOMIC); |
4435 | card->stats.tx_dropped++; | 4450 | if (!new_skb) |
4436 | dev_kfree_skb_irq(skb); | 4451 | return -ENOMEM; |
4437 | return 0; | ||
4438 | } | ||
4439 | if(card->dev->type == ARPHRD_IEEE802_TR){ | 4452 | if(card->dev->type == ARPHRD_IEEE802_TR){ |
4440 | skb_pull(skb, QETH_FAKE_LL_LEN_TR); | 4453 | skb_pull(new_skb, QETH_FAKE_LL_LEN_TR); |
4441 | } else { | 4454 | } else { |
4442 | skb_pull(skb, QETH_FAKE_LL_LEN_ETH); | 4455 | skb_pull(new_skb, QETH_FAKE_LL_LEN_ETH); |
4443 | } | 4456 | } |
4444 | } | 4457 | } |
4445 | } | 4458 | } |
4446 | if ((card->info.type == QETH_CARD_TYPE_OSN) && | ||
4447 | (skb->protocol == htons(ETH_P_IPV6))) { | ||
4448 | dev_kfree_skb_any(skb); | ||
4449 | return 0; | ||
4450 | } | ||
4451 | cast_type = qeth_get_cast_type(card, skb); | ||
4452 | if ((cast_type == RTN_BROADCAST) && | ||
4453 | (card->info.broadcast_capable == 0)){ | ||
4454 | card->stats.tx_dropped++; | ||
4455 | card->stats.tx_errors++; | ||
4456 | dev_kfree_skb_any(skb); | ||
4457 | return NETDEV_TX_OK; | ||
4458 | } | ||
4459 | queue = card->qdio.out_qs | ||
4460 | [qeth_get_priority_queue(card, skb, ipv, cast_type)]; | ||
4461 | |||
4462 | if (skb_is_gso(skb)) | 4459 | if (skb_is_gso(skb)) |
4463 | large_send = card->options.large_send; | 4460 | large_send = card->options.large_send; |
4464 | 4461 | /* check on OSN device*/ | |
4465 | /*are we able to do TSO ? If so ,prepare and send it from here */ | 4462 | if (card->info.type == QETH_CARD_TYPE_OSN) |
4463 | hdr = (struct qeth_hdr *)new_skb->data; | ||
4464 | /*are we able to do TSO ? */ | ||
4466 | if ((large_send == QETH_LARGE_SEND_TSO) && | 4465 | if ((large_send == QETH_LARGE_SEND_TSO) && |
4467 | (cast_type == RTN_UNSPEC)) { | 4466 | (cast_type == RTN_UNSPEC)) { |
4468 | rc = qeth_tso_prepare_packet(card, skb, ipv, cast_type); | 4467 | rc = qeth_tso_prepare_packet(card, new_skb, ipv, cast_type); |
4469 | if (rc) { | 4468 | if (rc) { |
4470 | card->stats.tx_dropped++; | 4469 | __qeth_free_new_skb(skb, new_skb); |
4471 | card->stats.tx_errors++; | 4470 | return rc; |
4472 | dev_kfree_skb_any(skb); | ||
4473 | return NETDEV_TX_OK; | ||
4474 | } | 4471 | } |
4475 | elements_needed++; | 4472 | elements_needed++; |
4476 | } else { | 4473 | } else if (card->info.type != QETH_CARD_TYPE_OSN) { |
4477 | if ((rc = qeth_prepare_skb(card, &skb, &hdr, ipv))) { | 4474 | new_skb2 = qeth_prepare_skb(card, new_skb, &hdr, ipv); |
4478 | QETH_DBF_TEXT_(trace, 4, "pskbe%d", rc); | 4475 | if (!new_skb2) { |
4479 | return rc; | 4476 | __qeth_free_new_skb(skb, new_skb); |
4477 | return -EINVAL; | ||
4480 | } | 4478 | } |
4481 | if (card->info.type != QETH_CARD_TYPE_OSN) | 4479 | if (new_skb != skb) |
4482 | qeth_fill_header(card, hdr, skb, ipv, cast_type); | 4480 | __qeth_free_new_skb(new_skb2, new_skb); |
4481 | new_skb = new_skb2; | ||
4482 | qeth_fill_header(card, hdr, new_skb, ipv, cast_type); | ||
4483 | } | 4483 | } |
4484 | |||
4485 | if (large_send == QETH_LARGE_SEND_EDDP) { | 4484 | if (large_send == QETH_LARGE_SEND_EDDP) { |
4486 | ctx = qeth_eddp_create_context(card, skb, hdr); | 4485 | ctx = qeth_eddp_create_context(card, new_skb, hdr); |
4487 | if (ctx == NULL) { | 4486 | if (ctx == NULL) { |
4487 | __qeth_free_new_skb(skb, new_skb); | ||
4488 | PRINT_WARN("could not create eddp context\n"); | 4488 | PRINT_WARN("could not create eddp context\n"); |
4489 | return -EINVAL; | 4489 | return -EINVAL; |
4490 | } | 4490 | } |
4491 | } else { | 4491 | } else { |
4492 | int elems = qeth_get_elements_no(card,(void*) hdr, skb, | 4492 | int elems = qeth_get_elements_no(card,(void*) hdr, new_skb, |
4493 | elements_needed); | 4493 | elements_needed); |
4494 | if (!elems) | 4494 | if (!elems) { |
4495 | __qeth_free_new_skb(skb, new_skb); | ||
4495 | return -EINVAL; | 4496 | return -EINVAL; |
4497 | } | ||
4496 | elements_needed += elems; | 4498 | elements_needed += elems; |
4497 | } | 4499 | } |
4498 | 4500 | ||
4499 | if (card->info.type != QETH_CARD_TYPE_IQD) | 4501 | if (card->info.type != QETH_CARD_TYPE_IQD) |
4500 | rc = qeth_do_send_packet(card, queue, skb, hdr, | 4502 | rc = qeth_do_send_packet(card, queue, new_skb, hdr, |
4501 | elements_needed, ctx); | 4503 | elements_needed, ctx); |
4502 | else | 4504 | else |
4503 | rc = qeth_do_send_packet_fast(card, queue, skb, hdr, | 4505 | rc = qeth_do_send_packet_fast(card, queue, new_skb, hdr, |
4504 | elements_needed, ctx); | 4506 | elements_needed, ctx); |
4505 | if (!rc){ | 4507 | if (!rc) { |
4506 | card->stats.tx_packets++; | 4508 | card->stats.tx_packets++; |
4507 | card->stats.tx_bytes += tx_bytes; | 4509 | card->stats.tx_bytes += tx_bytes; |
4508 | #ifdef CONFIG_QETH_PERF_STATS | 4510 | if (new_skb != skb) |
4509 | if (tso_size && | 4511 | dev_kfree_skb_any(skb); |
4510 | !(large_send == QETH_LARGE_SEND_NO)) { | 4512 | if (card->options.performance_stats) { |
4511 | card->perf_stats.large_send_bytes += tx_bytes; | 4513 | if (tso_size && |
4512 | card->perf_stats.large_send_cnt++; | 4514 | !(large_send == QETH_LARGE_SEND_NO)) { |
4513 | } | 4515 | card->perf_stats.large_send_bytes += tx_bytes; |
4514 | if (nr_frags > 0){ | 4516 | card->perf_stats.large_send_cnt++; |
4515 | card->perf_stats.sg_skbs_sent++; | 4517 | } |
4516 | /* nr_frags + skb->data */ | 4518 | if (nr_frags > 0) { |
4517 | card->perf_stats.sg_frags_sent += | 4519 | card->perf_stats.sg_skbs_sent++; |
4518 | nr_frags + 1; | 4520 | /* nr_frags + skb->data */ |
4521 | card->perf_stats.sg_frags_sent += | ||
4522 | nr_frags + 1; | ||
4523 | } | ||
4519 | } | 4524 | } |
4520 | #endif /* CONFIG_QETH_PERF_STATS */ | 4525 | } else { |
4526 | card->stats.tx_dropped++; | ||
4527 | __qeth_free_new_skb(skb, new_skb); | ||
4521 | } | 4528 | } |
4522 | if (ctx != NULL) { | 4529 | if (ctx != NULL) { |
4523 | /* drop creator's reference */ | 4530 | /* drop creator's reference */ |
4524 | qeth_eddp_put_context(ctx); | 4531 | qeth_eddp_put_context(ctx); |
4525 | /* free skb; it's not referenced by a buffer */ | 4532 | /* free skb; it's not referenced by a buffer */ |
4526 | if (rc == 0) | 4533 | if (!rc) |
4527 | dev_kfree_skb_any(skb); | 4534 | dev_kfree_skb_any(new_skb); |
4528 | |||
4529 | } | 4535 | } |
4530 | return rc; | 4536 | return rc; |
4531 | } | 4537 | } |
@@ -7338,6 +7344,8 @@ qeth_setrouting_v6(struct qeth_card *card) | |||
7338 | QETH_DBF_TEXT(trace,3,"setrtg6"); | 7344 | QETH_DBF_TEXT(trace,3,"setrtg6"); |
7339 | #ifdef CONFIG_QETH_IPV6 | 7345 | #ifdef CONFIG_QETH_IPV6 |
7340 | 7346 | ||
7347 | if (!qeth_is_supported(card, IPA_IPV6)) | ||
7348 | return 0; | ||
7341 | qeth_correct_routing_type(card, &card->options.route6.type, | 7349 | qeth_correct_routing_type(card, &card->options.route6.type, |
7342 | QETH_PROT_IPV6); | 7350 | QETH_PROT_IPV6); |
7343 | 7351 | ||
@@ -7876,12 +7884,12 @@ __qeth_set_online(struct ccwgroup_device *gdev, int recovery_mode) | |||
7876 | QETH_DBF_TEXT_(setup, 2, "5err%d", rc); | 7884 | QETH_DBF_TEXT_(setup, 2, "5err%d", rc); |
7877 | goto out_remove; | 7885 | goto out_remove; |
7878 | } | 7886 | } |
7879 | card->state = CARD_STATE_SOFTSETUP; | ||
7880 | 7887 | ||
7881 | if ((rc = qeth_init_qdio_queues(card))){ | 7888 | if ((rc = qeth_init_qdio_queues(card))){ |
7882 | QETH_DBF_TEXT_(setup, 2, "6err%d", rc); | 7889 | QETH_DBF_TEXT_(setup, 2, "6err%d", rc); |
7883 | goto out_remove; | 7890 | goto out_remove; |
7884 | } | 7891 | } |
7892 | card->state = CARD_STATE_SOFTSETUP; | ||
7885 | netif_carrier_on(card->dev); | 7893 | netif_carrier_on(card->dev); |
7886 | 7894 | ||
7887 | qeth_set_allowed_threads(card, 0xffffffff, 0); | 7895 | qeth_set_allowed_threads(card, 0xffffffff, 0); |
@@ -8538,34 +8546,44 @@ qeth_ipv6_uninit(void) | |||
8538 | static void | 8546 | static void |
8539 | qeth_sysfs_unregister(void) | 8547 | qeth_sysfs_unregister(void) |
8540 | { | 8548 | { |
8549 | s390_root_dev_unregister(qeth_root_dev); | ||
8541 | qeth_remove_driver_attributes(); | 8550 | qeth_remove_driver_attributes(); |
8542 | ccw_driver_unregister(&qeth_ccw_driver); | 8551 | ccw_driver_unregister(&qeth_ccw_driver); |
8543 | ccwgroup_driver_unregister(&qeth_ccwgroup_driver); | 8552 | ccwgroup_driver_unregister(&qeth_ccwgroup_driver); |
8544 | s390_root_dev_unregister(qeth_root_dev); | ||
8545 | } | 8553 | } |
8554 | |||
8546 | /** | 8555 | /** |
8547 | * register qeth at sysfs | 8556 | * register qeth at sysfs |
8548 | */ | 8557 | */ |
8549 | static int | 8558 | static int |
8550 | qeth_sysfs_register(void) | 8559 | qeth_sysfs_register(void) |
8551 | { | 8560 | { |
8552 | int rc=0; | 8561 | int rc; |
8553 | 8562 | ||
8554 | rc = ccwgroup_driver_register(&qeth_ccwgroup_driver); | 8563 | rc = ccwgroup_driver_register(&qeth_ccwgroup_driver); |
8555 | if (rc) | 8564 | if (rc) |
8556 | return rc; | 8565 | goto out; |
8566 | |||
8557 | rc = ccw_driver_register(&qeth_ccw_driver); | 8567 | rc = ccw_driver_register(&qeth_ccw_driver); |
8558 | if (rc) | 8568 | if (rc) |
8559 | return rc; | 8569 | goto out_ccw_driver; |
8570 | |||
8560 | rc = qeth_create_driver_attributes(); | 8571 | rc = qeth_create_driver_attributes(); |
8561 | if (rc) | 8572 | if (rc) |
8562 | return rc; | 8573 | goto out_qeth_attr; |
8574 | |||
8563 | qeth_root_dev = s390_root_dev_register("qeth"); | 8575 | qeth_root_dev = s390_root_dev_register("qeth"); |
8564 | if (IS_ERR(qeth_root_dev)) { | 8576 | rc = IS_ERR(qeth_root_dev) ? PTR_ERR(qeth_root_dev) : 0; |
8565 | rc = PTR_ERR(qeth_root_dev); | 8577 | if (!rc) |
8566 | return rc; | 8578 | goto out; |
8567 | } | 8579 | |
8568 | return 0; | 8580 | qeth_remove_driver_attributes(); |
8581 | out_qeth_attr: | ||
8582 | ccw_driver_unregister(&qeth_ccw_driver); | ||
8583 | out_ccw_driver: | ||
8584 | ccwgroup_driver_unregister(&qeth_ccwgroup_driver); | ||
8585 | out: | ||
8586 | return rc; | ||
8569 | } | 8587 | } |
8570 | 8588 | ||
8571 | /*** | 8589 | /*** |
@@ -8574,7 +8592,7 @@ qeth_sysfs_register(void) | |||
8574 | static int __init | 8592 | static int __init |
8575 | qeth_init(void) | 8593 | qeth_init(void) |
8576 | { | 8594 | { |
8577 | int rc=0; | 8595 | int rc; |
8578 | 8596 | ||
8579 | PRINT_INFO("loading %s\n", version); | 8597 | PRINT_INFO("loading %s\n", version); |
8580 | 8598 | ||
@@ -8583,20 +8601,26 @@ qeth_init(void) | |||
8583 | spin_lock_init(&qeth_notify_lock); | 8601 | spin_lock_init(&qeth_notify_lock); |
8584 | rwlock_init(&qeth_card_list.rwlock); | 8602 | rwlock_init(&qeth_card_list.rwlock); |
8585 | 8603 | ||
8586 | if (qeth_register_dbf_views()) | 8604 | rc = qeth_register_dbf_views(); |
8605 | if (rc) | ||
8587 | goto out_err; | 8606 | goto out_err; |
8588 | if (qeth_sysfs_register()) | 8607 | |
8589 | goto out_sysfs; | 8608 | rc = qeth_sysfs_register(); |
8609 | if (rc) | ||
8610 | goto out_dbf; | ||
8590 | 8611 | ||
8591 | #ifdef CONFIG_QETH_IPV6 | 8612 | #ifdef CONFIG_QETH_IPV6 |
8592 | if (qeth_ipv6_init()) { | 8613 | rc = qeth_ipv6_init(); |
8593 | PRINT_ERR("Out of memory during ipv6 init.\n"); | 8614 | if (rc) { |
8615 | PRINT_ERR("Out of memory during ipv6 init code = %d\n", rc); | ||
8594 | goto out_sysfs; | 8616 | goto out_sysfs; |
8595 | } | 8617 | } |
8596 | #endif /* QETH_IPV6 */ | 8618 | #endif /* QETH_IPV6 */ |
8597 | if (qeth_register_notifiers()) | 8619 | rc = qeth_register_notifiers(); |
8620 | if (rc) | ||
8598 | goto out_ipv6; | 8621 | goto out_ipv6; |
8599 | if (qeth_create_procfs_entries()) | 8622 | rc = qeth_create_procfs_entries(); |
8623 | if (rc) | ||
8600 | goto out_notifiers; | 8624 | goto out_notifiers; |
8601 | 8625 | ||
8602 | return rc; | 8626 | return rc; |
@@ -8606,12 +8630,13 @@ out_notifiers: | |||
8606 | out_ipv6: | 8630 | out_ipv6: |
8607 | #ifdef CONFIG_QETH_IPV6 | 8631 | #ifdef CONFIG_QETH_IPV6 |
8608 | qeth_ipv6_uninit(); | 8632 | qeth_ipv6_uninit(); |
8609 | #endif /* QETH_IPV6 */ | ||
8610 | out_sysfs: | 8633 | out_sysfs: |
8634 | #endif /* QETH_IPV6 */ | ||
8611 | qeth_sysfs_unregister(); | 8635 | qeth_sysfs_unregister(); |
8636 | out_dbf: | ||
8612 | qeth_unregister_dbf_views(); | 8637 | qeth_unregister_dbf_views(); |
8613 | out_err: | 8638 | out_err: |
8614 | PRINT_ERR("Initialization failed"); | 8639 | PRINT_ERR("Initialization failed with code %d\n", rc); |
8615 | return rc; | 8640 | return rc; |
8616 | } | 8641 | } |
8617 | 8642 | ||
diff --git a/drivers/s390/net/qeth_proc.c b/drivers/s390/net/qeth_proc.c index 66f2da14e6e3..faa768e59257 100644 --- a/drivers/s390/net/qeth_proc.c +++ b/drivers/s390/net/qeth_proc.c | |||
@@ -173,7 +173,6 @@ static struct file_operations qeth_procfile_fops = { | |||
173 | #define QETH_PERF_PROCFILE_NAME "qeth_perf" | 173 | #define QETH_PERF_PROCFILE_NAME "qeth_perf" |
174 | static struct proc_dir_entry *qeth_perf_procfile; | 174 | static struct proc_dir_entry *qeth_perf_procfile; |
175 | 175 | ||
176 | #ifdef CONFIG_QETH_PERF_STATS | ||
177 | static int | 176 | static int |
178 | qeth_perf_procfile_seq_show(struct seq_file *s, void *it) | 177 | qeth_perf_procfile_seq_show(struct seq_file *s, void *it) |
179 | { | 178 | { |
@@ -192,14 +191,21 @@ qeth_perf_procfile_seq_show(struct seq_file *s, void *it) | |||
192 | CARD_DDEV_ID(card), | 191 | CARD_DDEV_ID(card), |
193 | QETH_CARD_IFNAME(card) | 192 | QETH_CARD_IFNAME(card) |
194 | ); | 193 | ); |
194 | if (!card->options.performance_stats) | ||
195 | seq_printf(s, "Performance statistics are deactivated.\n"); | ||
195 | seq_printf(s, " Skb's/buffers received : %lu/%u\n" | 196 | seq_printf(s, " Skb's/buffers received : %lu/%u\n" |
196 | " Skb's/buffers sent : %lu/%u\n\n", | 197 | " Skb's/buffers sent : %lu/%u\n\n", |
197 | card->stats.rx_packets, card->perf_stats.bufs_rec, | 198 | card->stats.rx_packets - |
198 | card->stats.tx_packets, card->perf_stats.bufs_sent | 199 | card->perf_stats.initial_rx_packets, |
200 | card->perf_stats.bufs_rec, | ||
201 | card->stats.tx_packets - | ||
202 | card->perf_stats.initial_tx_packets, | ||
203 | card->perf_stats.bufs_sent | ||
199 | ); | 204 | ); |
200 | seq_printf(s, " Skb's/buffers sent without packing : %lu/%u\n" | 205 | seq_printf(s, " Skb's/buffers sent without packing : %lu/%u\n" |
201 | " Skb's/buffers sent with packing : %u/%u\n\n", | 206 | " Skb's/buffers sent with packing : %u/%u\n\n", |
202 | card->stats.tx_packets - card->perf_stats.skbs_sent_pack, | 207 | card->stats.tx_packets - card->perf_stats.initial_tx_packets |
208 | - card->perf_stats.skbs_sent_pack, | ||
203 | card->perf_stats.bufs_sent - card->perf_stats.bufs_sent_pack, | 209 | card->perf_stats.bufs_sent - card->perf_stats.bufs_sent_pack, |
204 | card->perf_stats.skbs_sent_pack, | 210 | card->perf_stats.skbs_sent_pack, |
205 | card->perf_stats.bufs_sent_pack | 211 | card->perf_stats.bufs_sent_pack |
@@ -275,11 +281,6 @@ static struct file_operations qeth_perf_procfile_fops = { | |||
275 | .release = seq_release, | 281 | .release = seq_release, |
276 | }; | 282 | }; |
277 | 283 | ||
278 | #define qeth_perf_procfile_created qeth_perf_procfile | ||
279 | #else | ||
280 | #define qeth_perf_procfile_created 1 | ||
281 | #endif /* CONFIG_QETH_PERF_STATS */ | ||
282 | |||
283 | int __init | 284 | int __init |
284 | qeth_create_procfs_entries(void) | 285 | qeth_create_procfs_entries(void) |
285 | { | 286 | { |
@@ -288,15 +289,13 @@ qeth_create_procfs_entries(void) | |||
288 | if (qeth_procfile) | 289 | if (qeth_procfile) |
289 | qeth_procfile->proc_fops = &qeth_procfile_fops; | 290 | qeth_procfile->proc_fops = &qeth_procfile_fops; |
290 | 291 | ||
291 | #ifdef CONFIG_QETH_PERF_STATS | ||
292 | qeth_perf_procfile = create_proc_entry(QETH_PERF_PROCFILE_NAME, | 292 | qeth_perf_procfile = create_proc_entry(QETH_PERF_PROCFILE_NAME, |
293 | S_IFREG | 0444, NULL); | 293 | S_IFREG | 0444, NULL); |
294 | if (qeth_perf_procfile) | 294 | if (qeth_perf_procfile) |
295 | qeth_perf_procfile->proc_fops = &qeth_perf_procfile_fops; | 295 | qeth_perf_procfile->proc_fops = &qeth_perf_procfile_fops; |
296 | #endif /* CONFIG_QETH_PERF_STATS */ | ||
297 | 296 | ||
298 | if (qeth_procfile && | 297 | if (qeth_procfile && |
299 | qeth_perf_procfile_created) | 298 | qeth_perf_procfile) |
300 | return 0; | 299 | return 0; |
301 | else | 300 | else |
302 | return -ENOMEM; | 301 | return -ENOMEM; |
diff --git a/drivers/s390/net/qeth_sys.c b/drivers/s390/net/qeth_sys.c index 001497bbea16..5836737ac58f 100644 --- a/drivers/s390/net/qeth_sys.c +++ b/drivers/s390/net/qeth_sys.c | |||
@@ -743,6 +743,47 @@ static DEVICE_ATTR(layer2, 0644, qeth_dev_layer2_show, | |||
743 | qeth_dev_layer2_store); | 743 | qeth_dev_layer2_store); |
744 | 744 | ||
745 | static ssize_t | 745 | static ssize_t |
746 | qeth_dev_performance_stats_show(struct device *dev, struct device_attribute *attr, char *buf) | ||
747 | { | ||
748 | struct qeth_card *card = dev->driver_data; | ||
749 | |||
750 | if (!card) | ||
751 | return -EINVAL; | ||
752 | |||
753 | return sprintf(buf, "%i\n", card->options.performance_stats ? 1:0); | ||
754 | } | ||
755 | |||
756 | static ssize_t | ||
757 | qeth_dev_performance_stats_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) | ||
758 | { | ||
759 | struct qeth_card *card = dev->driver_data; | ||
760 | char *tmp; | ||
761 | int i; | ||
762 | |||
763 | if (!card) | ||
764 | return -EINVAL; | ||
765 | |||
766 | i = simple_strtoul(buf, &tmp, 16); | ||
767 | if ((i == 0) || (i == 1)) { | ||
768 | if (i == card->options.performance_stats) | ||
769 | return count; | ||
770 | card->options.performance_stats = i; | ||
771 | if (i == 0) | ||
772 | memset(&card->perf_stats, 0, | ||
773 | sizeof(struct qeth_perf_stats)); | ||
774 | card->perf_stats.initial_rx_packets = card->stats.rx_packets; | ||
775 | card->perf_stats.initial_tx_packets = card->stats.tx_packets; | ||
776 | } else { | ||
777 | PRINT_WARN("performance_stats: write 0 or 1 to this file!\n"); | ||
778 | return -EINVAL; | ||
779 | } | ||
780 | return count; | ||
781 | } | ||
782 | |||
783 | static DEVICE_ATTR(performance_stats, 0644, qeth_dev_performance_stats_show, | ||
784 | qeth_dev_performance_stats_store); | ||
785 | |||
786 | static ssize_t | ||
746 | qeth_dev_large_send_show(struct device *dev, struct device_attribute *attr, char *buf) | 787 | qeth_dev_large_send_show(struct device *dev, struct device_attribute *attr, char *buf) |
747 | { | 788 | { |
748 | struct qeth_card *card = dev->driver_data; | 789 | struct qeth_card *card = dev->driver_data; |
@@ -928,6 +969,7 @@ static struct device_attribute * qeth_device_attrs[] = { | |||
928 | &dev_attr_canonical_macaddr, | 969 | &dev_attr_canonical_macaddr, |
929 | &dev_attr_layer2, | 970 | &dev_attr_layer2, |
930 | &dev_attr_large_send, | 971 | &dev_attr_large_send, |
972 | &dev_attr_performance_stats, | ||
931 | NULL, | 973 | NULL, |
932 | }; | 974 | }; |
933 | 975 | ||
@@ -1110,12 +1152,12 @@ qeth_parse_ipatoe(const char* buf, enum qeth_prot_versions proto, | |||
1110 | { | 1152 | { |
1111 | const char *start, *end; | 1153 | const char *start, *end; |
1112 | char *tmp; | 1154 | char *tmp; |
1113 | char buffer[49] = {0, }; | 1155 | char buffer[40] = {0, }; |
1114 | 1156 | ||
1115 | start = buf; | 1157 | start = buf; |
1116 | /* get address string */ | 1158 | /* get address string */ |
1117 | end = strchr(start, '/'); | 1159 | end = strchr(start, '/'); |
1118 | if (!end || (end-start >= 49)){ | 1160 | if (!end || (end - start >= 40)){ |
1119 | PRINT_WARN("Invalid format for ipato_addx/delx. " | 1161 | PRINT_WARN("Invalid format for ipato_addx/delx. " |
1120 | "Use <ip addr>/<mask bits>\n"); | 1162 | "Use <ip addr>/<mask bits>\n"); |
1121 | return -EINVAL; | 1163 | return -EINVAL; |
@@ -1127,7 +1169,12 @@ qeth_parse_ipatoe(const char* buf, enum qeth_prot_versions proto, | |||
1127 | } | 1169 | } |
1128 | start = end + 1; | 1170 | start = end + 1; |
1129 | *mask_bits = simple_strtoul(start, &tmp, 10); | 1171 | *mask_bits = simple_strtoul(start, &tmp, 10); |
1130 | 1172 | if (!strlen(start) || | |
1173 | (tmp == start) || | ||
1174 | (*mask_bits > ((proto == QETH_PROT_IPV4) ? 32 : 128))) { | ||
1175 | PRINT_WARN("Invalid mask bits for ipato_addx/delx !\n"); | ||
1176 | return -EINVAL; | ||
1177 | } | ||
1131 | return 0; | 1178 | return 0; |
1132 | } | 1179 | } |
1133 | 1180 | ||
@@ -1698,11 +1745,16 @@ qeth_create_device_attributes(struct device *dev) | |||
1698 | sysfs_remove_group(&dev->kobj, &qeth_device_attr_group); | 1745 | sysfs_remove_group(&dev->kobj, &qeth_device_attr_group); |
1699 | sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group); | 1746 | sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group); |
1700 | sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group); | 1747 | sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group); |
1748 | return ret; | ||
1701 | } | 1749 | } |
1702 | if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_blkt_group))) | 1750 | if ((ret = sysfs_create_group(&dev->kobj, &qeth_device_blkt_group))){ |
1751 | sysfs_remove_group(&dev->kobj, &qeth_device_attr_group); | ||
1752 | sysfs_remove_group(&dev->kobj, &qeth_device_ipato_group); | ||
1753 | sysfs_remove_group(&dev->kobj, &qeth_device_vipa_group); | ||
1754 | sysfs_remove_group(&dev->kobj, &qeth_device_rxip_group); | ||
1703 | return ret; | 1755 | return ret; |
1704 | 1756 | } | |
1705 | return ret; | 1757 | return 0; |
1706 | } | 1758 | } |
1707 | 1759 | ||
1708 | void | 1760 | void |
diff --git a/drivers/s390/net/qeth_tso.h b/drivers/s390/net/qeth_tso.h index 593f298142c1..14504afb044e 100644 --- a/drivers/s390/net/qeth_tso.h +++ b/drivers/s390/net/qeth_tso.h | |||
@@ -24,7 +24,7 @@ static inline struct qeth_hdr_tso * | |||
24 | qeth_tso_prepare_skb(struct qeth_card *card, struct sk_buff **skb) | 24 | qeth_tso_prepare_skb(struct qeth_card *card, struct sk_buff **skb) |
25 | { | 25 | { |
26 | QETH_DBF_TEXT(trace, 5, "tsoprsk"); | 26 | QETH_DBF_TEXT(trace, 5, "tsoprsk"); |
27 | return qeth_push_skb(card, skb, sizeof(struct qeth_hdr_tso)); | 27 | return qeth_push_skb(card, *skb, sizeof(struct qeth_hdr_tso)); |
28 | } | 28 | } |
29 | 29 | ||
30 | /** | 30 | /** |
diff --git a/drivers/sbus/char/openprom.c b/drivers/sbus/char/openprom.c index 293bb2fdb1d5..2f698763ba5d 100644 --- a/drivers/sbus/char/openprom.c +++ b/drivers/sbus/char/openprom.c | |||
@@ -145,8 +145,9 @@ static int opromgetprop(void __user *argp, struct device_node *dp, struct openpr | |||
145 | void *pval; | 145 | void *pval; |
146 | int len; | 146 | int len; |
147 | 147 | ||
148 | pval = of_get_property(dp, op->oprom_array, &len); | 148 | if (!dp || |
149 | if (!pval || len <= 0 || len > bufsize) | 149 | !(pval = of_get_property(dp, op->oprom_array, &len)) || |
150 | len <= 0 || len > bufsize) | ||
150 | return copyout(argp, op, sizeof(int)); | 151 | return copyout(argp, op, sizeof(int)); |
151 | 152 | ||
152 | memcpy(op->oprom_array, pval, len); | 153 | memcpy(op->oprom_array, pval, len); |
@@ -161,6 +162,8 @@ static int opromnxtprop(void __user *argp, struct device_node *dp, struct openpr | |||
161 | struct property *prop; | 162 | struct property *prop; |
162 | int len; | 163 | int len; |
163 | 164 | ||
165 | if (!dp) | ||
166 | return copyout(argp, op, sizeof(int)); | ||
164 | if (op->oprom_array[0] == '\0') { | 167 | if (op->oprom_array[0] == '\0') { |
165 | prop = dp->properties; | 168 | prop = dp->properties; |
166 | if (!prop) | 169 | if (!prop) |
@@ -266,9 +269,13 @@ static int oprompci2node(void __user *argp, struct device_node *dp, struct openp | |||
266 | 269 | ||
267 | static int oprompath2node(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize, DATA *data) | 270 | static int oprompath2node(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize, DATA *data) |
268 | { | 271 | { |
272 | phandle ph = 0; | ||
273 | |||
269 | dp = of_find_node_by_path(op->oprom_array); | 274 | dp = of_find_node_by_path(op->oprom_array); |
275 | if (dp) | ||
276 | ph = dp->node; | ||
270 | data->current_node = dp; | 277 | data->current_node = dp; |
271 | *((int *)op->oprom_array) = dp->node; | 278 | *((int *)op->oprom_array) = ph; |
272 | op->oprom_size = sizeof(int); | 279 | op->oprom_size = sizeof(int); |
273 | 280 | ||
274 | return copyout(argp, op, bufsize + sizeof(int)); | 281 | return copyout(argp, op, bufsize + sizeof(int)); |
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index a8ed5a22009d..3d355d054612 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c | |||
@@ -466,7 +466,7 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd, | |||
466 | struct scsi_device *sdev = scmd->device; | 466 | struct scsi_device *sdev = scmd->device; |
467 | struct Scsi_Host *shost = sdev->host; | 467 | struct Scsi_Host *shost = sdev->host; |
468 | int old_result = scmd->result; | 468 | int old_result = scmd->result; |
469 | DECLARE_COMPLETION(done); | 469 | DECLARE_COMPLETION_ONSTACK(done); |
470 | unsigned long timeleft; | 470 | unsigned long timeleft; |
471 | unsigned long flags; | 471 | unsigned long flags; |
472 | unsigned char old_cmnd[MAX_COMMAND_SIZE]; | 472 | unsigned char old_cmnd[MAX_COMMAND_SIZE]; |
diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c index 392bffcf96e8..95738a19cde7 100644 --- a/drivers/serial/s3c2410.c +++ b/drivers/serial/s3c2410.c | |||
@@ -1621,7 +1621,7 @@ static struct s3c24xx_uart_info s3c2412_uart_inf = { | |||
1621 | static int s3c2412_serial_probe(struct platform_device *dev) | 1621 | static int s3c2412_serial_probe(struct platform_device *dev) |
1622 | { | 1622 | { |
1623 | dbg("s3c2440_serial_probe: dev=%p\n", dev); | 1623 | dbg("s3c2440_serial_probe: dev=%p\n", dev); |
1624 | return s3c24xx_serial_probe(dev, &s3c2440_uart_inf); | 1624 | return s3c24xx_serial_probe(dev, &s3c2412_uart_inf); |
1625 | } | 1625 | } |
1626 | 1626 | ||
1627 | static struct platform_driver s3c2412_serial_drv = { | 1627 | static struct platform_driver s3c2412_serial_drv = { |
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 681dea8f9532..ca5bfb6914d2 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c | |||
@@ -251,6 +251,44 @@ static struct super_operations ext2_sops = { | |||
251 | #endif | 251 | #endif |
252 | }; | 252 | }; |
253 | 253 | ||
254 | static struct dentry *ext2_get_dentry(struct super_block *sb, void *vobjp) | ||
255 | { | ||
256 | __u32 *objp = vobjp; | ||
257 | unsigned long ino = objp[0]; | ||
258 | __u32 generation = objp[1]; | ||
259 | struct inode *inode; | ||
260 | struct dentry *result; | ||
261 | |||
262 | if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO) | ||
263 | return ERR_PTR(-ESTALE); | ||
264 | if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count)) | ||
265 | return ERR_PTR(-ESTALE); | ||
266 | |||
267 | /* iget isn't really right if the inode is currently unallocated!! | ||
268 | * ext2_read_inode currently does appropriate checks, but | ||
269 | * it might be "neater" to call ext2_get_inode first and check | ||
270 | * if the inode is valid..... | ||
271 | */ | ||
272 | inode = iget(sb, ino); | ||
273 | if (inode == NULL) | ||
274 | return ERR_PTR(-ENOMEM); | ||
275 | if (is_bad_inode(inode) || | ||
276 | (generation && inode->i_generation != generation)) { | ||
277 | /* we didn't find the right inode.. */ | ||
278 | iput(inode); | ||
279 | return ERR_PTR(-ESTALE); | ||
280 | } | ||
281 | /* now to find a dentry. | ||
282 | * If possible, get a well-connected one | ||
283 | */ | ||
284 | result = d_alloc_anon(inode); | ||
285 | if (!result) { | ||
286 | iput(inode); | ||
287 | return ERR_PTR(-ENOMEM); | ||
288 | } | ||
289 | return result; | ||
290 | } | ||
291 | |||
254 | /* Yes, most of these are left as NULL!! | 292 | /* Yes, most of these are left as NULL!! |
255 | * A NULL value implies the default, which works with ext2-like file | 293 | * A NULL value implies the default, which works with ext2-like file |
256 | * systems, but can be improved upon. | 294 | * systems, but can be improved upon. |
@@ -258,6 +296,7 @@ static struct super_operations ext2_sops = { | |||
258 | */ | 296 | */ |
259 | static struct export_operations ext2_export_ops = { | 297 | static struct export_operations ext2_export_ops = { |
260 | .get_parent = ext2_get_parent, | 298 | .get_parent = ext2_get_parent, |
299 | .get_dentry = ext2_get_dentry, | ||
261 | }; | 300 | }; |
262 | 301 | ||
263 | static unsigned long get_sb_block(void **data) | 302 | static unsigned long get_sb_block(void **data) |
diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c index 0f0b1eadb98d..84be02e93652 100644 --- a/fs/ext3/inode.c +++ b/fs/ext3/inode.c | |||
@@ -925,7 +925,7 @@ int ext3_get_blocks_handle(handle_t *handle, struct inode *inode, | |||
925 | set_buffer_new(bh_result); | 925 | set_buffer_new(bh_result); |
926 | got_it: | 926 | got_it: |
927 | map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key)); | 927 | map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key)); |
928 | if (blocks_to_boundary == 0) | 928 | if (count > blocks_to_boundary) |
929 | set_buffer_boundary(bh_result); | 929 | set_buffer_boundary(bh_result); |
930 | err = count; | 930 | err = count; |
931 | /* Clean up and exit */ | 931 | /* Clean up and exit */ |
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 813d589cc6c0..3559086eee5f 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
@@ -554,6 +554,47 @@ static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs) | |||
554 | return 0; | 554 | return 0; |
555 | } | 555 | } |
556 | 556 | ||
557 | |||
558 | static struct dentry *ext3_get_dentry(struct super_block *sb, void *vobjp) | ||
559 | { | ||
560 | __u32 *objp = vobjp; | ||
561 | unsigned long ino = objp[0]; | ||
562 | __u32 generation = objp[1]; | ||
563 | struct inode *inode; | ||
564 | struct dentry *result; | ||
565 | |||
566 | if (ino < EXT3_FIRST_INO(sb) && ino != EXT3_ROOT_INO) | ||
567 | return ERR_PTR(-ESTALE); | ||
568 | if (ino > le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count)) | ||
569 | return ERR_PTR(-ESTALE); | ||
570 | |||
571 | /* iget isn't really right if the inode is currently unallocated!! | ||
572 | * | ||
573 | * ext3_read_inode will return a bad_inode if the inode had been | ||
574 | * deleted, so we should be safe. | ||
575 | * | ||
576 | * Currently we don't know the generation for parent directory, so | ||
577 | * a generation of 0 means "accept any" | ||
578 | */ | ||
579 | inode = iget(sb, ino); | ||
580 | if (inode == NULL) | ||
581 | return ERR_PTR(-ENOMEM); | ||
582 | if (is_bad_inode(inode) || | ||
583 | (generation && inode->i_generation != generation)) { | ||
584 | iput(inode); | ||
585 | return ERR_PTR(-ESTALE); | ||
586 | } | ||
587 | /* now to find a dentry. | ||
588 | * If possible, get a well-connected one | ||
589 | */ | ||
590 | result = d_alloc_anon(inode); | ||
591 | if (!result) { | ||
592 | iput(inode); | ||
593 | return ERR_PTR(-ENOMEM); | ||
594 | } | ||
595 | return result; | ||
596 | } | ||
597 | |||
557 | #ifdef CONFIG_QUOTA | 598 | #ifdef CONFIG_QUOTA |
558 | #define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group") | 599 | #define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group") |
559 | #define QTYPE2MOPT(on, t) ((t)==USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA)) | 600 | #define QTYPE2MOPT(on, t) ((t)==USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA)) |
@@ -622,6 +663,7 @@ static struct super_operations ext3_sops = { | |||
622 | 663 | ||
623 | static struct export_operations ext3_export_ops = { | 664 | static struct export_operations ext3_export_ops = { |
624 | .get_parent = ext3_get_parent, | 665 | .get_parent = ext3_get_parent, |
666 | .get_dentry = ext3_get_dentry, | ||
625 | }; | 667 | }; |
626 | 668 | ||
627 | enum { | 669 | enum { |
diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c index c19bd476e8ec..e52cef526d90 100644 --- a/fs/jffs2/summary.c +++ b/fs/jffs2/summary.c | |||
@@ -252,6 +252,11 @@ int jffs2_sum_add_kvec(struct jffs2_sb_info *c, const struct kvec *invecs, | |||
252 | union jffs2_node_union *node; | 252 | union jffs2_node_union *node; |
253 | struct jffs2_eraseblock *jeb; | 253 | struct jffs2_eraseblock *jeb; |
254 | 254 | ||
255 | if (c->summary->sum_size == JFFS2_SUMMARY_NOSUM_SIZE) { | ||
256 | dbg_summary("Summary is disabled for this jeb! Skipping summary info!\n"); | ||
257 | return 0; | ||
258 | } | ||
259 | |||
255 | node = invecs[0].iov_base; | 260 | node = invecs[0].iov_base; |
256 | jeb = &c->blocks[ofs / c->sector_size]; | 261 | jeb = &c->blocks[ofs / c->sector_size]; |
257 | ofs -= jeb->offset; | 262 | ofs -= jeb->offset; |
diff --git a/include/asm-alpha/Kbuild b/include/asm-alpha/Kbuild index e57fd57538b8..2b06b3bad5ff 100644 --- a/include/asm-alpha/Kbuild +++ b/include/asm-alpha/Kbuild | |||
@@ -1,5 +1,5 @@ | |||
1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
2 | 2 | ||
3 | unifdef-y += console.h fpu.h sysinfo.h | 3 | unifdef-y += console.h fpu.h sysinfo.h compiler.h |
4 | 4 | ||
5 | header-y += gentrap.h regdef.h pal.h reg.h | 5 | header-y += gentrap.h regdef.h pal.h reg.h |
diff --git a/include/asm-alpha/compiler.h b/include/asm-alpha/compiler.h index 00c6f57ad9a7..d2768cc3d7a4 100644 --- a/include/asm-alpha/compiler.h +++ b/include/asm-alpha/compiler.h | |||
@@ -90,6 +90,7 @@ | |||
90 | __asm__("stw %1,%0" : "=m"(mem) : "r"(val)) | 90 | __asm__("stw %1,%0" : "=m"(mem) : "r"(val)) |
91 | #endif | 91 | #endif |
92 | 92 | ||
93 | #ifdef __KERNEL__ | ||
93 | /* Some idiots over in <linux/compiler.h> thought inline should imply | 94 | /* Some idiots over in <linux/compiler.h> thought inline should imply |
94 | always_inline. This breaks stuff. We'll include this file whenever | 95 | always_inline. This breaks stuff. We'll include this file whenever |
95 | we run into such problems. */ | 96 | we run into such problems. */ |
@@ -101,4 +102,6 @@ | |||
101 | #undef __always_inline | 102 | #undef __always_inline |
102 | #define __always_inline inline __attribute__((always_inline)) | 103 | #define __always_inline inline __attribute__((always_inline)) |
103 | 104 | ||
105 | #endif /* __KERNEL__ */ | ||
106 | |||
104 | #endif /* __ALPHA_COMPILER_H */ | 107 | #endif /* __ALPHA_COMPILER_H */ |
diff --git a/include/asm-alpha/page.h b/include/asm-alpha/page.h index 8c7cd50d4eae..d2bed3cb33ff 100644 --- a/include/asm-alpha/page.h +++ b/include/asm-alpha/page.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef _ALPHA_PAGE_H | 1 | #ifndef _ALPHA_PAGE_H |
2 | #define _ALPHA_PAGE_H | 2 | #define _ALPHA_PAGE_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
5 | |||
4 | #include <asm/pal.h> | 6 | #include <asm/pal.h> |
5 | 7 | ||
6 | /* PAGE_SHIFT determines the page size */ | 8 | /* PAGE_SHIFT determines the page size */ |
@@ -8,8 +10,6 @@ | |||
8 | #define PAGE_SIZE (1UL << PAGE_SHIFT) | 10 | #define PAGE_SIZE (1UL << PAGE_SHIFT) |
9 | #define PAGE_MASK (~(PAGE_SIZE-1)) | 11 | #define PAGE_MASK (~(PAGE_SIZE-1)) |
10 | 12 | ||
11 | #ifdef __KERNEL__ | ||
12 | |||
13 | #ifndef __ASSEMBLY__ | 13 | #ifndef __ASSEMBLY__ |
14 | 14 | ||
15 | #define STRICT_MM_TYPECHECKS | 15 | #define STRICT_MM_TYPECHECKS |
@@ -92,9 +92,9 @@ typedef unsigned long pgprot_t; | |||
92 | 92 | ||
93 | #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \ | 93 | #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \ |
94 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) | 94 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
95 | #endif /* __KERNEL__ */ | ||
96 | 95 | ||
97 | #include <asm-generic/memory_model.h> | 96 | #include <asm-generic/memory_model.h> |
98 | #include <asm-generic/page.h> | 97 | #include <asm-generic/page.h> |
99 | 98 | ||
99 | #endif /* __KERNEL__ */ | ||
100 | #endif /* _ALPHA_PAGE_H */ | 100 | #endif /* _ALPHA_PAGE_H */ |
diff --git a/include/asm-arm/arch-s3c2410/regs-power.h b/include/asm-arm/arch-s3c2410/regs-power.h new file mode 100644 index 000000000000..6c319ea2afac --- /dev/null +++ b/include/asm-arm/arch-s3c2410/regs-power.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* linux/include/asm/arch-s3c2410/regs-power.h | ||
2 | * | ||
3 | * Copyright (c) 2003,2004,2005,2006 Simtec Electronics <linux@simtec.co.uk> | ||
4 | * http://armlinux.simtec.co.uk/ | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * S3C24XX power control register definitions | ||
11 | */ | ||
12 | |||
13 | #ifndef __ASM_ARM_REGS_PWR | ||
14 | #define __ASM_ARM_REGS_PWR __FILE__ | ||
15 | |||
16 | #define S3C24XX_PWRREG(x) ((x) + S3C24XX_VA_CLKPWR) | ||
17 | |||
18 | #define S3C2412_PWRMODECON S3C24XX_PWRREG(0x20) | ||
19 | #define S3C2412_PWRCFG S3C24XX_PWRREG(0x24) | ||
20 | |||
21 | #define S3C2412_PWRCFG_BATF_IGNORE (0<<0) | ||
22 | #define S3C2412_PWRCFG_BATF_SLEEP (3<<0) | ||
23 | #define S3C2412_PWRCFG_BATF_MASK (3<<0) | ||
24 | |||
25 | #define S3C2412_PWRCFG_STANDBYWFI_IGNORE (0<<6) | ||
26 | #define S3C2412_PWRCFG_STANDBYWFI_IDLE (1<<6) | ||
27 | #define S3C2412_PWRCFG_STANDBYWFI_STOP (2<<6) | ||
28 | #define S3C2412_PWRCFG_STANDBYWFI_SLEEP (3<<6) | ||
29 | #define S3C2412_PWRCFG_STANDBYWFI_MASK (3<<6) | ||
30 | |||
31 | #define S3C2412_PWRCFG_RTC_MASKIRQ (1<<8) | ||
32 | #define S3C2412_PWRCFG_NAND_NORST (1<<9) | ||
33 | |||
34 | #endif /* __ASM_ARM_REGS_PWR */ | ||
diff --git a/include/asm-arm/elf.h b/include/asm-arm/elf.h index 71061ca5c5d0..ae7baa6c73f7 100644 --- a/include/asm-arm/elf.h +++ b/include/asm-arm/elf.h | |||
@@ -8,7 +8,9 @@ | |||
8 | 8 | ||
9 | #include <asm/ptrace.h> | 9 | #include <asm/ptrace.h> |
10 | #include <asm/user.h> | 10 | #include <asm/user.h> |
11 | #ifdef __KERNEL | ||
11 | #include <asm/procinfo.h> | 12 | #include <asm/procinfo.h> |
13 | #endif | ||
12 | 14 | ||
13 | typedef unsigned long elf_greg_t; | 15 | typedef unsigned long elf_greg_t; |
14 | typedef unsigned long elf_freg_t[3]; | 16 | typedef unsigned long elf_freg_t[3]; |
diff --git a/include/asm-arm/page.h b/include/asm-arm/page.h index 63d12f0244c5..b721270b9986 100644 --- a/include/asm-arm/page.h +++ b/include/asm-arm/page.h | |||
@@ -193,8 +193,8 @@ extern pmd_t *top_pmd; | |||
193 | #define ARCH_SLAB_MINALIGN 8 | 193 | #define ARCH_SLAB_MINALIGN 8 |
194 | #endif | 194 | #endif |
195 | 195 | ||
196 | #endif /* __KERNEL__ */ | ||
197 | |||
198 | #include <asm-generic/page.h> | 196 | #include <asm-generic/page.h> |
199 | 197 | ||
198 | #endif /* __KERNEL__ */ | ||
199 | |||
200 | #endif | 200 | #endif |
diff --git a/include/asm-generic/Kbuild.asm b/include/asm-generic/Kbuild.asm index 6b16dda18115..c00de6028fa8 100644 --- a/include/asm-generic/Kbuild.asm +++ b/include/asm-generic/Kbuild.asm | |||
@@ -2,7 +2,7 @@ unifdef-y += a.out.h auxvec.h byteorder.h errno.h fcntl.h ioctl.h \ | |||
2 | ioctls.h ipcbuf.h mman.h msgbuf.h param.h poll.h \ | 2 | ioctls.h ipcbuf.h mman.h msgbuf.h param.h poll.h \ |
3 | posix_types.h ptrace.h resource.h sembuf.h shmbuf.h shmparam.h \ | 3 | posix_types.h ptrace.h resource.h sembuf.h shmbuf.h shmparam.h \ |
4 | sigcontext.h siginfo.h signal.h socket.h sockios.h stat.h \ | 4 | sigcontext.h siginfo.h signal.h socket.h sockios.h stat.h \ |
5 | statfs.h termbits.h termios.h timex.h types.h unistd.h user.h | 5 | statfs.h termbits.h termios.h types.h unistd.h user.h |
6 | 6 | ||
7 | # These probably shouldn't be exported | 7 | # These probably shouldn't be exported |
8 | unifdef-y += elf.h page.h | 8 | unifdef-y += elf.h page.h |
diff --git a/include/asm-i386/Kbuild b/include/asm-i386/Kbuild index 335b2fa4e066..2308190321da 100644 --- a/include/asm-i386/Kbuild +++ b/include/asm-i386/Kbuild | |||
@@ -1,5 +1,5 @@ | |||
1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
2 | 2 | ||
3 | header-y += boot.h debugreg.h ldt.h setup.h ucontext.h | 3 | header-y += boot.h debugreg.h ldt.h ucontext.h |
4 | 4 | ||
5 | unifdef-y += mtrr.h vm86.h | 5 | unifdef-y += mtrr.h setup.h vm86.h |
diff --git a/include/asm-i386/elf.h b/include/asm-i386/elf.h index 1eac92cb5b16..db4344d9f73f 100644 --- a/include/asm-i386/elf.h +++ b/include/asm-i386/elf.h | |||
@@ -7,10 +7,7 @@ | |||
7 | 7 | ||
8 | #include <asm/ptrace.h> | 8 | #include <asm/ptrace.h> |
9 | #include <asm/user.h> | 9 | #include <asm/user.h> |
10 | #include <asm/processor.h> | ||
11 | #include <asm/system.h> /* for savesegment */ | ||
12 | #include <asm/auxvec.h> | 10 | #include <asm/auxvec.h> |
13 | #include <asm/desc.h> | ||
14 | 11 | ||
15 | #include <linux/utsname.h> | 12 | #include <linux/utsname.h> |
16 | 13 | ||
@@ -48,6 +45,12 @@ typedef struct user_fxsr_struct elf_fpxregset_t; | |||
48 | #define ELF_DATA ELFDATA2LSB | 45 | #define ELF_DATA ELFDATA2LSB |
49 | #define ELF_ARCH EM_386 | 46 | #define ELF_ARCH EM_386 |
50 | 47 | ||
48 | #ifdef __KERNEL__ | ||
49 | |||
50 | #include <asm/processor.h> | ||
51 | #include <asm/system.h> /* for savesegment */ | ||
52 | #include <asm/desc.h> | ||
53 | |||
51 | /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx | 54 | /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx |
52 | contains a pointer to a function which might be registered using `atexit'. | 55 | contains a pointer to a function which might be registered using `atexit'. |
53 | This provides a mean for the dynamic linker to call DT_FINI functions for | 56 | This provides a mean for the dynamic linker to call DT_FINI functions for |
@@ -111,7 +114,6 @@ typedef struct user_fxsr_struct elf_fpxregset_t; | |||
111 | 114 | ||
112 | #define ELF_PLATFORM (system_utsname.machine) | 115 | #define ELF_PLATFORM (system_utsname.machine) |
113 | 116 | ||
114 | #ifdef __KERNEL__ | ||
115 | #define SET_PERSONALITY(ex, ibcs2) do { } while (0) | 117 | #define SET_PERSONALITY(ex, ibcs2) do { } while (0) |
116 | 118 | ||
117 | /* | 119 | /* |
diff --git a/include/asm-i386/setup.h b/include/asm-i386/setup.h index f737e423029e..2734909eff84 100644 --- a/include/asm-i386/setup.h +++ b/include/asm-i386/setup.h | |||
@@ -6,6 +6,7 @@ | |||
6 | #ifndef _i386_SETUP_H | 6 | #ifndef _i386_SETUP_H |
7 | #define _i386_SETUP_H | 7 | #define _i386_SETUP_H |
8 | 8 | ||
9 | #ifdef __KERNEL__ | ||
9 | #include <linux/pfn.h> | 10 | #include <linux/pfn.h> |
10 | 11 | ||
11 | /* | 12 | /* |
@@ -13,6 +14,7 @@ | |||
13 | */ | 14 | */ |
14 | #define MAXMEM_PFN PFN_DOWN(MAXMEM) | 15 | #define MAXMEM_PFN PFN_DOWN(MAXMEM) |
15 | #define MAX_NONPAE_PFN (1 << 20) | 16 | #define MAX_NONPAE_PFN (1 << 20) |
17 | #endif | ||
16 | 18 | ||
17 | #define PARAM_SIZE 4096 | 19 | #define PARAM_SIZE 4096 |
18 | #define COMMAND_LINE_SIZE 256 | 20 | #define COMMAND_LINE_SIZE 256 |
diff --git a/include/asm-i386/signal.h b/include/asm-i386/signal.h index 3824a502351f..c3e8adec5918 100644 --- a/include/asm-i386/signal.h +++ b/include/asm-i386/signal.h | |||
@@ -2,7 +2,6 @@ | |||
2 | #define _ASMi386_SIGNAL_H | 2 | #define _ASMi386_SIGNAL_H |
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | #include <linux/linkage.h> | ||
6 | #include <linux/time.h> | 5 | #include <linux/time.h> |
7 | #include <linux/compiler.h> | 6 | #include <linux/compiler.h> |
8 | 7 | ||
@@ -10,6 +9,9 @@ | |||
10 | struct siginfo; | 9 | struct siginfo; |
11 | 10 | ||
12 | #ifdef __KERNEL__ | 11 | #ifdef __KERNEL__ |
12 | |||
13 | #include <linux/linkage.h> | ||
14 | |||
13 | /* Most things should be clean enough to redefine this at will, if care | 15 | /* Most things should be clean enough to redefine this at will, if care |
14 | is taken to make libc match. */ | 16 | is taken to make libc match. */ |
15 | 17 | ||
diff --git a/include/asm-i386/system.h b/include/asm-i386/system.h index 49928eb33f8b..098bcee94e38 100644 --- a/include/asm-i386/system.h +++ b/include/asm-i386/system.h | |||
@@ -11,9 +11,14 @@ | |||
11 | struct task_struct; /* one of the stranger aspects of C forward declarations.. */ | 11 | struct task_struct; /* one of the stranger aspects of C forward declarations.. */ |
12 | extern struct task_struct * FASTCALL(__switch_to(struct task_struct *prev, struct task_struct *next)); | 12 | extern struct task_struct * FASTCALL(__switch_to(struct task_struct *prev, struct task_struct *next)); |
13 | 13 | ||
14 | /* | ||
15 | * Saving eflags is important. It switches not only IOPL between tasks, | ||
16 | * it also protects other tasks from NT leaking through sysenter etc. | ||
17 | */ | ||
14 | #define switch_to(prev,next,last) do { \ | 18 | #define switch_to(prev,next,last) do { \ |
15 | unsigned long esi,edi; \ | 19 | unsigned long esi,edi; \ |
16 | asm volatile("pushl %%ebp\n\t" \ | 20 | asm volatile("pushfl\n\t" /* Save flags */ \ |
21 | "pushl %%ebp\n\t" \ | ||
17 | "movl %%esp,%0\n\t" /* save ESP */ \ | 22 | "movl %%esp,%0\n\t" /* save ESP */ \ |
18 | "movl %5,%%esp\n\t" /* restore ESP */ \ | 23 | "movl %5,%%esp\n\t" /* restore ESP */ \ |
19 | "movl $1f,%1\n\t" /* save EIP */ \ | 24 | "movl $1f,%1\n\t" /* save EIP */ \ |
@@ -21,6 +26,7 @@ extern struct task_struct * FASTCALL(__switch_to(struct task_struct *prev, struc | |||
21 | "jmp __switch_to\n" \ | 26 | "jmp __switch_to\n" \ |
22 | "1:\t" \ | 27 | "1:\t" \ |
23 | "popl %%ebp\n\t" \ | 28 | "popl %%ebp\n\t" \ |
29 | "popfl" \ | ||
24 | :"=m" (prev->thread.esp),"=m" (prev->thread.eip), \ | 30 | :"=m" (prev->thread.esp),"=m" (prev->thread.eip), \ |
25 | "=a" (last),"=S" (esi),"=D" (edi) \ | 31 | "=a" (last),"=S" (esi),"=D" (edi) \ |
26 | :"m" (next->thread.esp),"m" (next->thread.eip), \ | 32 | :"m" (next->thread.esp),"m" (next->thread.eip), \ |
diff --git a/include/asm-i386/unistd.h b/include/asm-i386/unistd.h index d983b74e4d9f..fc1c8ddae149 100644 --- a/include/asm-i386/unistd.h +++ b/include/asm-i386/unistd.h | |||
@@ -324,6 +324,8 @@ | |||
324 | #define __NR_vmsplice 316 | 324 | #define __NR_vmsplice 316 |
325 | #define __NR_move_pages 317 | 325 | #define __NR_move_pages 317 |
326 | 326 | ||
327 | #ifdef __KERNEL__ | ||
328 | |||
327 | #define NR_syscalls 318 | 329 | #define NR_syscalls 318 |
328 | 330 | ||
329 | /* | 331 | /* |
@@ -423,8 +425,6 @@ __asm__ volatile ("push %%ebp ; push %%ebx ; movl 4(%2),%%ebp ; " \ | |||
423 | __syscall_return(type,__res); \ | 425 | __syscall_return(type,__res); \ |
424 | } | 426 | } |
425 | 427 | ||
426 | #ifdef __KERNEL__ | ||
427 | |||
428 | #define __ARCH_WANT_IPC_PARSE_VERSION | 428 | #define __ARCH_WANT_IPC_PARSE_VERSION |
429 | #define __ARCH_WANT_OLD_READDIR | 429 | #define __ARCH_WANT_OLD_READDIR |
430 | #define __ARCH_WANT_OLD_STAT | 430 | #define __ARCH_WANT_OLD_STAT |
diff --git a/include/asm-ia64/Kbuild b/include/asm-ia64/Kbuild index 85d6f8005eb4..f1cb00f39c22 100644 --- a/include/asm-ia64/Kbuild +++ b/include/asm-ia64/Kbuild | |||
@@ -4,4 +4,4 @@ header-y += break.h fpu.h fpswa.h gcc_intrin.h ia64regs.h \ | |||
4 | intel_intrin.h intrinsics.h perfmon_default_smpl.h \ | 4 | intel_intrin.h intrinsics.h perfmon_default_smpl.h \ |
5 | ptrace_offsets.h rse.h setup.h ucontext.h | 5 | ptrace_offsets.h rse.h setup.h ucontext.h |
6 | 6 | ||
7 | unifdef-y += perfmon.h | 7 | unifdef-y += perfmon.h ustack.h |
diff --git a/include/asm-ia64/page.h b/include/asm-ia64/page.h index f5a949ec6e1e..947cb72b520e 100644 --- a/include/asm-ia64/page.h +++ b/include/asm-ia64/page.h | |||
@@ -7,6 +7,7 @@ | |||
7 | * David Mosberger-Tang <davidm@hpl.hp.com> | 7 | * David Mosberger-Tang <davidm@hpl.hp.com> |
8 | */ | 8 | */ |
9 | 9 | ||
10 | # ifdef __KERNEL__ | ||
10 | 11 | ||
11 | #include <asm/intrinsics.h> | 12 | #include <asm/intrinsics.h> |
12 | #include <asm/types.h> | 13 | #include <asm/types.h> |
@@ -64,7 +65,6 @@ | |||
64 | # define __pa(x) ((x) - PAGE_OFFSET) | 65 | # define __pa(x) ((x) - PAGE_OFFSET) |
65 | # define __va(x) ((x) + PAGE_OFFSET) | 66 | # define __va(x) ((x) + PAGE_OFFSET) |
66 | #else /* !__ASSEMBLY */ | 67 | #else /* !__ASSEMBLY */ |
67 | # ifdef __KERNEL__ | ||
68 | # define STRICT_MM_TYPECHECKS | 68 | # define STRICT_MM_TYPECHECKS |
69 | 69 | ||
70 | extern void clear_page (void *page); | 70 | extern void clear_page (void *page); |
@@ -174,7 +174,6 @@ get_order (unsigned long size) | |||
174 | return order; | 174 | return order; |
175 | } | 175 | } |
176 | 176 | ||
177 | # endif /* __KERNEL__ */ | ||
178 | #endif /* !__ASSEMBLY__ */ | 177 | #endif /* !__ASSEMBLY__ */ |
179 | 178 | ||
180 | #ifdef STRICT_MM_TYPECHECKS | 179 | #ifdef STRICT_MM_TYPECHECKS |
@@ -228,4 +227,5 @@ get_order (unsigned long size) | |||
228 | (((current->personality & READ_IMPLIES_EXEC) != 0) \ | 227 | (((current->personality & READ_IMPLIES_EXEC) != 0) \ |
229 | ? VM_EXEC : 0)) | 228 | ? VM_EXEC : 0)) |
230 | 229 | ||
230 | # endif /* __KERNEL__ */ | ||
231 | #endif /* _ASM_IA64_PAGE_H */ | 231 | #endif /* _ASM_IA64_PAGE_H */ |
diff --git a/include/asm-ia64/ptrace.h b/include/asm-ia64/ptrace.h index 415abb23b210..1414316efd40 100644 --- a/include/asm-ia64/ptrace.h +++ b/include/asm-ia64/ptrace.h | |||
@@ -56,6 +56,8 @@ | |||
56 | 56 | ||
57 | 57 | ||
58 | #include <asm/fpu.h> | 58 | #include <asm/fpu.h> |
59 | |||
60 | #ifdef __KERNEL__ | ||
59 | #ifndef ASM_OFFSETS_C | 61 | #ifndef ASM_OFFSETS_C |
60 | #include <asm/asm-offsets.h> | 62 | #include <asm/asm-offsets.h> |
61 | #endif | 63 | #endif |
@@ -79,10 +81,9 @@ | |||
79 | 81 | ||
80 | #define KERNEL_STACK_SIZE IA64_STK_OFFSET | 82 | #define KERNEL_STACK_SIZE IA64_STK_OFFSET |
81 | 83 | ||
82 | #ifndef __ASSEMBLY__ | 84 | #endif /* __KERNEL__ */ |
83 | 85 | ||
84 | #include <asm/current.h> | 86 | #ifndef __ASSEMBLY__ |
85 | #include <asm/page.h> | ||
86 | 87 | ||
87 | /* | 88 | /* |
88 | * This struct defines the way the registers are saved on system | 89 | * This struct defines the way the registers are saved on system |
@@ -229,6 +230,9 @@ struct switch_stack { | |||
229 | 230 | ||
230 | #ifdef __KERNEL__ | 231 | #ifdef __KERNEL__ |
231 | 232 | ||
233 | #include <asm/current.h> | ||
234 | #include <asm/page.h> | ||
235 | |||
232 | #define __ARCH_SYS_PTRACE 1 | 236 | #define __ARCH_SYS_PTRACE 1 |
233 | 237 | ||
234 | /* | 238 | /* |
diff --git a/include/asm-ia64/ustack.h b/include/asm-ia64/ustack.h index da55c91246e3..a349467913ea 100644 --- a/include/asm-ia64/ustack.h +++ b/include/asm-ia64/ustack.h | |||
@@ -5,12 +5,15 @@ | |||
5 | * Constants for the user stack size | 5 | * Constants for the user stack size |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifdef __KERNEL__ | ||
8 | #include <asm/page.h> | 9 | #include <asm/page.h> |
9 | 10 | ||
10 | /* The absolute hard limit for stack size is 1/2 of the mappable space in the region */ | 11 | /* The absolute hard limit for stack size is 1/2 of the mappable space in the region */ |
11 | #define MAX_USER_STACK_SIZE (RGN_MAP_LIMIT/2) | 12 | #define MAX_USER_STACK_SIZE (RGN_MAP_LIMIT/2) |
12 | /* Make a default stack size of 2GB */ | ||
13 | #define DEFAULT_USER_STACK_SIZE (1UL << 31) | ||
14 | #define STACK_TOP (0x6000000000000000UL + RGN_MAP_LIMIT) | 13 | #define STACK_TOP (0x6000000000000000UL + RGN_MAP_LIMIT) |
14 | #endif | ||
15 | |||
16 | /* Make a default stack size of 2GiB */ | ||
17 | #define DEFAULT_USER_STACK_SIZE (1UL << 31) | ||
15 | 18 | ||
16 | #endif /* _ASM_IA64_USTACK_H */ | 19 | #endif /* _ASM_IA64_USTACK_H */ |
diff --git a/include/asm-mips/page.h b/include/asm-mips/page.h index 6ed1151a05a3..219d359861f3 100644 --- a/include/asm-mips/page.h +++ b/include/asm-mips/page.h | |||
@@ -14,8 +14,6 @@ | |||
14 | 14 | ||
15 | #include <spaces.h> | 15 | #include <spaces.h> |
16 | 16 | ||
17 | #endif | ||
18 | |||
19 | /* | 17 | /* |
20 | * PAGE_SHIFT determines the page size | 18 | * PAGE_SHIFT determines the page size |
21 | */ | 19 | */ |
@@ -34,8 +32,6 @@ | |||
34 | #define PAGE_SIZE (1UL << PAGE_SHIFT) | 32 | #define PAGE_SIZE (1UL << PAGE_SHIFT) |
35 | #define PAGE_MASK (~((1 << PAGE_SHIFT) - 1)) | 33 | #define PAGE_MASK (~((1 << PAGE_SHIFT) - 1)) |
36 | 34 | ||
37 | |||
38 | #ifdef __KERNEL__ | ||
39 | #ifndef __ASSEMBLY__ | 35 | #ifndef __ASSEMBLY__ |
40 | 36 | ||
41 | extern void clear_page(void * page); | 37 | extern void clear_page(void * page); |
@@ -168,8 +164,6 @@ typedef struct { unsigned long pgprot; } pgprot_t; | |||
168 | #define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE) | 164 | #define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE) |
169 | #define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET) | 165 | #define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET) |
170 | 166 | ||
171 | #endif /* defined (__KERNEL__) */ | ||
172 | |||
173 | #ifdef CONFIG_LIMITED_DMA | 167 | #ifdef CONFIG_LIMITED_DMA |
174 | #define WANT_PAGE_VIRTUAL | 168 | #define WANT_PAGE_VIRTUAL |
175 | #endif | 169 | #endif |
@@ -177,4 +171,6 @@ typedef struct { unsigned long pgprot; } pgprot_t; | |||
177 | #include <asm-generic/memory_model.h> | 171 | #include <asm-generic/memory_model.h> |
178 | #include <asm-generic/page.h> | 172 | #include <asm-generic/page.h> |
179 | 173 | ||
174 | #endif /* defined (__KERNEL__) */ | ||
175 | |||
180 | #endif /* _ASM_PAGE_H */ | 176 | #endif /* _ASM_PAGE_H */ |
diff --git a/include/asm-powerpc/eeh.h b/include/asm-powerpc/eeh.h index 4df3e80118f4..6a784396660b 100644 --- a/include/asm-powerpc/eeh.h +++ b/include/asm-powerpc/eeh.h | |||
@@ -205,6 +205,7 @@ static inline void eeh_memset_io(volatile void __iomem *addr, int c, | |||
205 | lc |= lc << 8; | 205 | lc |= lc << 8; |
206 | lc |= lc << 16; | 206 | lc |= lc << 16; |
207 | 207 | ||
208 | __asm__ __volatile__ ("sync" : : : "memory"); | ||
208 | while(n && !EEH_CHECK_ALIGN(p, 4)) { | 209 | while(n && !EEH_CHECK_ALIGN(p, 4)) { |
209 | *((volatile u8 *)p) = c; | 210 | *((volatile u8 *)p) = c; |
210 | p++; | 211 | p++; |
@@ -229,6 +230,7 @@ static inline void eeh_memcpy_fromio(void *dest, const volatile void __iomem *sr | |||
229 | void *destsave = dest; | 230 | void *destsave = dest; |
230 | unsigned long nsave = n; | 231 | unsigned long nsave = n; |
231 | 232 | ||
233 | __asm__ __volatile__ ("sync" : : : "memory"); | ||
232 | while(n && (!EEH_CHECK_ALIGN(vsrc, 4) || !EEH_CHECK_ALIGN(dest, 4))) { | 234 | while(n && (!EEH_CHECK_ALIGN(vsrc, 4) || !EEH_CHECK_ALIGN(dest, 4))) { |
233 | *((u8 *)dest) = *((volatile u8 *)vsrc); | 235 | *((u8 *)dest) = *((volatile u8 *)vsrc); |
234 | __asm__ __volatile__ ("eieio" : : : "memory"); | 236 | __asm__ __volatile__ ("eieio" : : : "memory"); |
@@ -266,6 +268,7 @@ static inline void eeh_memcpy_toio(volatile void __iomem *dest, const void *src, | |||
266 | { | 268 | { |
267 | void *vdest = (void __force *) dest; | 269 | void *vdest = (void __force *) dest; |
268 | 270 | ||
271 | __asm__ __volatile__ ("sync" : : : "memory"); | ||
269 | while(n && (!EEH_CHECK_ALIGN(vdest, 4) || !EEH_CHECK_ALIGN(src, 4))) { | 272 | while(n && (!EEH_CHECK_ALIGN(vdest, 4) || !EEH_CHECK_ALIGN(src, 4))) { |
270 | *((volatile u8 *)vdest) = *((u8 *)src); | 273 | *((volatile u8 *)vdest) = *((u8 *)src); |
271 | src++; | 274 | src++; |
diff --git a/include/asm-powerpc/futex.h b/include/asm-powerpc/futex.h index f1b3c00bc1ce..936422e54891 100644 --- a/include/asm-powerpc/futex.h +++ b/include/asm-powerpc/futex.h | |||
@@ -84,7 +84,33 @@ static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr) | |||
84 | static inline int | 84 | static inline int |
85 | futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval) | 85 | futex_atomic_cmpxchg_inatomic(int __user *uaddr, int oldval, int newval) |
86 | { | 86 | { |
87 | return -ENOSYS; | 87 | int prev; |
88 | |||
89 | if (!access_ok(VERIFY_WRITE, uaddr, sizeof(int))) | ||
90 | return -EFAULT; | ||
91 | |||
92 | __asm__ __volatile__ ( | ||
93 | LWSYNC_ON_SMP | ||
94 | "1: lwarx %0,0,%2 # futex_atomic_cmpxchg_inatomic\n\ | ||
95 | cmpw 0,%0,%3\n\ | ||
96 | bne- 3f\n" | ||
97 | PPC405_ERR77(0,%2) | ||
98 | "2: stwcx. %4,0,%2\n\ | ||
99 | bne- 1b\n" | ||
100 | ISYNC_ON_SMP | ||
101 | "3: .section .fixup,\"ax\"\n\ | ||
102 | 4: li %0,%5\n\ | ||
103 | b 3b\n\ | ||
104 | .previous\n\ | ||
105 | .section __ex_table,\"a\"\n\ | ||
106 | .align 3\n\ | ||
107 | " PPC_LONG "1b,4b,2b,4b\n\ | ||
108 | .previous" \ | ||
109 | : "=&r" (prev), "+m" (*uaddr) | ||
110 | : "r" (uaddr), "r" (oldval), "r" (newval), "i" (-EFAULT) | ||
111 | : "cc", "memory"); | ||
112 | |||
113 | return prev; | ||
88 | } | 114 | } |
89 | 115 | ||
90 | #endif /* __KERNEL__ */ | 116 | #endif /* __KERNEL__ */ |
diff --git a/include/asm-powerpc/io.h b/include/asm-powerpc/io.h index 36c4c34bf565..212428db0d8b 100644 --- a/include/asm-powerpc/io.h +++ b/include/asm-powerpc/io.h | |||
@@ -19,6 +19,7 @@ extern int check_legacy_ioport(unsigned long base_port); | |||
19 | #include <linux/compiler.h> | 19 | #include <linux/compiler.h> |
20 | #include <asm/page.h> | 20 | #include <asm/page.h> |
21 | #include <asm/byteorder.h> | 21 | #include <asm/byteorder.h> |
22 | #include <asm/paca.h> | ||
22 | #ifdef CONFIG_PPC_ISERIES | 23 | #ifdef CONFIG_PPC_ISERIES |
23 | #include <asm/iseries/iseries_io.h> | 24 | #include <asm/iseries/iseries_io.h> |
24 | #endif | 25 | #endif |
@@ -162,7 +163,11 @@ extern void _outsw_ns(volatile u16 __iomem *port, const void *buf, int ns); | |||
162 | extern void _insl_ns(volatile u32 __iomem *port, void *buf, int nl); | 163 | extern void _insl_ns(volatile u32 __iomem *port, void *buf, int nl); |
163 | extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, int nl); | 164 | extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, int nl); |
164 | 165 | ||
165 | #define mmiowb() | 166 | static inline void mmiowb(void) |
167 | { | ||
168 | __asm__ __volatile__ ("sync" : : : "memory"); | ||
169 | get_paca()->io_sync = 0; | ||
170 | } | ||
166 | 171 | ||
167 | /* | 172 | /* |
168 | * output pause versions need a delay at least for the | 173 | * output pause versions need a delay at least for the |
@@ -278,22 +283,23 @@ static inline int in_8(const volatile unsigned char __iomem *addr) | |||
278 | { | 283 | { |
279 | int ret; | 284 | int ret; |
280 | 285 | ||
281 | __asm__ __volatile__("lbz%U1%X1 %0,%1; twi 0,%0,0; isync" | 286 | __asm__ __volatile__("sync; lbz%U1%X1 %0,%1; twi 0,%0,0; isync" |
282 | : "=r" (ret) : "m" (*addr)); | 287 | : "=r" (ret) : "m" (*addr)); |
283 | return ret; | 288 | return ret; |
284 | } | 289 | } |
285 | 290 | ||
286 | static inline void out_8(volatile unsigned char __iomem *addr, int val) | 291 | static inline void out_8(volatile unsigned char __iomem *addr, int val) |
287 | { | 292 | { |
288 | __asm__ __volatile__("stb%U0%X0 %1,%0; sync" | 293 | __asm__ __volatile__("sync; stb%U0%X0 %1,%0" |
289 | : "=m" (*addr) : "r" (val)); | 294 | : "=m" (*addr) : "r" (val)); |
295 | get_paca()->io_sync = 1; | ||
290 | } | 296 | } |
291 | 297 | ||
292 | static inline int in_le16(const volatile unsigned short __iomem *addr) | 298 | static inline int in_le16(const volatile unsigned short __iomem *addr) |
293 | { | 299 | { |
294 | int ret; | 300 | int ret; |
295 | 301 | ||
296 | __asm__ __volatile__("lhbrx %0,0,%1; twi 0,%0,0; isync" | 302 | __asm__ __volatile__("sync; lhbrx %0,0,%1; twi 0,%0,0; isync" |
297 | : "=r" (ret) : "r" (addr), "m" (*addr)); | 303 | : "=r" (ret) : "r" (addr), "m" (*addr)); |
298 | return ret; | 304 | return ret; |
299 | } | 305 | } |
@@ -302,28 +308,30 @@ static inline int in_be16(const volatile unsigned short __iomem *addr) | |||
302 | { | 308 | { |
303 | int ret; | 309 | int ret; |
304 | 310 | ||
305 | __asm__ __volatile__("lhz%U1%X1 %0,%1; twi 0,%0,0; isync" | 311 | __asm__ __volatile__("sync; lhz%U1%X1 %0,%1; twi 0,%0,0; isync" |
306 | : "=r" (ret) : "m" (*addr)); | 312 | : "=r" (ret) : "m" (*addr)); |
307 | return ret; | 313 | return ret; |
308 | } | 314 | } |
309 | 315 | ||
310 | static inline void out_le16(volatile unsigned short __iomem *addr, int val) | 316 | static inline void out_le16(volatile unsigned short __iomem *addr, int val) |
311 | { | 317 | { |
312 | __asm__ __volatile__("sthbrx %1,0,%2; sync" | 318 | __asm__ __volatile__("sync; sthbrx %1,0,%2" |
313 | : "=m" (*addr) : "r" (val), "r" (addr)); | 319 | : "=m" (*addr) : "r" (val), "r" (addr)); |
320 | get_paca()->io_sync = 1; | ||
314 | } | 321 | } |
315 | 322 | ||
316 | static inline void out_be16(volatile unsigned short __iomem *addr, int val) | 323 | static inline void out_be16(volatile unsigned short __iomem *addr, int val) |
317 | { | 324 | { |
318 | __asm__ __volatile__("sth%U0%X0 %1,%0; sync" | 325 | __asm__ __volatile__("sync; sth%U0%X0 %1,%0" |
319 | : "=m" (*addr) : "r" (val)); | 326 | : "=m" (*addr) : "r" (val)); |
327 | get_paca()->io_sync = 1; | ||
320 | } | 328 | } |
321 | 329 | ||
322 | static inline unsigned in_le32(const volatile unsigned __iomem *addr) | 330 | static inline unsigned in_le32(const volatile unsigned __iomem *addr) |
323 | { | 331 | { |
324 | unsigned ret; | 332 | unsigned ret; |
325 | 333 | ||
326 | __asm__ __volatile__("lwbrx %0,0,%1; twi 0,%0,0; isync" | 334 | __asm__ __volatile__("sync; lwbrx %0,0,%1; twi 0,%0,0; isync" |
327 | : "=r" (ret) : "r" (addr), "m" (*addr)); | 335 | : "=r" (ret) : "r" (addr), "m" (*addr)); |
328 | return ret; | 336 | return ret; |
329 | } | 337 | } |
@@ -332,21 +340,23 @@ static inline unsigned in_be32(const volatile unsigned __iomem *addr) | |||
332 | { | 340 | { |
333 | unsigned ret; | 341 | unsigned ret; |
334 | 342 | ||
335 | __asm__ __volatile__("lwz%U1%X1 %0,%1; twi 0,%0,0; isync" | 343 | __asm__ __volatile__("sync; lwz%U1%X1 %0,%1; twi 0,%0,0; isync" |
336 | : "=r" (ret) : "m" (*addr)); | 344 | : "=r" (ret) : "m" (*addr)); |
337 | return ret; | 345 | return ret; |
338 | } | 346 | } |
339 | 347 | ||
340 | static inline void out_le32(volatile unsigned __iomem *addr, int val) | 348 | static inline void out_le32(volatile unsigned __iomem *addr, int val) |
341 | { | 349 | { |
342 | __asm__ __volatile__("stwbrx %1,0,%2; sync" : "=m" (*addr) | 350 | __asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr) |
343 | : "r" (val), "r" (addr)); | 351 | : "r" (val), "r" (addr)); |
352 | get_paca()->io_sync = 1; | ||
344 | } | 353 | } |
345 | 354 | ||
346 | static inline void out_be32(volatile unsigned __iomem *addr, int val) | 355 | static inline void out_be32(volatile unsigned __iomem *addr, int val) |
347 | { | 356 | { |
348 | __asm__ __volatile__("stw%U0%X0 %1,%0; sync" | 357 | __asm__ __volatile__("sync; stw%U0%X0 %1,%0" |
349 | : "=m" (*addr) : "r" (val)); | 358 | : "=m" (*addr) : "r" (val)); |
359 | get_paca()->io_sync = 1; | ||
350 | } | 360 | } |
351 | 361 | ||
352 | static inline unsigned long in_le64(const volatile unsigned long __iomem *addr) | 362 | static inline unsigned long in_le64(const volatile unsigned long __iomem *addr) |
@@ -354,6 +364,7 @@ static inline unsigned long in_le64(const volatile unsigned long __iomem *addr) | |||
354 | unsigned long tmp, ret; | 364 | unsigned long tmp, ret; |
355 | 365 | ||
356 | __asm__ __volatile__( | 366 | __asm__ __volatile__( |
367 | "sync\n" | ||
357 | "ld %1,0(%2)\n" | 368 | "ld %1,0(%2)\n" |
358 | "twi 0,%1,0\n" | 369 | "twi 0,%1,0\n" |
359 | "isync\n" | 370 | "isync\n" |
@@ -372,7 +383,7 @@ static inline unsigned long in_be64(const volatile unsigned long __iomem *addr) | |||
372 | { | 383 | { |
373 | unsigned long ret; | 384 | unsigned long ret; |
374 | 385 | ||
375 | __asm__ __volatile__("ld%U1%X1 %0,%1; twi 0,%0,0; isync" | 386 | __asm__ __volatile__("sync; ld%U1%X1 %0,%1; twi 0,%0,0; isync" |
376 | : "=r" (ret) : "m" (*addr)); | 387 | : "=r" (ret) : "m" (*addr)); |
377 | return ret; | 388 | return ret; |
378 | } | 389 | } |
@@ -389,14 +400,16 @@ static inline void out_le64(volatile unsigned long __iomem *addr, unsigned long | |||
389 | "rldicl %1,%1,32,0\n" | 400 | "rldicl %1,%1,32,0\n" |
390 | "rlwimi %0,%1,8,8,31\n" | 401 | "rlwimi %0,%1,8,8,31\n" |
391 | "rlwimi %0,%1,24,16,23\n" | 402 | "rlwimi %0,%1,24,16,23\n" |
392 | "std %0,0(%3)\n" | 403 | "sync\n" |
393 | "sync" | 404 | "std %0,0(%3)" |
394 | : "=&r" (tmp) , "=&r" (val) : "1" (val) , "b" (addr) , "m" (*addr)); | 405 | : "=&r" (tmp) , "=&r" (val) : "1" (val) , "b" (addr) , "m" (*addr)); |
406 | get_paca()->io_sync = 1; | ||
395 | } | 407 | } |
396 | 408 | ||
397 | static inline void out_be64(volatile unsigned long __iomem *addr, unsigned long val) | 409 | static inline void out_be64(volatile unsigned long __iomem *addr, unsigned long val) |
398 | { | 410 | { |
399 | __asm__ __volatile__("std%U0%X0 %1,%0; sync" : "=m" (*addr) : "r" (val)); | 411 | __asm__ __volatile__("sync; std%U0%X0 %1,%0" : "=m" (*addr) : "r" (val)); |
412 | get_paca()->io_sync = 1; | ||
400 | } | 413 | } |
401 | 414 | ||
402 | #ifndef CONFIG_PPC_ISERIES | 415 | #ifndef CONFIG_PPC_ISERIES |
diff --git a/include/asm-powerpc/kdump.h b/include/asm-powerpc/kdump.h index dc1574c945f8..10e8eb1e6f4f 100644 --- a/include/asm-powerpc/kdump.h +++ b/include/asm-powerpc/kdump.h | |||
@@ -7,7 +7,7 @@ | |||
7 | /* How many bytes to reserve at zero for kdump. The reserve limit should | 7 | /* How many bytes to reserve at zero for kdump. The reserve limit should |
8 | * be greater or equal to the trampoline's end address. | 8 | * be greater or equal to the trampoline's end address. |
9 | * Reserve to the end of the FWNMI area, see head_64.S */ | 9 | * Reserve to the end of the FWNMI area, see head_64.S */ |
10 | #define KDUMP_RESERVE_LIMIT 0x8000 | 10 | #define KDUMP_RESERVE_LIMIT 0x10000 /* 64K */ |
11 | 11 | ||
12 | #ifdef CONFIG_CRASH_DUMP | 12 | #ifdef CONFIG_CRASH_DUMP |
13 | 13 | ||
diff --git a/include/asm-powerpc/paca.h b/include/asm-powerpc/paca.h index 2d4585f06209..3d5d590bc4b0 100644 --- a/include/asm-powerpc/paca.h +++ b/include/asm-powerpc/paca.h | |||
@@ -93,6 +93,7 @@ struct paca_struct { | |||
93 | u64 saved_r1; /* r1 save for RTAS calls */ | 93 | u64 saved_r1; /* r1 save for RTAS calls */ |
94 | u64 saved_msr; /* MSR saved here by enter_rtas */ | 94 | u64 saved_msr; /* MSR saved here by enter_rtas */ |
95 | u8 proc_enabled; /* irq soft-enable flag */ | 95 | u8 proc_enabled; /* irq soft-enable flag */ |
96 | u8 io_sync; /* writel() needs spin_unlock sync */ | ||
96 | 97 | ||
97 | /* Stuff for accurate time accounting */ | 98 | /* Stuff for accurate time accounting */ |
98 | u64 user_time; /* accumulated usermode TB ticks */ | 99 | u64 user_time; /* accumulated usermode TB ticks */ |
diff --git a/include/asm-powerpc/spinlock.h b/include/asm-powerpc/spinlock.h index 895cb6d3a42a..c31e4382a775 100644 --- a/include/asm-powerpc/spinlock.h +++ b/include/asm-powerpc/spinlock.h | |||
@@ -36,6 +36,19 @@ | |||
36 | #define LOCK_TOKEN 1 | 36 | #define LOCK_TOKEN 1 |
37 | #endif | 37 | #endif |
38 | 38 | ||
39 | #if defined(CONFIG_PPC64) && defined(CONFIG_SMP) | ||
40 | #define CLEAR_IO_SYNC (get_paca()->io_sync = 0) | ||
41 | #define SYNC_IO do { \ | ||
42 | if (unlikely(get_paca()->io_sync)) { \ | ||
43 | mb(); \ | ||
44 | get_paca()->io_sync = 0; \ | ||
45 | } \ | ||
46 | } while (0) | ||
47 | #else | ||
48 | #define CLEAR_IO_SYNC | ||
49 | #define SYNC_IO | ||
50 | #endif | ||
51 | |||
39 | /* | 52 | /* |
40 | * This returns the old value in the lock, so we succeeded | 53 | * This returns the old value in the lock, so we succeeded |
41 | * in getting the lock if the return value is 0. | 54 | * in getting the lock if the return value is 0. |
@@ -61,6 +74,7 @@ static __inline__ unsigned long __spin_trylock(raw_spinlock_t *lock) | |||
61 | 74 | ||
62 | static int __inline__ __raw_spin_trylock(raw_spinlock_t *lock) | 75 | static int __inline__ __raw_spin_trylock(raw_spinlock_t *lock) |
63 | { | 76 | { |
77 | CLEAR_IO_SYNC; | ||
64 | return __spin_trylock(lock) == 0; | 78 | return __spin_trylock(lock) == 0; |
65 | } | 79 | } |
66 | 80 | ||
@@ -91,6 +105,7 @@ extern void __rw_yield(raw_rwlock_t *lock); | |||
91 | 105 | ||
92 | static void __inline__ __raw_spin_lock(raw_spinlock_t *lock) | 106 | static void __inline__ __raw_spin_lock(raw_spinlock_t *lock) |
93 | { | 107 | { |
108 | CLEAR_IO_SYNC; | ||
94 | while (1) { | 109 | while (1) { |
95 | if (likely(__spin_trylock(lock) == 0)) | 110 | if (likely(__spin_trylock(lock) == 0)) |
96 | break; | 111 | break; |
@@ -107,6 +122,7 @@ static void __inline__ __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long | |||
107 | { | 122 | { |
108 | unsigned long flags_dis; | 123 | unsigned long flags_dis; |
109 | 124 | ||
125 | CLEAR_IO_SYNC; | ||
110 | while (1) { | 126 | while (1) { |
111 | if (likely(__spin_trylock(lock) == 0)) | 127 | if (likely(__spin_trylock(lock) == 0)) |
112 | break; | 128 | break; |
@@ -124,6 +140,7 @@ static void __inline__ __raw_spin_lock_flags(raw_spinlock_t *lock, unsigned long | |||
124 | 140 | ||
125 | static __inline__ void __raw_spin_unlock(raw_spinlock_t *lock) | 141 | static __inline__ void __raw_spin_unlock(raw_spinlock_t *lock) |
126 | { | 142 | { |
143 | SYNC_IO; | ||
127 | __asm__ __volatile__("# __raw_spin_unlock\n\t" | 144 | __asm__ __volatile__("# __raw_spin_unlock\n\t" |
128 | LWSYNC_ON_SMP: : :"memory"); | 145 | LWSYNC_ON_SMP: : :"memory"); |
129 | lock->slock = 0; | 146 | lock->slock = 0; |
diff --git a/include/asm-ppc/io.h b/include/asm-ppc/io.h index 89c6f1bc3aab..680555be22ec 100644 --- a/include/asm-ppc/io.h +++ b/include/asm-ppc/io.h | |||
@@ -63,7 +63,7 @@ extern inline int in_8(const volatile unsigned char __iomem *addr) | |||
63 | int ret; | 63 | int ret; |
64 | 64 | ||
65 | __asm__ __volatile__( | 65 | __asm__ __volatile__( |
66 | "lbz%U1%X1 %0,%1;\n" | 66 | "sync; lbz%U1%X1 %0,%1;\n" |
67 | "twi 0,%0,0;\n" | 67 | "twi 0,%0,0;\n" |
68 | "isync" : "=r" (ret) : "m" (*addr)); | 68 | "isync" : "=r" (ret) : "m" (*addr)); |
69 | return ret; | 69 | return ret; |
@@ -78,7 +78,7 @@ extern inline int in_le16(const volatile unsigned short __iomem *addr) | |||
78 | { | 78 | { |
79 | int ret; | 79 | int ret; |
80 | 80 | ||
81 | __asm__ __volatile__("lhbrx %0,0,%1;\n" | 81 | __asm__ __volatile__("sync; lhbrx %0,0,%1;\n" |
82 | "twi 0,%0,0;\n" | 82 | "twi 0,%0,0;\n" |
83 | "isync" : "=r" (ret) : | 83 | "isync" : "=r" (ret) : |
84 | "r" (addr), "m" (*addr)); | 84 | "r" (addr), "m" (*addr)); |
@@ -89,7 +89,7 @@ extern inline int in_be16(const volatile unsigned short __iomem *addr) | |||
89 | { | 89 | { |
90 | int ret; | 90 | int ret; |
91 | 91 | ||
92 | __asm__ __volatile__("lhz%U1%X1 %0,%1;\n" | 92 | __asm__ __volatile__("sync; lhz%U1%X1 %0,%1;\n" |
93 | "twi 0,%0,0;\n" | 93 | "twi 0,%0,0;\n" |
94 | "isync" : "=r" (ret) : "m" (*addr)); | 94 | "isync" : "=r" (ret) : "m" (*addr)); |
95 | return ret; | 95 | return ret; |
@@ -97,20 +97,20 @@ extern inline int in_be16(const volatile unsigned short __iomem *addr) | |||
97 | 97 | ||
98 | extern inline void out_le16(volatile unsigned short __iomem *addr, int val) | 98 | extern inline void out_le16(volatile unsigned short __iomem *addr, int val) |
99 | { | 99 | { |
100 | __asm__ __volatile__("sthbrx %1,0,%2; eieio" : "=m" (*addr) : | 100 | __asm__ __volatile__("sync; sthbrx %1,0,%2" : "=m" (*addr) : |
101 | "r" (val), "r" (addr)); | 101 | "r" (val), "r" (addr)); |
102 | } | 102 | } |
103 | 103 | ||
104 | extern inline void out_be16(volatile unsigned short __iomem *addr, int val) | 104 | extern inline void out_be16(volatile unsigned short __iomem *addr, int val) |
105 | { | 105 | { |
106 | __asm__ __volatile__("sth%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val)); | 106 | __asm__ __volatile__("sync; sth%U0%X0 %1,%0" : "=m" (*addr) : "r" (val)); |
107 | } | 107 | } |
108 | 108 | ||
109 | extern inline unsigned in_le32(const volatile unsigned __iomem *addr) | 109 | extern inline unsigned in_le32(const volatile unsigned __iomem *addr) |
110 | { | 110 | { |
111 | unsigned ret; | 111 | unsigned ret; |
112 | 112 | ||
113 | __asm__ __volatile__("lwbrx %0,0,%1;\n" | 113 | __asm__ __volatile__("sync; lwbrx %0,0,%1;\n" |
114 | "twi 0,%0,0;\n" | 114 | "twi 0,%0,0;\n" |
115 | "isync" : "=r" (ret) : | 115 | "isync" : "=r" (ret) : |
116 | "r" (addr), "m" (*addr)); | 116 | "r" (addr), "m" (*addr)); |
@@ -121,7 +121,7 @@ extern inline unsigned in_be32(const volatile unsigned __iomem *addr) | |||
121 | { | 121 | { |
122 | unsigned ret; | 122 | unsigned ret; |
123 | 123 | ||
124 | __asm__ __volatile__("lwz%U1%X1 %0,%1;\n" | 124 | __asm__ __volatile__("sync; lwz%U1%X1 %0,%1;\n" |
125 | "twi 0,%0,0;\n" | 125 | "twi 0,%0,0;\n" |
126 | "isync" : "=r" (ret) : "m" (*addr)); | 126 | "isync" : "=r" (ret) : "m" (*addr)); |
127 | return ret; | 127 | return ret; |
@@ -129,13 +129,13 @@ extern inline unsigned in_be32(const volatile unsigned __iomem *addr) | |||
129 | 129 | ||
130 | extern inline void out_le32(volatile unsigned __iomem *addr, int val) | 130 | extern inline void out_le32(volatile unsigned __iomem *addr, int val) |
131 | { | 131 | { |
132 | __asm__ __volatile__("stwbrx %1,0,%2; eieio" : "=m" (*addr) : | 132 | __asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr) : |
133 | "r" (val), "r" (addr)); | 133 | "r" (val), "r" (addr)); |
134 | } | 134 | } |
135 | 135 | ||
136 | extern inline void out_be32(volatile unsigned __iomem *addr, int val) | 136 | extern inline void out_be32(volatile unsigned __iomem *addr, int val) |
137 | { | 137 | { |
138 | __asm__ __volatile__("stw%U0%X0 %1,%0; eieio" : "=m" (*addr) : "r" (val)); | 138 | __asm__ __volatile__("sync; stw%U0%X0 %1,%0" : "=m" (*addr) : "r" (val)); |
139 | } | 139 | } |
140 | #if defined (CONFIG_8260_PCI9) | 140 | #if defined (CONFIG_8260_PCI9) |
141 | #define readb(addr) in_8((volatile u8 *)(addr)) | 141 | #define readb(addr) in_8((volatile u8 *)(addr)) |
@@ -259,6 +259,7 @@ extern __inline__ unsigned int name(unsigned int port) \ | |||
259 | { \ | 259 | { \ |
260 | unsigned int x; \ | 260 | unsigned int x; \ |
261 | __asm__ __volatile__( \ | 261 | __asm__ __volatile__( \ |
262 | "sync\n" \ | ||
262 | "0:" op " %0,0,%1\n" \ | 263 | "0:" op " %0,0,%1\n" \ |
263 | "1: twi 0,%0,0\n" \ | 264 | "1: twi 0,%0,0\n" \ |
264 | "2: isync\n" \ | 265 | "2: isync\n" \ |
@@ -284,6 +285,7 @@ extern __inline__ unsigned int name(unsigned int port) \ | |||
284 | extern __inline__ void name(unsigned int val, unsigned int port) \ | 285 | extern __inline__ void name(unsigned int val, unsigned int port) \ |
285 | { \ | 286 | { \ |
286 | __asm__ __volatile__( \ | 287 | __asm__ __volatile__( \ |
288 | "sync\n" \ | ||
287 | "0:" op " %0,0,%1\n" \ | 289 | "0:" op " %0,0,%1\n" \ |
288 | "1: sync\n" \ | 290 | "1: sync\n" \ |
289 | "2:\n" \ | 291 | "2:\n" \ |
diff --git a/include/asm-s390/debug.h b/include/asm-s390/debug.h index 7f1ef99fd1e1..c00dd2b3dc50 100644 --- a/include/asm-s390/debug.h +++ b/include/asm-s390/debug.h | |||
@@ -10,7 +10,6 @@ | |||
10 | #define DEBUG_H | 10 | #define DEBUG_H |
11 | 11 | ||
12 | #include <linux/fs.h> | 12 | #include <linux/fs.h> |
13 | #include <linux/string.h> | ||
14 | 13 | ||
15 | /* Note: | 14 | /* Note: |
16 | * struct __debug_entry must be defined outside of #ifdef __KERNEL__ | 15 | * struct __debug_entry must be defined outside of #ifdef __KERNEL__ |
@@ -35,6 +34,7 @@ struct __debug_entry{ | |||
35 | #define __DEBUG_FEATURE_VERSION 2 /* version of debug feature */ | 34 | #define __DEBUG_FEATURE_VERSION 2 /* version of debug feature */ |
36 | 35 | ||
37 | #ifdef __KERNEL__ | 36 | #ifdef __KERNEL__ |
37 | #include <linux/string.h> | ||
38 | #include <linux/spinlock.h> | 38 | #include <linux/spinlock.h> |
39 | #include <linux/kernel.h> | 39 | #include <linux/kernel.h> |
40 | #include <linux/time.h> | 40 | #include <linux/time.h> |
diff --git a/include/asm-s390/elf.h b/include/asm-s390/elf.h index 710646e64f7d..c0d629d61d3e 100644 --- a/include/asm-s390/elf.h +++ b/include/asm-s390/elf.h | |||
@@ -93,19 +93,6 @@ | |||
93 | #define R_390_NUM 61 | 93 | #define R_390_NUM 61 |
94 | 94 | ||
95 | /* | 95 | /* |
96 | * ELF register definitions.. | ||
97 | */ | ||
98 | |||
99 | #include <linux/sched.h> /* for task_struct */ | ||
100 | #include <asm/ptrace.h> | ||
101 | #include <asm/user.h> | ||
102 | #include <asm/system.h> /* for save_access_regs */ | ||
103 | |||
104 | |||
105 | typedef s390_fp_regs elf_fpregset_t; | ||
106 | typedef s390_regs elf_gregset_t; | ||
107 | |||
108 | /* | ||
109 | * These are used to set parameters in the core dumps. | 96 | * These are used to set parameters in the core dumps. |
110 | */ | 97 | */ |
111 | #ifndef __s390x__ | 98 | #ifndef __s390x__ |
@@ -117,6 +104,20 @@ typedef s390_regs elf_gregset_t; | |||
117 | #define ELF_ARCH EM_S390 | 104 | #define ELF_ARCH EM_S390 |
118 | 105 | ||
119 | /* | 106 | /* |
107 | * ELF register definitions.. | ||
108 | */ | ||
109 | |||
110 | #include <asm/ptrace.h> | ||
111 | #include <asm/user.h> | ||
112 | |||
113 | typedef s390_fp_regs elf_fpregset_t; | ||
114 | typedef s390_regs elf_gregset_t; | ||
115 | |||
116 | #ifdef __KERNEL__ | ||
117 | #include <linux/sched.h> /* for task_struct */ | ||
118 | #include <asm/system.h> /* for save_access_regs */ | ||
119 | |||
120 | /* | ||
120 | * This is used to ensure we don't load something for the wrong architecture. | 121 | * This is used to ensure we don't load something for the wrong architecture. |
121 | */ | 122 | */ |
122 | #define elf_check_arch(x) \ | 123 | #define elf_check_arch(x) \ |
@@ -198,7 +199,6 @@ static inline int dump_task_fpu(struct task_struct *tsk, elf_fpregset_t *fpregs) | |||
198 | 199 | ||
199 | #define ELF_PLATFORM (NULL) | 200 | #define ELF_PLATFORM (NULL) |
200 | 201 | ||
201 | #ifdef __KERNEL__ | ||
202 | #ifndef __s390x__ | 202 | #ifndef __s390x__ |
203 | #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX) | 203 | #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX) |
204 | #else /* __s390x__ */ | 204 | #else /* __s390x__ */ |
diff --git a/include/asm-x86_64/elf.h b/include/asm-x86_64/elf.h index b4f8f4a41a6e..a406fcb1e924 100644 --- a/include/asm-x86_64/elf.h +++ b/include/asm-x86_64/elf.h | |||
@@ -7,8 +7,6 @@ | |||
7 | 7 | ||
8 | #include <asm/ptrace.h> | 8 | #include <asm/ptrace.h> |
9 | #include <asm/user.h> | 9 | #include <asm/user.h> |
10 | #include <asm/processor.h> | ||
11 | #include <asm/compat.h> | ||
12 | 10 | ||
13 | /* x86-64 relocation types */ | 11 | /* x86-64 relocation types */ |
14 | #define R_X86_64_NONE 0 /* No reloc */ | 12 | #define R_X86_64_NONE 0 /* No reloc */ |
@@ -39,18 +37,23 @@ typedef elf_greg_t elf_gregset_t[ELF_NGREG]; | |||
39 | typedef struct user_i387_struct elf_fpregset_t; | 37 | typedef struct user_i387_struct elf_fpregset_t; |
40 | 38 | ||
41 | /* | 39 | /* |
42 | * This is used to ensure we don't load something for the wrong architecture. | ||
43 | */ | ||
44 | #define elf_check_arch(x) \ | ||
45 | ((x)->e_machine == EM_X86_64) | ||
46 | |||
47 | /* | ||
48 | * These are used to set parameters in the core dumps. | 40 | * These are used to set parameters in the core dumps. |
49 | */ | 41 | */ |
50 | #define ELF_CLASS ELFCLASS64 | 42 | #define ELF_CLASS ELFCLASS64 |
51 | #define ELF_DATA ELFDATA2LSB | 43 | #define ELF_DATA ELFDATA2LSB |
52 | #define ELF_ARCH EM_X86_64 | 44 | #define ELF_ARCH EM_X86_64 |
53 | 45 | ||
46 | #ifdef __KERNEL__ | ||
47 | #include <asm/processor.h> | ||
48 | #include <asm/compat.h> | ||
49 | |||
50 | /* | ||
51 | * This is used to ensure we don't load something for the wrong architecture. | ||
52 | */ | ||
53 | #define elf_check_arch(x) \ | ||
54 | ((x)->e_machine == EM_X86_64) | ||
55 | |||
56 | |||
54 | /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx | 57 | /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx |
55 | contains a pointer to a function which might be registered using `atexit'. | 58 | contains a pointer to a function which might be registered using `atexit'. |
56 | This provides a mean for the dynamic linker to call DT_FINI functions for | 59 | This provides a mean for the dynamic linker to call DT_FINI functions for |
@@ -141,7 +144,6 @@ typedef struct user_i387_struct elf_fpregset_t; | |||
141 | /* I'm not sure if we can use '-' here */ | 144 | /* I'm not sure if we can use '-' here */ |
142 | #define ELF_PLATFORM ("x86_64") | 145 | #define ELF_PLATFORM ("x86_64") |
143 | 146 | ||
144 | #ifdef __KERNEL__ | ||
145 | extern void set_personality_64bit(void); | 147 | extern void set_personality_64bit(void); |
146 | #define SET_PERSONALITY(ex, ibcs2) set_personality_64bit() | 148 | #define SET_PERSONALITY(ex, ibcs2) set_personality_64bit() |
147 | /* | 149 | /* |
diff --git a/include/asm-x86_64/signal.h b/include/asm-x86_64/signal.h index cef7a7d51b7e..3ede2a61973a 100644 --- a/include/asm-x86_64/signal.h +++ b/include/asm-x86_64/signal.h | |||
@@ -3,13 +3,13 @@ | |||
3 | 3 | ||
4 | #ifndef __ASSEMBLY__ | 4 | #ifndef __ASSEMBLY__ |
5 | #include <linux/types.h> | 5 | #include <linux/types.h> |
6 | #include <linux/linkage.h> | ||
7 | #include <linux/time.h> | 6 | #include <linux/time.h> |
8 | 7 | ||
9 | /* Avoid too many header ordering problems. */ | 8 | /* Avoid too many header ordering problems. */ |
10 | struct siginfo; | 9 | struct siginfo; |
11 | 10 | ||
12 | #ifdef __KERNEL__ | 11 | #ifdef __KERNEL__ |
12 | #include <linux/linkage.h> | ||
13 | /* Most things should be clean enough to redefine this at will, if care | 13 | /* Most things should be clean enough to redefine this at will, if care |
14 | is taken to make libc match. */ | 14 | is taken to make libc match. */ |
15 | 15 | ||
diff --git a/include/asm-x86_64/unistd.h b/include/asm-x86_64/unistd.h index 2d89d309a2a8..80fd48e84bbb 100644 --- a/include/asm-x86_64/unistd.h +++ b/include/asm-x86_64/unistd.h | |||
@@ -620,6 +620,8 @@ __SYSCALL(__NR_vmsplice, sys_vmsplice) | |||
620 | #define __NR_move_pages 279 | 620 | #define __NR_move_pages 279 |
621 | __SYSCALL(__NR_move_pages, sys_move_pages) | 621 | __SYSCALL(__NR_move_pages, sys_move_pages) |
622 | 622 | ||
623 | #ifdef __KERNEL__ | ||
624 | |||
623 | #define __NR_syscall_max __NR_move_pages | 625 | #define __NR_syscall_max __NR_move_pages |
624 | 626 | ||
625 | #ifndef __NO_STUBS | 627 | #ifndef __NO_STUBS |
@@ -744,8 +746,6 @@ __syscall_return(type,__res); \ | |||
744 | 746 | ||
745 | #else /* __KERNEL_SYSCALLS__ */ | 747 | #else /* __KERNEL_SYSCALLS__ */ |
746 | 748 | ||
747 | #ifdef __KERNEL__ | ||
748 | |||
749 | #include <linux/syscalls.h> | 749 | #include <linux/syscalls.h> |
750 | #include <asm/ptrace.h> | 750 | #include <asm/ptrace.h> |
751 | 751 | ||
@@ -821,8 +821,6 @@ asmlinkage long sys_fork(struct pt_regs regs); | |||
821 | asmlinkage long sys_vfork(struct pt_regs regs); | 821 | asmlinkage long sys_vfork(struct pt_regs regs); |
822 | asmlinkage long sys_pipe(int *fildes); | 822 | asmlinkage long sys_pipe(int *fildes); |
823 | 823 | ||
824 | #endif /* __KERNEL_SYSCALLS__ */ | ||
825 | |||
826 | #ifndef __ASSEMBLY__ | 824 | #ifndef __ASSEMBLY__ |
827 | 825 | ||
828 | #include <linux/linkage.h> | 826 | #include <linux/linkage.h> |
@@ -838,9 +836,9 @@ asmlinkage long sys_rt_sigaction(int sig, | |||
838 | struct sigaction __user *oact, | 836 | struct sigaction __user *oact, |
839 | size_t sigsetsize); | 837 | size_t sigsetsize); |
840 | 838 | ||
841 | #endif | 839 | #endif /* __ASSEMBLY__ */ |
842 | 840 | ||
843 | #endif | 841 | #endif /* __KERNEL_SYSCALLS__ */ |
844 | 842 | ||
845 | /* | 843 | /* |
846 | * "Conditional" syscalls | 844 | * "Conditional" syscalls |
@@ -850,6 +848,8 @@ asmlinkage long sys_rt_sigaction(int sig, | |||
850 | */ | 848 | */ |
851 | #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall") | 849 | #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall") |
852 | 850 | ||
853 | #endif | 851 | #endif /* __NO_STUBS */ |
854 | 852 | ||
855 | #endif | 853 | #endif /* __KERNEL__ */ |
854 | |||
855 | #endif /* _ASM_X86_64_UNISTD_H_ */ | ||
diff --git a/include/asm-x86_64/vsyscall.h b/include/asm-x86_64/vsyscall.h index a85e16f56d73..146b24402a5f 100644 --- a/include/asm-x86_64/vsyscall.h +++ b/include/asm-x86_64/vsyscall.h | |||
@@ -1,8 +1,6 @@ | |||
1 | #ifndef _ASM_X86_64_VSYSCALL_H_ | 1 | #ifndef _ASM_X86_64_VSYSCALL_H_ |
2 | #define _ASM_X86_64_VSYSCALL_H_ | 2 | #define _ASM_X86_64_VSYSCALL_H_ |
3 | 3 | ||
4 | #include <linux/seqlock.h> | ||
5 | |||
6 | enum vsyscall_num { | 4 | enum vsyscall_num { |
7 | __NR_vgettimeofday, | 5 | __NR_vgettimeofday, |
8 | __NR_vtime, | 6 | __NR_vtime, |
@@ -14,6 +12,7 @@ enum vsyscall_num { | |||
14 | #define VSYSCALL_ADDR(vsyscall_nr) (VSYSCALL_START+VSYSCALL_SIZE*(vsyscall_nr)) | 12 | #define VSYSCALL_ADDR(vsyscall_nr) (VSYSCALL_START+VSYSCALL_SIZE*(vsyscall_nr)) |
15 | 13 | ||
16 | #ifdef __KERNEL__ | 14 | #ifdef __KERNEL__ |
15 | #include <linux/seqlock.h> | ||
17 | 16 | ||
18 | #define __section_vxtime __attribute__ ((unused, __section__ (".vxtime"), aligned(16))) | 17 | #define __section_vxtime __attribute__ ((unused, __section__ (".vxtime"), aligned(16))) |
19 | #define __section_wall_jiffies __attribute__ ((unused, __section__ (".wall_jiffies"), aligned(16))) | 18 | #define __section_wall_jiffies __attribute__ ((unused, __section__ (".wall_jiffies"), aligned(16))) |
diff --git a/include/linux/netfilter/Kbuild b/include/linux/netfilter/Kbuild index d06311acd448..1d3a14e2da6e 100644 --- a/include/linux/netfilter/Kbuild +++ b/include/linux/netfilter/Kbuild | |||
@@ -5,7 +5,7 @@ header-y := nf_conntrack_sctp.h nf_conntrack_tuple_common.h \ | |||
5 | xt_helper.h xt_length.h xt_limit.h xt_mac.h xt_mark.h \ | 5 | xt_helper.h xt_length.h xt_limit.h xt_mac.h xt_mark.h \ |
6 | xt_MARK.h xt_multiport.h xt_NFQUEUE.h xt_pkttype.h \ | 6 | xt_MARK.h xt_multiport.h xt_NFQUEUE.h xt_pkttype.h \ |
7 | xt_policy.h xt_realm.h xt_sctp.h xt_state.h xt_string.h \ | 7 | xt_policy.h xt_realm.h xt_sctp.h xt_state.h xt_string.h \ |
8 | xt_tcpmss.h xt_tcpudp.h | 8 | xt_tcpmss.h xt_tcpudp.h xt_SECMARK.h xt_CONNSECMARK.h |
9 | 9 | ||
10 | unifdef-y := nf_conntrack_common.h nf_conntrack_ftp.h \ | 10 | unifdef-y := nf_conntrack_common.h nf_conntrack_ftp.h \ |
11 | nf_conntrack_tcp.h nfnetlink.h x_tables.h xt_physdev.h | 11 | nf_conntrack_tcp.h nfnetlink.h x_tables.h xt_physdev.h |
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index 530b1e6173b1..6c2066caeaab 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
@@ -9,27 +9,6 @@ | |||
9 | #ifndef _LINUX_NFS_FS_H | 9 | #ifndef _LINUX_NFS_FS_H |
10 | #define _LINUX_NFS_FS_H | 10 | #define _LINUX_NFS_FS_H |
11 | 11 | ||
12 | #include <linux/in.h> | ||
13 | #include <linux/mm.h> | ||
14 | #include <linux/pagemap.h> | ||
15 | #include <linux/rwsem.h> | ||
16 | #include <linux/wait.h> | ||
17 | |||
18 | #include <linux/sunrpc/debug.h> | ||
19 | #include <linux/sunrpc/auth.h> | ||
20 | #include <linux/sunrpc/clnt.h> | ||
21 | |||
22 | #include <linux/nfs.h> | ||
23 | #include <linux/nfs2.h> | ||
24 | #include <linux/nfs3.h> | ||
25 | #include <linux/nfs4.h> | ||
26 | #include <linux/nfs_xdr.h> | ||
27 | |||
28 | #include <linux/nfs_fs_sb.h> | ||
29 | |||
30 | #include <linux/rwsem.h> | ||
31 | #include <linux/mempool.h> | ||
32 | |||
33 | /* | 12 | /* |
34 | * Enable debugging support for nfs client. | 13 | * Enable debugging support for nfs client. |
35 | * Requires RPC_DEBUG. | 14 | * Requires RPC_DEBUG. |
@@ -48,11 +27,6 @@ | |||
48 | #define NFS_SUPER_MAGIC 0x6969 | 27 | #define NFS_SUPER_MAGIC 0x6969 |
49 | 28 | ||
50 | /* | 29 | /* |
51 | * These are the default flags for swap requests | ||
52 | */ | ||
53 | #define NFS_RPC_SWAPFLAGS (RPC_TASK_SWAPPER|RPC_TASK_ROOTCREDS) | ||
54 | |||
55 | /* | ||
56 | * When flushing a cluster of dirty pages, there can be different | 30 | * When flushing a cluster of dirty pages, there can be different |
57 | * strategies: | 31 | * strategies: |
58 | */ | 32 | */ |
@@ -65,6 +39,32 @@ | |||
65 | 39 | ||
66 | #ifdef __KERNEL__ | 40 | #ifdef __KERNEL__ |
67 | 41 | ||
42 | #include <linux/in.h> | ||
43 | #include <linux/mm.h> | ||
44 | #include <linux/pagemap.h> | ||
45 | #include <linux/rwsem.h> | ||
46 | #include <linux/wait.h> | ||
47 | |||
48 | #include <linux/sunrpc/debug.h> | ||
49 | #include <linux/sunrpc/auth.h> | ||
50 | #include <linux/sunrpc/clnt.h> | ||
51 | |||
52 | #include <linux/nfs.h> | ||
53 | #include <linux/nfs2.h> | ||
54 | #include <linux/nfs3.h> | ||
55 | #include <linux/nfs4.h> | ||
56 | #include <linux/nfs_xdr.h> | ||
57 | |||
58 | #include <linux/nfs_fs_sb.h> | ||
59 | |||
60 | #include <linux/rwsem.h> | ||
61 | #include <linux/mempool.h> | ||
62 | |||
63 | /* | ||
64 | * These are the default flags for swap requests | ||
65 | */ | ||
66 | #define NFS_RPC_SWAPFLAGS (RPC_TASK_SWAPPER|RPC_TASK_ROOTCREDS) | ||
67 | |||
68 | /* | 68 | /* |
69 | * NFSv3/v4 Access mode cache entry | 69 | * NFSv3/v4 Access mode cache entry |
70 | */ | 70 | */ |
diff --git a/include/linux/timex.h b/include/linux/timex.h index 19bb6538b49e..d543d3871e38 100644 --- a/include/linux/timex.h +++ b/include/linux/timex.h | |||
@@ -57,7 +57,6 @@ | |||
57 | #include <linux/time.h> | 57 | #include <linux/time.h> |
58 | 58 | ||
59 | #include <asm/param.h> | 59 | #include <asm/param.h> |
60 | #include <asm/timex.h> | ||
61 | 60 | ||
62 | /* | 61 | /* |
63 | * SHIFT_KG and SHIFT_KF establish the damping of the PLL and are chosen | 62 | * SHIFT_KG and SHIFT_KF establish the damping of the PLL and are chosen |
@@ -191,6 +190,8 @@ struct timex { | |||
191 | #define TIME_BAD TIME_ERROR /* bw compat */ | 190 | #define TIME_BAD TIME_ERROR /* bw compat */ |
192 | 191 | ||
193 | #ifdef __KERNEL__ | 192 | #ifdef __KERNEL__ |
193 | #include <asm/timex.h> | ||
194 | |||
194 | /* | 195 | /* |
195 | * kernel variables | 196 | * kernel variables |
196 | * Note: maximum error = NTP synch distance = dispersion + delay / 2; | 197 | * Note: maximum error = NTP synch distance = dispersion + delay / 2; |
diff --git a/init/Kconfig b/init/Kconfig index a099fc6526d9..9a7656f0b5ec 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -182,23 +182,6 @@ config TASK_DELAY_ACCT | |||
182 | 182 | ||
183 | Say N if unsure. | 183 | Say N if unsure. |
184 | 184 | ||
185 | config SYSCTL | ||
186 | bool "Sysctl support" if EMBEDDED | ||
187 | default y | ||
188 | ---help--- | ||
189 | The sysctl interface provides a means of dynamically changing | ||
190 | certain kernel parameters and variables on the fly without requiring | ||
191 | a recompile of the kernel or reboot of the system. The primary | ||
192 | interface consists of a system call, but if you say Y to "/proc | ||
193 | file system support", a tree of modifiable sysctl entries will be | ||
194 | generated beneath the /proc/sys directory. They are explained in the | ||
195 | files in <file:Documentation/sysctl/>. Note that enabling this | ||
196 | option will enlarge the kernel by at least 8 KB. | ||
197 | |||
198 | As it is generally a good thing, you should say Y here unless | ||
199 | building a kernel for install/rescue disks or your system is very | ||
200 | limited in memory. | ||
201 | |||
202 | config AUDIT | 185 | config AUDIT |
203 | bool "Auditing support" | 186 | bool "Auditing support" |
204 | depends on NET | 187 | depends on NET |
@@ -261,13 +244,6 @@ config RELAY | |||
261 | 244 | ||
262 | source "usr/Kconfig" | 245 | source "usr/Kconfig" |
263 | 246 | ||
264 | config UID16 | ||
265 | bool "Enable 16-bit UID system calls" if EMBEDDED | ||
266 | depends on ARM || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && SPARC32_COMPAT) || UML || (X86_64 && IA32_EMULATION) | ||
267 | default y | ||
268 | help | ||
269 | This enables the legacy 16-bit UID syscall wrappers. | ||
270 | |||
271 | config CC_OPTIMIZE_FOR_SIZE | 247 | config CC_OPTIMIZE_FOR_SIZE |
272 | bool "Optimize for size (Look out for broken compilers!)" | 248 | bool "Optimize for size (Look out for broken compilers!)" |
273 | default y | 249 | default y |
@@ -289,6 +265,30 @@ menuconfig EMBEDDED | |||
289 | environments which can tolerate a "non-standard" kernel. | 265 | environments which can tolerate a "non-standard" kernel. |
290 | Only use this if you really know what you are doing. | 266 | Only use this if you really know what you are doing. |
291 | 267 | ||
268 | config UID16 | ||
269 | bool "Enable 16-bit UID system calls" if EMBEDDED | ||
270 | depends on ARM || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && SPARC32_COMPAT) || UML || (X86_64 && IA32_EMULATION) | ||
271 | default y | ||
272 | help | ||
273 | This enables the legacy 16-bit UID syscall wrappers. | ||
274 | |||
275 | config SYSCTL | ||
276 | bool "Sysctl support" if EMBEDDED | ||
277 | default y | ||
278 | ---help--- | ||
279 | The sysctl interface provides a means of dynamically changing | ||
280 | certain kernel parameters and variables on the fly without requiring | ||
281 | a recompile of the kernel or reboot of the system. The primary | ||
282 | interface consists of a system call, but if you say Y to "/proc | ||
283 | file system support", a tree of modifiable sysctl entries will be | ||
284 | generated beneath the /proc/sys directory. They are explained in the | ||
285 | files in <file:Documentation/sysctl/>. Note that enabling this | ||
286 | option will enlarge the kernel by at least 8 KB. | ||
287 | |||
288 | As it is generally a good thing, you should say Y here unless | ||
289 | building a kernel for install/rescue disks or your system is very | ||
290 | limited in memory. | ||
291 | |||
292 | config KALLSYMS | 292 | config KALLSYMS |
293 | bool "Load all symbols for debugging/kksymoops" if EMBEDDED | 293 | bool "Load all symbols for debugging/kksymoops" if EMBEDDED |
294 | default y | 294 | default y |
@@ -363,10 +363,6 @@ config BASE_FULL | |||
363 | kernel data structures. This saves memory on small machines, | 363 | kernel data structures. This saves memory on small machines, |
364 | but may reduce performance. | 364 | but may reduce performance. |
365 | 365 | ||
366 | config RT_MUTEXES | ||
367 | boolean | ||
368 | select PLIST | ||
369 | |||
370 | config FUTEX | 366 | config FUTEX |
371 | bool "Enable futex support" if EMBEDDED | 367 | bool "Enable futex support" if EMBEDDED |
372 | default y | 368 | default y |
@@ -414,6 +410,10 @@ config VM_EVENT_COUNTERS | |||
414 | 410 | ||
415 | endmenu # General setup | 411 | endmenu # General setup |
416 | 412 | ||
413 | config RT_MUTEXES | ||
414 | boolean | ||
415 | select PLIST | ||
416 | |||
417 | config TINY_SHMEM | 417 | config TINY_SHMEM |
418 | default !SHMEM | 418 | default !SHMEM |
419 | bool | 419 | bool |
diff --git a/kernel/irq/resend.c b/kernel/irq/resend.c index 872f91ba2ce8..35f10f7ff94a 100644 --- a/kernel/irq/resend.c +++ b/kernel/irq/resend.c | |||
@@ -63,8 +63,7 @@ void check_irq_resend(struct irq_desc *desc, unsigned int irq) | |||
63 | desc->chip->enable(irq); | 63 | desc->chip->enable(irq); |
64 | 64 | ||
65 | if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) { | 65 | if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) { |
66 | desc->status &= ~IRQ_PENDING; | 66 | desc->status = (status & ~IRQ_PENDING) | IRQ_REPLAY; |
67 | desc->status = status | IRQ_REPLAY; | ||
68 | 67 | ||
69 | if (!desc->chip || !desc->chip->retrigger || | 68 | if (!desc->chip || !desc->chip->retrigger || |
70 | !desc->chip->retrigger(irq)) { | 69 | !desc->chip->retrigger(irq)) { |
diff --git a/kernel/kmod.c b/kernel/kmod.c index 1d32defa38ab..5c470c57fb57 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c | |||
@@ -197,11 +197,12 @@ static void __call_usermodehelper(void *data) | |||
197 | { | 197 | { |
198 | struct subprocess_info *sub_info = data; | 198 | struct subprocess_info *sub_info = data; |
199 | pid_t pid; | 199 | pid_t pid; |
200 | int wait = sub_info->wait; | ||
200 | 201 | ||
201 | /* CLONE_VFORK: wait until the usermode helper has execve'd | 202 | /* CLONE_VFORK: wait until the usermode helper has execve'd |
202 | * successfully We need the data structures to stay around | 203 | * successfully We need the data structures to stay around |
203 | * until that is done. */ | 204 | * until that is done. */ |
204 | if (sub_info->wait) | 205 | if (wait) |
205 | pid = kernel_thread(wait_for_helper, sub_info, | 206 | pid = kernel_thread(wait_for_helper, sub_info, |
206 | CLONE_FS | CLONE_FILES | SIGCHLD); | 207 | CLONE_FS | CLONE_FILES | SIGCHLD); |
207 | else | 208 | else |
@@ -211,7 +212,7 @@ static void __call_usermodehelper(void *data) | |||
211 | if (pid < 0) { | 212 | if (pid < 0) { |
212 | sub_info->retval = pid; | 213 | sub_info->retval = pid; |
213 | complete(sub_info->complete); | 214 | complete(sub_info->complete); |
214 | } else if (!sub_info->wait) | 215 | } else if (!wait) |
215 | complete(sub_info->complete); | 216 | complete(sub_info->complete); |
216 | } | 217 | } |
217 | 218 | ||
diff --git a/kernel/lockdep_internals.h b/kernel/lockdep_internals.h index 0d355f24fe04..eab043c83bb2 100644 --- a/kernel/lockdep_internals.h +++ b/kernel/lockdep_internals.h | |||
@@ -27,7 +27,7 @@ | |||
27 | * Stack-trace: tightly packed array of stack backtrace | 27 | * Stack-trace: tightly packed array of stack backtrace |
28 | * addresses. Protected by the hash_lock. | 28 | * addresses. Protected by the hash_lock. |
29 | */ | 29 | */ |
30 | #define MAX_STACK_TRACE_ENTRIES 131072UL | 30 | #define MAX_STACK_TRACE_ENTRIES 262144UL |
31 | 31 | ||
32 | extern struct list_head all_lock_classes; | 32 | extern struct list_head all_lock_classes; |
33 | 33 | ||
diff --git a/kernel/rcupdate.c b/kernel/rcupdate.c index 436ab35f6fa7..523e46483b99 100644 --- a/kernel/rcupdate.c +++ b/kernel/rcupdate.c | |||
@@ -241,12 +241,16 @@ static void rcu_do_batch(struct rcu_data *rdp) | |||
241 | next = rdp->donelist = list->next; | 241 | next = rdp->donelist = list->next; |
242 | list->func(list); | 242 | list->func(list); |
243 | list = next; | 243 | list = next; |
244 | rdp->qlen--; | ||
245 | if (++count >= rdp->blimit) | 244 | if (++count >= rdp->blimit) |
246 | break; | 245 | break; |
247 | } | 246 | } |
247 | |||
248 | local_irq_disable(); | ||
249 | rdp->qlen -= count; | ||
250 | local_irq_enable(); | ||
248 | if (rdp->blimit == INT_MAX && rdp->qlen <= qlowmark) | 251 | if (rdp->blimit == INT_MAX && rdp->qlen <= qlowmark) |
249 | rdp->blimit = blimit; | 252 | rdp->blimit = blimit; |
253 | |||
250 | if (!rdp->donelist) | 254 | if (!rdp->donelist) |
251 | rdp->donetail = &rdp->donelist; | 255 | rdp->donetail = &rdp->donelist; |
252 | else | 256 | else |
diff --git a/net/Kconfig b/net/Kconfig index c6cec5aa5486..4959a4e1e0fe 100644 --- a/net/Kconfig +++ b/net/Kconfig | |||
@@ -177,7 +177,7 @@ source "net/lapb/Kconfig" | |||
177 | 177 | ||
178 | config NET_DIVERT | 178 | config NET_DIVERT |
179 | bool "Frame Diverter (EXPERIMENTAL)" | 179 | bool "Frame Diverter (EXPERIMENTAL)" |
180 | depends on EXPERIMENTAL | 180 | depends on EXPERIMENTAL && BROKEN |
181 | ---help--- | 181 | ---help--- |
182 | The Frame Diverter allows you to divert packets from the | 182 | The Frame Diverter allows you to divert packets from the |
183 | network, that are not aimed at the interface receiving it (in | 183 | network, that are not aimed at the interface receiving it (in |
diff --git a/net/atm/clip.c b/net/atm/clip.c index 7ce7bfe3fbad..7af2c411da82 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c | |||
@@ -500,9 +500,11 @@ static int clip_mkip(struct atm_vcc *vcc, int timeout) | |||
500 | } else { | 500 | } else { |
501 | unsigned int len = skb->len; | 501 | unsigned int len = skb->len; |
502 | 502 | ||
503 | skb_get(skb); | ||
503 | clip_push(vcc, skb); | 504 | clip_push(vcc, skb); |
504 | PRIV(skb->dev)->stats.rx_packets--; | 505 | PRIV(skb->dev)->stats.rx_packets--; |
505 | PRIV(skb->dev)->stats.rx_bytes -= len; | 506 | PRIV(skb->dev)->stats.rx_bytes -= len; |
507 | kfree_skb(skb); | ||
506 | } | 508 | } |
507 | return 0; | 509 | return 0; |
508 | } | 510 | } |
diff --git a/net/bridge/br_stp_bpdu.c b/net/bridge/br_stp_bpdu.c index a7ba0cce0b46..068d8afbf0a7 100644 --- a/net/bridge/br_stp_bpdu.c +++ b/net/bridge/br_stp_bpdu.c | |||
@@ -121,7 +121,7 @@ void br_send_tcn_bpdu(struct net_bridge_port *p) | |||
121 | buf[1] = 0; | 121 | buf[1] = 0; |
122 | buf[2] = 0; | 122 | buf[2] = 0; |
123 | buf[3] = BPDU_TYPE_TCN; | 123 | buf[3] = BPDU_TYPE_TCN; |
124 | br_send_bpdu(p, buf, 7); | 124 | br_send_bpdu(p, buf, 4); |
125 | } | 125 | } |
126 | 126 | ||
127 | /* | 127 | /* |
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 5130d2efdbbe..fe2113f54e2b 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
@@ -1432,6 +1432,9 @@ int neigh_table_clear(struct neigh_table *tbl) | |||
1432 | kfree(tbl->phash_buckets); | 1432 | kfree(tbl->phash_buckets); |
1433 | tbl->phash_buckets = NULL; | 1433 | tbl->phash_buckets = NULL; |
1434 | 1434 | ||
1435 | free_percpu(tbl->stats); | ||
1436 | tbl->stats = NULL; | ||
1437 | |||
1435 | return 0; | 1438 | return 0; |
1436 | } | 1439 | } |
1437 | 1440 | ||
diff --git a/net/ipv4/ipvs/ip_vs_ftp.c b/net/ipv4/ipvs/ip_vs_ftp.c index a19a33ceb811..37fafb1fbcff 100644 --- a/net/ipv4/ipvs/ip_vs_ftp.c +++ b/net/ipv4/ipvs/ip_vs_ftp.c | |||
@@ -46,14 +46,7 @@ | |||
46 | */ | 46 | */ |
47 | static int ports[IP_VS_APP_MAX_PORTS] = {21, 0}; | 47 | static int ports[IP_VS_APP_MAX_PORTS] = {21, 0}; |
48 | module_param_array(ports, int, NULL, 0); | 48 | module_param_array(ports, int, NULL, 0); |
49 | 49 | MODULE_PARM_DESC(ports, "Ports to monitor for FTP control commands"); | |
50 | /* | ||
51 | * Debug level | ||
52 | */ | ||
53 | #ifdef CONFIG_IP_VS_DEBUG | ||
54 | static int debug=0; | ||
55 | module_param(debug, int, 0); | ||
56 | #endif | ||
57 | 50 | ||
58 | 51 | ||
59 | /* Dummy variable */ | 52 | /* Dummy variable */ |
@@ -177,7 +170,7 @@ static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp, | |||
177 | &start, &end) != 1) | 170 | &start, &end) != 1) |
178 | return 1; | 171 | return 1; |
179 | 172 | ||
180 | IP_VS_DBG(1-debug, "PASV response (%u.%u.%u.%u:%d) -> " | 173 | IP_VS_DBG(7, "PASV response (%u.%u.%u.%u:%d) -> " |
181 | "%u.%u.%u.%u:%d detected\n", | 174 | "%u.%u.%u.%u:%d detected\n", |
182 | NIPQUAD(from), ntohs(port), NIPQUAD(cp->caddr), 0); | 175 | NIPQUAD(from), ntohs(port), NIPQUAD(cp->caddr), 0); |
183 | 176 | ||
@@ -280,7 +273,7 @@ static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp, | |||
280 | while (data <= data_limit - 6) { | 273 | while (data <= data_limit - 6) { |
281 | if (strnicmp(data, "PASV\r\n", 6) == 0) { | 274 | if (strnicmp(data, "PASV\r\n", 6) == 0) { |
282 | /* Passive mode on */ | 275 | /* Passive mode on */ |
283 | IP_VS_DBG(1-debug, "got PASV at %zd of %zd\n", | 276 | IP_VS_DBG(7, "got PASV at %zd of %zd\n", |
284 | data - data_start, | 277 | data - data_start, |
285 | data_limit - data_start); | 278 | data_limit - data_start); |
286 | cp->app_data = &ip_vs_ftp_pasv; | 279 | cp->app_data = &ip_vs_ftp_pasv; |
@@ -302,7 +295,7 @@ static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp, | |||
302 | &start, &end) != 1) | 295 | &start, &end) != 1) |
303 | return 1; | 296 | return 1; |
304 | 297 | ||
305 | IP_VS_DBG(1-debug, "PORT %u.%u.%u.%u:%d detected\n", | 298 | IP_VS_DBG(7, "PORT %u.%u.%u.%u:%d detected\n", |
306 | NIPQUAD(to), ntohs(port)); | 299 | NIPQUAD(to), ntohs(port)); |
307 | 300 | ||
308 | /* Passive mode off */ | 301 | /* Passive mode off */ |
@@ -311,7 +304,7 @@ static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp, | |||
311 | /* | 304 | /* |
312 | * Now update or create a connection entry for it | 305 | * Now update or create a connection entry for it |
313 | */ | 306 | */ |
314 | IP_VS_DBG(1-debug, "protocol %s %u.%u.%u.%u:%d %u.%u.%u.%u:%d\n", | 307 | IP_VS_DBG(7, "protocol %s %u.%u.%u.%u:%d %u.%u.%u.%u:%d\n", |
315 | ip_vs_proto_name(iph->protocol), | 308 | ip_vs_proto_name(iph->protocol), |
316 | NIPQUAD(to), ntohs(port), NIPQUAD(cp->vaddr), 0); | 309 | NIPQUAD(to), ntohs(port), NIPQUAD(cp->vaddr), 0); |
317 | 310 | ||
@@ -372,11 +365,17 @@ static int __init ip_vs_ftp_init(void) | |||
372 | for (i=0; i<IP_VS_APP_MAX_PORTS; i++) { | 365 | for (i=0; i<IP_VS_APP_MAX_PORTS; i++) { |
373 | if (!ports[i]) | 366 | if (!ports[i]) |
374 | continue; | 367 | continue; |
368 | if (ports[i] < 0 || ports[i] > 0xffff) { | ||
369 | IP_VS_WARNING("ip_vs_ftp: Ignoring invalid " | ||
370 | "configuration port[%d] = %d\n", | ||
371 | i, ports[i]); | ||
372 | continue; | ||
373 | } | ||
375 | ret = register_ip_vs_app_inc(app, app->protocol, ports[i]); | 374 | ret = register_ip_vs_app_inc(app, app->protocol, ports[i]); |
376 | if (ret) | 375 | if (ret) |
377 | break; | 376 | break; |
378 | IP_VS_DBG(1-debug, "%s: loaded support on port[%d] = %d\n", | 377 | IP_VS_INFO("%s: loaded support on port[%d] = %d\n", |
379 | app->name, i, ports[i]); | 378 | app->name, i, ports[i]); |
380 | } | 379 | } |
381 | 380 | ||
382 | if (ret) | 381 | if (ret) |
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 111ff39a08c5..159fa3f1ba67 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -89,7 +89,7 @@ int sysctl_tcp_frto; | |||
89 | int sysctl_tcp_nometrics_save; | 89 | int sysctl_tcp_nometrics_save; |
90 | 90 | ||
91 | int sysctl_tcp_moderate_rcvbuf = 1; | 91 | int sysctl_tcp_moderate_rcvbuf = 1; |
92 | int sysctl_tcp_abc = 1; | 92 | int sysctl_tcp_abc; |
93 | 93 | ||
94 | #define FLAG_DATA 0x01 /* Incoming frame contained data. */ | 94 | #define FLAG_DATA 0x01 /* Incoming frame contained data. */ |
95 | #define FLAG_WIN_UPDATE 0x02 /* Incoming ACK was a window update. */ | 95 | #define FLAG_WIN_UPDATE 0x02 /* Incoming ACK was a window update. */ |
diff --git a/net/ipv4/tcp_lp.c b/net/ipv4/tcp_lp.c index 1f977b6ee9a1..48f28d617ce6 100644 --- a/net/ipv4/tcp_lp.c +++ b/net/ipv4/tcp_lp.c | |||
@@ -3,13 +3,8 @@ | |||
3 | * | 3 | * |
4 | * TCP Low Priority is a distributed algorithm whose goal is to utilize only | 4 | * TCP Low Priority is a distributed algorithm whose goal is to utilize only |
5 | * the excess network bandwidth as compared to the ``fair share`` of | 5 | * the excess network bandwidth as compared to the ``fair share`` of |
6 | * bandwidth as targeted by TCP. Available from: | 6 | * bandwidth as targeted by TCP. |
7 | * http://www.ece.rice.edu/~akuzma/Doc/akuzma/TCP-LP.pdf | ||
8 | * | 7 | * |
9 | * Original Author: | ||
10 | * Aleksandar Kuzmanovic <akuzma@northwestern.edu> | ||
11 | * | ||
12 | * See http://www-ece.rice.edu/networks/TCP-LP/ for their implementation. | ||
13 | * As of 2.6.13, Linux supports pluggable congestion control algorithms. | 8 | * As of 2.6.13, Linux supports pluggable congestion control algorithms. |
14 | * Due to the limitation of the API, we take the following changes from | 9 | * Due to the limitation of the API, we take the following changes from |
15 | * the original TCP-LP implementation: | 10 | * the original TCP-LP implementation: |
@@ -24,11 +19,20 @@ | |||
24 | * o OWD is handled in relative format, where local time stamp will in | 19 | * o OWD is handled in relative format, where local time stamp will in |
25 | * tcp_time_stamp format. | 20 | * tcp_time_stamp format. |
26 | * | 21 | * |
27 | * Port from 2.4.19 to 2.6.16 as module by: | 22 | * Original Author: |
28 | * Wong Hoi Sing Edison <hswong3i@gmail.com> | 23 | * Aleksandar Kuzmanovic <akuzma@northwestern.edu> |
29 | * Hung Hing Lun <hlhung3i@gmail.com> | 24 | * Available from: |
25 | * http://www.ece.rice.edu/~akuzma/Doc/akuzma/TCP-LP.pdf | ||
26 | * Original implementation for 2.4.19: | ||
27 | * http://www-ece.rice.edu/networks/TCP-LP/ | ||
30 | * | 28 | * |
31 | * Version: $Id: tcp_lp.c,v 1.22 2006-05-02 18:18:19 hswong3i Exp $ | 29 | * 2.6.x module Authors: |
30 | * Wong Hoi Sing, Edison <hswong3i@gmail.com> | ||
31 | * Hung Hing Lun, Mike <hlhung3i@gmail.com> | ||
32 | * SourceForge project page: | ||
33 | * http://tcp-lp-mod.sourceforge.net/ | ||
34 | * | ||
35 | * Version: $Id: tcp_lp.c,v 1.24 2006/09/05 20:22:53 hswong3i Exp $ | ||
32 | */ | 36 | */ |
33 | 37 | ||
34 | #include <linux/config.h> | 38 | #include <linux/config.h> |
@@ -153,16 +157,19 @@ static u32 tcp_lp_remote_hz_estimator(struct sock *sk) | |||
153 | if (m < 0) | 157 | if (m < 0) |
154 | m = -m; | 158 | m = -m; |
155 | 159 | ||
156 | if (rhz != 0) { | 160 | if (rhz > 0) { |
157 | m -= rhz >> 6; /* m is now error in remote HZ est */ | 161 | m -= rhz >> 6; /* m is now error in remote HZ est */ |
158 | rhz += m; /* 63/64 old + 1/64 new */ | 162 | rhz += m; /* 63/64 old + 1/64 new */ |
159 | } else | 163 | } else |
160 | rhz = m << 6; | 164 | rhz = m << 6; |
161 | 165 | ||
166 | out: | ||
162 | /* record time for successful remote HZ calc */ | 167 | /* record time for successful remote HZ calc */ |
163 | lp->flag |= LP_VALID_RHZ; | 168 | if (rhz > 0) |
169 | lp->flag |= LP_VALID_RHZ; | ||
170 | else | ||
171 | lp->flag &= ~LP_VALID_RHZ; | ||
164 | 172 | ||
165 | out: | ||
166 | /* record reference time stamp */ | 173 | /* record reference time stamp */ |
167 | lp->remote_ref_time = tp->rx_opt.rcv_tsval; | 174 | lp->remote_ref_time = tp->rx_opt.rcv_tsval; |
168 | lp->local_ref_time = tp->rx_opt.rcv_tsecr; | 175 | lp->local_ref_time = tp->rx_opt.rcv_tsecr; |
@@ -333,6 +340,6 @@ static void __exit tcp_lp_unregister(void) | |||
333 | module_init(tcp_lp_register); | 340 | module_init(tcp_lp_register); |
334 | module_exit(tcp_lp_unregister); | 341 | module_exit(tcp_lp_unregister); |
335 | 342 | ||
336 | MODULE_AUTHOR("Wong Hoi Sing Edison, Hung Hing Lun"); | 343 | MODULE_AUTHOR("Wong Hoi Sing Edison, Hung Hing Lun Mike"); |
337 | MODULE_LICENSE("GPL"); | 344 | MODULE_LICENSE("GPL"); |
338 | MODULE_DESCRIPTION("TCP Low Priority"); | 345 | MODULE_DESCRIPTION("TCP Low Priority"); |
diff --git a/net/ipv6/datagram.c b/net/ipv6/datagram.c index 99a6eb23378b..3b55b4c8e2d1 100644 --- a/net/ipv6/datagram.c +++ b/net/ipv6/datagram.c | |||
@@ -696,7 +696,7 @@ int datagram_send_ctl(struct msghdr *msg, struct flowi *fl, | |||
696 | } | 696 | } |
697 | 697 | ||
698 | tc = *(int *)CMSG_DATA(cmsg); | 698 | tc = *(int *)CMSG_DATA(cmsg); |
699 | if (tc < 0 || tc > 0xff) | 699 | if (tc < -1 || tc > 0xff) |
700 | goto exit_f; | 700 | goto exit_f; |
701 | 701 | ||
702 | err = 0; | 702 | err = 0; |
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 3d6e9a351150..356a8a7ef22a 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c | |||
@@ -401,7 +401,7 @@ void icmpv6_send(struct sk_buff *skb, int type, int code, __u32 info, | |||
401 | if (hlimit < 0) | 401 | if (hlimit < 0) |
402 | hlimit = ipv6_get_hoplimit(dst->dev); | 402 | hlimit = ipv6_get_hoplimit(dst->dev); |
403 | 403 | ||
404 | tclass = np->cork.tclass; | 404 | tclass = np->tclass; |
405 | if (tclass < 0) | 405 | if (tclass < 0) |
406 | tclass = 0; | 406 | tclass = 0; |
407 | 407 | ||
@@ -497,7 +497,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb) | |||
497 | if (hlimit < 0) | 497 | if (hlimit < 0) |
498 | hlimit = ipv6_get_hoplimit(dst->dev); | 498 | hlimit = ipv6_get_hoplimit(dst->dev); |
499 | 499 | ||
500 | tclass = np->cork.tclass; | 500 | tclass = np->tclass; |
501 | if (tclass < 0) | 501 | if (tclass < 0) |
502 | tclass = 0; | 502 | tclass = 0; |
503 | 503 | ||
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c index 43327264e69c..a5eaaf693abf 100644 --- a/net/ipv6/ipv6_sockglue.c +++ b/net/ipv6/ipv6_sockglue.c | |||
@@ -362,7 +362,7 @@ static int do_ipv6_setsockopt(struct sock *sk, int level, int optname, | |||
362 | break; | 362 | break; |
363 | 363 | ||
364 | case IPV6_TCLASS: | 364 | case IPV6_TCLASS: |
365 | if (val < 0 || val > 0xff) | 365 | if (val < -1 || val > 0xff) |
366 | goto e_inval; | 366 | goto e_inval; |
367 | np->tclass = val; | 367 | np->tclass = val; |
368 | retv = 0; | 368 | retv = 0; |
@@ -947,6 +947,8 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname, | |||
947 | 947 | ||
948 | case IPV6_TCLASS: | 948 | case IPV6_TCLASS: |
949 | val = np->tclass; | 949 | val = np->tclass; |
950 | if (val < 0) | ||
951 | val = 0; | ||
950 | break; | 952 | break; |
951 | 953 | ||
952 | case IPV6_RECVTCLASS: | 954 | case IPV6_RECVTCLASS: |
diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c index d57e61ce4a7d..15b862d8acab 100644 --- a/net/ipv6/raw.c +++ b/net/ipv6/raw.c | |||
@@ -781,7 +781,7 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk, | |||
781 | } | 781 | } |
782 | 782 | ||
783 | if (tclass < 0) { | 783 | if (tclass < 0) { |
784 | tclass = np->cork.tclass; | 784 | tclass = np->tclass; |
785 | if (tclass < 0) | 785 | if (tclass < 0) |
786 | tclass = 0; | 786 | tclass = 0; |
787 | } | 787 | } |
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index f9cef3671593..4172a5235916 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c | |||
@@ -626,8 +626,6 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev, struct packe | |||
626 | if ((int)snaplen < 0) | 626 | if ((int)snaplen < 0) |
627 | snaplen = 0; | 627 | snaplen = 0; |
628 | } | 628 | } |
629 | if (snaplen > skb->len-skb->data_len) | ||
630 | snaplen = skb->len-skb->data_len; | ||
631 | 629 | ||
632 | spin_lock(&sk->sk_receive_queue.lock); | 630 | spin_lock(&sk->sk_receive_queue.lock); |
633 | h = (struct tpacket_hdr *)packet_lookup_frame(po, po->head); | 631 | h = (struct tpacket_hdr *)packet_lookup_frame(po, po->head); |
@@ -644,7 +642,7 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev, struct packe | |||
644 | status &= ~TP_STATUS_LOSING; | 642 | status &= ~TP_STATUS_LOSING; |
645 | spin_unlock(&sk->sk_receive_queue.lock); | 643 | spin_unlock(&sk->sk_receive_queue.lock); |
646 | 644 | ||
647 | memcpy((u8*)h + macoff, skb->data, snaplen); | 645 | skb_copy_bits(skb, 0, (u8*)h + macoff, snaplen); |
648 | 646 | ||
649 | h->tp_len = skb->len; | 647 | h->tp_len = skb->len; |
650 | h->tp_snaplen = snaplen; | 648 | h->tp_snaplen = snaplen; |
diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c index 0834c2ee9174..6f9151899795 100644 --- a/net/sched/sch_generic.c +++ b/net/sched/sch_generic.c | |||
@@ -238,9 +238,7 @@ void __netdev_watchdog_up(struct net_device *dev) | |||
238 | 238 | ||
239 | static void dev_watchdog_up(struct net_device *dev) | 239 | static void dev_watchdog_up(struct net_device *dev) |
240 | { | 240 | { |
241 | netif_tx_lock_bh(dev); | ||
242 | __netdev_watchdog_up(dev); | 241 | __netdev_watchdog_up(dev); |
243 | netif_tx_unlock_bh(dev); | ||
244 | } | 242 | } |
245 | 243 | ||
246 | static void dev_watchdog_down(struct net_device *dev) | 244 | static void dev_watchdog_down(struct net_device *dev) |
diff --git a/scripts/Makefile.headersinst b/scripts/Makefile.headersinst index aa9990a3ccd6..12e1daf875c8 100644 --- a/scripts/Makefile.headersinst +++ b/scripts/Makefile.headersinst | |||
@@ -93,14 +93,14 @@ STUBDEF=__ASM_STUB_`echo $@ | tr a-z. A-Z_`; \ | |||
93 | echo "\#ifndef $$STUBDEF" ; \ | 93 | echo "\#ifndef $$STUBDEF" ; \ |
94 | echo "\#define $$STUBDEF" ; \ | 94 | echo "\#define $$STUBDEF" ; \ |
95 | echo "\# if $(ARCHDEF)" ; \ | 95 | echo "\# if $(ARCHDEF)" ; \ |
96 | if [ -r $(srctree)/include/$(archasm)/$@ ]; then \ | 96 | if [ -r $(INSTALL_HDR_PATH)/include/$(archasm)/$@ ]; then \ |
97 | echo "\# include <$(archasm)/$@>" ; \ | 97 | echo "\# include <$(archasm)/$@>" ; \ |
98 | else \ | 98 | else \ |
99 | echo "\# error $(archasm)/$@ does not exist in" \ | 99 | echo "\# error $(archasm)/$@ does not exist in" \ |
100 | "the $(ARCH) architecture" ; \ | 100 | "the $(ARCH) architecture" ; \ |
101 | fi ; \ | 101 | fi ; \ |
102 | echo "\# elif $(ALTARCHDEF)" ; \ | 102 | echo "\# elif $(ALTARCHDEF)" ; \ |
103 | if [ -r $(srctree)/include/$(altarchasm)/$@ ]; then \ | 103 | if [ -r $(INSTALL_HDR_PATH)/include/$(altarchasm)/$@ ]; then \ |
104 | echo "\# include <$(altarchasm)/$@>" ; \ | 104 | echo "\# include <$(altarchasm)/$@>" ; \ |
105 | else \ | 105 | else \ |
106 | echo "\# error $(altarchasm)/$@ does not exist in" \ | 106 | echo "\# error $(altarchasm)/$@ does not exist in" \ |
@@ -149,7 +149,9 @@ endif | |||
149 | hdrinst := -rR -f $(srctree)/scripts/Makefile.headersinst obj | 149 | hdrinst := -rR -f $(srctree)/scripts/Makefile.headersinst obj |
150 | 150 | ||
151 | .PHONY: altarch-dir | 151 | .PHONY: altarch-dir |
152 | altarch-dir: | 152 | # All the files in the normal arch dir must be created first, since we test |
153 | # for their existence. | ||
154 | altarch-dir: $(subdir-y) $(header-y) $(unifdef-y) $(objhdr-y) | ||
153 | $(Q)$(MAKE) $(hdrinst)=include/asm-$(ALTARCH) dst=include/asm-$(ALTARCH) | 155 | $(Q)$(MAKE) $(hdrinst)=include/asm-$(ALTARCH) dst=include/asm-$(ALTARCH) |
154 | $(Q)$(MAKE) $(hdrinst)=include/asm dst=include/asm | 156 | $(Q)$(MAKE) $(hdrinst)=include/asm dst=include/asm |
155 | 157 | ||
diff --git a/scripts/Makefile.host b/scripts/Makefile.host index 18ecd4d5df7f..060f4c563a5c 100644 --- a/scripts/Makefile.host +++ b/scripts/Makefile.host | |||
@@ -30,7 +30,7 @@ | |||
30 | # libkconfig.so as the executable conf. | 30 | # libkconfig.so as the executable conf. |
31 | # Note: Shared libraries consisting of C++ files are not supported | 31 | # Note: Shared libraries consisting of C++ files are not supported |
32 | 32 | ||
33 | __hostprogs := $(sort $(hostprogs-y)$(hostprogs-m)) | 33 | __hostprogs := $(sort $(hostprogs-y) $(hostprogs-m)) |
34 | 34 | ||
35 | # hostprogs-y := tools/build may have been specified. Retreive directory | 35 | # hostprogs-y := tools/build may have been specified. Retreive directory |
36 | host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f)))) | 36 | host-objdirs := $(foreach f,$(__hostprogs), $(if $(dir $(f)),$(dir $(f)))) |
diff --git a/scripts/hdrcheck.sh b/scripts/hdrcheck.sh index b3bb683b56b6..b5ca35aa1741 100755 --- a/scripts/hdrcheck.sh +++ b/scripts/hdrcheck.sh | |||
@@ -1,8 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | for FILE in `grep '^#include <' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do | 3 | for FILE in `grep '^[ \t]*#[ \t]*include[ \t]*<' $2 | cut -f2 -d\< | cut -f1 -d\> | egrep ^linux\|^asm` ; do |
4 | if [ ! -r $1/$FILE ]; then | 4 | if [ ! -r $1/$FILE ]; then |
5 | echo $2 requires $FILE, which does not exist | 5 | echo $2 requires $FILE, which does not exist in exported headers |
6 | exit 1 | 6 | exit 1 |
7 | fi | 7 | fi |
8 | done | 8 | done |