diff options
author | Steve French <sfrench@us.ibm.com> | 2009-04-30 11:36:52 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2009-04-30 11:36:52 -0400 |
commit | 912bc6ae3de99c7bada4577d4341ace4ee59b5be (patch) | |
tree | 28fd1a4bb9e4b05aa833285b46df169f12c0e24d | |
parent | d37dc42ab6f040b8f0f2962ab219c5b2accf748d (diff) | |
parent | 091438dd5668396328a3419abcbc6591159eb8d1 (diff) |
Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
667 files changed, 12896 insertions, 19272 deletions
diff --git a/Documentation/ABI/testing/sysfs-firmware-acpi b/Documentation/ABI/testing/sysfs-firmware-acpi index e8ffc70ffe12..4f9ba3c2fca7 100644 --- a/Documentation/ABI/testing/sysfs-firmware-acpi +++ b/Documentation/ABI/testing/sysfs-firmware-acpi | |||
@@ -69,9 +69,13 @@ Description: | |||
69 | gpe1F: 0 invalid | 69 | gpe1F: 0 invalid |
70 | gpe_all: 1192 | 70 | gpe_all: 1192 |
71 | sci: 1194 | 71 | sci: 1194 |
72 | sci_not: 0 | ||
72 | 73 | ||
73 | sci - The total number of times the ACPI SCI | 74 | sci - The number of times the ACPI SCI |
74 | has claimed an interrupt. | 75 | has been called and claimed an interrupt. |
76 | |||
77 | sci_not - The number of times the ACPI SCI | ||
78 | has been called and NOT claimed an interrupt. | ||
75 | 79 | ||
76 | gpe_all - count of SCI caused by GPEs. | 80 | gpe_all - count of SCI caused by GPEs. |
77 | 81 | ||
diff --git a/Documentation/DocBook/kernel-api.tmpl b/Documentation/DocBook/kernel-api.tmpl index d6ac5d61820e..44b3def961a2 100644 --- a/Documentation/DocBook/kernel-api.tmpl +++ b/Documentation/DocBook/kernel-api.tmpl | |||
@@ -190,16 +190,20 @@ X!Ekernel/module.c | |||
190 | !Edrivers/pci/pci.c | 190 | !Edrivers/pci/pci.c |
191 | !Edrivers/pci/pci-driver.c | 191 | !Edrivers/pci/pci-driver.c |
192 | !Edrivers/pci/remove.c | 192 | !Edrivers/pci/remove.c |
193 | !Edrivers/pci/pci-acpi.c | ||
194 | !Edrivers/pci/search.c | 193 | !Edrivers/pci/search.c |
195 | !Edrivers/pci/msi.c | 194 | !Edrivers/pci/msi.c |
196 | !Edrivers/pci/bus.c | 195 | !Edrivers/pci/bus.c |
196 | !Edrivers/pci/access.c | ||
197 | !Edrivers/pci/irq.c | ||
198 | !Edrivers/pci/htirq.c | ||
197 | <!-- FIXME: Removed for now since no structured comments in source | 199 | <!-- FIXME: Removed for now since no structured comments in source |
198 | X!Edrivers/pci/hotplug.c | 200 | X!Edrivers/pci/hotplug.c |
199 | --> | 201 | --> |
200 | !Edrivers/pci/probe.c | 202 | !Edrivers/pci/probe.c |
203 | !Edrivers/pci/slot.c | ||
201 | !Edrivers/pci/rom.c | 204 | !Edrivers/pci/rom.c |
202 | !Edrivers/pci/iov.c | 205 | !Edrivers/pci/iov.c |
206 | !Idrivers/pci/pci-sysfs.c | ||
203 | </sect1> | 207 | </sect1> |
204 | <sect1><title>PCI Hotplug Support Library</title> | 208 | <sect1><title>PCI Hotplug Support Library</title> |
205 | !Edrivers/pci/hotplug/pci_hotplug_core.c | 209 | !Edrivers/pci/hotplug/pci_hotplug_core.c |
diff --git a/Documentation/filesystems/caching/cachefiles.txt b/Documentation/filesystems/caching/cachefiles.txt index c78a49b7bba6..748a1ae49e12 100644 --- a/Documentation/filesystems/caching/cachefiles.txt +++ b/Documentation/filesystems/caching/cachefiles.txt | |||
@@ -407,7 +407,7 @@ A NOTE ON SECURITY | |||
407 | ================== | 407 | ================== |
408 | 408 | ||
409 | CacheFiles makes use of the split security in the task_struct. It allocates | 409 | CacheFiles makes use of the split security in the task_struct. It allocates |
410 | its own task_security structure, and redirects current->act_as to point to it | 410 | its own task_security structure, and redirects current->cred to point to it |
411 | when it acts on behalf of another process, in that process's context. | 411 | when it acts on behalf of another process, in that process's context. |
412 | 412 | ||
413 | The reason it does this is that it calls vfs_mkdir() and suchlike rather than | 413 | The reason it does this is that it calls vfs_mkdir() and suchlike rather than |
@@ -429,9 +429,9 @@ This means it may lose signals or ptrace events for example, and affects what | |||
429 | the process looks like in /proc. | 429 | the process looks like in /proc. |
430 | 430 | ||
431 | So CacheFiles makes use of a logical split in the security between the | 431 | So CacheFiles makes use of a logical split in the security between the |
432 | objective security (task->sec) and the subjective security (task->act_as). The | 432 | objective security (task->real_cred) and the subjective security (task->cred). |
433 | objective security holds the intrinsic security properties of a process and is | 433 | The objective security holds the intrinsic security properties of a process and |
434 | never overridden. This is what appears in /proc, and is what is used when a | 434 | is never overridden. This is what appears in /proc, and is what is used when a |
435 | process is the target of an operation by some other process (SIGKILL for | 435 | process is the target of an operation by some other process (SIGKILL for |
436 | example). | 436 | example). |
437 | 437 | ||
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt index deeeed0faa8f..f49eecf2e573 100644 --- a/Documentation/filesystems/vfs.txt +++ b/Documentation/filesystems/vfs.txt | |||
@@ -277,8 +277,7 @@ or bottom half). | |||
277 | unfreeze_fs: called when VFS is unlocking a filesystem and making it writable | 277 | unfreeze_fs: called when VFS is unlocking a filesystem and making it writable |
278 | again. | 278 | again. |
279 | 279 | ||
280 | statfs: called when the VFS needs to get filesystem statistics. This | 280 | statfs: called when the VFS needs to get filesystem statistics. |
281 | is called with the kernel lock held | ||
282 | 281 | ||
283 | remount_fs: called when the filesystem is remounted. This is called | 282 | remount_fs: called when the filesystem is remounted. This is called |
284 | with the kernel lock held | 283 | with the kernel lock held |
diff --git a/Documentation/isdn/00-INDEX b/Documentation/isdn/00-INDEX index 9fee5f2e5c62..5a2d69989a8c 100644 --- a/Documentation/isdn/00-INDEX +++ b/Documentation/isdn/00-INDEX | |||
@@ -2,8 +2,14 @@ | |||
2 | - this file (info on ISDN implementation for Linux) | 2 | - this file (info on ISDN implementation for Linux) |
3 | CREDITS | 3 | CREDITS |
4 | - list of the kind folks that brought you this stuff. | 4 | - list of the kind folks that brought you this stuff. |
5 | HiSax.cert | ||
6 | - information about the ITU approval certification of the HiSax driver. | ||
5 | INTERFACE | 7 | INTERFACE |
6 | - description of Linklevel and Hardwarelevel ISDN interface. | 8 | - description of isdn4linux Link Level and Hardware Level interfaces. |
9 | INTERFACE.fax | ||
10 | - description of the fax subinterface of isdn4linux. | ||
11 | INTERFACE.CAPI | ||
12 | - description of kernel CAPI Link Level to Hardware Level interface. | ||
7 | README | 13 | README |
8 | - general info on what you need and what to do for Linux ISDN. | 14 | - general info on what you need and what to do for Linux ISDN. |
9 | README.FAQ | 15 | README.FAQ |
@@ -12,6 +18,8 @@ README.audio | |||
12 | - info for running audio over ISDN. | 18 | - info for running audio over ISDN. |
13 | README.fax | 19 | README.fax |
14 | - info for using Fax over ISDN. | 20 | - info for using Fax over ISDN. |
21 | README.gigaset | ||
22 | - info on the drivers for Siemens Gigaset ISDN adapters. | ||
15 | README.icn | 23 | README.icn |
16 | - info on the ICN-ISDN-card and its driver. | 24 | - info on the ICN-ISDN-card and its driver. |
17 | README.HiSax | 25 | README.HiSax |
@@ -37,7 +45,8 @@ README.diversion | |||
37 | README.sc | 45 | README.sc |
38 | - info on driver for Spellcaster cards. | 46 | - info on driver for Spellcaster cards. |
39 | README.x25 | 47 | README.x25 |
40 | _ info for running X.25 over ISDN. | 48 | - info for running X.25 over ISDN. |
41 | README.hysdn | 49 | README.hysdn |
42 | - info on driver for Hypercope active HYSDN cards | 50 | - info on driver for Hypercope active HYSDN cards |
43 | 51 | README.mISDN | |
52 | - info on the Modular ISDN subsystem (mISDN). | ||
diff --git a/Documentation/isdn/INTERFACE.CAPI b/Documentation/isdn/INTERFACE.CAPI new file mode 100644 index 000000000000..786d619b36e5 --- /dev/null +++ b/Documentation/isdn/INTERFACE.CAPI | |||
@@ -0,0 +1,213 @@ | |||
1 | Kernel CAPI Interface to Hardware Drivers | ||
2 | ----------------------------------------- | ||
3 | |||
4 | 1. Overview | ||
5 | |||
6 | From the CAPI 2.0 specification: | ||
7 | COMMON-ISDN-API (CAPI) is an application programming interface standard used | ||
8 | to access ISDN equipment connected to basic rate interfaces (BRI) and primary | ||
9 | rate interfaces (PRI). | ||
10 | |||
11 | Kernel CAPI operates as a dispatching layer between CAPI applications and CAPI | ||
12 | hardware drivers. Hardware drivers register ISDN devices (controllers, in CAPI | ||
13 | lingo) with Kernel CAPI to indicate their readiness to provide their service | ||
14 | to CAPI applications. CAPI applications also register with Kernel CAPI, | ||
15 | requesting association with a CAPI device. Kernel CAPI then dispatches the | ||
16 | application registration to an available device, forwarding it to the | ||
17 | corresponding hardware driver. Kernel CAPI then forwards CAPI messages in both | ||
18 | directions between the application and the hardware driver. | ||
19 | |||
20 | Format and semantics of CAPI messages are specified in the CAPI 2.0 standard. | ||
21 | This standard is freely available from http://www.capi.org. | ||
22 | |||
23 | |||
24 | 2. Driver and Device Registration | ||
25 | |||
26 | CAPI drivers optionally register themselves with Kernel CAPI by calling the | ||
27 | Kernel CAPI function register_capi_driver() with a pointer to a struct | ||
28 | capi_driver. This structure must be filled with the name and revision of the | ||
29 | driver, and optionally a pointer to a callback function, add_card(). The | ||
30 | registration can be revoked by calling the function unregister_capi_driver() | ||
31 | with a pointer to the same struct capi_driver. | ||
32 | |||
33 | CAPI drivers must register each of the ISDN devices they control with Kernel | ||
34 | CAPI by calling the Kernel CAPI function attach_capi_ctr() with a pointer to a | ||
35 | struct capi_ctr before they can be used. This structure must be filled with | ||
36 | the names of the driver and controller, and a number of callback function | ||
37 | pointers which are subsequently used by Kernel CAPI for communicating with the | ||
38 | driver. The registration can be revoked by calling the function | ||
39 | detach_capi_ctr() with a pointer to the same struct capi_ctr. | ||
40 | |||
41 | Before the device can be actually used, the driver must fill in the device | ||
42 | information fields 'manu', 'version', 'profile' and 'serial' in the capi_ctr | ||
43 | structure of the device, and signal its readiness by calling capi_ctr_ready(). | ||
44 | From then on, Kernel CAPI may call the registered callback functions for the | ||
45 | device. | ||
46 | |||
47 | If the device becomes unusable for any reason (shutdown, disconnect ...), the | ||
48 | driver has to call capi_ctr_reseted(). This will prevent further calls to the | ||
49 | callback functions by Kernel CAPI. | ||
50 | |||
51 | |||
52 | 3. Application Registration and Communication | ||
53 | |||
54 | Kernel CAPI forwards registration requests from applications (calls to CAPI | ||
55 | operation CAPI_REGISTER) to an appropriate hardware driver by calling its | ||
56 | register_appl() callback function. A unique Application ID (ApplID, u16) is | ||
57 | allocated by Kernel CAPI and passed to register_appl() along with the | ||
58 | parameter structure provided by the application. This is analogous to the | ||
59 | open() operation on regular files or character devices. | ||
60 | |||
61 | After a successful return from register_appl(), CAPI messages from the | ||
62 | application may be passed to the driver for the device via calls to the | ||
63 | send_message() callback function. The CAPI message to send is stored in the | ||
64 | data portion of an skb. Conversely, the driver may call Kernel CAPI's | ||
65 | capi_ctr_handle_message() function to pass a received CAPI message to Kernel | ||
66 | CAPI for forwarding to an application, specifying its ApplID. | ||
67 | |||
68 | Deregistration requests (CAPI operation CAPI_RELEASE) from applications are | ||
69 | forwarded as calls to the release_appl() callback function, passing the same | ||
70 | ApplID as with register_appl(). After return from release_appl(), no CAPI | ||
71 | messages for that application may be passed to or from the device anymore. | ||
72 | |||
73 | |||
74 | 4. Data Structures | ||
75 | |||
76 | 4.1 struct capi_driver | ||
77 | |||
78 | This structure describes a Kernel CAPI driver itself. It is used in the | ||
79 | register_capi_driver() and unregister_capi_driver() functions, and contains | ||
80 | the following non-private fields, all to be set by the driver before calling | ||
81 | register_capi_driver(): | ||
82 | |||
83 | char name[32] | ||
84 | the name of the driver, as a zero-terminated ASCII string | ||
85 | char revision[32] | ||
86 | the revision number of the driver, as a zero-terminated ASCII string | ||
87 | int (*add_card)(struct capi_driver *driver, capicardparams *data) | ||
88 | a callback function pointer (may be NULL) | ||
89 | |||
90 | |||
91 | 4.2 struct capi_ctr | ||
92 | |||
93 | This structure describes an ISDN device (controller) handled by a Kernel CAPI | ||
94 | driver. After registration via the attach_capi_ctr() function it is passed to | ||
95 | all controller specific lower layer interface and callback functions to | ||
96 | identify the controller to operate on. | ||
97 | |||
98 | It contains the following non-private fields: | ||
99 | |||
100 | - to be set by the driver before calling attach_capi_ctr(): | ||
101 | |||
102 | struct module *owner | ||
103 | pointer to the driver module owning the device | ||
104 | |||
105 | void *driverdata | ||
106 | an opaque pointer to driver specific data, not touched by Kernel CAPI | ||
107 | |||
108 | char name[32] | ||
109 | the name of the controller, as a zero-terminated ASCII string | ||
110 | |||
111 | char *driver_name | ||
112 | the name of the driver, as a zero-terminated ASCII string | ||
113 | |||
114 | int (*load_firmware)(struct capi_ctr *ctrlr, capiloaddata *ldata) | ||
115 | (optional) pointer to a callback function for sending firmware and | ||
116 | configuration data to the device | ||
117 | |||
118 | void (*reset_ctr)(struct capi_ctr *ctrlr) | ||
119 | pointer to a callback function for performing a reset on the device, | ||
120 | releasing all registered applications | ||
121 | |||
122 | void (*register_appl)(struct capi_ctr *ctrlr, u16 applid, | ||
123 | capi_register_params *rparam) | ||
124 | void (*release_appl)(struct capi_ctr *ctrlr, u16 applid) | ||
125 | pointers to callback functions for registration and deregistration of | ||
126 | applications with the device | ||
127 | |||
128 | u16 (*send_message)(struct capi_ctr *ctrlr, struct sk_buff *skb) | ||
129 | pointer to a callback function for sending a CAPI message to the | ||
130 | device | ||
131 | |||
132 | char *(*procinfo)(struct capi_ctr *ctrlr) | ||
133 | pointer to a callback function returning the entry for the device in | ||
134 | the CAPI controller info table, /proc/capi/controller | ||
135 | |||
136 | read_proc_t *ctr_read_proc | ||
137 | pointer to the read_proc callback function for the device's proc file | ||
138 | system entry, /proc/capi/controllers/<n>; will be called with a | ||
139 | pointer to the device's capi_ctr structure as the last (data) argument | ||
140 | |||
141 | - to be filled in before calling capi_ctr_ready(): | ||
142 | |||
143 | u8 manu[CAPI_MANUFACTURER_LEN] | ||
144 | value to return for CAPI_GET_MANUFACTURER | ||
145 | |||
146 | capi_version version | ||
147 | value to return for CAPI_GET_VERSION | ||
148 | |||
149 | capi_profile profile | ||
150 | value to return for CAPI_GET_PROFILE | ||
151 | |||
152 | u8 serial[CAPI_SERIAL_LEN] | ||
153 | value to return for CAPI_GET_SERIAL | ||
154 | |||
155 | |||
156 | 5. Lower Layer Interface Functions | ||
157 | |||
158 | (declared in <linux/isdn/capilli.h>) | ||
159 | |||
160 | void register_capi_driver(struct capi_driver *drvr) | ||
161 | void unregister_capi_driver(struct capi_driver *drvr) | ||
162 | register/unregister a driver with Kernel CAPI | ||
163 | |||
164 | int attach_capi_ctr(struct capi_ctr *ctrlr) | ||
165 | int detach_capi_ctr(struct capi_ctr *ctrlr) | ||
166 | register/unregister a device (controller) with Kernel CAPI | ||
167 | |||
168 | void capi_ctr_ready(struct capi_ctr *ctrlr) | ||
169 | void capi_ctr_reseted(struct capi_ctr *ctrlr) | ||
170 | signal controller ready/not ready | ||
171 | |||
172 | void capi_ctr_suspend_output(struct capi_ctr *ctrlr) | ||
173 | void capi_ctr_resume_output(struct capi_ctr *ctrlr) | ||
174 | signal suspend/resume | ||
175 | |||
176 | void capi_ctr_handle_message(struct capi_ctr * ctrlr, u16 applid, | ||
177 | struct sk_buff *skb) | ||
178 | pass a received CAPI message to Kernel CAPI | ||
179 | for forwarding to the specified application | ||
180 | |||
181 | |||
182 | 6. Helper Functions and Macros | ||
183 | |||
184 | Library functions (from <linux/isdn/capilli.h>): | ||
185 | |||
186 | void capilib_new_ncci(struct list_head *head, u16 applid, | ||
187 | u32 ncci, u32 winsize) | ||
188 | void capilib_free_ncci(struct list_head *head, u16 applid, u32 ncci) | ||
189 | void capilib_release_appl(struct list_head *head, u16 applid) | ||
190 | void capilib_release(struct list_head *head) | ||
191 | void capilib_data_b3_conf(struct list_head *head, u16 applid, | ||
192 | u32 ncci, u16 msgid) | ||
193 | u16 capilib_data_b3_req(struct list_head *head, u16 applid, | ||
194 | u32 ncci, u16 msgid) | ||
195 | |||
196 | |||
197 | Macros to extract/set element values from/in a CAPI message header | ||
198 | (from <linux/isdn/capiutil.h>): | ||
199 | |||
200 | Get Macro Set Macro Element (Type) | ||
201 | |||
202 | CAPIMSG_LEN(m) CAPIMSG_SETLEN(m, len) Total Length (u16) | ||
203 | CAPIMSG_APPID(m) CAPIMSG_SETAPPID(m, applid) ApplID (u16) | ||
204 | CAPIMSG_COMMAND(m) CAPIMSG_SETCOMMAND(m,cmd) Command (u8) | ||
205 | CAPIMSG_SUBCOMMAND(m) CAPIMSG_SETSUBCOMMAND(m, cmd) Subcommand (u8) | ||
206 | CAPIMSG_CMD(m) - Command*256 | ||
207 | + Subcommand (u16) | ||
208 | CAPIMSG_MSGID(m) CAPIMSG_SETMSGID(m, msgid) Message Number (u16) | ||
209 | |||
210 | CAPIMSG_CONTROL(m) CAPIMSG_SETCONTROL(m, contr) Controller/PLCI/NCCI | ||
211 | (u32) | ||
212 | CAPIMSG_DATALEN(m) CAPIMSG_SETDATALEN(m, len) Data Length (u16) | ||
213 | |||
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 600cdd72900c..90b3924071b6 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1620,6 +1620,8 @@ and is between 256 and 4096 characters. It is defined in the file | |||
1620 | 1620 | ||
1621 | nowb [ARM] | 1621 | nowb [ARM] |
1622 | 1622 | ||
1623 | nox2apic [X86-64,APIC] Do not enable x2APIC mode. | ||
1624 | |||
1623 | nptcg= [IA64] Override max number of concurrent global TLB | 1625 | nptcg= [IA64] Override max number of concurrent global TLB |
1624 | purges which is reported from either PAL_VM_SUMMARY or | 1626 | purges which is reported from either PAL_VM_SUMMARY or |
1625 | SAL PALO. | 1627 | SAL PALO. |
diff --git a/Documentation/laptops/thinkpad-acpi.txt b/Documentation/laptops/thinkpad-acpi.txt index 3d7650768bb5..e7e9a69069e1 100644 --- a/Documentation/laptops/thinkpad-acpi.txt +++ b/Documentation/laptops/thinkpad-acpi.txt | |||
@@ -1,7 +1,7 @@ | |||
1 | ThinkPad ACPI Extras Driver | 1 | ThinkPad ACPI Extras Driver |
2 | 2 | ||
3 | Version 0.22 | 3 | Version 0.23 |
4 | November 23rd, 2008 | 4 | April 10th, 2009 |
5 | 5 | ||
6 | Borislav Deianov <borislav@users.sf.net> | 6 | Borislav Deianov <borislav@users.sf.net> |
7 | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 7 | Henrique de Moraes Holschuh <hmh@hmh.eng.br> |
diff --git a/Documentation/logo.gif b/Documentation/logo.gif new file mode 100644 index 000000000000..2eae75fecfb9 --- /dev/null +++ b/Documentation/logo.gif | |||
Binary files differ | |||
diff --git a/Documentation/logo.svg b/Documentation/logo.svg deleted file mode 100644 index cb9e4851d8c3..000000000000 --- a/Documentation/logo.svg +++ /dev/null | |||
@@ -1,2911 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
2 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | ||
3 | <svg | ||
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | ||
5 | xmlns:cc="http://creativecommons.org/ns#" | ||
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | ||
7 | xmlns:svg="http://www.w3.org/2000/svg" | ||
8 | xmlns="http://www.w3.org/2000/svg" | ||
9 | xmlns:xlink="http://www.w3.org/1999/xlink" | ||
10 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | ||
11 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | ||
12 | width="1771.6534" | ||
13 | height="1417.3228" | ||
14 | id="svg2" | ||
15 | sodipodi:version="0.32" | ||
16 | inkscape:version="0.46" | ||
17 | sodipodi:docname="tuz.svg" | ||
18 | inkscape:output_extension="org.inkscape.output.svg.inkscape" | ||
19 | version="1.0" | ||
20 | style="display:inline;enable-background:new" | ||
21 | inkscape:export-filename="/home/cheeseness/Documents/LCA09/mascot/tuz_final.png" | ||
22 | inkscape:export-xdpi="100.03588" | ||
23 | inkscape:export-ydpi="100.03588"> | ||
24 | <sodipodi:namedview | ||
25 | id="base" | ||
26 | pagecolor="#ffffff" | ||
27 | bordercolor="#666666" | ||
28 | borderopacity="1.0" | ||
29 | gridtolerance="10000" | ||
30 | guidetolerance="10" | ||
31 | objecttolerance="10" | ||
32 | inkscape:pageopacity="0.0" | ||
33 | inkscape:pageshadow="2" | ||
34 | inkscape:zoom="0.25" | ||
35 | inkscape:cx="-174.7931" | ||
36 | inkscape:cy="784.26325" | ||
37 | inkscape:document-units="px" | ||
38 | inkscape:current-layer="svg2" | ||
39 | showgrid="false" | ||
40 | inkscape:window-width="1280" | ||
41 | inkscape:window-height="823" | ||
42 | inkscape:window-x="-4" | ||
43 | inkscape:window-y="25" | ||
44 | showguides="true" | ||
45 | inkscape:guide-bbox="true" | ||
46 | units="mm" /> | ||
47 | <defs | ||
48 | id="defs4"> | ||
49 | <filter | ||
50 | inkscape:collect="always" | ||
51 | x="-0.084654994" | ||
52 | width="1.16931" | ||
53 | y="-0.36592469" | ||
54 | height="1.7318494" | ||
55 | id="filter11361"> | ||
56 | <feGaussianBlur | ||
57 | inkscape:collect="always" | ||
58 | stdDeviation="4.5740586" | ||
59 | id="feGaussianBlur11363" /> | ||
60 | </filter> | ||
61 | <inkscape:perspective | ||
62 | sodipodi:type="inkscape:persp3d" | ||
63 | inkscape:vp_x="0 : 564.0976 : 1" | ||
64 | inkscape:vp_y="0 : 1000 : 0" | ||
65 | inkscape:vp_z="1445.8591 : 564.0976 : 1" | ||
66 | inkscape:persp3d-origin="722.92957 : 376.06506 : 1" | ||
67 | id="perspective8145" /> | ||
68 | <linearGradient | ||
69 | id="linearGradient7622"> | ||
70 | <stop | ||
71 | style="stop-color:#ffffff;stop-opacity:1;" | ||
72 | offset="0" | ||
73 | id="stop7624" /> | ||
74 | <stop | ||
75 | style="stop-color:#ffffff;stop-opacity:0;" | ||
76 | offset="1" | ||
77 | id="stop7626" /> | ||
78 | </linearGradient> | ||
79 | <linearGradient | ||
80 | id="linearGradient4113"> | ||
81 | <stop | ||
82 | style="stop-color:#000000;stop-opacity:0;" | ||
83 | offset="0" | ||
84 | id="stop4115" /> | ||
85 | <stop | ||
86 | style="stop-color:#000000;stop-opacity:1;" | ||
87 | offset="1" | ||
88 | id="stop4117" /> | ||
89 | </linearGradient> | ||
90 | <linearGradient | ||
91 | inkscape:collect="always" | ||
92 | id="linearGradient3660"> | ||
93 | <stop | ||
94 | style="stop-color:#ffffff;stop-opacity:1;" | ||
95 | offset="0" | ||
96 | id="stop3662" /> | ||
97 | <stop | ||
98 | style="stop-color:#ffffff;stop-opacity:0;" | ||
99 | offset="1" | ||
100 | id="stop3664" /> | ||
101 | </linearGradient> | ||
102 | <linearGradient | ||
103 | id="linearGradient3627"> | ||
104 | <stop | ||
105 | style="stop-color:#ffffff;stop-opacity:1;" | ||
106 | offset="0" | ||
107 | id="stop3629" /> | ||
108 | <stop | ||
109 | style="stop-color:#000000;stop-opacity:1;" | ||
110 | offset="1" | ||
111 | id="stop3631" /> | ||
112 | </linearGradient> | ||
113 | <linearGradient | ||
114 | id="linearGradient2843"> | ||
115 | <stop | ||
116 | id="stop2845" | ||
117 | offset="0" | ||
118 | style="stop-color:#000000;stop-opacity:1;" /> | ||
119 | <stop | ||
120 | style="stop-color:#000000;stop-opacity:1;" | ||
121 | offset="0.02188784" | ||
122 | id="stop2847" /> | ||
123 | <stop | ||
124 | style="stop-color:#000000;stop-opacity:1;" | ||
125 | offset="0.75866222" | ||
126 | id="stop2849" /> | ||
127 | <stop | ||
128 | id="stop2851" | ||
129 | offset="0.88508981" | ||
130 | style="stop-color:#232323;stop-opacity:1;" /> | ||
131 | <stop | ||
132 | id="stop2853" | ||
133 | offset="1" | ||
134 | style="stop-color:#595959;stop-opacity:1;" /> | ||
135 | </linearGradient> | ||
136 | <linearGradient | ||
137 | inkscape:collect="always" | ||
138 | id="linearGradient8964"> | ||
139 | <stop | ||
140 | style="stop-color:#1a1a1a;stop-opacity:1;" | ||
141 | offset="0" | ||
142 | id="stop8966" /> | ||
143 | <stop | ||
144 | style="stop-color:#1a1a1a;stop-opacity:0;" | ||
145 | offset="1" | ||
146 | id="stop8968" /> | ||
147 | </linearGradient> | ||
148 | <linearGradient | ||
149 | id="linearGradient8952"> | ||
150 | <stop | ||
151 | style="stop-color:#0a0c0c;stop-opacity:1;" | ||
152 | offset="0" | ||
153 | id="stop8954" /> | ||
154 | <stop | ||
155 | style="stop-color:#1f2727;stop-opacity:0;" | ||
156 | offset="1" | ||
157 | id="stop8956" /> | ||
158 | </linearGradient> | ||
159 | <linearGradient | ||
160 | id="linearGradient8430"> | ||
161 | <stop | ||
162 | style="stop-color:#1e2323;stop-opacity:1;" | ||
163 | offset="0" | ||
164 | id="stop8432" /> | ||
165 | <stop | ||
166 | id="stop8438" | ||
167 | offset="0.55992389" | ||
168 | style="stop-color:#181d1d;stop-opacity:1;" /> | ||
169 | <stop | ||
170 | style="stop-color:#000000;stop-opacity:1;" | ||
171 | offset="1" | ||
172 | id="stop8434" /> | ||
173 | </linearGradient> | ||
174 | <linearGradient | ||
175 | id="linearGradient8398"> | ||
176 | <stop | ||
177 | style="stop-color:#283131;stop-opacity:0;" | ||
178 | offset="0" | ||
179 | id="stop8400" /> | ||
180 | <stop | ||
181 | id="stop8402" | ||
182 | offset="0.5125587" | ||
183 | style="stop-color:#1e2424;stop-opacity:0;" /> | ||
184 | <stop | ||
185 | style="stop-color:#000000;stop-opacity:1;" | ||
186 | offset="1" | ||
187 | id="stop8404" /> | ||
188 | </linearGradient> | ||
189 | <linearGradient | ||
190 | inkscape:collect="always" | ||
191 | id="linearGradient4870"> | ||
192 | <stop | ||
193 | style="stop-color:#c7bd80;stop-opacity:1;" | ||
194 | offset="0" | ||
195 | id="stop4872" /> | ||
196 | <stop | ||
197 | style="stop-color:#c7bd80;stop-opacity:0;" | ||
198 | offset="1" | ||
199 | id="stop4874" /> | ||
200 | </linearGradient> | ||
201 | <linearGradient | ||
202 | inkscape:collect="always" | ||
203 | id="linearGradient4862"> | ||
204 | <stop | ||
205 | style="stop-color:#e2e2e2;stop-opacity:1;" | ||
206 | offset="0" | ||
207 | id="stop4864" /> | ||
208 | <stop | ||
209 | style="stop-color:#e2e2e2;stop-opacity:0;" | ||
210 | offset="1" | ||
211 | id="stop4866" /> | ||
212 | </linearGradient> | ||
213 | <linearGradient | ||
214 | id="linearGradient4478"> | ||
215 | <stop | ||
216 | style="stop-color:#f9eed3;stop-opacity:1;" | ||
217 | offset="0" | ||
218 | id="stop4480" /> | ||
219 | <stop | ||
220 | style="stop-color:#000000;stop-opacity:0;" | ||
221 | offset="1" | ||
222 | id="stop4482" /> | ||
223 | </linearGradient> | ||
224 | <linearGradient | ||
225 | id="linearGradient4106"> | ||
226 | <stop | ||
227 | style="stop-color:#d9e002;stop-opacity:1;" | ||
228 | offset="0" | ||
229 | id="stop4108" /> | ||
230 | <stop | ||
231 | id="stop4114" | ||
232 | offset="0.5" | ||
233 | style="stop-color:#a9ae01;stop-opacity:1;" /> | ||
234 | <stop | ||
235 | style="stop-color:#717501;stop-opacity:1;" | ||
236 | offset="1" | ||
237 | id="stop4110" /> | ||
238 | </linearGradient> | ||
239 | <linearGradient | ||
240 | id="linearGradient4084"> | ||
241 | <stop | ||
242 | style="stop-color:#7d7d00;stop-opacity:1;" | ||
243 | offset="0" | ||
244 | id="stop4086" /> | ||
245 | <stop | ||
246 | id="stop4088" | ||
247 | offset="0.3636601" | ||
248 | style="stop-color:#c6c700;stop-opacity:1;" /> | ||
249 | <stop | ||
250 | style="stop-color:#f6f800;stop-opacity:1;" | ||
251 | offset="1" | ||
252 | id="stop4090" /> | ||
253 | </linearGradient> | ||
254 | <linearGradient | ||
255 | id="linearGradient4041"> | ||
256 | <stop | ||
257 | id="stop4043" | ||
258 | offset="0" | ||
259 | style="stop-color:#ffff00;stop-opacity:1;" /> | ||
260 | <stop | ||
261 | id="stop4045" | ||
262 | offset="1" | ||
263 | style="stop-color:#ffff00;stop-opacity:0;" /> | ||
264 | </linearGradient> | ||
265 | <linearGradient | ||
266 | id="linearGradient4025"> | ||
267 | <stop | ||
268 | style="stop-color:#ffffff;stop-opacity:1;" | ||
269 | offset="0" | ||
270 | id="stop4027" /> | ||
271 | <stop | ||
272 | style="stop-color:#ffffff;stop-opacity:0;" | ||
273 | offset="1" | ||
274 | id="stop4031" /> | ||
275 | </linearGradient> | ||
276 | <linearGradient | ||
277 | id="linearGradient4013"> | ||
278 | <stop | ||
279 | style="stop-color:#ffff00;stop-opacity:1;" | ||
280 | offset="0" | ||
281 | id="stop4015" /> | ||
282 | <stop | ||
283 | style="stop-color:#b2b200;stop-opacity:1;" | ||
284 | offset="1" | ||
285 | id="stop4017" /> | ||
286 | </linearGradient> | ||
287 | <linearGradient | ||
288 | id="linearGradient3985"> | ||
289 | <stop | ||
290 | style="stop-color:#000000;stop-opacity:1;" | ||
291 | offset="0" | ||
292 | id="stop3987" /> | ||
293 | <stop | ||
294 | style="stop-color:#1d1d1d;stop-opacity:1;" | ||
295 | offset="1" | ||
296 | id="stop3989" /> | ||
297 | </linearGradient> | ||
298 | <linearGradient | ||
299 | id="linearGradient3961"> | ||
300 | <stop | ||
301 | style="stop-color:#283131;stop-opacity:0;" | ||
302 | offset="0" | ||
303 | id="stop3963" /> | ||
304 | <stop | ||
305 | id="stop3965" | ||
306 | offset="0.5" | ||
307 | style="stop-color:#1e2424;stop-opacity:1;" /> | ||
308 | <stop | ||
309 | style="stop-color:#000000;stop-opacity:1;" | ||
310 | offset="1" | ||
311 | id="stop3967" /> | ||
312 | </linearGradient> | ||
313 | <linearGradient | ||
314 | id="linearGradient3951"> | ||
315 | <stop | ||
316 | id="stop3953" | ||
317 | offset="0" | ||
318 | style="stop-color:#344040;stop-opacity:1;" /> | ||
319 | <stop | ||
320 | style="stop-color:#222929;stop-opacity:1;" | ||
321 | offset="0.5" | ||
322 | id="stop3955" /> | ||
323 | <stop | ||
324 | id="stop3957" | ||
325 | offset="1" | ||
326 | style="stop-color:#000000;stop-opacity:1;" /> | ||
327 | </linearGradient> | ||
328 | <linearGradient | ||
329 | id="linearGradient3909"> | ||
330 | <stop | ||
331 | style="stop-color:#283131;stop-opacity:1;" | ||
332 | offset="0" | ||
333 | id="stop3911" /> | ||
334 | <stop | ||
335 | id="stop3917" | ||
336 | offset="0.5" | ||
337 | style="stop-color:#1e2424;stop-opacity:1;" /> | ||
338 | <stop | ||
339 | style="stop-color:#000000;stop-opacity:1;" | ||
340 | offset="1" | ||
341 | id="stop3913" /> | ||
342 | </linearGradient> | ||
343 | <linearGradient | ||
344 | id="linearGradient3537"> | ||
345 | <stop | ||
346 | style="stop-color:#ada469;stop-opacity:1;" | ||
347 | offset="0" | ||
348 | id="stop3539" /> | ||
349 | <stop | ||
350 | id="stop3545" | ||
351 | offset="0.81132078" | ||
352 | style="stop-color:#ada469;stop-opacity:1;" /> | ||
353 | <stop | ||
354 | style="stop-color:#ffffff;stop-opacity:1;" | ||
355 | offset="1" | ||
356 | id="stop3541" /> | ||
357 | </linearGradient> | ||
358 | <linearGradient | ||
359 | id="linearGradient3317"> | ||
360 | <stop | ||
361 | style="stop-color:#cfc690;stop-opacity:1" | ||
362 | offset="0" | ||
363 | id="stop3319" /> | ||
364 | <stop | ||
365 | id="stop3321" | ||
366 | offset="0.21161865" | ||
367 | style="stop-color:#afa775;stop-opacity:1;" /> | ||
368 | <stop | ||
369 | id="stop3323" | ||
370 | offset="0.53408515" | ||
371 | style="stop-color:#615c3a;stop-opacity:1;" /> | ||
372 | <stop | ||
373 | style="stop-color:#000000;stop-opacity:1;" | ||
374 | offset="0.76504093" | ||
375 | id="stop3325" /> | ||
376 | <stop | ||
377 | id="stop3327" | ||
378 | offset="1" | ||
379 | style="stop-color:#403518;stop-opacity:1;" /> | ||
380 | </linearGradient> | ||
381 | <linearGradient | ||
382 | id="linearGradient3239"> | ||
383 | <stop | ||
384 | id="stop3251" | ||
385 | offset="0" | ||
386 | style="stop-color:#cfc690;stop-opacity:1;" /> | ||
387 | <stop | ||
388 | style="stop-color:#afa775;stop-opacity:1;" | ||
389 | offset="0.21161865" | ||
390 | id="stop3267" /> | ||
391 | <stop | ||
392 | style="stop-color:#615c3a;stop-opacity:1;" | ||
393 | offset="0.53408515" | ||
394 | id="stop3261" /> | ||
395 | <stop | ||
396 | id="stop3265" | ||
397 | offset="0.76504093" | ||
398 | style="stop-color:#000000;stop-opacity:1;" /> | ||
399 | <stop | ||
400 | style="stop-color:#403518;stop-opacity:1;" | ||
401 | offset="1" | ||
402 | id="stop3243" /> | ||
403 | </linearGradient> | ||
404 | <radialGradient | ||
405 | inkscape:collect="always" | ||
406 | xlink:href="#linearGradient3239" | ||
407 | id="radialGradient3281" | ||
408 | gradientUnits="userSpaceOnUse" | ||
409 | gradientTransform="matrix(1.5480423,1.7414304,-1.9683515,1.7497638,-1130.5586,-1872.5121)" | ||
410 | spreadMethod="pad" | ||
411 | cx="806.52582" | ||
412 | cy="212.68117" | ||
413 | fx="806.52582" | ||
414 | fy="212.68117" | ||
415 | r="48.363216" /> | ||
416 | <radialGradient | ||
417 | inkscape:collect="always" | ||
418 | xlink:href="#linearGradient3317" | ||
419 | id="radialGradient3315" | ||
420 | cx="543.6698" | ||
421 | cy="147.3131" | ||
422 | fx="543.6698" | ||
423 | fy="147.3131" | ||
424 | r="47.863216" | ||
425 | gradientTransform="matrix(2.1382256,0,0,2.3382884,-77.03847,-101.68704)" | ||
426 | gradientUnits="userSpaceOnUse" /> | ||
427 | <radialGradient | ||
428 | inkscape:collect="always" | ||
429 | xlink:href="#linearGradient3537" | ||
430 | id="radialGradient3543" | ||
431 | cx="385" | ||
432 | cy="237.00504" | ||
433 | fx="385" | ||
434 | fy="237.00504" | ||
435 | r="86.928574" | ||
436 | gradientTransform="matrix(1,0,0,0.8562038,0,34.080427)" | ||
437 | gradientUnits="userSpaceOnUse" /> | ||
438 | <radialGradient | ||
439 | inkscape:collect="always" | ||
440 | xlink:href="#linearGradient3909" | ||
441 | id="radialGradient3915" | ||
442 | cx="418.30365" | ||
443 | cy="342.47794" | ||
444 | fx="418.30365" | ||
445 | fy="342.47794" | ||
446 | r="131.4509" | ||
447 | gradientTransform="matrix(1.3957347,0.6211056,-0.4244067,0.9537174,-15.061913,-227.96711)" | ||
448 | gradientUnits="userSpaceOnUse" /> | ||
449 | <radialGradient | ||
450 | inkscape:collect="always" | ||
451 | xlink:href="#linearGradient3951" | ||
452 | id="radialGradient3933" | ||
453 | cx="397.16388" | ||
454 | cy="336.95245" | ||
455 | fx="397.16388" | ||
456 | fy="336.95245" | ||
457 | r="36.75" | ||
458 | gradientUnits="userSpaceOnUse" | ||
459 | gradientTransform="matrix(1.9449972,2.4894837e-7,-2.4894833e-7,1.9449969,-375.31868,-318.41912)" /> | ||
460 | <linearGradient | ||
461 | inkscape:collect="always" | ||
462 | xlink:href="#linearGradient3961" | ||
463 | id="linearGradient3959" | ||
464 | x1="398.21429" | ||
465 | y1="343.52289" | ||
466 | x2="379.28571" | ||
467 | y2="265.30862" | ||
468 | gradientUnits="userSpaceOnUse" | ||
469 | gradientTransform="translate(450.03125,73.843964)" /> | ||
470 | <filter | ||
471 | inkscape:collect="always" | ||
472 | id="filter3981" | ||
473 | x="-0.30000001" | ||
474 | width="1.6" | ||
475 | y="-0.30000001" | ||
476 | height="1.6"> | ||
477 | <feGaussianBlur | ||
478 | inkscape:collect="always" | ||
479 | stdDeviation="2" | ||
480 | id="feGaussianBlur3983" /> | ||
481 | </filter> | ||
482 | <radialGradient | ||
483 | inkscape:collect="always" | ||
484 | xlink:href="#linearGradient3985" | ||
485 | id="radialGradient3991" | ||
486 | cx="402.48898" | ||
487 | cy="317.23578" | ||
488 | fx="402.48898" | ||
489 | fy="317.23578" | ||
490 | r="23.714285" | ||
491 | gradientUnits="userSpaceOnUse" | ||
492 | gradientTransform="matrix(4.3776616,0,0,4.3776616,-1358.3025,-1070.7357)" /> | ||
493 | <clipPath | ||
494 | clipPathUnits="userSpaceOnUse" | ||
495 | id="clipPath3999"> | ||
496 | <path | ||
497 | style="opacity:1;fill:#f5ff04;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" | ||
498 | d="M 179.64286,267.36218 C 157.23242,307.0651 119.02676,383.14247 110.35715,417.00504 C 101.70994,450.78014 101.58516,483.42158 110,503.43362 C 118.3602,523.31575 136.16398,539.06642 150.71428,544.86218 C 150.1179,530.48631 165.08723,501.57635 223.57143,472.36218 C 282.1977,443.07704 301.95306,445.23132 327.14285,425.21932 C 352.77291,404.85756 339.75316,358.17469 330.35714,331.29075 C 320.9229,304.29747 295.38973,272.16627 263.92857,261.6479 C 232.8953,251.27258 198.91081,256.79953 179.64286,267.36218 z" | ||
499 | id="path4001" | ||
500 | sodipodi:nodetypes="czzczzzzc" /> | ||
501 | </clipPath> | ||
502 | <radialGradient | ||
503 | inkscape:collect="always" | ||
504 | xlink:href="#linearGradient4013" | ||
505 | id="radialGradient4056" | ||
506 | gradientUnits="userSpaceOnUse" | ||
507 | gradientTransform="matrix(1.1323239,0.7659488,-1.4550286,2.1510098,588.75376,-711.79716)" | ||
508 | cx="228.81355" | ||
509 | cy="440.26971" | ||
510 | fx="228.81355" | ||
511 | fy="440.26971" | ||
512 | r="119.17509" /> | ||
513 | <radialGradient | ||
514 | inkscape:collect="always" | ||
515 | xlink:href="#linearGradient4041" | ||
516 | id="radialGradient4060" | ||
517 | gradientUnits="userSpaceOnUse" | ||
518 | gradientTransform="matrix(5.911206e-2,2.6869855,-0.7234268,1.5914947e-2,408.72779,-424.56452)" | ||
519 | cx="275.4422" | ||
520 | cy="335.34866" | ||
521 | fx="275.4422" | ||
522 | fy="335.34866" | ||
523 | r="36.75" /> | ||
524 | <radialGradient | ||
525 | inkscape:collect="always" | ||
526 | xlink:href="#linearGradient4025" | ||
527 | id="radialGradient4062" | ||
528 | gradientUnits="userSpaceOnUse" | ||
529 | gradientTransform="matrix(5.911206e-2,2.6869855,-0.7234268,1.5914947e-2,408.72779,-424.56452)" | ||
530 | cx="275.4422" | ||
531 | cy="335.34866" | ||
532 | fx="275.4422" | ||
533 | fy="335.34866" | ||
534 | r="36.75" /> | ||
535 | <linearGradient | ||
536 | inkscape:collect="always" | ||
537 | xlink:href="#linearGradient4084" | ||
538 | id="linearGradient4082" | ||
539 | gradientUnits="userSpaceOnUse" | ||
540 | x1="182.35046" | ||
541 | y1="256.11136" | ||
542 | x2="145.53348" | ||
543 | y2="542.20502" /> | ||
544 | <clipPath | ||
545 | clipPathUnits="userSpaceOnUse" | ||
546 | id="clipPath4100"> | ||
547 | <path | ||
548 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9000755px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
549 | d="M 265.93541,126.68393 L 247.1682,295.54701 L 421.27363,222.42633 L 483.22803,311.08516 L 541.11243,279.09486 L 503.57801,99.035183 L 265.93541,126.68393 z" | ||
550 | id="path4102" | ||
551 | sodipodi:nodetypes="ccccccc" /> | ||
552 | </clipPath> | ||
553 | <radialGradient | ||
554 | inkscape:collect="always" | ||
555 | xlink:href="#linearGradient4106" | ||
556 | id="radialGradient4112" | ||
557 | cx="250.22678" | ||
558 | cy="475.09763" | ||
559 | fx="250.22678" | ||
560 | fy="475.09763" | ||
561 | r="95.98877" | ||
562 | gradientTransform="matrix(1.2259004,-0.7077739,0.1413989,0.2449102,322.22326,608.91815)" | ||
563 | gradientUnits="userSpaceOnUse" /> | ||
564 | <linearGradient | ||
565 | inkscape:collect="always" | ||
566 | xlink:href="#linearGradient4478" | ||
567 | id="linearGradient4484" | ||
568 | x1="412.08926" | ||
569 | y1="404.91574" | ||
570 | x2="417.375" | ||
571 | y2="401.82648" | ||
572 | gradientUnits="userSpaceOnUse" /> | ||
573 | <linearGradient | ||
574 | inkscape:collect="always" | ||
575 | xlink:href="#linearGradient4478" | ||
576 | id="linearGradient4486" | ||
577 | x1="411.91071" | ||
578 | y1="404.91577" | ||
579 | x2="417.375" | ||
580 | y2="401.82648" | ||
581 | gradientUnits="userSpaceOnUse" /> | ||
582 | <linearGradient | ||
583 | inkscape:collect="always" | ||
584 | xlink:href="#linearGradient4478" | ||
585 | id="linearGradient4488" | ||
586 | x1="411.91071" | ||
587 | y1="405.54077" | ||
588 | x2="417.375" | ||
589 | y2="401.82648" | ||
590 | gradientUnits="userSpaceOnUse" /> | ||
591 | <linearGradient | ||
592 | inkscape:collect="always" | ||
593 | xlink:href="#linearGradient4478" | ||
594 | id="linearGradient4490" | ||
595 | x1="412.08926" | ||
596 | y1="405.54077" | ||
597 | x2="417.375" | ||
598 | y2="401.82648" | ||
599 | gradientUnits="userSpaceOnUse" /> | ||
600 | <linearGradient | ||
601 | inkscape:collect="always" | ||
602 | xlink:href="#linearGradient4478" | ||
603 | id="linearGradient4492" | ||
604 | x1="411.73212" | ||
605 | y1="405.54077" | ||
606 | x2="417.375" | ||
607 | y2="401.82648" | ||
608 | gradientUnits="userSpaceOnUse" /> | ||
609 | <radialGradient | ||
610 | inkscape:collect="always" | ||
611 | xlink:href="#linearGradient4862" | ||
612 | id="radialGradient4868" | ||
613 | cx="429.56738" | ||
614 | cy="377.42877" | ||
615 | fx="429.56738" | ||
616 | fy="377.42877" | ||
617 | r="72.079735" | ||
618 | gradientTransform="matrix(1,0,0,0.618034,0,144.16496)" | ||
619 | gradientUnits="userSpaceOnUse" /> | ||
620 | <radialGradient | ||
621 | inkscape:collect="always" | ||
622 | xlink:href="#linearGradient4870" | ||
623 | id="radialGradient4876" | ||
624 | cx="437.6991" | ||
625 | cy="391.21735" | ||
626 | fx="437.6991" | ||
627 | fy="391.21735" | ||
628 | r="36.611931" | ||
629 | gradientTransform="matrix(1,0,0,0.618034,0,149.43174)" | ||
630 | gradientUnits="userSpaceOnUse" /> | ||
631 | <radialGradient | ||
632 | inkscape:collect="always" | ||
633 | xlink:href="#linearGradient4013" | ||
634 | id="radialGradient3585" | ||
635 | gradientUnits="userSpaceOnUse" | ||
636 | gradientTransform="matrix(1.1323239,0.7659488,-1.4550286,2.1510098,588.75376,-711.79716)" | ||
637 | cx="228.81355" | ||
638 | cy="440.26971" | ||
639 | fx="228.81355" | ||
640 | fy="440.26971" | ||
641 | r="119.17509" /> | ||
642 | <linearGradient | ||
643 | inkscape:collect="always" | ||
644 | xlink:href="#linearGradient4084" | ||
645 | id="linearGradient3587" | ||
646 | gradientUnits="userSpaceOnUse" | ||
647 | x1="182.35046" | ||
648 | y1="256.11136" | ||
649 | x2="145.53348" | ||
650 | y2="542.20502" /> | ||
651 | <radialGradient | ||
652 | inkscape:collect="always" | ||
653 | xlink:href="#linearGradient3317" | ||
654 | id="radialGradient8410" | ||
655 | gradientUnits="userSpaceOnUse" | ||
656 | gradientTransform="matrix(1.0036478,-1.0345492e-7,1.7124628e-7,1.6613125,-753.99632,-302.76972)" | ||
657 | cx="317.78754" | ||
658 | cy="129.65378" | ||
659 | fx="317.78754" | ||
660 | fy="129.65378" | ||
661 | r="47.863216" /> | ||
662 | <radialGradient | ||
663 | inkscape:collect="always" | ||
664 | xlink:href="#linearGradient8398" | ||
665 | id="radialGradient8412" | ||
666 | gradientUnits="userSpaceOnUse" | ||
667 | gradientTransform="matrix(2.0747661,-0.1577957,0.2382425,3.1325183,-1144.2358,-272.29325)" | ||
668 | cx="325.30847" | ||
669 | cy="80.909554" | ||
670 | fx="325.30847" | ||
671 | fy="80.909554" | ||
672 | r="26.937988" /> | ||
673 | <clipPath | ||
674 | clipPathUnits="userSpaceOnUse" | ||
675 | id="clipPath8514"> | ||
676 | <path | ||
677 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
678 | d="M 352.24553,211.99185 C 348.4411,186.72762 335.43581,161.35383 335.08873,136.46662 C 334.90247,123.1111 338.36158,109.89571 348.84426,96.912574 C 385.19128,31.616739 465.78517,12.217889 534.77892,5.447147 C 621.70131,-5.569654 719.69159,23.387219 768.15026,100.84843 C 822.27428,176.58173 824.82502,273.38755 848.7623,360.37638 C 878.20009,487.50398 903.54144,616.59052 909.15454,747.22673 C 906.09106,825.40858 900.7282,912.41088 848.65133,975.36086 C 800.62479,1025.7183 725.86486,1025.4139 661.58145,1034.3632 C 571.02606,1039.0182 477.22992,1018.2174 399.79755,970.16496 C 335.02191,932.22495 304.06736,856.68633 302.51815,784.14538 C 294.12898,704.27022 328.90967,630.33687 354.13855,556.98577 C 361.60916,474.2247 363.55141,390.73802 363.79189,307.60093 C 362.95507,275.40549 356.70236,243.7836 352.24553,211.99185 z" | ||
679 | id="path8516" | ||
680 | sodipodi:nodetypes="cscccccccccccc" /> | ||
681 | </clipPath> | ||
682 | <clipPath | ||
683 | clipPathUnits="userSpaceOnUse" | ||
684 | id="clipPath8604"> | ||
685 | <path | ||
686 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
687 | d="M 352.24553,211.99185 C 348.4411,186.72762 335.43581,161.35383 335.08873,136.46662 C 334.90247,123.1111 338.36158,109.89571 348.84426,96.912574 C 385.19128,31.616739 465.78517,12.217889 534.77892,5.447147 C 621.70131,-5.569654 719.69159,23.387219 768.15026,100.84843 C 822.27428,176.58173 824.82502,273.38755 848.7623,360.37638 C 878.20009,487.50398 903.54144,616.59052 909.15454,747.22673 C 906.09106,825.40858 900.7282,912.41088 848.65133,975.36086 C 800.62479,1025.7183 725.86486,1025.4139 661.58145,1034.3632 C 571.02606,1039.0182 477.22992,1018.2174 399.79755,970.16496 C 335.02191,932.22495 304.06736,856.68633 302.51815,784.14538 C 294.12898,704.27022 328.90967,630.33687 354.13855,556.98577 C 361.60916,474.2247 363.55141,390.73802 363.79189,307.60093 C 362.95507,275.40549 356.70236,243.7836 352.24553,211.99185 z" | ||
688 | id="path8606" | ||
689 | sodipodi:nodetypes="cscccccccccccc" /> | ||
690 | </clipPath> | ||
691 | <clipPath | ||
692 | clipPathUnits="userSpaceOnUse" | ||
693 | id="clipPath8610"> | ||
694 | <path | ||
695 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
696 | d="M 352.24553,211.99185 C 348.4411,186.72762 335.43581,161.35383 335.08873,136.46662 C 334.90247,123.1111 338.36158,109.89571 348.84426,96.912574 C 385.19128,31.616739 465.78517,12.217889 534.77892,5.447147 C 621.70131,-5.569654 719.69159,23.387219 768.15026,100.84843 C 822.27428,176.58173 824.82502,273.38755 848.7623,360.37638 C 878.20009,487.50398 903.54144,616.59052 909.15454,747.22673 C 906.09106,825.40858 900.7282,912.41088 848.65133,975.36086 C 800.62479,1025.7183 725.86486,1025.4139 661.58145,1034.3632 C 571.02606,1039.0182 477.22992,1018.2174 399.79755,970.16496 C 335.02191,932.22495 304.06736,856.68633 302.51815,784.14538 C 294.12898,704.27022 328.90967,630.33687 354.13855,556.98577 C 361.60916,474.2247 363.55141,390.73802 363.79189,307.60093 C 362.95507,275.40549 356.70236,243.7836 352.24553,211.99185 z" | ||
697 | id="path8612" | ||
698 | sodipodi:nodetypes="cscccccccccccc" /> | ||
699 | </clipPath> | ||
700 | <clipPath | ||
701 | clipPathUnits="userSpaceOnUse" | ||
702 | id="clipPath8616"> | ||
703 | <path | ||
704 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
705 | d="M 352.24553,211.99185 C 348.4411,186.72762 335.43581,161.35383 335.08873,136.46662 C 334.90247,123.1111 338.36158,109.89571 348.84426,96.912574 C 385.19128,31.616739 465.78517,12.217889 534.77892,5.447147 C 621.70131,-5.569654 719.69159,23.387219 768.15026,100.84843 C 822.27428,176.58173 824.82502,273.38755 848.7623,360.37638 C 878.20009,487.50398 903.54144,616.59052 909.15454,747.22673 C 906.09106,825.40858 900.7282,912.41088 848.65133,975.36086 C 800.62479,1025.7183 725.86486,1025.4139 661.58145,1034.3632 C 571.02606,1039.0182 477.22992,1018.2174 399.79755,970.16496 C 335.02191,932.22495 304.06736,856.68633 302.51815,784.14538 C 294.12898,704.27022 328.90967,630.33687 354.13855,556.98577 C 361.60916,474.2247 363.55141,390.73802 363.79189,307.60093 C 362.95507,275.40549 356.70236,243.7836 352.24553,211.99185 z" | ||
706 | id="path8618" | ||
707 | sodipodi:nodetypes="cscccccccccccc" /> | ||
708 | </clipPath> | ||
709 | <clipPath | ||
710 | clipPathUnits="userSpaceOnUse" | ||
711 | id="clipPath8622"> | ||
712 | <path | ||
713 | style="opacity:1;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
714 | d="M 821.64329,477.88997 C 821.64329,477.88997 844.26276,471.38316 857.38604,472.01724 C 870.50932,472.65133 888.02762,473.95586 901.09489,484.20343 C 914.16216,494.45099 926.16263,511.3435 935.20728,542.57308 C 944.25193,573.80266 936.9056,641.82509 929.03125,685.92043 C 921.1569,730.01577 900.76615,792.03341 884.03125,825.92043 C 867.29635,859.80745 834.23354,903.41563 823.46182,915.79659 C 812.0976,928.85856 767.25593,952.22276 744.03125,958.06326 C 749.33455,947.45666 792.93101,907.47442 779.03125,897.349 C 765.01228,887.13674 733.27116,943.33136 694.7381,926.38217 C 716.12041,913.25005 736.5175,875.19611 728.77871,859.78772 C 720.93846,844.17733 698.07378,908.54529 635.24317,896.8006 C 665.29521,869.27394 690.65023,825.89659 676.50587,813.8209 C 662.09071,801.51403 616.04412,868.11405 616.04412,868.11405 C 616.04412,868.11405 613.22222,826.41287 629.81732,799.50673 C 646.45667,772.52886 709.47029,717.89146 729.37045,687.80331 C 749.2706,657.71517 762.98301,621.79429 771.50587,595.28537 C 780.02873,568.77645 787.30681,518.18583 787.30681,518.18583" | ||
715 | id="path8624" | ||
716 | sodipodi:nodetypes="czzzzzzczczczczzzc" /> | ||
717 | </clipPath> | ||
718 | <clipPath | ||
719 | clipPathUnits="userSpaceOnUse" | ||
720 | id="clipPath8642"> | ||
721 | <path | ||
722 | style="opacity:1;fill:#0f0f0f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
723 | d="M 366.88839,504.13471 C 366.88839,504.13471 337.33433,544.70776 319.03125,578.42042 C 300.72816,612.13309 260.41016,704.77736 248.67411,749.49185 C 236.91471,794.29529 186.17411,873.06329 186.17411,873.06329 L 262.24554,891.27757 C 262.24554,891.27757 274.05266,878.45422 293.31696,845.20614 C 312.58126,811.95806 353.67411,706.63471 353.67411,706.63471 L 366.88839,504.13471 z" | ||
724 | id="path8644" | ||
725 | sodipodi:nodetypes="czzcczcc" /> | ||
726 | </clipPath> | ||
727 | <clipPath | ||
728 | clipPathUnits="userSpaceOnUse" | ||
729 | id="clipPath8658"> | ||
730 | <path | ||
731 | style="opacity:1;fill:#0b0b0b;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
732 | d="M 569.03125,1018.7776 C 564.74554,1019.4919 541.4031,1022.3957 511.17411,1028.7776 C 480.94512,1035.1595 411.39918,1054.7395 368.31696,1064.4919 C 325.23474,1074.2443 251.05253,1099.3079 211.40434,1091.7573 C 171.75616,1084.2067 121.88839,1027.349 121.88839,1027.349 L 126.17411,933.06329 C 126.17411,933.06329 212.05962,916.86235 238.31696,899.49186 C 264.57431,882.12137 283.89934,849.82588 297.60268,828.06329 C 311.30602,806.3007 330.45982,756.63471 330.45982,756.63471 L 569.03125,1018.7776 z" | ||
733 | id="path8660" | ||
734 | sodipodi:nodetypes="czzzcczzcc" /> | ||
735 | </clipPath> | ||
736 | <filter | ||
737 | inkscape:collect="always" | ||
738 | id="filter8802" | ||
739 | x="-0.35311759" | ||
740 | width="1.7062352" | ||
741 | y="-0.1817714" | ||
742 | height="1.3635428"> | ||
743 | <feGaussianBlur | ||
744 | inkscape:collect="always" | ||
745 | stdDeviation="48.038491" | ||
746 | id="feGaussianBlur8804" /> | ||
747 | </filter> | ||
748 | <filter | ||
749 | inkscape:collect="always" | ||
750 | id="filter8806" | ||
751 | x="-0.61142862" | ||
752 | width="2.2228572" | ||
753 | y="-0.14930232" | ||
754 | height="1.2986046"> | ||
755 | <feGaussianBlur | ||
756 | inkscape:collect="always" | ||
757 | stdDeviation="37.830213" | ||
758 | id="feGaussianBlur8808" /> | ||
759 | </filter> | ||
760 | <filter | ||
761 | inkscape:collect="always" | ||
762 | id="filter8810" | ||
763 | x="-0.23519406" | ||
764 | width="1.4703881" | ||
765 | y="-0.24500646" | ||
766 | height="1.4900129"> | ||
767 | <feGaussianBlur | ||
768 | inkscape:collect="always" | ||
769 | stdDeviation="58.328041" | ||
770 | id="feGaussianBlur8812" /> | ||
771 | </filter> | ||
772 | <filter | ||
773 | inkscape:collect="always" | ||
774 | id="filter8814" | ||
775 | x="-0.20466694" | ||
776 | width="1.4093339" | ||
777 | y="-0.29007819" | ||
778 | height="1.5801564"> | ||
779 | <feGaussianBlur | ||
780 | inkscape:collect="always" | ||
781 | stdDeviation="22.300169" | ||
782 | id="feGaussianBlur8816" /> | ||
783 | </filter> | ||
784 | <filter | ||
785 | inkscape:collect="always" | ||
786 | id="filter8818" | ||
787 | x="-0.34381232" | ||
788 | width="1.6876246" | ||
789 | y="-0.18433961" | ||
790 | height="1.3686792"> | ||
791 | <feGaussianBlur | ||
792 | inkscape:collect="always" | ||
793 | stdDeviation="34.542167" | ||
794 | id="feGaussianBlur8820" /> | ||
795 | </filter> | ||
796 | <filter | ||
797 | inkscape:collect="always" | ||
798 | id="filter8822" | ||
799 | x="-0.2742857" | ||
800 | width="1.5485713" | ||
801 | y="-0.21333334" | ||
802 | height="1.4266667"> | ||
803 | <feGaussianBlur | ||
804 | inkscape:collect="always" | ||
805 | stdDeviation="11.313708" | ||
806 | id="feGaussianBlur8824" /> | ||
807 | </filter> | ||
808 | <filter | ||
809 | inkscape:collect="always" | ||
810 | id="filter8826" | ||
811 | x="-0.25894088" | ||
812 | width="1.5178818" | ||
813 | y="-0.2236412" | ||
814 | height="1.4472824"> | ||
815 | <feGaussianBlur | ||
816 | inkscape:collect="always" | ||
817 | stdDeviation="19.631544" | ||
818 | id="feGaussianBlur8828" /> | ||
819 | </filter> | ||
820 | <filter | ||
821 | inkscape:collect="always" | ||
822 | id="filter8856" | ||
823 | x="-0.3253231" | ||
824 | width="1.6506462" | ||
825 | y="-0.19013336" | ||
826 | height="1.3802667"> | ||
827 | <feGaussianBlur | ||
828 | inkscape:collect="always" | ||
829 | stdDeviation="28.712591" | ||
830 | id="feGaussianBlur8858" /> | ||
831 | </filter> | ||
832 | <filter | ||
833 | inkscape:collect="always" | ||
834 | id="filter8860" | ||
835 | x="-0.38093024" | ||
836 | width="1.7618605" | ||
837 | y="-0.17518716" | ||
838 | height="1.3503743"> | ||
839 | <feGaussianBlur | ||
840 | inkscape:collect="always" | ||
841 | stdDeviation="19.304015" | ||
842 | id="feGaussianBlur8862" /> | ||
843 | </filter> | ||
844 | <filter | ||
845 | inkscape:collect="always" | ||
846 | id="filter8888" | ||
847 | x="-0.2112188" | ||
848 | width="1.4224375" | ||
849 | y="-0.16808605" | ||
850 | height="1.3361721"> | ||
851 | <feGaussianBlur | ||
852 | inkscape:collect="always" | ||
853 | stdDeviation="8.3693583" | ||
854 | id="feGaussianBlur8890" /> | ||
855 | </filter> | ||
856 | <filter | ||
857 | inkscape:collect="always" | ||
858 | id="filter8892" | ||
859 | x="-0.18692794" | ||
860 | width="1.3738559" | ||
861 | y="-0.23646873" | ||
862 | height="1.4729375"> | ||
863 | <feGaussianBlur | ||
864 | inkscape:collect="always" | ||
865 | stdDeviation="31.21228" | ||
866 | id="feGaussianBlur8894" /> | ||
867 | </filter> | ||
868 | <clipPath | ||
869 | clipPathUnits="userSpaceOnUse" | ||
870 | id="clipPath8906"> | ||
871 | <path | ||
872 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
873 | d="M 352.24553,211.99185 C 348.4411,186.72762 335.43581,161.35383 335.08873,136.46662 C 334.90247,123.1111 338.36158,109.89571 348.84426,96.912574 C 385.19128,31.616739 465.78517,12.217889 534.77892,5.447147 C 621.70131,-5.569654 719.69159,23.387219 768.15026,100.84843 C 822.27428,176.58173 824.82502,273.38755 848.7623,360.37638 C 878.20009,487.50398 903.54144,616.59052 909.15454,747.22673 C 906.09106,825.40858 900.7282,912.41088 848.65133,975.36086 C 800.62479,1025.7183 725.86486,1025.4139 661.58145,1034.3632 C 571.02606,1039.0182 477.22992,1018.2174 399.79755,970.16496 C 335.02191,932.22495 304.06736,856.68633 302.51815,784.14538 C 294.12898,704.27022 328.90967,630.33687 354.13855,556.98577 C 361.60916,474.2247 363.55141,390.73802 363.79189,307.60093 C 362.95507,275.40549 356.70236,243.7836 352.24553,211.99185 z" | ||
874 | id="path8908" | ||
875 | sodipodi:nodetypes="cscccccccccccc" /> | ||
876 | </clipPath> | ||
877 | <filter | ||
878 | inkscape:collect="always" | ||
879 | id="filter8940" | ||
880 | x="-0.25152978" | ||
881 | width="1.5030596" | ||
882 | y="-0.053035267" | ||
883 | height="1.1060705"> | ||
884 | <feGaussianBlur | ||
885 | inkscape:collect="always" | ||
886 | stdDeviation="13.024603" | ||
887 | id="feGaussianBlur8942" /> | ||
888 | </filter> | ||
889 | <linearGradient | ||
890 | inkscape:collect="always" | ||
891 | xlink:href="#linearGradient8952" | ||
892 | id="linearGradient8958" | ||
893 | x1="609.31244" | ||
894 | y1="239.46866" | ||
895 | x2="560.83142" | ||
896 | y2="262.86206" | ||
897 | gradientUnits="userSpaceOnUse" | ||
898 | gradientTransform="translate(450.03125,73.843964)" /> | ||
899 | <linearGradient | ||
900 | inkscape:collect="always" | ||
901 | xlink:href="#linearGradient8964" | ||
902 | id="linearGradient8970" | ||
903 | x1="603.84064" | ||
904 | y1="627.85303" | ||
905 | x2="616.24396" | ||
906 | y2="585.42664" | ||
907 | gradientUnits="userSpaceOnUse" | ||
908 | gradientTransform="translate(450.03125,73.843964)" /> | ||
909 | <filter | ||
910 | inkscape:collect="always" | ||
911 | id="filter9020" | ||
912 | x="-0.32861114" | ||
913 | width="1.6572223" | ||
914 | y="-0.182" | ||
915 | height="1.364"> | ||
916 | <feGaussianBlur | ||
917 | inkscape:collect="always" | ||
918 | stdDeviation="20.912684" | ||
919 | id="feGaussianBlur9022" /> | ||
920 | </filter> | ||
921 | <filter | ||
922 | inkscape:collect="always" | ||
923 | id="filter9024" | ||
924 | x="-0.55453134" | ||
925 | width="2.1090627" | ||
926 | y="-0.51434779" | ||
927 | height="2.0286956"> | ||
928 | <feGaussianBlur | ||
929 | inkscape:collect="always" | ||
930 | stdDeviation="20.912684" | ||
931 | id="feGaussianBlur9026" /> | ||
932 | </filter> | ||
933 | <filter | ||
934 | inkscape:collect="always" | ||
935 | id="filter9044" | ||
936 | x="-0.32631579" | ||
937 | width="1.6526316" | ||
938 | y="-0.84545463" | ||
939 | height="2.6909094"> | ||
940 | <feGaussianBlur | ||
941 | inkscape:collect="always" | ||
942 | stdDeviation="21.92031" | ||
943 | id="feGaussianBlur9046" /> | ||
944 | </filter> | ||
945 | <filter | ||
946 | inkscape:collect="always" | ||
947 | id="filter9048" | ||
948 | x="-0.40879121" | ||
949 | width="1.8175824" | ||
950 | y="-0.71538466" | ||
951 | height="2.4307692"> | ||
952 | <feGaussianBlur | ||
953 | inkscape:collect="always" | ||
954 | stdDeviation="21.92031" | ||
955 | id="feGaussianBlur9050" /> | ||
956 | </filter> | ||
957 | <filter | ||
958 | inkscape:collect="always" | ||
959 | id="filter3587" | ||
960 | x="-0.1"> | ||
961 | <feGaussianBlur | ||
962 | inkscape:collect="always" | ||
963 | stdDeviation="8.881432" | ||
964 | id="feGaussianBlur3589" /> | ||
965 | </filter> | ||
966 | <clipPath | ||
967 | clipPathUnits="userSpaceOnUse" | ||
968 | id="clipPath3602"> | ||
969 | <path | ||
970 | sodipodi:nodetypes="czzzzzzczczczczzzc" | ||
971 | id="path3604" | ||
972 | d="M 647.61204,540.04601 C 647.61204,540.04601 670.23151,533.5392 683.35479,534.17328 C 696.47807,534.80737 713.99637,536.1119 727.06364,546.35947 C 740.13091,556.60703 752.13138,573.49954 761.17603,604.72912 C 770.22068,635.9587 762.87435,703.98113 755,748.07647 C 747.12565,792.17181 726.7349,854.18945 710,888.07647 C 693.2651,921.96349 660.20229,965.57167 649.43057,977.95263 C 638.06635,991.0146 593.22468,1014.3788 570,1020.2193 C 575.3033,1009.6127 618.89976,969.63046 605,959.50504 C 590.98103,949.29278 559.23991,1005.4874 520.70685,988.53821 C 542.08916,975.40609 562.48625,937.35215 554.74746,921.94376 C 546.90721,906.33337 524.04253,970.70133 461.21192,958.95664 C 491.26396,931.42998 516.61898,888.05263 502.47462,875.97694 C 488.05946,863.67007 442.01287,930.27009 442.01287,930.27009 C 442.01287,930.27009 439.19097,888.56891 455.78607,861.66277 C 472.42542,834.6849 535.43904,780.0475 555.3392,749.95935 C 575.23935,719.87121 588.95176,683.95033 597.47462,657.44141 C 605.99748,630.93249 613.27556,580.34187 613.27556,580.34187" | ||
973 | style="opacity:1;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
974 | </clipPath> | ||
975 | <filter | ||
976 | inkscape:collect="always" | ||
977 | id="filter4120" | ||
978 | x="-0.2770822" | ||
979 | width="1.5541644" | ||
980 | y="-0.32482043" | ||
981 | height="1.6496409"> | ||
982 | <feGaussianBlur | ||
983 | inkscape:collect="always" | ||
984 | stdDeviation="19.956289" | ||
985 | id="feGaussianBlur4122" /> | ||
986 | </filter> | ||
987 | <clipPath | ||
988 | clipPathUnits="userSpaceOnUse" | ||
989 | id="clipPath3631"> | ||
990 | <path | ||
991 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
992 | d="M 760.16396,935.83377 C 766.95806,954.73656 770.65765,969.13346 772.05426,987.04566 C 773.45088,1004.958 768.27158,1038.8465 769.1538,1057.7018 C 770.03555,1076.547 777.28749,1097.8008 796.49843,1106.6707 C 815.9173,1115.6365 845.81767,1116.882 870.61827,1103.5251 C 895.41887,1090.1681 928.01929,1033.1996 941.59253,1006.2164 C 955.21638,979.13246 980.3536,891.71903 986.25333,856.44781 C 992.15306,821.1766 988.80387,815.14704 981.63585,807.39232 C 984.27615,779.55217 980.13613,752.45689 994.74554,720.20614 C 964.49653,732.03184 957.36325,760.36684 946.42665,785.71122 C 938.42574,734.77829 946.63581,714.43803 949.74554,684.49186 C 920.68078,699.26977 906.88403,731.60588 904.74554,777.349 C 893.82159,776.0448 883.3541,772.91477 871.17411,776.63471 C 870.91007,730.61137 869.71055,699.7453 880.08474,662.42822 C 826.82927,683.45508 817.13746,769.02232 824.03125,775.20614 C 813.14843,775.74114 802.66017,773.90884 791.17411,778.06329 C 791.81303,735.49194 790.91365,693.15468 761.17411,655.20614 C 761.17411,655.20614 730.21605,736.12848 729.74554,758.77757 C 729.27503,781.42666 739.19713,798.94345 739.19713,798.94345 C 739.19713,798.94345 730.62906,835.68396 732.89854,857.17568 C 735.19439,878.91714 753.34144,916.85185 760.16396,935.83377 z" | ||
993 | id="path3633" | ||
994 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
995 | </clipPath> | ||
996 | <clipPath | ||
997 | clipPathUnits="userSpaceOnUse" | ||
998 | id="clipPath3665"> | ||
999 | <path | ||
1000 | sodipodi:nodetypes="czzcczcc" | ||
1001 | id="path3667" | ||
1002 | d="M 366.88839,504.13471 C 366.88839,504.13471 337.33433,544.70776 319.03125,578.42042 C 300.72816,612.13309 260.41016,704.77736 248.67411,749.49185 C 236.91471,794.29529 186.17411,873.06329 186.17411,873.06329 L 262.24554,891.27757 C 262.24554,891.27757 274.05266,878.45422 293.31696,845.20614 C 312.58126,811.95806 353.67411,706.63471 353.67411,706.63471 L 366.88839,504.13471 z" | ||
1003 | style="opacity:1;fill:#0f0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1004 | </clipPath> | ||
1005 | <clipPath | ||
1006 | clipPathUnits="userSpaceOnUse" | ||
1007 | id="clipPath3677"> | ||
1008 | <path | ||
1009 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1010 | d="M 586.13271,997.98981 C 592.92681,1016.8926 596.6264,1031.2895 598.02301,1049.2017 C 599.41963,1067.114 594.24033,1101.0025 595.12255,1119.8578 C 596.0043,1138.703 603.25624,1159.9568 622.46718,1168.8267 C 641.88605,1177.7925 671.78642,1179.038 696.58702,1165.6811 C 721.38762,1152.3241 753.98804,1095.3556 767.56128,1068.3724 C 781.18513,1041.2885 806.32235,953.87507 812.22208,918.60385 C 818.12181,883.33264 814.77262,877.30308 807.6046,869.54836 C 810.2449,841.70821 806.10488,814.61293 820.71429,782.36218 C 790.46528,794.18788 783.332,822.52288 772.3954,847.86726 C 764.39449,796.93433 772.60456,776.59407 775.71429,746.6479 C 746.64953,761.42581 732.85278,793.76192 730.71429,839.50504 C 719.79034,838.20084 709.32285,835.07081 697.14286,838.79075 C 696.87882,792.76741 695.6793,761.90134 706.05349,724.58426 C 652.79802,745.61112 643.10621,831.17836 650,837.36218 C 639.11718,837.89718 628.62892,836.06488 617.14286,840.21933 C 617.78178,797.64798 616.8824,755.31072 587.14286,717.36218 C 587.14286,717.36218 556.1848,798.28452 555.71429,820.93361 C 555.24378,843.5827 565.16588,861.09949 565.16588,861.09949 C 565.16588,861.09949 556.59781,897.84 558.86729,919.33172 C 561.16314,941.07318 579.31019,979.00789 586.13271,997.98981 z" | ||
1011 | id="path3679" | ||
1012 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
1013 | </clipPath> | ||
1014 | <filter | ||
1015 | inkscape:collect="always" | ||
1016 | id="filter3898"> | ||
1017 | <feGaussianBlur | ||
1018 | inkscape:collect="always" | ||
1019 | stdDeviation="10.892985" | ||
1020 | id="feGaussianBlur3900" /> | ||
1021 | </filter> | ||
1022 | <filter | ||
1023 | inkscape:collect="always" | ||
1024 | id="filter4130" | ||
1025 | x="-0.49509686" | ||
1026 | width="1.9901937" | ||
1027 | y="-0.26708817" | ||
1028 | height="1.5341763"> | ||
1029 | <feGaussianBlur | ||
1030 | inkscape:collect="always" | ||
1031 | stdDeviation="10.730622" | ||
1032 | id="feGaussianBlur4132" /> | ||
1033 | </filter> | ||
1034 | <filter | ||
1035 | inkscape:collect="always" | ||
1036 | id="filter4141" | ||
1037 | x="-0.40611032" | ||
1038 | width="1.8122206" | ||
1039 | y="-0.30260596" | ||
1040 | height="1.6052119"> | ||
1041 | <feGaussianBlur | ||
1042 | inkscape:collect="always" | ||
1043 | stdDeviation="9.8586086" | ||
1044 | id="feGaussianBlur4143" /> | ||
1045 | </filter> | ||
1046 | <clipPath | ||
1047 | clipPathUnits="userSpaceOnUse" | ||
1048 | id="clipPath4177"> | ||
1049 | <path | ||
1050 | sodipodi:nodetypes="czzzzzzcccccccccczczz" | ||
1051 | id="path4179" | ||
1052 | d="M 586.13271,997.98981 C 592.92681,1016.8926 596.6264,1031.2895 598.02301,1049.2017 C 599.41963,1067.114 594.24033,1101.0025 595.12255,1119.8578 C 596.0043,1138.703 603.25624,1159.9568 622.46718,1168.8267 C 641.88605,1177.7925 671.78642,1179.038 696.58702,1165.6811 C 721.38762,1152.3241 753.98804,1095.3556 767.56128,1068.3724 C 781.18513,1041.2885 806.32235,953.87507 812.22208,918.60385 C 818.12181,883.33264 814.77262,877.30308 807.6046,869.54836 C 810.2449,841.70821 806.10488,814.61293 820.71429,782.36218 C 790.46528,794.18788 783.332,822.52288 772.3954,847.86726 C 764.39449,796.93433 772.60456,776.59407 775.71429,746.6479 C 746.64953,761.42581 732.85278,793.76192 730.71429,839.50504 C 719.79034,838.20084 709.32285,835.07081 697.14286,838.79075 C 696.87882,792.76741 695.6793,761.90134 706.05349,724.58426 C 652.79802,745.61112 643.10621,831.17836 650,837.36218 C 639.11718,837.89718 628.62892,836.06488 617.14286,840.21933 C 617.78178,797.64798 616.8824,755.31072 587.14286,717.36218 C 587.14286,717.36218 556.1848,798.28452 555.71429,820.93361 C 555.24378,843.5827 565.16588,861.09949 565.16588,861.09949 C 565.16588,861.09949 556.59781,897.84 558.86729,919.33172 C 561.16314,941.07318 579.31019,979.00789 586.13271,997.98981 z" | ||
1053 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1054 | </clipPath> | ||
1055 | <filter | ||
1056 | inkscape:collect="always" | ||
1057 | id="filter4185"> | ||
1058 | <feGaussianBlur | ||
1059 | inkscape:collect="always" | ||
1060 | stdDeviation="3.6164709" | ||
1061 | id="feGaussianBlur4187" /> | ||
1062 | </filter> | ||
1063 | <filter | ||
1064 | inkscape:collect="always" | ||
1065 | id="filter4105"> | ||
1066 | <feGaussianBlur | ||
1067 | inkscape:collect="always" | ||
1068 | stdDeviation="3.8640966" | ||
1069 | id="feGaussianBlur4107" /> | ||
1070 | </filter> | ||
1071 | <clipPath | ||
1072 | clipPathUnits="userSpaceOnUse" | ||
1073 | id="clipPath2833"> | ||
1074 | <path | ||
1075 | style="opacity:1;fill:#292929;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1076 | d="M 569.03125,1018.7776 C 564.74554,1019.4919 541.4031,1022.3957 511.17411,1028.7776 C 480.94512,1035.1595 453.86016,1033.7437 375.38803,1046.1072 C 295.53625,1058.688 281.32367,1088.6495 267.26578,1093.1715 C 252.56564,1097.9001 121.88839,1027.349 121.88839,1027.349 L 126.17411,933.06329 C 126.17411,933.06329 212.05962,916.86235 238.31696,899.49186 C 264.57431,882.12137 283.89934,849.82588 297.60268,828.06329 C 311.30602,806.3007 330.45982,756.63471 330.45982,756.63471 L 569.03125,1018.7776 z" | ||
1077 | id="path2835" | ||
1078 | sodipodi:nodetypes="czzzcczzcc" /> | ||
1079 | </clipPath> | ||
1080 | <linearGradient | ||
1081 | inkscape:collect="always" | ||
1082 | xlink:href="#linearGradient2843" | ||
1083 | id="linearGradient2841" | ||
1084 | gradientUnits="userSpaceOnUse" | ||
1085 | x1="347.89655" | ||
1086 | y1="1070.2124" | ||
1087 | x2="275.58191" | ||
1088 | y2="867.97992" /> | ||
1089 | <linearGradient | ||
1090 | inkscape:collect="always" | ||
1091 | xlink:href="#linearGradient3627" | ||
1092 | id="linearGradient3688" | ||
1093 | gradientUnits="userSpaceOnUse" | ||
1094 | x1="699.32867" | ||
1095 | y1="269.76755" | ||
1096 | x2="698.97504" | ||
1097 | y2="346.1351" /> | ||
1098 | <mask | ||
1099 | maskUnits="userSpaceOnUse" | ||
1100 | id="mask3684"> | ||
1101 | <path | ||
1102 | sodipodi:type="arc" | ||
1103 | style="opacity:1;fill:url(#linearGradient3688);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.43724918px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1104 | id="path3686" | ||
1105 | sodipodi:cx="579.474" | ||
1106 | sodipodi:cy="260.57516" | ||
1107 | sodipodi:rx="192.6866" | ||
1108 | sodipodi:ry="164.04877" | ||
1109 | d="M 772.1606,260.57516 A 192.6866,164.04877 0 1 1 386.7874,260.57516 A 192.6866,164.04877 0 1 1 772.1606,260.57516 z" | ||
1110 | transform="translate(-174.03125,62.156036)" /> | ||
1111 | </mask> | ||
1112 | <clipPath | ||
1113 | clipPathUnits="userSpaceOnUse" | ||
1114 | id="clipPath3622"> | ||
1115 | <path | ||
1116 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1117 | d="M 266.27183,924.57186 C 264.86456,943.37307 265.12693,957.32289 268.35357,973.87514 C 271.58022,990.42748 284.75965,1019.7825 288.68797,1037.0589 C 292.61419,1054.326 291.3821,1075.3685 276.22853,1088.2071 C 260.91092,1101.1845 234.17726,1109.806 208.39623,1103.9409 C 182.61517,1098.0756 138.84716,1054.7175 119.80604,1033.7126 C 100.6939,1012.6293 56.045183,939.86194 41.867508,909.43681 C 27.689836,879.01169 29.207903,872.71824 33.747793,863.90708 C 24.381071,839.38658 21.334081,813.84027 0.035335518,788.33044 C 30.360815,791.44488 43.915625,815.28677 60.161025,835.47019 C 54.631129,787.39416 42.10631,771.05369 31.787073,744.74589 C 61.781368,750.82755 82.366433,776.61829 95.766856,817.45839 C 105.32101,813.54048 114.00462,808.08545 125.95427,808.39719 C 114.65677,766.70139 108.00481,738.48135 89.267015,707.32725 C 142.70898,712.99758 172.92404,787.96657 168.23844,795.28805 C 178.21641,793.04406 187.24409,788.75767 198.67497,789.63638 C 187.42601,751.28936 177.62716,712.76848 195.01526,670.9882 C 195.01526,670.9882 243.30204,736.42507 249.40492,756.79397 C 255.50779,777.16288 250.92373,795.49449 250.92373,795.49449 C 250.92373,795.49449 267.8833,826.57978 271.21765,846.58862 C 274.59075,866.82997 267.68496,905.69194 266.27183,924.57186 z" | ||
1118 | id="path3624" | ||
1119 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
1120 | </clipPath> | ||
1121 | <clipPath | ||
1122 | clipPathUnits="userSpaceOnUse" | ||
1123 | id="clipPath3636"> | ||
1124 | <path | ||
1125 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1126 | d="M 760.16396,935.83377 C 766.95806,954.73656 770.65765,969.13346 772.05426,987.04566 C 773.45088,1004.958 768.27158,1038.8465 769.1538,1057.7018 C 770.03555,1076.547 777.28749,1097.8008 796.49843,1106.6707 C 815.9173,1115.6365 845.81767,1116.882 870.61827,1103.5251 C 895.41887,1090.1681 928.01929,1033.1996 941.59253,1006.2164 C 955.21638,979.13246 980.3536,891.71903 986.25333,856.44781 C 992.15306,821.1766 988.80387,815.14704 981.63585,807.39232 C 984.27615,779.55217 980.13613,752.45689 994.74554,720.20614 C 964.49653,732.03184 957.36325,760.36684 946.42665,785.71122 C 938.42574,734.77829 946.63581,714.43803 949.74554,684.49186 C 920.68078,699.26977 906.88403,731.60588 904.74554,777.349 C 893.82159,776.0448 883.3541,772.91477 871.17411,776.63471 C 870.91007,730.61137 869.71055,699.7453 880.08474,662.42822 C 826.82927,683.45508 817.13746,769.02232 824.03125,775.20614 C 813.14843,775.74114 802.66017,773.90884 791.17411,778.06329 C 791.81303,735.49194 790.91365,693.15468 761.17411,655.20614 C 761.17411,655.20614 730.21605,736.12848 729.74554,758.77757 C 729.27503,781.42666 739.19713,798.94345 739.19713,798.94345 C 739.19713,798.94345 730.62906,835.68396 732.89854,857.17568 C 735.19439,878.91714 753.34144,916.85185 760.16396,935.83377 z" | ||
1127 | id="path3638" | ||
1128 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
1129 | </clipPath> | ||
1130 | <linearGradient | ||
1131 | inkscape:collect="always" | ||
1132 | xlink:href="#linearGradient3660" | ||
1133 | id="linearGradient3666" | ||
1134 | x1="1255.7386" | ||
1135 | y1="667.09216" | ||
1136 | x2="893.69995" | ||
1137 | y2="858.01099" | ||
1138 | gradientUnits="userSpaceOnUse" /> | ||
1139 | <filter | ||
1140 | inkscape:collect="always" | ||
1141 | id="filter3779" | ||
1142 | x="-0.087980822" | ||
1143 | width="1.1759616" | ||
1144 | y="-0.17728332" | ||
1145 | height="1.3545666"> | ||
1146 | <feGaussianBlur | ||
1147 | inkscape:collect="always" | ||
1148 | stdDeviation="16.340344" | ||
1149 | id="feGaussianBlur3781" /> | ||
1150 | </filter> | ||
1151 | <filter | ||
1152 | id="filter3785" | ||
1153 | inkscape:label="White Fur"> | ||
1154 | <feTurbulence | ||
1155 | id="feTurbulence3787" | ||
1156 | in="SourceAlpha" | ||
1157 | type="fractalNoise" | ||
1158 | baseFrequency="0.24044943820224721" | ||
1159 | numOctaves="10" | ||
1160 | seed="655" | ||
1161 | result="result0" /> | ||
1162 | <feDisplacementMap | ||
1163 | id="feDisplacementMap3789" | ||
1164 | in="SourceGraphic" | ||
1165 | in2="result0" | ||
1166 | scale="62" | ||
1167 | xChannelSelector="B" | ||
1168 | yChannelSelector="G" /> | ||
1169 | </filter> | ||
1170 | <filter | ||
1171 | inkscape:collect="always" | ||
1172 | id="filter3677"> | ||
1173 | <feGaussianBlur | ||
1174 | inkscape:collect="always" | ||
1175 | stdDeviation="2.0397518" | ||
1176 | id="feGaussianBlur3679" /> | ||
1177 | </filter> | ||
1178 | <clipPath | ||
1179 | clipPathUnits="userSpaceOnUse" | ||
1180 | id="clipPath3722"> | ||
1181 | <path | ||
1182 | style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1183 | d="M 709.28572,844.50504 C 763.57143,843.07647 835.32072,829.45305 879.28572,817.71932 C 923.33843,805.96218 1005.172,781.37208 1054.6428,759.86218 C 1103.9821,738.40946 1168.2465,700.58058 1208.9286,667.71933 C 1249.4367,634.99864 1261.3185,611.89952 1269.6429,634.1479 C 1278.012,656.51569 1253.2359,690.47352 1231.7857,715.21933 C 1210.1816,740.14273 1179.0544,767.92466 1132.8571,804.50504 C 1086.6598,841.08542 976.77458,906.08967 920,933.07647 C 862.93394,960.20183 791.79666,991.31489 747.85714,1005.5765 C 703.91762,1019.8381 616.42857,1036.6479 616.42857,1036.6479 L 709.28572,844.50504 z" | ||
1184 | id="path3724" | ||
1185 | sodipodi:nodetypes="czzzzzzzzcc" /> | ||
1186 | </clipPath> | ||
1187 | <clipPath | ||
1188 | clipPathUnits="userSpaceOnUse" | ||
1189 | id="clipPath3986"> | ||
1190 | <path | ||
1191 | style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1192 | d="M 709.28572,844.50504 C 763.57143,843.07647 835.32072,829.45305 879.28572,817.71932 C 923.33843,805.96218 1005.172,781.37208 1054.6428,759.86218 C 1103.9821,738.40946 1168.2465,700.58058 1208.9286,667.71933 C 1249.4367,634.99864 1261.3185,611.89952 1269.6429,634.1479 C 1278.012,656.51569 1253.2359,690.47352 1231.7857,715.21933 C 1210.1816,740.14273 1179.0544,767.92466 1132.8571,804.50504 C 1086.6598,841.08542 976.77458,906.08967 920,933.07647 C 862.93394,960.20183 791.79666,991.31489 747.85714,1005.5765 C 703.91762,1019.8381 616.42857,1036.6479 616.42857,1036.6479 L 709.28572,844.50504 z" | ||
1193 | id="path3988" | ||
1194 | sodipodi:nodetypes="czzzzzzzzcc" /> | ||
1195 | </clipPath> | ||
1196 | <clipPath | ||
1197 | clipPathUnits="userSpaceOnUse" | ||
1198 | id="clipPath3992"> | ||
1199 | <path | ||
1200 | style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1201 | d="M 709.28572,844.50504 C 763.57143,843.07647 835.32072,829.45305 879.28572,817.71932 C 923.33843,805.96218 1005.172,781.37208 1054.6428,759.86218 C 1103.9821,738.40946 1168.2465,700.58058 1208.9286,667.71933 C 1249.4367,634.99864 1261.3185,611.89952 1269.6429,634.1479 C 1278.012,656.51569 1253.2359,690.47352 1231.7857,715.21933 C 1210.1816,740.14273 1179.0544,767.92466 1132.8571,804.50504 C 1086.6598,841.08542 976.77458,906.08967 920,933.07647 C 862.93394,960.20183 791.79666,991.31489 747.85714,1005.5765 C 703.91762,1019.8381 616.42857,1036.6479 616.42857,1036.6479 L 709.28572,844.50504 z" | ||
1202 | id="path3994" | ||
1203 | sodipodi:nodetypes="czzzzzzzzcc" /> | ||
1204 | </clipPath> | ||
1205 | <clipPath | ||
1206 | clipPathUnits="userSpaceOnUse" | ||
1207 | id="clipPath3998"> | ||
1208 | <path | ||
1209 | style="opacity:1;fill:#262f2f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1210 | d="M 178.21428,274.14789 C 174.40985,248.88366 161.40456,223.50987 161.05748,198.62266 C 160.87122,185.26714 164.33033,172.05175 174.81301,159.06861 C 211.16003,93.772775 291.75392,74.373925 360.74767,67.603183 C 447.67006,56.586382 545.66034,85.543255 594.11901,163.00447 C 648.24303,238.73777 650.79377,335.54359 674.73105,422.53242 C 704.16884,549.66002 729.51019,678.74656 735.12329,809.38277 C 732.05981,887.56462 726.69695,974.56692 674.62008,1037.5169 C 626.59354,1087.8743 551.83361,1087.5699 487.5502,1096.5192 C 396.99481,1101.1742 303.19867,1080.3734 225.7663,1032.321 C 160.99066,994.38099 130.03611,918.84237 128.4869,846.30142 C 120.09773,766.42626 154.87842,692.49291 180.1073,619.14181 C 187.57791,536.38074 189.52016,452.89406 189.76064,369.75697 C 188.92382,337.56153 182.67111,305.93964 178.21428,274.14789 z" | ||
1211 | id="path4000" | ||
1212 | sodipodi:nodetypes="cscccccccccccc" /> | ||
1213 | </clipPath> | ||
1214 | <filter | ||
1215 | inkscape:collect="always" | ||
1216 | id="filter4002" | ||
1217 | x="-0.24334238" | ||
1218 | width="1.4866848" | ||
1219 | y="-0.39104807" | ||
1220 | height="1.7820961"> | ||
1221 | <feGaussianBlur | ||
1222 | inkscape:collect="always" | ||
1223 | stdDeviation="14.589518" | ||
1224 | id="feGaussianBlur4004" /> | ||
1225 | </filter> | ||
1226 | <filter | ||
1227 | inkscape:collect="always" | ||
1228 | id="filter4010" | ||
1229 | x="-0.14577261" | ||
1230 | width="1.2915452" | ||
1231 | y="-0.23523259" | ||
1232 | height="1.4704652"> | ||
1233 | <feGaussianBlur | ||
1234 | inkscape:collect="always" | ||
1235 | stdDeviation="4.4442907" | ||
1236 | id="feGaussianBlur4012" /> | ||
1237 | </filter> | ||
1238 | <filter | ||
1239 | inkscape:collect="always" | ||
1240 | id="filter4053"> | ||
1241 | <feGaussianBlur | ||
1242 | inkscape:collect="always" | ||
1243 | stdDeviation="0.6062947" | ||
1244 | id="feGaussianBlur4055" /> | ||
1245 | </filter> | ||
1246 | <filter | ||
1247 | inkscape:collect="always" | ||
1248 | id="filter4079"> | ||
1249 | <feGaussianBlur | ||
1250 | inkscape:collect="always" | ||
1251 | stdDeviation="6.5887624" | ||
1252 | id="feGaussianBlur4081" /> | ||
1253 | </filter> | ||
1254 | <filter | ||
1255 | inkscape:collect="always" | ||
1256 | id="filter4083"> | ||
1257 | <feGaussianBlur | ||
1258 | inkscape:collect="always" | ||
1259 | stdDeviation="1.5052066" | ||
1260 | id="feGaussianBlur4085" /> | ||
1261 | </filter> | ||
1262 | <radialGradient | ||
1263 | inkscape:collect="always" | ||
1264 | xlink:href="#linearGradient4113" | ||
1265 | id="radialGradient4119" | ||
1266 | cx="296.33783" | ||
1267 | cy="427.17749" | ||
1268 | fx="296.33783" | ||
1269 | fy="427.17749" | ||
1270 | r="19.704132" | ||
1271 | gradientUnits="userSpaceOnUse" | ||
1272 | gradientTransform="matrix(2.9797125,0,0,2.9797125,-599.28727,-827.0855)" /> | ||
1273 | <filter | ||
1274 | inkscape:collect="always" | ||
1275 | id="filter6949" | ||
1276 | x="-0.10294895" | ||
1277 | width="1.2058979" | ||
1278 | y="-0.34224695" | ||
1279 | height="1.6844939"> | ||
1280 | <feGaussianBlur | ||
1281 | inkscape:collect="always" | ||
1282 | stdDeviation="1.1675612" | ||
1283 | id="feGaussianBlur6951" /> | ||
1284 | </filter> | ||
1285 | <filter | ||
1286 | inkscape:collect="always" | ||
1287 | id="filter6953" | ||
1288 | x="-0.098320946" | ||
1289 | width="1.1966419" | ||
1290 | y="-0.19750816" | ||
1291 | height="1.3950163"> | ||
1292 | <feGaussianBlur | ||
1293 | inkscape:collect="always" | ||
1294 | stdDeviation="1.1675612" | ||
1295 | id="feGaussianBlur6955" /> | ||
1296 | </filter> | ||
1297 | <filter | ||
1298 | inkscape:collect="always" | ||
1299 | id="filter6957" | ||
1300 | x="-0.098213427" | ||
1301 | width="1.1964267" | ||
1302 | y="-0.19838208" | ||
1303 | height="1.3967642"> | ||
1304 | <feGaussianBlur | ||
1305 | inkscape:collect="always" | ||
1306 | stdDeviation="1.1675612" | ||
1307 | id="feGaussianBlur6959" /> | ||
1308 | </filter> | ||
1309 | <filter | ||
1310 | inkscape:collect="always" | ||
1311 | id="filter6961" | ||
1312 | x="-0.09919104" | ||
1313 | width="1.1983821" | ||
1314 | y="-0.22643611" | ||
1315 | height="1.4528722"> | ||
1316 | <feGaussianBlur | ||
1317 | inkscape:collect="always" | ||
1318 | stdDeviation="1.1675612" | ||
1319 | id="feGaussianBlur6963" /> | ||
1320 | </filter> | ||
1321 | <filter | ||
1322 | inkscape:collect="always" | ||
1323 | id="filter6965" | ||
1324 | x="-0.099081434" | ||
1325 | width="1.1981629" | ||
1326 | y="-0.22529824" | ||
1327 | height="1.4505965"> | ||
1328 | <feGaussianBlur | ||
1329 | inkscape:collect="always" | ||
1330 | stdDeviation="1.1675612" | ||
1331 | id="feGaussianBlur6967" /> | ||
1332 | </filter> | ||
1333 | <filter | ||
1334 | inkscape:collect="always" | ||
1335 | id="filter6969" | ||
1336 | x="-0.10450897" | ||
1337 | width="1.2090179" | ||
1338 | y="-0.40468886" | ||
1339 | height="1.8093777"> | ||
1340 | <feGaussianBlur | ||
1341 | inkscape:collect="always" | ||
1342 | stdDeviation="1.1675612" | ||
1343 | id="feGaussianBlur6971" /> | ||
1344 | </filter> | ||
1345 | <filter | ||
1346 | inkscape:collect="always" | ||
1347 | id="filter6973" | ||
1348 | x="-0.10330495" | ||
1349 | width="1.2066098" | ||
1350 | y="-0.36439717" | ||
1351 | height="1.7287945"> | ||
1352 | <feGaussianBlur | ||
1353 | inkscape:collect="always" | ||
1354 | stdDeviation="1.1675612" | ||
1355 | id="feGaussianBlur6975" /> | ||
1356 | </filter> | ||
1357 | <filter | ||
1358 | inkscape:collect="always" | ||
1359 | id="filter6977" | ||
1360 | x="-0.10224481" | ||
1361 | width="1.2044896" | ||
1362 | y="-0.32371372" | ||
1363 | height="1.6474274"> | ||
1364 | <feGaussianBlur | ||
1365 | inkscape:collect="always" | ||
1366 | stdDeviation="1.1675612" | ||
1367 | id="feGaussianBlur6979" /> | ||
1368 | </filter> | ||
1369 | <filter | ||
1370 | inkscape:collect="always" | ||
1371 | id="filter6981" | ||
1372 | x="-0.10052545" | ||
1373 | width="1.2010509" | ||
1374 | y="-0.2742162" | ||
1375 | height="1.5484324"> | ||
1376 | <feGaussianBlur | ||
1377 | inkscape:collect="always" | ||
1378 | stdDeviation="1.1675612" | ||
1379 | id="feGaussianBlur6983" /> | ||
1380 | </filter> | ||
1381 | <filter | ||
1382 | inkscape:collect="always" | ||
1383 | id="filter6985" | ||
1384 | x="-0.098428868" | ||
1385 | width="1.1968577" | ||
1386 | y="-0.20853186" | ||
1387 | height="1.4170637"> | ||
1388 | <feGaussianBlur | ||
1389 | inkscape:collect="always" | ||
1390 | stdDeviation="1.1675612" | ||
1391 | id="feGaussianBlur6987" /> | ||
1392 | </filter> | ||
1393 | <filter | ||
1394 | inkscape:collect="always" | ||
1395 | id="filter6989" | ||
1396 | x="-0.098428868" | ||
1397 | width="1.1968577" | ||
1398 | y="-0.20287035" | ||
1399 | height="1.4057407"> | ||
1400 | <feGaussianBlur | ||
1401 | inkscape:collect="always" | ||
1402 | stdDeviation="1.1675612" | ||
1403 | id="feGaussianBlur6991" /> | ||
1404 | </filter> | ||
1405 | <filter | ||
1406 | inkscape:collect="always" | ||
1407 | id="filter6993" | ||
1408 | x="-0.098213255" | ||
1409 | width="1.1964265" | ||
1410 | y="-0.19838208" | ||
1411 | height="1.3967642"> | ||
1412 | <feGaussianBlur | ||
1413 | inkscape:collect="always" | ||
1414 | stdDeviation="1.1675612" | ||
1415 | id="feGaussianBlur6995" /> | ||
1416 | </filter> | ||
1417 | <filter | ||
1418 | inkscape:collect="always" | ||
1419 | id="filter6997"> | ||
1420 | <feGaussianBlur | ||
1421 | inkscape:collect="always" | ||
1422 | stdDeviation="1.1675612" | ||
1423 | id="feGaussianBlur6999" /> | ||
1424 | </filter> | ||
1425 | <filter | ||
1426 | inkscape:collect="always" | ||
1427 | id="filter7001"> | ||
1428 | <feGaussianBlur | ||
1429 | inkscape:collect="always" | ||
1430 | stdDeviation="1.1675612" | ||
1431 | id="feGaussianBlur7003" /> | ||
1432 | </filter> | ||
1433 | <filter | ||
1434 | inkscape:collect="always" | ||
1435 | id="filter7285" | ||
1436 | x="-0.030884685" | ||
1437 | width="1.0617694" | ||
1438 | y="-0.10267408" | ||
1439 | height="1.2053483"> | ||
1440 | <feGaussianBlur | ||
1441 | inkscape:collect="always" | ||
1442 | stdDeviation="0.35026836" | ||
1443 | id="feGaussianBlur7287" /> | ||
1444 | </filter> | ||
1445 | <filter | ||
1446 | inkscape:collect="always" | ||
1447 | id="filter7289"> | ||
1448 | <feGaussianBlur | ||
1449 | inkscape:collect="always" | ||
1450 | stdDeviation="0.35026836" | ||
1451 | id="feGaussianBlur7291" /> | ||
1452 | </filter> | ||
1453 | <filter | ||
1454 | inkscape:collect="always" | ||
1455 | id="filter7293"> | ||
1456 | <feGaussianBlur | ||
1457 | inkscape:collect="always" | ||
1458 | stdDeviation="0.35026836" | ||
1459 | id="feGaussianBlur7295" /> | ||
1460 | </filter> | ||
1461 | <filter | ||
1462 | inkscape:collect="always" | ||
1463 | id="filter7297"> | ||
1464 | <feGaussianBlur | ||
1465 | inkscape:collect="always" | ||
1466 | stdDeviation="0.35026836" | ||
1467 | id="feGaussianBlur7299" /> | ||
1468 | </filter> | ||
1469 | <filter | ||
1470 | inkscape:collect="always" | ||
1471 | id="filter7301"> | ||
1472 | <feGaussianBlur | ||
1473 | inkscape:collect="always" | ||
1474 | stdDeviation="0.35026836" | ||
1475 | id="feGaussianBlur7303" /> | ||
1476 | </filter> | ||
1477 | <filter | ||
1478 | inkscape:collect="always" | ||
1479 | id="filter7305"> | ||
1480 | <feGaussianBlur | ||
1481 | inkscape:collect="always" | ||
1482 | stdDeviation="0.35026836" | ||
1483 | id="feGaussianBlur7307" /> | ||
1484 | </filter> | ||
1485 | <filter | ||
1486 | inkscape:collect="always" | ||
1487 | id="filter7309"> | ||
1488 | <feGaussianBlur | ||
1489 | inkscape:collect="always" | ||
1490 | stdDeviation="0.35026836" | ||
1491 | id="feGaussianBlur7311" /> | ||
1492 | </filter> | ||
1493 | <filter | ||
1494 | inkscape:collect="always" | ||
1495 | id="filter7313"> | ||
1496 | <feGaussianBlur | ||
1497 | inkscape:collect="always" | ||
1498 | stdDeviation="0.35026836" | ||
1499 | id="feGaussianBlur7315" /> | ||
1500 | </filter> | ||
1501 | <filter | ||
1502 | inkscape:collect="always" | ||
1503 | id="filter7317"> | ||
1504 | <feGaussianBlur | ||
1505 | inkscape:collect="always" | ||
1506 | stdDeviation="0.35026836" | ||
1507 | id="feGaussianBlur7319" /> | ||
1508 | </filter> | ||
1509 | <filter | ||
1510 | inkscape:collect="always" | ||
1511 | id="filter7321"> | ||
1512 | <feGaussianBlur | ||
1513 | inkscape:collect="always" | ||
1514 | stdDeviation="0.35026836" | ||
1515 | id="feGaussianBlur7323" /> | ||
1516 | </filter> | ||
1517 | <filter | ||
1518 | inkscape:collect="always" | ||
1519 | id="filter7325" | ||
1520 | x="-0.031352691" | ||
1521 | width="1.0627054" | ||
1522 | y="-0.12140666" | ||
1523 | height="1.2428133"> | ||
1524 | <feGaussianBlur | ||
1525 | inkscape:collect="always" | ||
1526 | stdDeviation="0.35026836" | ||
1527 | id="feGaussianBlur7327" /> | ||
1528 | </filter> | ||
1529 | <filter | ||
1530 | inkscape:collect="always" | ||
1531 | id="filter7329" | ||
1532 | x="-0.030991485" | ||
1533 | width="1.061983" | ||
1534 | y="-0.10931916" | ||
1535 | height="1.2186383"> | ||
1536 | <feGaussianBlur | ||
1537 | inkscape:collect="always" | ||
1538 | stdDeviation="0.35026836" | ||
1539 | id="feGaussianBlur7331" /> | ||
1540 | </filter> | ||
1541 | <filter | ||
1542 | inkscape:collect="always" | ||
1543 | id="filter7333"> | ||
1544 | <feGaussianBlur | ||
1545 | inkscape:collect="always" | ||
1546 | stdDeviation="0.35026836" | ||
1547 | id="feGaussianBlur7335" /> | ||
1548 | </filter> | ||
1549 | <filter | ||
1550 | inkscape:collect="always" | ||
1551 | id="filter7337"> | ||
1552 | <feGaussianBlur | ||
1553 | inkscape:collect="always" | ||
1554 | stdDeviation="0.35026836" | ||
1555 | id="feGaussianBlur7339" /> | ||
1556 | </filter> | ||
1557 | <filter | ||
1558 | inkscape:collect="always" | ||
1559 | id="filter7345"> | ||
1560 | <feGaussianBlur | ||
1561 | inkscape:collect="always" | ||
1562 | stdDeviation="1.7233839" | ||
1563 | id="feGaussianBlur7347" /> | ||
1564 | </filter> | ||
1565 | <clipPath | ||
1566 | clipPathUnits="userSpaceOnUse" | ||
1567 | id="clipPath7421"> | ||
1568 | <path | ||
1569 | sodipodi:type="inkscape:offset" | ||
1570 | inkscape:radius="0" | ||
1571 | inkscape:original="M 1111.4062 -285.9375 L 1107.4688 -284.0625 C 1107.4283 -284.05228 1107.3692 -284.04201 1107.3438 -284.03125 C 1106.925 -283.8184 1107.1791 -283.93067 1106.6875 -283.71875 C 1106.2014 -283.50919 1104.9499 -283.13456 1102.5938 -282.25 C 1099.2626 -280.99942 1096.7895 -280.10016 1095.5938 -279.1875 C 1094.0576 -279.16623 1091.8733 -278.95419 1089.9375 -278.46875 C 1086.956 -277.72108 1085.0823 -277.29474 1083.1875 -276.875 C 1081.2927 -276.45527 1081.512 -276.23281 1080.3125 -276 C 1079.0159 -275.74833 1078.5911 -276.00899 1074.875 -275.21875 C 1071.3851 -274.4766 1065.9802 -273.28768 1064.7188 -272.53125 C 1063.1348 -272.71203 1060.8513 -272.85303 1058.875 -272.5625 C 1055.8346 -272.11554 1053.9588 -271.88974 1052.0312 -271.65625 C 1051.3758 -271.57687 1050.9902 -271.45547 1050.6875 -271.375 C 1050.2613 -271.24334 1050.0017 -271.11498 1049.3125 -271.03125 C 1048.0009 -270.87188 1047.5503 -271.18808 1043.7812 -270.75 C 1040.2273 -270.33691 1034.7758 -269.47718 1033.5312 -268.8125 C 1031.9322 -269.10979 1029.6735 -269.34669 1027.6875 -269.15625 C 1024.6287 -268.86293 1022.7155 -268.67226 1020.7812 -268.5 C 1018.847 -268.32773 1019.0926 -268.07763 1017.875 -267.96875 C 1016.5588 -267.85105 1016.1152 -268.13238 1012.3438 -267.71875 C 1008.8017 -267.3303 1003.3359 -266.50948 1002.0625 -265.84375 C 1000.4636 -266.13844 998.1753 -266.35076 996.1875 -266.15625 C 993.12921 -265.857 991.2463 -265.67601 989.3125 -265.5 C 988.65501 -265.44015 988.27245 -265.32144 987.96875 -265.25 C 987.54105 -265.13104 987.28525 -265.03193 986.59375 -264.96875 C 985.27775 -264.84849 984.834 -265.16363 981.0625 -264.75 C 977.50631 -264.35998 972.0569 -263.51084 970.8125 -262.84375 C 969.21381 -263.13793 966.95265 -263.36747 964.96875 -263.15625 C 961.91305 -262.83092 959.9947 -262.63001 958.0625 -262.4375 C 956.13031 -262.24499 956.37275 -261.99662 955.15625 -261.875 C 953.84137 -261.74353 953.3932 -262.03954 949.625 -261.59375 C 946.08611 -261.17509 940.6473 -260.30158 939.375 -259.625 C 937.77741 -259.90604 935.51505 -260.04543 933.53125 -259.8125 C 930.47927 -259.45413 928.58625 -259.24464 926.65625 -259.03125 C 926.00007 -258.95869 925.6156 -258.85856 925.3125 -258.78125 C 924.88571 -258.65402 924.6276 -258.51405 923.9375 -258.4375 C 922.62411 -258.29181 922.17015 -258.61152 918.40625 -258.125 C 914.85737 -257.66624 909.4276 -256.70598 908.1875 -256 C 906.59441 -256.24424 904.3537 -256.38135 902.375 -256.125 C 899.32741 -255.73018 897.4243 -255.47655 895.5 -255.21875 C 893.57571 -254.96096 893.7739 -254.72522 892.5625 -254.5625 C 891.25301 -254.3866 890.8153 -254.66688 887.0625 -254.09375 C 883.53821 -253.55551 878.1393 -252.39458 876.875 -251.65625 C 875.28751 -251.85979 873.0295 -251.91098 871.0625 -251.5625 C 868.03631 -251.02638 866.1636 -250.70081 864.25 -250.375 C 863.59941 -250.26423 863.2363 -250.10406 862.9375 -250 C 862.51681 -249.83512 862.27405 -249.6687 861.59375 -249.53125 C 860.29905 -249.26966 859.86665 -249.53745 856.15625 -248.71875 C 852.65777 -247.9468 847.31035 -246.33582 846.09375 -245.5 C 844.53085 -245.57745 842.33625 -245.41472 840.40625 -244.90625 C 837.43387 -244.12312 835.58855 -243.67416 833.71875 -243.15625 C 831.84875 -242.63835 832.0521 -242.38897 830.875 -242.0625 C 829.60251 -241.7096 829.17795 -241.95541 825.53125 -240.875 C 822.10657 -239.86037 816.88185 -237.94183 815.65625 -237.03125 C 814.11747 -237.01851 811.93645 -236.75903 810.03125 -236.15625 C 807.10027 -235.22891 805.2809 -234.69783 803.4375 -234.09375 C 802.81071 -233.88837 802.44585 -233.70117 802.15625 -233.5625 C 801.74867 -233.34889 801.50295 -233.15375 800.84375 -232.9375 C 799.58925 -232.52596 799.1576 -232.74846 795.5625 -231.5 C 792.17261 -230.32283 786.96755 -228.2863 785.78125 -227.34375 C 784.25737 -227.28408 782.1312 -226.94888 780.25 -226.28125 C 777.35261 -225.25296 775.55095 -224.60577 773.71875 -223.96875 C 771.88655 -223.33174 772.0909 -223.12021 770.9375 -222.71875 C 769.69071 -222.28479 769.27395 -222.51903 765.71875 -221.15625 C 762.38005 -219.87645 757.23165 -217.6737 756.03125 -216.6875 C 754.52407 -216.57981 752.39555 -216.1887 750.53125 -215.46875 C 747.66307 -214.36115 745.90735 -213.68719 744.09375 -213 C 743.47705 -212.76637 743.0973 -212.55797 742.8125 -212.40625 C 742.81251 -212.40625 742.8125 -212.37673 742.8125 -212.375 L 734.8125 -209.1875 L 736.625 -194.46875 C 736.36701 -194.52956 742.8125 -191.15625 742.8125 -191.15625 C 743.03891 -191.30093 743.26145 -191.42886 743.53125 -191.53125 C 744.61177 -191.94123 745.70285 -191.74702 749.53125 -193.21875 C 753.35977 -194.69049 754.7553 -195.22373 755.4375 -195.625 C 756.11711 -196.02478 757.04925 -196.50437 757.65625 -197.15625 C 759.48317 -197.294 761.22705 -197.64948 762.59375 -198.15625 C 765.56175 -199.25677 767.4691 -199.96244 769.375 -200.625 C 771.28081 -201.28754 771.72915 -202.03987 772.78125 -202.40625 C 773.87287 -202.78636 774.97635 -202.57163 778.84375 -203.9375 C 782.71115 -205.30336 784.1269 -205.76458 784.8125 -206.15625 C 785.51361 -206.55677 786.5133 -207.08923 787.125 -207.75 C 789.09581 -207.80466 790.94195 -208.13463 792.40625 -208.625 C 795.40777 -209.63008 797.3324 -210.24671 799.25 -210.875 C 800.78861 -211.3791 801.42415 -211.92177 802.15625 -212.3125 C 802.38647 -212.44681 802.63215 -212.56623 802.90625 -212.65625 C 804.00457 -213.01673 805.0877 -212.73762 809 -213.96875 C 812.91231 -215.19988 814.366 -215.6417 815.0625 -216 C 815.75641 -216.35697 816.6926 -216.79261 817.3125 -217.40625 C 819.17771 -217.42891 820.94835 -217.67308 822.34375 -218.09375 C 825.37415 -219.00729 827.33615 -219.52385 829.28125 -220.0625 C 831.22637 -220.60114 831.70745 -221.32702 832.78125 -221.625 C 833.89527 -221.93415 835.00125 -221.61761 838.96875 -222.65625 C 842.93625 -223.69488 844.38625 -224.08898 845.09375 -224.40625 C 845.82855 -224.73584 846.90765 -225.15997 847.53125 -225.78125 C 849.52907 -225.66525 851.3887 -225.80134 852.875 -226.15625 C 855.95311 -226.89125 857.9584 -227.25719 859.9375 -227.65625 C 861.52541 -227.97643 862.1818 -228.4468 862.9375 -228.75 C 863.17501 -228.8568 863.4044 -228.94276 863.6875 -229 C 864.82091 -229.22919 865.99215 -228.79107 870.03125 -229.5 C 874.07067 -230.20893 875.5315 -230.42709 876.25 -230.6875 C 876.96581 -230.94694 877.95435 -231.25474 878.59375 -231.78125 C 880.51795 -231.54176 882.34165 -231.55672 883.78125 -231.78125 C 886.90767 -232.26887 888.9358 -232.48192 890.9375 -232.75 C 892.93921 -233.01807 893.42625 -233.69514 894.53125 -233.84375 C 895.67767 -233.99793 896.8071 -233.54218 900.875 -234.0625 C 904.94281 -234.58282 906.43525 -234.75823 907.15625 -235 C 907.89337 -235.24714 908.95435 -235.58623 909.59375 -236.125 C 911.64375 -235.78947 913.56745 -235.72704 915.09375 -235.90625 C 918.23595 -236.27521 920.27375 -236.46561 922.28125 -236.6875 C 923.89207 -236.86552 924.5459 -237.2957 925.3125 -237.53125 C 925.55341 -237.61677 925.80655 -237.68685 926.09375 -237.71875 C 927.24345 -237.84647 928.39505 -237.3721 932.46875 -237.84375 C 936.54245 -238.3154 938.0278 -238.45435 938.75 -238.6875 C 939.46941 -238.91977 940.45025 -239.16096 941.09375 -239.65625 C 943.03005 -239.32279 944.8638 -239.25201 946.3125 -239.40625 C 949.45851 -239.7412 951.49 -239.92484 953.5 -240.125 C 955.50991 -240.32514 955.98415 -240.95139 957.09375 -241.0625 C 958.24485 -241.17778 959.39025 -240.69744 963.46875 -241.125 C 967.54725 -241.55256 969.05765 -241.68709 969.78125 -241.90625 C 970.52047 -242.13011 971.57685 -242.4195 972.21875 -242.9375 C 974.27575 -242.53883 976.2206 -242.4441 977.75 -242.59375 C 980.89871 -242.90185 982.9258 -243.067 984.9375 -243.25 C 986.55151 -243.39682 987.20055 -243.81055 987.96875 -244.03125 C 988.21005 -244.11211 988.4623 -244.16116 988.75 -244.1875 C 989.90211 -244.29295 991.0429 -243.79475 995.125 -244.1875 C 999.20711 -244.58025 1000.7139 -244.71834 1001.4375 -244.9375 C 1002.1584 -245.15583 1003.1371 -245.3852 1003.7812 -245.875 C 1005.7193 -245.52501 1007.5501 -245.42062 1009 -245.5625 C 1012.1487 -245.8706 1014.1758 -246.03575 1016.1875 -246.21875 C 1018.1991 -246.40174 1018.7017 -247.05677 1019.8125 -247.15625 C 1020.9648 -247.25948 1022.1047 -246.77142 1026.1875 -247.15625 C 1030.2704 -247.54107 1031.7762 -247.65725 1032.5 -247.875 C 1033.2393 -248.09743 1034.2956 -248.38949 1034.9375 -248.90625 C 1036.9949 -248.50448 1038.9404 -248.40292 1040.4688 -248.5625 C 1043.6153 -248.89102 1045.6458 -249.0852 1047.6562 -249.28125 C 1049.2692 -249.43854 1049.9219 -249.91273 1050.6875 -250.15625 C 1050.9282 -250.24429 1051.1507 -250.27762 1051.4375 -250.3125 C 1052.5858 -250.4522 1053.7542 -249.97259 1057.8125 -250.5625 C 1061.8708 -251.15242 1063.3743 -251.33964 1064.0938 -251.59375 C 1064.8104 -251.84691 1065.7684 -252.15182 1066.4062 -252.6875 C 1068.3259 -252.47556 1070.1262 -252.53609 1071.5625 -252.78125 C 1074.6816 -253.31365 1076.6741 -253.70986 1078.6562 -254.09375 C 1080.6383 -254.47762 1081.1305 -255.1334 1082.2188 -255.375 C 1083.3475 -255.62566 1084.489 -255.25871 1088.4688 -256.25 C 1092.4483 -257.24127 1093.8983 -257.6693 1094.5938 -258.03125 C 1095.316 -258.40725 1096.3555 -258.90183 1096.9688 -259.5625 C 1098.9317 -259.57454 1100.7625 -259.85355 1102.1875 -260.40625 C 1105.1387 -261.55085 1107.0607 -262.27567 1108.875 -263.15625 C 1110.3307 -263.86277 1111.1941 -264.85828 1111.4062 -265.15625 C 1111.6185 -265.4542 1111.5051 -265.8848 1111.5312 -265.90625 C 1111.5742 -265.94148 1111.8716 -266.00028 1112.0312 -266.34375 C 1112.8902 -268.19082 1114.3544 -271.97139 1114.4688 -272.65625 C 1114.5825 -273.33839 1114.6368 -274.00902 1114.6875 -274.40625 C 1114.7169 -274.63575 1114.5404 -275.28515 1114.5625 -275.34375 C 1114.5934 -275.42579 1114.8508 -275.59432 1114.9062 -275.84375 C 1115.1725 -277.04206 1114.9953 -278.05111 1114.7812 -279.46875 C 1114.5673 -280.88638 1113.8096 -284.08338 1113.1562 -284.9375 C 1112.4973 -285.79922 1111.9314 -285.94801 1111.4062 -285.9375 z " | ||
1572 | style="fill:#bcb786;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1573 | id="path7423" | ||
1574 | d="M 1111.4062,-285.9375 L 1107.4688,-284.0625 C 1107.4283,-284.05228 1107.3692,-284.04201 1107.3438,-284.03125 C 1106.925,-283.8184 1107.1791,-283.93067 1106.6875,-283.71875 C 1106.2014,-283.50919 1104.9499,-283.13456 1102.5938,-282.25 C 1099.2626,-280.99942 1096.7895,-280.10016 1095.5938,-279.1875 C 1094.0576,-279.16623 1091.8733,-278.95419 1089.9375,-278.46875 C 1086.956,-277.72108 1085.0823,-277.29474 1083.1875,-276.875 C 1081.2927,-276.45527 1081.512,-276.23281 1080.3125,-276 C 1079.0159,-275.74833 1078.5911,-276.00899 1074.875,-275.21875 C 1071.3851,-274.4766 1065.9802,-273.28768 1064.7188,-272.53125 C 1063.1348,-272.71203 1060.8513,-272.85303 1058.875,-272.5625 C 1055.8346,-272.11554 1053.9588,-271.88974 1052.0312,-271.65625 C 1051.3758,-271.57687 1050.9902,-271.45547 1050.6875,-271.375 C 1050.2613,-271.24334 1050.0017,-271.11498 1049.3125,-271.03125 C 1048.0009,-270.87188 1047.5503,-271.18808 1043.7812,-270.75 C 1040.2273,-270.33691 1034.7758,-269.47718 1033.5312,-268.8125 C 1031.9322,-269.10979 1029.6735,-269.34669 1027.6875,-269.15625 C 1024.6287,-268.86293 1022.7155,-268.67226 1020.7812,-268.5 C 1018.847,-268.32773 1019.0926,-268.07763 1017.875,-267.96875 C 1016.5588,-267.85105 1016.1152,-268.13238 1012.3438,-267.71875 C 1008.8017,-267.3303 1003.3359,-266.50948 1002.0625,-265.84375 C 1000.4636,-266.13844 998.1753,-266.35076 996.1875,-266.15625 C 993.12921,-265.857 991.2463,-265.67601 989.3125,-265.5 C 988.65501,-265.44015 988.27245,-265.32144 987.96875,-265.25 C 987.54105,-265.13104 987.28525,-265.03193 986.59375,-264.96875 C 985.27775,-264.84849 984.834,-265.16363 981.0625,-264.75 C 977.50631,-264.35998 972.0569,-263.51084 970.8125,-262.84375 C 969.21381,-263.13793 966.95265,-263.36747 964.96875,-263.15625 C 961.91305,-262.83092 959.9947,-262.63001 958.0625,-262.4375 C 956.13031,-262.24499 956.37275,-261.99662 955.15625,-261.875 C 953.84137,-261.74353 953.3932,-262.03954 949.625,-261.59375 C 946.08611,-261.17509 940.6473,-260.30158 939.375,-259.625 C 937.77741,-259.90604 935.51505,-260.04543 933.53125,-259.8125 C 930.47927,-259.45413 928.58625,-259.24464 926.65625,-259.03125 C 926.00007,-258.95869 925.6156,-258.85856 925.3125,-258.78125 C 924.88571,-258.65402 924.6276,-258.51405 923.9375,-258.4375 C 922.62411,-258.29181 922.17015,-258.61152 918.40625,-258.125 C 914.85737,-257.66624 909.4276,-256.70598 908.1875,-256 C 906.59441,-256.24424 904.3537,-256.38135 902.375,-256.125 C 899.32741,-255.73018 897.4243,-255.47655 895.5,-255.21875 C 893.57571,-254.96096 893.7739,-254.72522 892.5625,-254.5625 C 891.25301,-254.3866 890.8153,-254.66688 887.0625,-254.09375 C 883.53821,-253.55551 878.1393,-252.39458 876.875,-251.65625 C 875.28751,-251.85979 873.0295,-251.91098 871.0625,-251.5625 C 868.03631,-251.02638 866.1636,-250.70081 864.25,-250.375 C 863.59941,-250.26423 863.2363,-250.10406 862.9375,-250 C 862.51681,-249.83512 862.27405,-249.6687 861.59375,-249.53125 C 860.29905,-249.26966 859.86665,-249.53745 856.15625,-248.71875 C 852.65777,-247.9468 847.31035,-246.33582 846.09375,-245.5 C 844.53085,-245.57745 842.33625,-245.41472 840.40625,-244.90625 C 837.43387,-244.12312 835.58855,-243.67416 833.71875,-243.15625 C 831.84875,-242.63835 832.0521,-242.38897 830.875,-242.0625 C 829.60251,-241.7096 829.17795,-241.95541 825.53125,-240.875 C 822.10657,-239.86037 816.88185,-237.94183 815.65625,-237.03125 C 814.11747,-237.01851 811.93645,-236.75903 810.03125,-236.15625 C 807.10027,-235.22891 805.2809,-234.69783 803.4375,-234.09375 C 802.81071,-233.88837 802.44585,-233.70117 802.15625,-233.5625 C 801.74867,-233.34889 801.50295,-233.15375 800.84375,-232.9375 C 799.58925,-232.52596 799.1576,-232.74846 795.5625,-231.5 C 792.17261,-230.32283 786.96755,-228.2863 785.78125,-227.34375 C 784.25737,-227.28408 782.1312,-226.94888 780.25,-226.28125 C 777.35261,-225.25296 775.55095,-224.60577 773.71875,-223.96875 C 771.88655,-223.33174 772.0909,-223.12021 770.9375,-222.71875 C 769.69071,-222.28479 769.27395,-222.51903 765.71875,-221.15625 C 762.38005,-219.87645 757.23165,-217.6737 756.03125,-216.6875 C 754.52407,-216.57981 752.39555,-216.1887 750.53125,-215.46875 C 747.66307,-214.36115 745.90735,-213.68719 744.09375,-213 C 743.47705,-212.76637 743.0973,-212.55797 742.8125,-212.40625 C 742.81251,-212.40625 742.8125,-212.37673 742.8125,-212.375 L 734.8125,-209.1875 L 736.625,-194.46875 C 736.36701,-194.52956 742.8125,-191.15625 742.8125,-191.15625 C 743.03891,-191.30093 743.26145,-191.42886 743.53125,-191.53125 C 744.61177,-191.94123 745.70285,-191.74702 749.53125,-193.21875 C 753.35977,-194.69049 754.7553,-195.22373 755.4375,-195.625 C 756.11711,-196.02478 757.04925,-196.50437 757.65625,-197.15625 C 759.48317,-197.294 761.22705,-197.64948 762.59375,-198.15625 C 765.56175,-199.25677 767.4691,-199.96244 769.375,-200.625 C 771.28081,-201.28754 771.72915,-202.03987 772.78125,-202.40625 C 773.87287,-202.78636 774.97635,-202.57163 778.84375,-203.9375 C 782.71115,-205.30336 784.1269,-205.76458 784.8125,-206.15625 C 785.51361,-206.55677 786.5133,-207.08923 787.125,-207.75 C 789.09581,-207.80466 790.94195,-208.13463 792.40625,-208.625 C 795.40777,-209.63008 797.3324,-210.24671 799.25,-210.875 C 800.78861,-211.3791 801.42415,-211.92177 802.15625,-212.3125 C 802.38647,-212.44681 802.63215,-212.56623 802.90625,-212.65625 C 804.00457,-213.01673 805.0877,-212.73762 809,-213.96875 C 812.91231,-215.19988 814.366,-215.6417 815.0625,-216 C 815.75641,-216.35697 816.6926,-216.79261 817.3125,-217.40625 C 819.17771,-217.42891 820.94835,-217.67308 822.34375,-218.09375 C 825.37415,-219.00729 827.33615,-219.52385 829.28125,-220.0625 C 831.22637,-220.60114 831.70745,-221.32702 832.78125,-221.625 C 833.89527,-221.93415 835.00125,-221.61761 838.96875,-222.65625 C 842.93625,-223.69488 844.38625,-224.08898 845.09375,-224.40625 C 845.82855,-224.73584 846.90765,-225.15997 847.53125,-225.78125 C 849.52907,-225.66525 851.3887,-225.80134 852.875,-226.15625 C 855.95311,-226.89125 857.9584,-227.25719 859.9375,-227.65625 C 861.52541,-227.97643 862.1818,-228.4468 862.9375,-228.75 C 863.17501,-228.8568 863.4044,-228.94276 863.6875,-229 C 864.82091,-229.22919 865.99215,-228.79107 870.03125,-229.5 C 874.07067,-230.20893 875.5315,-230.42709 876.25,-230.6875 C 876.96581,-230.94694 877.95435,-231.25474 878.59375,-231.78125 C 880.51795,-231.54176 882.34165,-231.55672 883.78125,-231.78125 C 886.90767,-232.26887 888.9358,-232.48192 890.9375,-232.75 C 892.93921,-233.01807 893.42625,-233.69514 894.53125,-233.84375 C 895.67767,-233.99793 896.8071,-233.54218 900.875,-234.0625 C 904.94281,-234.58282 906.43525,-234.75823 907.15625,-235 C 907.89337,-235.24714 908.95435,-235.58623 909.59375,-236.125 C 911.64375,-235.78947 913.56745,-235.72704 915.09375,-235.90625 C 918.23595,-236.27521 920.27375,-236.46561 922.28125,-236.6875 C 923.89207,-236.86552 924.5459,-237.2957 925.3125,-237.53125 C 925.55341,-237.61677 925.80655,-237.68685 926.09375,-237.71875 C 927.24345,-237.84647 928.39505,-237.3721 932.46875,-237.84375 C 936.54245,-238.3154 938.0278,-238.45435 938.75,-238.6875 C 939.46941,-238.91977 940.45025,-239.16096 941.09375,-239.65625 C 943.03005,-239.32279 944.8638,-239.25201 946.3125,-239.40625 C 949.45851,-239.7412 951.49,-239.92484 953.5,-240.125 C 955.50991,-240.32514 955.98415,-240.95139 957.09375,-241.0625 C 958.24485,-241.17778 959.39025,-240.69744 963.46875,-241.125 C 967.54725,-241.55256 969.05765,-241.68709 969.78125,-241.90625 C 970.52047,-242.13011 971.57685,-242.4195 972.21875,-242.9375 C 974.27575,-242.53883 976.2206,-242.4441 977.75,-242.59375 C 980.89871,-242.90185 982.9258,-243.067 984.9375,-243.25 C 986.55151,-243.39682 987.20055,-243.81055 987.96875,-244.03125 C 988.21005,-244.11211 988.4623,-244.16116 988.75,-244.1875 C 989.90211,-244.29295 991.0429,-243.79475 995.125,-244.1875 C 999.20711,-244.58025 1000.7139,-244.71834 1001.4375,-244.9375 C 1002.1584,-245.15583 1003.1371,-245.3852 1003.7812,-245.875 C 1005.7193,-245.52501 1007.5501,-245.42062 1009,-245.5625 C 1012.1487,-245.8706 1014.1758,-246.03575 1016.1875,-246.21875 C 1018.1991,-246.40174 1018.7017,-247.05677 1019.8125,-247.15625 C 1020.9648,-247.25948 1022.1047,-246.77142 1026.1875,-247.15625 C 1030.2704,-247.54107 1031.7762,-247.65725 1032.5,-247.875 C 1033.2393,-248.09743 1034.2956,-248.38949 1034.9375,-248.90625 C 1036.9949,-248.50448 1038.9404,-248.40292 1040.4688,-248.5625 C 1043.6153,-248.89102 1045.6458,-249.0852 1047.6562,-249.28125 C 1049.2692,-249.43854 1049.9219,-249.91273 1050.6875,-250.15625 C 1050.9282,-250.24429 1051.1507,-250.27762 1051.4375,-250.3125 C 1052.5858,-250.4522 1053.7542,-249.97259 1057.8125,-250.5625 C 1061.8708,-251.15242 1063.3743,-251.33964 1064.0938,-251.59375 C 1064.8104,-251.84691 1065.7684,-252.15182 1066.4062,-252.6875 C 1068.3259,-252.47556 1070.1262,-252.53609 1071.5625,-252.78125 C 1074.6816,-253.31365 1076.6741,-253.70986 1078.6562,-254.09375 C 1080.6383,-254.47762 1081.1305,-255.1334 1082.2188,-255.375 C 1083.3475,-255.62566 1084.489,-255.25871 1088.4688,-256.25 C 1092.4483,-257.24127 1093.8983,-257.6693 1094.5938,-258.03125 C 1095.316,-258.40725 1096.3555,-258.90183 1096.9688,-259.5625 C 1098.9317,-259.57454 1100.7625,-259.85355 1102.1875,-260.40625 C 1105.1387,-261.55085 1107.0607,-262.27567 1108.875,-263.15625 C 1110.3307,-263.86277 1111.1941,-264.85828 1111.4062,-265.15625 C 1111.6185,-265.4542 1111.5051,-265.8848 1111.5312,-265.90625 C 1111.5742,-265.94148 1111.8716,-266.00028 1112.0312,-266.34375 C 1112.8902,-268.19082 1114.3544,-271.97139 1114.4688,-272.65625 C 1114.5825,-273.33839 1114.6368,-274.00902 1114.6875,-274.40625 C 1114.7169,-274.63575 1114.5404,-275.28515 1114.5625,-275.34375 C 1114.5934,-275.42579 1114.8508,-275.59432 1114.9062,-275.84375 C 1115.1725,-277.04206 1114.9953,-278.05111 1114.7812,-279.46875 C 1114.5673,-280.88638 1113.8096,-284.08338 1113.1562,-284.9375 C 1112.4973,-285.79922 1111.9314,-285.94801 1111.4062,-285.9375 z" | ||
1575 | transform="translate(8.0045714e-2,-3.125e-2)" /> | ||
1576 | </clipPath> | ||
1577 | <filter | ||
1578 | inkscape:collect="always" | ||
1579 | id="filter7578" | ||
1580 | x="-0.08160872" | ||
1581 | width="1.1632174" | ||
1582 | y="-0.22659944" | ||
1583 | height="1.4531989"> | ||
1584 | <feGaussianBlur | ||
1585 | inkscape:collect="always" | ||
1586 | stdDeviation="2.437399" | ||
1587 | id="feGaussianBlur7580" /> | ||
1588 | </filter> | ||
1589 | <filter | ||
1590 | inkscape:collect="always" | ||
1591 | id="filter7594" | ||
1592 | x="-0.040804356" | ||
1593 | width="1.0816087" | ||
1594 | y="-0.11329972" | ||
1595 | height="1.2265995"> | ||
1596 | <feGaussianBlur | ||
1597 | inkscape:collect="always" | ||
1598 | stdDeviation="1.2186995" | ||
1599 | id="feGaussianBlur7596" /> | ||
1600 | </filter> | ||
1601 | <clipPath | ||
1602 | clipPathUnits="userSpaceOnUse" | ||
1603 | id="clipPath7606"> | ||
1604 | <path | ||
1605 | id="path7608" | ||
1606 | d="M 1049.205,-282.26672 L 1049.1152,-282.25891 C 1047.7278,-281.37446 1042.5119,-280.65171 1042.4862,-272.73547 C 1042.462,-265.31022 1057.4991,-255.64401 1059.6425,-254.64172 C 1061.3727,-253.83263 1063.2341,-253.23296 1065.0488,-252.92297 L 1066.4862,-252.70422 C 1068.4059,-252.49228 1070.2062,-252.55281 1071.6425,-252.79797 C 1074.7616,-253.33037 1076.7541,-253.72658 1078.7362,-254.11047 C 1080.7183,-254.49434 1081.2105,-255.15012 1082.2988,-255.39172 C 1083.4275,-255.64238 1084.569,-255.27543 1088.5488,-256.26672 C 1092.5283,-257.258 1093.9782,-257.68602 1094.6738,-258.04797 C 1095.396,-258.42398 1096.4355,-258.91855 1097.0488,-259.57922 C 1099.0117,-259.59127 1100.8425,-259.87027 1102.2675,-260.42297 C 1105.2187,-261.56758 1107.1407,-262.29239 1108.955,-263.17297 C 1110.4107,-263.8795 1111.2741,-264.875 1111.4862,-265.17297 C 1111.6985,-265.47093 1111.5852,-265.90152 1111.6112,-265.92297 C 1111.6542,-265.95821 1111.9517,-266.017 1112.1112,-266.36047 C 1112.9702,-268.20755 1114.4344,-271.98811 1114.5488,-272.67297 C 1114.6625,-273.35512 1114.7168,-274.02574 1114.7675,-274.42297 C 1114.7969,-274.65248 1114.6204,-275.30187 1114.6425,-275.36047 C 1114.6734,-275.44252 1114.9308,-275.61104 1114.9862,-275.86047 C 1115.2525,-277.05879 1115.0754,-278.06783 1114.8612,-279.48547 C 1114.6473,-280.90311 1113.8896,-284.1001 1113.2362,-284.95422 C 1112.8168,-285.50279 1112.4369,-285.74672 1112.08,-285.86047 C 1112.0129,-285.87776 1111.9561,-285.90721 1111.8925,-285.92297 C 1111.8715,-285.92695 1111.8508,-285.91983 1111.83,-285.92297 C 1111.5184,-285.99847 1111.2215,-286.08164 1110.6738,-286.14172 C 1109.6883,-286.24984 1108.2491,-286.40112 1106.705,-286.39172 C 1106.1903,-286.38859 1105.6679,-286.34408 1105.1425,-286.29797 C 1101.5836,-285.98569 1096.1327,-285.30689 1094.9238,-284.67297 C 1093.2907,-285.00699 1090.9756,-285.2852 1088.9862,-285.14172 C 1085.9222,-284.92075 1084.0185,-284.79953 1082.08,-284.67297 C 1080.1416,-284.54642 1080.3939,-284.28433 1079.1738,-284.20422 C 1077.8547,-284.11762 1077.3869,-284.42747 1073.6112,-284.11047 C 1070.0655,-283.81275 1064.6306,-283.1173 1063.3925,-282.48547 C 1061.7591,-282.81998 1059.4466,-283.09786 1057.455,-282.95422 C 1054.3908,-282.73324 1052.4872,-282.58078 1050.5488,-282.45422 C 1049.8896,-282.41119 1049.5064,-282.33029 1049.205,-282.26672 z" | ||
1607 | style="opacity:0.82448976;fill:#bcb786;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1608 | </clipPath> | ||
1609 | <filter | ||
1610 | inkscape:collect="always" | ||
1611 | id="filter7610" | ||
1612 | x="-0.021942979" | ||
1613 | width="1.0438859" | ||
1614 | y="-0.10017137" | ||
1615 | height="1.2003427"> | ||
1616 | <feGaussianBlur | ||
1617 | inkscape:collect="always" | ||
1618 | stdDeviation="0.57530213" | ||
1619 | id="feGaussianBlur7612" /> | ||
1620 | </filter> | ||
1621 | <clipPath | ||
1622 | clipPathUnits="userSpaceOnUse" | ||
1623 | id="clipPath7616"> | ||
1624 | <path | ||
1625 | id="path7618" | ||
1626 | d="M 205.47016,-408.97318 L 205.38003,-408.97164 C 203.9344,-408.18598 198.68082,-407.82829 198.10378,-399.93307 C 197.56244,-392.52754 211.88973,-381.83741 213.95811,-380.68826 C 215.62775,-379.76062 217.44286,-379.03275 219.23156,-378.59711 L 220.65023,-378.27877 C 222.5505,-377.93363 224.35065,-377.86862 225.80054,-378.01314 C 228.94914,-378.32698 230.9644,-378.58345 232.96843,-378.82834 C 234.97245,-379.07322 235.50913,-379.69312 236.61162,-379.85833 C 237.75504,-380.02976 238.86821,-379.58419 242.90739,-380.29586 C 246.94627,-381.00755 248.42246,-381.33354 249.14158,-381.64616 C 249.88822,-381.97095 250.95964,-382.39191 251.61747,-383.00826 C 253.57644,-382.88355 255.42223,-383.03435 256.88227,-383.48645 C 259.90603,-384.42272 261.87384,-385.01189 263.74507,-385.76396 C 265.24645,-386.36738 266.17709,-387.30032 266.40943,-387.58279 C 266.64197,-387.86524 266.55894,-388.30268 266.58637,-388.32227 C 266.63172,-388.35443 266.93259,-388.39235 267.11563,-388.72388 C 268.1012,-390.50664 269.82518,-394.17603 269.987,-394.85126 C 270.14794,-395.52383 270.24882,-396.18904 270.32707,-396.58177 C 270.37238,-396.80868 270.24154,-397.46878 270.26767,-397.5257 C 270.30421,-397.6054 270.57272,-397.75558 270.64536,-398.00055 C 270.99449,-399.17741 270.8881,-400.19633 270.77316,-401.62545 C 270.65853,-403.05454 270.12535,-406.29655 269.53303,-407.1941 C 269.15286,-407.77056 268.79088,-408.04035 268.44277,-408.17869 C 268.37703,-408.20061 268.32242,-408.23394 268.26007,-408.2541 C 268.2394,-408.25953 268.21826,-408.25387 268.19773,-408.25845 C 267.89214,-408.35547 267.60176,-408.45912 267.05957,-408.5572 C 266.084,-408.7337 264.65883,-408.98486 263.11782,-409.08304 C 262.60416,-409.11577 262.07992,-409.10775 261.55259,-409.09835 C 257.98058,-409.03472 252.49564,-408.73725 251.24552,-408.18907 C 249.63965,-408.63604 247.34955,-409.07483 245.35499,-409.07027 C 242.28304,-409.06325 240.37552,-409.07493 238.43292,-409.0837 C 236.49041,-409.09248 236.72384,-408.81345 235.50112,-408.81852 C 234.1792,-408.82401 233.73411,-409.16569 229.9455,-409.11245 C 226.38768,-409.06243 220.91754,-408.74723 219.63844,-408.20318 C 218.0323,-408.65065 215.74477,-409.08893 213.74801,-409.08436 C 210.67586,-409.07735 208.76626,-409.05786 206.82375,-409.06662 C 206.16316,-409.06961 205.77525,-409.0156 205.47016,-408.97318 z" | ||
1627 | style="opacity:0.82448976;fill:#bcb786;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1628 | </clipPath> | ||
1629 | <linearGradient | ||
1630 | inkscape:collect="always" | ||
1631 | xlink:href="#linearGradient7622" | ||
1632 | id="linearGradient7708" | ||
1633 | gradientUnits="userSpaceOnUse" | ||
1634 | gradientTransform="translate(-19.091883,4.2426407)" | ||
1635 | x1="774.97668" | ||
1636 | y1="-211.87105" | ||
1637 | x2="755.11584" | ||
1638 | y2="-202.67865" /> | ||
1639 | <mask | ||
1640 | maskUnits="userSpaceOnUse" | ||
1641 | id="mask7704"> | ||
1642 | <path | ||
1643 | style="fill:url(#linearGradient7708);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" | ||
1644 | d="M 718.40812,-224.31217 L 751.65812,-168.31217 L 1027.6581,-192.31217 L 1187.1581,-240.56217 L 1120.6581,-323.31217 L 718.40812,-224.31217 z" | ||
1645 | id="path7706" /> | ||
1646 | </mask> | ||
1647 | <radialGradient | ||
1648 | inkscape:collect="always" | ||
1649 | xlink:href="#linearGradient8430" | ||
1650 | id="radialGradient7904" | ||
1651 | gradientUnits="userSpaceOnUse" | ||
1652 | gradientTransform="matrix(-0.3324832,0.9022288,-0.9582407,-0.3531242,305.29227,19.909497)" | ||
1653 | cx="142.95833" | ||
1654 | cy="107.09234" | ||
1655 | fx="142.95833" | ||
1656 | fy="107.09234" | ||
1657 | r="66.981766" /> | ||
1658 | <radialGradient | ||
1659 | inkscape:collect="always" | ||
1660 | xlink:href="#linearGradient3317" | ||
1661 | id="radialGradient7906" | ||
1662 | gradientUnits="userSpaceOnUse" | ||
1663 | gradientTransform="matrix(1.0036478,-1.0345492e-7,1.7124628e-7,1.6613125,-160.53487,-96.205369)" | ||
1664 | cx="317.78754" | ||
1665 | cy="129.65378" | ||
1666 | fx="317.78754" | ||
1667 | fy="129.65378" | ||
1668 | r="47.863216" /> | ||
1669 | <radialGradient | ||
1670 | inkscape:collect="always" | ||
1671 | xlink:href="#linearGradient8398" | ||
1672 | id="radialGradient7908" | ||
1673 | gradientUnits="userSpaceOnUse" | ||
1674 | gradientTransform="matrix(2.0747661,-0.1577957,0.2382425,3.1325183,-550.77432,-65.728909)" | ||
1675 | cx="325.30847" | ||
1676 | cy="80.909554" | ||
1677 | fx="325.30847" | ||
1678 | fy="80.909554" | ||
1679 | r="26.937988" /> | ||
1680 | <clipPath | ||
1681 | clipPathUnits="userSpaceOnUse" | ||
1682 | id="clipPath8209"> | ||
1683 | <path | ||
1684 | sodipodi:nodetypes="czcc" | ||
1685 | id="path8211" | ||
1686 | d="M 734.03125,519.49186 C 734.03125,519.49186 750.78638,556.50992 762.73266,573.44581 C 774.67895,590.3817 815.45982,629.49186 815.45982,629.49186 L 816.05699,490.90211" | ||
1687 | style="opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1688 | </clipPath> | ||
1689 | <filter | ||
1690 | inkscape:collect="always" | ||
1691 | id="filter8225"> | ||
1692 | <feGaussianBlur | ||
1693 | inkscape:collect="always" | ||
1694 | stdDeviation="10.661912" | ||
1695 | id="feGaussianBlur8227" /> | ||
1696 | </filter> | ||
1697 | <filter | ||
1698 | inkscape:collect="always" | ||
1699 | id="filter8333"> | ||
1700 | <feGaussianBlur | ||
1701 | inkscape:collect="always" | ||
1702 | stdDeviation="7.18" | ||
1703 | id="feGaussianBlur8335" /> | ||
1704 | </filter> | ||
1705 | <clipPath | ||
1706 | clipPathUnits="userSpaceOnUse" | ||
1707 | id="clipPath8338"> | ||
1708 | <path | ||
1709 | sodipodi:nodetypes="czzzzzzcccccccccczczz" | ||
1710 | id="path8340" | ||
1711 | d="M 266.27183,924.57185 C 264.86456,943.37307 265.12693,957.32289 268.35357,973.87513 C 271.58023,990.42751 284.75966,1019.7825 288.68798,1037.0589 C 292.61419,1054.326 291.38211,1075.3686 276.22854,1088.2071 C 260.91093,1101.1846 234.17727,1109.8061 208.39624,1103.9409 C 182.61518,1098.0756 138.84716,1054.7175 119.80605,1033.7126 C 100.6939,1012.6293 56.045182,939.86193 41.867507,909.4368 C 27.689835,879.01168 29.207902,872.71823 33.747792,863.90708 C 24.38107,839.38658 21.33408,813.84026 0.035334479,788.33044 C 30.360814,791.44487 43.915624,815.28676 60.161024,835.47019 C 54.631128,787.39416 42.106309,771.05368 31.787072,744.74589 C 61.781367,750.82754 82.366432,776.61828 95.766855,817.45839 C 105.32101,813.54047 114.00462,808.08545 125.95427,808.39719 C 114.65677,766.70139 108.0048,738.48134 89.267014,707.32725 C 142.70898,712.99757 172.92404,787.96657 168.23844,795.28805 C 178.21641,793.04406 187.24409,788.75767 198.67497,789.63638 C 187.426,751.28935 177.62715,712.76848 195.01526,670.98819 C 195.01526,670.98819 243.30204,736.42507 249.40491,756.79397 C 255.50779,777.16287 250.92373,795.49448 250.92373,795.49448 C 250.92373,795.49448 267.8833,826.57978 271.21765,846.58862 C 274.59075,866.82996 267.68496,905.69193 266.27183,924.57185 z" | ||
1712 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1713 | </clipPath> | ||
1714 | <filter | ||
1715 | inkscape:collect="always" | ||
1716 | id="filter8354"> | ||
1717 | <feGaussianBlur | ||
1718 | inkscape:collect="always" | ||
1719 | stdDeviation="6.82" | ||
1720 | id="feGaussianBlur8356" /> | ||
1721 | </filter> | ||
1722 | <clipPath | ||
1723 | clipPathUnits="userSpaceOnUse" | ||
1724 | id="clipPath8359"> | ||
1725 | <path | ||
1726 | sodipodi:nodetypes="czzzzzzcccccccccczczz" | ||
1727 | id="path8361" | ||
1728 | d="M 266.27183,924.57185 C 264.86456,943.37307 265.12693,957.32289 268.35357,973.87513 C 271.58023,990.42751 284.75966,1019.7825 288.68798,1037.0589 C 292.61419,1054.326 291.38211,1075.3686 276.22854,1088.2071 C 260.91093,1101.1846 234.17727,1109.8061 208.39624,1103.9409 C 182.61518,1098.0756 138.84716,1054.7175 119.80605,1033.7126 C 100.6939,1012.6293 56.045182,939.86193 41.867507,909.4368 C 27.689835,879.01168 29.207902,872.71823 33.747792,863.90708 C 24.38107,839.38658 21.33408,813.84026 0.035334479,788.33044 C 30.360814,791.44487 43.915624,815.28676 60.161024,835.47019 C 54.631128,787.39416 42.106309,771.05368 31.787072,744.74589 C 61.781367,750.82754 82.366432,776.61828 95.766855,817.45839 C 105.32101,813.54047 114.00462,808.08545 125.95427,808.39719 C 114.65677,766.70139 108.0048,738.48134 89.267014,707.32725 C 142.70898,712.99757 172.92404,787.96657 168.23844,795.28805 C 178.21641,793.04406 187.24409,788.75767 198.67497,789.63638 C 187.426,751.28935 177.62715,712.76848 195.01526,670.98819 C 195.01526,670.98819 243.30204,736.42507 249.40491,756.79397 C 255.50779,777.16287 250.92373,795.49448 250.92373,795.49448 C 250.92373,795.49448 267.8833,826.57978 271.21765,846.58862 C 274.59075,866.82996 267.68496,905.69193 266.27183,924.57185 z" | ||
1729 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1730 | </clipPath> | ||
1731 | <filter | ||
1732 | inkscape:collect="always" | ||
1733 | id="filter8379" | ||
1734 | x="-0.14413793" | ||
1735 | width="1.288276" | ||
1736 | y="-0.10278689" | ||
1737 | height="1.2055738"> | ||
1738 | <feGaussianBlur | ||
1739 | inkscape:collect="always" | ||
1740 | stdDeviation="7.389266" | ||
1741 | id="feGaussianBlur8381" /> | ||
1742 | </filter> | ||
1743 | <clipPath | ||
1744 | clipPathUnits="userSpaceOnUse" | ||
1745 | id="clipPath8392"> | ||
1746 | <path | ||
1747 | sodipodi:nodetypes="czzzzzzcccccccccczczz" | ||
1748 | id="path8394" | ||
1749 | d="M 760.16396,935.83377 C 766.95806,954.73656 770.65765,969.13346 772.05426,987.04566 C 773.45088,1004.958 768.27158,1038.8465 769.1538,1057.7018 C 770.03555,1076.547 777.28749,1097.8008 796.49843,1106.6707 C 815.9173,1115.6365 845.81767,1116.882 870.61827,1103.5251 C 895.41887,1090.1681 928.01929,1033.1996 941.59253,1006.2164 C 955.21638,979.13246 980.3536,891.71903 986.25333,856.44781 C 992.15306,821.1766 988.80387,815.14704 981.63585,807.39232 C 984.27615,779.55217 980.13613,752.45689 994.74554,720.20614 C 964.49653,732.03184 957.36325,760.36684 946.42665,785.71122 C 938.42574,734.77829 946.63581,714.43803 949.74554,684.49186 C 920.68078,699.26977 906.88403,731.60588 904.74554,777.349 C 893.82159,776.0448 883.3541,772.91477 871.17411,776.63471 C 870.91007,730.61137 869.71055,699.7453 880.08474,662.42822 C 826.82927,683.45508 817.13746,769.02232 824.03125,775.20614 C 813.14843,775.74114 802.66017,773.90884 791.17411,778.06329 C 791.81303,735.49194 790.91365,693.15468 761.17411,655.20614 C 761.17411,655.20614 730.21605,736.12848 729.74554,758.77757 C 729.27503,781.42666 739.19713,798.94345 739.19713,798.94345 C 739.19713,798.94345 730.62906,835.68396 732.89854,857.17568 C 735.19439,878.91714 753.34144,916.85185 760.16396,935.83377 z" | ||
1750 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1751 | </clipPath> | ||
1752 | <filter | ||
1753 | inkscape:collect="always" | ||
1754 | id="filter8404" | ||
1755 | x="-0.090268657" | ||
1756 | width="1.1805373" | ||
1757 | y="-0.10250848" | ||
1758 | height="1.205017"> | ||
1759 | <feGaussianBlur | ||
1760 | inkscape:collect="always" | ||
1761 | stdDeviation="5.3457272" | ||
1762 | id="feGaussianBlur8406" /> | ||
1763 | </filter> | ||
1764 | <clipPath | ||
1765 | clipPathUnits="userSpaceOnUse" | ||
1766 | id="clipPath8417"> | ||
1767 | <path | ||
1768 | sodipodi:nodetypes="czzzzzzcccccccccczczz" | ||
1769 | id="path8419" | ||
1770 | d="M 760.16396,935.83377 C 766.95806,954.73656 770.65765,969.13346 772.05426,987.04566 C 773.45088,1004.958 768.27158,1038.8465 769.1538,1057.7018 C 770.03555,1076.547 777.28749,1097.8008 796.49843,1106.6707 C 815.9173,1115.6365 845.81767,1116.882 870.61827,1103.5251 C 895.41887,1090.1681 928.01929,1033.1996 941.59253,1006.2164 C 955.21638,979.13246 980.3536,891.71903 986.25333,856.44781 C 992.15306,821.1766 988.80387,815.14704 981.63585,807.39232 C 984.27615,779.55217 980.13613,752.45689 994.74554,720.20614 C 964.49653,732.03184 957.36325,760.36684 946.42665,785.71122 C 938.42574,734.77829 946.63581,714.43803 949.74554,684.49186 C 920.68078,699.26977 906.88403,731.60588 904.74554,777.349 C 893.82159,776.0448 883.3541,772.91477 871.17411,776.63471 C 870.91007,730.61137 869.71055,699.7453 880.08474,662.42822 C 826.82927,683.45508 817.13746,769.02232 824.03125,775.20614 C 813.14843,775.74114 802.66017,773.90884 791.17411,778.06329 C 791.81303,735.49194 790.91365,693.15468 761.17411,655.20614 C 761.17411,655.20614 730.21605,736.12848 729.74554,758.77757 C 729.27503,781.42666 739.19713,798.94345 739.19713,798.94345 C 739.19713,798.94345 730.62906,835.68396 732.89854,857.17568 C 735.19439,878.91714 753.34144,916.85185 760.16396,935.83377 z" | ||
1771 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1772 | </clipPath> | ||
1773 | </defs> | ||
1774 | <metadata | ||
1775 | id="metadata7"> | ||
1776 | <rdf:RDF> | ||
1777 | <cc:Work | ||
1778 | rdf:about=""> | ||
1779 | <dc:format>image/svg+xml</dc:format> | ||
1780 | <dc:type | ||
1781 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | ||
1782 | </cc:Work> | ||
1783 | </rdf:RDF> | ||
1784 | </metadata> | ||
1785 | <g | ||
1786 | inkscape:groupmode="layer" | ||
1787 | id="layer1" | ||
1788 | inkscape:label="Shadow"> | ||
1789 | <path | ||
1790 | style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter11361);enable-background:new" | ||
1791 | d="M 304.64285,526.6479 C 294.64285,527.00505 286.42857,529.50504 286.42857,529.50504 L 293.92857,535.57647 L 304.28571,539.1479 L 320.35714,539.50504 L 342.85714,534.1479 L 350.71428,535.21933 L 371.07143,533.07647 L 360.71428,539.86219 C 366.17351,538.83858 378.10757,543.4313 370.35714,545.21933 C 368.61714,545.62075 384.28571,540.57648 384.28571,540.57648 L 386.78571,535.93361 L 390.35714,526.6479 L 401.78571,526.6479 L 419.99999,522.00504 L 423.57143,517.00505 L 407.49999,518.07647 L 395.35714,520.21933 L 380.71428,515.21933 L 310.02218,531.92707 L 304.64285,526.6479 z" | ||
1792 | id="path10326" | ||
1793 | sodipodi:nodetypes="cccccccccsccccccccccc" | ||
1794 | transform="matrix(10.726753,0,0,10.726753,-2882.1235,-4565.4583)" | ||
1795 | inkscape:export-filename="/home/cheeseness/Documents/LCA09/mascot/tuz_new.png" | ||
1796 | inkscape:export-xdpi="142.10527" | ||
1797 | inkscape:export-ydpi="142.10527" /> | ||
1798 | </g> | ||
1799 | <g | ||
1800 | inkscape:groupmode="layer" | ||
1801 | id="layer20" | ||
1802 | inkscape:label="New Ear"> | ||
1803 | <g | ||
1804 | style="opacity:1;display:inline;enable-background:new" | ||
1805 | id="g7882" | ||
1806 | transform="matrix(0.71084,-0.1937433,0.262963,0.9648058,503.68027,136.48399)"> | ||
1807 | <path | ||
1808 | sodipodi:nodetypes="czzzzcc" | ||
1809 | id="path7876" | ||
1810 | d="M 245.12255,100.05344 C 245.12255,100.05344 197.99444,68.406519 177.9079,64.252501 C 157.86998,60.108538 139.435,60.934923 125.97426,77.859824 C 112.51352,94.784725 113.89687,139.12502 112.43872,164.82937 C 110.98057,190.53372 114.98817,235.00638 130.04332,253.49489 C 145.09848,271.98339 175.92966,267.07991 179.97027,274.90859 C 182.1831,279.19595 245.12255,100.05344 245.12255,100.05344 z" | ||
1811 | style="opacity:1;fill:url(#radialGradient7904);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1812 | <path | ||
1813 | sodipodi:nodetypes="czzzzzc" | ||
1814 | id="path7878" | ||
1815 | d="M 135.37935,82.017807 C 135.37935,82.017807 161.7229,83.95659 173.01242,95.920995 C 184.42736,108.01833 186.74699,117.25251 188.30828,133.65558 C 189.87165,150.08057 187.45871,162.0737 180.49446,169.69292 C 173.53021,177.31214 179.49017,189.27624 154.57841,181.76399 C 129.66665,174.25174 127.54617,153.98101 128.06318,135.45924 C 128.58039,116.93026 135.37935,82.017807 135.37935,82.017807 z" | ||
1816 | style="opacity:1;fill:url(#radialGradient7906);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1817 | <path | ||
1818 | sodipodi:nodetypes="czccssc" | ||
1819 | id="path7880" | ||
1820 | d="M 135.648,81.927211 C 135.648,81.927211 131.00335,98.292286 136.23625,110.49031 C 141.72419,123.28285 163.4605,154.75038 163.4605,165.14596 L 186.11675,160.14596 C 188.65893,153.17952 189.32727,144.3939 188.30425,133.64596 C 186.74296,117.24289 184.43795,108.02455 173.023,95.927211 C 163.36812,85.695164 141.42989,82.552354 135.648,81.927211 z" | ||
1821 | style="opacity:1;fill:url(#radialGradient7908);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1822 | </g> | ||
1823 | </g> | ||
1824 | <g | ||
1825 | inkscape:groupmode="layer" | ||
1826 | id="layer21" | ||
1827 | inkscape:label="Rendered2" | ||
1828 | style="display:inline"> | ||
1829 | <path | ||
1830 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1831 | d="M 845.03125,1154.7776 C 840.74554,1155.4919 817.4031,1158.3957 787.17411,1164.7776 C 756.94512,1171.1595 729.86016,1169.7437 651.38803,1182.1072 C 571.53625,1194.688 557.32367,1224.6495 543.26578,1229.1715 C 528.56564,1233.9001 397.88839,1163.349 397.88839,1163.349 L 402.17411,1069.0633 C 402.17411,1069.0633 488.05962,1052.8624 514.31696,1035.4919 C 540.57431,1018.1214 559.89934,985.82588 573.60268,964.06329 C 587.30602,942.3007 606.45982,892.63471 606.45982,892.63471 L 845.03125,1154.7776 z" | ||
1832 | id="path7917" | ||
1833 | sodipodi:nodetypes="czzzcczzcc" /> | ||
1834 | <path | ||
1835 | style="opacity:0.5;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8888);enable-background:accumulate" | ||
1836 | d="M 332.34019,898.38549 L 299.60838,837.08593 L 261.99104,882.19239 C 264.16779,883.5095 267.76529,861.33636 307.59144,817.77531 L 332.34019,898.38549 z" | ||
1837 | id="path7919" | ||
1838 | clip-path="url(#clipPath8658)" | ||
1839 | sodipodi:nodetypes="ccccc" | ||
1840 | transform="translate(276,136)" /> | ||
1841 | <path | ||
1842 | style="opacity:1;fill:url(#linearGradient2841);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8892);enable-background:accumulate" | ||
1843 | d="M 200.81833,863.03015 L 347.18943,811.41136 L 591.14127,1037.6855 L 349.31075,1177.6927 L 168.29141,1090.0114 L 200.81833,863.03015 z" | ||
1844 | id="path7923" | ||
1845 | clip-path="url(#clipPath2833)" | ||
1846 | sodipodi:nodetypes="cccccc" | ||
1847 | transform="translate(276,136)" /> | ||
1848 | <path | ||
1849 | style="opacity:1;fill:#0f0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1850 | d="M 642.88839,640.13471 C 642.88839,640.13471 613.33433,680.70776 595.03125,714.42042 C 576.72816,748.13309 536.41016,840.77736 524.67411,885.49185 C 512.91471,930.29529 462.17411,1009.0633 462.17411,1009.0633 L 538.24554,1027.2776 C 538.24554,1027.2776 550.05266,1014.4542 569.31696,981.20614 C 588.58126,947.95806 629.67411,842.63471 629.67411,842.63471 L 642.88839,640.13471 z" | ||
1851 | id="path7921" | ||
1852 | sodipodi:nodetypes="czzcczcc" /> | ||
1853 | <path | ||
1854 | style="opacity:0.4;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8856);enable-background:accumulate" | ||
1855 | d="M 430.28131,381.94122 C 423.21025,384.76965 194.10007,414.09303 194.10007,414.09303 L 154.46046,773.92607 L 244.65895,866.56568 L 296.98485,752.01438 L 397.45289,565.62246 L 430.28131,381.94122 z" | ||
1856 | id="path7925" | ||
1857 | sodipodi:nodetypes="ccccccc" | ||
1858 | clip-path="url(#clipPath3665)" | ||
1859 | transform="translate(276,136)" /> | ||
1860 | <path | ||
1861 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1862 | d="M 969.67051,1164.0346 C 969.67051,1164.0346 992.92679,1175.4283 1005.7383,1184.5107 C 1018.4357,1193.5122 1035.2107,1209.1598 1047.4307,1221.8712 C 1059.7362,1234.6714 1067.5434,1244.4699 1088.9634,1246.032 C 1110.3956,1247.5949 1142.2458,1237.2444 1162.2594,1221.3678 C 1182.2729,1205.4912 1207.9063,1152.135 1207.9063,1152.135 L 1080.7455,1009.0633" | ||
1863 | id="path7927" | ||
1864 | sodipodi:nodetypes="czzzzcc" /> | ||
1865 | <path | ||
1866 | style="opacity:0.75;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8860);enable-background:accumulate" | ||
1867 | d="M 331.34019,641.50471 L 216.17367,835.36467 L 260.2153,925.96265 L 357.79603,732.21539 L 331.34019,641.50471 z" | ||
1868 | id="path7929" | ||
1869 | clip-path="url(#clipPath8642)" | ||
1870 | sodipodi:nodetypes="ccccc" | ||
1871 | transform="translate(276,136)" /> | ||
1872 | <g | ||
1873 | style="opacity:1;display:inline;enable-background:new" | ||
1874 | id="g7931" | ||
1875 | transform="matrix(0.9934486,0.1142802,-0.1142802,0.9934486,-9.24324,588.09054)" | ||
1876 | inkscape:transform-center-x="-347.89063" | ||
1877 | inkscape:transform-center-y="-28.255779"> | ||
1878 | <path | ||
1879 | style="opacity:1;fill:#bcb786;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1880 | d="M 1049.205,-282.26672 L 1049.1152,-282.25891 C 1047.7278,-281.37446 1042.5119,-280.65171 1042.4862,-272.73547 C 1042.462,-265.31022 1057.4991,-255.64401 1059.6425,-254.64172 C 1061.3727,-253.83263 1063.2341,-253.23296 1065.0488,-252.92297 L 1066.4862,-252.70422 C 1068.4059,-252.49228 1070.2062,-252.55281 1071.6425,-252.79797 C 1074.7616,-253.33037 1076.7541,-253.72658 1078.7362,-254.11047 C 1080.7183,-254.49434 1081.2105,-255.15012 1082.2988,-255.39172 C 1083.4275,-255.64238 1084.569,-255.27543 1088.5488,-256.26672 C 1092.5283,-257.258 1093.9782,-257.68602 1094.6738,-258.04797 C 1095.396,-258.42398 1096.4355,-258.91855 1097.0488,-259.57922 C 1099.0117,-259.59127 1100.8425,-259.87027 1102.2675,-260.42297 C 1105.2187,-261.56758 1107.1407,-262.29239 1108.955,-263.17297 C 1110.4107,-263.8795 1111.2741,-264.875 1111.4862,-265.17297 C 1111.6985,-265.47093 1111.5852,-265.90152 1111.6112,-265.92297 C 1111.6542,-265.95821 1111.9517,-266.017 1112.1112,-266.36047 C 1112.9702,-268.20755 1114.4344,-271.98811 1114.5488,-272.67297 C 1114.6625,-273.35512 1114.7168,-274.02574 1114.7675,-274.42297 C 1114.7969,-274.65248 1114.6204,-275.30187 1114.6425,-275.36047 C 1114.6734,-275.44252 1114.9308,-275.61104 1114.9862,-275.86047 C 1115.2525,-277.05879 1115.0754,-278.06783 1114.8612,-279.48547 C 1114.6473,-280.90311 1113.8896,-284.1001 1113.2362,-284.95422 C 1112.8168,-285.50279 1112.4369,-285.74672 1112.08,-285.86047 C 1112.0129,-285.87776 1111.9561,-285.90721 1111.8925,-285.92297 C 1111.8715,-285.92695 1111.8508,-285.91983 1111.83,-285.92297 C 1111.5184,-285.99847 1111.2215,-286.08164 1110.6738,-286.14172 C 1109.6883,-286.24984 1108.2491,-286.40112 1106.705,-286.39172 C 1106.1903,-286.38859 1105.6679,-286.34408 1105.1425,-286.29797 C 1101.5836,-285.98569 1096.1327,-285.30689 1094.9238,-284.67297 C 1093.2907,-285.00699 1090.9756,-285.2852 1088.9862,-285.14172 C 1085.9222,-284.92075 1084.0185,-284.79953 1082.08,-284.67297 C 1080.1416,-284.54642 1080.3939,-284.28433 1079.1738,-284.20422 C 1077.8547,-284.11762 1077.3869,-284.42747 1073.6112,-284.11047 C 1070.0655,-283.81275 1064.6306,-283.1173 1063.3925,-282.48547 C 1061.7591,-282.81998 1059.4466,-283.09786 1057.455,-282.95422 C 1054.3908,-282.73324 1052.4872,-282.58078 1050.5488,-282.45422 C 1049.8896,-282.41119 1049.5064,-282.33029 1049.205,-282.26672 z" | ||
1881 | id="path7933" /> | ||
1882 | <g | ||
1883 | clip-path="url(#clipPath7616)" | ||
1884 | style="display:inline;filter:url(#filter7610);enable-background:new" | ||
1885 | id="g7935" | ||
1886 | transform="matrix(0.9975712,-6.9654277e-2,6.9654277e-2,0.9975712,872.72062,140.02502)"> | ||
1887 | <path | ||
1888 | sodipodi:nodetypes="ccssscsssscscsscsssccscssccsscssscc" | ||
1889 | id="path7937" | ||
1890 | d="M 229.94262,-409.12268 C 226.38481,-409.07267 220.91842,-408.76259 219.63928,-408.21854 C 218.03319,-408.66601 215.73612,-409.09985 213.73933,-409.09528 C 210.66734,-409.08826 208.77464,-409.08651 206.83206,-409.09528 C 206.17159,-409.09827 205.78447,-409.02811 205.47939,-408.98569 C 205.47939,-408.98569 205.47939,-407.88976 205.47939,-407.88976 C 205.59911,-408.06923 205.87191,-408.58022 206.42914,-408.65691 C 207.17672,-408.7598 211.59842,-408.80814 213.73933,-408.76651 C 215.51393,-408.73198 218.19456,-408.49224 220.12854,-407.80756 C 220.44994,-407.69378 220.74779,-407.53378 221.02073,-407.39659 C 222.98415,-406.40966 228.96409,-403.09505 228.96409,-403.09505 C 228.96409,-403.09505 222.33134,-407.04273 221.48122,-407.53358 C 221.27791,-407.65097 220.90658,-407.79127 220.44513,-407.94456 C 221.66576,-408.39235 225.5211,-408.56427 228.27336,-408.65691 C 231.29786,-408.75873 231.62112,-408.7465 233.68405,-408.46512 C 235.81336,-408.17469 237.02256,-407.86236 237.02256,-407.86236 C 237.02255,-407.86236 236.9442,-408.50354 238.05865,-408.65691 C 238.80622,-408.7598 243.22794,-408.80814 245.36884,-408.76651 C 247.43834,-408.72625 250.73489,-408.35935 252.65024,-407.39659 C 253.65356,-406.89226 255.68588,-405.82796 257.44559,-404.86088 L 257.5412,-404.88031 C 257.5412,-404.88031 253.96086,-407.04273 253.11073,-407.53358 C 252.90742,-407.65097 252.5361,-407.79127 252.07464,-407.94456 C 253.29526,-408.39235 257.12183,-408.56427 259.87409,-408.65691 C 262.89859,-408.75873 263.22184,-408.7465 265.28478,-408.46512 C 267.23794,-408.19872 268.2977,-407.93506 268.47939,-407.88976 C 268.47939,-407.88976 268.4523,-408.20122 268.4523,-408.20122 C 268.04327,-408.33767 267.73806,-408.43457 267.05192,-408.5587 C 265.75111,-408.79403 263.6528,-409.16026 261.54335,-409.12268 C 257.9714,-409.05904 252.49007,-408.76672 251.24001,-408.21854 C 249.63418,-408.66549 247.36339,-409.09984 245.36884,-409.09528 C 242.29685,-409.08826 240.37536,-409.08651 238.43279,-409.09528 C 236.49023,-409.10406 236.72011,-408.81621 235.49721,-408.8213 C 234.1753,-408.8268 233.73109,-409.17593 229.94262,-409.12268 C 229.94262,-409.12268 229.94262,-409.12268 229.94262,-409.12268" | ||
1891 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1892 | <path | ||
1893 | id="path7939" | ||
1894 | d="M 206.1989,-407.47878 C 208.11911,-406.66172 210.77605,-405.28595 212.35787,-404.08139 C 213.93971,-402.87683 215.26544,-402.30771 217.91246,-400.16344 C 218.79803,-399.44606 219.66111,-398.81359 220.50439,-398.2417 L 221.04496,-398.43181 C 220.33173,-398.9152 219.5772,-399.45212 218.77587,-400.05384 C 215.95364,-402.17305 215.14932,-402.86357 212.7608,-404.32798 C 210.37226,-405.79238 208.66132,-406.69374 206.1989,-407.47878 C 206.1989,-407.47878 206.1989,-407.47878 206.1989,-407.47878" | ||
1895 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1896 | sodipodi:nodetypes="cssccsscc" /> | ||
1897 | <path | ||
1898 | id="path7941" | ||
1899 | d="M 237.79963,-407.47878 C 239.71984,-406.66172 242.40557,-405.28595 243.98738,-404.08139 C 244.80045,-403.46223 245.54587,-403.01097 246.43784,-402.42738 L 247.08684,-402.54404 C 246.28853,-403.12041 245.51507,-403.63839 244.39031,-404.32798 C 242.00177,-405.79238 240.26205,-406.69374 237.79963,-407.47878 C 237.79963,-407.47878 237.79963,-407.47878 237.79963,-407.47878" | ||
1900 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1901 | sodipodi:nodetypes="csccscc" /> | ||
1902 | </g> | ||
1903 | <g | ||
1904 | clip-path="url(#clipPath7606)" | ||
1905 | id="g7943"> | ||
1906 | <path | ||
1907 | style="opacity:0.75;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7578);enable-background:new" | ||
1908 | d="M 1056.25,-278.80481 C 1060.3946,-280.28358 1066.25,-275.67981 1066.25,-275.67981 C 1067.149,-275.39889 1068.9751,-276.57428 1068.8743,-277.36595 C 1068.8743,-277.36595 1067.324,-279.22657 1068.5,-280.30481 C 1069.676,-281.38305 1073.796,-278.79743 1076,-278.67981 C 1078.204,-278.56219 1081.5621,-278.90922 1083,-279.42981 C 1084.4379,-279.9504 1084.1129,-280.8544 1085.625,-281.17981 C 1087.1371,-281.50522 1090.7439,-280.14227 1092.6855,-280.01098 C 1094.6271,-279.87969 1097.3336,-279.67671 1098.5,-280.17981 C 1099.6664,-280.68291 1098.6782,-281.33902 1100.375,-282.05481 C 1102.0718,-282.7706 1108.1352,-283.01143 1110,-282.17981 C 1111.8648,-281.34819 1111.8099,-281.66061 1112.625,-279.17981 C 1113.4401,-276.69901 1120.0648,-274.01696 1111.5,-265.80481 C 1102.9352,-257.59266 1052.1221,-252.01887 1045.875,-263.05481 C 1039.6279,-274.09075 1052.1054,-277.32604 1056.25,-278.80481 z" | ||
1909 | id="path7945" | ||
1910 | sodipodi:nodetypes="czzzzzzzzzzzzzz" /> | ||
1911 | <path | ||
1912 | style="opacity:0.75;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7594);enable-background:new" | ||
1913 | d="M 1058.5,-275.42981 C 1062.6446,-276.90858 1068.5,-272.30481 1068.5,-272.30481 C 1069.399,-272.02389 1071.2251,-273.19928 1071.1243,-273.99095 C 1071.1243,-273.99095 1069.574,-275.85157 1070.75,-276.92981 C 1071.926,-278.00805 1076.046,-275.42243 1078.25,-275.30481 C 1080.454,-275.18719 1083.8121,-275.53422 1085.25,-276.05481 C 1086.6879,-276.5754 1086.3629,-277.4794 1087.875,-277.80481 C 1089.3871,-278.13022 1092.9939,-276.76727 1094.9355,-276.63598 C 1096.8771,-276.50469 1099.5836,-276.30171 1100.75,-276.80481 C 1101.9164,-277.30791 1100.9282,-277.96402 1102.625,-278.67981 C 1104.3218,-279.3956 1110.3852,-279.63643 1112.25,-278.80481 C 1114.1148,-277.97319 1114.0599,-278.28561 1114.875,-275.80481 C 1115.6901,-273.32401 1122.3148,-270.64196 1113.75,-262.42981 C 1105.1852,-254.21766 1054.3721,-248.64387 1048.125,-259.67981 C 1041.8779,-270.71575 1054.3554,-273.95104 1058.5,-275.42981 z" | ||
1914 | id="path7947" | ||
1915 | sodipodi:nodetypes="czzzzzzzzzzzzzz" /> | ||
1916 | </g> | ||
1917 | </g> | ||
1918 | <path | ||
1919 | style="opacity:1;fill:#101414;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1920 | d="M 628.24553,347.99185 C 624.4411,322.72762 611.43581,297.35383 611.08873,272.46662 C 610.90247,259.1111 614.36158,245.89571 624.84426,232.91257 C 661.19128,167.61674 741.78517,148.21789 810.77892,141.44715 C 897.70131,130.43035 995.69159,159.38722 1044.1503,236.84843 C 1098.2743,312.58173 1100.825,409.38755 1124.7623,496.37638 C 1154.2001,623.50398 1179.5414,752.59052 1185.1545,883.22673 C 1182.0911,961.40858 1176.7282,1048.4109 1124.6513,1111.3609 C 1076.6248,1161.7183 1001.8649,1161.4139 937.58145,1170.3632 C 847.02606,1175.0182 753.22992,1154.2174 675.79755,1106.165 C 611.02191,1068.225 580.06736,992.68633 578.51815,920.14538 C 570.12898,840.27022 604.90967,766.33687 630.13855,692.98577 C 637.60916,610.2247 639.55141,526.73802 639.79189,443.60093 C 638.95507,411.40549 632.70236,379.7836 628.24553,347.99185 z" | ||
1921 | id="path7949" | ||
1922 | sodipodi:nodetypes="cscccccccccccc" /> | ||
1923 | <path | ||
1924 | style="opacity:0.25;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8940);enable-background:accumulate" | ||
1925 | d="M 311.83409,415.43155 L 321.73359,537.05392 L 261.62951,673.52553 L 277.18586,848.1809 C 292.79912,910.0601 309.37131,946.84995 351.56201,965.23473 C 355.88112,928.99475 312.95049,822.27485 312.31937,776.11489 C 311.68792,729.93044 323.14971,667.50703 342.99704,617.81842 C 363.04539,567.62654 379.89378,572.972 385.12193,525.22549 C 390.35008,477.47898 367.69553,375.83357 367.69553,375.83357 L 311.83409,415.43155 z" | ||
1926 | id="path7951" | ||
1927 | sodipodi:nodetypes="ccccczzzcc" | ||
1928 | clip-path="url(#clipPath8616)" | ||
1929 | transform="translate(276,136)" /> | ||
1930 | <path | ||
1931 | style="opacity:1;fill:url(#linearGradient8970);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
1932 | d="M 1010.0312,655.49186 C 1010.0312,655.49186 1026.7864,692.50992 1038.7327,709.44581 C 1050.6789,726.3817 1091.4598,765.49186 1091.4598,765.49186 L 1144.057,637.90211" | ||
1933 | id="path7953" | ||
1934 | sodipodi:nodetypes="czcc" /> | ||
1935 | <path | ||
1936 | style="opacity:0.07999998;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8822);enable-background:accumulate" | ||
1937 | d="M 730.31998,536.56864 C 730.31998,545.05392 772.86772,595.03667 772.86772,595.03667 L 785.47431,566.26713 L 730.31998,536.56864 z" | ||
1938 | id="path7955" | ||
1939 | sodipodi:nodetypes="cccc" | ||
1940 | clip-path="url(#clipPath8209)" | ||
1941 | transform="translate(276,136)" /> | ||
1942 | <g | ||
1943 | transform="translate(450.03125,73.843964)" | ||
1944 | style="opacity:1;display:inline;enable-background:new" | ||
1945 | id="g7957" | ||
1946 | clip-path="url(#clipPath3998)"> | ||
1947 | <g | ||
1948 | transform="translate(-174.03125,62.156036)" | ||
1949 | style="filter:url(#filter3677)" | ||
1950 | id="g7959"> | ||
1951 | <g | ||
1952 | id="g7961" | ||
1953 | style="filter:url(#filter3785)"> | ||
1954 | <path | ||
1955 | sodipodi:nodetypes="czzzzzzzzzz" | ||
1956 | id="path7963" | ||
1957 | d="M 425.88244,476.99186 C 436.68787,475.5132 450.62645,480.34637 470.5253,480.20614 C 490.42415,480.06591 527.97852,463.29492 552.66815,463.06328 C 577.35778,462.83164 615.41985,475.34734 631.95387,478.06328 C 648.48789,480.77922 654.80219,477.90476 659.45386,485.92043 C 664.10553,493.9361 661.38057,496.66767 649.09672,506.63472 C 636.81287,516.60177 608.30704,519.27104 583.02529,519.49186 C 557.74295,519.71268 512.644,526.57038 487.66815,523.42042 C 462.6923,520.27046 430.73059,515.59775 418.73958,505.56328 C 406.74857,495.52881 398.88874,488.83146 401.23958,481.63471 C 403.59042,474.43796 415.07701,478.47052 425.88244,476.99186 z" | ||
1958 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1959 | <rect | ||
1960 | y="412.60312" | ||
1961 | x="343.6539" | ||
1962 | height="181.01935" | ||
1963 | width="381.83765" | ||
1964 | id="rect7965" | ||
1965 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1966 | </g> | ||
1967 | <g | ||
1968 | id="g7967" | ||
1969 | style="filter:url(#filter3785)"> | ||
1970 | <path | ||
1971 | sodipodi:nodetypes="czzzcc" | ||
1972 | id="path7969" | ||
1973 | d="M 687.14286,452.36218 C 676.68117,462.07661 600.16326,471.36732 586.42857,481.6479 C 572.69388,491.92848 571.67605,494.53616 574.28571,501.6479 C 576.89537,508.75964 580.83098,511.05362 600,510.21932 C 619.16902,509.38502 698.57143,482.5976 698.57143,488.79075 L 687.14286,452.36218 z" | ||
1974 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
1975 | transform="translate(174.03125,-62.156036)" /> | ||
1976 | <rect | ||
1977 | y="344.82138" | ||
1978 | x="702.86414" | ||
1979 | height="162.63455" | ||
1980 | width="207.8894" | ||
1981 | id="rect7971" | ||
1982 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
1983 | </g> | ||
1984 | </g> | ||
1985 | <g | ||
1986 | transform="translate(-174.03125,62.156036)" | ||
1987 | style="opacity:0.18000004;display:inline;enable-background:new" | ||
1988 | id="g7973"> | ||
1989 | <g | ||
1990 | id="g7975" | ||
1991 | style="filter:url(#filter3785)"> | ||
1992 | <path | ||
1993 | sodipodi:nodetypes="czzzzzzzzzz" | ||
1994 | id="path7977" | ||
1995 | d="M 425.88244,476.99186 C 436.68787,475.5132 450.62645,480.34637 470.5253,480.20614 C 490.42415,480.06591 527.97852,463.29492 552.66815,463.06328 C 577.35778,462.83164 615.41985,475.34734 631.95387,478.06328 C 648.48789,480.77922 654.80219,477.90476 659.45386,485.92043 C 664.10553,493.9361 661.38057,496.66767 649.09672,506.63472 C 636.81287,516.60177 608.30704,519.27104 583.02529,519.49186 C 557.74295,519.71268 512.644,526.57038 487.66815,523.42042 C 462.6923,520.27046 430.73059,515.59775 418.73958,505.56328 C 406.74857,495.52881 398.88874,488.83146 401.23958,481.63471 C 403.59042,474.43796 415.07701,478.47052 425.88244,476.99186 z" | ||
1996 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
1997 | <rect | ||
1998 | y="412.60312" | ||
1999 | x="343.6539" | ||
2000 | height="181.01935" | ||
2001 | width="381.83765" | ||
2002 | id="rect7979" | ||
2003 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2004 | </g> | ||
2005 | <g | ||
2006 | id="g7981" | ||
2007 | style="filter:url(#filter3785)"> | ||
2008 | <path | ||
2009 | sodipodi:nodetypes="czzzcc" | ||
2010 | id="path7983" | ||
2011 | d="M 687.14286,452.36218 C 676.68117,462.07661 600.16326,471.36732 586.42857,481.6479 C 572.69388,491.92848 571.67605,494.53616 574.28571,501.6479 C 576.89537,508.75964 580.83098,511.05362 600,510.21932 C 619.16902,509.38502 698.57143,482.5976 698.57143,488.79075 L 687.14286,452.36218 z" | ||
2012 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2013 | transform="translate(174.03125,-62.156036)" /> | ||
2014 | <rect | ||
2015 | y="344.82138" | ||
2016 | x="702.86414" | ||
2017 | height="162.63455" | ||
2018 | width="207.8894" | ||
2019 | id="rect7985" | ||
2020 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2021 | </g> | ||
2022 | </g> | ||
2023 | </g> | ||
2024 | <path | ||
2025 | style="opacity:0.75;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8802);enable-background:accumulate" | ||
2026 | d="M 582.65599,-7.4183011 L 695.79307,78.848726 L 804.68752,337.64981 L 842.87128,545.5392 L 963.07944,637.46308 C 963.07944,637.46308 950.35151,350.37773 943.28044,323.50767 C 936.20938,296.63761 793.37381,-69.643698 793.37381,-69.643698 L 582.65599,-7.4183011 z" | ||
2027 | id="path7987" | ||
2028 | clip-path="url(#clipPath8604)" | ||
2029 | sodipodi:nodetypes="cccccscc" | ||
2030 | transform="translate(276,136)" /> | ||
2031 | <path | ||
2032 | style="opacity:1;fill:url(#linearGradient8958);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2033 | d="M 964.13839,239.599 C 964.13839,239.599 972.81571,250.49562 988.24554,251.56328 C 1003.6754,252.63094 1037.9672,211.61061 1058.4241,199.42043 C 1078.9034,187.2169 1105.4705,172.81818 1122.3527,179.06329 C 1139.2348,185.30839 1144.5105,205.49938 1150.2098,227.099 C 1155.9092,248.69861 1156.9284,288.91289 1147.5313,319.95615 C 1138.1341,350.9994 1097.028,393.0599 1082.1741,423.349 C 1067.3202,453.6381 1070.567,463.17043 1070.567,463.17043" | ||
2034 | id="path7989" | ||
2035 | sodipodi:nodetypes="czzzzzzc" /> | ||
2036 | <path | ||
2037 | style="opacity:1;fill:url(#radialGradient3315);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2038 | d="M 1124.4955,207.63471 C 1108.6027,206.74185 1074.7767,219.74054 1058.4241,231.92043 C 1041.9855,244.16433 1029.2032,256.03483 1029.1384,284.06328 C 1029.0732,312.26932 1042.2575,323.13969 1058.2455,331.02757 C 1074.2335,338.91546 1091.9317,338.14685 1110.2098,319.24186 C 1128.488,300.33686 1124.4955,207.63471 1124.4955,207.63471 z" | ||
2039 | id="path7991" | ||
2040 | sodipodi:nodetypes="czzzzc" /> | ||
2041 | <path | ||
2042 | sodipodi:type="arc" | ||
2043 | style="opacity:0.75;fill:url(#radialGradient3543);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4120);enable-background:accumulate" | ||
2044 | id="path7993" | ||
2045 | sodipodi:cx="385" | ||
2046 | sodipodi:cy="237.00504" | ||
2047 | sodipodi:rx="86.428574" | ||
2048 | sodipodi:ry="73.928574" | ||
2049 | d="M 471.42857,237.00504 A 86.428574,73.928574 0 1 1 298.57143,237.00504 A 86.428574,73.928574 0 1 1 471.42857,237.00504 z" | ||
2050 | transform="matrix(0.9434749,-0.1239943,0.1440089,1.0957669,451.94827,134.5988)" | ||
2051 | clip-path="url(#clipPath4100)" /> | ||
2052 | <path | ||
2053 | transform="translate(450.03125,73.843964)" | ||
2054 | style="opacity:1;fill:url(#radialGradient3915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2055 | d="M 527.60588,407.44884 C 527.60588,407.44884 405.56444,445.85232 340.09154,417.08065 C 274.61865,388.30899 265.71429,292.36218 265.71429,292.36218 C 265.71429,292.36218 339.09587,211.85825 395.63507,208.74742 C 451.46212,205.67578 486.20893,228.89074 510.50508,274.59913 C 534.85708,320.41261 527.60588,407.44884 527.60588,407.44884 z" | ||
2056 | id="path7995" | ||
2057 | sodipodi:nodetypes="csczzc" | ||
2058 | mask="url(#mask3684)" /> | ||
2059 | <path | ||
2060 | style="opacity:1;fill:url(#linearGradient3959);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2061 | d="M 772.17411,393.349 C 772.17411,393.349 808.39165,365.96653 823.78125,357.45614 C 838.95859,349.06313 849.49553,345.849 859.6741,345.849 L 844.13839,412.81328" | ||
2062 | id="path7997" | ||
2063 | sodipodi:nodetypes="czcc" /> | ||
2064 | <path | ||
2065 | sodipodi:type="arc" | ||
2066 | style="opacity:1;fill:url(#radialGradient3933);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2067 | id="path7999" | ||
2068 | sodipodi:cx="409.28571" | ||
2069 | sodipodi:cy="306.64789" | ||
2070 | sodipodi:rx="36.25" | ||
2071 | sodipodi:ry="36.25" | ||
2072 | d="M 445.53571,306.64789 A 36.25,36.25 0 1 1 373.03571,306.64789 A 36.25,36.25 0 1 1 445.53571,306.64789 z" | ||
2073 | transform="translate(449.49554,74.915393)" /> | ||
2074 | <path | ||
2075 | style="opacity:0.3;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8806);enable-background:accumulate" | ||
2076 | d="M 311.83409,415.43155 L 321.73359,537.05392 L 261.62951,673.52553 L 277.18586,848.1809 C 292.79912,910.0601 309.37131,946.84995 351.56201,965.23473 C 355.88112,928.99475 360.24362,892.86709 320.31937,742.11489 L 337.99704,672.81842 L 410.12193,534.22549 L 367.69553,375.83357 L 311.83409,415.43155 z" | ||
2077 | id="path8001" | ||
2078 | sodipodi:nodetypes="cccccccccc" | ||
2079 | clip-path="url(#clipPath8616)" | ||
2080 | transform="translate(276,136)" /> | ||
2081 | <path | ||
2082 | style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8826);enable-background:accumulate" | ||
2083 | d="M 635.21025,581.13004 C 621.06811,593.85796 674.44372,615.71019 711.57778,605.17167 C 748.71184,594.63315 816.22265,569.6073 814.81537,525.97571 C 813.40809,482.34413 738.44784,397.28228 738.44784,397.28228 L 635.21025,581.13004 z" | ||
2084 | id="path8003" | ||
2085 | sodipodi:nodetypes="czzcc" /> | ||
2086 | <path | ||
2087 | sodipodi:type="arc" | ||
2088 | style="opacity:1;fill:url(#radialGradient3991);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2089 | id="path8005" | ||
2090 | sodipodi:cx="410" | ||
2091 | sodipodi:cy="306.64789" | ||
2092 | sodipodi:rx="23.214285" | ||
2093 | sodipodi:ry="23.214285" | ||
2094 | d="M 433.21428,306.64789 A 23.214285,23.214285 0 1 1 386.78572,306.64789 A 23.214285,23.214285 0 1 1 433.21428,306.64789 z" | ||
2095 | transform="translate(449.67411,74.915393)" /> | ||
2096 | <path | ||
2097 | sodipodi:type="arc" | ||
2098 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3981);enable-background:accumulate" | ||
2099 | id="path8007" | ||
2100 | sodipodi:cx="414.28571" | ||
2101 | sodipodi:cy="303.07648" | ||
2102 | sodipodi:rx="7.5" | ||
2103 | sodipodi:ry="7.5" | ||
2104 | d="M 421.78571,303.07648 A 7.5,7.5 0 1 1 406.78571,303.07648 A 7.5,7.5 0 1 1 421.78571,303.07648 z" | ||
2105 | transform="translate(451.99554,73.486821)" /> | ||
2106 | <path | ||
2107 | style="opacity:1;fill:url(#radialGradient4112);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2108 | d="M 789.31696,478.349 C 789.31696,478.349 796.33977,497.91759 788.24553,513.349 C 780.15129,528.78041 745.92236,552.33722 720.74554,563.349 C 695.43582,574.41891 635.27254,596.31293 618.95982,605.31328 C 602.49834,614.39571 600.74554,617.99185 600.74554,617.99185 C 600.74554,617.99185 593.59861,598.92744 629.49553,566.20615 C 665.66764,533.23401 771.52265,518.15665 789.31696,478.349 z" | ||
2109 | id="path8009" | ||
2110 | sodipodi:nodetypes="czzzczc" /> | ||
2111 | <g | ||
2112 | style="opacity:1;display:inline;enable-background:new" | ||
2113 | id="g8011" | ||
2114 | transform="translate(780.74553,74.55825)"> | ||
2115 | <path | ||
2116 | transform="translate(-329.81481,0)" | ||
2117 | clip-path="url(#clipPath3999)" | ||
2118 | sodipodi:nodetypes="czzczzzszc" | ||
2119 | id="path8013" | ||
2120 | d="M 179.64286,267.36218 C 157.23242,307.0651 119.02676,383.14247 110.35715,417.00504 C 101.70994,450.78014 101.58516,483.42158 110,503.43362 C 118.3602,523.31575 136.16398,539.06642 150.71428,544.86218 C 150.1179,530.48631 165.08723,501.57635 223.57143,472.36218 C 282.1977,443.07704 301.95306,445.23132 327.14285,425.21932 C 352.77291,404.85756 335.34872,345.57268 330.35714,331.29075 C 325.36556,317.00882 329.12051,327.91101 328.41112,326.19774 C 317.72184,300.38182 294.1968,271.76744 263.92857,261.6479 C 233.66034,251.52836 198.91081,256.79953 179.64286,267.36218 z" | ||
2121 | style="opacity:1;fill:url(#radialGradient3585);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" /> | ||
2122 | <path | ||
2123 | transform="matrix(0.8823874,0.4705236,-0.4705236,0.8823874,-166.62245,2.387362)" | ||
2124 | d="M 248.28731,338.07648 A 64.715881,134.00607 0 1 1 118.85555,338.07648 A 64.715881,134.00607 0 1 1 248.28731,338.07648 z" | ||
2125 | sodipodi:ry="134.00607" | ||
2126 | sodipodi:rx="64.715881" | ||
2127 | sodipodi:cy="338.07648" | ||
2128 | sodipodi:cx="183.57143" | ||
2129 | id="path8015" | ||
2130 | style="opacity:1;fill:url(#radialGradient4060);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2131 | sodipodi:type="arc" /> | ||
2132 | <path | ||
2133 | transform="matrix(0.8823874,0.4705236,-0.4705236,0.8823874,-162.19388,-18.755495)" | ||
2134 | d="M 248.28731,338.07648 A 64.715881,134.00607 0 1 1 118.85555,338.07648 A 64.715881,134.00607 0 1 1 248.28731,338.07648 z" | ||
2135 | sodipodi:ry="134.00607" | ||
2136 | sodipodi:rx="64.715881" | ||
2137 | sodipodi:cy="338.07648" | ||
2138 | sodipodi:cx="183.57143" | ||
2139 | id="path8017" | ||
2140 | style="opacity:1;fill:url(#radialGradient4062);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2141 | sodipodi:type="arc" /> | ||
2142 | <path | ||
2143 | transform="translate(-329.81481,3e-7)" | ||
2144 | clip-path="url(#clipPath3999)" | ||
2145 | sodipodi:nodetypes="czzczzzszc" | ||
2146 | id="path8019" | ||
2147 | d="M 179.64286,267.36218 C 157.23242,307.0651 119.02676,383.14247 110.35715,417.00504 C 101.70994,450.78014 101.58516,483.42158 110,503.43362 C 118.3602,523.31575 136.16398,539.06642 150.71428,544.86218 C 150.1179,530.48631 165.08723,501.57635 223.57143,472.36218 C 282.1977,443.07704 301.95306,445.23132 327.14285,425.21932 C 352.77291,404.85756 335.34872,345.57268 330.35714,331.29075 C 325.36556,317.00882 329.12051,327.91101 328.41112,326.19774 C 317.72184,300.38182 294.1968,271.76744 263.92857,261.6479 C 233.66034,251.52836 198.91081,256.79953 179.64286,267.36218 z" | ||
2148 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3587);stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter4079);enable-background:new" /> | ||
2149 | </g> | ||
2150 | <path | ||
2151 | sodipodi:type="arc" | ||
2152 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2153 | id="path8021" | ||
2154 | sodipodi:cx="310.71429" | ||
2155 | sodipodi:cy="398.07648" | ||
2156 | sodipodi:rx="19.704132" | ||
2157 | sodipodi:ry="19.704132" | ||
2158 | d="M 330.41843,398.07648 A 19.704132,19.704132 0 1 1 291.01016,398.07648 A 19.704132,19.704132 0 1 1 330.41843,398.07648 z" | ||
2159 | transform="translate(452.55663,72.581273)" /> | ||
2160 | <path | ||
2161 | sodipodi:type="arc" | ||
2162 | style="opacity:1;fill:url(#radialGradient4056);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4082);stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4083);enable-background:accumulate" | ||
2163 | id="path8023" | ||
2164 | sodipodi:cx="310.71429" | ||
2165 | sodipodi:cy="398.07648" | ||
2166 | sodipodi:rx="19.704132" | ||
2167 | sodipodi:ry="19.704132" | ||
2168 | d="M 330.41843,398.07648 A 19.704132,19.704132 0 1 1 291.01016,398.07648 A 19.704132,19.704132 0 1 1 330.41843,398.07648 z" | ||
2169 | transform="translate(450.55663,72.581273)" /> | ||
2170 | <path | ||
2171 | sodipodi:type="arc" | ||
2172 | style="opacity:1;fill:url(#radialGradient4119);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2173 | id="path8025" | ||
2174 | sodipodi:cx="310.71429" | ||
2175 | sodipodi:cy="398.07648" | ||
2176 | sodipodi:rx="19.704132" | ||
2177 | sodipodi:ry="19.704132" | ||
2178 | d="M 330.41843,398.07648 A 19.704132,19.704132 0 1 1 291.01016,398.07648 A 19.704132,19.704132 0 1 1 330.41843,398.07648 z" | ||
2179 | transform="translate(450.55663,72.581273)" /> | ||
2180 | <path | ||
2181 | sodipodi:type="arc" | ||
2182 | style="opacity:1;fill:url(#radialGradient4868);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4002);enable-background:accumulate" | ||
2183 | id="path8027" | ||
2184 | sodipodi:cx="429.56738" | ||
2185 | sodipodi:cy="377.42877" | ||
2186 | sodipodi:rx="72.079735" | ||
2187 | sodipodi:ry="44.547726" | ||
2188 | d="M 501.64712,377.42877 A 72.079735,44.547726 0 1 1 357.48765,377.42877 A 72.079735,44.547726 0 1 1 501.64712,377.42877 z" | ||
2189 | transform="matrix(0.9969564,-7.7961675e-2,7.7961675e-2,0.9969564,436.61877,125.29509)" | ||
2190 | inkscape:transform-center-x="-47.231976" | ||
2191 | inkscape:transform-center-y="-3.6935079" /> | ||
2192 | <path | ||
2193 | sodipodi:type="arc" | ||
2194 | style="opacity:1;fill:url(#radialGradient4876);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:bevel;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4010);enable-background:accumulate" | ||
2195 | id="path8029" | ||
2196 | sodipodi:cx="437.6991" | ||
2197 | sodipodi:cy="391.21735" | ||
2198 | sodipodi:rx="36.611931" | ||
2199 | sodipodi:ry="22.627417" | ||
2200 | d="M 474.31103,391.21735 A 36.611931,22.627417 0 1 1 401.08717,391.21735 A 36.611931,22.627417 0 1 1 474.31103,391.21735 z" | ||
2201 | transform="matrix(1.4357951,-6.9991037e-2,6.9991037e-2,1.4357951,235.18065,-63.86546)" | ||
2202 | inkscape:transform-center-x="-20.955902" | ||
2203 | inkscape:transform-center-y="-13.056625" /> | ||
2204 | <g | ||
2205 | transform="translate(450.03125,73.843964)" | ||
2206 | id="g8031" | ||
2207 | style="opacity:1;display:inline;filter:url(#filter4053);enable-background:new"> | ||
2208 | <path | ||
2209 | d="M 416.87499,401.82648 A 3.2142856,3.2142856 0 1 1 410.44642,401.82648 A 3.2142856,3.2142856 0 1 1 416.87499,401.82648 z" | ||
2210 | sodipodi:ry="3.2142856" | ||
2211 | sodipodi:rx="3.2142856" | ||
2212 | sodipodi:cy="401.82648" | ||
2213 | sodipodi:cx="413.66071" | ||
2214 | id="path8033" | ||
2215 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4484);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2216 | sodipodi:type="arc" /> | ||
2217 | <path | ||
2218 | transform="translate(13.125009,8.1249913)" | ||
2219 | d="M 416.87499,401.82648 A 3.2142856,3.2142856 0 1 1 410.44642,401.82648 A 3.2142856,3.2142856 0 1 1 416.87499,401.82648 z" | ||
2220 | sodipodi:ry="3.2142856" | ||
2221 | sodipodi:rx="3.2142856" | ||
2222 | sodipodi:cy="401.82648" | ||
2223 | sodipodi:cx="413.66071" | ||
2224 | id="path8035" | ||
2225 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4486);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2226 | sodipodi:type="arc" /> | ||
2227 | <path | ||
2228 | transform="translate(32.946437,7.4999913)" | ||
2229 | d="M 416.87499,401.82648 A 3.2142856,3.2142856 0 1 1 410.44642,401.82648 A 3.2142856,3.2142856 0 1 1 416.87499,401.82648 z" | ||
2230 | sodipodi:ry="3.2142856" | ||
2231 | sodipodi:rx="3.2142856" | ||
2232 | sodipodi:cy="401.82648" | ||
2233 | sodipodi:cx="413.66071" | ||
2234 | id="path8037" | ||
2235 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4488);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2236 | sodipodi:type="arc" /> | ||
2237 | <path | ||
2238 | transform="translate(24.910723,-10.267866)" | ||
2239 | d="M 416.87499,401.82648 A 3.2142856,3.2142856 0 1 1 410.44642,401.82648 A 3.2142856,3.2142856 0 1 1 416.87499,401.82648 z" | ||
2240 | sodipodi:ry="3.2142856" | ||
2241 | sodipodi:rx="3.2142856" | ||
2242 | sodipodi:cy="401.82648" | ||
2243 | sodipodi:cx="413.66071" | ||
2244 | id="path8039" | ||
2245 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4490);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2246 | sodipodi:type="arc" /> | ||
2247 | <path | ||
2248 | transform="translate(47.589294,-0.6250087)" | ||
2249 | d="M 416.87499,401.82648 A 3.2142856,3.2142856 0 1 1 410.44642,401.82648 A 3.2142856,3.2142856 0 1 1 416.87499,401.82648 z" | ||
2250 | sodipodi:ry="3.2142856" | ||
2251 | sodipodi:rx="3.2142856" | ||
2252 | sodipodi:cy="401.82648" | ||
2253 | sodipodi:cx="413.66071" | ||
2254 | id="path8041" | ||
2255 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4492);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2256 | sodipodi:type="arc" /> | ||
2257 | </g> | ||
2258 | <path | ||
2259 | style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2260 | d="M 896.20301,482.92837 C 897.1881,487.27845 900.74008,489.10785 903.58974,490.82019 C 908.05042,493.33311 910.1099,492.3423 912.74425,490.06258 C 914.3462,488.14141 923.42736,485.36393 928.33848,482.99151 C 932.66809,481.5326 937.24178,477.63278 941.723,474.65775 C 945.11814,473.03051 947.06964,475.01239 949.55168,475.6679 C 952.4958,476.38451 953.96285,477.83965 955.6126,479.20344 C 958.00876,480.37863 954.6847,482.34657 958.8956,483.49658 C 960.08651,483.71452 961.31255,484.07303 962.17859,482.99151" | ||
2261 | id="path8043" | ||
2262 | sodipodi:nodetypes="ccccccccc" /> | ||
2263 | <path | ||
2264 | style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2265 | d="M 910.85021,475.35223 C 913.16515,475.32025 914.02799,475.99476 916.34292,474.53148 C 919.79856,471.45035 921.74546,471.38671 924.29787,470.11206 C 927.32444,468.79683 930.83357,478.26375 934.3994,479.96105 C 936.79449,479.13963 935.68854,481.75484 935.85149,482.6127 C 935.90862,485.25954 938.65843,486.29076 940.20777,488.04227 C 943.52381,490.29776 947.583,494.33773 951.31945,493.34557 C 957.7647,490.4145 961.59867,492.06411 967.60816,485.95883 C 968.31221,484.77749 967.02391,479.06423 970.70175,478.76149 C 973.22574,479.01487 974.86842,478.81164 976.76267,479.32971 C 982.20367,481.4469 984.50045,485.77971 991.47301,487.28466 C 997.65591,488.25105 999.08565,491.07892 1005.3626,492.33542" | ||
2266 | id="path8045" | ||
2267 | sodipodi:nodetypes="cccccccccccc" /> | ||
2268 | <path | ||
2269 | style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2270 | d="M 876.98133,483.52197 C 879.37991,482.72817 883.08746,487.71407 885.15446,490.56765 C 885.74727,493.24717 886.30823,496.0541 885.91207,502.68948 C 886.6972,505.10702 888.59256,505.72043 890.7103,505.97248 C 893.82775,505.4357 896.58699,504.64818 898.0339,502.94202 C 899.9055,501.00035 903.34643,505.33596 906.11512,506.98263 C 909.72521,508.89472 913.8889,508.96149 917.98442,509.25547 C 919.688,509.02483 920.35482,513.77062 921.26741,517.3367 C 921.65155,521.71476 920.38197,524.23239 919.49965,527.18568 C 919.20535,529.68223 922.48815,530.71542 925.8131,531.73137 C 928.99554,532.47261 932.35734,533.39321 934.90447,533.49914 C 940.04633,534.37405 942.99321,536.18966 947.0263,537.53975 C 949.26544,538.3563 950.28649,539.78191 951.57199,541.07528" | ||
2271 | id="path8047" | ||
2272 | sodipodi:nodetypes="ccccccccccccc" /> | ||
2273 | <path | ||
2274 | style="opacity:0.25;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter8814);enable-background:new" | ||
2275 | d="M 332,187.69519 C 332,187.69519 389.5,162.19519 389.5,159.69519 C 389.5,157.19519 395,107.69519 395,107.69519 C 395,107.69519 486,59.195189 486.5,57.195189 C 487,55.195189 572.5,-4.8048114 572.5,-4.8048114 L 386.5,17.195189 L 311,123.19519 L 332,187.69519 z" | ||
2276 | id="path8049" | ||
2277 | clip-path="url(#clipPath8514)" | ||
2278 | transform="translate(276,136)" /> | ||
2279 | <path | ||
2280 | style="opacity:0.25;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2281 | d="M 1697.2846,722.5514 C 1697.2846,722.5514 1581.3191,796.0905 1574.2481,800.33314 C 1567.177,804.57578 1343.7312,937.51186 1343.7312,937.51186 L 1347.9739,977.10984 L 1564.3486,876.70067 L 1681.7283,774.8773 L 1697.2846,722.5514 z" | ||
2282 | id="path8051" /> | ||
2283 | <path | ||
2284 | style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8810);enable-background:accumulate" | ||
2285 | d="M 528.91587,556.85291 C 523.25902,555.4387 347.89654,631.80623 347.89654,631.80623 L 313.95541,812.82557 L 365.05087,1006.7738 L 622.25397,1074.4551 C 622.25397,1074.4551 828.72915,1227.1901 834.386,1222.9475 C 840.04286,1218.7049 1002.6774,1029.2002 1002.6774,1029.2002 L 842.87128,845.35248 L 796.20224,667.16157 L 528.91587,556.85291 z" | ||
2286 | id="path8053" | ||
2287 | clip-path="url(#clipPath8610)" | ||
2288 | sodipodi:nodetypes="cccccscccc" | ||
2289 | transform="translate(276,136)" /> | ||
2290 | <path | ||
2291 | style="opacity:1;fill:#0c0c0c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2292 | d="M 1097.6433,613.88997 C 1097.6433,613.88997 1120.2628,607.38316 1133.386,608.01724 C 1146.5093,608.65133 1164.0276,609.95586 1177.0949,620.20343 C 1190.1622,630.45099 1202.1626,647.3435 1211.2073,678.57308 C 1220.2519,709.80266 1212.9056,777.82509 1205.0312,821.92043 C 1197.1569,866.01577 1176.7661,928.03341 1160.0312,961.92043 C 1143.2964,995.80745 1110.2335,1039.4156 1099.4618,1051.7966 C 1088.0976,1064.8586 1043.2559,1088.2228 1020.0312,1094.0633 C 1025.3346,1083.4567 1068.931,1043.4744 1055.0312,1033.349 C 1041.0123,1023.1367 1009.2712,1079.3314 970.7381,1062.3822 C 992.12041,1049.2501 1012.5175,1011.1961 1004.7787,995.78772 C 996.93846,980.17733 974.07378,1044.5453 911.24317,1032.8006 C 941.29521,1005.2739 966.65023,961.89659 952.50587,949.8209 C 938.09071,937.51403 892.04412,1004.1141 892.04412,1004.1141 C 892.04412,1004.1141 889.22222,962.41287 905.81732,935.50673 C 922.45667,908.52886 985.47029,853.89146 1005.3704,823.80331 C 1025.2706,793.71517 1038.983,757.79429 1047.5059,731.28537 C 1056.0287,704.77645 1063.3068,654.18583 1063.3068,654.18583" | ||
2293 | id="path8055" | ||
2294 | sodipodi:nodetypes="czzzzzzczczczczzzc" /> | ||
2295 | <path | ||
2296 | style="opacity:0.25;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8818);enable-background:accumulate" | ||
2297 | d="M 770.74639,609.17881 L 719.8347,706.75955 L 639.93163,817.77531 L 674.57987,889.19309 L 717.00628,968.38906 L 789.13117,923.13422 L 803.27331,730.80117 L 824.48651,592.20825 L 810.34437,502.05213 L 770.74639,609.17881 z" | ||
2298 | id="path8057" | ||
2299 | clip-path="url(#clipPath8622)" | ||
2300 | sodipodi:nodetypes="cccccccccc" | ||
2301 | transform="translate(276,136)" /> | ||
2302 | <path | ||
2303 | style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8810);enable-background:accumulate" | ||
2304 | d="M 295,846.19519 L 301.64488,777.27234 C 301.64488,777.27234 391.96439,866.27691 464,900.19519 C 536.03561,934.11347 772,962.19519 772,962.19519 L 926,936.19519 L 890,1098.1952 L 604,1124.1952 L 306,1035.1952 L 295,846.19519 z" | ||
2305 | id="path8059" | ||
2306 | clip-path="url(#clipPath8906)" | ||
2307 | sodipodi:nodetypes="cczcccccc" | ||
2308 | transform="translate(276,136)" /> | ||
2309 | <path | ||
2310 | transform="translate(450.03125,73.843964)" | ||
2311 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter3587);enable-background:new" | ||
2312 | d="M 405.79629,845.99023 L 480.74961,911.04406 L 483.24924,927.92446 L 502.6526,938.08337 L 509.14464,961.13446 L 540.85369,952.76336 L 555.70293,1000.8466 C 567.95945,1013.5745 645.49637,887.7369 611.56436,1039.0304 L 550.75318,1055.2939 L 461.55026,960.60104 L 398.72523,906.80141 L 405.79629,845.99023 z" | ||
2313 | id="path8061" | ||
2314 | sodipodi:nodetypes="cccccccccccc" | ||
2315 | clip-path="url(#clipPath3602)" /> | ||
2316 | <path | ||
2317 | style="opacity:1;fill:#121212;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | ||
2318 | d="M 1159.317,918.349 C 1213.6027,916.92043 1285.352,903.29701 1329.317,891.56328 C 1373.3697,879.80614 1455.2033,855.21604 1504.674,833.70614 C 1554.0133,812.25342 1618.2778,774.42454 1658.9599,741.56329 C 1699.468,708.8426 1711.3498,685.74348 1719.6741,707.99186 C 1728.0432,730.35965 1703.2672,764.31748 1681.817,789.06329 C 1660.2128,813.98669 1629.0856,841.76862 1582.8883,878.349 C 1536.691,914.92938 1426.8058,979.93363 1370.0312,1006.9204 C 1312.9652,1034.0458 1241.8279,1065.1589 1197.8884,1079.4205 C 1153.9489,1093.6821 1066.4598,1110.4919 1066.4598,1110.4919 L 1159.317,918.349 z" | ||
2319 | id="path8063" | ||
2320 | sodipodi:nodetypes="czzzzzzzzcc" /> | ||
2321 | <path | ||
2322 | transform="translate(450.03125,73.843964)" | ||
2323 | style="opacity:0.5;fill:url(#linearGradient3666);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3779);enable-background:accumulate" | ||
2324 | d="M 1241.5965,652.95007 C 1241.5965,652.95007 1176.875,707.28713 1095.9326,751.94501 C 1013.9082,797.19985 811.67556,845.28311 811.67556,845.28311 C 811.67556,845.28311 796.57419,866.33507 856.93045,873.56739 C 917.28671,880.79971 1081.0124,820.2667 1135.5306,777.40085 C 1190.0488,734.535 1255.7387,665.67799 1255.7387,665.67799 L 1241.5965,652.95007 z" | ||
2325 | id="path8065" | ||
2326 | sodipodi:nodetypes="czczzcc" | ||
2327 | clip-path="url(#clipPath3992)" /> | ||
2328 | <g | ||
2329 | transform="translate(450.03125,73.843964)" | ||
2330 | style="opacity:1;display:inline;enable-background:new" | ||
2331 | id="g8067" | ||
2332 | clip-path="url(#clipPath3986)"> | ||
2333 | <g | ||
2334 | transform="translate(-174.03125,62.156036)" | ||
2335 | style="filter:url(#filter3677)" | ||
2336 | id="g8069"> | ||
2337 | <g | ||
2338 | style="filter:url(#filter3785)" | ||
2339 | id="g8071"> | ||
2340 | <path | ||
2341 | sodipodi:nodetypes="czzccccc" | ||
2342 | id="path8073" | ||
2343 | d="M 1094.2857,725.93361 C 1094.2857,725.93361 1093.9896,752.09452 1098.9285,763.79076 C 1103.8674,775.487 1118.9666,790.27741 1127.5,795.21933 C 1136.0334,800.16125 1146.4286,803.79075 1146.4286,803.79075 L 1264.2857,688.79075 L 1282.1429,613.07647 L 1185.7143,651.6479 L 1094.2857,725.93361 z" | ||
2344 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2345 | transform="translate(174.03125,-62.156036)" /> | ||
2346 | <rect | ||
2347 | y="486.14224" | ||
2348 | x="1197.8389" | ||
2349 | height="309.71277" | ||
2350 | width="333.75412" | ||
2351 | id="rect8075" | ||
2352 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2353 | </g> | ||
2354 | </g> | ||
2355 | <g | ||
2356 | transform="translate(-174.03125,62.156036)" | ||
2357 | style="opacity:0.18000004;display:inline;enable-background:new" | ||
2358 | id="g8077"> | ||
2359 | <g | ||
2360 | style="filter:url(#filter3785)" | ||
2361 | id="g8079"> | ||
2362 | <path | ||
2363 | sodipodi:nodetypes="czzccccc" | ||
2364 | id="path8081" | ||
2365 | d="M 1094.2857,725.93361 C 1094.2857,725.93361 1093.9896,752.09452 1098.9285,763.79076 C 1103.8674,775.487 1118.9666,790.27741 1127.5,795.21933 C 1136.0334,800.16125 1146.4286,803.79075 1146.4286,803.79075 L 1264.2857,688.79075 L 1282.1429,613.07647 L 1185.7143,651.6479 L 1094.2857,725.93361 z" | ||
2366 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2367 | transform="translate(174.03125,-62.156036)" /> | ||
2368 | <rect | ||
2369 | y="486.14224" | ||
2370 | x="1197.8389" | ||
2371 | height="309.71277" | ||
2372 | width="333.75412" | ||
2373 | id="rect8083" | ||
2374 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2375 | </g> | ||
2376 | </g> | ||
2377 | </g> | ||
2378 | <path | ||
2379 | transform="translate(450.03125,73.843964)" | ||
2380 | style="opacity:0.83300003;fill:#050505;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:15;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8225);enable-background:accumulate" | ||
2381 | d="M 1264.1875,605 C 1259.6964,605.73268 1256.0305,608.45509 1252.25,611.40625 C 1242.1687,619.27601 1224.0805,645.83149 1204.2188,661.875 C 1164.3514,694.07816 1100.2228,731.85201 1051.6562,752.96875 C 1003.0422,774.10613 921.11498,798.78676 877.34375,810.46875 C 833.94554,822.05121 762.29972,835.59982 709.09375,837 L 704.53125,837.125 L 702.53125,841.25 L 609.6875,1033.375 L 603.1875,1046.8438 L 617.84375,1044 C 617.84375,1044 705.11343,1027.3486 750.1875,1012.7188 C 794.9127,998.20213 865.97836,967.05197 923.21875,939.84375 C 980.82199,912.46306 1090.1551,847.86412 1137.5,810.375 C 1183.8608,773.66518 1215.3049,745.65818 1237.4375,720.125 C 1248.3386,707.549 1260.1823,692.59356 1268.4688,677.375 C 1276.7552,662.15644 1287.6285,633.15692 1282.1562,618.53125 C 1280.9385,615.27651 1279.6048,612.46995 1277.5625,610.03125 C 1275.5202,607.59255 1269.0878,608.45926 1269,605 C 1268.7902,596.73518 1265.6845,604.75577 1264.1875,605 z M 1266.3438,620.21875 C 1266.7586,620.80449 1267.3749,621.77641 1268.125,623.78125 C 1271.0218,631.52338 1266.6843,655.68 1259.3125,669.21875 C 1251.9407,682.7575 1236.6741,698.14269 1226.125,710.3125 C 1205.0496,734.62606 1174.2213,762.17406 1128.1875,798.625 C 1083.1379,834.29659 972.72717,899.71959 916.78125,926.3125 C 859.88952,953.35499 788.68509,984.4309 745.53125,998.4375 C 709.16634,1010.2406 649.68654,1022.2713 629.8125,1026.2188 L 714.09375,851.75 C 768.80066,849.7007 837.88634,836.53365 881.21875,824.96875 C 925.55297,813.1365 1007.2974,788.63242 1057.625,766.75 C 1107.737,744.96129 1170.1594,705.58184 1211.6562,672.0625 C 1232.3026,655.38529 1253.4011,629.51662 1261.4688,623.21875 C 1263.9058,621.31633 1265.5494,620.58295 1266.3438,620.21875 z" | ||
2382 | id="path8085" | ||
2383 | clip-path="url(#clipPath3722)" | ||
2384 | sodipodi:nodetypes="cssssccccccssssssssccssssssccssssc" /> | ||
2385 | <g | ||
2386 | style="opacity:1;display:inline;enable-background:new" | ||
2387 | id="g8087" | ||
2388 | mask="url(#mask7704)" | ||
2389 | transform="matrix(0.9934486,0.1142802,-0.1142802,0.9934486,-9.24324,588.09054)" | ||
2390 | inkscape:transform-center-x="-185.09603" | ||
2391 | inkscape:transform-center-y="-12.859654"> | ||
2392 | <path | ||
2393 | transform="translate(8.0045714e-2,-3.125e-2)" | ||
2394 | style="fill:#bcb786;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2395 | d="M 1111.4062,-285.9375 L 1107.4688,-284.0625 C 1107.4283,-284.05228 1107.3692,-284.04201 1107.3438,-284.03125 C 1106.925,-283.8184 1107.1791,-283.93067 1106.6875,-283.71875 C 1106.2014,-283.50919 1104.9499,-283.13456 1102.5938,-282.25 C 1099.2626,-280.99942 1096.7895,-280.10016 1095.5938,-279.1875 C 1094.0576,-279.16623 1091.8733,-278.95419 1089.9375,-278.46875 C 1086.956,-277.72108 1085.0823,-277.29474 1083.1875,-276.875 C 1081.2927,-276.45527 1081.512,-276.23281 1080.3125,-276 C 1079.0159,-275.74833 1078.5911,-276.00899 1074.875,-275.21875 C 1071.3851,-274.4766 1065.9802,-273.28768 1064.7188,-272.53125 C 1063.1348,-272.71203 1060.8513,-272.85303 1058.875,-272.5625 C 1055.8346,-272.11554 1053.9588,-271.88974 1052.0312,-271.65625 C 1051.3758,-271.57687 1050.9902,-271.45547 1050.6875,-271.375 C 1050.2613,-271.24334 1050.0017,-271.11498 1049.3125,-271.03125 C 1048.0009,-270.87188 1047.5503,-271.18808 1043.7812,-270.75 C 1040.2273,-270.33691 1034.7758,-269.47718 1033.5312,-268.8125 C 1031.9322,-269.10979 1029.6735,-269.34669 1027.6875,-269.15625 C 1024.6287,-268.86293 1022.7155,-268.67226 1020.7812,-268.5 C 1018.847,-268.32773 1019.0926,-268.07763 1017.875,-267.96875 C 1016.5588,-267.85105 1016.1152,-268.13238 1012.3438,-267.71875 C 1008.8017,-267.3303 1003.3359,-266.50948 1002.0625,-265.84375 C 1000.4636,-266.13844 998.1753,-266.35076 996.1875,-266.15625 C 993.12921,-265.857 991.2463,-265.67601 989.3125,-265.5 C 988.65501,-265.44015 988.27245,-265.32144 987.96875,-265.25 C 987.54105,-265.13104 987.28525,-265.03193 986.59375,-264.96875 C 985.27775,-264.84849 984.834,-265.16363 981.0625,-264.75 C 977.50631,-264.35998 972.0569,-263.51084 970.8125,-262.84375 C 969.21381,-263.13793 966.95265,-263.36747 964.96875,-263.15625 C 961.91305,-262.83092 959.9947,-262.63001 958.0625,-262.4375 C 956.13031,-262.24499 956.37275,-261.99662 955.15625,-261.875 C 953.84137,-261.74353 953.3932,-262.03954 949.625,-261.59375 C 946.08611,-261.17509 940.6473,-260.30158 939.375,-259.625 C 937.77741,-259.90604 935.51505,-260.04543 933.53125,-259.8125 C 930.47927,-259.45413 928.58625,-259.24464 926.65625,-259.03125 C 926.00007,-258.95869 925.6156,-258.85856 925.3125,-258.78125 C 924.88571,-258.65402 924.6276,-258.51405 923.9375,-258.4375 C 922.62411,-258.29181 922.17015,-258.61152 918.40625,-258.125 C 914.85737,-257.66624 909.4276,-256.70598 908.1875,-256 C 906.59441,-256.24424 904.3537,-256.38135 902.375,-256.125 C 899.32741,-255.73018 897.4243,-255.47655 895.5,-255.21875 C 893.57571,-254.96096 893.7739,-254.72522 892.5625,-254.5625 C 891.25301,-254.3866 890.8153,-254.66688 887.0625,-254.09375 C 883.53821,-253.55551 878.1393,-252.39458 876.875,-251.65625 C 875.28751,-251.85979 873.0295,-251.91098 871.0625,-251.5625 C 868.03631,-251.02638 866.1636,-250.70081 864.25,-250.375 C 863.59941,-250.26423 863.2363,-250.10406 862.9375,-250 C 862.51681,-249.83512 862.27405,-249.6687 861.59375,-249.53125 C 860.29905,-249.26966 859.86665,-249.53745 856.15625,-248.71875 C 852.65777,-247.9468 847.31035,-246.33582 846.09375,-245.5 C 844.53085,-245.57745 842.33625,-245.41472 840.40625,-244.90625 C 837.43387,-244.12312 835.58855,-243.67416 833.71875,-243.15625 C 831.84875,-242.63835 832.0521,-242.38897 830.875,-242.0625 C 829.60251,-241.7096 829.17795,-241.95541 825.53125,-240.875 C 822.10657,-239.86037 816.88185,-237.94183 815.65625,-237.03125 C 814.11747,-237.01851 811.93645,-236.75903 810.03125,-236.15625 C 807.10027,-235.22891 805.2809,-234.69783 803.4375,-234.09375 C 802.81071,-233.88837 802.44585,-233.70117 802.15625,-233.5625 C 801.74867,-233.34889 801.50295,-233.15375 800.84375,-232.9375 C 799.58925,-232.52596 799.1576,-232.74846 795.5625,-231.5 C 792.17261,-230.32283 786.96755,-228.2863 785.78125,-227.34375 C 784.25737,-227.28408 782.1312,-226.94888 780.25,-226.28125 C 777.35261,-225.25296 775.55095,-224.60577 773.71875,-223.96875 C 771.88655,-223.33174 772.0909,-223.12021 770.9375,-222.71875 C 769.69071,-222.28479 769.27395,-222.51903 765.71875,-221.15625 C 762.38005,-219.87645 757.23165,-217.6737 756.03125,-216.6875 C 754.52407,-216.57981 752.39555,-216.1887 750.53125,-215.46875 C 747.66307,-214.36115 745.90735,-213.68719 744.09375,-213 C 743.47705,-212.76637 743.0973,-212.55797 742.8125,-212.40625 C 742.81251,-212.40625 742.8125,-212.37673 742.8125,-212.375 L 734.8125,-209.1875 L 722.3366,-205.69561 L 730.26626,-186.41789 C 729.67463,-184.44432 742.8125,-191.15625 742.8125,-191.15625 C 743.03891,-191.30093 743.26145,-191.42886 743.53125,-191.53125 C 744.61177,-191.94123 745.70285,-191.74702 749.53125,-193.21875 C 753.35977,-194.69049 754.7553,-195.22373 755.4375,-195.625 C 756.11711,-196.02478 757.04925,-196.50437 757.65625,-197.15625 C 759.48317,-197.294 761.22705,-197.64948 762.59375,-198.15625 C 765.56175,-199.25677 767.4691,-199.96244 769.375,-200.625 C 771.28081,-201.28754 771.72915,-202.03987 772.78125,-202.40625 C 773.87287,-202.78636 774.97635,-202.57163 778.84375,-203.9375 C 782.71115,-205.30336 784.1269,-205.76458 784.8125,-206.15625 C 785.51361,-206.55677 786.5133,-207.08923 787.125,-207.75 C 789.09581,-207.80466 790.94195,-208.13463 792.40625,-208.625 C 795.40777,-209.63008 797.3324,-210.24671 799.25,-210.875 C 800.78861,-211.3791 801.42415,-211.92177 802.15625,-212.3125 C 802.38647,-212.44681 802.63215,-212.56623 802.90625,-212.65625 C 804.00457,-213.01673 805.0877,-212.73762 809,-213.96875 C 812.91231,-215.19988 814.366,-215.6417 815.0625,-216 C 815.75641,-216.35697 816.6926,-216.79261 817.3125,-217.40625 C 819.17771,-217.42891 820.94835,-217.67308 822.34375,-218.09375 C 825.37415,-219.00729 827.33615,-219.52385 829.28125,-220.0625 C 831.22637,-220.60114 831.70745,-221.32702 832.78125,-221.625 C 833.89527,-221.93415 835.00125,-221.61761 838.96875,-222.65625 C 842.93625,-223.69488 844.38625,-224.08898 845.09375,-224.40625 C 845.82855,-224.73584 846.90765,-225.15997 847.53125,-225.78125 C 849.52907,-225.66525 851.3887,-225.80134 852.875,-226.15625 C 855.95311,-226.89125 857.9584,-227.25719 859.9375,-227.65625 C 861.52541,-227.97643 862.1818,-228.4468 862.9375,-228.75 C 863.17501,-228.8568 863.4044,-228.94276 863.6875,-229 C 864.82091,-229.22919 865.99215,-228.79107 870.03125,-229.5 C 874.07067,-230.20893 875.5315,-230.42709 876.25,-230.6875 C 876.96581,-230.94694 877.95435,-231.25474 878.59375,-231.78125 C 880.51795,-231.54176 882.34165,-231.55672 883.78125,-231.78125 C 886.90767,-232.26887 888.9358,-232.48192 890.9375,-232.75 C 892.93921,-233.01807 893.42625,-233.69514 894.53125,-233.84375 C 895.67767,-233.99793 896.8071,-233.54218 900.875,-234.0625 C 904.94281,-234.58282 906.43525,-234.75823 907.15625,-235 C 907.89337,-235.24714 908.95435,-235.58623 909.59375,-236.125 C 911.64375,-235.78947 913.56745,-235.72704 915.09375,-235.90625 C 918.23595,-236.27521 920.27375,-236.46561 922.28125,-236.6875 C 923.89207,-236.86552 924.5459,-237.2957 925.3125,-237.53125 C 925.55341,-237.61677 925.80655,-237.68685 926.09375,-237.71875 C 927.24345,-237.84647 928.39505,-237.3721 932.46875,-237.84375 C 936.54245,-238.3154 938.0278,-238.45435 938.75,-238.6875 C 939.46941,-238.91977 940.45025,-239.16096 941.09375,-239.65625 C 943.03005,-239.32279 944.8638,-239.25201 946.3125,-239.40625 C 949.45851,-239.7412 951.49,-239.92484 953.5,-240.125 C 955.50991,-240.32514 955.98415,-240.95139 957.09375,-241.0625 C 958.24485,-241.17778 959.39025,-240.69744 963.46875,-241.125 C 967.54725,-241.55256 969.05765,-241.68709 969.78125,-241.90625 C 970.52047,-242.13011 971.57685,-242.4195 972.21875,-242.9375 C 974.27575,-242.53883 976.2206,-242.4441 977.75,-242.59375 C 980.89871,-242.90185 982.9258,-243.067 984.9375,-243.25 C 986.55151,-243.39682 987.20055,-243.81055 987.96875,-244.03125 C 988.21005,-244.11211 988.4623,-244.16116 988.75,-244.1875 C 989.90211,-244.29295 991.0429,-243.79475 995.125,-244.1875 C 999.20711,-244.58025 1000.7139,-244.71834 1001.4375,-244.9375 C 1002.1584,-245.15583 1003.1371,-245.3852 1003.7812,-245.875 C 1005.7193,-245.52501 1007.5501,-245.42062 1009,-245.5625 C 1012.1487,-245.8706 1014.1758,-246.03575 1016.1875,-246.21875 C 1018.1991,-246.40174 1018.7017,-247.05677 1019.8125,-247.15625 C 1020.9648,-247.25948 1022.1047,-246.77142 1026.1875,-247.15625 C 1030.2704,-247.54107 1031.7762,-247.65725 1032.5,-247.875 C 1033.2393,-248.09743 1034.2956,-248.38949 1034.9375,-248.90625 C 1036.9949,-248.50448 1038.9404,-248.40292 1040.4688,-248.5625 C 1043.6153,-248.89102 1045.6458,-249.0852 1047.6562,-249.28125 C 1049.2692,-249.43854 1049.9219,-249.91273 1050.6875,-250.15625 C 1050.9282,-250.24429 1051.1507,-250.27762 1051.4375,-250.3125 C 1052.5858,-250.4522 1053.7542,-249.97259 1057.8125,-250.5625 C 1061.8708,-251.15242 1063.3743,-251.33964 1064.0938,-251.59375 C 1064.8104,-251.84691 1065.7684,-252.15182 1066.4062,-252.6875 C 1068.3259,-252.47556 1070.1262,-252.53609 1071.5625,-252.78125 C 1074.6816,-253.31365 1076.6741,-253.70986 1078.6562,-254.09375 C 1080.6383,-254.47762 1081.1305,-255.1334 1082.2188,-255.375 C 1083.3475,-255.62566 1084.489,-255.25871 1088.4688,-256.25 C 1092.4483,-257.24127 1093.8983,-257.6693 1094.5938,-258.03125 C 1095.316,-258.40725 1096.3555,-258.90183 1096.9688,-259.5625 C 1098.9317,-259.57454 1100.7625,-259.85355 1102.1875,-260.40625 C 1105.1387,-261.55085 1107.0607,-262.27567 1108.875,-263.15625 C 1110.3307,-263.86277 1111.1941,-264.85828 1111.4062,-265.15625 C 1111.6185,-265.4542 1111.5051,-265.8848 1111.5312,-265.90625 C 1111.5742,-265.94148 1111.8716,-266.00028 1112.0312,-266.34375 C 1112.8902,-268.19082 1114.3544,-271.97139 1114.4688,-272.65625 C 1114.5825,-273.33839 1114.6368,-274.00902 1114.6875,-274.40625 C 1114.7169,-274.63575 1114.5404,-275.28515 1114.5625,-275.34375 C 1114.5934,-275.42579 1114.8508,-275.59432 1114.9062,-275.84375 C 1115.1725,-277.04206 1114.9953,-278.05111 1114.7812,-279.46875 C 1114.5673,-280.88638 1113.8096,-284.08338 1113.1562,-284.9375 C 1112.4973,-285.79922 1111.9314,-285.94801 1111.4062,-285.9375 z" | ||
2396 | id="path8089" | ||
2397 | sodipodi:nodetypes="ccssscsssscssssscsssscssssscsssscssssscsssscssssscsssscssssscsssscssscccccssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsssssssssssc" /> | ||
2398 | <g | ||
2399 | clip-path="url(#clipPath7421)" | ||
2400 | id="g8091"> | ||
2401 | <path | ||
2402 | id="path8093" | ||
2403 | d="M 1107.409,-284.04961 C 1106.9903,-283.83678 1107.2534,-283.95572 1106.7618,-283.7438 C 1106.2757,-283.53426 1105.0384,-283.16941 1102.6822,-282.28485 C 1099.3511,-281.03428 1096.852,-280.13141 1095.6563,-279.21875 C 1094.1202,-279.19749 1091.9358,-278.98544 1090,-278.5 C 1087.0185,-277.75234 1085.1448,-277.32599 1083.25,-276.90625 C 1081.3552,-276.48653 1081.5745,-276.26406 1080.375,-276.03125 C 1079.0784,-275.77959 1078.6536,-276.04024 1074.9375,-275.25 C 1071.4476,-274.50786 1066.0427,-273.31893 1064.7813,-272.5625 C 1063.1974,-272.74329 1060.9138,-272.88428 1058.9375,-272.59375 C 1055.8971,-272.1468 1054.0213,-271.92099 1052.0938,-271.6875 C 1051.4384,-271.60813 1051.0527,-271.48672 1050.75,-271.40625 C 1050.3238,-271.2746 1050.0642,-271.14623 1049.375,-271.0625 C 1048.0634,-270.90314 1047.6128,-271.21933 1043.8438,-270.78125 C 1040.2899,-270.36817 1034.8384,-269.50843 1033.5938,-268.84375 C 1031.9948,-269.14105 1029.736,-269.37794 1027.75,-269.1875 C 1024.6912,-268.89419 1022.778,-268.70351 1020.8438,-268.53125 C 1018.9095,-268.35899 1019.1551,-268.10888 1017.9375,-268 C 1016.6213,-267.88231 1016.1777,-268.16363 1012.4063,-267.75 C 1008.8644,-267.36156 1003.3984,-266.54073 1002.125,-265.875 C 1000.5261,-266.1697 998.23783,-266.38201 996.25,-266.1875 C 993.19176,-265.88826 991.30887,-265.70726 989.375,-265.53125 C 988.71751,-265.47141 988.33496,-265.35269 988.03125,-265.28125 C 987.6036,-265.1623 987.34774,-265.06318 986.65625,-265 C 985.34029,-264.87975 984.89649,-265.19488 981.125,-264.78125 C 977.56886,-264.39124 972.11946,-263.54209 970.875,-262.875 C 969.27637,-263.16919 967.01516,-263.39872 965.03125,-263.1875 C 961.97565,-262.86218 960.05721,-262.66126 958.125,-262.46875 C 956.19279,-262.27625 956.43513,-262.02787 955.21875,-261.90625 C 953.90387,-261.77479 953.45577,-262.07079 949.6875,-261.625 C 946.14863,-261.20635 940.70982,-260.33283 939.4375,-259.65625 C 937.83995,-259.9373 935.57754,-260.07668 933.59375,-259.84375 C 930.54177,-259.48539 928.64867,-259.27589 926.71875,-259.0625 C 926.06255,-258.98995 925.67809,-258.88981 925.375,-258.8125 C 924.94823,-258.68528 924.69009,-258.5453 924,-258.46875 C 922.68667,-258.32307 922.23254,-258.64277 918.46875,-258.15625 C 914.91986,-257.6975 909.49012,-256.73723 908.25,-256.03125 C 906.65695,-256.27549 904.41619,-256.4126 902.4375,-256.15625 C 899.38991,-255.76144 897.48679,-255.5078 895.5625,-255.25 C 893.63822,-254.99221 893.83639,-254.75647 892.625,-254.59375 C 891.31554,-254.41785 890.87781,-254.69813 887.125,-254.125 C 883.60071,-253.58676 878.20185,-252.42583 876.9375,-251.6875 C 875.35,-251.89104 873.092,-251.94223 871.125,-251.59375 C 868.09883,-251.05763 866.22611,-250.73206 864.3125,-250.40625 C 863.66189,-250.29548 863.29879,-250.13531 863,-250.03125 C 862.57933,-249.86637 862.33655,-249.69995 861.65625,-249.5625 C 860.3616,-249.30091 859.92913,-249.5687 856.21875,-248.75 C 852.72022,-247.97805 847.3728,-246.36707 846.15625,-245.53125 C 844.59347,-245.6087 842.39867,-245.44597 840.46875,-244.9375 C 837.49631,-244.15437 835.65114,-243.70541 833.78125,-243.1875 C 831.91137,-242.6696 832.11465,-242.42022 830.9375,-242.09375 C 829.66504,-241.74085 829.24047,-241.98666 825.59375,-240.90625 C 822.16905,-239.89162 816.94431,-237.97308 815.71875,-237.0625 C 814.17992,-237.04976 811.99892,-236.79028 810.09375,-236.1875 C 807.16269,-235.26016 805.34344,-234.72908 803.5,-234.125 C 802.87324,-233.91962 802.50827,-233.73242 802.21875,-233.59375 C 801.81112,-233.38014 801.56541,-233.185 800.90625,-232.96875 C 799.65179,-232.55721 799.22014,-232.77971 795.625,-231.53125 C 792.23515,-230.35408 787.03002,-228.31755 785.84375,-227.375 C 784.31986,-227.31533 782.1937,-226.98013 780.3125,-226.3125 C 777.41511,-225.28421 775.61342,-224.63702 773.78125,-224 C 771.94908,-223.36299 772.1534,-223.15146 771,-222.75 C 769.75322,-222.31604 769.33639,-222.55028 765.78125,-221.1875 C 762.44258,-219.9077 757.2941,-217.70495 756.09375,-216.71875 C 754.58657,-216.61106 752.45806,-216.21995 750.59375,-215.5 C 747.72557,-214.3924 745.96995,-213.71844 744.15625,-213.03125 C 743.53959,-212.79762 743.15984,-212.58922 742.875,-212.4375 C 742.875,-212.4375 742.875,-211.34375 742.875,-211.34375 C 742.98678,-211.56611 743.26099,-212.16118 743.78125,-212.4375 C 744.47922,-212.80822 748.59488,-214.43087 750.59375,-215.15625 C 752.25061,-215.7575 754.74764,-216.48493 756.5625,-216.46875 C 756.86412,-216.46606 757.15012,-216.41785 757.40625,-216.375 C 759.24874,-216.06675 764.875,-214.8125 764.875,-214.8125 C 764.87499,-214.8125 758.64151,-216.45925 757.84375,-216.65625 C 757.65296,-216.70336 757.30803,-216.72497 756.875,-216.71875 C 758.02046,-217.58846 761.636,-219.11226 764.21875,-220.15625 C 767.05697,-221.30352 767.33556,-221.40807 769.28125,-221.8125 C 771.28955,-222.22994 772.4375,-222.3125 772.4375,-222.3125 C 772.4375,-222.31249 772.35514,-222.91364 773.40625,-223.4375 C 774.11135,-223.78891 778.29327,-225.3299 780.3125,-226 C 782.2644,-226.64773 785.3699,-227.3585 787.1875,-227 C 789.05073,-226.6325 794.71875,-225.1875 794.71875,-225.1875 C 794.71876,-225.1875 788.43175,-227.05861 787.625,-227.28125 C 787.43208,-227.3345 787.09416,-227.36729 786.65625,-227.375 C 787.81459,-228.20788 791.45069,-229.57032 794.0625,-230.53125 C 796.93266,-231.58726 797.22984,-231.69305 799.1875,-232.0625 C 801.04099,-232.41229 802.04634,-232.48798 802.21875,-232.5 C 802.33235,-232.71724 802.5962,-233.31002 803.125,-233.5625 C 803.83444,-233.90124 808.05107,-235.27525 810.09375,-235.875 C 811.78692,-236.37211 814.33452,-236.91177 816.1875,-236.78125 C 816.49545,-236.75957 816.80099,-236.68399 817.0625,-236.625 C 818.94368,-236.20068 824.65625,-234.59375 824.65625,-234.59375 C 824.65626,-234.59375 818.31451,-236.659 817.5,-236.90625 C 817.30521,-236.96539 816.94212,-237.01019 816.5,-237.03125 C 817.66949,-237.8288 821.36302,-239.08747 824,-239.96875 C 826.89781,-240.93722 827.23301,-240.97207 829.21875,-241.25 C 831.2684,-241.53689 832.40625,-241.5625 832.40625,-241.5625 C 832.40623,-241.5625 832.3335,-242.16947 833.40625,-242.625 C 834.12585,-242.93057 838.39723,-244.12575 840.46875,-244.625 C 842.47119,-245.10758 845.66724,-245.55329 847.53125,-245.03125 C 849.44203,-244.4961 855.25,-242.53125 855.25,-242.53125 C 855.25,-242.53125 848.82734,-244.95476 848,-245.25 C 847.80216,-245.32061 847.41784,-245.39039 846.96875,-245.4375 C 848.15665,-246.16615 851.88402,-247.21158 854.5625,-247.9375 C 857.50592,-248.73525 857.85458,-248.70833 859.875,-248.84375 C 861.78789,-248.97198 862.82205,-248.91484 863,-248.90625 C 863.11728,-249.10991 863.39176,-249.68573 863.9375,-249.875 C 864.66969,-250.12894 869.01602,-250.92289 871.125,-251.25 C 872.87313,-251.52111 875.52588,-251.7347 877.4375,-251.34375 C 877.75516,-251.27879 878.04272,-251.15824 878.3125,-251.0625 C 880.25324,-250.37377 886.15625,-247.96875 886.15625,-247.96875 C 886.15626,-247.96875 879.62154,-250.91952 878.78125,-251.28125 C 878.58028,-251.36776 878.20612,-251.44804 877.75,-251.53125 C 878.9565,-252.16443 882.77956,-252.92685 885.5,-253.4375 C 888.48953,-253.99869 888.80023,-253.96704 890.84375,-253.96875 C 892.95301,-253.97052 894.15625,-253.84375 894.15625,-253.84375 C 894.15625,-253.84374 894.08354,-254.47494 895.1875,-254.78125 C 895.92802,-254.98672 900.31362,-255.61512 902.4375,-255.84375 C 904.49052,-256.06474 907.75613,-256.09597 909.65625,-255.375 C 911.60404,-254.63593 917.5,-252 917.5,-252 C 917.50002,-252 910.93712,-255.17897 910.09375,-255.5625 C 909.89207,-255.65423 909.55154,-255.74871 909.09375,-255.84375 C 910.30467,-256.44563 914.07817,-257.09259 916.8125,-257.5 C 919.8173,-257.94772 920.13801,-257.9517 922.1875,-257.90625 C 924.12795,-257.86323 925.19449,-257.71202 925.375,-257.6875 C 925.49392,-257.88066 925.7589,-258.45333 926.3125,-258.59375 C 927.05521,-258.78213 931.46679,-259.32803 933.59375,-259.53125 C 935.35678,-259.69967 938.01384,-259.76554 939.9375,-259.28125 C 940.25718,-259.20077 940.54101,-259.07766 940.8125,-258.96875 C 942.76543,-258.18526 948.71875,-255.5 948.71875,-255.5 C 948.71873,-255.5 942.12684,-258.75348 941.28125,-259.15625 C 941.07903,-259.25257 940.70899,-259.36328 940.25,-259.46875 C 941.46414,-260.04302 945.29366,-260.59094 948.03125,-260.96875 C 951.03963,-261.38395 951.35432,-261.41138 953.40625,-261.34375 C 955.52423,-261.27394 956.71875,-261.09375 956.71875,-261.09375 C 956.71873,-261.09375 956.6415,-261.73116 957.75,-262 C 958.49362,-262.18035 962.90176,-262.66355 965.03125,-262.84375 C 967.08972,-263.01792 970.37449,-262.96807 972.28125,-262.1875 C 974.23584,-261.38734 980.15625,-258.65625 980.15625,-258.65625 C 980.15623,-258.65625 973.59632,-261.96501 972.75,-262.375 C 972.54763,-262.47305 972.17814,-262.5781 971.71875,-262.6875 C 972.93392,-263.2514 976.72883,-263.8018 979.46875,-264.15625 C 982.47966,-264.54577 982.79006,-264.5539 984.84375,-264.46875 C 986.78814,-264.38815 987.85038,-264.21551 988.03125,-264.1875 C 988.15041,-264.37836 988.41402,-264.93281 988.96875,-265.0625 C 989.71301,-265.2365 994.11868,-265.71297 996.25,-265.875 C 998.01662,-266.00927 1000.6997,-266.00071 1002.625,-265.5 C 1002.945,-265.41679 1003.2283,-265.29873 1003.5,-265.1875 C 1005.4546,-264.38734 1011.4063,-261.625 1011.4063,-261.625 C 1011.4062,-261.625 1004.8151,-264.96501 1003.9688,-265.375 C 1003.7664,-265.47305 1003.3969,-265.57811 1002.9375,-265.6875 C 1004.1526,-266.2514 1007.9788,-266.77056 1010.7188,-267.125 C 1013.7297,-267.51453 1014.0713,-267.5539 1016.125,-267.46875 C 1018.2447,-267.38087 1019.4375,-267.15625 1019.4375,-267.15625 C 1019.4375,-267.15625 1019.3591,-267.80527 1020.4688,-268.0625 C 1021.2131,-268.23506 1025.6183,-268.68586 1027.75,-268.84375 C 1029.8106,-268.99635 1033.0929,-268.94052 1035,-268.15625 C 1036.955,-267.3523 1042.875,-264.65625 1042.875,-264.65625 C 1042.875,-264.65625 1036.3152,-267.93212 1035.4688,-268.34375 C 1035.2663,-268.44219 1034.897,-268.54597 1034.4375,-268.65625 C 1035.6529,-269.21779 1039.4494,-269.78403 1042.1875,-270.15625 C 1045.1965,-270.5653 1045.5102,-270.57183 1047.5625,-270.5 C 1049.5056,-270.43201 1050.5697,-270.33515 1050.75,-270.3125 C 1050.8688,-270.5069 1051.1346,-271.04131 1051.6875,-271.1875 C 1052.4293,-271.38362 1056.8186,-272.01628 1058.9375,-272.28125 C 1060.6939,-272.50086 1063.3428,-272.61356 1065.25,-272.25 C 1065.5669,-272.18959 1065.8558,-272.06062 1066.125,-271.96875 C 1068.0612,-271.30783 1073.9688,-269.03125 1073.9688,-269.03125 C 1073.9687,-269.03125 1067.4321,-271.8378 1066.5938,-272.1875 C 1066.3933,-272.27113 1066.0176,-272.36083 1065.5625,-272.4375 C 1066.7662,-273.08796 1070.5816,-273.80945 1073.2813,-274.4375 C 1076.248,-275.1277 1076.5702,-275.19257 1078.5938,-275.3125 C 1080.6824,-275.4363 1081.875,-275.34375 1081.875,-275.34375 C 1081.875,-275.34374 1081.788,-275.9758 1082.875,-276.375 C 1083.6042,-276.6428 1087.9222,-277.71297 1090,-278.1875 C 1092.0085,-278.64619 1095.1679,-279.2168 1097,-278.8125 C 1098.8781,-278.39804 1110.5782,-275.79687 1110.5782,-275.79687 C 1110.5782,-275.79687 1098.2507,-278.81953 1097.4375,-279.0625 C 1097.243,-279.12062 1096.8789,-279.16876 1096.4375,-279.1875 C 1097.6051,-279.99119 1099.9517,-280.8748 1102.5469,-281.89062 C 1104.2283,-282.5488 1103.4706,-282.26721 1105.3228,-282.89422 C 1107.0764,-283.48788 1107.8082,-283.90493 1107.9532,-284.00721 C 1108.2993,-284.21372 1107.5972,-284.12909 1107.409,-284.04961 z" | ||
2404 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7001);enable-background:new" | ||
2405 | sodipodi:nodetypes="czscsssscssssscsssscssssscsssscssssscsssscssssscsssscssssscsssscssccsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscc" /> | ||
2406 | <path | ||
2407 | id="path8095" | ||
2408 | d="M 1082.625,-275.125 C 1084.498,-274.73152 1087.1211,-273.97945 1088.6563,-273.15625 C 1090.1915,-272.33306 1091.4785,-272.10025 1094.0313,-270.65625 C 1096.5579,-269.22699 1098.8271,-268.64929 1101,-268.125 C 1103.3476,-267.55858 1106.4354,-267.40977 1109.8438,-266.9375 C 1108.7549,-267.77725 1103.2364,-268.10995 1101.4375,-268.5 C 1099.6386,-268.89006 1097.5434,-269.51616 1094.8438,-270.8125 C 1092.1441,-272.10884 1091.3494,-272.61146 1089.0313,-273.5 C 1086.7131,-274.38854 1085.0269,-274.88314 1082.625,-275.125 z" | ||
2409 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6949);enable-background:new" /> | ||
2410 | <path | ||
2411 | id="path8097" | ||
2412 | d="M 1051.4688,-270 C 1053.3741,-269.42241 1055.9969,-268.38428 1057.5625,-267.40625 C 1059.1281,-266.42823 1060.4427,-266.04644 1063.0625,-264.28125 C 1065.6555,-262.53409 1068.0484,-261.57198 1070.3125,-260.6875 C 1072.7586,-259.73193 1075.9951,-259.03037 1079.7188,-257.625 C 1078.5292,-258.76284 1072.6557,-260.31175 1070.7813,-261 C 1068.9068,-261.68825 1066.6995,-262.5662 1063.9063,-264.28125 C 1061.113,-265.99629 1060.3327,-266.56515 1057.9688,-267.6875 C 1055.6047,-268.80984 1053.9121,-269.52205 1051.4688,-270 z" | ||
2413 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6961);enable-background:new" /> | ||
2414 | <path | ||
2415 | id="path8099" | ||
2416 | d="M 1020.2188,-266.84375 C 1022.1307,-266.20564 1024.8,-265.08839 1026.375,-264.03125 C 1027.9501,-262.9741 1029.2706,-262.52258 1031.9063,-260.625 C 1034.5149,-258.74679 1036.9347,-257.59497 1039.2188,-256.5625 C 1041.6865,-255.44705 1044.9833,-254.3892 1048.75,-252.71875 C 1047.5467,-253.94128 1041.5472,-256.03298 1039.6563,-256.84375 C 1037.7653,-257.65452 1035.5914,-258.73754 1032.7813,-260.59375 C 1029.9711,-262.44995 1029.1595,-263.07068 1026.7813,-264.3125 C 1024.403,-265.5543 1022.6706,-266.28819 1020.2188,-266.84375 z" | ||
2417 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6957);enable-background:new" /> | ||
2418 | <path | ||
2419 | id="path8101" | ||
2420 | d="M 1110.1719,-266.89063 C 1110.3227,-266.84207 1110.8599,-266.25963 1110.2813,-265.40625 C 1109.4712,-264.21166 1104.5764,-262.08196 1101.7188,-261.28125 C 1098.8739,-260.48413 1095.4287,-260.30351 1091.1563,-261.65625 C 1086.8547,-263.0182 1085.6866,-264.12497 1080.5,-265.96875 C 1085.164,-263.85358 1086.6953,-262.01642 1090.625,-260.625 C 1092.2457,-260.05113 1093.9921,-259.6854 1095.6875,-259.59375 C 1095.2424,-259.26812 1094.1572,-258.61045 1092.125,-258 C 1089.3295,-257.16031 1085.4759,-256.46622 1083.875,-256.375 C 1082.3604,-256.28868 1080.733,-256.88749 1080.4375,-257 C 1080.6042,-256.89692 1080.8107,-256.62266 1080.1875,-255.96875 C 1079.2882,-255.02512 1074.0401,-254.04575 1071.0625,-253.71875 C 1068.0982,-253.3932 1064.5409,-253.73471 1060.1563,-255.625 C 1056.1783,-257.33997 1054.8173,-258.54036 1050.75,-260.375 C 1050.75,-260.375 1050.75,-260.21875 1050.75,-260.21875 C 1054.3931,-258.12346 1056.034,-256.33548 1059.625,-254.65625 C 1061.3552,-253.84716 1063.2167,-253.24749 1065.0313,-252.9375 C 1064.4964,-252.65074 1063.4735,-252.22599 1061.5938,-251.90625 C 1058.7248,-251.41829 1054.7848,-251.09011 1053.1563,-251.15625 C 1052.3056,-251.19079 1051.4277,-251.34062 1050.75,-251.5625 C 1050.0652,-251.77738 1049.5603,-252.00717 1049.4375,-252.0625 C 1049.6069,-251.95529 1049.8686,-251.65962 1049.2188,-251.03125 C 1048.3091,-250.15163 1042.9727,-249.69487 1039.9688,-249.5625 C 1036.9783,-249.43071 1033.3799,-250.01313 1028.9688,-252.125 C 1024.5276,-254.25126 1023.3273,-255.5266 1018.0625,-257.90625 C 1022.7968,-255.30921 1024.349,-253.27715 1028.4063,-251.1875 C 1030.0796,-250.32565 1031.8915,-249.69325 1033.6563,-249.25 C 1033.193,-249.01668 1032.0669,-248.56186 1029.9688,-248.3125 C 1027.0825,-247.96952 1023.1342,-247.81962 1021.5,-247.9375 C 1019.9538,-248.049 1018.2688,-248.79446 1017.9688,-248.9375 C 1018.1379,-248.81721 1018.3826,-248.52702 1017.75,-247.9375 C 1016.8372,-247.08677 1011.5059,-246.67538 1008.5,-246.5625 C 1005.5075,-246.45013 1001.9103,-247.05293 997.5,-249.15625 C 993.49875,-251.06448 992.11197,-252.29408 988.03125,-254.25 C 988.03122,-254.25 988.03125,-254.09375 988.03125,-254.09375 C 991.68631,-251.88983 993.32546,-250.0412 996.9375,-248.1875 C 998.67779,-247.29435 1000.5745,-246.65923 1002.4063,-246.21875 C 1001.8663,-245.97045 1000.8282,-245.60342 998.9375,-245.375 C 996.05182,-245.02642 992.07145,-244.85405 990.4375,-244.96875 C 989.58405,-245.02865 988.71119,-245.22666 988.03125,-245.46875 C 987.34415,-245.70405 986.8419,-245.94101 986.71875,-246 C 986.88873,-245.88773 987.18323,-245.57775 986.53125,-244.96875 C 985.6186,-244.11625 980.25592,-243.67538 977.25,-243.5625 C 974.25754,-243.45013 970.65654,-244.09055 966.25,-246.15625 C 961.81347,-248.23603 960.60312,-249.48796 955.34375,-251.8125 C 960.07313,-249.26501 961.63449,-247.2347 965.6875,-245.1875 C 967.35905,-244.34317 969.17304,-243.72107 970.9375,-243.28125 C 970.47427,-243.04703 969.3478,-242.59718 967.25,-242.34375 C 964.36431,-241.99517 960.4138,-241.77423 958.78125,-241.875 C 957.23669,-241.97032 955.58094,-242.70385 955.28125,-242.84375 C 955.45024,-242.72522 955.66317,-242.4399 955.03125,-241.84375 C 954.11939,-240.98347 948.7846,-240.5135 945.78125,-240.375 C 942.7913,-240.2371 939.2138,-240.82568 934.8125,-242.84375 C 930.81942,-244.67464 929.44739,-245.87295 925.375,-247.75 C 925.37498,-247.75 925.375,-247.59375 925.375,-247.59375 C 929.02261,-245.46048 930.64533,-243.65888 934.25,-241.875 C 935.98675,-241.01549 937.85727,-240.42486 939.6875,-240 C 939.14803,-239.7471 938.13687,-239.35871 936.25,-239.09375 C 933.37022,-238.68939 929.41187,-238.44813 927.78125,-238.53125 C 926.92953,-238.57466 926.05355,-238.7398 925.375,-238.96875 C 924.68931,-239.19076 924.1854,-239.41214 924.0625,-239.46875 C 924.23209,-239.35976 924.4944,-239.0591 923.84375,-238.4375 C 922.93296,-237.56736 917.59354,-237.04598 914.59375,-236.875 C 911.60742,-236.70479 908.01994,-237.19077 903.625,-239.15625 C 899.20011,-241.13513 898.01904,-242.38444 892.78125,-244.53125 C 897.49122,-242.14358 899.05142,-240.14252 903.09375,-238.1875 C 904.7609,-237.38119 906.55418,-236.79092 908.3125,-236.40625 C 907.85087,-236.15755 906.7155,-235.694 904.625,-235.375 C 901.7494,-234.93624 897.8446,-234.6419 896.21875,-234.6875 C 894.68052,-234.73062 892.98595,-235.43272 892.6875,-235.5625 C 892.85583,-235.44968 893.09807,-235.14875 892.46875,-234.53125 C 891.56063,-233.64015 886.2658,-233.003 883.28125,-232.71875 C 880.31007,-232.43577 876.70783,-232.89455 872.34375,-234.65625 C 868.38441,-236.25456 867.0146,-237.45112 863,-238.96875 C 863.00003,-238.96875 863,-238.8125 863,-238.8125 C 866.5959,-237.00115 868.23831,-235.23017 871.8125,-233.65625 C 873.53457,-232.8979 875.39998,-232.3673 877.21875,-232.03125 C 876.68266,-231.75217 875.65217,-231.34362 873.78125,-230.96875 C 870.92586,-230.39665 866.99183,-229.94936 865.375,-229.9375 C 864.53049,-229.93129 863.66892,-230.01844 863,-230.1875 C 862.32409,-230.34901 861.83991,-230.51673 861.71875,-230.5625 C 861.88597,-230.46848 862.14142,-230.17902 861.5,-229.5 C 860.60213,-228.54948 855.31352,-227.58292 852.375,-227.0625 C 849.44966,-226.54441 845.94285,-226.68826 841.65625,-228.09375 C 837.34045,-229.50882 836.18348,-230.62369 831.09375,-232.0625 C 835.6706,-230.31149 837.1823,-228.50244 841.125,-227.0625 C 842.75108,-226.46861 844.49385,-226.10685 846.21875,-225.90625 C 845.7659,-225.60923 844.66397,-225.02286 842.625,-224.4375 C 839.82028,-223.63233 835.98614,-222.86167 834.40625,-222.6875 C 832.9115,-222.5227 831.29002,-223.00431 831,-223.09375 C 831.16356,-223.00368 831.39278,-222.73382 830.78125,-222.03125 C 829.89878,-221.0174 824.73673,-219.6596 821.84375,-218.96875 C 818.96373,-218.28097 815.50815,-218.20873 811.28125,-219.40625 C 807.4464,-220.4927 806.10867,-221.47862 802.21875,-222.53125 C 802.21874,-222.53125 802.21875,-222.375 802.21875,-222.375 C 805.70293,-220.98015 807.28816,-219.4556 810.75,-218.34375 C 812.41793,-217.80803 814.20578,-217.55701 815.96875,-217.46875 C 815.44911,-217.11663 814.46836,-216.55423 812.65625,-215.9375 C 809.89059,-214.99625 806.06601,-214.00213 804.5,-213.78125 C 803.68206,-213.66586 802.8669,-213.65842 802.21875,-213.75 C 801.56379,-213.83321 801.08615,-213.96827 800.96875,-214 C 801.13079,-213.92536 801.40274,-213.65956 800.78125,-212.90625 C 799.91125,-211.85172 794.77162,-210.247 791.90625,-209.46875 C 789.05372,-208.69399 785.64713,-208.51055 781.46875,-209.5625 C 777.26192,-210.62163 776.11206,-211.60416 771.125,-212.71875 C 775.60954,-211.25929 777.09435,-209.58352 780.9375,-208.46875 C 782.52254,-208.00898 784.22429,-207.8305 785.90625,-207.78125 C 785.46468,-207.44449 784.39374,-206.75352 782.40625,-206 C 779.67232,-204.96351 775.95427,-203.83731 774.40625,-203.5625 C 772.94163,-203.30248 771.34667,-203.67904 771.0625,-203.75 C 771.22275,-203.67035 771.44294,-203.42902 770.84375,-202.6875 C 769.97909,-201.61744 764.92723,-199.86935 762.09375,-199 C 759.27295,-198.13453 755.88625,-197.84369 751.75,-198.78125 C 747.99741,-199.63186 746.70215,-200.49772 742.875,-201.375 C 742.875,-201.375 742.875,-201.21875 742.875,-201.21875 C 746.30296,-199.98096 747.86241,-198.58645 751.25,-197.6875 C 752.88216,-197.25436 754.61704,-197.10449 756.34375,-197.125 C 755.83482,-196.74083 754.867,-196.10318 753.09375,-195.375 C 750.38741,-194.26366 746.65742,-193.06719 745.125,-192.75 C 744.3246,-192.58431 743.51269,-192.53138 742.875,-192.59375 C 742.875,-192.59375 742.875,-192.07823 742.875,-191.67146 C 742.875,-191.40639 742.875,-191.1875 742.875,-191.1875 C 743.10145,-191.33218 743.32391,-191.46011 743.59375,-191.5625 C 744.67427,-191.97248 745.76536,-191.77827 749.59375,-193.25 C 753.42218,-194.72174 754.81787,-195.25498 755.5,-195.65625 C 756.1796,-196.05603 757.11165,-196.53562 757.71875,-197.1875 C 759.5456,-197.32525 761.2895,-197.68073 762.65625,-198.1875 C 765.62437,-199.28802 767.53162,-199.99369 769.4375,-200.65625 C 771.34336,-201.31879 771.79159,-202.07112 772.84375,-202.4375 C 773.9353,-202.81761 775.03886,-202.60288 778.90625,-203.96875 C 782.7737,-205.33461 784.18941,-205.79583 784.875,-206.1875 C 785.57609,-206.58802 786.57581,-207.12048 787.1875,-207.78125 C 789.1583,-207.83591 791.00435,-208.16588 792.46875,-208.65625 C 795.47023,-209.66133 797.3949,-210.27796 799.3125,-210.90625 C 800.8511,-211.41035 801.48652,-211.95302 802.21875,-212.34375 C 802.44891,-212.47806 802.69449,-212.59748 802.96875,-212.6875 C 804.06698,-213.04798 805.1502,-212.76887 809.0625,-214 C 812.97483,-215.23113 814.42855,-215.67295 815.125,-216.03125 C 815.81888,-216.38822 816.75515,-216.82386 817.375,-217.4375 C 819.24021,-217.46016 821.01081,-217.70433 822.40625,-218.125 C 825.43668,-219.03854 827.39863,-219.5551 829.34375,-220.09375 C 831.28886,-220.63239 831.76993,-221.35827 832.84375,-221.65625 C 833.95776,-221.9654 835.06369,-221.64886 839.03125,-222.6875 C 842.99886,-223.72613 844.44883,-224.12023 845.15625,-224.4375 C 845.89112,-224.76709 846.97008,-225.19122 847.59375,-225.8125 C 849.59149,-225.6965 851.45118,-225.83259 852.9375,-226.1875 C 856.01561,-226.9225 858.02094,-227.28844 860,-227.6875 C 861.58792,-228.00768 862.24429,-228.47805 863,-228.78125 C 863.23757,-228.88805 863.46695,-228.97401 863.75,-229.03125 C 864.88347,-229.26044 866.05448,-228.82232 870.09375,-229.53125 C 874.13308,-230.24018 875.594,-230.45834 876.3125,-230.71875 C 877.02836,-230.97819 878.01678,-231.28599 878.65625,-231.8125 C 880.58052,-231.57301 882.40413,-231.58797 883.84375,-231.8125 C 886.97008,-232.30012 888.9983,-232.51317 891,-232.78125 C 893.00171,-233.04932 893.48869,-233.72639 894.59375,-233.875 C 895.74014,-234.02918 896.86967,-233.57343 900.9375,-234.09375 C 905.00534,-234.61407 906.49763,-234.78948 907.21875,-235.03125 C 907.95585,-235.27839 909.01684,-235.61748 909.65625,-236.15625 C 911.70632,-235.82072 913.63003,-235.75829 915.15625,-235.9375 C 918.29856,-236.30646 920.33619,-236.49686 922.34375,-236.71875 C 923.95451,-236.89677 924.60842,-237.32695 925.375,-237.5625 C 925.61594,-237.64802 925.86912,-237.7181 926.15625,-237.75 C 927.30603,-237.87772 928.45754,-237.40335 932.53125,-237.875 C 936.60499,-238.34665 938.09034,-238.4856 938.8125,-238.71875 C 939.53196,-238.95102 940.51274,-239.19221 941.15625,-239.6875 C 943.09262,-239.35404 944.92631,-239.28326 946.375,-239.4375 C 949.52102,-239.77245 951.55256,-239.95609 953.5625,-240.15625 C 955.57246,-240.35639 956.04664,-240.98264 957.15625,-241.09375 C 958.30739,-241.20903 959.45268,-240.72869 963.53125,-241.15625 C 967.60986,-241.58381 969.12011,-241.71834 969.84375,-241.9375 C 970.5829,-242.16136 971.63947,-242.45075 972.28125,-242.96875 C 974.33835,-242.57008 976.28312,-242.47535 977.8125,-242.625 C 980.96123,-242.9331 982.98834,-243.09825 985,-243.28125 C 986.61407,-243.42807 987.2631,-243.8418 988.03125,-244.0625 C 988.27267,-244.14336 988.52478,-244.19241 988.8125,-244.21875 C 989.96461,-244.3242 991.10546,-243.826 995.1875,-244.21875 C 999.26958,-244.6115 1000.7764,-244.74959 1001.5,-244.96875 C 1002.2209,-245.18708 1003.1997,-245.41645 1003.8438,-245.90625 C 1005.7818,-245.55626 1007.6126,-245.45187 1009.0625,-245.59375 C 1012.2112,-245.90185 1014.2383,-246.067 1016.25,-246.25 C 1018.2616,-246.43299 1018.7642,-247.08802 1019.875,-247.1875 C 1021.0273,-247.29073 1022.1672,-246.80267 1026.25,-247.1875 C 1030.3329,-247.57232 1031.8387,-247.6885 1032.5625,-247.90625 C 1033.3018,-248.12868 1034.3581,-248.42074 1035,-248.9375 C 1037.0574,-248.53573 1039.0029,-248.43417 1040.5313,-248.59375 C 1043.6779,-248.92227 1045.7084,-249.11645 1047.7188,-249.3125 C 1049.3318,-249.46979 1049.9844,-249.94398 1050.75,-250.1875 C 1050.9907,-250.27554 1051.2132,-250.30887 1051.5,-250.34375 C 1052.6483,-250.48345 1053.8167,-250.00384 1057.875,-250.59375 C 1061.9333,-251.18367 1063.4368,-251.37089 1064.1563,-251.625 C 1064.873,-251.87816 1065.8308,-252.18307 1066.4688,-252.71875 C 1068.3885,-252.50681 1070.1887,-252.56734 1071.625,-252.8125 C 1074.7441,-253.3449 1076.7366,-253.74111 1078.7188,-254.125 C 1080.7009,-254.50887 1081.1931,-255.16465 1082.2813,-255.40625 C 1083.4101,-255.65691 1084.5516,-255.28996 1088.5313,-256.28125 C 1092.5109,-257.27253 1093.9609,-257.70055 1094.6563,-258.0625 C 1095.3786,-258.43851 1096.4182,-258.93308 1097.0313,-259.59375 C 1098.9943,-259.6058 1100.825,-259.8848 1102.25,-260.4375 C 1105.2012,-261.58211 1107.1232,-262.30692 1108.9375,-263.1875 C 1110.3932,-263.89403 1111.2723,-264.87391 1111.4844,-265.17188 C 1111.6966,-265.46984 1111.5962,-265.91718 1111.6223,-265.93863 C 1111.6652,-265.97387 1111.9416,-266.0236 1112.1013,-266.36707 C 1112.9602,-268.21415 1114.4223,-272.01166 1114.5365,-272.69652 C 1114.6502,-273.37868 1114.7003,-274.04426 1114.751,-274.44149 C 1114.7804,-274.67101 1114.6043,-275.30693 1114.6264,-275.36553 C 1114.6573,-275.44759 1114.9309,-275.63081 1114.9863,-275.88024 C 1115.2526,-277.07857 1115.0752,-278.07153 1114.8612,-279.48917 C 1114.6472,-280.90681 1113.8775,-284.11131 1113.2243,-284.96543 C 1112.5654,-285.82715 1112.0014,-285.9766 1111.4764,-285.96609 C 1111.2678,-285.69633 1111.6132,-285.703 1111.639,-285.65348 C 1112.3196,-285.60269 1112.573,-285.28484 1113.0582,-284.75686 C 1113.5434,-284.22888 1114.501,-280.8173 1114.6376,-279.36691 C 1114.7742,-277.91652 1114.8276,-276.50671 1114.5496,-275.89827 C 1114.2715,-275.28982 1113.6054,-275.46963 1113.313,-275.40375 C 1113.844,-275.21786 1114.2038,-275.19053 1114.2654,-274.34607 C 1114.3247,-273.53269 1114.1322,-272.70638 1113.7456,-271.54045 C 1113.3544,-270.36044 1111.9004,-267.19047 1111.4599,-266.94168 C 1111.0076,-266.68617 1110.5075,-266.75969 1110.1719,-266.89063 z" | ||
2421 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6997);enable-background:new" | ||
2422 | sodipodi:nodetypes="cssscscsscsssccscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssccscsscscssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsszsszssszzcczzzczzzc" /> | ||
2423 | <path | ||
2424 | id="path8103" | ||
2425 | d="M 988.75,-263.84375 C 990.66161,-263.20935 993.30027,-262.08534 994.875,-261.03125 C 996.44977,-259.97716 997.7711,-259.54873 1000.4063,-257.65625 C 1003.0145,-255.78311 1005.4332,-254.64103 1007.7188,-253.59375 C 1010.1881,-252.46228 1013.4709,-251.43901 1017.25,-249.65625 C 1016.0428,-250.91465 1010.111,-253.0207 1008.2188,-253.84375 C 1006.3266,-254.66679 1004.0908,-255.77424 1001.2813,-257.625 C 998.47169,-259.47575 997.65906,-260.10654 995.28125,-261.34375 C 992.90343,-262.58094 991.20137,-263.29295 988.75,-263.84375 z" | ||
2426 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6953);enable-background:new" /> | ||
2427 | <path | ||
2428 | id="path8105" | ||
2429 | d="M 957.5,-260.78125 C 959.41,-260.16315 962.08288,-259.07191 963.65625,-258.03125 C 965.22964,-256.99059 966.55233,-256.54873 969.1875,-254.65625 C 971.79573,-252.7831 974.21442,-251.64104 976.5,-250.59375 C 978.96931,-249.46228 982.25213,-248.439 986.03125,-246.65625 C 984.82397,-247.91465 978.82971,-250.05195 976.9375,-250.875 C 975.04533,-251.69804 972.84084,-252.8055 970.03125,-254.65625 C 967.22167,-256.507 966.4383,-257.09557 964.0625,-258.3125 C 961.68672,-259.52941 959.94929,-260.25135 957.5,-260.78125 z" | ||
2430 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6993);enable-background:new" /> | ||
2431 | <path | ||
2432 | id="path8107" | ||
2433 | d="M 926.09375,-257.375 C 928.00147,-256.77755 930.64723,-255.71116 932.21875,-254.6875 C 933.79025,-253.66385 935.08897,-253.24779 937.71875,-251.40625 C 940.32166,-249.58352 942.74762,-248.43405 945.03125,-247.40625 C 947.49845,-246.29584 950.7866,-245.31302 954.5625,-243.5625 C 953.35627,-244.8106 947.3906,-246.88059 945.5,-247.6875 C 943.60942,-248.4944 941.39758,-249.57854 938.59375,-251.375 C 935.7899,-253.17144 934.96671,-253.77751 932.59375,-254.96875 C 930.22078,-256.15999 928.54013,-256.87158 926.09375,-257.375 z" | ||
2434 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6989);enable-background:new" /> | ||
2435 | <path | ||
2436 | id="path8109" | ||
2437 | d="M 894.90625,-253.5625 C 896.80838,-253.00895 899.49326,-251.97363 901.0625,-250.96875 C 902.63173,-249.96388 903.93651,-249.56011 906.5625,-247.75 C 909.16162,-245.95836 911.56284,-244.87811 913.84375,-243.875 C 916.30803,-242.79126 919.60359,-241.83471 923.375,-240.125 C 922.1702,-241.36007 916.20084,-243.36978 914.3125,-244.15625 C 912.42418,-244.94272 910.2373,-245.98705 907.4375,-247.75 C 904.63773,-249.51294 903.83831,-250.11836 901.46875,-251.28125 C 899.09918,-252.44413 897.3455,-253.11537 894.90625,-253.5625 z" | ||
2438 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6985);enable-background:new" /> | ||
2439 | <path | ||
2440 | id="path8111" | ||
2441 | d="M 863.71875,-248.65625 C 865.59937,-248.22716 868.22302,-247.27587 869.78125,-246.34375 C 871.33948,-245.41164 872.63358,-245.08599 875.25,-243.34375 C 877.83971,-241.61931 880.23067,-240.63573 882.5,-239.71875 C 884.95176,-238.72806 888.23959,-237.84168 892,-236.21875 C 890.79869,-237.42609 884.84751,-239.28484 882.96875,-240 C 881.09,-240.71517 878.88335,-241.68442 876.09375,-243.375 C 873.30412,-245.06557 872.50914,-245.60322 870.15625,-246.65625 C 867.80333,-247.70926 866.13041,-248.36873 863.71875,-248.65625 z" | ||
2442 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6965);enable-background:new" /> | ||
2443 | <path | ||
2444 | id="path8113" | ||
2445 | d="M 833.15625,-241.375 C 835.00461,-241.07856 837.6257,-240.39868 839.15625,-239.59375 C 840.68683,-238.78882 841.96999,-238.53802 844.53125,-237.0625 C 847.06629,-235.60204 849.42193,-234.73741 851.65625,-234 C 854.07024,-233.20332 857.31336,-232.53311 861.03125,-231.15625 C 859.84354,-232.28498 853.94353,-233.746 852.09375,-234.3125 C 850.24398,-234.879 848.09033,-235.68642 845.34375,-237.15625 C 842.59718,-238.62608 841.84239,-239.07653 839.53125,-239.9375 C 837.2201,-240.79845 835.52654,-241.25759 833.15625,-241.375 z" | ||
2446 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6981);enable-background:new" /> | ||
2447 | <path | ||
2448 | id="path8115" | ||
2449 | d="M 802.90625,-232.3125 C 804.72845,-232.10123 807.27201,-231.51193 808.78125,-230.78125 C 810.2905,-230.05059 811.53693,-229.85127 814.0625,-228.5 C 816.56226,-227.16254 818.89404,-226.45157 821.09375,-225.84375 C 823.47028,-225.18708 826.65839,-224.77087 830.3125,-223.65625 C 829.14515,-224.70121 823.38362,-225.75954 821.5625,-226.21875 C 819.74139,-226.67796 817.61025,-227.34571 814.90625,-228.65625 C 812.20222,-229.96677 811.43519,-230.37615 809.15625,-231.125 C 806.8773,-231.87383 805.243,-232.30431 802.90625,-232.3125 z" | ||
2450 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6977);enable-background:new" /> | ||
2451 | <path | ||
2452 | id="path8117" | ||
2453 | d="M 773.1875,-222.1875 C 774.99859,-222.0088 777.50809,-221.52244 779,-220.84375 C 780.49194,-220.16506 781.7534,-220.04553 784.25,-218.78125 C 786.72107,-217.52987 789.04005,-216.88511 791.21875,-216.34375 C 793.57262,-215.75887 796.71009,-215.44623 800.3125,-214.5 C 799.16166,-215.49116 793.45999,-216.2833 791.65625,-216.6875 C 789.85253,-217.0917 787.74072,-217.70866 785.0625,-218.9375 C 782.38432,-220.16634 781.65905,-220.54839 779.40625,-221.21875 C 777.15346,-221.88909 775.50998,-222.22107 773.1875,-222.1875 z" | ||
2454 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6973);enable-background:new" /> | ||
2455 | <path | ||
2456 | id="path8119" | ||
2457 | d="M 743.5625,-211.1875 C 745.35531,-211.05839 747.83563,-210.63785 749.3125,-210 C 750.7894,-209.36215 752.0286,-209.25844 754.5,-208.0625 C 756.94618,-206.87878 759.22054,-206.31584 761.375,-205.84375 C 763.70267,-205.33372 766.7946,-205.16311 770.375,-204.28125 C 769.23121,-205.25185 763.62741,-205.8719 761.84375,-206.21875 C 760.06008,-206.56559 757.9609,-207.10631 755.3125,-208.25 C 752.66409,-209.39368 751.91755,-209.76631 749.6875,-210.375 C 747.45742,-210.98368 745.86156,-211.28466 743.5625,-211.1875 z" | ||
2458 | style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter6969);enable-background:new" /> | ||
2459 | <g | ||
2460 | id="g8121" | ||
2461 | style="fill:#ffffff;fill-opacity:1;filter:url(#filter7345)"> | ||
2462 | <path | ||
2463 | sodipodi:nodetypes="czzzczzc" | ||
2464 | id="path8123" | ||
2465 | d="M 744.9375,-212.11731 C 744.9375,-212.11731 752.15979,-215.34049 754,-215.61731 C 755.84021,-215.89413 757.35225,-215.62054 760,-215.05481 C 762.64775,-214.48908 768.7357,-212.83963 771.1875,-211.67981 C 773.6393,-210.51999 776.5,-208.11731 776.5,-208.11731 C 776.5,-208.11731 769.35356,-210.8975 766.3125,-211.67981 C 763.27144,-212.46212 758.66789,-213.76355 755.9375,-213.99231 C 753.20711,-214.22107 744.9375,-212.11731 744.9375,-212.11731 z" | ||
2466 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | ||
2467 | <path | ||
2468 | sodipodi:nodetypes="czzzczzc" | ||
2469 | id="path8125" | ||
2470 | d="M 735.46875,-206.95416 C 735.46875,-206.95416 739.12854,-209.17734 740.96875,-209.45416 C 742.80896,-209.73098 744.6335,-209.20739 747.28125,-208.64166 C 749.929,-208.07593 756.01695,-206.42648 758.46875,-205.26666 C 760.92055,-204.10684 765.03125,-203.14166 765.03125,-203.14166 C 765.03125,-203.14166 756.63481,-204.48435 753.59375,-205.26666 C 750.55269,-206.04897 745.63664,-207.6004 742.90625,-207.82916 C 740.17586,-208.05792 735.46875,-206.95416 735.46875,-206.95416 z" | ||
2471 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2472 | <path | ||
2473 | sodipodi:nodetypes="czzzczzc" | ||
2474 | id="path8127" | ||
2475 | d="M 759.85042,-217.61116 C 759.85042,-217.61116 768.39412,-220.90973 770.2482,-221.06902 C 772.10229,-221.22832 773.88986,-220.58982 776.4963,-219.85694 C 779.10274,-219.12406 785.07354,-217.091 787.44666,-215.77769 C 789.81978,-214.46438 793.86083,-213.23987 793.86083,-213.23987 C 793.86083,-213.23987 785.5667,-215.11352 782.58152,-216.08754 C 779.59633,-217.06156 774.78883,-218.92232 772.0785,-219.32416 C 769.36817,-219.726 759.85042,-217.61116 759.85042,-217.61116 z" | ||
2476 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2477 | <path | ||
2478 | sodipodi:nodetypes="czzzczzc" | ||
2479 | id="path8129" | ||
2480 | d="M 775.19813,-223.2266 C 775.19813,-223.2266 782.96946,-226.00904 784.82644,-226.13009 C 786.68341,-226.25113 788.45744,-225.57592 791.04822,-224.78947 C 793.63899,-224.00302 799.56662,-221.8473 801.91216,-220.48535 C 804.25771,-219.1234 808.27265,-217.81585 808.27265,-217.81585 C 808.27265,-217.81585 800.01892,-219.86008 797.05444,-220.89543 C 794.08997,-221.93078 789.32185,-223.89024 786.62038,-224.34786 C 783.91891,-224.80549 775.19813,-223.2266 775.19813,-223.2266 z" | ||
2481 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2482 | <path | ||
2483 | inkscape:transform-center-y="-4.3190906" | ||
2484 | inkscape:transform-center-x="13.852145" | ||
2485 | sodipodi:nodetypes="czzzczzc" | ||
2486 | id="path8131" | ||
2487 | d="M 789.64298,-227.95417 C 789.64298,-227.95417 798.32554,-231.47448 800.18452,-231.55952 C 802.04349,-231.64455 803.8041,-230.9351 806.37915,-230.09859 C 808.9542,-229.2621 814.83894,-226.99193 817.15766,-225.58479 C 819.47638,-224.17764 823.46523,-222.79255 823.46523,-222.79255 C 823.46523,-222.79255 815.25266,-224.99632 812.3088,-226.08891 C 809.36494,-227.1815 804.63568,-229.23299 801.94358,-229.74288 C 799.25149,-230.25276 789.64298,-227.95417 789.64298,-227.95417 z" | ||
2488 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2489 | <path | ||
2490 | inkscape:transform-center-y="-4.3190906" | ||
2491 | inkscape:transform-center-x="13.852145" | ||
2492 | sodipodi:nodetypes="czzzczzc" | ||
2493 | id="path8133" | ||
2494 | d="M 804.49513,-233.32948 C 804.49513,-233.32948 812.30269,-235.91229 814.16167,-235.99733 C 816.02064,-236.08236 817.78125,-235.37291 820.3563,-234.5364 C 822.93135,-233.69991 828.81609,-231.42974 831.13481,-230.0226 C 833.45353,-228.61545 837.44238,-227.23036 837.44238,-227.23036 C 837.44238,-227.23036 829.22981,-229.43413 826.28595,-230.52672 C 823.34209,-231.61931 818.61283,-233.6708 815.92073,-234.18069 C 813.22864,-234.69057 804.49513,-233.32948 804.49513,-233.32948 z" | ||
2495 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2496 | <path | ||
2497 | inkscape:transform-center-y="-4.3190906" | ||
2498 | inkscape:transform-center-x="13.852145" | ||
2499 | sodipodi:nodetypes="czzzczzc" | ||
2500 | id="path8135" | ||
2501 | d="M 819.55763,-237.57948 C 819.55763,-237.57948 828.11519,-240.16229 829.97417,-240.24733 C 831.83314,-240.33236 833.59375,-239.62291 836.1688,-238.7864 C 838.74385,-237.94991 844.62859,-235.67974 846.94731,-234.2726 C 849.26603,-232.86545 853.25488,-231.48036 853.25488,-231.48036 C 853.25488,-231.48036 845.04231,-233.68413 842.09845,-234.77672 C 839.15459,-235.86931 834.42533,-237.9208 831.73323,-238.43069 C 829.04114,-238.94057 819.55763,-237.57948 819.55763,-237.57948 z" | ||
2502 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2503 | <path | ||
2504 | inkscape:transform-center-y="-4.9269042" | ||
2505 | inkscape:transform-center-x="13.64141" | ||
2506 | sodipodi:nodetypes="czzzczzc" | ||
2507 | id="path8137" | ||
2508 | d="M 836.23395,-242.60125 C 836.23395,-242.60125 843.20097,-244.58848 845.06179,-244.56882 C 846.9226,-244.54915 848.64052,-243.7418 851.16444,-242.76177 C 853.68837,-241.78177 859.4361,-239.18419 861.672,-237.64886 C 863.9079,-236.11351 867.81253,-234.50625 867.81253,-234.50625 C 867.81253,-234.50625 859.73692,-237.16847 856.85917,-238.42491 C 853.98143,-239.68136 849.37505,-241.99561 846.71589,-242.65612 C 844.05674,-243.31661 836.23395,-242.60125 836.23395,-242.60125 z" | ||
2509 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2510 | <path | ||
2511 | inkscape:transform-center-y="-5.1542119" | ||
2512 | inkscape:transform-center-x="13.55068" | ||
2513 | sodipodi:nodetypes="czzzczzc" | ||
2514 | id="path8139" | ||
2515 | d="M 850.73028,-246.00461 C 850.73028,-246.00461 858.41812,-248.03229 860.2781,-247.97315 C 862.13807,-247.914 863.83848,-247.07036 866.34103,-246.03699 C 868.84358,-245.00365 874.5349,-242.28467 876.73771,-240.70224 C 878.94053,-239.11979 882.81016,-237.43004 882.81016,-237.43004 C 882.81016,-237.43004 874.79287,-240.26302 871.94244,-241.58026 C 869.09201,-242.89749 864.53578,-245.30898 861.89124,-246.02576 C 859.2467,-246.74254 850.73028,-246.00461 850.73028,-246.00461 z" | ||
2516 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2517 | <path | ||
2518 | inkscape:transform-center-y="-5.4740887" | ||
2519 | inkscape:transform-center-x="13.41151" | ||
2520 | sodipodi:nodetypes="czzzczzc" | ||
2521 | id="path8141" | ||
2522 | d="M 864.82496,-249.21081 C 864.82496,-249.21081 872.99448,-251.17987 874.85184,-251.06477 C 876.70919,-250.94965 878.38342,-250.05521 880.85374,-248.94698 C 883.32405,-247.83877 888.93094,-244.94971 891.08512,-243.30167 C 893.2393,-241.65363 897.05632,-239.84815 897.05632,-239.84815 C 897.05632,-239.84815 889.12793,-242.92121 886.31845,-244.32365 C 883.50896,-245.72609 879.02739,-248.27364 876.40562,-249.06971 C 873.78386,-249.86577 864.82496,-249.21081 864.82496,-249.21081 z" | ||
2523 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2524 | <path | ||
2525 | inkscape:transform-center-y="-5.79376" | ||
2526 | inkscape:transform-center-x="13.258805" | ||
2527 | sodipodi:nodetypes="czzzczzc" | ||
2528 | id="path8143" | ||
2529 | d="M 881.38485,-251.60282 C 881.38485,-251.60282 889.47021,-253.51091 891.32322,-253.33946 C 893.17622,-253.16799 894.82252,-252.22313 897.25804,-251.04038 C 899.69357,-249.85767 905.21013,-246.79968 907.31327,-245.08699 C 909.41641,-243.37429 913.17684,-241.45373 913.17684,-241.45373 C 913.17684,-241.45373 905.34544,-244.76613 902.57984,-246.25323 C 899.81423,-247.74035 895.41209,-250.42282 892.8157,-251.29814 C 890.21933,-252.17345 881.38485,-251.60282 881.38485,-251.60282 z" | ||
2530 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2531 | <path | ||
2532 | inkscape:transform-center-y="-5.7433893" | ||
2533 | inkscape:transform-center-x="13.28378" | ||
2534 | sodipodi:nodetypes="czzzczzc" | ||
2535 | id="path8145" | ||
2536 | d="M 896.58415,-254.34724 C 896.58415,-254.34724 904.22581,-255.77494 906.07962,-255.61239 C 907.93342,-255.44983 909.58424,-254.51289 912.02541,-253.34186 C 914.46659,-252.17086 919.99779,-249.1394 922.10913,-247.43684 C 924.22047,-245.73426 927.99009,-243.83179 927.99009,-243.83179 C 927.99009,-243.83179 920.14286,-247.10653 917.37014,-248.58034 C 914.59743,-250.05414 910.18245,-252.71543 907.58189,-253.57827 C 904.98134,-254.44109 896.58415,-254.34724 896.58415,-254.34724 z" | ||
2537 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2538 | <path | ||
2539 | inkscape:transform-center-y="-5.7433893" | ||
2540 | inkscape:transform-center-x="13.28378" | ||
2541 | sodipodi:nodetypes="czzzczzc" | ||
2542 | id="path8147" | ||
2543 | d="M 911.45328,-255.98544 C 911.45328,-255.98544 920.09494,-257.53814 921.94875,-257.37559 C 923.80255,-257.21303 925.45337,-256.27609 927.89454,-255.10506 C 930.33572,-253.93406 935.86692,-250.9026 937.97826,-249.20004 C 940.0896,-247.49746 943.85922,-245.59499 943.85922,-245.59499 C 943.85922,-245.59499 936.01199,-248.86973 933.23927,-250.34354 C 930.46656,-251.81734 926.05158,-254.47863 923.45102,-255.34147 C 920.85047,-256.20429 911.45328,-255.98544 911.45328,-255.98544 z" | ||
2544 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2545 | <path | ||
2546 | inkscape:transform-center-y="-5.7433893" | ||
2547 | inkscape:transform-center-x="13.28378" | ||
2548 | sodipodi:nodetypes="czzzczzc" | ||
2549 | id="path8149" | ||
2550 | d="M 927.70328,-258.29794 C 927.70328,-258.29794 935.34494,-259.16314 937.19875,-259.00059 C 939.05255,-258.83803 940.70337,-257.90109 943.14454,-256.73006 C 945.58572,-255.55906 951.11692,-252.5276 953.22826,-250.82504 C 955.3396,-249.12246 959.10922,-247.21999 959.10922,-247.21999 C 959.10922,-247.21999 951.26199,-250.49473 948.48927,-251.96854 C 945.71656,-253.44234 941.30158,-256.10363 938.70102,-256.96647 C 936.10047,-257.82929 927.70328,-258.29794 927.70328,-258.29794 z" | ||
2551 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2552 | <path | ||
2553 | inkscape:transform-center-y="-5.7433893" | ||
2554 | inkscape:transform-center-x="13.28378" | ||
2555 | sodipodi:nodetypes="czzzczzc" | ||
2556 | id="path8151" | ||
2557 | d="M 942.82828,-259.48544 C 942.82828,-259.48544 951.40744,-260.97564 953.26125,-260.81309 C 955.11505,-260.65053 956.76587,-259.71359 959.20704,-258.54256 C 961.64822,-257.37156 967.17942,-254.3401 969.29076,-252.63754 C 971.4021,-250.93496 975.17172,-249.03249 975.17172,-249.03249 C 975.17172,-249.03249 967.32449,-252.30723 964.55177,-253.78104 C 961.77906,-255.25484 957.36408,-257.91613 954.76352,-258.77897 C 952.16297,-259.64179 942.82828,-259.48544 942.82828,-259.48544 z" | ||
2558 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2559 | <path | ||
2560 | inkscape:transform-center-y="-5.7433893" | ||
2561 | inkscape:transform-center-x="13.28378" | ||
2562 | sodipodi:nodetypes="czzzczzc" | ||
2563 | id="path8153" | ||
2564 | d="M 959.07828,-261.54794 C 959.07828,-261.54794 966.90744,-262.35064 968.76125,-262.18809 C 970.61505,-262.02553 972.26587,-261.08859 974.70704,-259.91756 C 977.14822,-258.74656 982.67942,-255.7151 984.79076,-254.01254 C 986.9021,-252.30996 990.67172,-250.40749 990.67172,-250.40749 C 990.67172,-250.40749 982.82449,-253.68223 980.05177,-255.15604 C 977.27906,-256.62984 972.86408,-259.29113 970.26352,-260.15397 C 967.66297,-261.01679 959.07828,-261.54794 959.07828,-261.54794 z" | ||
2565 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2566 | <path | ||
2567 | inkscape:transform-center-y="-5.7433893" | ||
2568 | inkscape:transform-center-x="13.28378" | ||
2569 | sodipodi:nodetypes="czzzczzc" | ||
2570 | id="path8155" | ||
2571 | d="M 974.45328,-262.79794 C 974.45328,-262.79794 982.84494,-263.97564 984.69875,-263.81309 C 986.55255,-263.65053 988.20337,-262.71359 990.64454,-261.54256 C 993.08572,-260.37156 998.61692,-257.3401 1000.7283,-255.63754 C 1002.8396,-253.93496 1006.6092,-252.03249 1006.6092,-252.03249 C 1006.6092,-252.03249 998.76199,-255.30723 995.98927,-256.78104 C 993.21656,-258.25484 988.80158,-260.91613 986.20102,-261.77897 C 983.60047,-262.64179 974.45328,-262.79794 974.45328,-262.79794 z" | ||
2572 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2573 | <path | ||
2574 | inkscape:transform-center-y="-5.7433893" | ||
2575 | inkscape:transform-center-x="13.28378" | ||
2576 | sodipodi:nodetypes="czzzczzc" | ||
2577 | id="path8157" | ||
2578 | d="M 990.64078,-264.86044 C 990.64078,-264.86044 997.53244,-265.85064 999.38625,-265.68809 C 1001.2401,-265.52553 1002.8909,-264.58859 1005.332,-263.41756 C 1007.7732,-262.24656 1013.3044,-259.2151 1015.4158,-257.51254 C 1017.5271,-255.80996 1021.2967,-253.90749 1021.2967,-253.90749 C 1021.2967,-253.90749 1013.4495,-257.18223 1010.6768,-258.65604 C 1007.9041,-260.12984 1003.4891,-262.79113 1000.8885,-263.65397 C 998.28797,-264.51679 990.64078,-264.86044 990.64078,-264.86044 z" | ||
2579 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2580 | <path | ||
2581 | inkscape:transform-center-y="-5.7433893" | ||
2582 | inkscape:transform-center-x="13.28378" | ||
2583 | sodipodi:nodetypes="czzzczzc" | ||
2584 | id="path8159" | ||
2585 | d="M 1007.7658,-265.79794 C 1007.7658,-265.79794 1014.5949,-266.97564 1016.4488,-266.81309 C 1018.3026,-266.65053 1019.9534,-265.71359 1022.3945,-264.54256 C 1024.8357,-263.37156 1030.3669,-260.3401 1032.4783,-258.63754 C 1034.5896,-256.93496 1038.3592,-255.03249 1038.3592,-255.03249 C 1038.3592,-255.03249 1030.512,-258.30723 1027.7393,-259.78104 C 1024.9666,-261.25484 1020.5516,-263.91613 1017.951,-264.77897 C 1015.3505,-265.64179 1007.7658,-265.79794 1007.7658,-265.79794 z" | ||
2586 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2587 | <path | ||
2588 | inkscape:transform-center-y="-5.7433893" | ||
2589 | inkscape:transform-center-x="13.28378" | ||
2590 | sodipodi:nodetypes="czzzczzc" | ||
2591 | id="path8161" | ||
2592 | d="M 1023.8908,-267.79794 C 1023.8908,-267.79794 1029.9699,-268.22564 1031.8238,-268.06309 C 1033.6776,-267.90053 1035.3284,-266.96359 1037.7695,-265.79256 C 1040.2107,-264.62156 1045.7419,-261.5901 1047.8533,-259.88754 C 1049.9646,-258.18496 1053.7342,-256.28249 1053.7342,-256.28249 C 1053.7342,-256.28249 1045.887,-259.55723 1043.1143,-261.03104 C 1040.3416,-262.50484 1035.9266,-265.16613 1033.326,-266.02897 C 1030.7255,-266.89179 1023.8908,-267.79794 1023.8908,-267.79794 z" | ||
2593 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2594 | <path | ||
2595 | inkscape:transform-center-y="-5.7433893" | ||
2596 | inkscape:transform-center-x="13.28378" | ||
2597 | sodipodi:nodetypes="czzzczzc" | ||
2598 | id="path8163" | ||
2599 | d="M 1039.7033,-269.17294 C 1039.7033,-269.17294 1046.1574,-269.85064 1048.0113,-269.68809 C 1049.8651,-269.52553 1051.5159,-268.58859 1053.957,-267.41756 C 1056.3982,-266.24656 1061.9294,-263.2151 1064.0408,-261.51254 C 1066.1521,-259.80996 1069.9217,-257.90749 1069.9217,-257.90749 C 1069.9217,-257.90749 1062.0745,-261.18223 1059.3018,-262.65604 C 1056.5291,-264.12984 1052.1141,-266.79113 1049.5135,-267.65397 C 1046.913,-268.51679 1039.7033,-269.17294 1039.7033,-269.17294 z" | ||
2600 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2601 | <path | ||
2602 | inkscape:transform-center-y="-5.1360724" | ||
2603 | inkscape:transform-center-x="13.55813" | ||
2604 | sodipodi:nodetypes="czzzczzc" | ||
2605 | id="path8165" | ||
2606 | d="M 1055.2718,-271.03319 C 1055.2718,-271.03319 1060.7694,-271.94264 1062.6296,-271.88667 C 1064.4897,-271.83067 1066.1915,-270.98993 1068.6957,-269.96081 C 1071.2001,-268.93171 1076.896,-266.22241 1079.1015,-264.64372 C 1081.307,-263.06501 1085.1795,-261.38182 1085.1795,-261.38182 C 1085.1795,-261.38182 1077.1575,-264.20121 1074.3047,-265.5136 C 1071.4521,-266.82598 1066.8918,-269.22973 1064.246,-269.94203 C 1061.6003,-270.65431 1055.2718,-271.03319 1055.2718,-271.03319 z" | ||
2607 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2608 | <path | ||
2609 | inkscape:transform-center-y="-4.6370147" | ||
2610 | inkscape:transform-center-x="13.74758" | ||
2611 | sodipodi:nodetypes="czzzczzc" | ||
2612 | id="path8167" | ||
2613 | d="M 1072.7007,-273.48537 C 1072.7007,-273.48537 1077.2479,-274.64118 1079.1087,-274.67158 C 1080.9694,-274.70196 1082.7083,-273.94109 1085.2576,-273.02927 C 1087.807,-272.1175 1093.6225,-269.67541 1095.899,-268.20077 C 1098.1753,-266.72609 1102.1217,-265.22441 1102.1217,-265.22441 C 1102.1217,-265.22441 1093.9775,-267.66852 1091.067,-268.84713 C 1088.1565,-270.02573 1083.4896,-272.21528 1080.8136,-272.80404 C 1078.1377,-273.39279 1072.7007,-273.48537 1072.7007,-273.48537 z" | ||
2614 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2615 | <path | ||
2616 | inkscape:transform-center-y="-4.4842392" | ||
2617 | inkscape:transform-center-x="13.79933" | ||
2618 | sodipodi:nodetypes="czzzczzc" | ||
2619 | id="path8169" | ||
2620 | d="M 1087.1585,-276.5244 C 1087.1585,-276.5244 1093.1185,-278.29795 1094.9787,-278.35464 C 1096.8387,-278.41131 1098.5883,-277.67509 1101.1502,-276.79939 C 1103.7122,-275.92373 1103.6728,-275.94226 1106.4837,-275.30924 C 1109.2806,-274.67938 1113.5604,-273.79611 1113.5604,-273.79611 C 1113.5604,-273.79611 1109.9449,-273.81239 1106.7681,-274.26225 C 1103.6526,-274.70344 1099.3938,-275.9605 1096.7097,-276.51138 C 1094.0258,-277.06226 1087.1585,-276.5244 1087.1585,-276.5244 z" | ||
2621 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" /> | ||
2622 | <path | ||
2623 | sodipodi:nodetypes="czczc" | ||
2624 | id="path8171" | ||
2625 | d="M 1099.25,-279.92981 C 1099.4112,-279.66119 1110.4581,-284.53027 1111.4375,-284.61731 C 1112.4169,-284.70435 1113.4375,-281.49231 1113.4375,-281.49231 C 1113.4375,-281.49231 1112.6624,-282.99665 1110.5625,-282.55481 C 1108.4626,-282.11297 1099.2616,-279.8834 1099.25,-279.92981 z" | ||
2626 | style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | ||
2627 | </g> | ||
2628 | <path | ||
2629 | id="path8173" | ||
2630 | d="M 1107.4532,-284.0938 C 1107.0345,-283.88097 1107.2976,-283.99991 1106.806,-283.78799 C 1106.3199,-283.57845 1105.0826,-283.2136 1102.7264,-282.32904 C 1099.3953,-281.07847 1096.8962,-280.1756 1095.7005,-279.26294 C 1094.1644,-279.24168 1091.98,-279.02963 1090.0442,-278.54419 C 1087.0627,-277.79653 1085.189,-277.37018 1083.2942,-276.95044 C 1081.3994,-276.53072 1081.6187,-276.30825 1080.4192,-276.07544 C 1079.1226,-275.82378 1078.6978,-276.08443 1074.9817,-275.29419 C 1071.4918,-274.55205 1066.0869,-273.36312 1064.8255,-272.60669 C 1063.2416,-272.78748 1060.958,-272.92847 1058.9817,-272.63794 C 1055.9413,-272.19099 1054.0655,-271.96518 1052.138,-271.73169 C 1051.4826,-271.65232 1051.0969,-271.53091 1050.7942,-271.45044 C 1050.368,-271.31879 1050.1084,-271.19042 1049.4192,-271.10669 C 1048.1076,-270.94733 1047.657,-271.26352 1043.888,-270.82544 C 1040.3341,-270.41236 1034.8826,-269.55262 1033.638,-268.88794 C 1032.039,-269.18524 1029.7802,-269.42213 1027.7942,-269.23169 C 1024.7354,-268.93838 1022.8222,-268.7477 1020.888,-268.57544 C 1018.9537,-268.40318 1019.1993,-268.15307 1017.9817,-268.04419 C 1016.6655,-267.9265 1016.2219,-268.20782 1012.4505,-267.79419 C 1008.9086,-267.40575 1003.4426,-266.58492 1002.1692,-265.91919 C 1000.5703,-266.21389 998.28202,-266.4262 996.29419,-266.23169 C 993.23595,-265.93245 991.35306,-265.75145 989.41919,-265.57544 C 988.7617,-265.5156 988.37915,-265.39688 988.07544,-265.32544 C 987.64779,-265.20649 987.39193,-265.10737 986.70044,-265.04419 C 985.38448,-264.92394 984.94068,-265.23907 981.16919,-264.82544 C 977.61305,-264.43543 972.16365,-263.58628 970.91919,-262.91919 C 969.32056,-263.21338 967.05935,-263.44291 965.07544,-263.23169 C 962.01984,-262.90637 960.1014,-262.70545 958.16919,-262.51294 C 956.23698,-262.32044 956.47932,-262.07206 955.26294,-261.95044 C 953.94806,-261.81898 953.49996,-262.11498 949.73169,-261.66919 C 946.19282,-261.25054 940.75401,-260.37702 939.48169,-259.70044 C 937.88414,-259.98149 935.62173,-260.12087 933.63794,-259.88794 C 930.58596,-259.52958 928.69286,-259.32008 926.76294,-259.10669 C 926.10674,-259.03414 925.72228,-258.934 925.41919,-258.85669 C 924.99242,-258.72947 924.73428,-258.58949 924.04419,-258.51294 C 922.73086,-258.36726 922.27673,-258.68696 918.51294,-258.20044 C 914.96405,-257.74169 909.53431,-256.78142 908.29419,-256.07544 C 906.70114,-256.31968 904.46038,-256.45679 902.48169,-256.20044 C 899.4341,-255.80563 897.53098,-255.55199 895.60669,-255.29419 C 893.68241,-255.0364 893.88058,-254.80066 892.66919,-254.63794 C 891.35973,-254.46204 890.922,-254.74232 887.16919,-254.16919 C 883.6449,-253.63095 878.24604,-252.47002 876.98169,-251.73169 C 875.39419,-251.93523 873.13619,-251.98642 871.16919,-251.63794 C 868.14302,-251.10182 866.2703,-250.77625 864.35669,-250.45044 C 863.70608,-250.33967 863.34298,-250.1795 863.04419,-250.07544 C 862.62352,-249.91056 862.38074,-249.74414 861.70044,-249.60669 C 860.40579,-249.3451 859.97332,-249.61289 856.26294,-248.79419 C 852.76441,-248.02224 847.41699,-246.41126 846.20044,-245.57544 C 844.63766,-245.65289 842.44286,-245.49016 840.51294,-244.98169 C 837.5405,-244.19856 835.69533,-243.7496 833.82544,-243.23169 C 831.95556,-242.71379 832.15884,-242.46441 830.98169,-242.13794 C 829.70923,-241.78504 829.28466,-242.03085 825.63794,-240.95044 C 822.21324,-239.93581 816.9885,-238.01727 815.76294,-237.10669 C 814.22411,-237.09395 812.04311,-236.83447 810.13794,-236.23169 C 807.20688,-235.30435 805.38763,-234.77327 803.54419,-234.16919 C 802.91743,-233.96381 802.55246,-233.77661 802.26294,-233.63794 C 801.85531,-233.42433 801.6096,-233.22919 800.95044,-233.01294 C 799.69598,-232.6014 799.26433,-232.8239 795.66919,-231.57544 C 792.27934,-230.39827 787.07421,-228.36174 785.88794,-227.41919 C 784.36405,-227.35952 782.23789,-227.02432 780.35669,-226.35669 C 777.4593,-225.3284 775.65761,-224.68121 773.82544,-224.04419 C 771.99327,-223.40718 772.19759,-223.19565 771.04419,-222.79419 C 769.79741,-222.36023 769.38058,-222.59447 765.82544,-221.23169 C 762.48677,-219.95189 757.33829,-217.74914 756.13794,-216.76294 C 754.63076,-216.65525 752.50225,-216.26414 750.63794,-215.54419 C 747.76976,-214.43659 746.01414,-213.76263 744.20044,-213.07544 C 743.58378,-212.84181 743.20403,-212.63341 742.91919,-212.48169 C 742.91919,-212.48169 742.91919,-211.38794 742.91919,-211.38794 C 743.03097,-211.6103 743.30518,-212.20537 743.82544,-212.48169 C 744.52341,-212.85241 748.63907,-214.47506 750.63794,-215.20044 C 752.2948,-215.80169 754.79183,-216.52912 756.60669,-216.51294 C 756.90831,-216.51025 757.19431,-216.46204 757.45044,-216.41919 C 759.29293,-216.11094 764.91919,-214.85669 764.91919,-214.85669 C 764.91918,-214.85669 758.6857,-216.50344 757.88794,-216.70044 C 757.69715,-216.74755 757.35222,-216.76916 756.91919,-216.76294 C 758.06465,-217.63265 761.68019,-219.15645 764.26294,-220.20044 C 767.10116,-221.34771 767.37975,-221.45226 769.32544,-221.85669 C 771.33374,-222.27413 772.48169,-222.35669 772.48169,-222.35669 C 772.48169,-222.35668 772.39933,-222.95783 773.45044,-223.48169 C 774.15554,-223.8331 778.33746,-225.37409 780.35669,-226.04419 C 782.30859,-226.69192 785.41409,-227.40269 787.23169,-227.04419 C 789.09492,-226.67669 794.76294,-225.23169 794.76294,-225.23169 C 794.76295,-225.23169 788.47594,-227.1028 787.66919,-227.32544 C 787.47627,-227.37869 787.13835,-227.41148 786.70044,-227.41919 C 787.85878,-228.25207 791.49488,-229.61451 794.10669,-230.57544 C 796.97685,-231.63145 797.27403,-231.73724 799.23169,-232.10669 C 801.08518,-232.45648 802.09053,-232.53217 802.26294,-232.54419 C 802.37654,-232.76143 802.64039,-233.35421 803.16919,-233.60669 C 803.87863,-233.94543 808.09526,-235.31944 810.13794,-235.91919 C 811.83111,-236.4163 814.37871,-236.95596 816.23169,-236.82544 C 816.53964,-236.80376 816.84518,-236.72818 817.10669,-236.66919 C 818.98787,-236.24487 824.70044,-234.63794 824.70044,-234.63794 C 824.70045,-234.63794 818.3587,-236.70319 817.54419,-236.95044 C 817.3494,-237.00958 816.98631,-237.05438 816.54419,-237.07544 C 817.71368,-237.87299 821.40721,-239.13166 824.04419,-240.01294 C 826.942,-240.98141 827.2772,-241.01626 829.26294,-241.29419 C 831.31259,-241.58108 832.45044,-241.60669 832.45044,-241.60669 C 832.45042,-241.60669 832.37769,-242.21366 833.45044,-242.66919 C 834.17004,-242.97476 838.44142,-244.16994 840.51294,-244.66919 C 842.51538,-245.15177 845.71143,-245.59748 847.57544,-245.07544 C 849.48622,-244.54029 855.29419,-242.57544 855.29419,-242.57544 C 855.29419,-242.57544 848.87153,-244.99895 848.04419,-245.29419 C 847.84635,-245.3648 847.46203,-245.43458 847.01294,-245.48169 C 848.20084,-246.21034 851.92821,-247.25577 854.60669,-247.98169 C 857.55011,-248.77944 857.89877,-248.75252 859.91919,-248.88794 C 861.83208,-249.01617 862.86624,-248.95903 863.04419,-248.95044 C 863.16147,-249.1541 863.43595,-249.72992 863.98169,-249.91919 C 864.71388,-250.17313 869.06021,-250.96708 871.16919,-251.29419 C 872.91732,-251.5653 875.57007,-251.77889 877.48169,-251.38794 C 877.79935,-251.32298 878.08691,-251.20243 878.35669,-251.10669 C 880.29743,-250.41796 886.20044,-248.01294 886.20044,-248.01294 C 886.20045,-248.01294 879.66573,-250.96371 878.82544,-251.32544 C 878.62447,-251.41195 878.25031,-251.49223 877.79419,-251.57544 C 879.00069,-252.20862 882.82375,-252.97104 885.54419,-253.48169 C 888.53372,-254.04288 888.84442,-254.01123 890.88794,-254.01294 C 892.9972,-254.01471 894.20044,-253.88794 894.20044,-253.88794 C 894.20044,-253.88793 894.12773,-254.51913 895.23169,-254.82544 C 895.97221,-255.03091 900.35781,-255.65931 902.48169,-255.88794 C 904.53471,-256.10893 907.80032,-256.14016 909.70044,-255.41919 C 911.64823,-254.68012 917.54419,-252.04419 917.54419,-252.04419 C 917.54421,-252.04419 910.98131,-255.22316 910.13794,-255.60669 C 909.93626,-255.69842 909.59573,-255.7929 909.13794,-255.88794 C 910.34886,-256.48982 914.12236,-257.13678 916.85669,-257.54419 C 919.86149,-257.99191 920.1822,-257.99589 922.23169,-257.95044 C 924.17214,-257.90742 925.23868,-257.75621 925.41919,-257.73169 C 925.53811,-257.92485 925.80309,-258.49752 926.35669,-258.63794 C 927.0994,-258.82632 931.51098,-259.37222 933.63794,-259.57544 C 935.40097,-259.74386 938.05803,-259.80973 939.98169,-259.32544 C 940.30137,-259.24496 940.5852,-259.12185 940.85669,-259.01294 C 942.80962,-258.22945 948.76294,-255.54419 948.76294,-255.54419 C 948.76292,-255.54419 942.17103,-258.79767 941.32544,-259.20044 C 941.12322,-259.29676 940.75318,-259.40747 940.29419,-259.51294 C 941.50833,-260.08721 945.33785,-260.63513 948.07544,-261.01294 C 951.08382,-261.42814 951.39851,-261.45557 953.45044,-261.38794 C 955.56842,-261.31813 956.76294,-261.13794 956.76294,-261.13794 C 956.76292,-261.13794 956.68569,-261.77535 957.79419,-262.04419 C 958.53781,-262.22454 962.94595,-262.70774 965.07544,-262.88794 C 967.13391,-263.06211 970.41868,-263.01226 972.32544,-262.23169 C 974.28003,-261.43153 980.20044,-258.70044 980.20044,-258.70044 C 980.20042,-258.70044 973.64051,-262.0092 972.79419,-262.41919 C 972.59182,-262.51724 972.22233,-262.62229 971.76294,-262.73169 C 972.97811,-263.29559 976.77302,-263.84599 979.51294,-264.20044 C 982.52385,-264.58996 982.83425,-264.59809 984.88794,-264.51294 C 986.83233,-264.43234 987.89457,-264.2597 988.07544,-264.23169 C 988.1946,-264.42255 988.45821,-264.977 989.01294,-265.10669 C 989.7572,-265.28069 994.16287,-265.75716 996.29419,-265.91919 C 998.06081,-266.05346 1000.7439,-266.0449 1002.6692,-265.54419 C 1002.9892,-265.46098 1003.2725,-265.34292 1003.5442,-265.23169 C 1005.4988,-264.43153 1011.4505,-261.66919 1011.4505,-261.66919 C 1011.4504,-261.66919 1004.8593,-265.0092 1004.013,-265.41919 C 1003.8106,-265.51724 1003.4411,-265.6223 1002.9817,-265.73169 C 1004.1968,-266.29559 1008.023,-266.81475 1010.763,-267.16919 C 1013.7739,-267.55872 1014.1155,-267.59809 1016.1692,-267.51294 C 1018.2889,-267.42506 1019.4817,-267.20044 1019.4817,-267.20044 C 1019.4817,-267.20044 1019.4033,-267.84946 1020.513,-268.10669 C 1021.2573,-268.27925 1025.6625,-268.73005 1027.7942,-268.88794 C 1029.8548,-269.04054 1033.1371,-268.98471 1035.0442,-268.20044 C 1036.9992,-267.39649 1042.9192,-264.70044 1042.9192,-264.70044 C 1042.9192,-264.70044 1036.3594,-267.97631 1035.513,-268.38794 C 1035.3105,-268.48638 1034.9412,-268.59016 1034.4817,-268.70044 C 1035.6971,-269.26198 1039.4936,-269.82822 1042.2317,-270.20044 C 1045.2407,-270.60949 1045.5544,-270.61602 1047.6067,-270.54419 C 1049.5498,-270.4762 1050.6139,-270.37934 1050.7942,-270.35669 C 1050.913,-270.55109 1051.1788,-271.0855 1051.7317,-271.23169 C 1052.4735,-271.42781 1056.8628,-272.06047 1058.9817,-272.32544 C 1060.7381,-272.54505 1063.387,-272.65775 1065.2942,-272.29419 C 1065.6111,-272.23378 1065.9,-272.10481 1066.1692,-272.01294 C 1068.1054,-271.35202 1074.013,-269.07544 1074.013,-269.07544 C 1074.0129,-269.07544 1067.4763,-271.88199 1066.638,-272.23169 C 1066.4375,-272.31532 1066.0618,-272.40502 1065.6067,-272.48169 C 1066.8104,-273.13215 1070.6258,-273.85364 1073.3255,-274.48169 C 1076.2922,-275.17189 1076.6144,-275.23676 1078.638,-275.35669 C 1080.7266,-275.48049 1081.9192,-275.38794 1081.9192,-275.38794 C 1081.9192,-275.38793 1081.8322,-276.01999 1082.9192,-276.41919 C 1083.6484,-276.68699 1087.9664,-277.75716 1090.0442,-278.23169 C 1092.0527,-278.69038 1095.2121,-279.26099 1097.0442,-278.85669 C 1098.9223,-278.44223 1110.6224,-275.84106 1110.6224,-275.84106 C 1110.6224,-275.84106 1098.2949,-278.86372 1097.4817,-279.10669 C 1097.2872,-279.16481 1096.9231,-279.21295 1096.4817,-279.23169 C 1097.6493,-280.03538 1099.9959,-280.91899 1102.5911,-281.93481 C 1104.2725,-282.59299 1103.5148,-282.3114 1105.367,-282.93841 C 1107.1206,-283.53207 1107.8524,-283.94912 1107.9974,-284.0514 C 1108.3435,-284.25791 1107.6414,-284.17328 1107.4532,-284.0938 z" | ||
2631 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7333);enable-background:new" | ||
2632 | sodipodi:nodetypes="czscsssscssssscsssscssssscsssscssssscsssscssssscsssscssssscsssscssccsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscsssscscsscssscscsscc" /> | ||
2633 | <path | ||
2634 | id="path8175" | ||
2635 | d="M 1082.625,-275.125 C 1084.498,-274.73152 1087.1211,-273.97945 1088.6563,-273.15625 C 1090.1915,-272.33306 1091.4785,-272.10025 1094.0313,-270.65625 C 1096.5579,-269.22699 1098.8271,-268.64929 1101,-268.125 C 1103.3476,-267.55858 1106.4354,-267.40977 1109.8438,-266.9375 C 1108.7549,-267.77725 1103.2364,-268.10995 1101.4375,-268.5 C 1099.6386,-268.89006 1097.5434,-269.51616 1094.8438,-270.8125 C 1092.1441,-272.10884 1091.3494,-272.61146 1089.0313,-273.5 C 1086.7131,-274.38854 1085.0269,-274.88314 1082.625,-275.125 z" | ||
2636 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7285);enable-background:new" /> | ||
2637 | <path | ||
2638 | id="path8177" | ||
2639 | d="M 1051.4688,-270 C 1053.3741,-269.42241 1055.9969,-268.38428 1057.5625,-267.40625 C 1059.1281,-266.42823 1060.4427,-266.04644 1063.0625,-264.28125 C 1065.6555,-262.53409 1068.0484,-261.57198 1070.3125,-260.6875 C 1072.7586,-259.73193 1075.9951,-259.03037 1079.7188,-257.625 C 1078.5292,-258.76284 1072.6557,-260.31175 1070.7813,-261 C 1068.9068,-261.68825 1066.6995,-262.5662 1063.9063,-264.28125 C 1061.113,-265.99629 1060.3327,-266.56515 1057.9688,-267.6875 C 1055.6047,-268.80984 1053.9121,-269.52205 1051.4688,-270 z" | ||
2640 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7289);enable-background:new" /> | ||
2641 | <path | ||
2642 | id="path8179" | ||
2643 | d="M 1020.2188,-266.84375 C 1022.1307,-266.20564 1024.8,-265.08839 1026.375,-264.03125 C 1027.9501,-262.9741 1029.2706,-262.52258 1031.9063,-260.625 C 1034.5149,-258.74679 1036.9347,-257.59497 1039.2188,-256.5625 C 1041.6865,-255.44705 1044.9833,-254.3892 1048.75,-252.71875 C 1047.5467,-253.94128 1041.5472,-256.03298 1039.6563,-256.84375 C 1037.7653,-257.65452 1035.5914,-258.73754 1032.7813,-260.59375 C 1029.9711,-262.44995 1029.1595,-263.07068 1026.7813,-264.3125 C 1024.403,-265.5543 1022.6706,-266.28819 1020.2188,-266.84375 z" | ||
2644 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7293);enable-background:new" /> | ||
2645 | <path | ||
2646 | id="path8181" | ||
2647 | d="M 1110.1719,-266.89063 C 1110.3227,-266.84207 1110.8599,-266.25963 1110.2813,-265.40625 C 1109.4712,-264.21166 1104.5764,-262.08196 1101.7188,-261.28125 C 1098.8739,-260.48413 1095.4287,-260.30351 1091.1563,-261.65625 C 1086.8547,-263.0182 1085.6866,-264.12497 1080.5,-265.96875 C 1085.164,-263.85358 1086.6953,-262.01642 1090.625,-260.625 C 1092.2457,-260.05113 1093.9921,-259.6854 1095.6875,-259.59375 C 1095.2424,-259.26812 1094.1572,-258.61045 1092.125,-258 C 1089.3295,-257.16031 1085.4759,-256.46622 1083.875,-256.375 C 1082.3604,-256.28868 1080.733,-256.88749 1080.4375,-257 C 1080.6042,-256.89692 1080.8107,-256.62266 1080.1875,-255.96875 C 1079.2882,-255.02512 1074.0401,-254.04575 1071.0625,-253.71875 C 1068.0982,-253.3932 1064.5409,-253.73471 1060.1563,-255.625 C 1056.1783,-257.33997 1054.8173,-258.54036 1050.75,-260.375 C 1050.75,-260.375 1050.75,-260.21875 1050.75,-260.21875 C 1054.3931,-258.12346 1056.034,-256.33548 1059.625,-254.65625 C 1061.3552,-253.84716 1063.2167,-253.24749 1065.0313,-252.9375 C 1064.4964,-252.65074 1063.4735,-252.22599 1061.5938,-251.90625 C 1058.7248,-251.41829 1054.7848,-251.09011 1053.1563,-251.15625 C 1052.3056,-251.19079 1051.4277,-251.34062 1050.75,-251.5625 C 1050.0652,-251.77738 1049.5603,-252.00717 1049.4375,-252.0625 C 1049.6069,-251.95529 1049.8686,-251.65962 1049.2188,-251.03125 C 1048.3091,-250.15163 1042.9727,-249.69487 1039.9688,-249.5625 C 1036.9783,-249.43071 1033.3799,-250.01313 1028.9688,-252.125 C 1024.5276,-254.25126 1023.3273,-255.5266 1018.0625,-257.90625 C 1022.7968,-255.30921 1024.349,-253.27715 1028.4063,-251.1875 C 1030.0796,-250.32565 1031.8915,-249.69325 1033.6563,-249.25 C 1033.193,-249.01668 1032.0669,-248.56186 1029.9688,-248.3125 C 1027.0825,-247.96952 1023.1342,-247.81962 1021.5,-247.9375 C 1019.9538,-248.049 1018.2688,-248.79446 1017.9688,-248.9375 C 1018.1379,-248.81721 1018.3826,-248.52702 1017.75,-247.9375 C 1016.8372,-247.08677 1011.5059,-246.67538 1008.5,-246.5625 C 1005.5075,-246.45013 1001.9103,-247.05293 997.5,-249.15625 C 993.49875,-251.06448 992.11197,-252.29408 988.03125,-254.25 C 988.03122,-254.25 988.03125,-254.09375 988.03125,-254.09375 C 991.68631,-251.88983 993.32546,-250.0412 996.9375,-248.1875 C 998.67779,-247.29435 1000.5745,-246.65923 1002.4063,-246.21875 C 1001.8663,-245.97045 1000.8282,-245.60342 998.9375,-245.375 C 996.05182,-245.02642 992.07145,-244.85405 990.4375,-244.96875 C 989.58405,-245.02865 988.71119,-245.22666 988.03125,-245.46875 C 987.34415,-245.70405 986.8419,-245.94101 986.71875,-246 C 986.88873,-245.88773 987.18323,-245.57775 986.53125,-244.96875 C 985.6186,-244.11625 980.25592,-243.67538 977.25,-243.5625 C 974.25754,-243.45013 970.65654,-244.09055 966.25,-246.15625 C 961.81347,-248.23603 960.60312,-249.48796 955.34375,-251.8125 C 960.07313,-249.26501 961.63449,-247.2347 965.6875,-245.1875 C 967.35905,-244.34317 969.17304,-243.72107 970.9375,-243.28125 C 970.47427,-243.04703 969.3478,-242.59718 967.25,-242.34375 C 964.36431,-241.99517 960.4138,-241.77423 958.78125,-241.875 C 957.23669,-241.97032 955.58094,-242.70385 955.28125,-242.84375 C 955.45024,-242.72522 955.66317,-242.4399 955.03125,-241.84375 C 954.11939,-240.98347 948.7846,-240.5135 945.78125,-240.375 C 942.7913,-240.2371 939.2138,-240.82568 934.8125,-242.84375 C 930.81942,-244.67464 929.44739,-245.87295 925.375,-247.75 C 925.37498,-247.75 925.375,-247.59375 925.375,-247.59375 C 929.02261,-245.46048 930.64533,-243.65888 934.25,-241.875 C 935.98675,-241.01549 937.85727,-240.42486 939.6875,-240 C 939.14803,-239.7471 938.13687,-239.35871 936.25,-239.09375 C 933.37022,-238.68939 929.41187,-238.44813 927.78125,-238.53125 C 926.92953,-238.57466 926.05355,-238.7398 925.375,-238.96875 C 924.68931,-239.19076 924.1854,-239.41214 924.0625,-239.46875 C 924.23209,-239.35976 924.4944,-239.0591 923.84375,-238.4375 C 922.93296,-237.56736 917.59354,-237.04598 914.59375,-236.875 C 911.60742,-236.70479 908.01994,-237.19077 903.625,-239.15625 C 899.20011,-241.13513 898.01904,-242.38444 892.78125,-244.53125 C 897.49122,-242.14358 899.05142,-240.14252 903.09375,-238.1875 C 904.7609,-237.38119 906.55418,-236.79092 908.3125,-236.40625 C 907.85087,-236.15755 906.7155,-235.694 904.625,-235.375 C 901.7494,-234.93624 897.8446,-234.6419 896.21875,-234.6875 C 894.68052,-234.73062 892.98595,-235.43272 892.6875,-235.5625 C 892.85583,-235.44968 893.09807,-235.14875 892.46875,-234.53125 C 891.56063,-233.64015 886.2658,-233.003 883.28125,-232.71875 C 880.31007,-232.43577 876.70783,-232.89455 872.34375,-234.65625 C 868.38441,-236.25456 867.0146,-237.45112 863,-238.96875 C 863.00003,-238.96875 863,-238.8125 863,-238.8125 C 866.5959,-237.00115 868.23831,-235.23017 871.8125,-233.65625 C 873.53457,-232.8979 875.39998,-232.3673 877.21875,-232.03125 C 876.68266,-231.75217 875.65217,-231.34362 873.78125,-230.96875 C 870.92586,-230.39665 866.99183,-229.94936 865.375,-229.9375 C 864.53049,-229.93129 863.66892,-230.01844 863,-230.1875 C 862.32409,-230.34901 861.83991,-230.51673 861.71875,-230.5625 C 861.88597,-230.46848 862.14142,-230.17902 861.5,-229.5 C 860.60213,-228.54948 855.31352,-227.58292 852.375,-227.0625 C 849.44966,-226.54441 845.94285,-226.68826 841.65625,-228.09375 C 837.34045,-229.50882 836.18348,-230.62369 831.09375,-232.0625 C 835.6706,-230.31149 837.1823,-228.50244 841.125,-227.0625 C 842.75108,-226.46861 844.49385,-226.10685 846.21875,-225.90625 C 845.7659,-225.60923 844.66397,-225.02286 842.625,-224.4375 C 839.82028,-223.63233 835.98614,-222.86167 834.40625,-222.6875 C 832.9115,-222.5227 831.29002,-223.00431 831,-223.09375 C 831.16356,-223.00368 831.39278,-222.73382 830.78125,-222.03125 C 829.89878,-221.0174 824.73673,-219.6596 821.84375,-218.96875 C 818.96373,-218.28097 815.50815,-218.20873 811.28125,-219.40625 C 807.4464,-220.4927 806.10867,-221.47862 802.21875,-222.53125 C 802.21874,-222.53125 802.21875,-222.375 802.21875,-222.375 C 805.70293,-220.98015 807.28816,-219.4556 810.75,-218.34375 C 812.41793,-217.80803 814.20578,-217.55701 815.96875,-217.46875 C 815.44911,-217.11663 814.46836,-216.55423 812.65625,-215.9375 C 809.89059,-214.99625 806.06601,-214.00213 804.5,-213.78125 C 803.68206,-213.66586 802.8669,-213.65842 802.21875,-213.75 C 801.56379,-213.83321 801.08615,-213.96827 800.96875,-214 C 801.13079,-213.92536 801.40274,-213.65956 800.78125,-212.90625 C 799.91125,-211.85172 794.77162,-210.247 791.90625,-209.46875 C 789.05372,-208.69399 785.64713,-208.51055 781.46875,-209.5625 C 777.26192,-210.62163 776.11206,-211.60416 771.125,-212.71875 C 775.60954,-211.25929 777.09435,-209.58352 780.9375,-208.46875 C 782.52254,-208.00898 784.22429,-207.8305 785.90625,-207.78125 C 785.46468,-207.44449 784.39374,-206.75352 782.40625,-206 C 779.67232,-204.96351 775.95427,-203.83731 774.40625,-203.5625 C 772.94163,-203.30248 771.34667,-203.67904 771.0625,-203.75 C 771.22275,-203.67035 771.44294,-203.42902 770.84375,-202.6875 C 769.97909,-201.61744 764.92723,-199.86935 762.09375,-199 C 759.27295,-198.13453 755.88625,-197.84369 751.75,-198.78125 C 747.99741,-199.63186 746.70215,-200.49772 742.875,-201.375 C 742.875,-201.375 742.875,-201.21875 742.875,-201.21875 C 746.30296,-199.98096 747.86241,-198.58645 751.25,-197.6875 C 752.88216,-197.25436 754.61704,-197.10449 756.34375,-197.125 C 755.83482,-196.74083 754.867,-196.10318 753.09375,-195.375 C 750.38741,-194.26366 746.65742,-193.06719 745.125,-192.75 C 744.3246,-192.58431 743.51269,-192.53138 742.875,-192.59375 C 742.875,-192.59375 742.875,-192.07823 742.875,-191.67146 C 742.875,-191.40639 742.875,-191.1875 742.875,-191.1875 C 743.10145,-191.33218 743.32391,-191.46011 743.59375,-191.5625 C 744.67427,-191.97248 745.76536,-191.77827 749.59375,-193.25 C 753.42218,-194.72174 754.81787,-195.25498 755.5,-195.65625 C 756.1796,-196.05603 757.11165,-196.53562 757.71875,-197.1875 C 759.5456,-197.32525 761.2895,-197.68073 762.65625,-198.1875 C 765.62437,-199.28802 767.53162,-199.99369 769.4375,-200.65625 C 771.34336,-201.31879 771.79159,-202.07112 772.84375,-202.4375 C 773.9353,-202.81761 775.03886,-202.60288 778.90625,-203.96875 C 782.7737,-205.33461 784.18941,-205.79583 784.875,-206.1875 C 785.57609,-206.58802 786.57581,-207.12048 787.1875,-207.78125 C 789.1583,-207.83591 791.00435,-208.16588 792.46875,-208.65625 C 795.47023,-209.66133 797.3949,-210.27796 799.3125,-210.90625 C 800.8511,-211.41035 801.48652,-211.95302 802.21875,-212.34375 C 802.44891,-212.47806 802.69449,-212.59748 802.96875,-212.6875 C 804.06698,-213.04798 805.1502,-212.76887 809.0625,-214 C 812.97483,-215.23113 814.42855,-215.67295 815.125,-216.03125 C 815.81888,-216.38822 816.75515,-216.82386 817.375,-217.4375 C 819.24021,-217.46016 821.01081,-217.70433 822.40625,-218.125 C 825.43668,-219.03854 827.39863,-219.5551 829.34375,-220.09375 C 831.28886,-220.63239 831.76993,-221.35827 832.84375,-221.65625 C 833.95776,-221.9654 835.06369,-221.64886 839.03125,-222.6875 C 842.99886,-223.72613 844.44883,-224.12023 845.15625,-224.4375 C 845.89112,-224.76709 846.97008,-225.19122 847.59375,-225.8125 C 849.59149,-225.6965 851.45118,-225.83259 852.9375,-226.1875 C 856.01561,-226.9225 858.02094,-227.28844 860,-227.6875 C 861.58792,-228.00768 862.24429,-228.47805 863,-228.78125 C 863.23757,-228.88805 863.46695,-228.97401 863.75,-229.03125 C 864.88347,-229.26044 866.05448,-228.82232 870.09375,-229.53125 C 874.13308,-230.24018 875.594,-230.45834 876.3125,-230.71875 C 877.02836,-230.97819 878.01678,-231.28599 878.65625,-231.8125 C 880.58052,-231.57301 882.40413,-231.58797 883.84375,-231.8125 C 886.97008,-232.30012 888.9983,-232.51317 891,-232.78125 C 893.00171,-233.04932 893.48869,-233.72639 894.59375,-233.875 C 895.74014,-234.02918 896.86967,-233.57343 900.9375,-234.09375 C 905.00534,-234.61407 906.49763,-234.78948 907.21875,-235.03125 C 907.95585,-235.27839 909.01684,-235.61748 909.65625,-236.15625 C 911.70632,-235.82072 913.63003,-235.75829 915.15625,-235.9375 C 918.29856,-236.30646 920.33619,-236.49686 922.34375,-236.71875 C 923.95451,-236.89677 924.60842,-237.32695 925.375,-237.5625 C 925.61594,-237.64802 925.86912,-237.7181 926.15625,-237.75 C 927.30603,-237.87772 928.45754,-237.40335 932.53125,-237.875 C 936.60499,-238.34665 938.09034,-238.4856 938.8125,-238.71875 C 939.53196,-238.95102 940.51274,-239.19221 941.15625,-239.6875 C 943.09262,-239.35404 944.92631,-239.28326 946.375,-239.4375 C 949.52102,-239.77245 951.55256,-239.95609 953.5625,-240.15625 C 955.57246,-240.35639 956.04664,-240.98264 957.15625,-241.09375 C 958.30739,-241.20903 959.45268,-240.72869 963.53125,-241.15625 C 967.60986,-241.58381 969.12011,-241.71834 969.84375,-241.9375 C 970.5829,-242.16136 971.63947,-242.45075 972.28125,-242.96875 C 974.33835,-242.57008 976.28312,-242.47535 977.8125,-242.625 C 980.96123,-242.9331 982.98834,-243.09825 985,-243.28125 C 986.61407,-243.42807 987.2631,-243.8418 988.03125,-244.0625 C 988.27267,-244.14336 988.52478,-244.19241 988.8125,-244.21875 C 989.96461,-244.3242 991.10546,-243.826 995.1875,-244.21875 C 999.26958,-244.6115 1000.7764,-244.74959 1001.5,-244.96875 C 1002.2209,-245.18708 1003.1997,-245.41645 1003.8438,-245.90625 C 1005.7818,-245.55626 1007.6126,-245.45187 1009.0625,-245.59375 C 1012.2112,-245.90185 1014.2383,-246.067 1016.25,-246.25 C 1018.2616,-246.43299 1018.7642,-247.08802 1019.875,-247.1875 C 1021.0273,-247.29073 1022.1672,-246.80267 1026.25,-247.1875 C 1030.3329,-247.57232 1031.8387,-247.6885 1032.5625,-247.90625 C 1033.3018,-248.12868 1034.3581,-248.42074 1035,-248.9375 C 1037.0574,-248.53573 1039.0029,-248.43417 1040.5313,-248.59375 C 1043.6779,-248.92227 1045.7084,-249.11645 1047.7188,-249.3125 C 1049.3318,-249.46979 1049.9844,-249.94398 1050.75,-250.1875 C 1050.9907,-250.27554 1051.2132,-250.30887 1051.5,-250.34375 C 1052.6483,-250.48345 1053.8167,-250.00384 1057.875,-250.59375 C 1061.9333,-251.18367 1063.4368,-251.37089 1064.1563,-251.625 C 1064.873,-251.87816 1065.8308,-252.18307 1066.4688,-252.71875 C 1068.3885,-252.50681 1070.1887,-252.56734 1071.625,-252.8125 C 1074.7441,-253.3449 1076.7366,-253.74111 1078.7188,-254.125 C 1080.7009,-254.50887 1081.1931,-255.16465 1082.2813,-255.40625 C 1083.4101,-255.65691 1084.5516,-255.28996 1088.5313,-256.28125 C 1092.5109,-257.27253 1093.9609,-257.70055 1094.6563,-258.0625 C 1095.3786,-258.43851 1096.4182,-258.93308 1097.0313,-259.59375 C 1098.9943,-259.6058 1100.825,-259.8848 1102.25,-260.4375 C 1105.2012,-261.58211 1107.1232,-262.30692 1108.9375,-263.1875 C 1110.3932,-263.89403 1111.2723,-264.87391 1111.4844,-265.17188 C 1111.6966,-265.46984 1111.5962,-265.91718 1111.6223,-265.93863 C 1111.6652,-265.97387 1111.9416,-266.0236 1112.1013,-266.36707 C 1112.9602,-268.21415 1114.4223,-272.01166 1114.5365,-272.69652 C 1114.6502,-273.37868 1114.7003,-274.04426 1114.751,-274.44149 C 1114.7804,-274.67101 1114.6043,-275.30693 1114.6264,-275.36553 C 1114.6573,-275.44759 1114.9309,-275.63081 1114.9863,-275.88024 C 1115.2526,-277.07857 1115.0752,-278.07153 1114.8612,-279.48917 C 1114.6472,-280.90681 1113.8775,-284.11131 1113.2243,-284.96543 C 1112.5654,-285.82715 1112.0014,-285.9766 1111.4764,-285.96609 C 1111.2678,-285.69633 1111.6132,-285.703 1111.639,-285.65348 C 1112.3196,-285.60269 1112.573,-285.28484 1113.0582,-284.75686 C 1113.5434,-284.22888 1114.28,-280.90569 1114.4166,-279.4553 C 1114.5532,-278.00491 1114.6066,-276.5951 1114.3286,-275.98666 C 1114.0505,-275.37821 1113.6054,-275.46963 1113.313,-275.40375 C 1113.844,-275.21786 1113.9828,-275.27892 1114.0444,-274.43446 C 1114.1037,-273.62108 1113.9112,-272.79477 1113.5246,-271.62884 C 1113.1334,-270.44883 1111.6794,-267.27886 1111.2389,-267.03007 C 1110.7866,-266.77456 1110.5075,-266.75969 1110.1719,-266.89063 z" | ||
2648 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7337);enable-background:new" | ||
2649 | sodipodi:nodetypes="cssscscsscsssccscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssscscssssssscscsscsssccscsscscssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsssssscssssscsszsszssszzcczzzczzzc" /> | ||
2650 | <path | ||
2651 | id="path8183" | ||
2652 | d="M 988.75,-263.84375 C 990.66161,-263.20935 993.30027,-262.08534 994.875,-261.03125 C 996.44977,-259.97716 997.7711,-259.54873 1000.4063,-257.65625 C 1003.0145,-255.78311 1005.4332,-254.64103 1007.7188,-253.59375 C 1010.1881,-252.46228 1013.4709,-251.43901 1017.25,-249.65625 C 1016.0428,-250.91465 1010.111,-253.0207 1008.2188,-253.84375 C 1006.3266,-254.66679 1004.0908,-255.77424 1001.2813,-257.625 C 998.47169,-259.47575 997.65906,-260.10654 995.28125,-261.34375 C 992.90343,-262.58094 991.20137,-263.29295 988.75,-263.84375 z" | ||
2653 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7297);enable-background:new" /> | ||
2654 | <path | ||
2655 | id="path8185" | ||
2656 | d="M 957.5,-260.78125 C 959.41,-260.16315 962.08288,-259.07191 963.65625,-258.03125 C 965.22964,-256.99059 966.55233,-256.54873 969.1875,-254.65625 C 971.79573,-252.7831 974.21442,-251.64104 976.5,-250.59375 C 978.96931,-249.46228 982.25213,-248.439 986.03125,-246.65625 C 984.82397,-247.91465 978.82971,-250.05195 976.9375,-250.875 C 975.04533,-251.69804 972.84084,-252.8055 970.03125,-254.65625 C 967.22167,-256.507 966.4383,-257.09557 964.0625,-258.3125 C 961.68672,-259.52941 959.94929,-260.25135 957.5,-260.78125 z" | ||
2657 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7301);enable-background:new" /> | ||
2658 | <path | ||
2659 | id="path8187" | ||
2660 | d="M 926.09375,-257.375 C 928.00147,-256.77755 930.64723,-255.71116 932.21875,-254.6875 C 933.79025,-253.66385 935.08897,-253.24779 937.71875,-251.40625 C 940.32166,-249.58352 942.74762,-248.43405 945.03125,-247.40625 C 947.49845,-246.29584 950.7866,-245.31302 954.5625,-243.5625 C 953.35627,-244.8106 947.3906,-246.88059 945.5,-247.6875 C 943.60942,-248.4944 941.39758,-249.57854 938.59375,-251.375 C 935.7899,-253.17144 934.96671,-253.77751 932.59375,-254.96875 C 930.22078,-256.15999 928.54013,-256.87158 926.09375,-257.375 z" | ||
2661 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7305);enable-background:new" /> | ||
2662 | <path | ||
2663 | id="path8189" | ||
2664 | d="M 894.90625,-253.5625 C 896.80838,-253.00895 899.49326,-251.97363 901.0625,-250.96875 C 902.63173,-249.96388 903.93651,-249.56011 906.5625,-247.75 C 909.16162,-245.95836 911.56284,-244.87811 913.84375,-243.875 C 916.30803,-242.79126 919.60359,-241.83471 923.375,-240.125 C 922.1702,-241.36007 916.20084,-243.36978 914.3125,-244.15625 C 912.42418,-244.94272 910.2373,-245.98705 907.4375,-247.75 C 904.63773,-249.51294 903.83831,-250.11836 901.46875,-251.28125 C 899.09918,-252.44413 897.3455,-253.11537 894.90625,-253.5625 z" | ||
2665 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7309);enable-background:new" /> | ||
2666 | <path | ||
2667 | id="path8191" | ||
2668 | d="M 863.71875,-248.65625 C 865.59937,-248.22716 868.22302,-247.27587 869.78125,-246.34375 C 871.33948,-245.41164 872.63358,-245.08599 875.25,-243.34375 C 877.83971,-241.61931 880.23067,-240.63573 882.5,-239.71875 C 884.95176,-238.72806 888.23959,-237.84168 892,-236.21875 C 890.79869,-237.42609 884.84751,-239.28484 882.96875,-240 C 881.09,-240.71517 878.88335,-241.68442 876.09375,-243.375 C 873.30412,-245.06557 872.50914,-245.60322 870.15625,-246.65625 C 867.80333,-247.70926 866.13041,-248.36873 863.71875,-248.65625 z" | ||
2669 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7313);enable-background:new" /> | ||
2670 | <path | ||
2671 | id="path8193" | ||
2672 | d="M 833.15625,-241.375 C 835.00461,-241.07856 837.6257,-240.39868 839.15625,-239.59375 C 840.68683,-238.78882 841.96999,-238.53802 844.53125,-237.0625 C 847.06629,-235.60204 849.42193,-234.73741 851.65625,-234 C 854.07024,-233.20332 857.31336,-232.53311 861.03125,-231.15625 C 859.84354,-232.28498 853.94353,-233.746 852.09375,-234.3125 C 850.24398,-234.879 848.09033,-235.68642 845.34375,-237.15625 C 842.59718,-238.62608 841.84239,-239.07653 839.53125,-239.9375 C 837.2201,-240.79845 835.52654,-241.25759 833.15625,-241.375 z" | ||
2673 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7317);enable-background:new" /> | ||
2674 | <path | ||
2675 | id="path8195" | ||
2676 | d="M 802.90625,-232.3125 C 804.72845,-232.10123 807.27201,-231.51193 808.78125,-230.78125 C 810.2905,-230.05059 811.53693,-229.85127 814.0625,-228.5 C 816.56226,-227.16254 818.89404,-226.45157 821.09375,-225.84375 C 823.47028,-225.18708 826.65839,-224.77087 830.3125,-223.65625 C 829.14515,-224.70121 823.38362,-225.75954 821.5625,-226.21875 C 819.74139,-226.67796 817.61025,-227.34571 814.90625,-228.65625 C 812.20222,-229.96677 811.43519,-230.37615 809.15625,-231.125 C 806.8773,-231.87383 805.243,-232.30431 802.90625,-232.3125 z" | ||
2677 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7321);enable-background:new" /> | ||
2678 | <path | ||
2679 | id="path8197" | ||
2680 | d="M 773.1875,-222.1875 C 774.99859,-222.0088 777.50809,-221.52244 779,-220.84375 C 780.49194,-220.16506 781.7534,-220.04553 784.25,-218.78125 C 786.72107,-217.52987 789.04005,-216.88511 791.21875,-216.34375 C 793.57262,-215.75887 796.71009,-215.44623 800.3125,-214.5 C 799.16166,-215.49116 793.45999,-216.2833 791.65625,-216.6875 C 789.85253,-217.0917 787.74072,-217.70866 785.0625,-218.9375 C 782.38432,-220.16634 781.65905,-220.54839 779.40625,-221.21875 C 777.15346,-221.88909 775.50998,-222.22107 773.1875,-222.1875 z" | ||
2681 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7329);enable-background:new" /> | ||
2682 | <path | ||
2683 | id="path8199" | ||
2684 | d="M 743.5625,-211.1875 C 745.35531,-211.05839 747.83563,-210.63785 749.3125,-210 C 750.7894,-209.36215 752.0286,-209.25844 754.5,-208.0625 C 756.94618,-206.87878 759.22054,-206.31584 761.375,-205.84375 C 763.70267,-205.33372 766.7946,-205.16311 770.375,-204.28125 C 769.23121,-205.25185 763.62741,-205.8719 761.84375,-206.21875 C 760.06008,-206.56559 757.9609,-207.10631 755.3125,-208.25 C 752.66409,-209.39368 751.91755,-209.76631 749.6875,-210.375 C 747.45742,-210.98368 745.86156,-211.28466 743.5625,-211.1875 z" | ||
2685 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter7325);enable-background:new" /> | ||
2686 | </g> | ||
2687 | </g> | ||
2688 | <path | ||
2689 | style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2690 | d="M 863.87812,475.6679 C 865.52024,472.4499 867.39593,469.93261 868.73948,465.81892 C 869.5382,462.16103 872.05152,463.78819 875.99995,457.42202 C 877.40188,455.18252 881.47648,457.81338 884.96505,455.02291 C 886.23577,454.21972 887.84993,454.6186 889.44761,454.95978 C 893.213,456.27874 895.27337,458.66333 897.78137,460.76815 C 903.92043,466.73838 918.31551,468.71142 921.26741,467.08161 C 922.70146,464.17687 929.14869,461.67273 933.64178,455.96993 C 934.38989,454.84726 945.37114,447.22547 948.28899,449.40394" | ||
2691 | id="path8201" | ||
2692 | sodipodi:nodetypes="ccccccccc" /> | ||
2693 | <path | ||
2694 | style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2695 | d="M 888.50059,465.25071 C 895.864,462.01774 902.31149,456.34231 909.20872,451.86619 C 912.51929,449.89665 916.07855,455.0822 920.00472,455.46485 C 922.30245,455.24672 923.71762,456.66744 925.68683,457.10635 C 930.84319,458.42414 928.08476,460.97123 935.66209,463.54607 C 941.8177,465.26647 944.56949,456.7476 950.56184,456.22247 C 955.43923,455.71948 958.66076,455.90644 962.17859,455.96993 C 966.10555,456.10882 966.25714,452.47233 968.23951,450.66663 C 971.22007,447.86141 975.39512,448.81691 978.38436,445.92573 C 979.4019,444.54105 980.33894,442.91488 981.11895,440.81764 C 982.00096,438.8173 984.15901,441.12362 985.91718,442.08033" | ||
2696 | id="path8203" | ||
2697 | sodipodi:nodetypes="ccccccccccc" /> | ||
2698 | </g> | ||
2699 | <g | ||
2700 | inkscape:groupmode="layer" | ||
2701 | id="layer15" | ||
2702 | inkscape:label="Feet" | ||
2703 | style="display:inline"> | ||
2704 | <path | ||
2705 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9048);enable-background:accumulate" | ||
2706 | d="M 403.27922,1056.3058 L 459.84776,1013.8794 L 531.97265,1028.0215 L 485.30361,1080.3474 L 431.56349,1087.4185 L 403.27922,1056.3058 z" | ||
2707 | id="path8994" /> | ||
2708 | <path | ||
2709 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2710 | d="M 542.27183,1060.5719 C 540.86456,1079.3731 541.12693,1093.3229 544.35357,1109.8752 C 547.58023,1126.4275 560.75966,1155.7825 564.68798,1173.0589 C 568.61419,1190.326 567.38211,1211.3686 552.22854,1224.2072 C 536.91093,1237.1846 510.17726,1245.8061 484.39623,1239.9409 C 458.61518,1234.0757 414.84716,1190.7175 395.80604,1169.7126 C 376.6939,1148.6293 332.04518,1075.862 317.86751,1045.4368 C 303.68984,1015.0117 305.2079,1008.7182 309.74779,999.90708 C 300.38107,975.38658 297.33408,949.84027 276.03534,924.33044 C 306.36081,927.44488 319.91562,951.28677 336.16102,971.47019 C 330.63113,923.39416 318.10631,907.05369 307.78707,880.74589 C 337.78137,886.82754 358.36643,912.61828 371.76686,953.45839 C 381.32101,949.54048 390.00462,944.08545 401.95427,944.39719 C 390.65677,902.70139 384.00481,874.48135 365.26702,843.32725 C 418.70898,848.99758 448.92404,923.96657 444.23844,931.28805 C 454.21641,929.04406 463.24409,924.75767 474.67497,925.63638 C 463.426,887.28936 453.62716,848.76848 471.01526,806.98819 C 471.01526,806.98819 519.30204,872.42507 525.40492,892.79397 C 531.50779,913.16287 526.92373,931.49448 526.92373,931.49448 C 526.92373,931.49448 543.8833,962.57978 547.21765,982.58862 C 550.59075,1002.83 543.68496,1041.6919 542.27183,1060.5719 z" | ||
2711 | id="path4189" | ||
2712 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
2713 | <path | ||
2714 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3587);enable-background:accumulate" | ||
2715 | d="M 719.5,738.69519 L 737.81177,754.12715 L 782.2228,738.73894 L 805.5,713.19519 L 816.96397,732.41584 L 847.63558,745.19938 L 872.73295,750.92775 L 892,723.19519 L 908.02309,747.02126 L 947,752.19519 L 957.24541,745.99667 L 964.00012,754.69487 L 989.5,765.69519 L 991.5,725.19519 L 955.94866,710.6576 L 923.45591,689.1305 L 883.0038,677.66492 L 861.69668,662.13148 L 840,685.19519 L 755.02878,638.61208 L 722,676.69519 L 719.5,738.69519 z" | ||
2716 | id="path4191" | ||
2717 | sodipodi:nodetypes="cccccccccccccccccccccc" | ||
2718 | clip-path="url(#clipPath3631)" | ||
2719 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,995.28646,23.53493)" /> | ||
2720 | <path | ||
2721 | style="opacity:0.58775509;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter3898);enable-background:new" | ||
2722 | d="M 584,696.5 L 577.4375,713.65625 C 577.4375,713.65625 569.62598,734.02113 561.75,757.3125 C 557.81201,768.95818 553.86698,781.35395 550.8125,792.4375 C 547.75802,803.52105 545.47664,812.81736 545.3125,820.71875 C 544.91443,839.88071 551.05903,855.60705 554.25,862.46875 C 553.47847,866.02398 552.25863,871.92307 550.90625,880.5625 C 548.98583,892.83071 547.18798,907.71691 548.53125,920.4375 C 549.91334,933.52585 555.34347,948.62515 561.125,963.46875 C 566.90653,978.31235 573.17935,992.69586 576.34375,1001.5 C 582.97581,1019.9519 586.33671,1033.0763 587.65625,1050 C 588.2376,1057.4561 587.41398,1070.336 586.40625,1083.375 C 585.39852,1096.414 584.21964,1109.6764 584.71875,1120.3438 C 585.70786,1141.4836 594.04673,1167.1785 618.09375,1178.2812 C 640.86858,1188.7966 673.42057,1189.9834 701.53125,1174.8438 C 717.69117,1166.1404 731.60759,1147.7462 744.90625,1127.9375 C 758.20491,1108.1288 769.87542,1086.8841 776.84375,1073.0312 C 792.19667,1042.51 816.23728,957.56702 822.46875,920.3125 C 825.48734,902.26597 826.39041,891.24695 825.09375,882.28125 C 824.11522,875.51521 821.26556,870.13385 818.21875,866.0625 C 820.26149,838.55459 817.48668,814.69372 830.1875,786.65625 L 840.75,763.375 L 816.9375,772.6875 C 799.44775,779.52503 788.03586,791.73286 780.34375,804.75 C 780.02124,805.29577 779.78061,805.85776 779.46875,806.40625 C 779.69078,783.89104 783.87659,768.76866 786.0625,747.71875 L 788.03125,728.71875 L 771,737.375 C 740.40551,752.93071 725.30511,785.56821 721.28125,827.59375 C 717.03593,826.96828 712.44985,826.5741 707.46875,826.75 C 707.17726,787.56964 707.07246,759.71315 716.0625,727.375 L 721.65625,707.25 L 702.21875,714.90625 C 671.30938,727.11019 654.35921,756.83698 645.59375,783.28125 C 641.21102,796.50339 638.84793,809.08246 638,819.21875 C 637.76797,821.99248 637.68894,824.53007 637.6875,826.9375 C 634.44563,826.90109 631.26698,827.07339 627.625,827.4375 C 627.66662,788.43277 624.14076,747.68335 595.34375,710.9375 L 584,696.5 z M 589.8125,740.3125 C 606.61941,770.95633 607.28701,804.27978 606.75,840.0625 L 606.53125,855.125 L 618.56618,848.58579 C 627.22823,845.45277 638.12676,848.35827 650.5,847.75 L 665.17465,857.1066 L 658.84375,831.3125 C 658.7541,831.08253 658.62329,830.89581 658.59375,830.59375 C 658.39424,828.55389 658.37143,825.12068 658.71875,820.96875 C 659.41339,812.66489 661.50832,801.38351 665.34375,789.8125 C 670.49907,774.25956 678.83176,758.62002 690.46875,747.28125 C 685.78494,775.91923 687.25316,807.54059 687.45711,843.08639 L 684.69118,856.34803 L 700.1875,848.75 C 709.2169,845.99229 717.37647,848.40004 729.46875,849.84375 L 742.71507,859.28798 L 741.09375,840 C 742.54168,809.02823 749.31524,786.32192 761.8125,771.125 C 758.82562,790.90384 756.38207,812.9098 762.125,849.46875 L 763.19052,855.84193 L 760.25237,867.35878 L 770.86948,859.1906 L 780.05921,869.41258 L 778.51093,858.94898 L 781.9375,852 C 787.63852,838.78851 792.11032,825.78663 798.28125,815.34375 C 799.24111,813.71941 800.31278,812.27939 801.34375,810.78125 C 797.66309,831.9366 798.91659,850.9894 797.25,868.5625 L 792.56986,876.36948 L 799.96875,876.59375 C 803.1888,880.07736 803.83625,880.44443 804.53125,885.25 C 805.22625,890.05557 804.84987,899.65035 801.96875,916.875 C 796.40076,950.16292 770.12313,994.71481 758.22835,1018.3614 C 751.62344,1031.4918 739.70002,1075.8473 727.105,1094.6079 C 714.50998,1113.3684 698.57363,1134.3752 689.93296,1139.0288 C 668.44244,1150.603 645.37702,1164.5347 629.31407,1157.1183 C 614.93921,1150.4813 606.27438,1135.9256 605.5,1119.375 C 605.11689,1111.187 606.11279,1098.0658 607.125,1084.9688 C 608.13721,1071.8717 618.41391,1062.398 622.54839,1048.4062 C 627.92068,1030.2254 621.10152,1011.8118 610.04839,994.46875 C 603.56184,984.29097 586.07159,970.21085 580.5,955.90625 C 574.92841,941.60165 570.13249,926.9031 569.21875,918.25 C 568.29254,909.47887 569.64125,895.22498 571.4375,883.75 C 573.23375,872.27503 575.28125,863.46875 575.28125,863.46875 L 584.70403,859.85355 L 574.21875,855.96875 C 574.21875,855.96875 565.71986,840.65865 566.125,821.15625 C 566.19611,817.73309 567.96126,808.4282 570.84375,797.96875 C 573.72624,787.5093 577.60841,775.41604 581.46875,764 C 584.51314,754.99692 587.24938,747.39655 589.8125,740.3125 z" | ||
2723 | id="path4193" | ||
2724 | clip-path="url(#clipPath3677)" | ||
2725 | sodipodi:nodetypes="ccssscsssssssssssssccccscccccccccsscccccccccccssscccccccccccccccsccccssssssssssssscccsssc" | ||
2726 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,822.28931,10.93589)" /> | ||
2727 | <g | ||
2728 | id="g3617" | ||
2729 | clip-path="url(#clipPath3622)" | ||
2730 | transform="translate(276,136)"> | ||
2731 | <path | ||
2732 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,-52.200498,74.09707)" | ||
2733 | id="path4195" | ||
2734 | d="M -15.66751,843.48852 L -65.16499,827.93217 L -92.03504,880.25807 L -51.02285,925.51291 L -1.52538,887.32914 L -15.66751,843.48852 z" | ||
2735 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9024);enable-background:accumulate" /> | ||
2736 | <path | ||
2737 | sodipodi:nodetypes="ccccccccccccc" | ||
2738 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,-46.92842,75.511284)" | ||
2739 | id="path4197" | ||
2740 | d="M 118.70648,859.93048 L 63.552152,813.26144 L 19.711532,850.03099 L 53.652662,903.7711 L 40.055848,989.23313 L 0.61048221,1017.5253 L -40.401718,1028.839 L -43.230138,1075.508 L 13.338402,1100.9639 L 32.282389,1031.3139 L 55.738939,972.45727 L 102.08648,899.84236 L 118.70648,859.93048 z" | ||
2741 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9020);enable-background:accumulate" /> | ||
2742 | </g> | ||
2743 | <path | ||
2744 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9044);enable-background:accumulate" | ||
2745 | d="M -70.82184,932.58397 L -10.01066,905.71392 L 90.3985,936.82662 L 26.75889,967.93931 L -55.26549,950.96875 L -70.82184,932.58397 z" | ||
2746 | id="path4199" | ||
2747 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,229.07158,211.51128)" /> | ||
2748 | <path | ||
2749 | style="opacity:0.58775509;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter4105);enable-background:new" | ||
2750 | d="M 583.0625,715.75 C 570.95641,750.19974 556.348,784.28333 551.3125,820.59375 C 550.48042,835.52242 555.90165,849.75318 560.15625,863.65625 C 554.24001,890.85751 550.01944,920.5562 561.3125,946.78125 C 574.82967,984.9421 596.31397,1022.4634 593.73529,1064.2495 C 592.78699,1093.5437 584.72085,1125.2436 599.125,1152.5312 C 609.32364,1171.866 632.26456,1179.8429 653.09285,1180.1988 C 680.95504,1181.3729 709.55546,1168.5772 725.09375,1144.9375 C 747.68924,1115.5658 766.89426,1083.4402 780.3324,1048.8777 C 797.22293,1003.3717 810.0042,956.31698 818.26642,908.4788 C 820.09082,895.53774 821.3675,881.00895 813.6875,869.65625 C 810.25635,862.31993 813.72957,854.09611 813.00293,846.34648 C 813.67693,821.35182 817.01525,795.68272 829.65625,773.75 C 811.92312,780.1946 794.58357,790.30971 785.65318,807.61425 C 781.7181,814.3238 778.04836,821.18838 774.28125,828 C 770.73126,797.98592 778.00088,768.35172 781.0625,738.71875 C 760.89646,747.77338 744.18578,764.37397 736.88755,785.40075 C 730.58292,800.98078 728.08533,817.71793 726.625,834.4375 C 718.37166,832.91825 709.94053,832.33595 701.5625,832.9375 C 700.59942,794.23963 701.09554,753.53035 712.53125,717.03125 C 693.85012,723.24901 677.36504,735.76676 666.90322,752.41848 C 653.05068,773.29827 645.64182,798.17243 643.84375,823.03125 C 644.42909,827.35579 643.78249,834.87134 637.5,832.90625 C 632.16882,832.9238 626.87092,833.58508 621.5625,834 C 622.71034,794.61852 618.22106,752.3718 594.5,719.78125 C 591.43929,716.14408 588.86315,712.09687 585.875,708.4375 C 584.9375,710.875 584,713.3125 583.0625,715.75 z M 590.8125,729.59375 C 609.37777,758.89004 613.295,794.41387 612.9375,828.46875 C 613.14159,833.64401 612.42094,840.29795 613.0625,844.53125 C 625.38106,838.4285 639.80162,842.09135 652.84375,842.34375 C 655.16087,843.567 656.03585,843.99618 654.75,840.9375 C 650.58545,826.98465 652.90172,812.3245 656.55504,798.52986 C 662.92191,772.23922 677.18332,747.44188 699.375,731.5 C 690.75791,768.73706 693.65842,808.06161 693.28125,845.46875 C 705.53469,838.55885 720.56004,842.02262 733.3125,845.21875 C 736.70472,848.75355 735.60185,844.48927 735.5,841.40625 C 735.01691,820.03567 739.63133,798.33662 749.1875,779.25 C 755.15016,768.56273 763.43088,759.44621 771.625,750.375 C 763.75344,784.2131 762.4221,819.71093 768.90625,853.875 C 770.6311,852.46382 773.51306,853.42086 774.5625,853.5 C 784.24619,832.26318 790.91362,808.11938 809.45266,792.75815 C 811.32595,792.38693 808.00448,801.2831 807.96875,804.65625 C 804.43387,826.50206 800.79359,848.79859 799.18454,870.87536 C 790.40075,873.21707 802.03289,873.1989 802.65329,874.93786 C 810.5764,885.50366 807.31628,899.34258 806.28494,911.2912 C 799.22089,956.32475 784.14263,998.65314 770.33139,1041.971 C 758.25663,1074.9203 742.95719,1100.8235 722.44331,1129.1725 C 711.49074,1142.7239 699.19859,1157.0238 681.59956,1161.6725 C 661.44355,1167.9138 637.3928,1172.5494 619,1161.7188 C 601.71034,1149.3774 597.97607,1126.0099 599.73774,1106.0324 C 599.78653,1090.2062 604.6766,1077.5203 604.14834,1062.5406 C 603.6101,1047.2777 601.85699,1031.9759 597.60573,1015.6743 C 593.35447,999.37268 588.56248,990.75636 581.48667,974.10092 C 574.24556,957.05636 566.41652,937.35229 563.28125,917.8125 C 561.53177,899.18536 566.17296,880.68988 569.0625,862.5625 C 572.35873,859.72554 567.46451,857.36591 566.75,854.375 C 559.14887,837.35992 558.34253,817.6001 564.00766,799.81502 C 571.13786,774.74272 579.76853,750.18261 588.6875,725.6875 C 589.39583,726.98958 590.10417,728.29167 590.8125,729.59375 z" | ||
2751 | id="path4201" | ||
2752 | sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccczzzcccccc" | ||
2753 | clip-path="url(#clipPath4177)" | ||
2754 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,822.28931,10.93589)" /> | ||
2755 | <path | ||
2756 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4130);enable-background:accumulate" | ||
2757 | d="M 735.05635,733.03834 L 737.81177,754.12715 L 782.2228,738.73894 L 787.07343,716.34919 L 783.13726,694.29697 L 760.68563,657.70396 L 752.40559,688.0089 L 735.05635,733.03834 z" | ||
2758 | id="path4203" | ||
2759 | sodipodi:nodetypes="cccccccc" | ||
2760 | clip-path="url(#clipPath3631)" | ||
2761 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,995.28646,23.53493)" /> | ||
2762 | <path | ||
2763 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4141);enable-background:accumulate" | ||
2764 | d="M 831.81321,730.29452 L 847.63558,745.19938 L 868.49031,748.09932 L 866.90002,708.17334 L 875.22563,677.66492 L 868.06064,671.32386 L 846.36395,692.26626 L 831.81321,730.29452 z" | ||
2765 | id="path4205" | ||
2766 | sodipodi:nodetypes="cccccccc" | ||
2767 | clip-path="url(#clipPath3631)" | ||
2768 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,995.28646,23.53493)" /> | ||
2769 | <g | ||
2770 | id="g8317" | ||
2771 | style="filter:url(#filter8333)" | ||
2772 | clip-path="url(#clipPath8338)" | ||
2773 | transform="translate(276,136)"> | ||
2774 | <path | ||
2775 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,719.28646,-112.46507)" | ||
2776 | clip-path="none" | ||
2777 | sodipodi:nodetypes="ccccc" | ||
2778 | id="path4209" | ||
2779 | d="M 964.00012,754.69487 L 982.42893,762.15966 L 991.5,725.19519 L 976.62969,730.03405 L 964.00012,754.69487 z" | ||
2780 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2781 | <rect | ||
2782 | y="757.19519" | ||
2783 | x="-55" | ||
2784 | height="177" | ||
2785 | width="182" | ||
2786 | id="rect8315" | ||
2787 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:25;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2788 | </g> | ||
2789 | <g | ||
2790 | id="g8346" | ||
2791 | style="filter:url(#filter8354)" | ||
2792 | clip-path="url(#clipPath8359)" | ||
2793 | transform="translate(276,136)"> | ||
2794 | <path | ||
2795 | transform="matrix(-0.9045327,0.2506626,0.2506626,0.9045327,719.28646,-112.46507)" | ||
2796 | clip-path="none" | ||
2797 | sodipodi:nodetypes="ccccccc" | ||
2798 | id="path4207" | ||
2799 | d="M 910.14441,746.31415 L 942.75736,751.48808 L 942.39617,727.61189 L 949.5847,697.92968 L 941.13358,692.66603 L 919.31164,719.1768 L 910.14441,746.31415 z" | ||
2800 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2801 | <rect | ||
2802 | y="696.19519" | ||
2803 | x="-22" | ||
2804 | height="176" | ||
2805 | width="165" | ||
2806 | id="rect8344" | ||
2807 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:25;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2808 | </g> | ||
2809 | </g> | ||
2810 | <g | ||
2811 | inkscape:groupmode="layer" | ||
2812 | id="layer16" | ||
2813 | inkscape:label="Left Foot" | ||
2814 | style="display:inline"> | ||
2815 | <path | ||
2816 | style="opacity:1;fill:#ada469;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new" | ||
2817 | d="M 1036.164,1071.8338 C 1042.9581,1090.7366 1046.6577,1105.1335 1048.0543,1123.0457 C 1049.4509,1140.958 1044.2716,1174.8465 1045.1538,1193.7018 C 1046.0356,1212.547 1053.2875,1233.8008 1072.4984,1242.6707 C 1091.9173,1251.6365 1121.8177,1252.882 1146.6183,1239.5251 C 1171.4189,1226.1681 1204.0193,1169.1996 1217.5925,1142.2164 C 1231.2164,1115.1325 1256.3536,1027.719 1262.2533,992.44781 C 1268.1531,957.1766 1264.8039,951.14704 1257.6359,943.39232 C 1260.2762,915.55217 1256.1361,888.45689 1270.7455,856.20614 C 1240.4965,868.03184 1233.3632,896.36684 1222.4266,921.71122 C 1214.4257,870.77829 1222.6358,850.43803 1225.7455,820.49186 C 1196.6808,835.26977 1182.884,867.60588 1180.7455,913.349 C 1169.8216,912.0448 1159.3541,908.91477 1147.1741,912.63471 C 1146.9101,866.61137 1145.7106,835.7453 1156.0847,798.42822 C 1102.8293,819.45508 1093.1375,905.02232 1100.0312,911.20614 C 1089.1484,911.74114 1078.6602,909.90884 1067.1741,914.06329 C 1067.813,871.49194 1066.9136,829.15468 1037.1741,791.20614 C 1037.1741,791.20614 1006.2161,872.12848 1005.7455,894.77757 C 1005.275,917.42666 1015.1971,934.94345 1015.1971,934.94345 C 1015.1971,934.94345 1006.6291,971.68396 1008.8985,993.17568 C 1011.1944,1014.9171 1029.3414,1052.8519 1036.164,1071.8338 z" | ||
2818 | id="path8848" | ||
2819 | sodipodi:nodetypes="czzzzzzcccccccccczczz" /> | ||
2820 | <path | ||
2821 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3587);enable-background:accumulate" | ||
2822 | d="M 719.5,738.69519 L 737.81177,754.12715 L 782.2228,738.73894 L 805.5,713.19519 L 816.96397,732.41584 L 847.63558,745.19938 L 872.73295,750.92775 L 892,723.19519 L 908.02309,747.02126 L 947,752.19519 L 957.24541,745.99667 L 964.00012,754.69487 L 989.5,765.69519 L 991.5,725.19519 L 955.94866,710.6576 L 923.45591,689.1305 L 883.0038,677.66492 L 861.69668,662.13148 L 840,685.19519 L 755.02878,638.61208 L 722,676.69519 L 719.5,738.69519 z" | ||
2823 | id="path3635" | ||
2824 | sodipodi:nodetypes="cccccccccccccccccccccc" | ||
2825 | clip-path="url(#clipPath3631)" | ||
2826 | transform="translate(276,136)" /> | ||
2827 | <path | ||
2828 | transform="translate(450.03125,73.843964)" | ||
2829 | style="opacity:0.58775509;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter3898);enable-background:new" | ||
2830 | d="M 584,696.5 L 577.4375,713.65625 C 577.4375,713.65625 569.62598,734.02113 561.75,757.3125 C 557.81201,768.95818 553.86698,781.35395 550.8125,792.4375 C 547.75802,803.52105 545.47664,812.81736 545.3125,820.71875 C 544.91443,839.88071 551.05903,855.60705 554.25,862.46875 C 553.47847,866.02398 552.25863,871.92307 550.90625,880.5625 C 548.98583,892.83071 547.18798,907.71691 548.53125,920.4375 C 549.91334,933.52585 555.34347,948.62515 561.125,963.46875 C 566.90653,978.31235 573.17935,992.69586 576.34375,1001.5 C 582.97581,1019.9519 586.33671,1033.0763 587.65625,1050 C 588.2376,1057.4561 587.41398,1070.336 586.40625,1083.375 C 585.39852,1096.414 584.21964,1109.6764 584.71875,1120.3438 C 585.70786,1141.4836 594.04673,1167.1785 618.09375,1178.2812 C 640.86858,1188.7966 673.42057,1189.9834 701.53125,1174.8438 C 717.69117,1166.1404 731.60759,1147.7462 744.90625,1127.9375 C 758.20491,1108.1288 769.87542,1086.8841 776.84375,1073.0312 C 792.19667,1042.51 816.23728,957.56702 822.46875,920.3125 C 825.48734,902.26597 826.39041,891.24695 825.09375,882.28125 C 824.11522,875.51521 821.26556,870.13385 818.21875,866.0625 C 820.26149,838.55459 817.48668,814.69372 830.1875,786.65625 L 840.75,763.375 L 816.9375,772.6875 C 799.44775,779.52503 788.03586,791.73286 780.34375,804.75 C 780.02124,805.29577 779.78061,805.85776 779.46875,806.40625 C 779.69078,783.89104 783.87659,768.76866 786.0625,747.71875 L 788.03125,728.71875 L 771,737.375 C 740.40551,752.93071 725.30511,785.56821 721.28125,827.59375 C 717.03593,826.96828 712.44985,826.5741 707.46875,826.75 C 707.17726,787.56964 707.07246,759.71315 716.0625,727.375 L 721.65625,707.25 L 702.21875,714.90625 C 671.30938,727.11019 654.35921,756.83698 645.59375,783.28125 C 641.21102,796.50339 638.84793,809.08246 638,819.21875 C 637.76797,821.99248 637.68894,824.53007 637.6875,826.9375 C 634.44563,826.90109 631.26698,827.07339 627.625,827.4375 C 627.66662,788.43277 624.14076,747.68335 595.34375,710.9375 L 584,696.5 z M 589.8125,740.3125 C 606.61941,770.95633 607.28701,804.27978 606.75,840.0625 L 606.53125,855.125 L 618.56618,848.58579 C 627.22823,845.45277 638.12676,848.35827 650.5,847.75 L 665.17465,857.1066 L 658.84375,831.3125 C 658.7541,831.08253 658.62329,830.89581 658.59375,830.59375 C 658.39424,828.55389 658.37143,825.12068 658.71875,820.96875 C 659.41339,812.66489 661.50832,801.38351 665.34375,789.8125 C 670.49907,774.25956 678.83176,758.62002 690.46875,747.28125 C 685.78494,775.91923 687.25316,807.54059 687.45711,843.08639 L 684.69118,856.34803 L 700.1875,848.75 C 709.2169,845.99229 717.37647,848.40004 729.46875,849.84375 L 742.71507,859.28798 L 741.09375,840 C 742.54168,809.02823 749.31524,786.32192 761.8125,771.125 C 758.82562,790.90384 756.38207,812.9098 762.125,849.46875 L 763.19052,855.84193 L 760.25237,867.35878 L 770.86948,859.1906 L 780.05921,869.41258 L 778.51093,858.94898 L 781.9375,852 C 787.63852,838.78851 792.11032,825.78663 798.28125,815.34375 C 799.24111,813.71941 800.31278,812.27939 801.34375,810.78125 C 797.66309,831.9366 798.91659,850.9894 797.25,868.5625 L 792.56986,876.36948 L 799.96875,876.59375 C 803.1888,880.07736 803.83625,880.44443 804.53125,885.25 C 805.22625,890.05557 804.84987,899.65035 801.96875,916.875 C 796.40076,950.16292 770.17603,1040.0409 758.28125,1063.6875 C 751.67634,1076.8179 740.25127,1097.5832 727.65625,1116.3438 C 715.06123,1135.1043 700.29692,1151.8776 691.65625,1156.5312 C 670.16573,1168.1054 642.87545,1166.7914 626.8125,1159.375 C 612.43764,1152.738 606.27438,1135.9256 605.5,1119.375 C 605.11689,1111.187 606.11279,1098.0658 607.125,1084.9688 C 608.13721,1071.8717 618.41391,1062.398 622.54839,1048.4062 C 627.92068,1030.2254 621.10152,1011.8118 610.04839,994.46875 C 603.56184,984.29097 586.07159,970.21085 580.5,955.90625 C 574.92841,941.60165 570.13249,926.9031 569.21875,918.25 C 568.29254,909.47887 569.64125,895.22498 571.4375,883.75 C 573.23375,872.27503 575.28125,863.46875 575.28125,863.46875 L 584.70403,859.85355 L 574.21875,855.96875 C 574.21875,855.96875 565.71986,840.65865 566.125,821.15625 C 566.19611,817.73309 567.96126,808.4282 570.84375,797.96875 C 573.72624,787.5093 577.60841,775.41604 581.46875,764 C 584.51314,754.99692 587.24938,747.39655 589.8125,740.3125 z" | ||
2831 | id="path3669" | ||
2832 | clip-path="url(#clipPath3677)" | ||
2833 | sodipodi:nodetypes="ccssscsssssssssssssccccscccccccccsscccccccccccssscccccccccccccccsccccssssssssssssscccsssc" /> | ||
2834 | <g | ||
2835 | id="g3628" | ||
2836 | clip-path="url(#clipPath3636)" | ||
2837 | transform="translate(276,136)"> | ||
2838 | <path | ||
2839 | id="path8988" | ||
2840 | d="M 824.48651,818.48242 L 774.98903,802.92607 L 748.11898,855.25197 L 789.13117,900.50681 L 838.62864,862.32304 L 824.48651,818.48242 z" | ||
2841 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9024);enable-background:accumulate" /> | ||
2842 | <path | ||
2843 | id="path8990" | ||
2844 | d="M 964.49365,855.25197 L 909.33932,808.58293 L 865.4987,845.35248 L 899.43983,899.09259 L 906.51089,965.56063 L 855.59921,1000.916 L 814.58701,1012.2297 L 811.75859,1058.8987 L 868.32713,1084.3546 L 931.96674,1007.987 L 956.00837,913.23473 L 964.49365,855.25197 z" | ||
2845 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9020);enable-background:accumulate" /> | ||
2846 | </g> | ||
2847 | <path | ||
2848 | style="opacity:0.25;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter9044);enable-background:accumulate" | ||
2849 | d="M 1045.3322,1043.5779 L 1106.1434,1016.7078 L 1206.5525,1047.8205 L 1142.9129,1078.9332 L 1060.8885,1061.9626 L 1045.3322,1043.5779 z" | ||
2850 | id="path8992" /> | ||
2851 | <path | ||
2852 | transform="translate(450.03125,73.843964)" | ||
2853 | style="opacity:0.58775509;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:20.79999924;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter4185);enable-background:new" | ||
2854 | d="M 583.0625,715.75 C 570.95641,750.19974 556.348,784.28333 551.3125,820.59375 C 550.48042,835.52242 555.90165,849.75318 560.15625,863.65625 C 554.24001,890.85751 550.01944,920.5562 561.3125,946.78125 C 574.82967,984.9421 596.31397,1022.4634 593.73529,1064.2495 C 592.78699,1093.5437 584.72085,1125.2436 599.125,1152.5312 C 609.32364,1171.866 632.26456,1179.8429 653.09285,1180.1988 C 680.95504,1181.3729 709.55546,1168.5772 725.09375,1144.9375 C 747.68924,1115.5658 766.89426,1083.4402 780.3324,1048.8777 C 797.22293,1003.3717 810.0042,956.31698 818.26642,908.4788 C 820.09082,895.53774 821.3675,881.00895 813.6875,869.65625 C 810.25635,862.31993 813.72957,854.09611 813.00293,846.34648 C 813.67693,821.35182 817.01525,795.68272 829.65625,773.75 C 811.92312,780.1946 794.58357,790.30971 785.65318,807.61425 C 781.7181,814.3238 778.04836,821.18838 774.28125,828 C 770.73126,797.98592 778.00088,768.35172 781.0625,738.71875 C 760.89646,747.77338 744.18578,764.37397 736.88755,785.40075 C 730.58292,800.98078 728.08533,817.71793 726.625,834.4375 C 718.37166,832.91825 709.94053,832.33595 701.5625,832.9375 C 700.59942,794.23963 701.09554,753.53035 712.53125,717.03125 C 693.85012,723.24901 677.36504,735.76676 666.90322,752.41848 C 653.05068,773.29827 645.64182,798.17243 643.84375,823.03125 C 644.42909,827.35579 643.78249,834.87134 637.5,832.90625 C 632.16882,832.9238 626.87092,833.58508 621.5625,834 C 622.71034,794.61852 618.22106,752.3718 594.5,719.78125 C 591.43929,716.14408 588.86315,712.09687 585.875,708.4375 C 584.9375,710.875 584,713.3125 583.0625,715.75 z M 590.8125,729.59375 C 609.37777,758.89004 613.295,794.41387 612.9375,828.46875 C 613.14159,833.64401 612.42094,840.29795 613.0625,844.53125 C 625.38106,838.4285 639.80162,842.09135 652.84375,842.34375 C 655.16087,843.567 656.03585,843.99618 654.75,840.9375 C 650.58545,826.98465 652.90172,812.3245 656.55504,798.52986 C 662.92191,772.23922 677.18332,747.44188 699.375,731.5 C 690.75791,768.73706 693.65842,808.06161 693.28125,845.46875 C 705.53469,838.55885 720.56004,842.02262 733.3125,845.21875 C 736.70472,848.75355 735.60185,844.48927 735.5,841.40625 C 735.01691,820.03567 739.63133,798.33662 749.1875,779.25 C 755.15016,768.56273 763.43088,759.44621 771.625,750.375 C 763.75344,784.2131 762.4221,819.71093 768.90625,853.875 C 770.6311,852.46382 773.51306,853.42086 774.5625,853.5 C 784.24619,832.26318 790.91362,808.11938 809.45266,792.75815 C 811.32595,792.38693 808.00448,801.2831 807.96875,804.65625 C 804.43387,826.50206 804.67155,848.82948 803.0625,870.90625 C 801.75012,872.28304 805.91085,873.22979 806.53125,874.96875 C 814.45436,885.53455 809.65419,899.80024 808.62285,911.74886 C 801.5588,956.78241 786.85732,1000.1282 773.04608,1043.446 C 760.97132,1076.3953 742.32638,1106.526 721.8125,1134.875 C 710.85993,1148.4264 698.56778,1162.7263 680.96875,1167.375 C 660.81274,1173.6163 637.3928,1172.5494 619,1161.7188 C 601.71034,1149.3774 597.97607,1126.0099 599.73774,1106.0324 C 599.78653,1090.2062 602.10985,1078.2316 607.65521,1063.2271 C 613.20056,1048.2226 610.12626,1031.8954 605.875,1015.5938 C 601.62374,999.2922 593.69597,989.33378 584.05342,973.38963 C 574.41087,957.44548 566.41652,937.35229 563.28125,917.8125 C 561.53177,899.18536 566.17296,880.68988 569.0625,862.5625 C 572.35873,859.72554 567.46451,857.36591 566.75,854.375 C 559.14887,837.35992 558.34253,817.6001 564.00766,799.81502 C 571.13786,774.74272 579.76853,750.18261 588.6875,725.6875 C 589.39583,726.98958 590.10417,728.29167 590.8125,729.59375 z" | ||
2855 | id="path4149" | ||
2856 | sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccczzzcccccc" | ||
2857 | clip-path="url(#clipPath4177)" /> | ||
2858 | <path | ||
2859 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4130);enable-background:accumulate" | ||
2860 | d="M 735.05635,733.03834 L 737.81177,754.12715 L 782.2228,738.73894 L 787.07343,716.34919 L 783.13726,694.29697 L 760.68563,657.70396 L 752.40559,688.0089 L 735.05635,733.03834 z" | ||
2861 | id="path3902" | ||
2862 | sodipodi:nodetypes="cccccccc" | ||
2863 | clip-path="url(#clipPath3631)" | ||
2864 | transform="translate(276,136)" /> | ||
2865 | <path | ||
2866 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4141);enable-background:accumulate" | ||
2867 | d="M 831.81321,730.29452 L 847.63558,745.19938 L 868.49031,748.09932 L 866.90002,708.17334 L 875.22563,677.66492 L 868.06064,671.32386 L 846.36395,692.26626 L 831.81321,730.29452 z" | ||
2868 | id="path4135" | ||
2869 | sodipodi:nodetypes="cccccccc" | ||
2870 | clip-path="url(#clipPath3631)" | ||
2871 | transform="translate(276,136)" /> | ||
2872 | <g | ||
2873 | id="g8367" | ||
2874 | style="filter:url(#filter8379)" | ||
2875 | clip-path="url(#clipPath8392)" | ||
2876 | transform="translate(276,136)"> | ||
2877 | <path | ||
2878 | clip-path="none" | ||
2879 | sodipodi:nodetypes="ccccccc" | ||
2880 | id="path4145" | ||
2881 | d="M 910.14441,746.31415 L 942.75736,751.48808 L 942.39617,727.61189 L 949.5847,697.92968 L 941.13358,692.66603 L 919.31164,719.1768 L 910.14441,746.31415 z" | ||
2882 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2883 | <rect | ||
2884 | y="650.19098" | ||
2885 | x="877.51953" | ||
2886 | height="172.53406" | ||
2887 | width="123.03658" | ||
2888 | id="rect8365" | ||
2889 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:25;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2890 | </g> | ||
2891 | <g | ||
2892 | id="g8400" | ||
2893 | style="filter:url(#filter8404)" | ||
2894 | clip-path="url(#clipPath8417)" | ||
2895 | transform="translate(276,136)"> | ||
2896 | <path | ||
2897 | clip-path="none" | ||
2898 | sodipodi:nodetypes="ccccc" | ||
2899 | id="path4147" | ||
2900 | d="M 964.00012,754.69487 L 982.42893,762.15966 L 991.5,725.19519 L 976.62969,730.03405 L 964.00012,754.69487 z" | ||
2901 | style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2902 | <rect | ||
2903 | y="677.06104" | ||
2904 | x="924.89569" | ||
2905 | height="125.1579" | ||
2906 | width="142.12846" | ||
2907 | id="rect8398" | ||
2908 | style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:25;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> | ||
2909 | </g> | ||
2910 | </g> | ||
2911 | </svg> | ||
diff --git a/Documentation/logo.txt b/Documentation/logo.txt index a2e62445e28e..296f0f7f67eb 100644 --- a/Documentation/logo.txt +++ b/Documentation/logo.txt | |||
@@ -1,4 +1,13 @@ | |||
1 | Tux is taking a three month sabbatical to work as a barber, so Tuz is | 1 | This is the full-colour version of the currently unofficial Linux logo |
2 | standing in. He's taken pains to ensure you'll hardly notice. | 2 | ("currently unofficial" just means that there has been no paperwork and |
3 | that I have not really announced it yet). It was created by Larry Ewing, | ||
4 | and is freely usable as long as you acknowledge Larry as the original | ||
5 | artist. | ||
6 | |||
7 | Note that there are black-and-white versions of this available that | ||
8 | scale down to smaller sizes and are better for letterheads or whatever | ||
9 | you want to use it for: for the full range of logos take a look at | ||
10 | Larry's web-page: | ||
11 | |||
12 | http://www.isc.tamu.edu/~lewing/linux/ | ||
3 | 13 | ||
4 | Image by Andrew McGown and Josh Bush. Image is licensed CC BY-SA. | ||
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index 0ab0230cbcb0..d16b7a1c3793 100644 --- a/Documentation/powerpc/booting-without-of.txt +++ b/Documentation/powerpc/booting-without-of.txt | |||
@@ -43,12 +43,11 @@ Table of Contents | |||
43 | 2) Representing devices without a current OF specification | 43 | 2) Representing devices without a current OF specification |
44 | a) PHY nodes | 44 | a) PHY nodes |
45 | b) Interrupt controllers | 45 | b) Interrupt controllers |
46 | c) CFI or JEDEC memory-mapped NOR flash | 46 | c) 4xx/Axon EMAC ethernet nodes |
47 | d) 4xx/Axon EMAC ethernet nodes | 47 | d) Xilinx IP cores |
48 | e) Xilinx IP cores | 48 | e) USB EHCI controllers |
49 | f) USB EHCI controllers | 49 | f) MDIO on GPIOs |
50 | g) MDIO on GPIOs | 50 | g) SPI busses |
51 | h) SPI busses | ||
52 | 51 | ||
53 | VII - Marvell Discovery mv64[345]6x System Controller chips | 52 | VII - Marvell Discovery mv64[345]6x System Controller chips |
54 | 1) The /system-controller node | 53 | 1) The /system-controller node |
@@ -999,7 +998,7 @@ compatibility. | |||
999 | translation of SOC addresses for memory mapped SOC registers. | 998 | translation of SOC addresses for memory mapped SOC registers. |
1000 | - bus-frequency: Contains the bus frequency for the SOC node. | 999 | - bus-frequency: Contains the bus frequency for the SOC node. |
1001 | Typically, the value of this field is filled in by the boot | 1000 | Typically, the value of this field is filled in by the boot |
1002 | loader. | 1001 | loader. |
1003 | 1002 | ||
1004 | 1003 | ||
1005 | Recommended properties: | 1004 | Recommended properties: |
@@ -1287,71 +1286,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1287 | device_type = "open-pic"; | 1286 | device_type = "open-pic"; |
1288 | }; | 1287 | }; |
1289 | 1288 | ||
1290 | c) CFI or JEDEC memory-mapped NOR flash | 1289 | c) 4xx/Axon EMAC ethernet nodes |
1291 | |||
1292 | Flash chips (Memory Technology Devices) are often used for solid state | ||
1293 | file systems on embedded devices. | ||
1294 | |||
1295 | - compatible : should contain the specific model of flash chip(s) | ||
1296 | used, if known, followed by either "cfi-flash" or "jedec-flash" | ||
1297 | - reg : Address range of the flash chip | ||
1298 | - bank-width : Width (in bytes) of the flash bank. Equal to the | ||
1299 | device width times the number of interleaved chips. | ||
1300 | - device-width : (optional) Width of a single flash chip. If | ||
1301 | omitted, assumed to be equal to 'bank-width'. | ||
1302 | - #address-cells, #size-cells : Must be present if the flash has | ||
1303 | sub-nodes representing partitions (see below). In this case | ||
1304 | both #address-cells and #size-cells must be equal to 1. | ||
1305 | |||
1306 | For JEDEC compatible devices, the following additional properties | ||
1307 | are defined: | ||
1308 | |||
1309 | - vendor-id : Contains the flash chip's vendor id (1 byte). | ||
1310 | - device-id : Contains the flash chip's device id (1 byte). | ||
1311 | |||
1312 | In addition to the information on the flash bank itself, the | ||
1313 | device tree may optionally contain additional information | ||
1314 | describing partitions of the flash address space. This can be | ||
1315 | used on platforms which have strong conventions about which | ||
1316 | portions of the flash are used for what purposes, but which don't | ||
1317 | use an on-flash partition table such as RedBoot. | ||
1318 | |||
1319 | Each partition is represented as a sub-node of the flash device. | ||
1320 | Each node's name represents the name of the corresponding | ||
1321 | partition of the flash device. | ||
1322 | |||
1323 | Flash partitions | ||
1324 | - reg : The partition's offset and size within the flash bank. | ||
1325 | - label : (optional) The label / name for this flash partition. | ||
1326 | If omitted, the label is taken from the node name (excluding | ||
1327 | the unit address). | ||
1328 | - read-only : (optional) This parameter, if present, is a hint to | ||
1329 | Linux that this flash partition should only be mounted | ||
1330 | read-only. This is usually used for flash partitions | ||
1331 | containing early-boot firmware images or data which should not | ||
1332 | be clobbered. | ||
1333 | |||
1334 | Example: | ||
1335 | |||
1336 | flash@ff000000 { | ||
1337 | compatible = "amd,am29lv128ml", "cfi-flash"; | ||
1338 | reg = <ff000000 01000000>; | ||
1339 | bank-width = <4>; | ||
1340 | device-width = <1>; | ||
1341 | #address-cells = <1>; | ||
1342 | #size-cells = <1>; | ||
1343 | fs@0 { | ||
1344 | label = "fs"; | ||
1345 | reg = <0 f80000>; | ||
1346 | }; | ||
1347 | firmware@f80000 { | ||
1348 | label ="firmware"; | ||
1349 | reg = <f80000 80000>; | ||
1350 | read-only; | ||
1351 | }; | ||
1352 | }; | ||
1353 | |||
1354 | d) 4xx/Axon EMAC ethernet nodes | ||
1355 | 1290 | ||
1356 | The EMAC ethernet controller in IBM and AMCC 4xx chips, and also | 1291 | The EMAC ethernet controller in IBM and AMCC 4xx chips, and also |
1357 | the Axon bridge. To operate this needs to interact with a ths | 1292 | the Axon bridge. To operate this needs to interact with a ths |
@@ -1499,7 +1434,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1499 | available. | 1434 | available. |
1500 | For Axon: 0x0000012a | 1435 | For Axon: 0x0000012a |
1501 | 1436 | ||
1502 | e) Xilinx IP cores | 1437 | d) Xilinx IP cores |
1503 | 1438 | ||
1504 | The Xilinx EDK toolchain ships with a set of IP cores (devices) for use | 1439 | The Xilinx EDK toolchain ships with a set of IP cores (devices) for use |
1505 | in Xilinx Spartan and Virtex FPGAs. The devices cover the whole range | 1440 | in Xilinx Spartan and Virtex FPGAs. The devices cover the whole range |
@@ -1761,7 +1696,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1761 | listed above, nodes for these devices should include a phy-handle | 1696 | listed above, nodes for these devices should include a phy-handle |
1762 | property, and may include other common network device properties | 1697 | property, and may include other common network device properties |
1763 | like local-mac-address. | 1698 | like local-mac-address. |
1764 | 1699 | ||
1765 | iv) Xilinx Uartlite | 1700 | iv) Xilinx Uartlite |
1766 | 1701 | ||
1767 | Xilinx uartlite devices are simple fixed speed serial ports. | 1702 | Xilinx uartlite devices are simple fixed speed serial ports. |
@@ -1793,7 +1728,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1793 | - reg-offset : A value of 3 is required | 1728 | - reg-offset : A value of 3 is required |
1794 | - reg-shift : A value of 2 is required | 1729 | - reg-shift : A value of 2 is required |
1795 | 1730 | ||
1796 | f) USB EHCI controllers | 1731 | e) USB EHCI controllers |
1797 | 1732 | ||
1798 | Required properties: | 1733 | Required properties: |
1799 | - compatible : should be "usb-ehci". | 1734 | - compatible : should be "usb-ehci". |
@@ -1819,7 +1754,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1819 | big-endian; | 1754 | big-endian; |
1820 | }; | 1755 | }; |
1821 | 1756 | ||
1822 | g) MDIO on GPIOs | 1757 | f) MDIO on GPIOs |
1823 | 1758 | ||
1824 | Currently defined compatibles: | 1759 | Currently defined compatibles: |
1825 | - virtual,gpio-mdio | 1760 | - virtual,gpio-mdio |
@@ -1839,7 +1774,7 @@ platforms are moved over to use the flattened-device-tree model. | |||
1839 | &qe_pio_c 6>; | 1774 | &qe_pio_c 6>; |
1840 | }; | 1775 | }; |
1841 | 1776 | ||
1842 | h) SPI (Serial Peripheral Interface) busses | 1777 | g) SPI (Serial Peripheral Interface) busses |
1843 | 1778 | ||
1844 | SPI busses can be described with a node for the SPI master device | 1779 | SPI busses can be described with a node for the SPI master device |
1845 | and a set of child nodes for each SPI slave on the bus. For this | 1780 | and a set of child nodes for each SPI slave on the bus. For this |
diff --git a/Documentation/powerpc/dts-bindings/mtd-physmap.txt b/Documentation/powerpc/dts-bindings/mtd-physmap.txt new file mode 100644 index 000000000000..667c9bde8699 --- /dev/null +++ b/Documentation/powerpc/dts-bindings/mtd-physmap.txt | |||
@@ -0,0 +1,80 @@ | |||
1 | CFI or JEDEC memory-mapped NOR flash | ||
2 | |||
3 | Flash chips (Memory Technology Devices) are often used for solid state | ||
4 | file systems on embedded devices. | ||
5 | |||
6 | - compatible : should contain the specific model of flash chip(s) | ||
7 | used, if known, followed by either "cfi-flash" or "jedec-flash" | ||
8 | - reg : Address range(s) of the flash chip(s) | ||
9 | It's possible to (optionally) define multiple "reg" tuples so that | ||
10 | non-identical NOR chips can be described in one flash node. | ||
11 | - bank-width : Width (in bytes) of the flash bank. Equal to the | ||
12 | device width times the number of interleaved chips. | ||
13 | - device-width : (optional) Width of a single flash chip. If | ||
14 | omitted, assumed to be equal to 'bank-width'. | ||
15 | - #address-cells, #size-cells : Must be present if the flash has | ||
16 | sub-nodes representing partitions (see below). In this case | ||
17 | both #address-cells and #size-cells must be equal to 1. | ||
18 | |||
19 | For JEDEC compatible devices, the following additional properties | ||
20 | are defined: | ||
21 | |||
22 | - vendor-id : Contains the flash chip's vendor id (1 byte). | ||
23 | - device-id : Contains the flash chip's device id (1 byte). | ||
24 | |||
25 | In addition to the information on the flash bank itself, the | ||
26 | device tree may optionally contain additional information | ||
27 | describing partitions of the flash address space. This can be | ||
28 | used on platforms which have strong conventions about which | ||
29 | portions of the flash are used for what purposes, but which don't | ||
30 | use an on-flash partition table such as RedBoot. | ||
31 | |||
32 | Each partition is represented as a sub-node of the flash device. | ||
33 | Each node's name represents the name of the corresponding | ||
34 | partition of the flash device. | ||
35 | |||
36 | Flash partitions | ||
37 | - reg : The partition's offset and size within the flash bank. | ||
38 | - label : (optional) The label / name for this flash partition. | ||
39 | If omitted, the label is taken from the node name (excluding | ||
40 | the unit address). | ||
41 | - read-only : (optional) This parameter, if present, is a hint to | ||
42 | Linux that this flash partition should only be mounted | ||
43 | read-only. This is usually used for flash partitions | ||
44 | containing early-boot firmware images or data which should not | ||
45 | be clobbered. | ||
46 | |||
47 | Example: | ||
48 | |||
49 | flash@ff000000 { | ||
50 | compatible = "amd,am29lv128ml", "cfi-flash"; | ||
51 | reg = <ff000000 01000000>; | ||
52 | bank-width = <4>; | ||
53 | device-width = <1>; | ||
54 | #address-cells = <1>; | ||
55 | #size-cells = <1>; | ||
56 | fs@0 { | ||
57 | label = "fs"; | ||
58 | reg = <0 f80000>; | ||
59 | }; | ||
60 | firmware@f80000 { | ||
61 | label ="firmware"; | ||
62 | reg = <f80000 80000>; | ||
63 | read-only; | ||
64 | }; | ||
65 | }; | ||
66 | |||
67 | Here an example with multiple "reg" tuples: | ||
68 | |||
69 | flash@f0000000,0 { | ||
70 | #address-cells = <1>; | ||
71 | #size-cells = <1>; | ||
72 | compatible = "intel,PC48F4400P0VB", "cfi-flash"; | ||
73 | reg = <0 0x00000000 0x02000000 | ||
74 | 0 0x02000000 0x02000000>; | ||
75 | bank-width = <2>; | ||
76 | partition@0 { | ||
77 | label = "test-part1"; | ||
78 | reg = <0 0x04000000>; | ||
79 | }; | ||
80 | }; | ||
diff --git a/Documentation/spi/spi-summary b/Documentation/spi/spi-summary index 0f5122eb282b..4a02d2508bc8 100644 --- a/Documentation/spi/spi-summary +++ b/Documentation/spi/spi-summary | |||
@@ -511,10 +511,16 @@ SPI MASTER METHODS | |||
511 | This sets up the device clock rate, SPI mode, and word sizes. | 511 | This sets up the device clock rate, SPI mode, and word sizes. |
512 | Drivers may change the defaults provided by board_info, and then | 512 | Drivers may change the defaults provided by board_info, and then |
513 | call spi_setup(spi) to invoke this routine. It may sleep. | 513 | call spi_setup(spi) to invoke this routine. It may sleep. |
514 | |||
514 | Unless each SPI slave has its own configuration registers, don't | 515 | Unless each SPI slave has its own configuration registers, don't |
515 | change them right away ... otherwise drivers could corrupt I/O | 516 | change them right away ... otherwise drivers could corrupt I/O |
516 | that's in progress for other SPI devices. | 517 | that's in progress for other SPI devices. |
517 | 518 | ||
519 | ** BUG ALERT: for some reason the first version of | ||
520 | ** many spi_master drivers seems to get this wrong. | ||
521 | ** When you code setup(), ASSUME that the controller | ||
522 | ** is actively processing transfers for another device. | ||
523 | |||
518 | master->transfer(struct spi_device *spi, struct spi_message *message) | 524 | master->transfer(struct spi_device *spi, struct spi_message *message) |
519 | This must not sleep. Its responsibility is arrange that the | 525 | This must not sleep. Its responsibility is arrange that the |
520 | transfer happens and its complete() callback is issued. The two | 526 | transfer happens and its complete() callback is issued. The two |
diff --git a/MAINTAINERS b/MAINTAINERS index 6baace38b24d..c547f4a2bb62 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -1337,12 +1337,9 @@ L: cbe-oss-dev@ozlabs.org | |||
1337 | W: http://www.ibm.com/developerworks/power/cell/ | 1337 | W: http://www.ibm.com/developerworks/power/cell/ |
1338 | S: Supported | 1338 | S: Supported |
1339 | F: arch/powerpc/include/asm/cell*.h | 1339 | F: arch/powerpc/include/asm/cell*.h |
1340 | F: arch/powerpc/include/asm/lv1call.h | ||
1341 | F: arch/powerpc/include/asm/ps3*.h | ||
1342 | F: arch/powerpc/include/asm/spu*.h | 1340 | F: arch/powerpc/include/asm/spu*.h |
1343 | F: arch/powerpc/oprofile/*cell* | 1341 | F: arch/powerpc/oprofile/*cell* |
1344 | F: arch/powerpc/platforms/cell/ | 1342 | F: arch/powerpc/platforms/cell/ |
1345 | F: arch/powerpc/platforms/ps3/ | ||
1346 | 1343 | ||
1347 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: | 1344 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
1348 | P: David Vrabel | 1345 | P: David Vrabel |
@@ -2065,6 +2062,8 @@ F: drivers/infiniband/hw/ehca/ | |||
2065 | EMBEDDED LINUX | 2062 | EMBEDDED LINUX |
2066 | P: Paul Gortmaker | 2063 | P: Paul Gortmaker |
2067 | M: paul.gortmaker@windriver.com | 2064 | M: paul.gortmaker@windriver.com |
2065 | P: Matt Mackall | ||
2066 | M: mpm@selenic.com | ||
2068 | P: David Woodhouse | 2067 | P: David Woodhouse |
2069 | M: dwmw2@infradead.org | 2068 | M: dwmw2@infradead.org |
2070 | L: linux-embedded@vger.kernel.org | 2069 | L: linux-embedded@vger.kernel.org |
@@ -2562,7 +2561,6 @@ F: kernel/power/ | |||
2562 | F: include/linux/suspend.h | 2561 | F: include/linux/suspend.h |
2563 | F: include/linux/freezer.h | 2562 | F: include/linux/freezer.h |
2564 | F: include/linux/pm.h | 2563 | F: include/linux/pm.h |
2565 | F: include/asm-*/suspend*.h | ||
2566 | F: arch/*/include/asm/suspend*.h | 2564 | F: arch/*/include/asm/suspend*.h |
2567 | 2565 | ||
2568 | HID CORE LAYER | 2566 | HID CORE LAYER |
@@ -2760,7 +2758,7 @@ IDE SUBSYSTEM | |||
2760 | P: Bartlomiej Zolnierkiewicz | 2758 | P: Bartlomiej Zolnierkiewicz |
2761 | M: bzolnier@gmail.com | 2759 | M: bzolnier@gmail.com |
2762 | L: linux-ide@vger.kernel.org | 2760 | L: linux-ide@vger.kernel.org |
2763 | T: quilt kernel.org/pub/linux/kernel/people/bart/pata-2.6/ | 2761 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6.git |
2764 | S: Maintained | 2762 | S: Maintained |
2765 | F: Documentation/ide/ | 2763 | F: Documentation/ide/ |
2766 | F: drivers/ide/ | 2764 | F: drivers/ide/ |
@@ -3340,7 +3338,7 @@ P: Eduard - Gabriel Munteanu | |||
3340 | M: eduard.munteanu@linux360.ro | 3338 | M: eduard.munteanu@linux360.ro |
3341 | L: linux-kernel@vger.kernel.org | 3339 | L: linux-kernel@vger.kernel.org |
3342 | S: Maintained | 3340 | S: Maintained |
3343 | F: Documentation/vm/kmemtrace.txt | 3341 | F: Documentation/trace/kmemtrace.txt |
3344 | F: include/trace/kmemtrace.h | 3342 | F: include/trace/kmemtrace.h |
3345 | F: kernel/trace/kmemtrace.c | 3343 | F: kernel/trace/kmemtrace.c |
3346 | 3344 | ||
@@ -3450,7 +3448,7 @@ P: Matt Porter | |||
3450 | M: mporter@kernel.crashing.org | 3448 | M: mporter@kernel.crashing.org |
3451 | W: http://www.penguinppc.org/ | 3449 | W: http://www.penguinppc.org/ |
3452 | L: linuxppc-dev@ozlabs.org | 3450 | L: linuxppc-dev@ozlabs.org |
3453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc.git | 3451 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
3454 | S: Maintained | 3452 | S: Maintained |
3455 | 3453 | ||
3456 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX | 3454 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
@@ -3993,8 +3991,8 @@ NETWORKING [GENERAL] | |||
3993 | P: David S. Miller | 3991 | P: David S. Miller |
3994 | M: davem@davemloft.net | 3992 | M: davem@davemloft.net |
3995 | L: netdev@vger.kernel.org | 3993 | L: netdev@vger.kernel.org |
3996 | W: http://linux-net.osdl.org/ | 3994 | W: http://www.linuxfoundation.org/en/Net |
3997 | T: git kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6.git | 3995 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git |
3998 | S: Maintained | 3996 | S: Maintained |
3999 | F: net/ | 3997 | F: net/ |
4000 | F: include/net/ | 3998 | F: include/net/ |
@@ -4035,6 +4033,13 @@ F: net/wireless/ | |||
4035 | F: include/net/ieee80211* | 4033 | F: include/net/ieee80211* |
4036 | F: include/net/wireless.h | 4034 | F: include/net/wireless.h |
4037 | 4035 | ||
4036 | NETWORKING DRIVERS | ||
4037 | L: netdev@vger.kernel.org | ||
4038 | W: http://www.linuxfoundation.org/en/Net | ||
4039 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git | ||
4040 | S: Odd Fixes | ||
4041 | F: drivers/net/ | ||
4042 | |||
4038 | NETXEN (1/10) GbE SUPPORT | 4043 | NETXEN (1/10) GbE SUPPORT |
4039 | P: Dhananjay Phadke | 4044 | P: Dhananjay Phadke |
4040 | M: dhananjay@netxen.com | 4045 | M: dhananjay@netxen.com |
@@ -4506,7 +4511,9 @@ F: arch/powerpc/include/asm/ps3*.h | |||
4506 | F: arch/powerpc/platforms/ps3/ | 4511 | F: arch/powerpc/platforms/ps3/ |
4507 | F: drivers/*/ps3* | 4512 | F: drivers/*/ps3* |
4508 | F: drivers/ps3/ | 4513 | F: drivers/ps3/ |
4514 | F: drivers/rtc/rtc-ps3.c | ||
4509 | F: drivers/usb/host/*ps3.c | 4515 | F: drivers/usb/host/*ps3.c |
4516 | F: sound/ppc/snd_ps3* | ||
4510 | 4517 | ||
4511 | PS3VRAM DRIVER | 4518 | PS3VRAM DRIVER |
4512 | P: Jim Paris | 4519 | P: Jim Paris |
@@ -5404,7 +5411,6 @@ F: kernel/power/ | |||
5404 | F: include/linux/suspend.h | 5411 | F: include/linux/suspend.h |
5405 | F: include/linux/freezer.h | 5412 | F: include/linux/freezer.h |
5406 | F: include/linux/pm.h | 5413 | F: include/linux/pm.h |
5407 | F: include/asm-*/suspend.h | ||
5408 | 5414 | ||
5409 | SVGA HANDLING | 5415 | SVGA HANDLING |
5410 | P: Martin Mares | 5416 | P: Martin Mares |
@@ -5638,7 +5644,7 @@ L: uclinux-dev@uclinux.org (subscribers-only) | |||
5638 | S: Maintained | 5644 | S: Maintained |
5639 | F: arch/m68knommu/ | 5645 | F: arch/m68knommu/ |
5640 | 5646 | ||
5641 | UCLINUX FOR RENESAS H8/300 | 5647 | UCLINUX FOR RENESAS H8/300 (H8300) |
5642 | P: Yoshinori Sato | 5648 | P: Yoshinori Sato |
5643 | M: ysato@users.sourceforge.jp | 5649 | M: ysato@users.sourceforge.jp |
5644 | W: http://uclinux-h8.sourceforge.jp/ | 5650 | W: http://uclinux-h8.sourceforge.jp/ |
@@ -1,8 +1,8 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 30 | 3 | SUBLEVEL = 30 |
4 | EXTRAVERSION = -rc2 | 4 | EXTRAVERSION = -rc4 |
5 | NAME = Temporary Tasmanian Devil | 5 | NAME = Vindictive Armadillo |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
8 | # To see a list of typical targets execute "make help" | 8 | # To see a list of typical targets execute "make help" |
diff --git a/arch/alpha/include/asm/percpu.h b/arch/alpha/include/asm/percpu.h index 3495e8e00d70..e9e0bb5a23bf 100644 --- a/arch/alpha/include/asm/percpu.h +++ b/arch/alpha/include/asm/percpu.h | |||
@@ -73,6 +73,6 @@ extern unsigned long __per_cpu_offset[NR_CPUS]; | |||
73 | 73 | ||
74 | #endif /* SMP */ | 74 | #endif /* SMP */ |
75 | 75 | ||
76 | #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu_var(name) | 76 | #include <asm-generic/percpu.h> |
77 | 77 | ||
78 | #endif /* __ALPHA_PERCPU_H */ | 78 | #endif /* __ALPHA_PERCPU_H */ |
diff --git a/arch/alpha/kernel/head.S b/arch/alpha/kernel/head.S index 7ac1f1372c36..4bdd1d2ff353 100644 --- a/arch/alpha/kernel/head.S +++ b/arch/alpha/kernel/head.S | |||
@@ -7,10 +7,11 @@ | |||
7 | * the kernel global pointer and jump to the kernel entry-point. | 7 | * the kernel global pointer and jump to the kernel entry-point. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <linux/init.h> | ||
10 | #include <asm/system.h> | 11 | #include <asm/system.h> |
11 | #include <asm/asm-offsets.h> | 12 | #include <asm/asm-offsets.h> |
12 | 13 | ||
13 | .section .text.head, "ax" | 14 | __HEAD |
14 | .globl swapper_pg_dir | 15 | .globl swapper_pg_dir |
15 | .globl _stext | 16 | .globl _stext |
16 | swapper_pg_dir=SWAPPER_PGD | 17 | swapper_pg_dir=SWAPPER_PGD |
diff --git a/arch/alpha/kernel/vmlinux.lds.S b/arch/alpha/kernel/vmlinux.lds.S index ef37fc1acaea..b9d6568e5f7f 100644 --- a/arch/alpha/kernel/vmlinux.lds.S +++ b/arch/alpha/kernel/vmlinux.lds.S | |||
@@ -16,7 +16,7 @@ SECTIONS | |||
16 | 16 | ||
17 | _text = .; /* Text and read-only data */ | 17 | _text = .; /* Text and read-only data */ |
18 | .text : { | 18 | .text : { |
19 | *(.text.head) | 19 | HEAD_TEXT |
20 | TEXT_TEXT | 20 | TEXT_TEXT |
21 | SCHED_TEXT | 21 | SCHED_TEXT |
22 | LOCK_TEXT | 22 | LOCK_TEXT |
diff --git a/arch/arm/include/asm/unistd.h b/arch/arm/include/asm/unistd.h index 010618487cf1..94cc58ef61ae 100644 --- a/arch/arm/include/asm/unistd.h +++ b/arch/arm/include/asm/unistd.h | |||
@@ -387,6 +387,8 @@ | |||
387 | #define __NR_dup3 (__NR_SYSCALL_BASE+358) | 387 | #define __NR_dup3 (__NR_SYSCALL_BASE+358) |
388 | #define __NR_pipe2 (__NR_SYSCALL_BASE+359) | 388 | #define __NR_pipe2 (__NR_SYSCALL_BASE+359) |
389 | #define __NR_inotify_init1 (__NR_SYSCALL_BASE+360) | 389 | #define __NR_inotify_init1 (__NR_SYSCALL_BASE+360) |
390 | #define __NR_preadv (__NR_SYSCALL_BASE+361) | ||
391 | #define __NR_pwritev (__NR_SYSCALL_BASE+362) | ||
390 | 392 | ||
391 | /* | 393 | /* |
392 | * The following SWIs are ARM private. | 394 | * The following SWIs are ARM private. |
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index 9ca8d13f05f7..1680e9e9c831 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S | |||
@@ -370,6 +370,8 @@ | |||
370 | CALL(sys_dup3) | 370 | CALL(sys_dup3) |
371 | CALL(sys_pipe2) | 371 | CALL(sys_pipe2) |
372 | /* 360 */ CALL(sys_inotify_init1) | 372 | /* 360 */ CALL(sys_inotify_init1) |
373 | CALL(sys_preadv) | ||
374 | CALL(sys_pwritev) | ||
373 | #ifndef syscalls_counted | 375 | #ifndef syscalls_counted |
374 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls | 376 | .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls |
375 | #define syscalls_counted | 377 | #define syscalls_counted |
diff --git a/arch/arm/kernel/sys_oabi-compat.c b/arch/arm/kernel/sys_oabi-compat.c index e04173c7e621..d59a0cd537f0 100644 --- a/arch/arm/kernel/sys_oabi-compat.c +++ b/arch/arm/kernel/sys_oabi-compat.c | |||
@@ -177,21 +177,12 @@ asmlinkage long sys_oabi_fstatat64(int dfd, | |||
177 | int flag) | 177 | int flag) |
178 | { | 178 | { |
179 | struct kstat stat; | 179 | struct kstat stat; |
180 | int error = -EINVAL; | 180 | int error; |
181 | 181 | ||
182 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | 182 | error = vfs_fstatat(dfd, filename, &stat, flag); |
183 | goto out; | 183 | if (error) |
184 | 184 | return error; | |
185 | if (flag & AT_SYMLINK_NOFOLLOW) | 185 | return cp_oldabi_stat64(&stat, statbuf); |
186 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
187 | else | ||
188 | error = vfs_stat_fd(dfd, filename, &stat); | ||
189 | |||
190 | if (!error) | ||
191 | error = cp_oldabi_stat64(&stat, statbuf); | ||
192 | |||
193 | out: | ||
194 | return error; | ||
195 | } | 186 | } |
196 | 187 | ||
197 | struct oabi_flock64 { | 188 | struct oabi_flock64 { |
diff --git a/arch/arm/mach-at91/at91rm9200_time.c b/arch/arm/mach-at91/at91rm9200_time.c index 1ff1bda0a894..309f3511aa20 100644 --- a/arch/arm/mach-at91/at91rm9200_time.c +++ b/arch/arm/mach-at91/at91rm9200_time.c | |||
@@ -85,7 +85,7 @@ static struct irqaction at91rm9200_timer_irq = { | |||
85 | .handler = at91rm9200_timer_interrupt | 85 | .handler = at91rm9200_timer_interrupt |
86 | }; | 86 | }; |
87 | 87 | ||
88 | static cycle_t read_clk32k(void) | 88 | static cycle_t read_clk32k(struct clocksource *cs) |
89 | { | 89 | { |
90 | return read_CRTR(); | 90 | return read_CRTR(); |
91 | } | 91 | } |
diff --git a/arch/arm/mach-at91/at91sam926x_time.c b/arch/arm/mach-at91/at91sam926x_time.c index b63e1d5f1bad..4bd56aee4370 100644 --- a/arch/arm/mach-at91/at91sam926x_time.c +++ b/arch/arm/mach-at91/at91sam926x_time.c | |||
@@ -31,7 +31,7 @@ static u32 pit_cnt; /* access only w/system irq blocked */ | |||
31 | * Clocksource: just a monotonic counter of MCK/16 cycles. | 31 | * Clocksource: just a monotonic counter of MCK/16 cycles. |
32 | * We don't care whether or not PIT irqs are enabled. | 32 | * We don't care whether or not PIT irqs are enabled. |
33 | */ | 33 | */ |
34 | static cycle_t read_pit_clk(void) | 34 | static cycle_t read_pit_clk(struct clocksource *cs) |
35 | { | 35 | { |
36 | unsigned long flags; | 36 | unsigned long flags; |
37 | u32 elapsed; | 37 | u32 elapsed; |
diff --git a/arch/arm/mach-davinci/time.c b/arch/arm/mach-davinci/time.c index f8bcd29d17a6..6c227d4ba998 100644 --- a/arch/arm/mach-davinci/time.c +++ b/arch/arm/mach-davinci/time.c | |||
@@ -238,7 +238,7 @@ static void __init timer_init(void) | |||
238 | /* | 238 | /* |
239 | * clocksource | 239 | * clocksource |
240 | */ | 240 | */ |
241 | static cycle_t read_cycles(void) | 241 | static cycle_t read_cycles(struct clocksource *cs) |
242 | { | 242 | { |
243 | struct timer_s *t = &timers[TID_CLOCKSOURCE]; | 243 | struct timer_s *t = &timers[TID_CLOCKSOURCE]; |
244 | 244 | ||
diff --git a/arch/arm/mach-imx/include/mach/gpio.h b/arch/arm/mach-imx/include/mach/gpio.h index 502d5aa2c093..6c2942f82922 100644 --- a/arch/arm/mach-imx/include/mach/gpio.h +++ b/arch/arm/mach-imx/include/mach/gpio.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef _IMX_GPIO_H | 1 | #ifndef _IMX_GPIO_H |
2 | 2 | ||
3 | #include <linux/kernel.h> | 3 | #include <linux/kernel.h> |
4 | #include <mach/hardware.h> | ||
4 | #include <mach/imx-regs.h> | 5 | #include <mach/imx-regs.h> |
5 | 6 | ||
6 | #define IMX_GPIO_ALLOC_MODE_NORMAL 0 | 7 | #define IMX_GPIO_ALLOC_MODE_NORMAL 0 |
diff --git a/arch/arm/mach-imx/time.c b/arch/arm/mach-imx/time.c index aff0ebcfa847..5aef18b599e5 100644 --- a/arch/arm/mach-imx/time.c +++ b/arch/arm/mach-imx/time.c | |||
@@ -73,7 +73,7 @@ static void __init imx_timer_hardware_init(void) | |||
73 | IMX_TCTL(TIMER_BASE) = TCTL_FRR | TCTL_CLK_PCLK1 | TCTL_TEN; | 73 | IMX_TCTL(TIMER_BASE) = TCTL_FRR | TCTL_CLK_PCLK1 | TCTL_TEN; |
74 | } | 74 | } |
75 | 75 | ||
76 | cycle_t imx_get_cycles(void) | 76 | cycle_t imx_get_cycles(struct clocksource *cs) |
77 | { | 77 | { |
78 | return IMX_TCN(TIMER_BASE); | 78 | return IMX_TCN(TIMER_BASE); |
79 | } | 79 | } |
diff --git a/arch/arm/mach-ixp4xx/common.c b/arch/arm/mach-ixp4xx/common.c index f4656d2ac8a8..1e93dfee7543 100644 --- a/arch/arm/mach-ixp4xx/common.c +++ b/arch/arm/mach-ixp4xx/common.c | |||
@@ -401,7 +401,7 @@ void __init ixp4xx_sys_init(void) | |||
401 | /* | 401 | /* |
402 | * clocksource | 402 | * clocksource |
403 | */ | 403 | */ |
404 | cycle_t ixp4xx_get_cycles(void) | 404 | cycle_t ixp4xx_get_cycles(struct clocksource *cs) |
405 | { | 405 | { |
406 | return *IXP4XX_OSTS; | 406 | return *IXP4XX_OSTS; |
407 | } | 407 | } |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index 16dc9ea08393..eeb00240d784 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/mach/map.h> | 23 | #include <asm/mach/map.h> |
24 | #include <asm/mach/time.h> | 24 | #include <asm/mach/time.h> |
25 | #include <mach/kirkwood.h> | 25 | #include <mach/kirkwood.h> |
26 | #include <mach/bridge-regs.h> | ||
26 | #include <plat/cache-feroceon-l2.h> | 27 | #include <plat/cache-feroceon-l2.h> |
27 | #include <plat/ehci-orion.h> | 28 | #include <plat/ehci-orion.h> |
28 | #include <plat/mvsdio.h> | 29 | #include <plat/mvsdio.h> |
diff --git a/arch/arm/mach-kirkwood/include/mach/bridge-regs.h b/arch/arm/mach-kirkwood/include/mach/bridge-regs.h new file mode 100644 index 000000000000..4f7029f521cc --- /dev/null +++ b/arch/arm/mach-kirkwood/include/mach/bridge-regs.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-kirkwood/include/mach/bridge-regs.h | ||
3 | * | ||
4 | * Mbus-L to Mbus Bridge Registers | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #ifndef __ASM_ARCH_BRIDGE_REGS_H | ||
12 | #define __ASM_ARCH_BRIDGE_REGS_H | ||
13 | |||
14 | #include <mach/kirkwood.h> | ||
15 | |||
16 | #define CPU_CONTROL (BRIDGE_VIRT_BASE | 0x0104) | ||
17 | #define CPU_RESET 0x00000002 | ||
18 | |||
19 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
20 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
21 | |||
22 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
23 | #define SOFT_RESET 0x00000001 | ||
24 | |||
25 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
26 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
27 | #define BRIDGE_INT_TIMER0 0x0002 | ||
28 | #define BRIDGE_INT_TIMER1 0x0004 | ||
29 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | ||
30 | |||
31 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
32 | #define IRQ_CAUSE_LOW_OFF 0x0000 | ||
33 | #define IRQ_MASK_LOW_OFF 0x0004 | ||
34 | #define IRQ_CAUSE_HIGH_OFF 0x0010 | ||
35 | #define IRQ_MASK_HIGH_OFF 0x0014 | ||
36 | |||
37 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
38 | |||
39 | #define L2_CONFIG_REG (BRIDGE_VIRT_BASE | 0x0128) | ||
40 | #define L2_WRITETHROUGH 0x00000010 | ||
41 | |||
42 | #endif | ||
diff --git a/arch/arm/mach-kirkwood/include/mach/debug-macro.S b/arch/arm/mach-kirkwood/include/mach/debug-macro.S index c0cc5b5c82ac..a4a55c199d77 100644 --- a/arch/arm/mach-kirkwood/include/mach/debug-macro.S +++ b/arch/arm/mach-kirkwood/include/mach/debug-macro.S | |||
@@ -6,7 +6,7 @@ | |||
6 | * published by the Free Software Foundation. | 6 | * published by the Free Software Foundation. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <mach/kirkwood.h> | 9 | #include <mach/bridge-regs.h> |
10 | 10 | ||
11 | .macro addruart,rx | 11 | .macro addruart,rx |
12 | mrc p15, 0, \rx, c1, c0 | 12 | mrc p15, 0, \rx, c1, c0 |
diff --git a/arch/arm/mach-kirkwood/include/mach/entry-macro.S b/arch/arm/mach-kirkwood/include/mach/entry-macro.S index 83e0cba77b36..8939d36f893c 100644 --- a/arch/arm/mach-kirkwood/include/mach/entry-macro.S +++ b/arch/arm/mach-kirkwood/include/mach/entry-macro.S | |||
@@ -8,7 +8,7 @@ | |||
8 | * warranty of any kind, whether express or implied. | 8 | * warranty of any kind, whether express or implied. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <mach/kirkwood.h> | 11 | #include <mach/bridge-regs.h> |
12 | 12 | ||
13 | .macro disable_fiq | 13 | .macro disable_fiq |
14 | .endm | 14 | .endm |
diff --git a/arch/arm/mach-kirkwood/include/mach/kirkwood.h b/arch/arm/mach-kirkwood/include/mach/kirkwood.h index 38c986853590..b3e13958821d 100644 --- a/arch/arm/mach-kirkwood/include/mach/kirkwood.h +++ b/arch/arm/mach-kirkwood/include/mach/kirkwood.h | |||
@@ -44,44 +44,6 @@ | |||
44 | #define KIRKWOOD_PCIE_MEM_SIZE SZ_128M | 44 | #define KIRKWOOD_PCIE_MEM_SIZE SZ_128M |
45 | 45 | ||
46 | /* | 46 | /* |
47 | * MBUS bridge registers. | ||
48 | */ | ||
49 | #define BRIDGE_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x20000) | ||
50 | #define CPU_CONTROL (BRIDGE_VIRT_BASE | 0x0104) | ||
51 | #define CPU_RESET 0x00000002 | ||
52 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
53 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
54 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
55 | #define SOFT_RESET 0x00000001 | ||
56 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
57 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
58 | #define BRIDGE_INT_TIMER0 0x0002 | ||
59 | #define BRIDGE_INT_TIMER1 0x0004 | ||
60 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | ||
61 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
62 | #define IRQ_CAUSE_LOW_OFF 0x0000 | ||
63 | #define IRQ_MASK_LOW_OFF 0x0004 | ||
64 | #define IRQ_CAUSE_HIGH_OFF 0x0010 | ||
65 | #define IRQ_MASK_HIGH_OFF 0x0014 | ||
66 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
67 | #define L2_CONFIG_REG (BRIDGE_VIRT_BASE | 0x0128) | ||
68 | #define L2_WRITETHROUGH 0x00000010 | ||
69 | |||
70 | /* | ||
71 | * Supported devices and revisions. | ||
72 | */ | ||
73 | #define MV88F6281_DEV_ID 0x6281 | ||
74 | #define MV88F6281_REV_Z0 0 | ||
75 | #define MV88F6281_REV_A0 2 | ||
76 | |||
77 | #define MV88F6192_DEV_ID 0x6192 | ||
78 | #define MV88F6192_REV_Z0 0 | ||
79 | #define MV88F6192_REV_A0 2 | ||
80 | |||
81 | #define MV88F6180_DEV_ID 0x6180 | ||
82 | #define MV88F6180_REV_A0 2 | ||
83 | |||
84 | /* | ||
85 | * Register Map | 47 | * Register Map |
86 | */ | 48 | */ |
87 | #define DDR_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x00000) | 49 | #define DDR_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x00000) |
@@ -99,6 +61,8 @@ | |||
99 | #define UART1_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2100) | 61 | #define UART1_PHYS_BASE (DEV_BUS_PHYS_BASE | 0x2100) |
100 | #define UART1_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2100) | 62 | #define UART1_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2100) |
101 | 63 | ||
64 | #define BRIDGE_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x20000) | ||
65 | |||
102 | #define PCIE_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x40000) | 66 | #define PCIE_VIRT_BASE (KIRKWOOD_REGS_VIRT_BASE | 0x40000) |
103 | 67 | ||
104 | #define USB_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x50000) | 68 | #define USB_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x50000) |
@@ -119,5 +83,18 @@ | |||
119 | 83 | ||
120 | #define SDIO_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x90000) | 84 | #define SDIO_PHYS_BASE (KIRKWOOD_REGS_PHYS_BASE | 0x90000) |
121 | 85 | ||
86 | /* | ||
87 | * Supported devices and revisions. | ||
88 | */ | ||
89 | #define MV88F6281_DEV_ID 0x6281 | ||
90 | #define MV88F6281_REV_Z0 0 | ||
91 | #define MV88F6281_REV_A0 2 | ||
92 | |||
93 | #define MV88F6192_DEV_ID 0x6192 | ||
94 | #define MV88F6192_REV_Z0 0 | ||
95 | #define MV88F6192_REV_A0 2 | ||
96 | |||
97 | #define MV88F6180_DEV_ID 0x6180 | ||
98 | #define MV88F6180_REV_A0 2 | ||
122 | 99 | ||
123 | #endif | 100 | #endif |
diff --git a/arch/arm/mach-kirkwood/include/mach/system.h b/arch/arm/mach-kirkwood/include/mach/system.h index 23a1914c1da8..7568e95d279b 100644 --- a/arch/arm/mach-kirkwood/include/mach/system.h +++ b/arch/arm/mach-kirkwood/include/mach/system.h | |||
@@ -9,8 +9,7 @@ | |||
9 | #ifndef __ASM_ARCH_SYSTEM_H | 9 | #ifndef __ASM_ARCH_SYSTEM_H |
10 | #define __ASM_ARCH_SYSTEM_H | 10 | #define __ASM_ARCH_SYSTEM_H |
11 | 11 | ||
12 | #include <mach/hardware.h> | 12 | #include <mach/bridge-regs.h> |
13 | #include <mach/kirkwood.h> | ||
14 | 13 | ||
15 | static inline void arch_idle(void) | 14 | static inline void arch_idle(void) |
16 | { | 15 | { |
diff --git a/arch/arm/mach-kirkwood/irq.c b/arch/arm/mach-kirkwood/irq.c index 06083b23bb44..28020abf49e1 100644 --- a/arch/arm/mach-kirkwood/irq.c +++ b/arch/arm/mach-kirkwood/irq.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <mach/bridge-regs.h> | ||
15 | #include <plat/irq.h> | 16 | #include <plat/irq.h> |
16 | #include <asm/gpio.h> | 17 | #include <asm/gpio.h> |
17 | #include "common.h" | 18 | #include "common.h" |
diff --git a/arch/arm/mach-loki/addr-map.c b/arch/arm/mach-loki/addr-map.c index 0332d8f5c18c..b9537c97beba 100644 --- a/arch/arm/mach-loki/addr-map.c +++ b/arch/arm/mach-loki/addr-map.c | |||
@@ -38,6 +38,7 @@ | |||
38 | /* | 38 | /* |
39 | * CPU Address Decode Windows registers | 39 | * CPU Address Decode Windows registers |
40 | */ | 40 | */ |
41 | #define BRIDGE_REG(x) (BRIDGE_VIRT_BASE | (x)) | ||
41 | #define CPU_WIN_CTRL(n) BRIDGE_REG(0x000 | ((n) << 4)) | 42 | #define CPU_WIN_CTRL(n) BRIDGE_REG(0x000 | ((n) << 4)) |
42 | #define CPU_WIN_BASE(n) BRIDGE_REG(0x004 | ((n) << 4)) | 43 | #define CPU_WIN_BASE(n) BRIDGE_REG(0x004 | ((n) << 4)) |
43 | #define CPU_WIN_REMAP_LO(n) BRIDGE_REG(0x008 | ((n) << 4)) | 44 | #define CPU_WIN_REMAP_LO(n) BRIDGE_REG(0x008 | ((n) << 4)) |
diff --git a/arch/arm/mach-loki/include/mach/bridge-regs.h b/arch/arm/mach-loki/include/mach/bridge-regs.h new file mode 100644 index 000000000000..a3fabf70044f --- /dev/null +++ b/arch/arm/mach-loki/include/mach/bridge-regs.h | |||
@@ -0,0 +1,33 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-loki/include/mach/bridge-regs.h | ||
3 | * | ||
4 | * This file is licensed under the terms of the GNU General Public | ||
5 | * License version 2. This program is licensed "as is" without any | ||
6 | * warranty of any kind, whether express or implied. | ||
7 | */ | ||
8 | |||
9 | #ifndef __ASM_ARCH_BRIDGE_REGS_H | ||
10 | #define __ASM_ARCH_BRIDGE_REGS_H | ||
11 | |||
12 | #include <mach/loki.h> | ||
13 | |||
14 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
15 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
16 | |||
17 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
18 | #define SOFT_RESET 0x00000001 | ||
19 | |||
20 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
21 | |||
22 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
23 | #define BRIDGE_INT_TIMER0 0x0002 | ||
24 | #define BRIDGE_INT_TIMER1 0x0004 | ||
25 | #define BRIDGE_INT_TIMER1_CLR 0x0004 | ||
26 | |||
27 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
28 | #define IRQ_CAUSE_OFF 0x0000 | ||
29 | #define IRQ_MASK_OFF 0x0004 | ||
30 | |||
31 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
32 | |||
33 | #endif | ||
diff --git a/arch/arm/mach-loki/include/mach/entry-macro.S b/arch/arm/mach-loki/include/mach/entry-macro.S index 332af38ec13c..bc917ed3a62d 100644 --- a/arch/arm/mach-loki/include/mach/entry-macro.S +++ b/arch/arm/mach-loki/include/mach/entry-macro.S | |||
@@ -8,7 +8,7 @@ | |||
8 | * warranty of any kind, whether express or implied. | 8 | * warranty of any kind, whether express or implied. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <mach/loki.h> | 11 | #include <mach/bridge-regs.h> |
12 | 12 | ||
13 | .macro disable_fiq | 13 | .macro disable_fiq |
14 | .endm | 14 | .endm |
diff --git a/arch/arm/mach-loki/include/mach/loki.h b/arch/arm/mach-loki/include/mach/loki.h index c00af6ba5578..bfca7c265f43 100644 --- a/arch/arm/mach-loki/include/mach/loki.h +++ b/arch/arm/mach-loki/include/mach/loki.h | |||
@@ -58,20 +58,6 @@ | |||
58 | #define UART1_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2100) | 58 | #define UART1_VIRT_BASE (DEV_BUS_VIRT_BASE | 0x2100) |
59 | 59 | ||
60 | #define BRIDGE_VIRT_BASE (LOKI_REGS_VIRT_BASE | 0x20000) | 60 | #define BRIDGE_VIRT_BASE (LOKI_REGS_VIRT_BASE | 0x20000) |
61 | #define BRIDGE_REG(x) (BRIDGE_VIRT_BASE | (x)) | ||
62 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
63 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
64 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
65 | #define SOFT_RESET 0x00000001 | ||
66 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
67 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
68 | #define BRIDGE_INT_TIMER0 0x0002 | ||
69 | #define BRIDGE_INT_TIMER1 0x0004 | ||
70 | #define BRIDGE_INT_TIMER1_CLR 0x0004 | ||
71 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
72 | #define IRQ_CAUSE_OFF 0x0000 | ||
73 | #define IRQ_MASK_OFF 0x0004 | ||
74 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
75 | 61 | ||
76 | #define PCIE0_VIRT_BASE (LOKI_REGS_VIRT_BASE | 0x30000) | 62 | #define PCIE0_VIRT_BASE (LOKI_REGS_VIRT_BASE | 0x30000) |
77 | 63 | ||
diff --git a/arch/arm/mach-loki/include/mach/system.h b/arch/arm/mach-loki/include/mach/system.h index c1de36fe9b37..71895199a534 100644 --- a/arch/arm/mach-loki/include/mach/system.h +++ b/arch/arm/mach-loki/include/mach/system.h | |||
@@ -9,8 +9,7 @@ | |||
9 | #ifndef __ASM_ARCH_SYSTEM_H | 9 | #ifndef __ASM_ARCH_SYSTEM_H |
10 | #define __ASM_ARCH_SYSTEM_H | 10 | #define __ASM_ARCH_SYSTEM_H |
11 | 11 | ||
12 | #include <mach/hardware.h> | 12 | #include <mach/bridge-regs.h> |
13 | #include <mach/loki.h> | ||
14 | 13 | ||
15 | static inline void arch_idle(void) | 14 | static inline void arch_idle(void) |
16 | { | 15 | { |
diff --git a/arch/arm/mach-loki/irq.c b/arch/arm/mach-loki/irq.c index e1f97338d5b7..76b211bfcca2 100644 --- a/arch/arm/mach-loki/irq.c +++ b/arch/arm/mach-loki/irq.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/irq.h> | 13 | #include <linux/irq.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <mach/bridge-regs.h> | ||
15 | #include <plat/irq.h> | 16 | #include <plat/irq.h> |
16 | #include "common.h" | 17 | #include "common.h" |
17 | 18 | ||
diff --git a/arch/arm/mach-msm/timer.c b/arch/arm/mach-msm/timer.c index 444d9c0f5ca6..4855b8ca5101 100644 --- a/arch/arm/mach-msm/timer.c +++ b/arch/arm/mach-msm/timer.c | |||
@@ -57,12 +57,12 @@ static irqreturn_t msm_timer_interrupt(int irq, void *dev_id) | |||
57 | return IRQ_HANDLED; | 57 | return IRQ_HANDLED; |
58 | } | 58 | } |
59 | 59 | ||
60 | static cycle_t msm_gpt_read(void) | 60 | static cycle_t msm_gpt_read(struct clocksource *cs) |
61 | { | 61 | { |
62 | return readl(MSM_GPT_BASE + TIMER_COUNT_VAL); | 62 | return readl(MSM_GPT_BASE + TIMER_COUNT_VAL); |
63 | } | 63 | } |
64 | 64 | ||
65 | static cycle_t msm_dgt_read(void) | 65 | static cycle_t msm_dgt_read(struct clocksource *cs) |
66 | { | 66 | { |
67 | return readl(MSM_DGT_BASE + TIMER_COUNT_VAL) >> MSM_DGT_SHIFT; | 67 | return readl(MSM_DGT_BASE + TIMER_COUNT_VAL) >> MSM_DGT_SHIFT; |
68 | } | 68 | } |
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index a575daaa62d1..9ba595083dab 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/mach/map.h> | 20 | #include <asm/mach/map.h> |
21 | #include <asm/mach/time.h> | 21 | #include <asm/mach/time.h> |
22 | #include <mach/mv78xx0.h> | 22 | #include <mach/mv78xx0.h> |
23 | #include <mach/bridge-regs.h> | ||
23 | #include <plat/cache-feroceon-l2.h> | 24 | #include <plat/cache-feroceon-l2.h> |
24 | #include <plat/ehci-orion.h> | 25 | #include <plat/ehci-orion.h> |
25 | #include <plat/orion_nand.h> | 26 | #include <plat/orion_nand.h> |
diff --git a/arch/arm/mach-mv78xx0/include/mach/bridge-regs.h b/arch/arm/mach-mv78xx0/include/mach/bridge-regs.h new file mode 100644 index 000000000000..2d14c4fe294d --- /dev/null +++ b/arch/arm/mach-mv78xx0/include/mach/bridge-regs.h | |||
@@ -0,0 +1,39 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-mv78xx0/include/mach/bridge-regs.h | ||
3 | * | ||
4 | * This file is licensed under the terms of the GNU General Public | ||
5 | * License version 2. This program is licensed "as is" without any | ||
6 | * warranty of any kind, whether express or implied. | ||
7 | */ | ||
8 | |||
9 | #ifndef __ASM_ARCH_BRIDGE_REGS_H | ||
10 | #define __ASM_ARCH_BRIDGE_REGS_H | ||
11 | |||
12 | #include <mach/mv78xx0.h> | ||
13 | |||
14 | #define CPU_CONTROL (BRIDGE_VIRT_BASE | 0x0104) | ||
15 | #define L2_WRITETHROUGH 0x00020000 | ||
16 | |||
17 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
18 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
19 | |||
20 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
21 | #define SOFT_RESET 0x00000001 | ||
22 | |||
23 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
24 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
25 | #define BRIDGE_INT_TIMER0 0x0002 | ||
26 | #define BRIDGE_INT_TIMER1 0x0004 | ||
27 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | ||
28 | |||
29 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
30 | #define IRQ_CAUSE_ERR_OFF 0x0000 | ||
31 | #define IRQ_CAUSE_LOW_OFF 0x0004 | ||
32 | #define IRQ_CAUSE_HIGH_OFF 0x0008 | ||
33 | #define IRQ_MASK_ERR_OFF 0x000c | ||
34 | #define IRQ_MASK_LOW_OFF 0x0010 | ||
35 | #define IRQ_MASK_HIGH_OFF 0x0014 | ||
36 | |||
37 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
38 | |||
39 | #endif | ||
diff --git a/arch/arm/mach-mv78xx0/include/mach/entry-macro.S b/arch/arm/mach-mv78xx0/include/mach/entry-macro.S index fbfb2693ce6c..66ae2d29e773 100644 --- a/arch/arm/mach-mv78xx0/include/mach/entry-macro.S +++ b/arch/arm/mach-mv78xx0/include/mach/entry-macro.S | |||
@@ -8,7 +8,7 @@ | |||
8 | * warranty of any kind, whether express or implied. | 8 | * warranty of any kind, whether express or implied. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <mach/mv78xx0.h> | 11 | #include <mach/bridge-regs.h> |
12 | 12 | ||
13 | .macro disable_fiq | 13 | .macro disable_fiq |
14 | .endm | 14 | .endm |
diff --git a/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h b/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h index 582cffc733ad..d715b92b0908 100644 --- a/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h +++ b/arch/arm/mach-mv78xx0/include/mach/mv78xx0.h | |||
@@ -59,37 +59,6 @@ | |||
59 | * Core-specific peripheral registers. | 59 | * Core-specific peripheral registers. |
60 | */ | 60 | */ |
61 | #define BRIDGE_VIRT_BASE (MV78XX0_CORE_REGS_VIRT_BASE) | 61 | #define BRIDGE_VIRT_BASE (MV78XX0_CORE_REGS_VIRT_BASE) |
62 | #define CPU_CONTROL (BRIDGE_VIRT_BASE | 0x0104) | ||
63 | #define L2_WRITETHROUGH 0x00020000 | ||
64 | #define RSTOUTn_MASK (BRIDGE_VIRT_BASE | 0x0108) | ||
65 | #define SOFT_RESET_OUT_EN 0x00000004 | ||
66 | #define SYSTEM_SOFT_RESET (BRIDGE_VIRT_BASE | 0x010c) | ||
67 | #define SOFT_RESET 0x00000001 | ||
68 | #define BRIDGE_CAUSE (BRIDGE_VIRT_BASE | 0x0110) | ||
69 | #define BRIDGE_MASK (BRIDGE_VIRT_BASE | 0x0114) | ||
70 | #define BRIDGE_INT_TIMER0 0x0002 | ||
71 | #define BRIDGE_INT_TIMER1 0x0004 | ||
72 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | ||
73 | #define IRQ_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0200) | ||
74 | #define IRQ_CAUSE_ERR_OFF 0x0000 | ||
75 | #define IRQ_CAUSE_LOW_OFF 0x0004 | ||
76 | #define IRQ_CAUSE_HIGH_OFF 0x0008 | ||
77 | #define IRQ_MASK_ERR_OFF 0x000c | ||
78 | #define IRQ_MASK_LOW_OFF 0x0010 | ||
79 | #define IRQ_MASK_HIGH_OFF 0x0014 | ||
80 | #define TIMER_VIRT_BASE (BRIDGE_VIRT_BASE | 0x0300) | ||
81 | |||
82 | /* | ||
83 | * Supported devices and revisions. | ||
84 | */ | ||
85 | #define MV78X00_Z0_DEV_ID 0x6381 | ||
86 | #define MV78X00_REV_Z0 1 | ||
87 | |||
88 | #define MV78100_DEV_ID 0x7810 | ||
89 | #define MV78100_REV_A0 1 | ||
90 | |||
91 | #define MV78200_DEV_ID 0x7820 | ||
92 | #define MV78200_REV_A0 1 | ||
93 | 62 | ||
94 | /* | 63 | /* |
95 | * Register Map | 64 | * Register Map |
@@ -135,5 +104,16 @@ | |||
135 | 104 | ||
136 | #define SATA_PHYS_BASE (MV78XX0_REGS_PHYS_BASE | 0xa0000) | 105 | #define SATA_PHYS_BASE (MV78XX0_REGS_PHYS_BASE | 0xa0000) |
137 | 106 | ||
107 | /* | ||
108 | * Supported devices and revisions. | ||
109 | */ | ||
110 | #define MV78X00_Z0_DEV_ID 0x6381 | ||
111 | #define MV78X00_REV_Z0 1 | ||
112 | |||
113 | #define MV78100_DEV_ID 0x7810 | ||
114 | #define MV78100_REV_A0 1 | ||
115 | |||
116 | #define MV78200_DEV_ID 0x7820 | ||
117 | #define MV78200_REV_A0 1 | ||
138 | 118 | ||
139 | #endif | 119 | #endif |
diff --git a/arch/arm/mach-mv78xx0/include/mach/system.h b/arch/arm/mach-mv78xx0/include/mach/system.h index 1d6350b22d0b..66e7ce4e90bd 100644 --- a/arch/arm/mach-mv78xx0/include/mach/system.h +++ b/arch/arm/mach-mv78xx0/include/mach/system.h | |||
@@ -9,8 +9,7 @@ | |||
9 | #ifndef __ASM_ARCH_SYSTEM_H | 9 | #ifndef __ASM_ARCH_SYSTEM_H |
10 | #define __ASM_ARCH_SYSTEM_H | 10 | #define __ASM_ARCH_SYSTEM_H |
11 | 11 | ||
12 | #include <mach/hardware.h> | 12 | #include <mach/bridge-regs.h> |
13 | #include <mach/mv78xx0.h> | ||
14 | 13 | ||
15 | static inline void arch_idle(void) | 14 | static inline void arch_idle(void) |
16 | { | 15 | { |
diff --git a/arch/arm/mach-mv78xx0/irq.c b/arch/arm/mach-mv78xx0/irq.c index 30b7e4bcdbc7..f289b0ea7dcf 100644 --- a/arch/arm/mach-mv78xx0/irq.c +++ b/arch/arm/mach-mv78xx0/irq.c | |||
@@ -13,7 +13,7 @@ | |||
13 | #include <linux/pci.h> | 13 | #include <linux/pci.h> |
14 | #include <linux/irq.h> | 14 | #include <linux/irq.h> |
15 | #include <asm/gpio.h> | 15 | #include <asm/gpio.h> |
16 | #include <mach/mv78xx0.h> | 16 | #include <mach/bridge-regs.h> |
17 | #include <plat/irq.h> | 17 | #include <plat/irq.h> |
18 | #include "common.h" | 18 | #include "common.h" |
19 | 19 | ||
diff --git a/arch/arm/mach-netx/time.c b/arch/arm/mach-netx/time.c index f201fddb594f..82801dbf0579 100644 --- a/arch/arm/mach-netx/time.c +++ b/arch/arm/mach-netx/time.c | |||
@@ -104,7 +104,7 @@ static struct irqaction netx_timer_irq = { | |||
104 | .handler = netx_timer_interrupt, | 104 | .handler = netx_timer_interrupt, |
105 | }; | 105 | }; |
106 | 106 | ||
107 | cycle_t netx_get_cycles(void) | 107 | cycle_t netx_get_cycles(struct clocksource *cs) |
108 | { | 108 | { |
109 | return readl(NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE)); | 109 | return readl(NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE)); |
110 | } | 110 | } |
diff --git a/arch/arm/mach-ns9xxx/time-ns9360.c b/arch/arm/mach-ns9xxx/time-ns9360.c index 41df69721769..77281260358a 100644 --- a/arch/arm/mach-ns9xxx/time-ns9360.c +++ b/arch/arm/mach-ns9xxx/time-ns9360.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #define TIMER_CLOCKEVENT 1 | 25 | #define TIMER_CLOCKEVENT 1 |
26 | static u32 latch; | 26 | static u32 latch; |
27 | 27 | ||
28 | static cycle_t ns9360_clocksource_read(void) | 28 | static cycle_t ns9360_clocksource_read(struct clocksource *cs) |
29 | { | 29 | { |
30 | return __raw_readl(SYS_TR(TIMER_CLOCKSOURCE)); | 30 | return __raw_readl(SYS_TR(TIMER_CLOCKSOURCE)); |
31 | } | 31 | } |
diff --git a/arch/arm/mach-omap1/time.c b/arch/arm/mach-omap1/time.c index 495a32c287b4..4d56408d3cff 100644 --- a/arch/arm/mach-omap1/time.c +++ b/arch/arm/mach-omap1/time.c | |||
@@ -198,7 +198,7 @@ static struct irqaction omap_mpu_timer2_irq = { | |||
198 | .handler = omap_mpu_timer2_interrupt, | 198 | .handler = omap_mpu_timer2_interrupt, |
199 | }; | 199 | }; |
200 | 200 | ||
201 | static cycle_t mpu_read(void) | 201 | static cycle_t mpu_read(struct clocksource *cs) |
202 | { | 202 | { |
203 | return ~omap_mpu_timer_read(1); | 203 | return ~omap_mpu_timer_read(1); |
204 | } | 204 | } |
diff --git a/arch/arm/mach-omap2/timer-gp.c b/arch/arm/mach-omap2/timer-gp.c index 9fc13a2cc3f4..1cb2c0909c2b 100644 --- a/arch/arm/mach-omap2/timer-gp.c +++ b/arch/arm/mach-omap2/timer-gp.c | |||
@@ -138,7 +138,7 @@ static inline void __init omap2_gp_clocksource_init(void) {} | |||
138 | * clocksource | 138 | * clocksource |
139 | */ | 139 | */ |
140 | static struct omap_dm_timer *gpt_clocksource; | 140 | static struct omap_dm_timer *gpt_clocksource; |
141 | static cycle_t clocksource_read_cycles(void) | 141 | static cycle_t clocksource_read_cycles(struct clocksource *cs) |
142 | { | 142 | { |
143 | return (cycle_t)omap_dm_timer_read_counter(gpt_clocksource); | 143 | return (cycle_t)omap_dm_timer_read_counter(gpt_clocksource); |
144 | } | 144 | } |
diff --git a/arch/arm/mach-orion5x/addr-map.c b/arch/arm/mach-orion5x/addr-map.c index 719957e05d9e..c14d12137276 100644 --- a/arch/arm/mach-orion5x/addr-map.c +++ b/arch/arm/mach-orion5x/addr-map.c | |||
@@ -57,12 +57,14 @@ | |||
57 | /* | 57 | /* |
58 | * Helpers to get DDR bank info | 58 | * Helpers to get DDR bank info |
59 | */ | 59 | */ |
60 | #define ORION5X_DDR_REG(x) (ORION5X_DDR_VIRT_BASE | (x)) | ||
60 | #define DDR_BASE_CS(n) ORION5X_DDR_REG(0x1500 + ((n) << 3)) | 61 | #define DDR_BASE_CS(n) ORION5X_DDR_REG(0x1500 + ((n) << 3)) |
61 | #define DDR_SIZE_CS(n) ORION5X_DDR_REG(0x1504 + ((n) << 3)) | 62 | #define DDR_SIZE_CS(n) ORION5X_DDR_REG(0x1504 + ((n) << 3)) |
62 | 63 | ||
63 | /* | 64 | /* |
64 | * CPU Address Decode Windows registers | 65 | * CPU Address Decode Windows registers |
65 | */ | 66 | */ |
67 | #define ORION5X_BRIDGE_REG(x) (ORION5X_BRIDGE_VIRT_BASE | (x)) | ||
66 | #define CPU_WIN_CTRL(n) ORION5X_BRIDGE_REG(0x000 | ((n) << 4)) | 68 | #define CPU_WIN_CTRL(n) ORION5X_BRIDGE_REG(0x000 | ((n) << 4)) |
67 | #define CPU_WIN_BASE(n) ORION5X_BRIDGE_REG(0x004 | ((n) << 4)) | 69 | #define CPU_WIN_BASE(n) ORION5X_BRIDGE_REG(0x004 | ((n) << 4)) |
68 | #define CPU_WIN_REMAP_LO(n) ORION5X_BRIDGE_REG(0x008 | ((n) << 4)) | 70 | #define CPU_WIN_REMAP_LO(n) ORION5X_BRIDGE_REG(0x008 | ((n) << 4)) |
diff --git a/arch/arm/mach-orion5x/include/mach/bridge-regs.h b/arch/arm/mach-orion5x/include/mach/bridge-regs.h new file mode 100644 index 000000000000..be896e59d3e7 --- /dev/null +++ b/arch/arm/mach-orion5x/include/mach/bridge-regs.h | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-orion5x/include/mach/bridge-regs.h | ||
3 | * | ||
4 | * Orion CPU Bridge Registers | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public | ||
7 | * License version 2. This program is licensed "as is" without any | ||
8 | * warranty of any kind, whether express or implied. | ||
9 | */ | ||
10 | |||
11 | #ifndef __ASM_ARCH_BRIDGE_REGS_H | ||
12 | #define __ASM_ARCH_BRIDGE_REGS_H | ||
13 | |||
14 | #include <mach/orion5x.h> | ||
15 | |||
16 | #define CPU_CONF (ORION5X_BRIDGE_VIRT_BASE | 0x100) | ||
17 | |||
18 | #define CPU_CTRL (ORION5X_BRIDGE_VIRT_BASE | 0x104) | ||
19 | |||
20 | #define CPU_RESET_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x108) | ||
21 | #define WDT_RESET 0x0002 | ||
22 | |||
23 | #define CPU_SOFT_RESET (ORION5X_BRIDGE_VIRT_BASE | 0x10c) | ||
24 | |||
25 | #define POWER_MNG_CTRL_REG (ORION5X_BRIDGE_VIRT_BASE | 0x11C) | ||
26 | |||
27 | #define BRIDGE_CAUSE (ORION5X_BRIDGE_VIRT_BASE | 0x110) | ||
28 | #define WDT_INT_REQ 0x0008 | ||
29 | |||
30 | #define BRIDGE_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x114) | ||
31 | #define BRIDGE_INT_TIMER0 0x0002 | ||
32 | #define BRIDGE_INT_TIMER1 0x0004 | ||
33 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | ||
34 | |||
35 | #define MAIN_IRQ_CAUSE (ORION5X_BRIDGE_VIRT_BASE | 0x200) | ||
36 | |||
37 | #define MAIN_IRQ_MASK (ORION5X_BRIDGE_VIRT_BASE | 0x204) | ||
38 | |||
39 | #define TIMER_VIRT_BASE (ORION5X_BRIDGE_VIRT_BASE | 0x300) | ||
40 | |||
41 | #endif | ||
diff --git a/arch/arm/mach-orion5x/include/mach/entry-macro.S b/arch/arm/mach-orion5x/include/mach/entry-macro.S index 4351937035cd..d658992e5401 100644 --- a/arch/arm/mach-orion5x/include/mach/entry-macro.S +++ b/arch/arm/mach-orion5x/include/mach/entry-macro.S | |||
@@ -8,7 +8,7 @@ | |||
8 | * warranty of any kind, whether express or implied. | 8 | * warranty of any kind, whether express or implied. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <mach/orion5x.h> | 11 | #include <mach/bridge-regs.h> |
12 | 12 | ||
13 | .macro disable_fiq | 13 | .macro disable_fiq |
14 | .endm | 14 | .endm |
diff --git a/arch/arm/mach-orion5x/include/mach/orion5x.h b/arch/arm/mach-orion5x/include/mach/orion5x.h index 67bda31406dd..377a773ae53f 100644 --- a/arch/arm/mach-orion5x/include/mach/orion5x.h +++ b/arch/arm/mach-orion5x/include/mach/orion5x.h | |||
@@ -61,30 +61,10 @@ | |||
61 | #define ORION5X_PCI_MEM_SIZE SZ_128M | 61 | #define ORION5X_PCI_MEM_SIZE SZ_128M |
62 | 62 | ||
63 | /******************************************************************************* | 63 | /******************************************************************************* |
64 | * Supported Devices & Revisions | ||
65 | ******************************************************************************/ | ||
66 | /* Orion-1 (88F5181) and Orion-VoIP (88F5181L) */ | ||
67 | #define MV88F5181_DEV_ID 0x5181 | ||
68 | #define MV88F5181_REV_B1 3 | ||
69 | #define MV88F5181L_REV_A0 8 | ||
70 | #define MV88F5181L_REV_A1 9 | ||
71 | /* Orion-NAS (88F5182) */ | ||
72 | #define MV88F5182_DEV_ID 0x5182 | ||
73 | #define MV88F5182_REV_A2 2 | ||
74 | /* Orion-2 (88F5281) */ | ||
75 | #define MV88F5281_DEV_ID 0x5281 | ||
76 | #define MV88F5281_REV_D0 4 | ||
77 | #define MV88F5281_REV_D1 5 | ||
78 | #define MV88F5281_REV_D2 6 | ||
79 | /* Orion-1-90 (88F6183) */ | ||
80 | #define MV88F6183_DEV_ID 0x6183 | ||
81 | #define MV88F6183_REV_B0 3 | ||
82 | |||
83 | /******************************************************************************* | ||
84 | * Orion Registers Map | 64 | * Orion Registers Map |
85 | ******************************************************************************/ | 65 | ******************************************************************************/ |
66 | |||
86 | #define ORION5X_DDR_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x00000) | 67 | #define ORION5X_DDR_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x00000) |
87 | #define ORION5X_DDR_REG(x) (ORION5X_DDR_VIRT_BASE | (x)) | ||
88 | 68 | ||
89 | #define ORION5X_DEV_BUS_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x10000) | 69 | #define ORION5X_DEV_BUS_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x10000) |
90 | #define ORION5X_DEV_BUS_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x10000) | 70 | #define ORION5X_DEV_BUS_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x10000) |
@@ -97,34 +77,25 @@ | |||
97 | #define UART1_VIRT_BASE (ORION5X_DEV_BUS_VIRT_BASE | 0x2100) | 77 | #define UART1_VIRT_BASE (ORION5X_DEV_BUS_VIRT_BASE | 0x2100) |
98 | 78 | ||
99 | #define ORION5X_BRIDGE_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x20000) | 79 | #define ORION5X_BRIDGE_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x20000) |
100 | #define ORION5X_BRIDGE_REG(x) (ORION5X_BRIDGE_VIRT_BASE | (x)) | ||
101 | #define TIMER_VIRT_BASE (ORION5X_BRIDGE_VIRT_BASE | 0x300) | ||
102 | 80 | ||
103 | #define ORION5X_PCI_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x30000) | 81 | #define ORION5X_PCI_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x30000) |
104 | #define ORION5X_PCI_REG(x) (ORION5X_PCI_VIRT_BASE | (x)) | ||
105 | 82 | ||
106 | #define ORION5X_PCIE_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x40000) | 83 | #define ORION5X_PCIE_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x40000) |
107 | #define ORION5X_PCIE_REG(x) (ORION5X_PCIE_VIRT_BASE | (x)) | ||
108 | 84 | ||
109 | #define ORION5X_USB0_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x50000) | 85 | #define ORION5X_USB0_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x50000) |
110 | #define ORION5X_USB0_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x50000) | 86 | #define ORION5X_USB0_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x50000) |
111 | #define ORION5X_USB0_REG(x) (ORION5X_USB0_VIRT_BASE | (x)) | ||
112 | 87 | ||
113 | #define ORION5X_XOR_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x60900) | 88 | #define ORION5X_XOR_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x60900) |
114 | #define ORION5X_XOR_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x60900) | 89 | #define ORION5X_XOR_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x60900) |
115 | #define ORION5X_XOR_REG(x) (ORION5X_XOR_VIRT_BASE | (x)) | ||
116 | 90 | ||
117 | #define ORION5X_ETH_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x70000) | 91 | #define ORION5X_ETH_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x70000) |
118 | #define ORION5X_ETH_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x70000) | 92 | #define ORION5X_ETH_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x70000) |
119 | #define ORION5X_ETH_REG(x) (ORION5X_ETH_VIRT_BASE | (x)) | ||
120 | 93 | ||
121 | #define ORION5X_SATA_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x80000) | 94 | #define ORION5X_SATA_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0x80000) |
122 | #define ORION5X_SATA_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x80000) | 95 | #define ORION5X_SATA_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0x80000) |
123 | #define ORION5X_SATA_REG(x) (ORION5X_SATA_VIRT_BASE | (x)) | ||
124 | 96 | ||
125 | #define ORION5X_USB1_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0xa0000) | 97 | #define ORION5X_USB1_PHYS_BASE (ORION5X_REGS_PHYS_BASE | 0xa0000) |
126 | #define ORION5X_USB1_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0xa0000) | 98 | #define ORION5X_USB1_VIRT_BASE (ORION5X_REGS_VIRT_BASE | 0xa0000) |
127 | #define ORION5X_USB1_REG(x) (ORION5X_USB1_VIRT_BASE | (x)) | ||
128 | 99 | ||
129 | /******************************************************************************* | 100 | /******************************************************************************* |
130 | * Device Bus Registers | 101 | * Device Bus Registers |
@@ -142,23 +113,24 @@ | |||
142 | #define DEV_BUS_INT_CAUSE ORION5X_DEV_BUS_REG(0x4d0) | 113 | #define DEV_BUS_INT_CAUSE ORION5X_DEV_BUS_REG(0x4d0) |
143 | #define DEV_BUS_INT_MASK ORION5X_DEV_BUS_REG(0x4d4) | 114 | #define DEV_BUS_INT_MASK ORION5X_DEV_BUS_REG(0x4d4) |
144 | 115 | ||
145 | /*************************************************************************** | 116 | /******************************************************************************* |
146 | * Orion CPU Bridge Registers | 117 | * Supported Devices & Revisions |
147 | **************************************************************************/ | 118 | ******************************************************************************/ |
148 | #define CPU_CONF ORION5X_BRIDGE_REG(0x100) | 119 | /* Orion-1 (88F5181) and Orion-VoIP (88F5181L) */ |
149 | #define CPU_CTRL ORION5X_BRIDGE_REG(0x104) | 120 | #define MV88F5181_DEV_ID 0x5181 |
150 | #define CPU_RESET_MASK ORION5X_BRIDGE_REG(0x108) | 121 | #define MV88F5181_REV_B1 3 |
151 | #define WDT_RESET 0x0002 | 122 | #define MV88F5181L_REV_A0 8 |
152 | #define CPU_SOFT_RESET ORION5X_BRIDGE_REG(0x10c) | 123 | #define MV88F5181L_REV_A1 9 |
153 | #define POWER_MNG_CTRL_REG ORION5X_BRIDGE_REG(0x11C) | 124 | /* Orion-NAS (88F5182) */ |
154 | #define BRIDGE_CAUSE ORION5X_BRIDGE_REG(0x110) | 125 | #define MV88F5182_DEV_ID 0x5182 |
155 | #define WDT_INT_REQ 0x0008 | 126 | #define MV88F5182_REV_A2 2 |
156 | #define BRIDGE_MASK ORION5X_BRIDGE_REG(0x114) | 127 | /* Orion-2 (88F5281) */ |
157 | #define BRIDGE_INT_TIMER0 0x0002 | 128 | #define MV88F5281_DEV_ID 0x5281 |
158 | #define BRIDGE_INT_TIMER1 0x0004 | 129 | #define MV88F5281_REV_D0 4 |
159 | #define BRIDGE_INT_TIMER1_CLR (~0x0004) | 130 | #define MV88F5281_REV_D1 5 |
160 | #define MAIN_IRQ_CAUSE ORION5X_BRIDGE_REG(0x200) | 131 | #define MV88F5281_REV_D2 6 |
161 | #define MAIN_IRQ_MASK ORION5X_BRIDGE_REG(0x204) | 132 | /* Orion-1-90 (88F6183) */ |
162 | 133 | #define MV88F6183_DEV_ID 0x6183 | |
134 | #define MV88F6183_REV_B0 3 | ||
163 | 135 | ||
164 | #endif | 136 | #endif |
diff --git a/arch/arm/mach-orion5x/include/mach/system.h b/arch/arm/mach-orion5x/include/mach/system.h index 9b8db1dcfa83..e912490fff23 100644 --- a/arch/arm/mach-orion5x/include/mach/system.h +++ b/arch/arm/mach-orion5x/include/mach/system.h | |||
@@ -11,8 +11,7 @@ | |||
11 | #ifndef __ASM_ARCH_SYSTEM_H | 11 | #ifndef __ASM_ARCH_SYSTEM_H |
12 | #define __ASM_ARCH_SYSTEM_H | 12 | #define __ASM_ARCH_SYSTEM_H |
13 | 13 | ||
14 | #include <mach/hardware.h> | 14 | #include <mach/bridge-regs.h> |
15 | #include <mach/orion5x.h> | ||
16 | 15 | ||
17 | static inline void arch_idle(void) | 16 | static inline void arch_idle(void) |
18 | { | 17 | { |
diff --git a/arch/arm/mach-orion5x/irq.c b/arch/arm/mach-orion5x/irq.c index e03f7b45cb0d..d7512b925a85 100644 --- a/arch/arm/mach-orion5x/irq.c +++ b/arch/arm/mach-orion5x/irq.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/irq.h> | 15 | #include <linux/irq.h> |
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <asm/gpio.h> | 17 | #include <asm/gpio.h> |
18 | #include <mach/orion5x.h> | 18 | #include <mach/bridge-regs.h> |
19 | #include <plat/irq.h> | 19 | #include <plat/irq.h> |
20 | #include "common.h" | 20 | #include "common.h" |
21 | 21 | ||
diff --git a/arch/arm/mach-orion5x/mss2-setup.c b/arch/arm/mach-orion5x/mss2-setup.c index 68acca98e638..41e6d5033d54 100644 --- a/arch/arm/mach-orion5x/mss2-setup.c +++ b/arch/arm/mach-orion5x/mss2-setup.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <asm/mach/arch.h> | 26 | #include <asm/mach/arch.h> |
27 | #include <asm/mach/pci.h> | 27 | #include <asm/mach/pci.h> |
28 | #include <mach/orion5x.h> | 28 | #include <mach/orion5x.h> |
29 | #include <mach/bridge-regs.h> | ||
29 | #include "common.h" | 30 | #include "common.h" |
30 | #include "mpp.h" | 31 | #include "mpp.h" |
31 | 32 | ||
diff --git a/arch/arm/mach-orion5x/pci.c b/arch/arm/mach-orion5x/pci.c index d0a785a3b880..36dc5413cc97 100644 --- a/arch/arm/mach-orion5x/pci.c +++ b/arch/arm/mach-orion5x/pci.c | |||
@@ -196,6 +196,7 @@ static int __init pcie_setup(struct pci_sys_data *sys) | |||
196 | /***************************************************************************** | 196 | /***************************************************************************** |
197 | * PCI controller | 197 | * PCI controller |
198 | ****************************************************************************/ | 198 | ****************************************************************************/ |
199 | #define ORION5X_PCI_REG(x) (ORION5X_PCI_VIRT_BASE | (x)) | ||
199 | #define PCI_MODE ORION5X_PCI_REG(0xd00) | 200 | #define PCI_MODE ORION5X_PCI_REG(0xd00) |
200 | #define PCI_CMD ORION5X_PCI_REG(0xc00) | 201 | #define PCI_CMD ORION5X_PCI_REG(0xc00) |
201 | #define PCI_P2P_CONF ORION5X_PCI_REG(0x1d14) | 202 | #define PCI_P2P_CONF ORION5X_PCI_REG(0x1d14) |
diff --git a/arch/arm/mach-pxa/include/mach/audio.h b/arch/arm/mach-pxa/include/mach/audio.h index f82f96dd1053..16eb02552d5d 100644 --- a/arch/arm/mach-pxa/include/mach/audio.h +++ b/arch/arm/mach-pxa/include/mach/audio.h | |||
@@ -4,12 +4,22 @@ | |||
4 | #include <sound/core.h> | 4 | #include <sound/core.h> |
5 | #include <sound/pcm.h> | 5 | #include <sound/pcm.h> |
6 | 6 | ||
7 | /* | ||
8 | * @reset_gpio: AC97 reset gpio (normally gpio113 or gpio95) | ||
9 | * a -1 value means no gpio will be used for reset | ||
10 | |||
11 | * reset_gpio should only be specified for pxa27x CPUs where a silicon | ||
12 | * bug prevents correct operation of the reset line. If not specified, | ||
13 | * the default behaviour on these CPUs is to consider gpio 113 as the | ||
14 | * AC97 reset line, which is the default on most boards. | ||
15 | */ | ||
7 | typedef struct { | 16 | typedef struct { |
8 | int (*startup)(struct snd_pcm_substream *, void *); | 17 | int (*startup)(struct snd_pcm_substream *, void *); |
9 | void (*shutdown)(struct snd_pcm_substream *, void *); | 18 | void (*shutdown)(struct snd_pcm_substream *, void *); |
10 | void (*suspend)(void *); | 19 | void (*suspend)(void *); |
11 | void (*resume)(void *); | 20 | void (*resume)(void *); |
12 | void *priv; | 21 | void *priv; |
22 | int reset_gpio; | ||
13 | } pxa2xx_audio_ops_t; | 23 | } pxa2xx_audio_ops_t; |
14 | 24 | ||
15 | extern void pxa_set_ac97_info(pxa2xx_audio_ops_t *ops); | 25 | extern void pxa_set_ac97_info(pxa2xx_audio_ops_t *ops); |
diff --git a/arch/arm/mach-pxa/include/mach/palmasoc.h b/arch/arm/mach-pxa/include/mach/palmasoc.h index 6c4b1f7de20a..58afb30d5298 100644 --- a/arch/arm/mach-pxa/include/mach/palmasoc.h +++ b/arch/arm/mach-pxa/include/mach/palmasoc.h | |||
@@ -1,13 +1,8 @@ | |||
1 | #ifndef _INCLUDE_PALMASOC_H_ | 1 | #ifndef _INCLUDE_PALMASOC_H_ |
2 | #define _INCLUDE_PALMASOC_H_ | 2 | #define _INCLUDE_PALMASOC_H_ |
3 | |||
3 | struct palm27x_asoc_info { | 4 | struct palm27x_asoc_info { |
4 | int jack_gpio; | 5 | int jack_gpio; |
5 | }; | 6 | }; |
6 | 7 | ||
7 | #ifdef CONFIG_SND_PXA2XX_SOC_PALM27X | ||
8 | void __init palm27x_asoc_set_pdata(struct palm27x_asoc_info *data); | ||
9 | #else | ||
10 | static inline void palm27x_asoc_set_pdata(struct palm27x_asoc_info *data) {} | ||
11 | #endif | ||
12 | |||
13 | #endif | 8 | #endif |
diff --git a/arch/arm/mach-pxa/mioa701.c b/arch/arm/mach-pxa/mioa701.c index 9203b069b35c..ff8052ce0a05 100644 --- a/arch/arm/mach-pxa/mioa701.c +++ b/arch/arm/mach-pxa/mioa701.c | |||
@@ -742,6 +742,10 @@ struct i2c_pxa_platform_data i2c_pdata = { | |||
742 | .fast_mode = 1, | 742 | .fast_mode = 1, |
743 | }; | 743 | }; |
744 | 744 | ||
745 | static pxa2xx_audio_ops_t mioa701_ac97_info = { | ||
746 | .reset_gpio = 95, | ||
747 | }; | ||
748 | |||
745 | /* | 749 | /* |
746 | * Mio global | 750 | * Mio global |
747 | */ | 751 | */ |
@@ -815,7 +819,7 @@ static void __init mioa701_machine_init(void) | |||
815 | pxa_set_keypad_info(&mioa701_keypad_info); | 819 | pxa_set_keypad_info(&mioa701_keypad_info); |
816 | wm97xx_bat_set_pdata(&mioa701_battery_data); | 820 | wm97xx_bat_set_pdata(&mioa701_battery_data); |
817 | pxa_set_udc_info(&mioa701_udc_info); | 821 | pxa_set_udc_info(&mioa701_udc_info); |
818 | pxa_set_ac97_info(NULL); | 822 | pxa_set_ac97_info(&mioa701_ac97_info); |
819 | pm_power_off = mioa701_poweroff; | 823 | pm_power_off = mioa701_poweroff; |
820 | arm_pm_restart = mioa701_restart; | 824 | arm_pm_restart = mioa701_restart; |
821 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 825 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
diff --git a/arch/arm/mach-pxa/palmld.c b/arch/arm/mach-pxa/palmld.c index ecf5910e39d7..1cec1806f002 100644 --- a/arch/arm/mach-pxa/palmld.c +++ b/arch/arm/mach-pxa/palmld.c | |||
@@ -477,10 +477,22 @@ static struct wm97xx_batt_info wm97xx_batt_pdata = { | |||
477 | /****************************************************************************** | 477 | /****************************************************************************** |
478 | * aSoC audio | 478 | * aSoC audio |
479 | ******************************************************************************/ | 479 | ******************************************************************************/ |
480 | static struct palm27x_asoc_info palm27x_asoc_pdata = { | 480 | static struct palm27x_asoc_info palmld_asoc_pdata = { |
481 | .jack_gpio = GPIO_NR_PALMLD_EARPHONE_DETECT, | 481 | .jack_gpio = GPIO_NR_PALMLD_EARPHONE_DETECT, |
482 | }; | 482 | }; |
483 | 483 | ||
484 | static pxa2xx_audio_ops_t palmld_ac97_pdata = { | ||
485 | .reset_gpio = 95, | ||
486 | }; | ||
487 | |||
488 | static struct platform_device palmld_asoc = { | ||
489 | .name = "palm27x-asoc", | ||
490 | .id = -1, | ||
491 | .dev = { | ||
492 | .platform_data = &palmld_asoc_pdata, | ||
493 | }, | ||
494 | }; | ||
495 | |||
484 | /****************************************************************************** | 496 | /****************************************************************************** |
485 | * Framebuffer | 497 | * Framebuffer |
486 | ******************************************************************************/ | 498 | ******************************************************************************/ |
@@ -544,6 +556,7 @@ static struct platform_device *devices[] __initdata = { | |||
544 | &palmld_backlight, | 556 | &palmld_backlight, |
545 | &palmld_leds, | 557 | &palmld_leds, |
546 | &power_supply, | 558 | &power_supply, |
559 | &palmld_asoc, | ||
547 | }; | 560 | }; |
548 | 561 | ||
549 | static struct map_desc palmld_io_desc[] __initdata = { | 562 | static struct map_desc palmld_io_desc[] __initdata = { |
@@ -573,11 +586,10 @@ static void __init palmld_init(void) | |||
573 | 586 | ||
574 | set_pxa_fb_info(&palmld_lcd_screen); | 587 | set_pxa_fb_info(&palmld_lcd_screen); |
575 | pxa_set_mci_info(&palmld_mci_platform_data); | 588 | pxa_set_mci_info(&palmld_mci_platform_data); |
576 | pxa_set_ac97_info(NULL); | 589 | pxa_set_ac97_info(&palmld_ac97_pdata); |
577 | pxa_set_ficp_info(&palmld_ficp_platform_data); | 590 | pxa_set_ficp_info(&palmld_ficp_platform_data); |
578 | pxa_set_keypad_info(&palmld_keypad_platform_data); | 591 | pxa_set_keypad_info(&palmld_keypad_platform_data); |
579 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); | 592 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); |
580 | palm27x_asoc_set_pdata(&palm27x_asoc_pdata); | ||
581 | 593 | ||
582 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 594 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
583 | } | 595 | } |
diff --git a/arch/arm/mach-pxa/palmt5.c b/arch/arm/mach-pxa/palmt5.c index d7f81068c613..30662363907b 100644 --- a/arch/arm/mach-pxa/palmt5.c +++ b/arch/arm/mach-pxa/palmt5.c | |||
@@ -420,10 +420,22 @@ static struct wm97xx_batt_info wm97xx_batt_pdata = { | |||
420 | /****************************************************************************** | 420 | /****************************************************************************** |
421 | * aSoC audio | 421 | * aSoC audio |
422 | ******************************************************************************/ | 422 | ******************************************************************************/ |
423 | static struct palm27x_asoc_info palm27x_asoc_pdata = { | 423 | static struct palm27x_asoc_info palmt5_asoc_pdata = { |
424 | .jack_gpio = GPIO_NR_PALMT5_EARPHONE_DETECT, | 424 | .jack_gpio = GPIO_NR_PALMT5_EARPHONE_DETECT, |
425 | }; | 425 | }; |
426 | 426 | ||
427 | static pxa2xx_audio_ops_t palmt5_ac97_pdata = { | ||
428 | .reset_gpio = 95, | ||
429 | }; | ||
430 | |||
431 | static struct platform_device palmt5_asoc = { | ||
432 | .name = "palm27x-asoc", | ||
433 | .id = -1, | ||
434 | .dev = { | ||
435 | .platform_data = &palmt5_asoc_pdata, | ||
436 | }, | ||
437 | }; | ||
438 | |||
427 | /****************************************************************************** | 439 | /****************************************************************************** |
428 | * Framebuffer | 440 | * Framebuffer |
429 | ******************************************************************************/ | 441 | ******************************************************************************/ |
@@ -486,6 +498,7 @@ static struct platform_device *devices[] __initdata = { | |||
486 | #endif | 498 | #endif |
487 | &palmt5_backlight, | 499 | &palmt5_backlight, |
488 | &power_supply, | 500 | &power_supply, |
501 | &palmt5_asoc, | ||
489 | }; | 502 | }; |
490 | 503 | ||
491 | /* setup udc GPIOs initial state */ | 504 | /* setup udc GPIOs initial state */ |
@@ -504,12 +517,11 @@ static void __init palmt5_init(void) | |||
504 | set_pxa_fb_info(&palmt5_lcd_screen); | 517 | set_pxa_fb_info(&palmt5_lcd_screen); |
505 | pxa_set_mci_info(&palmt5_mci_platform_data); | 518 | pxa_set_mci_info(&palmt5_mci_platform_data); |
506 | palmt5_udc_init(); | 519 | palmt5_udc_init(); |
520 | pxa_set_ac97_info(&palmt5_ac97_pdata); | ||
507 | pxa_set_udc_info(&palmt5_udc_info); | 521 | pxa_set_udc_info(&palmt5_udc_info); |
508 | pxa_set_ac97_info(NULL); | ||
509 | pxa_set_ficp_info(&palmt5_ficp_platform_data); | 522 | pxa_set_ficp_info(&palmt5_ficp_platform_data); |
510 | pxa_set_keypad_info(&palmt5_keypad_platform_data); | 523 | pxa_set_keypad_info(&palmt5_keypad_platform_data); |
511 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); | 524 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); |
512 | palm27x_asoc_set_pdata(&palm27x_asoc_pdata); | ||
513 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 525 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
514 | } | 526 | } |
515 | 527 | ||
diff --git a/arch/arm/mach-pxa/palmtx.c b/arch/arm/mach-pxa/palmtx.c index 14393d0ad8b8..e2d44b1a8a9b 100644 --- a/arch/arm/mach-pxa/palmtx.c +++ b/arch/arm/mach-pxa/palmtx.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <mach/irda.h> | 40 | #include <mach/irda.h> |
41 | #include <mach/pxa27x_keypad.h> | 41 | #include <mach/pxa27x_keypad.h> |
42 | #include <mach/udc.h> | 42 | #include <mach/udc.h> |
43 | #include <mach/palmasoc.h> | ||
43 | 44 | ||
44 | #include "generic.h" | 45 | #include "generic.h" |
45 | #include "devices.h" | 46 | #include "devices.h" |
@@ -434,6 +435,25 @@ static struct wm97xx_batt_info wm97xx_batt_pdata = { | |||
434 | }; | 435 | }; |
435 | 436 | ||
436 | /****************************************************************************** | 437 | /****************************************************************************** |
438 | * aSoC audio | ||
439 | ******************************************************************************/ | ||
440 | static struct palm27x_asoc_info palmtx_asoc_pdata = { | ||
441 | .jack_gpio = GPIO_NR_PALMTX_EARPHONE_DETECT, | ||
442 | }; | ||
443 | |||
444 | static pxa2xx_audio_ops_t palmtx_ac97_pdata = { | ||
445 | .reset_gpio = 95, | ||
446 | }; | ||
447 | |||
448 | static struct platform_device palmtx_asoc = { | ||
449 | .name = "palm27x-asoc", | ||
450 | .id = -1, | ||
451 | .dev = { | ||
452 | .platform_data = &palmtx_asoc_pdata, | ||
453 | }, | ||
454 | }; | ||
455 | |||
456 | /****************************************************************************** | ||
437 | * Framebuffer | 457 | * Framebuffer |
438 | ******************************************************************************/ | 458 | ******************************************************************************/ |
439 | static struct pxafb_mode_info palmtx_lcd_modes[] = { | 459 | static struct pxafb_mode_info palmtx_lcd_modes[] = { |
@@ -495,6 +515,7 @@ static struct platform_device *devices[] __initdata = { | |||
495 | #endif | 515 | #endif |
496 | &palmtx_backlight, | 516 | &palmtx_backlight, |
497 | &power_supply, | 517 | &power_supply, |
518 | &palmtx_asoc, | ||
498 | }; | 519 | }; |
499 | 520 | ||
500 | static struct map_desc palmtx_io_desc[] __initdata = { | 521 | static struct map_desc palmtx_io_desc[] __initdata = { |
@@ -529,8 +550,8 @@ static void __init palmtx_init(void) | |||
529 | set_pxa_fb_info(&palmtx_lcd_screen); | 550 | set_pxa_fb_info(&palmtx_lcd_screen); |
530 | pxa_set_mci_info(&palmtx_mci_platform_data); | 551 | pxa_set_mci_info(&palmtx_mci_platform_data); |
531 | palmtx_udc_init(); | 552 | palmtx_udc_init(); |
553 | pxa_set_ac97_info(&palmtx_ac97_pdata); | ||
532 | pxa_set_udc_info(&palmtx_udc_info); | 554 | pxa_set_udc_info(&palmtx_udc_info); |
533 | pxa_set_ac97_info(NULL); | ||
534 | pxa_set_ficp_info(&palmtx_ficp_platform_data); | 555 | pxa_set_ficp_info(&palmtx_ficp_platform_data); |
535 | pxa_set_keypad_info(&palmtx_keypad_platform_data); | 556 | pxa_set_keypad_info(&palmtx_keypad_platform_data); |
536 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); | 557 | wm97xx_bat_set_pdata(&wm97xx_batt_pdata); |
diff --git a/arch/arm/mach-pxa/pcm990-baseboard.c b/arch/arm/mach-pxa/pcm990-baseboard.c index 6112740b4ae9..6c12b5a3132f 100644 --- a/arch/arm/mach-pxa/pcm990-baseboard.c +++ b/arch/arm/mach-pxa/pcm990-baseboard.c | |||
@@ -377,7 +377,7 @@ struct pxacamera_platform_data pcm990_pxacamera_platform_data = { | |||
377 | #include <linux/i2c/pca953x.h> | 377 | #include <linux/i2c/pca953x.h> |
378 | 378 | ||
379 | static struct pca953x_platform_data pca9536_data = { | 379 | static struct pca953x_platform_data pca9536_data = { |
380 | .gpio_base = NR_BUILTIN_GPIO + 1, | 380 | .gpio_base = NR_BUILTIN_GPIO, |
381 | }; | 381 | }; |
382 | 382 | ||
383 | static int gpio_bus_switch; | 383 | static int gpio_bus_switch; |
@@ -405,9 +405,9 @@ static unsigned long pcm990_camera_query_bus_param(struct soc_camera_link *link) | |||
405 | int ret; | 405 | int ret; |
406 | 406 | ||
407 | if (!gpio_bus_switch) { | 407 | if (!gpio_bus_switch) { |
408 | ret = gpio_request(NR_BUILTIN_GPIO + 1, "camera"); | 408 | ret = gpio_request(NR_BUILTIN_GPIO, "camera"); |
409 | if (!ret) { | 409 | if (!ret) { |
410 | gpio_bus_switch = NR_BUILTIN_GPIO + 1; | 410 | gpio_bus_switch = NR_BUILTIN_GPIO; |
411 | gpio_direction_output(gpio_bus_switch, 0); | 411 | gpio_direction_output(gpio_bus_switch, 0); |
412 | } else | 412 | } else |
413 | gpio_bus_switch = -EINVAL; | 413 | gpio_bus_switch = -EINVAL; |
diff --git a/arch/arm/mach-pxa/time.c b/arch/arm/mach-pxa/time.c index 8eb3830fbb0b..750c448db672 100644 --- a/arch/arm/mach-pxa/time.c +++ b/arch/arm/mach-pxa/time.c | |||
@@ -125,7 +125,7 @@ static struct clock_event_device ckevt_pxa_osmr0 = { | |||
125 | .set_mode = pxa_osmr0_set_mode, | 125 | .set_mode = pxa_osmr0_set_mode, |
126 | }; | 126 | }; |
127 | 127 | ||
128 | static cycle_t pxa_read_oscr(void) | 128 | static cycle_t pxa_read_oscr(struct clocksource *cs) |
129 | { | 129 | { |
130 | return OSCR; | 130 | return OSCR; |
131 | } | 131 | } |
diff --git a/arch/arm/mach-realview/core.c b/arch/arm/mach-realview/core.c index 9ab947c14f26..942e1a7eb9b2 100644 --- a/arch/arm/mach-realview/core.c +++ b/arch/arm/mach-realview/core.c | |||
@@ -715,7 +715,7 @@ static struct irqaction realview_timer_irq = { | |||
715 | .handler = realview_timer_interrupt, | 715 | .handler = realview_timer_interrupt, |
716 | }; | 716 | }; |
717 | 717 | ||
718 | static cycle_t realview_get_cycles(void) | 718 | static cycle_t realview_get_cycles(struct clocksource *cs) |
719 | { | 719 | { |
720 | return ~readl(timer3_va_base + TIMER_VALUE); | 720 | return ~readl(timer3_va_base + TIMER_VALUE); |
721 | } | 721 | } |
diff --git a/arch/arm/mach-versatile/core.c b/arch/arm/mach-versatile/core.c index 565776680d8c..1f929c391af7 100644 --- a/arch/arm/mach-versatile/core.c +++ b/arch/arm/mach-versatile/core.c | |||
@@ -948,7 +948,7 @@ static struct irqaction versatile_timer_irq = { | |||
948 | .handler = versatile_timer_interrupt, | 948 | .handler = versatile_timer_interrupt, |
949 | }; | 949 | }; |
950 | 950 | ||
951 | static cycle_t versatile_get_cycles(void) | 951 | static cycle_t versatile_get_cycles(struct clocksource *cs) |
952 | { | 952 | { |
953 | return ~readl(TIMER3_VA_BASE + TIMER_VALUE); | 953 | return ~readl(TIMER3_VA_BASE + TIMER_VALUE); |
954 | } | 954 | } |
diff --git a/arch/arm/mm/proc-v6.S b/arch/arm/mm/proc-v6.S index f0cc599facb7..087e239704df 100644 --- a/arch/arm/mm/proc-v6.S +++ b/arch/arm/mm/proc-v6.S | |||
@@ -10,6 +10,7 @@ | |||
10 | * | 10 | * |
11 | * This is the "shell" of the ARMv6 processor support. | 11 | * This is the "shell" of the ARMv6 processor support. |
12 | */ | 12 | */ |
13 | #include <linux/init.h> | ||
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/assembler.h> | 15 | #include <asm/assembler.h> |
15 | #include <asm/asm-offsets.h> | 16 | #include <asm/asm-offsets.h> |
@@ -132,7 +133,7 @@ cpu_v6_name: | |||
132 | .asciz "ARMv6-compatible processor" | 133 | .asciz "ARMv6-compatible processor" |
133 | .align | 134 | .align |
134 | 135 | ||
135 | .section ".text.init", #alloc, #execinstr | 136 | __INIT |
136 | 137 | ||
137 | /* | 138 | /* |
138 | * __v6_setup | 139 | * __v6_setup |
diff --git a/arch/arm/mm/proc-v7.S b/arch/arm/mm/proc-v7.S index d1ebec42521d..c221e26ac1d3 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * | 9 | * |
10 | * This is the "shell" of the ARMv7 processor support. | 10 | * This is the "shell" of the ARMv7 processor support. |
11 | */ | 11 | */ |
12 | #include <linux/init.h> | ||
12 | #include <linux/linkage.h> | 13 | #include <linux/linkage.h> |
13 | #include <asm/assembler.h> | 14 | #include <asm/assembler.h> |
14 | #include <asm/asm-offsets.h> | 15 | #include <asm/asm-offsets.h> |
@@ -153,7 +154,7 @@ cpu_v7_name: | |||
153 | .ascii "ARMv7 Processor" | 154 | .ascii "ARMv7 Processor" |
154 | .align | 155 | .align |
155 | 156 | ||
156 | .section ".text.init", #alloc, #execinstr | 157 | __INIT |
157 | 158 | ||
158 | /* | 159 | /* |
159 | * __v7_setup | 160 | * __v7_setup |
diff --git a/arch/arm/mm/tlb-v6.S b/arch/arm/mm/tlb-v6.S index 20f84bbaa9bb..73d7d89b04c4 100644 --- a/arch/arm/mm/tlb-v6.S +++ b/arch/arm/mm/tlb-v6.S | |||
@@ -10,6 +10,7 @@ | |||
10 | * ARM architecture version 6 TLB handling functions. | 10 | * ARM architecture version 6 TLB handling functions. |
11 | * These assume a split I/D TLB. | 11 | * These assume a split I/D TLB. |
12 | */ | 12 | */ |
13 | #include <linux/init.h> | ||
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/asm-offsets.h> | 15 | #include <asm/asm-offsets.h> |
15 | #include <asm/page.h> | 16 | #include <asm/page.h> |
@@ -87,7 +88,7 @@ ENTRY(v6wbi_flush_kern_tlb_range) | |||
87 | mcr p15, 0, r2, c7, c5, 4 @ prefetch flush | 88 | mcr p15, 0, r2, c7, c5, 4 @ prefetch flush |
88 | mov pc, lr | 89 | mov pc, lr |
89 | 90 | ||
90 | .section ".text.init", #alloc, #execinstr | 91 | __INIT |
91 | 92 | ||
92 | .type v6wbi_tlb_fns, #object | 93 | .type v6wbi_tlb_fns, #object |
93 | ENTRY(v6wbi_tlb_fns) | 94 | ENTRY(v6wbi_tlb_fns) |
diff --git a/arch/arm/mm/tlb-v7.S b/arch/arm/mm/tlb-v7.S index 24ba5109f2e7..b637e7380ab7 100644 --- a/arch/arm/mm/tlb-v7.S +++ b/arch/arm/mm/tlb-v7.S | |||
@@ -11,6 +11,7 @@ | |||
11 | * ARM architecture version 6 TLB handling functions. | 11 | * ARM architecture version 6 TLB handling functions. |
12 | * These assume a split I/D TLB. | 12 | * These assume a split I/D TLB. |
13 | */ | 13 | */ |
14 | #include <linux/init.h> | ||
14 | #include <linux/linkage.h> | 15 | #include <linux/linkage.h> |
15 | #include <asm/asm-offsets.h> | 16 | #include <asm/asm-offsets.h> |
16 | #include <asm/page.h> | 17 | #include <asm/page.h> |
@@ -80,7 +81,7 @@ ENTRY(v7wbi_flush_kern_tlb_range) | |||
80 | mov pc, lr | 81 | mov pc, lr |
81 | ENDPROC(v7wbi_flush_kern_tlb_range) | 82 | ENDPROC(v7wbi_flush_kern_tlb_range) |
82 | 83 | ||
83 | .section ".text.init", #alloc, #execinstr | 84 | __INIT |
84 | 85 | ||
85 | .type v7wbi_tlb_fns, #object | 86 | .type v7wbi_tlb_fns, #object |
86 | ENTRY(v7wbi_tlb_fns) | 87 | ENTRY(v7wbi_tlb_fns) |
diff --git a/arch/arm/plat-mxc/time.c b/arch/arm/plat-mxc/time.c index ef1b3cd85bd3..dab3357196fb 100644 --- a/arch/arm/plat-mxc/time.c +++ b/arch/arm/plat-mxc/time.c | |||
@@ -36,7 +36,7 @@ static enum clock_event_mode clockevent_mode = CLOCK_EVT_MODE_UNUSED; | |||
36 | 36 | ||
37 | /* clock source */ | 37 | /* clock source */ |
38 | 38 | ||
39 | static cycle_t mxc_get_cycles(void) | 39 | static cycle_t mxc_get_cycles(struct clocksource *cs) |
40 | { | 40 | { |
41 | return __raw_readl(TIMER_BASE + MXC_TCN); | 41 | return __raw_readl(TIMER_BASE + MXC_TCN); |
42 | } | 42 | } |
diff --git a/arch/arm/plat-omap/common.c b/arch/arm/plat-omap/common.c index d1797147732f..433021f3d7cc 100644 --- a/arch/arm/plat-omap/common.c +++ b/arch/arm/plat-omap/common.c | |||
@@ -185,7 +185,7 @@ console_initcall(omap_add_serial_console); | |||
185 | 185 | ||
186 | #include <linux/clocksource.h> | 186 | #include <linux/clocksource.h> |
187 | 187 | ||
188 | static cycle_t omap_32k_read(void) | 188 | static cycle_t omap_32k_read(struct clocksource *cs) |
189 | { | 189 | { |
190 | return omap_readl(TIMER_32K_SYNCHRONIZED); | 190 | return omap_readl(TIMER_32K_SYNCHRONIZED); |
191 | } | 191 | } |
@@ -207,7 +207,7 @@ unsigned long long sched_clock(void) | |||
207 | { | 207 | { |
208 | unsigned long long ret; | 208 | unsigned long long ret; |
209 | 209 | ||
210 | ret = (unsigned long long)omap_32k_read(); | 210 | ret = (unsigned long long)omap_32k_read(&clocksource_32k); |
211 | ret = (ret * clocksource_32k.mult_orig) >> clocksource_32k.shift; | 211 | ret = (ret * clocksource_32k.mult_orig) >> clocksource_32k.shift; |
212 | return ret; | 212 | return ret; |
213 | } | 213 | } |
diff --git a/arch/arm/plat-orion/time.c b/arch/arm/plat-orion/time.c index 6fa2923e6dca..de8a001fc3a9 100644 --- a/arch/arm/plat-orion/time.c +++ b/arch/arm/plat-orion/time.c | |||
@@ -16,7 +16,7 @@ | |||
16 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
17 | #include <linux/irq.h> | 17 | #include <linux/irq.h> |
18 | #include <asm/mach/time.h> | 18 | #include <asm/mach/time.h> |
19 | #include <mach/hardware.h> | 19 | #include <mach/bridge-regs.h> |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * Number of timer ticks per jiffy. | 22 | * Number of timer ticks per jiffy. |
@@ -41,7 +41,7 @@ static u32 ticks_per_jiffy; | |||
41 | /* | 41 | /* |
42 | * Clocksource handling. | 42 | * Clocksource handling. |
43 | */ | 43 | */ |
44 | static cycle_t orion_clksrc_read(void) | 44 | static cycle_t orion_clksrc_read(struct clocksource *cs) |
45 | { | 45 | { |
46 | return 0xffffffff - readl(TIMER0_VAL); | 46 | return 0xffffffff - readl(TIMER0_VAL); |
47 | } | 47 | } |
diff --git a/arch/avr32/kernel/time.c b/arch/avr32/kernel/time.c index 0ff46bf873b0..f27aa3b259fa 100644 --- a/arch/avr32/kernel/time.c +++ b/arch/avr32/kernel/time.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <mach/pm.h> | 18 | #include <mach/pm.h> |
19 | 19 | ||
20 | 20 | ||
21 | static cycle_t read_cycle_count(void) | 21 | static cycle_t read_cycle_count(struct clocksource *cs) |
22 | { | 22 | { |
23 | return (cycle_t)sysreg_read(COUNT); | 23 | return (cycle_t)sysreg_read(COUNT); |
24 | } | 24 | } |
diff --git a/arch/blackfin/kernel/time-ts.c b/arch/blackfin/kernel/time-ts.c index 0ed2badfd746..27646121280a 100644 --- a/arch/blackfin/kernel/time-ts.c +++ b/arch/blackfin/kernel/time-ts.c | |||
@@ -58,16 +58,11 @@ static inline unsigned long long cycles_2_ns(cycle_t cyc) | |||
58 | return (cyc * cyc2ns_scale) >> CYC2NS_SCALE_FACTOR; | 58 | return (cyc * cyc2ns_scale) >> CYC2NS_SCALE_FACTOR; |
59 | } | 59 | } |
60 | 60 | ||
61 | static cycle_t read_cycles(void) | 61 | static cycle_t read_cycles(struct clocksource *cs) |
62 | { | 62 | { |
63 | return __bfin_cycles_off + (get_cycles() << __bfin_cycles_mod); | 63 | return __bfin_cycles_off + (get_cycles() << __bfin_cycles_mod); |
64 | } | 64 | } |
65 | 65 | ||
66 | unsigned long long sched_clock(void) | ||
67 | { | ||
68 | return cycles_2_ns(read_cycles()); | ||
69 | } | ||
70 | |||
71 | static struct clocksource clocksource_bfin = { | 66 | static struct clocksource clocksource_bfin = { |
72 | .name = "bfin_cycles", | 67 | .name = "bfin_cycles", |
73 | .rating = 350, | 68 | .rating = 350, |
@@ -77,6 +72,11 @@ static struct clocksource clocksource_bfin = { | |||
77 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 72 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
78 | }; | 73 | }; |
79 | 74 | ||
75 | unsigned long long sched_clock(void) | ||
76 | { | ||
77 | return cycles_2_ns(read_cycles(&clocksource_bfin)); | ||
78 | } | ||
79 | |||
80 | static int __init bfin_clocksource_init(void) | 80 | static int __init bfin_clocksource_init(void) |
81 | { | 81 | { |
82 | set_cyc2ns_scale(get_cclk() / 1000); | 82 | set_cyc2ns_scale(get_cclk() / 1000); |
diff --git a/arch/frv/include/asm/bug.h b/arch/frv/include/asm/bug.h index 6b1b44d71028..2e054508a2f6 100644 --- a/arch/frv/include/asm/bug.h +++ b/arch/frv/include/asm/bug.h | |||
@@ -30,7 +30,7 @@ extern void __debug_bug_printk(const char *file, unsigned line); | |||
30 | do { \ | 30 | do { \ |
31 | __debug_bug_trap(signr); \ | 31 | __debug_bug_trap(signr); \ |
32 | asm volatile("nop"); \ | 32 | asm volatile("nop"); \ |
33 | } while(0) | 33 | } while(1) |
34 | 34 | ||
35 | #define HAVE_ARCH_BUG | 35 | #define HAVE_ARCH_BUG |
36 | #define BUG() \ | 36 | #define BUG() \ |
@@ -46,7 +46,8 @@ do { \ | |||
46 | #define HAVE_ARCH_KGDB_BAD_PAGE | 46 | #define HAVE_ARCH_KGDB_BAD_PAGE |
47 | #define kgdb_bad_page(page) do { kgdb_raise(SIGABRT); } while(0) | 47 | #define kgdb_bad_page(page) do { kgdb_raise(SIGABRT); } while(0) |
48 | #endif | 48 | #endif |
49 | #endif | 49 | |
50 | #endif /* CONFIG_BUG */ | ||
50 | 51 | ||
51 | #include <asm-generic/bug.h> | 52 | #include <asm-generic/bug.h> |
52 | 53 | ||
diff --git a/arch/frv/include/asm/init.h b/arch/frv/include/asm/init.h deleted file mode 100644 index 8b15838de216..000000000000 --- a/arch/frv/include/asm/init.h +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | #ifndef _ASM_INIT_H | ||
2 | #define _ASM_INIT_H | ||
3 | |||
4 | #define __init __attribute__ ((__section__ (".text.init"))) | ||
5 | #define __initdata __attribute__ ((__section__ (".data.init"))) | ||
6 | /* For assembly routines */ | ||
7 | #define __INIT .section ".text.init",#alloc,#execinstr | ||
8 | #define __FINIT .previous | ||
9 | #define __INITDATA .section ".data.init",#alloc,#write | ||
10 | |||
11 | #endif | ||
12 | |||
diff --git a/arch/frv/include/asm/unistd.h b/arch/frv/include/asm/unistd.h index edcfaf5f0414..96d78d5d2c41 100644 --- a/arch/frv/include/asm/unistd.h +++ b/arch/frv/include/asm/unistd.h | |||
@@ -339,10 +339,12 @@ | |||
339 | #define __NR_dup3 330 | 339 | #define __NR_dup3 330 |
340 | #define __NR_pipe2 331 | 340 | #define __NR_pipe2 331 |
341 | #define __NR_inotify_init1 332 | 341 | #define __NR_inotify_init1 332 |
342 | #define __NR_preadv 333 | ||
343 | #define __NR_pwritev 334 | ||
342 | 344 | ||
343 | #ifdef __KERNEL__ | 345 | #ifdef __KERNEL__ |
344 | 346 | ||
345 | #define NR_syscalls 333 | 347 | #define NR_syscalls 335 |
346 | 348 | ||
347 | #define __ARCH_WANT_IPC_PARSE_VERSION | 349 | #define __ARCH_WANT_IPC_PARSE_VERSION |
348 | /* #define __ARCH_WANT_OLD_READDIR */ | 350 | /* #define __ARCH_WANT_OLD_READDIR */ |
diff --git a/arch/frv/kernel/entry.S b/arch/frv/kernel/entry.S index 99060ab507ee..1da523b3298e 100644 --- a/arch/frv/kernel/entry.S +++ b/arch/frv/kernel/entry.S | |||
@@ -1525,5 +1525,7 @@ sys_call_table: | |||
1525 | .long sys_dup3 /* 330 */ | 1525 | .long sys_dup3 /* 330 */ |
1526 | .long sys_pipe2 | 1526 | .long sys_pipe2 |
1527 | .long sys_inotify_init1 | 1527 | .long sys_inotify_init1 |
1528 | .long sys_preadv | ||
1529 | .long sys_pwritev | ||
1528 | 1530 | ||
1529 | syscall_table_size = (. - sys_call_table) | 1531 | syscall_table_size = (. - sys_call_table) |
diff --git a/arch/frv/kernel/head-mmu-fr451.S b/arch/frv/kernel/head-mmu-fr451.S index c8f210d84ff5..98f87d586e59 100644 --- a/arch/frv/kernel/head-mmu-fr451.S +++ b/arch/frv/kernel/head-mmu-fr451.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
@@ -31,7 +32,7 @@ | |||
31 | #define __400_LCR 0xfe000100 | 32 | #define __400_LCR 0xfe000100 |
32 | #define __400_LSBR 0xfe000c00 | 33 | #define __400_LSBR 0xfe000c00 |
33 | 34 | ||
34 | .section .text.init,"ax" | 35 | __INIT |
35 | .balign 4 | 36 | .balign 4 |
36 | 37 | ||
37 | ############################################################################### | 38 | ############################################################################### |
diff --git a/arch/frv/kernel/head-uc-fr401.S b/arch/frv/kernel/head-uc-fr401.S index ee282be20fff..438643cfa38e 100644 --- a/arch/frv/kernel/head-uc-fr401.S +++ b/arch/frv/kernel/head-uc-fr401.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
@@ -30,7 +31,7 @@ | |||
30 | #define __400_LCR 0xfe000100 | 31 | #define __400_LCR 0xfe000100 |
31 | #define __400_LSBR 0xfe000c00 | 32 | #define __400_LSBR 0xfe000c00 |
32 | 33 | ||
33 | .section .text.init,"ax" | 34 | __INIT |
34 | .balign 4 | 35 | .balign 4 |
35 | 36 | ||
36 | ############################################################################### | 37 | ############################################################################### |
diff --git a/arch/frv/kernel/head-uc-fr451.S b/arch/frv/kernel/head-uc-fr451.S index b10d9c8295d2..b2a76c4a1786 100644 --- a/arch/frv/kernel/head-uc-fr451.S +++ b/arch/frv/kernel/head-uc-fr451.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
@@ -30,7 +31,7 @@ | |||
30 | #define __400_LCR 0xfe000100 | 31 | #define __400_LCR 0xfe000100 |
31 | #define __400_LSBR 0xfe000c00 | 32 | #define __400_LSBR 0xfe000c00 |
32 | 33 | ||
33 | .section .text.init,"ax" | 34 | __INIT |
34 | .balign 4 | 35 | .balign 4 |
35 | 36 | ||
36 | ############################################################################### | 37 | ############################################################################### |
diff --git a/arch/frv/kernel/head-uc-fr555.S b/arch/frv/kernel/head-uc-fr555.S index 39937c19b460..5497aaf34f77 100644 --- a/arch/frv/kernel/head-uc-fr555.S +++ b/arch/frv/kernel/head-uc-fr555.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
@@ -29,7 +30,7 @@ | |||
29 | #define __551_LCR 0xfeff1100 | 30 | #define __551_LCR 0xfeff1100 |
30 | #define __551_LSBR 0xfeff1c00 | 31 | #define __551_LSBR 0xfeff1c00 |
31 | 32 | ||
32 | .section .text.init,"ax" | 33 | __INIT |
33 | .balign 4 | 34 | .balign 4 |
34 | 35 | ||
35 | ############################################################################### | 36 | ############################################################################### |
diff --git a/arch/frv/kernel/head.S b/arch/frv/kernel/head.S index fecf751c5cae..b825ef3f2d54 100644 --- a/arch/frv/kernel/head.S +++ b/arch/frv/kernel/head.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the License, or (at your option) any later version. | 9 | * 2 of the License, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/thread_info.h> | 15 | #include <asm/thread_info.h> |
@@ -27,7 +28,7 @@ | |||
27 | # command line string | 28 | # command line string |
28 | # | 29 | # |
29 | ############################################################################### | 30 | ############################################################################### |
30 | .section .text.head,"ax" | 31 | __HEAD |
31 | .balign 4 | 32 | .balign 4 |
32 | 33 | ||
33 | .globl _boot, __head_reference | 34 | .globl _boot, __head_reference |
diff --git a/arch/frv/kernel/vmlinux.lds.S b/arch/frv/kernel/vmlinux.lds.S index b95c4eace62f..22d9787406ed 100644 --- a/arch/frv/kernel/vmlinux.lds.S +++ b/arch/frv/kernel/vmlinux.lds.S | |||
@@ -26,7 +26,7 @@ SECTIONS | |||
26 | 26 | ||
27 | _sinittext = .; | 27 | _sinittext = .; |
28 | .init.text : { | 28 | .init.text : { |
29 | *(.text.head) | 29 | HEAD_TEXT |
30 | #ifndef CONFIG_DEBUG_INFO | 30 | #ifndef CONFIG_DEBUG_INFO |
31 | INIT_TEXT | 31 | INIT_TEXT |
32 | EXIT_TEXT | 32 | EXIT_TEXT |
diff --git a/arch/frv/mb93090-mb00/pci-vdk.c b/arch/frv/mb93090-mb00/pci-vdk.c index 0f41c3a72da5..c0dcec65c6b7 100644 --- a/arch/frv/mb93090-mb00/pci-vdk.c +++ b/arch/frv/mb93090-mb00/pci-vdk.c | |||
@@ -31,6 +31,29 @@ struct pci_bus *__nongpreldata pci_root_bus; | |||
31 | struct pci_ops *__nongpreldata pci_root_ops; | 31 | struct pci_ops *__nongpreldata pci_root_ops; |
32 | 32 | ||
33 | /* | 33 | /* |
34 | * The accessible PCI window does not cover the entire CPU address space, but | ||
35 | * there are devices we want to access outside of that window, so we need to | ||
36 | * insert specific PCI bus resources instead of using the platform-level bus | ||
37 | * resources directly for the PCI root bus. | ||
38 | * | ||
39 | * These are configured and inserted by pcibios_init() and are attached to the | ||
40 | * root bus by pcibios_fixup_bus(). | ||
41 | */ | ||
42 | static struct resource pci_ioport_resource = { | ||
43 | .name = "PCI IO", | ||
44 | .start = 0, | ||
45 | .end = IO_SPACE_LIMIT, | ||
46 | .flags = IORESOURCE_IO, | ||
47 | }; | ||
48 | |||
49 | static struct resource pci_iomem_resource = { | ||
50 | .name = "PCI mem", | ||
51 | .start = 0, | ||
52 | .end = -1, | ||
53 | .flags = IORESOURCE_MEM, | ||
54 | }; | ||
55 | |||
56 | /* | ||
34 | * Functions for accessing PCI configuration space | 57 | * Functions for accessing PCI configuration space |
35 | */ | 58 | */ |
36 | 59 | ||
@@ -304,6 +327,12 @@ void __init pcibios_fixup_bus(struct pci_bus *bus) | |||
304 | #if 0 | 327 | #if 0 |
305 | printk("### PCIBIOS_FIXUP_BUS(%d)\n",bus->number); | 328 | printk("### PCIBIOS_FIXUP_BUS(%d)\n",bus->number); |
306 | #endif | 329 | #endif |
330 | |||
331 | if (bus->number == 0) { | ||
332 | bus->resource[0] = &pci_ioport_resource; | ||
333 | bus->resource[1] = &pci_iomem_resource; | ||
334 | } | ||
335 | |||
307 | pci_read_bridge_bases(bus); | 336 | pci_read_bridge_bases(bus); |
308 | 337 | ||
309 | if (bus->number == 0) { | 338 | if (bus->number == 0) { |
@@ -350,28 +379,36 @@ int __init pcibios_init(void) | |||
350 | /* enable PCI arbitration */ | 379 | /* enable PCI arbitration */ |
351 | __reg_MB86943_pci_arbiter = MB86943_PCIARB_EN; | 380 | __reg_MB86943_pci_arbiter = MB86943_PCIARB_EN; |
352 | 381 | ||
353 | ioport_resource.start = (__reg_MB86943_sl_pci_io_base << 9) & 0xfffffc00; | 382 | pci_ioport_resource.start = (__reg_MB86943_sl_pci_io_base << 9) & 0xfffffc00; |
354 | ioport_resource.end = (__reg_MB86943_sl_pci_io_range << 9) | 0x3ff; | 383 | pci_ioport_resource.end = (__reg_MB86943_sl_pci_io_range << 9) | 0x3ff; |
355 | ioport_resource.end += ioport_resource.start; | 384 | pci_ioport_resource.end += pci_ioport_resource.start; |
356 | 385 | ||
357 | printk("PCI IO window: %08llx-%08llx\n", | 386 | printk("PCI IO window: %08llx-%08llx\n", |
358 | (unsigned long long) ioport_resource.start, | 387 | (unsigned long long) pci_ioport_resource.start, |
359 | (unsigned long long) ioport_resource.end); | 388 | (unsigned long long) pci_ioport_resource.end); |
360 | 389 | ||
361 | iomem_resource.start = (__reg_MB86943_sl_pci_mem_base << 9) & 0xfffffc00; | 390 | pci_iomem_resource.start = (__reg_MB86943_sl_pci_mem_base << 9) & 0xfffffc00; |
391 | pci_iomem_resource.end = (__reg_MB86943_sl_pci_mem_range << 9) | 0x3ff; | ||
392 | pci_iomem_resource.end += pci_iomem_resource.start; | ||
362 | 393 | ||
363 | /* Reserve somewhere to write to flush posted writes. */ | 394 | /* Reserve somewhere to write to flush posted writes. This is used by |
364 | iomem_resource.start += 0x400; | 395 | * __flush_PCI_writes() from asm/io.h to force the write FIFO in the |
365 | 396 | * CPU-PCI bridge to flush as this doesn't happen automatically when a | |
366 | iomem_resource.end = (__reg_MB86943_sl_pci_mem_range << 9) | 0x3ff; | 397 | * read is performed on the MB93090 development kit motherboard. |
367 | iomem_resource.end += iomem_resource.start; | 398 | */ |
399 | pci_iomem_resource.start += 0x400; | ||
368 | 400 | ||
369 | printk("PCI MEM window: %08llx-%08llx\n", | 401 | printk("PCI MEM window: %08llx-%08llx\n", |
370 | (unsigned long long) iomem_resource.start, | 402 | (unsigned long long) pci_iomem_resource.start, |
371 | (unsigned long long) iomem_resource.end); | 403 | (unsigned long long) pci_iomem_resource.end); |
372 | printk("PCI DMA memory: %08lx-%08lx\n", | 404 | printk("PCI DMA memory: %08lx-%08lx\n", |
373 | dma_coherent_mem_start, dma_coherent_mem_end); | 405 | dma_coherent_mem_start, dma_coherent_mem_end); |
374 | 406 | ||
407 | if (insert_resource(&iomem_resource, &pci_iomem_resource) < 0) | ||
408 | panic("Unable to insert PCI IOMEM resource\n"); | ||
409 | if (insert_resource(&ioport_resource, &pci_ioport_resource) < 0) | ||
410 | panic("Unable to insert PCI IOPORT resource\n"); | ||
411 | |||
375 | if (!pci_probe) | 412 | if (!pci_probe) |
376 | return -ENXIO; | 413 | return -ENXIO; |
377 | 414 | ||
diff --git a/arch/ia64/include/asm/paravirt_privop.h b/arch/ia64/include/asm/paravirt_privop.h index 3d2951130b5f..8f6cb11c9fae 100644 --- a/arch/ia64/include/asm/paravirt_privop.h +++ b/arch/ia64/include/asm/paravirt_privop.h | |||
@@ -445,7 +445,6 @@ paravirt_set_rr0_to_rr4(unsigned long val0, unsigned long val1, | |||
445 | register unsigned long ia64_intri_res asm ("r8"); \ | 445 | register unsigned long ia64_intri_res asm ("r8"); \ |
446 | register unsigned long __reg asm ("r8") = (reg); \ | 446 | register unsigned long __reg asm ("r8") = (reg); \ |
447 | \ | 447 | \ |
448 | BUILD_BUG_ON(!__builtin_constant_p(reg)); \ | ||
449 | asm volatile (paravirt_alt_bundle(__PARAVIRT_BR, \ | 448 | asm volatile (paravirt_alt_bundle(__PARAVIRT_BR, \ |
450 | PARAVIRT_TYPE(GETREG) \ | 449 | PARAVIRT_TYPE(GETREG) \ |
451 | + (reg)) \ | 450 | + (reg)) \ |
@@ -464,7 +463,6 @@ paravirt_set_rr0_to_rr4(unsigned long val0, unsigned long val1, | |||
464 | register unsigned long ia64_clobber1 asm ("r8"); \ | 463 | register unsigned long ia64_clobber1 asm ("r8"); \ |
465 | register unsigned long ia64_clobber2 asm ("r9"); \ | 464 | register unsigned long ia64_clobber2 asm ("r9"); \ |
466 | \ | 465 | \ |
467 | BUILD_BUG_ON(!__builtin_constant_p(reg)); \ | ||
468 | asm volatile (paravirt_alt_bundle(__PARAVIRT_BR, \ | 466 | asm volatile (paravirt_alt_bundle(__PARAVIRT_BR, \ |
469 | PARAVIRT_TYPE(SETREG) \ | 467 | PARAVIRT_TYPE(SETREG) \ |
470 | + (reg)) \ | 468 | + (reg)) \ |
diff --git a/arch/ia64/include/asm/smp.h b/arch/ia64/include/asm/smp.h index 598408336251..d217d1d4e051 100644 --- a/arch/ia64/include/asm/smp.h +++ b/arch/ia64/include/asm/smp.h | |||
@@ -58,7 +58,7 @@ extern struct smp_boot_data { | |||
58 | extern char no_int_routing __devinitdata; | 58 | extern char no_int_routing __devinitdata; |
59 | 59 | ||
60 | extern cpumask_t cpu_core_map[NR_CPUS]; | 60 | extern cpumask_t cpu_core_map[NR_CPUS]; |
61 | DECLARE_PER_CPU(cpumask_t, cpu_sibling_map); | 61 | DECLARE_PER_CPU_SHARED_ALIGNED(cpumask_t, cpu_sibling_map); |
62 | extern int smp_num_siblings; | 62 | extern int smp_num_siblings; |
63 | extern void __iomem *ipi_base_addr; | 63 | extern void __iomem *ipi_base_addr; |
64 | extern unsigned char smp_int_redirect; | 64 | extern unsigned char smp_int_redirect; |
diff --git a/arch/ia64/kernel/cyclone.c b/arch/ia64/kernel/cyclone.c index 790ef0d87e12..71e35864d2e2 100644 --- a/arch/ia64/kernel/cyclone.c +++ b/arch/ia64/kernel/cyclone.c | |||
@@ -21,7 +21,7 @@ void __init cyclone_setup(void) | |||
21 | 21 | ||
22 | static void __iomem *cyclone_mc; | 22 | static void __iomem *cyclone_mc; |
23 | 23 | ||
24 | static cycle_t read_cyclone(void) | 24 | static cycle_t read_cyclone(struct clocksource *cs) |
25 | { | 25 | { |
26 | return (cycle_t)readq((void __iomem *)cyclone_mc); | 26 | return (cycle_t)readq((void __iomem *)cyclone_mc); |
27 | } | 27 | } |
diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index 2ea4199d9c57..5230eaafd83f 100644 --- a/arch/ia64/kernel/smp.c +++ b/arch/ia64/kernel/smp.c | |||
@@ -225,6 +225,7 @@ smp_send_reschedule (int cpu) | |||
225 | { | 225 | { |
226 | platform_send_ipi(cpu, IA64_IPI_RESCHEDULE, IA64_IPI_DM_INT, 0); | 226 | platform_send_ipi(cpu, IA64_IPI_RESCHEDULE, IA64_IPI_DM_INT, 0); |
227 | } | 227 | } |
228 | EXPORT_SYMBOL_GPL(smp_send_reschedule); | ||
228 | 229 | ||
229 | /* | 230 | /* |
230 | * Called with preemption disabled. | 231 | * Called with preemption disabled. |
@@ -300,15 +301,12 @@ smp_flush_tlb_mm (struct mm_struct *mm) | |||
300 | return; | 301 | return; |
301 | } | 302 | } |
302 | 303 | ||
304 | smp_call_function_mask(mm->cpu_vm_mask, | ||
305 | (void (*)(void *))local_finish_flush_tlb_mm, mm, 1); | ||
306 | local_irq_disable(); | ||
307 | local_finish_flush_tlb_mm(mm); | ||
308 | local_irq_enable(); | ||
303 | preempt_enable(); | 309 | preempt_enable(); |
304 | /* | ||
305 | * We could optimize this further by using mm->cpu_vm_mask to track which CPUs | ||
306 | * have been running in the address space. It's not clear that this is worth the | ||
307 | * trouble though: to avoid races, we have to raise the IPI on the target CPU | ||
308 | * anyhow, and once a CPU is interrupted, the cost of local_flush_tlb_all() is | ||
309 | * rather trivial. | ||
310 | */ | ||
311 | on_each_cpu((void (*)(void *))local_finish_flush_tlb_mm, mm, 1); | ||
312 | } | 310 | } |
313 | 311 | ||
314 | void arch_send_call_function_single_ipi(int cpu) | 312 | void arch_send_call_function_single_ipi(int cpu) |
diff --git a/arch/ia64/kernel/time.c b/arch/ia64/kernel/time.c index 641c8b61c4f1..604c1a35db33 100644 --- a/arch/ia64/kernel/time.c +++ b/arch/ia64/kernel/time.c | |||
@@ -33,7 +33,7 @@ | |||
33 | 33 | ||
34 | #include "fsyscall_gtod_data.h" | 34 | #include "fsyscall_gtod_data.h" |
35 | 35 | ||
36 | static cycle_t itc_get_cycles(void); | 36 | static cycle_t itc_get_cycles(struct clocksource *cs); |
37 | 37 | ||
38 | struct fsyscall_gtod_data_t fsyscall_gtod_data = { | 38 | struct fsyscall_gtod_data_t fsyscall_gtod_data = { |
39 | .lock = SEQLOCK_UNLOCKED, | 39 | .lock = SEQLOCK_UNLOCKED, |
@@ -383,7 +383,7 @@ ia64_init_itm (void) | |||
383 | } | 383 | } |
384 | } | 384 | } |
385 | 385 | ||
386 | static cycle_t itc_get_cycles(void) | 386 | static cycle_t itc_get_cycles(struct clocksource *cs) |
387 | { | 387 | { |
388 | u64 lcycle, now, ret; | 388 | u64 lcycle, now, ret; |
389 | 389 | ||
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index 28af6a731bb8..d20a5db4c4dd 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c | |||
@@ -610,20 +610,22 @@ static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) | |||
610 | int r; | 610 | int r; |
611 | 611 | ||
612 | again: | 612 | again: |
613 | preempt_disable(); | ||
614 | local_irq_disable(); | ||
615 | |||
616 | if (signal_pending(current)) { | 613 | if (signal_pending(current)) { |
617 | local_irq_enable(); | ||
618 | preempt_enable(); | ||
619 | r = -EINTR; | 614 | r = -EINTR; |
620 | kvm_run->exit_reason = KVM_EXIT_INTR; | 615 | kvm_run->exit_reason = KVM_EXIT_INTR; |
621 | goto out; | 616 | goto out; |
622 | } | 617 | } |
623 | 618 | ||
619 | /* | ||
620 | * down_read() may sleep and return with interrupts enabled | ||
621 | */ | ||
622 | down_read(&vcpu->kvm->slots_lock); | ||
623 | |||
624 | preempt_disable(); | ||
625 | local_irq_disable(); | ||
626 | |||
624 | vcpu->guest_mode = 1; | 627 | vcpu->guest_mode = 1; |
625 | kvm_guest_enter(); | 628 | kvm_guest_enter(); |
626 | down_read(&vcpu->kvm->slots_lock); | ||
627 | r = vti_vcpu_run(vcpu, kvm_run); | 629 | r = vti_vcpu_run(vcpu, kvm_run); |
628 | if (r < 0) { | 630 | if (r < 0) { |
629 | local_irq_enable(); | 631 | local_irq_enable(); |
diff --git a/arch/ia64/sn/kernel/sn2/timer.c b/arch/ia64/sn/kernel/sn2/timer.c index cf67fc562054..21d6f09e3447 100644 --- a/arch/ia64/sn/kernel/sn2/timer.c +++ b/arch/ia64/sn/kernel/sn2/timer.c | |||
@@ -23,7 +23,7 @@ | |||
23 | 23 | ||
24 | extern unsigned long sn_rtc_cycles_per_second; | 24 | extern unsigned long sn_rtc_cycles_per_second; |
25 | 25 | ||
26 | static cycle_t read_sn2(void) | 26 | static cycle_t read_sn2(struct clocksource *cs) |
27 | { | 27 | { |
28 | return (cycle_t)readq(RTC_COUNTER_ADDR); | 28 | return (cycle_t)readq(RTC_COUNTER_ADDR); |
29 | } | 29 | } |
diff --git a/arch/m32r/kernel/head.S b/arch/m32r/kernel/head.S index 90916067b9c1..0a7194439eb1 100644 --- a/arch/m32r/kernel/head.S +++ b/arch/m32r/kernel/head.S | |||
@@ -23,7 +23,7 @@ __INITDATA | |||
23 | /* | 23 | /* |
24 | * References to members of the boot_cpu_data structure. | 24 | * References to members of the boot_cpu_data structure. |
25 | */ | 25 | */ |
26 | .section .text.head, "ax" | 26 | __HEAD |
27 | .global start_kernel | 27 | .global start_kernel |
28 | .global __bss_start | 28 | .global __bss_start |
29 | .global _end | 29 | .global _end |
diff --git a/arch/m32r/kernel/vmlinux.lds.S b/arch/m32r/kernel/vmlinux.lds.S index 9db05df20c0e..4179adf6c624 100644 --- a/arch/m32r/kernel/vmlinux.lds.S +++ b/arch/m32r/kernel/vmlinux.lds.S | |||
@@ -27,7 +27,7 @@ SECTIONS | |||
27 | _text = .; /* Text and read-only data */ | 27 | _text = .; /* Text and read-only data */ |
28 | .boot : { *(.boot) } = 0 | 28 | .boot : { *(.boot) } = 0 |
29 | .text : { | 29 | .text : { |
30 | *(.text.head) | 30 | HEAD_TEXT |
31 | TEXT_TEXT | 31 | TEXT_TEXT |
32 | SCHED_TEXT | 32 | SCHED_TEXT |
33 | LOCK_TEXT | 33 | LOCK_TEXT |
diff --git a/arch/m68k/configs/amiga_defconfig b/arch/m68k/configs/amiga_defconfig index 23597beb66c1..0f69fa5ddf26 100644 --- a/arch/m68k/configs/amiga_defconfig +++ b/arch/m68k/configs/amiga_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:42 2008 | 4 | # Wed Apr 22 20:47:52 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -140,12 +151,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
140 | CONFIG_NEED_MULTIPLE_NODES=y | 151 | CONFIG_NEED_MULTIPLE_NODES=y |
141 | CONFIG_PAGEFLAGS_EXTENDED=y | 152 | CONFIG_PAGEFLAGS_EXTENDED=y |
142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 153 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
143 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 154 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
145 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
146 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
147 | CONFIG_VIRT_TO_BUS=y | 157 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 158 | CONFIG_UNEVICTABLE_LRU=y |
159 | CONFIG_HAVE_MLOCK=y | ||
160 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
149 | 161 | ||
150 | # | 162 | # |
151 | # General setup | 163 | # General setup |
@@ -157,7 +169,7 @@ CONFIG_BINFMT_AOUT=m | |||
157 | CONFIG_BINFMT_MISC=m | 169 | CONFIG_BINFMT_MISC=m |
158 | CONFIG_ZORRO=y | 170 | CONFIG_ZORRO=y |
159 | CONFIG_AMIGA_PCMCIA=y | 171 | CONFIG_AMIGA_PCMCIA=y |
160 | # CONFIG_HEARTBEAT is not set | 172 | CONFIG_HEARTBEAT=y |
161 | CONFIG_PROC_HARDWARE=y | 173 | CONFIG_PROC_HARDWARE=y |
162 | CONFIG_ISA=y | 174 | CONFIG_ISA=y |
163 | CONFIG_GENERIC_ISA_DMA=y | 175 | CONFIG_GENERIC_ISA_DMA=y |
@@ -184,7 +196,10 @@ CONFIG_INET=y | |||
184 | # CONFIG_IP_MULTICAST is not set | 196 | # CONFIG_IP_MULTICAST is not set |
185 | # CONFIG_IP_ADVANCED_ROUTER is not set | 197 | # CONFIG_IP_ADVANCED_ROUTER is not set |
186 | CONFIG_IP_FIB_HASH=y | 198 | CONFIG_IP_FIB_HASH=y |
187 | # CONFIG_IP_PNP is not set | 199 | CONFIG_IP_PNP=y |
200 | # CONFIG_IP_PNP_DHCP is not set | ||
201 | # CONFIG_IP_PNP_BOOTP is not set | ||
202 | # CONFIG_IP_PNP_RARP is not set | ||
188 | CONFIG_NET_IPIP=m | 203 | CONFIG_NET_IPIP=m |
189 | CONFIG_NET_IPGRE=m | 204 | CONFIG_NET_IPGRE=m |
190 | # CONFIG_ARPD is not set | 205 | # CONFIG_ARPD is not set |
@@ -258,6 +273,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
258 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 273 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
259 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 274 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
260 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 275 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
276 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
261 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 277 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
262 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 278 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
263 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 279 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -266,6 +282,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
266 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 282 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
267 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 283 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
268 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 284 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
285 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
269 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 286 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
270 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 287 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
271 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 288 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -276,6 +293,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
276 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 293 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
277 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 294 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 295 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
296 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 297 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
280 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 298 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
281 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 299 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -354,25 +372,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
354 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 372 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
355 | CONFIG_IP6_NF_MATCH_MH=m | 373 | CONFIG_IP6_NF_MATCH_MH=m |
356 | CONFIG_IP6_NF_MATCH_RT=m | 374 | CONFIG_IP6_NF_MATCH_RT=m |
375 | CONFIG_IP6_NF_TARGET_HL=m | ||
357 | CONFIG_IP6_NF_TARGET_LOG=m | 376 | CONFIG_IP6_NF_TARGET_LOG=m |
358 | CONFIG_IP6_NF_FILTER=m | 377 | CONFIG_IP6_NF_FILTER=m |
359 | CONFIG_IP6_NF_TARGET_REJECT=m | 378 | CONFIG_IP6_NF_TARGET_REJECT=m |
360 | CONFIG_IP6_NF_MANGLE=m | 379 | CONFIG_IP6_NF_MANGLE=m |
361 | CONFIG_IP6_NF_TARGET_HL=m | ||
362 | CONFIG_IP6_NF_RAW=m | 380 | CONFIG_IP6_NF_RAW=m |
363 | CONFIG_IP_DCCP=m | 381 | CONFIG_IP_DCCP=m |
364 | CONFIG_INET_DCCP_DIAG=m | 382 | CONFIG_INET_DCCP_DIAG=m |
365 | CONFIG_IP_DCCP_ACKVEC=y | ||
366 | 383 | ||
367 | # | 384 | # |
368 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 385 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
369 | # | 386 | # |
370 | CONFIG_IP_DCCP_CCID2=m | ||
371 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 387 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
372 | CONFIG_IP_DCCP_CCID3=m | 388 | # CONFIG_IP_DCCP_CCID3 is not set |
373 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
374 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
375 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
376 | CONFIG_IP_SCTP=m | 389 | CONFIG_IP_SCTP=m |
377 | # CONFIG_SCTP_DBG_MSG is not set | 390 | # CONFIG_SCTP_DBG_MSG is not set |
378 | # CONFIG_SCTP_DBG_OBJCNT is not set | 391 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -394,8 +407,10 @@ CONFIG_ATALK=m | |||
394 | # CONFIG_LAPB is not set | 407 | # CONFIG_LAPB is not set |
395 | # CONFIG_ECONET is not set | 408 | # CONFIG_ECONET is not set |
396 | # CONFIG_WAN_ROUTER is not set | 409 | # CONFIG_WAN_ROUTER is not set |
410 | # CONFIG_PHONET is not set | ||
397 | # CONFIG_NET_SCHED is not set | 411 | # CONFIG_NET_SCHED is not set |
398 | CONFIG_NET_CLS_ROUTE=y | 412 | CONFIG_NET_CLS_ROUTE=y |
413 | # CONFIG_DCB is not set | ||
399 | 414 | ||
400 | # | 415 | # |
401 | # Network testing | 416 | # Network testing |
@@ -406,8 +421,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
406 | # CONFIG_IRDA is not set | 421 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 422 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 423 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_PHONET is not set | ||
410 | # CONFIG_WIRELESS is not set | 424 | # CONFIG_WIRELESS is not set |
425 | # CONFIG_WIMAX is not set | ||
411 | # CONFIG_RFKILL is not set | 426 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 427 | # CONFIG_NET_9P is not set |
413 | 428 | ||
@@ -453,15 +468,20 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
453 | CONFIG_ATA_OVER_ETH=m | 468 | CONFIG_ATA_OVER_ETH=m |
454 | # CONFIG_BLK_DEV_HD is not set | 469 | # CONFIG_BLK_DEV_HD is not set |
455 | CONFIG_MISC_DEVICES=y | 470 | CONFIG_MISC_DEVICES=y |
456 | # CONFIG_EEPROM_93CX6 is not set | ||
457 | # CONFIG_ENCLOSURE_SERVICES is not set | 471 | # CONFIG_ENCLOSURE_SERVICES is not set |
458 | # CONFIG_C2PORT is not set | 472 | # CONFIG_C2PORT is not set |
473 | |||
474 | # | ||
475 | # EEPROM support | ||
476 | # | ||
477 | # CONFIG_EEPROM_93CX6 is not set | ||
459 | CONFIG_HAVE_IDE=y | 478 | CONFIG_HAVE_IDE=y |
460 | CONFIG_IDE=y | 479 | CONFIG_IDE=y |
461 | 480 | ||
462 | # | 481 | # |
463 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 482 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
464 | # | 483 | # |
484 | CONFIG_IDE_ATAPI=y | ||
465 | # CONFIG_BLK_DEV_IDE_SATA is not set | 485 | # CONFIG_BLK_DEV_IDE_SATA is not set |
466 | CONFIG_IDE_GD=y | 486 | CONFIG_IDE_GD=y |
467 | CONFIG_IDE_GD_ATA=y | 487 | CONFIG_IDE_GD_ATA=y |
@@ -469,7 +489,6 @@ CONFIG_IDE_GD_ATA=y | |||
469 | CONFIG_BLK_DEV_IDECD=y | 489 | CONFIG_BLK_DEV_IDECD=y |
470 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 490 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
471 | # CONFIG_BLK_DEV_IDETAPE is not set | 491 | # CONFIG_BLK_DEV_IDETAPE is not set |
472 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
473 | # CONFIG_IDE_TASK_IOCTL is not set | 492 | # CONFIG_IDE_TASK_IOCTL is not set |
474 | CONFIG_IDE_PROC_FS=y | 493 | CONFIG_IDE_PROC_FS=y |
475 | 494 | ||
@@ -478,7 +497,6 @@ CONFIG_IDE_PROC_FS=y | |||
478 | # | 497 | # |
479 | # CONFIG_BLK_DEV_PLATFORM is not set | 498 | # CONFIG_BLK_DEV_PLATFORM is not set |
480 | CONFIG_BLK_DEV_GAYLE=y | 499 | CONFIG_BLK_DEV_GAYLE=y |
481 | CONFIG_BLK_DEV_IDEDOUBLER=y | ||
482 | CONFIG_BLK_DEV_BUDDHA=y | 500 | CONFIG_BLK_DEV_BUDDHA=y |
483 | # CONFIG_BLK_DEV_IDEDMA is not set | 501 | # CONFIG_BLK_DEV_IDEDMA is not set |
484 | 502 | ||
@@ -530,6 +548,8 @@ CONFIG_ISCSI_TCP=m | |||
530 | # CONFIG_SCSI_AIC7XXX_OLD is not set | 548 | # CONFIG_SCSI_AIC7XXX_OLD is not set |
531 | # CONFIG_SCSI_ADVANSYS is not set | 549 | # CONFIG_SCSI_ADVANSYS is not set |
532 | # CONFIG_SCSI_IN2000 is not set | 550 | # CONFIG_SCSI_IN2000 is not set |
551 | # CONFIG_LIBFC is not set | ||
552 | # CONFIG_LIBFCOE is not set | ||
533 | # CONFIG_SCSI_DTC3280 is not set | 553 | # CONFIG_SCSI_DTC3280 is not set |
534 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 554 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
535 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | 555 | # CONFIG_SCSI_GENERIC_NCR5380 is not set |
@@ -547,6 +567,7 @@ CONFIG_GVP11_SCSI=y | |||
547 | CONFIG_SCSI_A4000T=y | 567 | CONFIG_SCSI_A4000T=y |
548 | CONFIG_SCSI_ZORRO7XX=y | 568 | CONFIG_SCSI_ZORRO7XX=y |
549 | # CONFIG_SCSI_DH is not set | 569 | # CONFIG_SCSI_DH is not set |
570 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
550 | CONFIG_MD=y | 571 | CONFIG_MD=y |
551 | CONFIG_BLK_DEV_MD=m | 572 | CONFIG_BLK_DEV_MD=m |
552 | CONFIG_MD_LINEAR=m | 573 | CONFIG_MD_LINEAR=m |
@@ -554,7 +575,7 @@ CONFIG_MD_RAID0=m | |||
554 | CONFIG_MD_RAID1=m | 575 | CONFIG_MD_RAID1=m |
555 | # CONFIG_MD_RAID10 is not set | 576 | # CONFIG_MD_RAID10 is not set |
556 | CONFIG_MD_RAID456=m | 577 | CONFIG_MD_RAID456=m |
557 | CONFIG_MD_RAID5_RESHAPE=y | 578 | CONFIG_MD_RAID6_PQ=m |
558 | # CONFIG_MD_MULTIPATH is not set | 579 | # CONFIG_MD_MULTIPATH is not set |
559 | # CONFIG_MD_FAULTY is not set | 580 | # CONFIG_MD_FAULTY is not set |
560 | CONFIG_BLK_DEV_DM=m | 581 | CONFIG_BLK_DEV_DM=m |
@@ -567,6 +588,7 @@ CONFIG_DM_MULTIPATH=m | |||
567 | # CONFIG_DM_DELAY is not set | 588 | # CONFIG_DM_DELAY is not set |
568 | CONFIG_DM_UEVENT=y | 589 | CONFIG_DM_UEVENT=y |
569 | CONFIG_NETDEVICES=y | 590 | CONFIG_NETDEVICES=y |
591 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
570 | CONFIG_DUMMY=m | 592 | CONFIG_DUMMY=m |
571 | # CONFIG_BONDING is not set | 593 | # CONFIG_BONDING is not set |
572 | CONFIG_MACVLAN=m | 594 | CONFIG_MACVLAN=m |
@@ -577,14 +599,16 @@ CONFIG_VETH=m | |||
577 | # CONFIG_PHYLIB is not set | 599 | # CONFIG_PHYLIB is not set |
578 | CONFIG_NET_ETHERNET=y | 600 | CONFIG_NET_ETHERNET=y |
579 | # CONFIG_MII is not set | 601 | # CONFIG_MII is not set |
580 | CONFIG_ARIADNE=m | 602 | CONFIG_ARIADNE=y |
581 | CONFIG_A2065=m | 603 | CONFIG_A2065=y |
582 | CONFIG_HYDRA=m | 604 | CONFIG_HYDRA=y |
583 | CONFIG_ZORRO8390=m | 605 | CONFIG_ZORRO8390=y |
584 | CONFIG_APNE=m | 606 | CONFIG_APNE=y |
585 | # CONFIG_NET_VENDOR_3COM is not set | 607 | # CONFIG_NET_VENDOR_3COM is not set |
586 | # CONFIG_NET_VENDOR_SMC is not set | 608 | # CONFIG_NET_VENDOR_SMC is not set |
609 | # CONFIG_ETHOC is not set | ||
587 | # CONFIG_NET_VENDOR_RACAL is not set | 610 | # CONFIG_NET_VENDOR_RACAL is not set |
611 | # CONFIG_DNET is not set | ||
588 | # CONFIG_AT1700 is not set | 612 | # CONFIG_AT1700 is not set |
589 | # CONFIG_DEPCA is not set | 613 | # CONFIG_DEPCA is not set |
590 | # CONFIG_HP100 is not set | 614 | # CONFIG_HP100 is not set |
@@ -609,7 +633,10 @@ CONFIG_APNE=m | |||
609 | # | 633 | # |
610 | # CONFIG_WLAN_PRE80211 is not set | 634 | # CONFIG_WLAN_PRE80211 is not set |
611 | # CONFIG_WLAN_80211 is not set | 635 | # CONFIG_WLAN_80211 is not set |
612 | # CONFIG_IWLWIFI_LEDS is not set | 636 | |
637 | # | ||
638 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
639 | # | ||
613 | # CONFIG_WAN is not set | 640 | # CONFIG_WAN is not set |
614 | # CONFIG_PLIP is not set | 641 | # CONFIG_PLIP is not set |
615 | CONFIG_PPP=m | 642 | CONFIG_PPP=m |
@@ -719,7 +746,7 @@ CONFIG_HW_CONSOLE=y | |||
719 | CONFIG_VT_HW_CONSOLE_BINDING=y | 746 | CONFIG_VT_HW_CONSOLE_BINDING=y |
720 | # CONFIG_DEVKMEM is not set | 747 | # CONFIG_DEVKMEM is not set |
721 | # CONFIG_SERIAL_NONSTANDARD is not set | 748 | # CONFIG_SERIAL_NONSTANDARD is not set |
722 | CONFIG_A2232=m | 749 | CONFIG_A2232=y |
723 | 750 | ||
724 | # | 751 | # |
725 | # Serial drivers | 752 | # Serial drivers |
@@ -730,6 +757,7 @@ CONFIG_A2232=m | |||
730 | # Non-8250 serial port support | 757 | # Non-8250 serial port support |
731 | # | 758 | # |
732 | CONFIG_UNIX98_PTYS=y | 759 | CONFIG_UNIX98_PTYS=y |
760 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
733 | CONFIG_LEGACY_PTYS=y | 761 | CONFIG_LEGACY_PTYS=y |
734 | CONFIG_LEGACY_PTY_COUNT=256 | 762 | CONFIG_LEGACY_PTY_COUNT=256 |
735 | CONFIG_PRINTER=m | 763 | CONFIG_PRINTER=m |
@@ -821,6 +849,7 @@ CONFIG_FB_FM2=y | |||
821 | # CONFIG_FB_VIRTUAL is not set | 849 | # CONFIG_FB_VIRTUAL is not set |
822 | # CONFIG_FB_METRONOME is not set | 850 | # CONFIG_FB_METRONOME is not set |
823 | # CONFIG_FB_MB862XX is not set | 851 | # CONFIG_FB_MB862XX is not set |
852 | # CONFIG_FB_BROADSHEET is not set | ||
824 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 853 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
825 | 854 | ||
826 | # | 855 | # |
@@ -856,7 +885,6 @@ CONFIG_HIDRAW=y | |||
856 | # | 885 | # |
857 | # Special HID drivers | 886 | # Special HID drivers |
858 | # | 887 | # |
859 | CONFIG_HID_COMPAT=y | ||
860 | # CONFIG_USB_SUPPORT is not set | 888 | # CONFIG_USB_SUPPORT is not set |
861 | # CONFIG_MMC is not set | 889 | # CONFIG_MMC is not set |
862 | # CONFIG_MEMSTICK is not set | 890 | # CONFIG_MEMSTICK is not set |
@@ -867,14 +895,13 @@ CONFIG_HID_COMPAT=y | |||
867 | # CONFIG_AUXDISPLAY is not set | 895 | # CONFIG_AUXDISPLAY is not set |
868 | # CONFIG_UIO is not set | 896 | # CONFIG_UIO is not set |
869 | # CONFIG_STAGING is not set | 897 | # CONFIG_STAGING is not set |
870 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
871 | 898 | ||
872 | # | 899 | # |
873 | # Character devices | 900 | # Character devices |
874 | # | 901 | # |
875 | CONFIG_AMIGA_BUILTIN_SERIAL=y | 902 | CONFIG_AMIGA_BUILTIN_SERIAL=y |
876 | CONFIG_MULTIFACE_III_TTY=m | 903 | CONFIG_MULTIFACE_III_TTY=m |
877 | # CONFIG_SERIAL_CONSOLE is not set | 904 | CONFIG_SERIAL_CONSOLE=y |
878 | 905 | ||
879 | # | 906 | # |
880 | # File systems | 907 | # File systems |
@@ -883,6 +910,7 @@ CONFIG_EXT2_FS=y | |||
883 | # CONFIG_EXT2_FS_XATTR is not set | 910 | # CONFIG_EXT2_FS_XATTR is not set |
884 | # CONFIG_EXT2_FS_XIP is not set | 911 | # CONFIG_EXT2_FS_XIP is not set |
885 | CONFIG_EXT3_FS=y | 912 | CONFIG_EXT3_FS=y |
913 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
886 | # CONFIG_EXT3_FS_XATTR is not set | 914 | # CONFIG_EXT3_FS_XATTR is not set |
887 | # CONFIG_EXT4_FS is not set | 915 | # CONFIG_EXT4_FS is not set |
888 | CONFIG_JBD=y | 916 | CONFIG_JBD=y |
@@ -909,13 +937,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
909 | # CONFIG_OCFS2_FS_STATS is not set | 937 | # CONFIG_OCFS2_FS_STATS is not set |
910 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 938 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
911 | # CONFIG_OCFS2_DEBUG_FS is not set | 939 | # CONFIG_OCFS2_DEBUG_FS is not set |
912 | # CONFIG_OCFS2_COMPAT_JBD is not set | 940 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
941 | # CONFIG_BTRFS_FS is not set | ||
913 | CONFIG_DNOTIFY=y | 942 | CONFIG_DNOTIFY=y |
914 | CONFIG_INOTIFY=y | 943 | CONFIG_INOTIFY=y |
915 | CONFIG_INOTIFY_USER=y | 944 | CONFIG_INOTIFY_USER=y |
916 | CONFIG_QUOTA=y | 945 | CONFIG_QUOTA=y |
917 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 946 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
918 | # CONFIG_PRINT_QUOTA_WARNING is not set | 947 | # CONFIG_PRINT_QUOTA_WARNING is not set |
948 | CONFIG_QUOTA_TREE=m | ||
919 | # CONFIG_QFMT_V1 is not set | 949 | # CONFIG_QFMT_V1 is not set |
920 | # CONFIG_QFMT_V2 is not set | 950 | # CONFIG_QFMT_V2 is not set |
921 | CONFIG_QUOTACTL=y | 951 | CONFIG_QUOTACTL=y |
@@ -924,6 +954,11 @@ CONFIG_AUTOFS4_FS=m | |||
924 | CONFIG_FUSE_FS=m | 954 | CONFIG_FUSE_FS=m |
925 | 955 | ||
926 | # | 956 | # |
957 | # Caches | ||
958 | # | ||
959 | # CONFIG_FSCACHE is not set | ||
960 | |||
961 | # | ||
927 | # CD-ROM/DVD Filesystems | 962 | # CD-ROM/DVD Filesystems |
928 | # | 963 | # |
929 | CONFIG_ISO9660_FS=y | 964 | CONFIG_ISO9660_FS=y |
@@ -935,8 +970,8 @@ CONFIG_UDF_NLS=y | |||
935 | # | 970 | # |
936 | # DOS/FAT/NT Filesystems | 971 | # DOS/FAT/NT Filesystems |
937 | # | 972 | # |
938 | CONFIG_FAT_FS=m | 973 | CONFIG_FAT_FS=y |
939 | CONFIG_MSDOS_FS=m | 974 | CONFIG_MSDOS_FS=y |
940 | CONFIG_VFAT_FS=m | 975 | CONFIG_VFAT_FS=m |
941 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | 976 | CONFIG_FAT_DEFAULT_CODEPAGE=437 |
942 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | 977 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" |
@@ -954,10 +989,7 @@ CONFIG_TMPFS=y | |||
954 | # CONFIG_TMPFS_POSIX_ACL is not set | 989 | # CONFIG_TMPFS_POSIX_ACL is not set |
955 | # CONFIG_HUGETLB_PAGE is not set | 990 | # CONFIG_HUGETLB_PAGE is not set |
956 | CONFIG_CONFIGFS_FS=m | 991 | CONFIG_CONFIGFS_FS=m |
957 | 992 | CONFIG_MISC_FILESYSTEMS=y | |
958 | # | ||
959 | # Miscellaneous filesystems | ||
960 | # | ||
961 | # CONFIG_ADFS_FS is not set | 993 | # CONFIG_ADFS_FS is not set |
962 | CONFIG_AFFS_FS=m | 994 | CONFIG_AFFS_FS=m |
963 | CONFIG_HFS_FS=m | 995 | CONFIG_HFS_FS=m |
@@ -966,6 +998,9 @@ CONFIG_HFSPLUS_FS=m | |||
966 | # CONFIG_BFS_FS is not set | 998 | # CONFIG_BFS_FS is not set |
967 | # CONFIG_EFS_FS is not set | 999 | # CONFIG_EFS_FS is not set |
968 | CONFIG_CRAMFS=m | 1000 | CONFIG_CRAMFS=m |
1001 | CONFIG_SQUASHFS=m | ||
1002 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
1003 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
969 | # CONFIG_VXFS_FS is not set | 1004 | # CONFIG_VXFS_FS is not set |
970 | CONFIG_MINIX_FS=y | 1005 | CONFIG_MINIX_FS=y |
971 | # CONFIG_OMFS_FS is not set | 1006 | # CONFIG_OMFS_FS is not set |
@@ -976,23 +1011,24 @@ CONFIG_SYSV_FS=m | |||
976 | CONFIG_UFS_FS=m | 1011 | CONFIG_UFS_FS=m |
977 | # CONFIG_UFS_FS_WRITE is not set | 1012 | # CONFIG_UFS_FS_WRITE is not set |
978 | # CONFIG_UFS_DEBUG is not set | 1013 | # CONFIG_UFS_DEBUG is not set |
1014 | # CONFIG_NILFS2_FS is not set | ||
979 | CONFIG_NETWORK_FILESYSTEMS=y | 1015 | CONFIG_NETWORK_FILESYSTEMS=y |
980 | CONFIG_NFS_FS=m | 1016 | CONFIG_NFS_FS=y |
981 | CONFIG_NFS_V3=y | 1017 | CONFIG_NFS_V3=y |
982 | # CONFIG_NFS_V3_ACL is not set | 1018 | # CONFIG_NFS_V3_ACL is not set |
983 | CONFIG_NFS_V4=y | 1019 | CONFIG_NFS_V4=y |
1020 | # CONFIG_ROOT_NFS is not set | ||
984 | CONFIG_NFSD=m | 1021 | CONFIG_NFSD=m |
985 | CONFIG_NFSD_V3=y | 1022 | CONFIG_NFSD_V3=y |
986 | # CONFIG_NFSD_V3_ACL is not set | 1023 | # CONFIG_NFSD_V3_ACL is not set |
987 | # CONFIG_NFSD_V4 is not set | 1024 | # CONFIG_NFSD_V4 is not set |
988 | CONFIG_LOCKD=m | 1025 | CONFIG_LOCKD=y |
989 | CONFIG_LOCKD_V4=y | 1026 | CONFIG_LOCKD_V4=y |
990 | CONFIG_EXPORTFS=m | 1027 | CONFIG_EXPORTFS=m |
991 | CONFIG_NFS_COMMON=y | 1028 | CONFIG_NFS_COMMON=y |
992 | CONFIG_SUNRPC=m | 1029 | CONFIG_SUNRPC=y |
993 | CONFIG_SUNRPC_GSS=m | 1030 | CONFIG_SUNRPC_GSS=y |
994 | # CONFIG_SUNRPC_REGISTER_V4 is not set | 1031 | CONFIG_RPCSEC_GSS_KRB5=y |
995 | CONFIG_RPCSEC_GSS_KRB5=m | ||
996 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1032 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
997 | CONFIG_SMB_FS=m | 1033 | CONFIG_SMB_FS=m |
998 | CONFIG_SMB_NLS_DEFAULT=y | 1034 | CONFIG_SMB_NLS_DEFAULT=y |
@@ -1067,11 +1103,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1067 | CONFIG_DEBUG_MEMORY_INIT=y | 1103 | CONFIG_DEBUG_MEMORY_INIT=y |
1068 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1104 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1069 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1105 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1070 | |||
1071 | # | ||
1072 | # Tracers | ||
1073 | # | ||
1074 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1075 | # CONFIG_SAMPLES is not set | 1106 | # CONFIG_SAMPLES is not set |
1076 | 1107 | ||
1077 | # | 1108 | # |
@@ -1092,13 +1123,21 @@ CONFIG_CRYPTO=y | |||
1092 | # | 1123 | # |
1093 | # CONFIG_CRYPTO_FIPS is not set | 1124 | # CONFIG_CRYPTO_FIPS is not set |
1094 | CONFIG_CRYPTO_ALGAPI=y | 1125 | CONFIG_CRYPTO_ALGAPI=y |
1095 | CONFIG_CRYPTO_AEAD=y | 1126 | CONFIG_CRYPTO_ALGAPI2=y |
1127 | CONFIG_CRYPTO_AEAD=m | ||
1128 | CONFIG_CRYPTO_AEAD2=y | ||
1096 | CONFIG_CRYPTO_BLKCIPHER=y | 1129 | CONFIG_CRYPTO_BLKCIPHER=y |
1130 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1097 | CONFIG_CRYPTO_HASH=y | 1131 | CONFIG_CRYPTO_HASH=y |
1098 | CONFIG_CRYPTO_RNG=y | 1132 | CONFIG_CRYPTO_HASH2=y |
1133 | CONFIG_CRYPTO_RNG=m | ||
1134 | CONFIG_CRYPTO_RNG2=y | ||
1135 | CONFIG_CRYPTO_PCOMP=y | ||
1099 | CONFIG_CRYPTO_MANAGER=y | 1136 | CONFIG_CRYPTO_MANAGER=y |
1137 | CONFIG_CRYPTO_MANAGER2=y | ||
1100 | CONFIG_CRYPTO_GF128MUL=m | 1138 | CONFIG_CRYPTO_GF128MUL=m |
1101 | CONFIG_CRYPTO_NULL=m | 1139 | CONFIG_CRYPTO_NULL=m |
1140 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1102 | CONFIG_CRYPTO_CRYPTD=m | 1141 | CONFIG_CRYPTO_CRYPTD=m |
1103 | CONFIG_CRYPTO_AUTHENC=m | 1142 | CONFIG_CRYPTO_AUTHENC=m |
1104 | CONFIG_CRYPTO_TEST=m | 1143 | CONFIG_CRYPTO_TEST=m |
@@ -1113,7 +1152,7 @@ CONFIG_CRYPTO_SEQIV=m | |||
1113 | # | 1152 | # |
1114 | # Block modes | 1153 | # Block modes |
1115 | # | 1154 | # |
1116 | CONFIG_CRYPTO_CBC=m | 1155 | CONFIG_CRYPTO_CBC=y |
1117 | CONFIG_CRYPTO_CTR=m | 1156 | CONFIG_CRYPTO_CTR=m |
1118 | CONFIG_CRYPTO_CTS=m | 1157 | CONFIG_CRYPTO_CTS=m |
1119 | CONFIG_CRYPTO_ECB=m | 1158 | CONFIG_CRYPTO_ECB=m |
@@ -1132,7 +1171,7 @@ CONFIG_CRYPTO_XCBC=m | |||
1132 | # | 1171 | # |
1133 | CONFIG_CRYPTO_CRC32C=m | 1172 | CONFIG_CRYPTO_CRC32C=m |
1134 | CONFIG_CRYPTO_MD4=m | 1173 | CONFIG_CRYPTO_MD4=m |
1135 | CONFIG_CRYPTO_MD5=m | 1174 | CONFIG_CRYPTO_MD5=y |
1136 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1175 | CONFIG_CRYPTO_MICHAEL_MIC=m |
1137 | CONFIG_CRYPTO_RMD128=m | 1176 | CONFIG_CRYPTO_RMD128=m |
1138 | CONFIG_CRYPTO_RMD160=m | 1177 | CONFIG_CRYPTO_RMD160=m |
@@ -1154,7 +1193,7 @@ CONFIG_CRYPTO_BLOWFISH=m | |||
1154 | CONFIG_CRYPTO_CAMELLIA=m | 1193 | CONFIG_CRYPTO_CAMELLIA=m |
1155 | CONFIG_CRYPTO_CAST5=m | 1194 | CONFIG_CRYPTO_CAST5=m |
1156 | CONFIG_CRYPTO_CAST6=m | 1195 | CONFIG_CRYPTO_CAST6=m |
1157 | CONFIG_CRYPTO_DES=m | 1196 | CONFIG_CRYPTO_DES=y |
1158 | CONFIG_CRYPTO_FCRYPT=m | 1197 | CONFIG_CRYPTO_FCRYPT=m |
1159 | CONFIG_CRYPTO_KHAZAD=m | 1198 | CONFIG_CRYPTO_KHAZAD=m |
1160 | CONFIG_CRYPTO_SALSA20=m | 1199 | CONFIG_CRYPTO_SALSA20=m |
@@ -1168,6 +1207,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1168 | # Compression | 1207 | # Compression |
1169 | # | 1208 | # |
1170 | CONFIG_CRYPTO_DEFLATE=m | 1209 | CONFIG_CRYPTO_DEFLATE=m |
1210 | CONFIG_CRYPTO_ZLIB=m | ||
1171 | CONFIG_CRYPTO_LZO=m | 1211 | CONFIG_CRYPTO_LZO=m |
1172 | 1212 | ||
1173 | # | 1213 | # |
@@ -1175,11 +1215,13 @@ CONFIG_CRYPTO_LZO=m | |||
1175 | # | 1215 | # |
1176 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1216 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1177 | # CONFIG_CRYPTO_HW is not set | 1217 | # CONFIG_CRYPTO_HW is not set |
1218 | # CONFIG_BINARY_PRINTF is not set | ||
1178 | 1219 | ||
1179 | # | 1220 | # |
1180 | # Library routines | 1221 | # Library routines |
1181 | # | 1222 | # |
1182 | CONFIG_BITREVERSE=y | 1223 | CONFIG_BITREVERSE=y |
1224 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1183 | CONFIG_CRC_CCITT=m | 1225 | CONFIG_CRC_CCITT=m |
1184 | CONFIG_CRC16=m | 1226 | CONFIG_CRC16=m |
1185 | CONFIG_CRC_T10DIF=y | 1227 | CONFIG_CRC_T10DIF=y |
@@ -1191,10 +1233,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1191 | CONFIG_ZLIB_DEFLATE=m | 1233 | CONFIG_ZLIB_DEFLATE=m |
1192 | CONFIG_LZO_COMPRESS=m | 1234 | CONFIG_LZO_COMPRESS=m |
1193 | CONFIG_LZO_DECOMPRESS=m | 1235 | CONFIG_LZO_DECOMPRESS=m |
1236 | CONFIG_DECOMPRESS_GZIP=y | ||
1237 | CONFIG_DECOMPRESS_BZIP2=y | ||
1238 | CONFIG_DECOMPRESS_LZMA=y | ||
1194 | CONFIG_TEXTSEARCH=y | 1239 | CONFIG_TEXTSEARCH=y |
1195 | CONFIG_TEXTSEARCH_KMP=m | 1240 | CONFIG_TEXTSEARCH_KMP=m |
1196 | CONFIG_TEXTSEARCH_BM=m | 1241 | CONFIG_TEXTSEARCH_BM=m |
1197 | CONFIG_TEXTSEARCH_FSM=m | 1242 | CONFIG_TEXTSEARCH_FSM=m |
1198 | CONFIG_PLIST=y | ||
1199 | CONFIG_HAS_IOMEM=y | 1243 | CONFIG_HAS_IOMEM=y |
1200 | CONFIG_HAS_DMA=y | 1244 | CONFIG_HAS_DMA=y |
1245 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/apollo_defconfig b/arch/m68k/configs/apollo_defconfig index 935108d115a0..5fff58196b3e 100644 --- a/arch/m68k/configs/apollo_defconfig +++ b/arch/m68k/configs/apollo_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:43 2008 | 4 | # Wed Apr 22 20:47:54 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -140,12 +151,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
140 | CONFIG_NEED_MULTIPLE_NODES=y | 151 | CONFIG_NEED_MULTIPLE_NODES=y |
141 | CONFIG_PAGEFLAGS_EXTENDED=y | 152 | CONFIG_PAGEFLAGS_EXTENDED=y |
142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 153 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
143 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 154 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
145 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
146 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
147 | CONFIG_VIRT_TO_BUS=y | 157 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 158 | CONFIG_UNEVICTABLE_LRU=y |
159 | CONFIG_HAVE_MLOCK=y | ||
160 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
149 | 161 | ||
150 | # | 162 | # |
151 | # General setup | 163 | # General setup |
@@ -256,6 +268,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
256 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 268 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
257 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 269 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
258 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 270 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
271 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
259 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 272 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
260 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 273 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
261 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 274 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -264,6 +277,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
264 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 277 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
265 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 278 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
266 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 279 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
280 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
267 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 281 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
268 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 282 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
269 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 283 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -274,6 +288,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
274 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 288 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
275 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 289 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
276 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 290 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
291 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
277 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 292 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
278 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 293 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
279 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 294 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -352,25 +367,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
352 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 367 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
353 | CONFIG_IP6_NF_MATCH_MH=m | 368 | CONFIG_IP6_NF_MATCH_MH=m |
354 | CONFIG_IP6_NF_MATCH_RT=m | 369 | CONFIG_IP6_NF_MATCH_RT=m |
370 | CONFIG_IP6_NF_TARGET_HL=m | ||
355 | CONFIG_IP6_NF_TARGET_LOG=m | 371 | CONFIG_IP6_NF_TARGET_LOG=m |
356 | CONFIG_IP6_NF_FILTER=m | 372 | CONFIG_IP6_NF_FILTER=m |
357 | CONFIG_IP6_NF_TARGET_REJECT=m | 373 | CONFIG_IP6_NF_TARGET_REJECT=m |
358 | CONFIG_IP6_NF_MANGLE=m | 374 | CONFIG_IP6_NF_MANGLE=m |
359 | CONFIG_IP6_NF_TARGET_HL=m | ||
360 | CONFIG_IP6_NF_RAW=m | 375 | CONFIG_IP6_NF_RAW=m |
361 | CONFIG_IP_DCCP=m | 376 | CONFIG_IP_DCCP=m |
362 | CONFIG_INET_DCCP_DIAG=m | 377 | CONFIG_INET_DCCP_DIAG=m |
363 | CONFIG_IP_DCCP_ACKVEC=y | ||
364 | 378 | ||
365 | # | 379 | # |
366 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 380 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
367 | # | 381 | # |
368 | CONFIG_IP_DCCP_CCID2=m | ||
369 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 382 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
370 | CONFIG_IP_DCCP_CCID3=m | 383 | # CONFIG_IP_DCCP_CCID3 is not set |
371 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
372 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
373 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
374 | CONFIG_IP_SCTP=m | 384 | CONFIG_IP_SCTP=m |
375 | # CONFIG_SCTP_DBG_MSG is not set | 385 | # CONFIG_SCTP_DBG_MSG is not set |
376 | # CONFIG_SCTP_DBG_OBJCNT is not set | 386 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -392,8 +402,10 @@ CONFIG_ATALK=m | |||
392 | # CONFIG_LAPB is not set | 402 | # CONFIG_LAPB is not set |
393 | # CONFIG_ECONET is not set | 403 | # CONFIG_ECONET is not set |
394 | # CONFIG_WAN_ROUTER is not set | 404 | # CONFIG_WAN_ROUTER is not set |
405 | # CONFIG_PHONET is not set | ||
395 | # CONFIG_NET_SCHED is not set | 406 | # CONFIG_NET_SCHED is not set |
396 | CONFIG_NET_CLS_ROUTE=y | 407 | CONFIG_NET_CLS_ROUTE=y |
408 | # CONFIG_DCB is not set | ||
397 | 409 | ||
398 | # | 410 | # |
399 | # Network testing | 411 | # Network testing |
@@ -404,8 +416,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
404 | # CONFIG_IRDA is not set | 416 | # CONFIG_IRDA is not set |
405 | # CONFIG_BT is not set | 417 | # CONFIG_BT is not set |
406 | # CONFIG_AF_RXRPC is not set | 418 | # CONFIG_AF_RXRPC is not set |
407 | # CONFIG_PHONET is not set | ||
408 | # CONFIG_WIRELESS is not set | 419 | # CONFIG_WIRELESS is not set |
420 | # CONFIG_WIMAX is not set | ||
409 | # CONFIG_RFKILL is not set | 421 | # CONFIG_RFKILL is not set |
410 | # CONFIG_NET_9P is not set | 422 | # CONFIG_NET_9P is not set |
411 | 423 | ||
@@ -441,9 +453,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
441 | CONFIG_ATA_OVER_ETH=m | 453 | CONFIG_ATA_OVER_ETH=m |
442 | # CONFIG_BLK_DEV_HD is not set | 454 | # CONFIG_BLK_DEV_HD is not set |
443 | CONFIG_MISC_DEVICES=y | 455 | CONFIG_MISC_DEVICES=y |
444 | # CONFIG_EEPROM_93CX6 is not set | ||
445 | # CONFIG_ENCLOSURE_SERVICES is not set | 456 | # CONFIG_ENCLOSURE_SERVICES is not set |
446 | # CONFIG_C2PORT is not set | 457 | # CONFIG_C2PORT is not set |
458 | |||
459 | # | ||
460 | # EEPROM support | ||
461 | # | ||
462 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | CONFIG_HAVE_IDE=y | 463 | CONFIG_HAVE_IDE=y |
448 | # CONFIG_IDE is not set | 464 | # CONFIG_IDE is not set |
449 | 465 | ||
@@ -491,8 +507,11 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
491 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 507 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
492 | CONFIG_SCSI_LOWLEVEL=y | 508 | CONFIG_SCSI_LOWLEVEL=y |
493 | CONFIG_ISCSI_TCP=m | 509 | CONFIG_ISCSI_TCP=m |
510 | # CONFIG_LIBFC is not set | ||
511 | # CONFIG_LIBFCOE is not set | ||
494 | # CONFIG_SCSI_DEBUG is not set | 512 | # CONFIG_SCSI_DEBUG is not set |
495 | # CONFIG_SCSI_DH is not set | 513 | # CONFIG_SCSI_DH is not set |
514 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
496 | CONFIG_MD=y | 515 | CONFIG_MD=y |
497 | CONFIG_BLK_DEV_MD=m | 516 | CONFIG_BLK_DEV_MD=m |
498 | CONFIG_MD_LINEAR=m | 517 | CONFIG_MD_LINEAR=m |
@@ -500,7 +519,7 @@ CONFIG_MD_RAID0=m | |||
500 | CONFIG_MD_RAID1=m | 519 | CONFIG_MD_RAID1=m |
501 | # CONFIG_MD_RAID10 is not set | 520 | # CONFIG_MD_RAID10 is not set |
502 | CONFIG_MD_RAID456=m | 521 | CONFIG_MD_RAID456=m |
503 | CONFIG_MD_RAID5_RESHAPE=y | 522 | CONFIG_MD_RAID6_PQ=m |
504 | # CONFIG_MD_MULTIPATH is not set | 523 | # CONFIG_MD_MULTIPATH is not set |
505 | # CONFIG_MD_FAULTY is not set | 524 | # CONFIG_MD_FAULTY is not set |
506 | CONFIG_BLK_DEV_DM=m | 525 | CONFIG_BLK_DEV_DM=m |
@@ -513,6 +532,7 @@ CONFIG_DM_MULTIPATH=m | |||
513 | # CONFIG_DM_DELAY is not set | 532 | # CONFIG_DM_DELAY is not set |
514 | CONFIG_DM_UEVENT=y | 533 | CONFIG_DM_UEVENT=y |
515 | CONFIG_NETDEVICES=y | 534 | CONFIG_NETDEVICES=y |
535 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
516 | CONFIG_DUMMY=m | 536 | CONFIG_DUMMY=m |
517 | # CONFIG_BONDING is not set | 537 | # CONFIG_BONDING is not set |
518 | CONFIG_MACVLAN=m | 538 | CONFIG_MACVLAN=m |
@@ -522,6 +542,8 @@ CONFIG_VETH=m | |||
522 | # CONFIG_PHYLIB is not set | 542 | # CONFIG_PHYLIB is not set |
523 | CONFIG_NET_ETHERNET=y | 543 | CONFIG_NET_ETHERNET=y |
524 | # CONFIG_MII is not set | 544 | # CONFIG_MII is not set |
545 | # CONFIG_ETHOC is not set | ||
546 | # CONFIG_DNET is not set | ||
525 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 547 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
526 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 548 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
527 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 549 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -538,7 +560,10 @@ CONFIG_NET_ETHERNET=y | |||
538 | # | 560 | # |
539 | # CONFIG_WLAN_PRE80211 is not set | 561 | # CONFIG_WLAN_PRE80211 is not set |
540 | # CONFIG_WLAN_80211 is not set | 562 | # CONFIG_WLAN_80211 is not set |
541 | # CONFIG_IWLWIFI_LEDS is not set | 563 | |
564 | # | ||
565 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
566 | # | ||
542 | # CONFIG_WAN is not set | 567 | # CONFIG_WAN is not set |
543 | CONFIG_PPP=m | 568 | CONFIG_PPP=m |
544 | # CONFIG_PPP_MULTILINK is not set | 569 | # CONFIG_PPP_MULTILINK is not set |
@@ -596,7 +621,6 @@ CONFIG_MOUSE_PS2=m | |||
596 | CONFIG_MOUSE_PS2_ALPS=y | 621 | CONFIG_MOUSE_PS2_ALPS=y |
597 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 622 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
598 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 623 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
599 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
600 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 624 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
601 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 625 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
602 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 626 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -636,6 +660,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
636 | # Non-8250 serial port support | 660 | # Non-8250 serial port support |
637 | # | 661 | # |
638 | CONFIG_UNIX98_PTYS=y | 662 | CONFIG_UNIX98_PTYS=y |
663 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
639 | CONFIG_LEGACY_PTYS=y | 664 | CONFIG_LEGACY_PTYS=y |
640 | CONFIG_LEGACY_PTY_COUNT=256 | 665 | CONFIG_LEGACY_PTY_COUNT=256 |
641 | # CONFIG_IPMI_HANDLER is not set | 666 | # CONFIG_IPMI_HANDLER is not set |
@@ -718,6 +743,7 @@ CONFIG_FB_APOLLO=y | |||
718 | # CONFIG_FB_VIRTUAL is not set | 743 | # CONFIG_FB_VIRTUAL is not set |
719 | # CONFIG_FB_METRONOME is not set | 744 | # CONFIG_FB_METRONOME is not set |
720 | # CONFIG_FB_MB862XX is not set | 745 | # CONFIG_FB_MB862XX is not set |
746 | # CONFIG_FB_BROADSHEET is not set | ||
721 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 747 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
722 | 748 | ||
723 | # | 749 | # |
@@ -749,7 +775,6 @@ CONFIG_HIDRAW=y | |||
749 | # | 775 | # |
750 | # Special HID drivers | 776 | # Special HID drivers |
751 | # | 777 | # |
752 | CONFIG_HID_COMPAT=y | ||
753 | # CONFIG_USB_SUPPORT is not set | 778 | # CONFIG_USB_SUPPORT is not set |
754 | # CONFIG_MMC is not set | 779 | # CONFIG_MMC is not set |
755 | # CONFIG_MEMSTICK is not set | 780 | # CONFIG_MEMSTICK is not set |
@@ -757,9 +782,9 @@ CONFIG_HID_COMPAT=y | |||
757 | # CONFIG_ACCESSIBILITY is not set | 782 | # CONFIG_ACCESSIBILITY is not set |
758 | # CONFIG_RTC_CLASS is not set | 783 | # CONFIG_RTC_CLASS is not set |
759 | # CONFIG_DMADEVICES is not set | 784 | # CONFIG_DMADEVICES is not set |
785 | # CONFIG_AUXDISPLAY is not set | ||
760 | # CONFIG_UIO is not set | 786 | # CONFIG_UIO is not set |
761 | # CONFIG_STAGING is not set | 787 | # CONFIG_STAGING is not set |
762 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
763 | 788 | ||
764 | # | 789 | # |
765 | # Character devices | 790 | # Character devices |
@@ -774,6 +799,7 @@ CONFIG_EXT2_FS=y | |||
774 | # CONFIG_EXT2_FS_XATTR is not set | 799 | # CONFIG_EXT2_FS_XATTR is not set |
775 | # CONFIG_EXT2_FS_XIP is not set | 800 | # CONFIG_EXT2_FS_XIP is not set |
776 | CONFIG_EXT3_FS=y | 801 | CONFIG_EXT3_FS=y |
802 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
777 | # CONFIG_EXT3_FS_XATTR is not set | 803 | # CONFIG_EXT3_FS_XATTR is not set |
778 | # CONFIG_EXT4_FS is not set | 804 | # CONFIG_EXT4_FS is not set |
779 | CONFIG_JBD=y | 805 | CONFIG_JBD=y |
@@ -800,13 +826,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
800 | # CONFIG_OCFS2_FS_STATS is not set | 826 | # CONFIG_OCFS2_FS_STATS is not set |
801 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 827 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
802 | # CONFIG_OCFS2_DEBUG_FS is not set | 828 | # CONFIG_OCFS2_DEBUG_FS is not set |
803 | # CONFIG_OCFS2_COMPAT_JBD is not set | 829 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
830 | # CONFIG_BTRFS_FS is not set | ||
804 | CONFIG_DNOTIFY=y | 831 | CONFIG_DNOTIFY=y |
805 | CONFIG_INOTIFY=y | 832 | CONFIG_INOTIFY=y |
806 | CONFIG_INOTIFY_USER=y | 833 | CONFIG_INOTIFY_USER=y |
807 | CONFIG_QUOTA=y | 834 | CONFIG_QUOTA=y |
808 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 835 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
809 | # CONFIG_PRINT_QUOTA_WARNING is not set | 836 | # CONFIG_PRINT_QUOTA_WARNING is not set |
837 | CONFIG_QUOTA_TREE=m | ||
810 | # CONFIG_QFMT_V1 is not set | 838 | # CONFIG_QFMT_V1 is not set |
811 | # CONFIG_QFMT_V2 is not set | 839 | # CONFIG_QFMT_V2 is not set |
812 | CONFIG_QUOTACTL=y | 840 | CONFIG_QUOTACTL=y |
@@ -815,6 +843,11 @@ CONFIG_AUTOFS4_FS=m | |||
815 | CONFIG_FUSE_FS=m | 843 | CONFIG_FUSE_FS=m |
816 | 844 | ||
817 | # | 845 | # |
846 | # Caches | ||
847 | # | ||
848 | # CONFIG_FSCACHE is not set | ||
849 | |||
850 | # | ||
818 | # CD-ROM/DVD Filesystems | 851 | # CD-ROM/DVD Filesystems |
819 | # | 852 | # |
820 | CONFIG_ISO9660_FS=y | 853 | CONFIG_ISO9660_FS=y |
@@ -845,10 +878,7 @@ CONFIG_TMPFS=y | |||
845 | # CONFIG_TMPFS_POSIX_ACL is not set | 878 | # CONFIG_TMPFS_POSIX_ACL is not set |
846 | # CONFIG_HUGETLB_PAGE is not set | 879 | # CONFIG_HUGETLB_PAGE is not set |
847 | CONFIG_CONFIGFS_FS=m | 880 | CONFIG_CONFIGFS_FS=m |
848 | 881 | CONFIG_MISC_FILESYSTEMS=y | |
849 | # | ||
850 | # Miscellaneous filesystems | ||
851 | # | ||
852 | # CONFIG_ADFS_FS is not set | 882 | # CONFIG_ADFS_FS is not set |
853 | CONFIG_AFFS_FS=m | 883 | CONFIG_AFFS_FS=m |
854 | CONFIG_HFS_FS=m | 884 | CONFIG_HFS_FS=m |
@@ -857,6 +887,9 @@ CONFIG_HFSPLUS_FS=m | |||
857 | # CONFIG_BFS_FS is not set | 887 | # CONFIG_BFS_FS is not set |
858 | # CONFIG_EFS_FS is not set | 888 | # CONFIG_EFS_FS is not set |
859 | CONFIG_CRAMFS=m | 889 | CONFIG_CRAMFS=m |
890 | CONFIG_SQUASHFS=m | ||
891 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
892 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
860 | # CONFIG_VXFS_FS is not set | 893 | # CONFIG_VXFS_FS is not set |
861 | CONFIG_MINIX_FS=y | 894 | CONFIG_MINIX_FS=y |
862 | # CONFIG_OMFS_FS is not set | 895 | # CONFIG_OMFS_FS is not set |
@@ -867,6 +900,7 @@ CONFIG_SYSV_FS=m | |||
867 | CONFIG_UFS_FS=m | 900 | CONFIG_UFS_FS=m |
868 | # CONFIG_UFS_FS_WRITE is not set | 901 | # CONFIG_UFS_FS_WRITE is not set |
869 | # CONFIG_UFS_DEBUG is not set | 902 | # CONFIG_UFS_DEBUG is not set |
903 | # CONFIG_NILFS2_FS is not set | ||
870 | CONFIG_NETWORK_FILESYSTEMS=y | 904 | CONFIG_NETWORK_FILESYSTEMS=y |
871 | CONFIG_NFS_FS=y | 905 | CONFIG_NFS_FS=y |
872 | CONFIG_NFS_V3=y | 906 | CONFIG_NFS_V3=y |
@@ -883,7 +917,6 @@ CONFIG_EXPORTFS=m | |||
883 | CONFIG_NFS_COMMON=y | 917 | CONFIG_NFS_COMMON=y |
884 | CONFIG_SUNRPC=y | 918 | CONFIG_SUNRPC=y |
885 | CONFIG_SUNRPC_GSS=y | 919 | CONFIG_SUNRPC_GSS=y |
886 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
887 | CONFIG_RPCSEC_GSS_KRB5=y | 920 | CONFIG_RPCSEC_GSS_KRB5=y |
888 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 921 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
889 | CONFIG_SMB_FS=m | 922 | CONFIG_SMB_FS=m |
@@ -958,11 +991,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
958 | CONFIG_DEBUG_MEMORY_INIT=y | 991 | CONFIG_DEBUG_MEMORY_INIT=y |
959 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 992 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
960 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 993 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
961 | |||
962 | # | ||
963 | # Tracers | ||
964 | # | ||
965 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
966 | # CONFIG_SAMPLES is not set | 994 | # CONFIG_SAMPLES is not set |
967 | 995 | ||
968 | # | 996 | # |
@@ -983,13 +1011,21 @@ CONFIG_CRYPTO=y | |||
983 | # | 1011 | # |
984 | # CONFIG_CRYPTO_FIPS is not set | 1012 | # CONFIG_CRYPTO_FIPS is not set |
985 | CONFIG_CRYPTO_ALGAPI=y | 1013 | CONFIG_CRYPTO_ALGAPI=y |
986 | CONFIG_CRYPTO_AEAD=y | 1014 | CONFIG_CRYPTO_ALGAPI2=y |
1015 | CONFIG_CRYPTO_AEAD=m | ||
1016 | CONFIG_CRYPTO_AEAD2=y | ||
987 | CONFIG_CRYPTO_BLKCIPHER=y | 1017 | CONFIG_CRYPTO_BLKCIPHER=y |
1018 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
988 | CONFIG_CRYPTO_HASH=y | 1019 | CONFIG_CRYPTO_HASH=y |
989 | CONFIG_CRYPTO_RNG=y | 1020 | CONFIG_CRYPTO_HASH2=y |
1021 | CONFIG_CRYPTO_RNG=m | ||
1022 | CONFIG_CRYPTO_RNG2=y | ||
1023 | CONFIG_CRYPTO_PCOMP=y | ||
990 | CONFIG_CRYPTO_MANAGER=y | 1024 | CONFIG_CRYPTO_MANAGER=y |
1025 | CONFIG_CRYPTO_MANAGER2=y | ||
991 | CONFIG_CRYPTO_GF128MUL=m | 1026 | CONFIG_CRYPTO_GF128MUL=m |
992 | CONFIG_CRYPTO_NULL=m | 1027 | CONFIG_CRYPTO_NULL=m |
1028 | CONFIG_CRYPTO_WORKQUEUE=y | ||
993 | CONFIG_CRYPTO_CRYPTD=m | 1029 | CONFIG_CRYPTO_CRYPTD=m |
994 | CONFIG_CRYPTO_AUTHENC=m | 1030 | CONFIG_CRYPTO_AUTHENC=m |
995 | CONFIG_CRYPTO_TEST=m | 1031 | CONFIG_CRYPTO_TEST=m |
@@ -1059,6 +1095,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1059 | # Compression | 1095 | # Compression |
1060 | # | 1096 | # |
1061 | CONFIG_CRYPTO_DEFLATE=m | 1097 | CONFIG_CRYPTO_DEFLATE=m |
1098 | CONFIG_CRYPTO_ZLIB=m | ||
1062 | CONFIG_CRYPTO_LZO=m | 1099 | CONFIG_CRYPTO_LZO=m |
1063 | 1100 | ||
1064 | # | 1101 | # |
@@ -1066,11 +1103,13 @@ CONFIG_CRYPTO_LZO=m | |||
1066 | # | 1103 | # |
1067 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1104 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1068 | # CONFIG_CRYPTO_HW is not set | 1105 | # CONFIG_CRYPTO_HW is not set |
1106 | # CONFIG_BINARY_PRINTF is not set | ||
1069 | 1107 | ||
1070 | # | 1108 | # |
1071 | # Library routines | 1109 | # Library routines |
1072 | # | 1110 | # |
1073 | CONFIG_BITREVERSE=y | 1111 | CONFIG_BITREVERSE=y |
1112 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1074 | CONFIG_CRC_CCITT=m | 1113 | CONFIG_CRC_CCITT=m |
1075 | CONFIG_CRC16=m | 1114 | CONFIG_CRC16=m |
1076 | CONFIG_CRC_T10DIF=y | 1115 | CONFIG_CRC_T10DIF=y |
@@ -1082,10 +1121,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1082 | CONFIG_ZLIB_DEFLATE=m | 1121 | CONFIG_ZLIB_DEFLATE=m |
1083 | CONFIG_LZO_COMPRESS=m | 1122 | CONFIG_LZO_COMPRESS=m |
1084 | CONFIG_LZO_DECOMPRESS=m | 1123 | CONFIG_LZO_DECOMPRESS=m |
1124 | CONFIG_DECOMPRESS_GZIP=y | ||
1125 | CONFIG_DECOMPRESS_BZIP2=y | ||
1126 | CONFIG_DECOMPRESS_LZMA=y | ||
1085 | CONFIG_TEXTSEARCH=y | 1127 | CONFIG_TEXTSEARCH=y |
1086 | CONFIG_TEXTSEARCH_KMP=m | 1128 | CONFIG_TEXTSEARCH_KMP=m |
1087 | CONFIG_TEXTSEARCH_BM=m | 1129 | CONFIG_TEXTSEARCH_BM=m |
1088 | CONFIG_TEXTSEARCH_FSM=m | 1130 | CONFIG_TEXTSEARCH_FSM=m |
1089 | CONFIG_PLIST=y | ||
1090 | CONFIG_HAS_IOMEM=y | 1131 | CONFIG_HAS_IOMEM=y |
1091 | CONFIG_HAS_DMA=y | 1132 | CONFIG_HAS_DMA=y |
1133 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/atari_defconfig b/arch/m68k/configs/atari_defconfig index a594a1d47b62..d92a90e03ecb 100644 --- a/arch/m68k/configs/atari_defconfig +++ b/arch/m68k/configs/atari_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:44 2008 | 4 | # Wed Apr 22 20:47:56 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -140,12 +151,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
140 | CONFIG_NEED_MULTIPLE_NODES=y | 151 | CONFIG_NEED_MULTIPLE_NODES=y |
141 | CONFIG_PAGEFLAGS_EXTENDED=y | 152 | CONFIG_PAGEFLAGS_EXTENDED=y |
142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 153 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
143 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 154 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
145 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
146 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
147 | CONFIG_VIRT_TO_BUS=y | 157 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 158 | CONFIG_UNEVICTABLE_LRU=y |
159 | CONFIG_HAVE_MLOCK=y | ||
160 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
149 | 161 | ||
150 | # | 162 | # |
151 | # General setup | 163 | # General setup |
@@ -180,7 +192,10 @@ CONFIG_INET=y | |||
180 | # CONFIG_IP_MULTICAST is not set | 192 | # CONFIG_IP_MULTICAST is not set |
181 | # CONFIG_IP_ADVANCED_ROUTER is not set | 193 | # CONFIG_IP_ADVANCED_ROUTER is not set |
182 | CONFIG_IP_FIB_HASH=y | 194 | CONFIG_IP_FIB_HASH=y |
183 | # CONFIG_IP_PNP is not set | 195 | CONFIG_IP_PNP=y |
196 | # CONFIG_IP_PNP_DHCP is not set | ||
197 | # CONFIG_IP_PNP_BOOTP is not set | ||
198 | # CONFIG_IP_PNP_RARP is not set | ||
184 | CONFIG_NET_IPIP=m | 199 | CONFIG_NET_IPIP=m |
185 | CONFIG_NET_IPGRE=m | 200 | CONFIG_NET_IPGRE=m |
186 | # CONFIG_ARPD is not set | 201 | # CONFIG_ARPD is not set |
@@ -254,6 +269,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
254 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 269 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
255 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 270 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
256 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 271 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
272 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
257 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 273 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
258 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 274 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
259 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 275 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -262,6 +278,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
262 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 278 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
263 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 279 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
264 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 280 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
281 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
265 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 282 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
266 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 283 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
267 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 284 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -272,6 +289,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
272 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 289 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
273 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 290 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
274 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 291 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
292 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
275 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 293 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
276 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 294 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
277 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 295 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -350,25 +368,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
350 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 368 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
351 | CONFIG_IP6_NF_MATCH_MH=m | 369 | CONFIG_IP6_NF_MATCH_MH=m |
352 | CONFIG_IP6_NF_MATCH_RT=m | 370 | CONFIG_IP6_NF_MATCH_RT=m |
371 | CONFIG_IP6_NF_TARGET_HL=m | ||
353 | CONFIG_IP6_NF_TARGET_LOG=m | 372 | CONFIG_IP6_NF_TARGET_LOG=m |
354 | CONFIG_IP6_NF_FILTER=m | 373 | CONFIG_IP6_NF_FILTER=m |
355 | CONFIG_IP6_NF_TARGET_REJECT=m | 374 | CONFIG_IP6_NF_TARGET_REJECT=m |
356 | CONFIG_IP6_NF_MANGLE=m | 375 | CONFIG_IP6_NF_MANGLE=m |
357 | CONFIG_IP6_NF_TARGET_HL=m | ||
358 | CONFIG_IP6_NF_RAW=m | 376 | CONFIG_IP6_NF_RAW=m |
359 | CONFIG_IP_DCCP=m | 377 | CONFIG_IP_DCCP=m |
360 | CONFIG_INET_DCCP_DIAG=m | 378 | CONFIG_INET_DCCP_DIAG=m |
361 | CONFIG_IP_DCCP_ACKVEC=y | ||
362 | 379 | ||
363 | # | 380 | # |
364 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 381 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
365 | # | 382 | # |
366 | CONFIG_IP_DCCP_CCID2=m | ||
367 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 383 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
368 | CONFIG_IP_DCCP_CCID3=m | 384 | # CONFIG_IP_DCCP_CCID3 is not set |
369 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
370 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
371 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
372 | CONFIG_IP_SCTP=m | 385 | CONFIG_IP_SCTP=m |
373 | # CONFIG_SCTP_DBG_MSG is not set | 386 | # CONFIG_SCTP_DBG_MSG is not set |
374 | # CONFIG_SCTP_DBG_OBJCNT is not set | 387 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -390,8 +403,10 @@ CONFIG_ATALK=m | |||
390 | # CONFIG_LAPB is not set | 403 | # CONFIG_LAPB is not set |
391 | # CONFIG_ECONET is not set | 404 | # CONFIG_ECONET is not set |
392 | # CONFIG_WAN_ROUTER is not set | 405 | # CONFIG_WAN_ROUTER is not set |
406 | # CONFIG_PHONET is not set | ||
393 | # CONFIG_NET_SCHED is not set | 407 | # CONFIG_NET_SCHED is not set |
394 | CONFIG_NET_CLS_ROUTE=y | 408 | CONFIG_NET_CLS_ROUTE=y |
409 | # CONFIG_DCB is not set | ||
395 | 410 | ||
396 | # | 411 | # |
397 | # Network testing | 412 | # Network testing |
@@ -402,8 +417,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
402 | # CONFIG_IRDA is not set | 417 | # CONFIG_IRDA is not set |
403 | # CONFIG_BT is not set | 418 | # CONFIG_BT is not set |
404 | # CONFIG_AF_RXRPC is not set | 419 | # CONFIG_AF_RXRPC is not set |
405 | # CONFIG_PHONET is not set | ||
406 | # CONFIG_WIRELESS is not set | 420 | # CONFIG_WIRELESS is not set |
421 | # CONFIG_WIMAX is not set | ||
407 | # CONFIG_RFKILL is not set | 422 | # CONFIG_RFKILL is not set |
408 | # CONFIG_NET_9P is not set | 423 | # CONFIG_NET_9P is not set |
409 | 424 | ||
@@ -445,15 +460,20 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
445 | CONFIG_ATA_OVER_ETH=m | 460 | CONFIG_ATA_OVER_ETH=m |
446 | # CONFIG_BLK_DEV_HD is not set | 461 | # CONFIG_BLK_DEV_HD is not set |
447 | CONFIG_MISC_DEVICES=y | 462 | CONFIG_MISC_DEVICES=y |
448 | # CONFIG_EEPROM_93CX6 is not set | ||
449 | # CONFIG_ENCLOSURE_SERVICES is not set | 463 | # CONFIG_ENCLOSURE_SERVICES is not set |
450 | # CONFIG_C2PORT is not set | 464 | # CONFIG_C2PORT is not set |
465 | |||
466 | # | ||
467 | # EEPROM support | ||
468 | # | ||
469 | # CONFIG_EEPROM_93CX6 is not set | ||
451 | CONFIG_HAVE_IDE=y | 470 | CONFIG_HAVE_IDE=y |
452 | CONFIG_IDE=y | 471 | CONFIG_IDE=y |
453 | 472 | ||
454 | # | 473 | # |
455 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 474 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
456 | # | 475 | # |
476 | CONFIG_IDE_ATAPI=y | ||
457 | # CONFIG_BLK_DEV_IDE_SATA is not set | 477 | # CONFIG_BLK_DEV_IDE_SATA is not set |
458 | CONFIG_IDE_GD=y | 478 | CONFIG_IDE_GD=y |
459 | CONFIG_IDE_GD_ATA=y | 479 | CONFIG_IDE_GD_ATA=y |
@@ -461,7 +481,6 @@ CONFIG_IDE_GD_ATA=y | |||
461 | CONFIG_BLK_DEV_IDECD=y | 481 | CONFIG_BLK_DEV_IDECD=y |
462 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 482 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
463 | # CONFIG_BLK_DEV_IDETAPE is not set | 483 | # CONFIG_BLK_DEV_IDETAPE is not set |
464 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
465 | # CONFIG_IDE_TASK_IOCTL is not set | 484 | # CONFIG_IDE_TASK_IOCTL is not set |
466 | CONFIG_IDE_PROC_FS=y | 485 | CONFIG_IDE_PROC_FS=y |
467 | 486 | ||
@@ -516,11 +535,14 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
516 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 535 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
517 | CONFIG_SCSI_LOWLEVEL=y | 536 | CONFIG_SCSI_LOWLEVEL=y |
518 | CONFIG_ISCSI_TCP=m | 537 | CONFIG_ISCSI_TCP=m |
538 | # CONFIG_LIBFC is not set | ||
539 | # CONFIG_LIBFCOE is not set | ||
519 | # CONFIG_SCSI_DEBUG is not set | 540 | # CONFIG_SCSI_DEBUG is not set |
520 | CONFIG_ATARI_SCSI=y | 541 | CONFIG_ATARI_SCSI=y |
521 | # CONFIG_ATARI_SCSI_TOSHIBA_DELAY is not set | 542 | # CONFIG_ATARI_SCSI_TOSHIBA_DELAY is not set |
522 | # CONFIG_ATARI_SCSI_RESET_BOOT is not set | 543 | # CONFIG_ATARI_SCSI_RESET_BOOT is not set |
523 | # CONFIG_SCSI_DH is not set | 544 | # CONFIG_SCSI_DH is not set |
545 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
524 | CONFIG_MD=y | 546 | CONFIG_MD=y |
525 | CONFIG_BLK_DEV_MD=m | 547 | CONFIG_BLK_DEV_MD=m |
526 | CONFIG_MD_LINEAR=m | 548 | CONFIG_MD_LINEAR=m |
@@ -528,7 +550,7 @@ CONFIG_MD_RAID0=m | |||
528 | CONFIG_MD_RAID1=m | 550 | CONFIG_MD_RAID1=m |
529 | # CONFIG_MD_RAID10 is not set | 551 | # CONFIG_MD_RAID10 is not set |
530 | CONFIG_MD_RAID456=m | 552 | CONFIG_MD_RAID456=m |
531 | CONFIG_MD_RAID5_RESHAPE=y | 553 | CONFIG_MD_RAID6_PQ=m |
532 | # CONFIG_MD_MULTIPATH is not set | 554 | # CONFIG_MD_MULTIPATH is not set |
533 | # CONFIG_MD_FAULTY is not set | 555 | # CONFIG_MD_FAULTY is not set |
534 | CONFIG_BLK_DEV_DM=m | 556 | CONFIG_BLK_DEV_DM=m |
@@ -541,6 +563,7 @@ CONFIG_DM_MULTIPATH=m | |||
541 | # CONFIG_DM_DELAY is not set | 563 | # CONFIG_DM_DELAY is not set |
542 | CONFIG_DM_UEVENT=y | 564 | CONFIG_DM_UEVENT=y |
543 | CONFIG_NETDEVICES=y | 565 | CONFIG_NETDEVICES=y |
566 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
544 | CONFIG_DUMMY=m | 567 | CONFIG_DUMMY=m |
545 | # CONFIG_BONDING is not set | 568 | # CONFIG_BONDING is not set |
546 | CONFIG_MACVLAN=m | 569 | CONFIG_MACVLAN=m |
@@ -550,7 +573,9 @@ CONFIG_VETH=m | |||
550 | # CONFIG_PHYLIB is not set | 573 | # CONFIG_PHYLIB is not set |
551 | CONFIG_NET_ETHERNET=y | 574 | CONFIG_NET_ETHERNET=y |
552 | CONFIG_MII=y | 575 | CONFIG_MII=y |
553 | CONFIG_ATARILANCE=m | 576 | CONFIG_ATARILANCE=y |
577 | # CONFIG_ETHOC is not set | ||
578 | # CONFIG_DNET is not set | ||
554 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 579 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
555 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 580 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
556 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 581 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -568,7 +593,10 @@ CONFIG_ATARILANCE=m | |||
568 | # | 593 | # |
569 | # CONFIG_WLAN_PRE80211 is not set | 594 | # CONFIG_WLAN_PRE80211 is not set |
570 | # CONFIG_WLAN_80211 is not set | 595 | # CONFIG_WLAN_80211 is not set |
571 | # CONFIG_IWLWIFI_LEDS is not set | 596 | |
597 | # | ||
598 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
599 | # | ||
572 | # CONFIG_WAN is not set | 600 | # CONFIG_WAN is not set |
573 | # CONFIG_PLIP is not set | 601 | # CONFIG_PLIP is not set |
574 | CONFIG_PPP=m | 602 | CONFIG_PPP=m |
@@ -625,11 +653,10 @@ CONFIG_INPUT_KEYBOARD=y | |||
625 | CONFIG_ATARI_KBD_CORE=y | 653 | CONFIG_ATARI_KBD_CORE=y |
626 | CONFIG_KEYBOARD_ATARI=y | 654 | CONFIG_KEYBOARD_ATARI=y |
627 | CONFIG_INPUT_MOUSE=y | 655 | CONFIG_INPUT_MOUSE=y |
628 | CONFIG_MOUSE_PS2=y | 656 | CONFIG_MOUSE_PS2=m |
629 | CONFIG_MOUSE_PS2_ALPS=y | 657 | CONFIG_MOUSE_PS2_ALPS=y |
630 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 658 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
631 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 659 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
632 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
633 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 660 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
634 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 661 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
635 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 662 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -649,7 +676,7 @@ CONFIG_INPUT_M68K_BEEP=m | |||
649 | CONFIG_SERIO=y | 676 | CONFIG_SERIO=y |
650 | # CONFIG_SERIO_SERPORT is not set | 677 | # CONFIG_SERIO_SERPORT is not set |
651 | # CONFIG_SERIO_PARKBD is not set | 678 | # CONFIG_SERIO_PARKBD is not set |
652 | CONFIG_SERIO_LIBPS2=y | 679 | CONFIG_SERIO_LIBPS2=m |
653 | # CONFIG_SERIO_RAW is not set | 680 | # CONFIG_SERIO_RAW is not set |
654 | # CONFIG_GAMEPORT is not set | 681 | # CONFIG_GAMEPORT is not set |
655 | 682 | ||
@@ -673,6 +700,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
673 | # Non-8250 serial port support | 700 | # Non-8250 serial port support |
674 | # | 701 | # |
675 | CONFIG_UNIX98_PTYS=y | 702 | CONFIG_UNIX98_PTYS=y |
703 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
676 | CONFIG_LEGACY_PTYS=y | 704 | CONFIG_LEGACY_PTYS=y |
677 | CONFIG_LEGACY_PTY_COUNT=256 | 705 | CONFIG_LEGACY_PTY_COUNT=256 |
678 | CONFIG_PRINTER=m | 706 | CONFIG_PRINTER=m |
@@ -760,6 +788,7 @@ CONFIG_FB_ATARI=y | |||
760 | # CONFIG_FB_VIRTUAL is not set | 788 | # CONFIG_FB_VIRTUAL is not set |
761 | # CONFIG_FB_METRONOME is not set | 789 | # CONFIG_FB_METRONOME is not set |
762 | # CONFIG_FB_MB862XX is not set | 790 | # CONFIG_FB_MB862XX is not set |
791 | # CONFIG_FB_BROADSHEET is not set | ||
763 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 792 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
764 | 793 | ||
765 | # | 794 | # |
@@ -794,7 +823,6 @@ CONFIG_HIDRAW=y | |||
794 | # | 823 | # |
795 | # Special HID drivers | 824 | # Special HID drivers |
796 | # | 825 | # |
797 | CONFIG_HID_COMPAT=y | ||
798 | # CONFIG_USB_SUPPORT is not set | 826 | # CONFIG_USB_SUPPORT is not set |
799 | # CONFIG_MMC is not set | 827 | # CONFIG_MMC is not set |
800 | # CONFIG_MEMSTICK is not set | 828 | # CONFIG_MEMSTICK is not set |
@@ -805,14 +833,14 @@ CONFIG_HID_COMPAT=y | |||
805 | # CONFIG_AUXDISPLAY is not set | 833 | # CONFIG_AUXDISPLAY is not set |
806 | # CONFIG_UIO is not set | 834 | # CONFIG_UIO is not set |
807 | # CONFIG_STAGING is not set | 835 | # CONFIG_STAGING is not set |
808 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
809 | 836 | ||
810 | # | 837 | # |
811 | # Character devices | 838 | # Character devices |
812 | # | 839 | # |
813 | CONFIG_ATARI_MFPSER=m | 840 | CONFIG_ATARI_MFPSER=y |
814 | CONFIG_ATARI_MIDI=m | 841 | CONFIG_ATARI_MIDI=y |
815 | CONFIG_ATARI_DSP56K=m | 842 | CONFIG_ATARI_DSP56K=m |
843 | CONFIG_SERIAL_CONSOLE=y | ||
816 | 844 | ||
817 | # | 845 | # |
818 | # File systems | 846 | # File systems |
@@ -821,6 +849,7 @@ CONFIG_EXT2_FS=y | |||
821 | # CONFIG_EXT2_FS_XATTR is not set | 849 | # CONFIG_EXT2_FS_XATTR is not set |
822 | # CONFIG_EXT2_FS_XIP is not set | 850 | # CONFIG_EXT2_FS_XIP is not set |
823 | CONFIG_EXT3_FS=y | 851 | CONFIG_EXT3_FS=y |
852 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
824 | # CONFIG_EXT3_FS_XATTR is not set | 853 | # CONFIG_EXT3_FS_XATTR is not set |
825 | # CONFIG_EXT4_FS is not set | 854 | # CONFIG_EXT4_FS is not set |
826 | CONFIG_JBD=y | 855 | CONFIG_JBD=y |
@@ -847,13 +876,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
847 | # CONFIG_OCFS2_FS_STATS is not set | 876 | # CONFIG_OCFS2_FS_STATS is not set |
848 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 877 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
849 | # CONFIG_OCFS2_DEBUG_FS is not set | 878 | # CONFIG_OCFS2_DEBUG_FS is not set |
850 | # CONFIG_OCFS2_COMPAT_JBD is not set | 879 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
880 | # CONFIG_BTRFS_FS is not set | ||
851 | CONFIG_DNOTIFY=y | 881 | CONFIG_DNOTIFY=y |
852 | CONFIG_INOTIFY=y | 882 | CONFIG_INOTIFY=y |
853 | CONFIG_INOTIFY_USER=y | 883 | CONFIG_INOTIFY_USER=y |
854 | CONFIG_QUOTA=y | 884 | CONFIG_QUOTA=y |
855 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 885 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
856 | # CONFIG_PRINT_QUOTA_WARNING is not set | 886 | # CONFIG_PRINT_QUOTA_WARNING is not set |
887 | CONFIG_QUOTA_TREE=m | ||
857 | # CONFIG_QFMT_V1 is not set | 888 | # CONFIG_QFMT_V1 is not set |
858 | # CONFIG_QFMT_V2 is not set | 889 | # CONFIG_QFMT_V2 is not set |
859 | CONFIG_QUOTACTL=y | 890 | CONFIG_QUOTACTL=y |
@@ -862,6 +893,11 @@ CONFIG_AUTOFS4_FS=m | |||
862 | CONFIG_FUSE_FS=m | 893 | CONFIG_FUSE_FS=m |
863 | 894 | ||
864 | # | 895 | # |
896 | # Caches | ||
897 | # | ||
898 | # CONFIG_FSCACHE is not set | ||
899 | |||
900 | # | ||
865 | # CD-ROM/DVD Filesystems | 901 | # CD-ROM/DVD Filesystems |
866 | # | 902 | # |
867 | CONFIG_ISO9660_FS=y | 903 | CONFIG_ISO9660_FS=y |
@@ -892,10 +928,7 @@ CONFIG_TMPFS=y | |||
892 | # CONFIG_TMPFS_POSIX_ACL is not set | 928 | # CONFIG_TMPFS_POSIX_ACL is not set |
893 | # CONFIG_HUGETLB_PAGE is not set | 929 | # CONFIG_HUGETLB_PAGE is not set |
894 | CONFIG_CONFIGFS_FS=m | 930 | CONFIG_CONFIGFS_FS=m |
895 | 931 | CONFIG_MISC_FILESYSTEMS=y | |
896 | # | ||
897 | # Miscellaneous filesystems | ||
898 | # | ||
899 | # CONFIG_ADFS_FS is not set | 932 | # CONFIG_ADFS_FS is not set |
900 | CONFIG_AFFS_FS=m | 933 | CONFIG_AFFS_FS=m |
901 | CONFIG_HFS_FS=m | 934 | CONFIG_HFS_FS=m |
@@ -904,6 +937,9 @@ CONFIG_HFSPLUS_FS=m | |||
904 | # CONFIG_BFS_FS is not set | 937 | # CONFIG_BFS_FS is not set |
905 | # CONFIG_EFS_FS is not set | 938 | # CONFIG_EFS_FS is not set |
906 | CONFIG_CRAMFS=m | 939 | CONFIG_CRAMFS=m |
940 | CONFIG_SQUASHFS=m | ||
941 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
942 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
907 | # CONFIG_VXFS_FS is not set | 943 | # CONFIG_VXFS_FS is not set |
908 | CONFIG_MINIX_FS=y | 944 | CONFIG_MINIX_FS=y |
909 | # CONFIG_OMFS_FS is not set | 945 | # CONFIG_OMFS_FS is not set |
@@ -914,22 +950,24 @@ CONFIG_SYSV_FS=m | |||
914 | CONFIG_UFS_FS=m | 950 | CONFIG_UFS_FS=m |
915 | # CONFIG_UFS_FS_WRITE is not set | 951 | # CONFIG_UFS_FS_WRITE is not set |
916 | # CONFIG_UFS_DEBUG is not set | 952 | # CONFIG_UFS_DEBUG is not set |
953 | # CONFIG_NILFS2_FS is not set | ||
917 | CONFIG_NETWORK_FILESYSTEMS=y | 954 | CONFIG_NETWORK_FILESYSTEMS=y |
918 | CONFIG_NFS_FS=m | 955 | CONFIG_NFS_FS=y |
919 | CONFIG_NFS_V3=y | 956 | CONFIG_NFS_V3=y |
920 | # CONFIG_NFS_V3_ACL is not set | 957 | # CONFIG_NFS_V3_ACL is not set |
921 | # CONFIG_NFS_V4 is not set | 958 | CONFIG_NFS_V4=y |
959 | # CONFIG_ROOT_NFS is not set | ||
922 | CONFIG_NFSD=m | 960 | CONFIG_NFSD=m |
923 | CONFIG_NFSD_V3=y | 961 | CONFIG_NFSD_V3=y |
924 | # CONFIG_NFSD_V3_ACL is not set | 962 | # CONFIG_NFSD_V3_ACL is not set |
925 | # CONFIG_NFSD_V4 is not set | 963 | # CONFIG_NFSD_V4 is not set |
926 | CONFIG_LOCKD=m | 964 | CONFIG_LOCKD=y |
927 | CONFIG_LOCKD_V4=y | 965 | CONFIG_LOCKD_V4=y |
928 | CONFIG_EXPORTFS=m | 966 | CONFIG_EXPORTFS=m |
929 | CONFIG_NFS_COMMON=y | 967 | CONFIG_NFS_COMMON=y |
930 | CONFIG_SUNRPC=m | 968 | CONFIG_SUNRPC=y |
931 | # CONFIG_SUNRPC_REGISTER_V4 is not set | 969 | CONFIG_SUNRPC_GSS=y |
932 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 970 | CONFIG_RPCSEC_GSS_KRB5=y |
933 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 971 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
934 | CONFIG_SMB_FS=m | 972 | CONFIG_SMB_FS=m |
935 | CONFIG_SMB_NLS_DEFAULT=y | 973 | CONFIG_SMB_NLS_DEFAULT=y |
@@ -1004,11 +1042,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1004 | CONFIG_DEBUG_MEMORY_INIT=y | 1042 | CONFIG_DEBUG_MEMORY_INIT=y |
1005 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1043 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1006 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1044 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1007 | |||
1008 | # | ||
1009 | # Tracers | ||
1010 | # | ||
1011 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1012 | # CONFIG_SAMPLES is not set | 1045 | # CONFIG_SAMPLES is not set |
1013 | 1046 | ||
1014 | # | 1047 | # |
@@ -1029,13 +1062,21 @@ CONFIG_CRYPTO=y | |||
1029 | # | 1062 | # |
1030 | # CONFIG_CRYPTO_FIPS is not set | 1063 | # CONFIG_CRYPTO_FIPS is not set |
1031 | CONFIG_CRYPTO_ALGAPI=y | 1064 | CONFIG_CRYPTO_ALGAPI=y |
1032 | CONFIG_CRYPTO_AEAD=y | 1065 | CONFIG_CRYPTO_ALGAPI2=y |
1066 | CONFIG_CRYPTO_AEAD=m | ||
1067 | CONFIG_CRYPTO_AEAD2=y | ||
1033 | CONFIG_CRYPTO_BLKCIPHER=y | 1068 | CONFIG_CRYPTO_BLKCIPHER=y |
1069 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1034 | CONFIG_CRYPTO_HASH=y | 1070 | CONFIG_CRYPTO_HASH=y |
1035 | CONFIG_CRYPTO_RNG=y | 1071 | CONFIG_CRYPTO_HASH2=y |
1072 | CONFIG_CRYPTO_RNG=m | ||
1073 | CONFIG_CRYPTO_RNG2=y | ||
1074 | CONFIG_CRYPTO_PCOMP=y | ||
1036 | CONFIG_CRYPTO_MANAGER=y | 1075 | CONFIG_CRYPTO_MANAGER=y |
1076 | CONFIG_CRYPTO_MANAGER2=y | ||
1037 | CONFIG_CRYPTO_GF128MUL=m | 1077 | CONFIG_CRYPTO_GF128MUL=m |
1038 | CONFIG_CRYPTO_NULL=m | 1078 | CONFIG_CRYPTO_NULL=m |
1079 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1039 | CONFIG_CRYPTO_CRYPTD=m | 1080 | CONFIG_CRYPTO_CRYPTD=m |
1040 | CONFIG_CRYPTO_AUTHENC=m | 1081 | CONFIG_CRYPTO_AUTHENC=m |
1041 | CONFIG_CRYPTO_TEST=m | 1082 | CONFIG_CRYPTO_TEST=m |
@@ -1050,7 +1091,7 @@ CONFIG_CRYPTO_SEQIV=m | |||
1050 | # | 1091 | # |
1051 | # Block modes | 1092 | # Block modes |
1052 | # | 1093 | # |
1053 | CONFIG_CRYPTO_CBC=m | 1094 | CONFIG_CRYPTO_CBC=y |
1054 | CONFIG_CRYPTO_CTR=m | 1095 | CONFIG_CRYPTO_CTR=m |
1055 | CONFIG_CRYPTO_CTS=m | 1096 | CONFIG_CRYPTO_CTS=m |
1056 | CONFIG_CRYPTO_ECB=m | 1097 | CONFIG_CRYPTO_ECB=m |
@@ -1069,7 +1110,7 @@ CONFIG_CRYPTO_XCBC=m | |||
1069 | # | 1110 | # |
1070 | CONFIG_CRYPTO_CRC32C=m | 1111 | CONFIG_CRYPTO_CRC32C=m |
1071 | CONFIG_CRYPTO_MD4=m | 1112 | CONFIG_CRYPTO_MD4=m |
1072 | CONFIG_CRYPTO_MD5=m | 1113 | CONFIG_CRYPTO_MD5=y |
1073 | CONFIG_CRYPTO_MICHAEL_MIC=m | 1114 | CONFIG_CRYPTO_MICHAEL_MIC=m |
1074 | CONFIG_CRYPTO_RMD128=m | 1115 | CONFIG_CRYPTO_RMD128=m |
1075 | CONFIG_CRYPTO_RMD160=m | 1116 | CONFIG_CRYPTO_RMD160=m |
@@ -1091,7 +1132,7 @@ CONFIG_CRYPTO_BLOWFISH=m | |||
1091 | CONFIG_CRYPTO_CAMELLIA=m | 1132 | CONFIG_CRYPTO_CAMELLIA=m |
1092 | CONFIG_CRYPTO_CAST5=m | 1133 | CONFIG_CRYPTO_CAST5=m |
1093 | CONFIG_CRYPTO_CAST6=m | 1134 | CONFIG_CRYPTO_CAST6=m |
1094 | CONFIG_CRYPTO_DES=m | 1135 | CONFIG_CRYPTO_DES=y |
1095 | CONFIG_CRYPTO_FCRYPT=m | 1136 | CONFIG_CRYPTO_FCRYPT=m |
1096 | CONFIG_CRYPTO_KHAZAD=m | 1137 | CONFIG_CRYPTO_KHAZAD=m |
1097 | CONFIG_CRYPTO_SALSA20=m | 1138 | CONFIG_CRYPTO_SALSA20=m |
@@ -1105,6 +1146,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1105 | # Compression | 1146 | # Compression |
1106 | # | 1147 | # |
1107 | CONFIG_CRYPTO_DEFLATE=m | 1148 | CONFIG_CRYPTO_DEFLATE=m |
1149 | CONFIG_CRYPTO_ZLIB=m | ||
1108 | CONFIG_CRYPTO_LZO=m | 1150 | CONFIG_CRYPTO_LZO=m |
1109 | 1151 | ||
1110 | # | 1152 | # |
@@ -1112,11 +1154,13 @@ CONFIG_CRYPTO_LZO=m | |||
1112 | # | 1154 | # |
1113 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1155 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1114 | # CONFIG_CRYPTO_HW is not set | 1156 | # CONFIG_CRYPTO_HW is not set |
1157 | # CONFIG_BINARY_PRINTF is not set | ||
1115 | 1158 | ||
1116 | # | 1159 | # |
1117 | # Library routines | 1160 | # Library routines |
1118 | # | 1161 | # |
1119 | CONFIG_BITREVERSE=y | 1162 | CONFIG_BITREVERSE=y |
1163 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1120 | CONFIG_CRC_CCITT=m | 1164 | CONFIG_CRC_CCITT=m |
1121 | CONFIG_CRC16=y | 1165 | CONFIG_CRC16=y |
1122 | CONFIG_CRC_T10DIF=y | 1166 | CONFIG_CRC_T10DIF=y |
@@ -1128,10 +1172,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1128 | CONFIG_ZLIB_DEFLATE=m | 1172 | CONFIG_ZLIB_DEFLATE=m |
1129 | CONFIG_LZO_COMPRESS=m | 1173 | CONFIG_LZO_COMPRESS=m |
1130 | CONFIG_LZO_DECOMPRESS=m | 1174 | CONFIG_LZO_DECOMPRESS=m |
1175 | CONFIG_DECOMPRESS_GZIP=y | ||
1176 | CONFIG_DECOMPRESS_BZIP2=y | ||
1177 | CONFIG_DECOMPRESS_LZMA=y | ||
1131 | CONFIG_TEXTSEARCH=y | 1178 | CONFIG_TEXTSEARCH=y |
1132 | CONFIG_TEXTSEARCH_KMP=m | 1179 | CONFIG_TEXTSEARCH_KMP=m |
1133 | CONFIG_TEXTSEARCH_BM=m | 1180 | CONFIG_TEXTSEARCH_BM=m |
1134 | CONFIG_TEXTSEARCH_FSM=m | 1181 | CONFIG_TEXTSEARCH_FSM=m |
1135 | CONFIG_PLIST=y | ||
1136 | CONFIG_HAS_IOMEM=y | 1182 | CONFIG_HAS_IOMEM=y |
1137 | CONFIG_HAS_DMA=y | 1183 | CONFIG_HAS_DMA=y |
1184 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/bvme6000_defconfig b/arch/m68k/configs/bvme6000_defconfig index d3d9814a91de..6e6b1aa66682 100644 --- a/arch/m68k/configs/bvme6000_defconfig +++ b/arch/m68k/configs/bvme6000_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:45 2008 | 4 | # Wed Apr 22 20:47:59 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -143,12 +154,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
143 | CONFIG_NEED_MULTIPLE_NODES=y | 154 | CONFIG_NEED_MULTIPLE_NODES=y |
144 | CONFIG_PAGEFLAGS_EXTENDED=y | 155 | CONFIG_PAGEFLAGS_EXTENDED=y |
145 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 156 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
146 | # CONFIG_RESOURCES_64BIT is not set | ||
147 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 157 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
148 | CONFIG_ZONE_DMA_FLAG=1 | 158 | CONFIG_ZONE_DMA_FLAG=1 |
149 | CONFIG_BOUNCE=y | 159 | CONFIG_BOUNCE=y |
150 | CONFIG_VIRT_TO_BUS=y | 160 | CONFIG_VIRT_TO_BUS=y |
151 | CONFIG_UNEVICTABLE_LRU=y | 161 | CONFIG_UNEVICTABLE_LRU=y |
162 | CONFIG_HAVE_MLOCK=y | ||
163 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
152 | 164 | ||
153 | # | 165 | # |
154 | # General setup | 166 | # General setup |
@@ -258,6 +270,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
258 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 270 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
259 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
260 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 272 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
273 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
261 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 274 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
262 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 275 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
263 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 276 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -266,6 +279,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
266 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 279 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
267 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 280 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
268 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 281 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
282 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
269 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 283 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
270 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 284 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
271 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 285 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -276,6 +290,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
276 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 290 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
277 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 291 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 292 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
293 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 294 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
280 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 295 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
281 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 296 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -354,25 +369,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
354 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 369 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
355 | CONFIG_IP6_NF_MATCH_MH=m | 370 | CONFIG_IP6_NF_MATCH_MH=m |
356 | CONFIG_IP6_NF_MATCH_RT=m | 371 | CONFIG_IP6_NF_MATCH_RT=m |
372 | CONFIG_IP6_NF_TARGET_HL=m | ||
357 | CONFIG_IP6_NF_TARGET_LOG=m | 373 | CONFIG_IP6_NF_TARGET_LOG=m |
358 | CONFIG_IP6_NF_FILTER=m | 374 | CONFIG_IP6_NF_FILTER=m |
359 | CONFIG_IP6_NF_TARGET_REJECT=m | 375 | CONFIG_IP6_NF_TARGET_REJECT=m |
360 | CONFIG_IP6_NF_MANGLE=m | 376 | CONFIG_IP6_NF_MANGLE=m |
361 | CONFIG_IP6_NF_TARGET_HL=m | ||
362 | CONFIG_IP6_NF_RAW=m | 377 | CONFIG_IP6_NF_RAW=m |
363 | CONFIG_IP_DCCP=m | 378 | CONFIG_IP_DCCP=m |
364 | CONFIG_INET_DCCP_DIAG=m | 379 | CONFIG_INET_DCCP_DIAG=m |
365 | CONFIG_IP_DCCP_ACKVEC=y | ||
366 | 380 | ||
367 | # | 381 | # |
368 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 382 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
369 | # | 383 | # |
370 | CONFIG_IP_DCCP_CCID2=m | ||
371 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 384 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
372 | CONFIG_IP_DCCP_CCID3=m | 385 | # CONFIG_IP_DCCP_CCID3 is not set |
373 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
374 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
375 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
376 | CONFIG_IP_SCTP=m | 386 | CONFIG_IP_SCTP=m |
377 | # CONFIG_SCTP_DBG_MSG is not set | 387 | # CONFIG_SCTP_DBG_MSG is not set |
378 | # CONFIG_SCTP_DBG_OBJCNT is not set | 388 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -394,8 +404,10 @@ CONFIG_ATALK=m | |||
394 | # CONFIG_LAPB is not set | 404 | # CONFIG_LAPB is not set |
395 | # CONFIG_ECONET is not set | 405 | # CONFIG_ECONET is not set |
396 | # CONFIG_WAN_ROUTER is not set | 406 | # CONFIG_WAN_ROUTER is not set |
407 | # CONFIG_PHONET is not set | ||
397 | # CONFIG_NET_SCHED is not set | 408 | # CONFIG_NET_SCHED is not set |
398 | CONFIG_NET_CLS_ROUTE=y | 409 | CONFIG_NET_CLS_ROUTE=y |
410 | # CONFIG_DCB is not set | ||
399 | 411 | ||
400 | # | 412 | # |
401 | # Network testing | 413 | # Network testing |
@@ -406,8 +418,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
406 | # CONFIG_IRDA is not set | 418 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 419 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 420 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_PHONET is not set | ||
410 | # CONFIG_WIRELESS is not set | 421 | # CONFIG_WIRELESS is not set |
422 | # CONFIG_WIMAX is not set | ||
411 | # CONFIG_RFKILL is not set | 423 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 424 | # CONFIG_NET_9P is not set |
413 | 425 | ||
@@ -443,9 +455,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
443 | CONFIG_ATA_OVER_ETH=m | 455 | CONFIG_ATA_OVER_ETH=m |
444 | # CONFIG_BLK_DEV_HD is not set | 456 | # CONFIG_BLK_DEV_HD is not set |
445 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
446 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | # CONFIG_ENCLOSURE_SERVICES is not set | 458 | # CONFIG_ENCLOSURE_SERVICES is not set |
448 | # CONFIG_C2PORT is not set | 459 | # CONFIG_C2PORT is not set |
460 | |||
461 | # | ||
462 | # EEPROM support | ||
463 | # | ||
464 | # CONFIG_EEPROM_93CX6 is not set | ||
449 | CONFIG_HAVE_IDE=y | 465 | CONFIG_HAVE_IDE=y |
450 | # CONFIG_IDE is not set | 466 | # CONFIG_IDE is not set |
451 | 467 | ||
@@ -493,10 +509,13 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
493 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 509 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
494 | CONFIG_SCSI_LOWLEVEL=y | 510 | CONFIG_SCSI_LOWLEVEL=y |
495 | CONFIG_ISCSI_TCP=m | 511 | CONFIG_ISCSI_TCP=m |
512 | # CONFIG_LIBFC is not set | ||
513 | # CONFIG_LIBFCOE is not set | ||
496 | CONFIG_53C700_BE_BUS=y | 514 | CONFIG_53C700_BE_BUS=y |
497 | # CONFIG_SCSI_DEBUG is not set | 515 | # CONFIG_SCSI_DEBUG is not set |
498 | CONFIG_BVME6000_SCSI=y | 516 | CONFIG_BVME6000_SCSI=y |
499 | # CONFIG_SCSI_DH is not set | 517 | # CONFIG_SCSI_DH is not set |
518 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
500 | CONFIG_MD=y | 519 | CONFIG_MD=y |
501 | CONFIG_BLK_DEV_MD=m | 520 | CONFIG_BLK_DEV_MD=m |
502 | CONFIG_MD_LINEAR=m | 521 | CONFIG_MD_LINEAR=m |
@@ -504,7 +523,7 @@ CONFIG_MD_RAID0=m | |||
504 | CONFIG_MD_RAID1=m | 523 | CONFIG_MD_RAID1=m |
505 | # CONFIG_MD_RAID10 is not set | 524 | # CONFIG_MD_RAID10 is not set |
506 | CONFIG_MD_RAID456=m | 525 | CONFIG_MD_RAID456=m |
507 | CONFIG_MD_RAID5_RESHAPE=y | 526 | CONFIG_MD_RAID6_PQ=m |
508 | # CONFIG_MD_MULTIPATH is not set | 527 | # CONFIG_MD_MULTIPATH is not set |
509 | # CONFIG_MD_FAULTY is not set | 528 | # CONFIG_MD_FAULTY is not set |
510 | CONFIG_BLK_DEV_DM=m | 529 | CONFIG_BLK_DEV_DM=m |
@@ -517,6 +536,7 @@ CONFIG_DM_MULTIPATH=m | |||
517 | # CONFIG_DM_DELAY is not set | 536 | # CONFIG_DM_DELAY is not set |
518 | CONFIG_DM_UEVENT=y | 537 | CONFIG_DM_UEVENT=y |
519 | CONFIG_NETDEVICES=y | 538 | CONFIG_NETDEVICES=y |
539 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
520 | CONFIG_DUMMY=m | 540 | CONFIG_DUMMY=m |
521 | # CONFIG_BONDING is not set | 541 | # CONFIG_BONDING is not set |
522 | CONFIG_MACVLAN=m | 542 | CONFIG_MACVLAN=m |
@@ -527,6 +547,8 @@ CONFIG_VETH=m | |||
527 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
528 | # CONFIG_MII is not set | 548 | # CONFIG_MII is not set |
529 | CONFIG_BVME6000_NET=y | 549 | CONFIG_BVME6000_NET=y |
550 | # CONFIG_ETHOC is not set | ||
551 | # CONFIG_DNET is not set | ||
530 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 552 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
531 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 553 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
532 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 554 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -543,7 +565,10 @@ CONFIG_BVME6000_NET=y | |||
543 | # | 565 | # |
544 | # CONFIG_WLAN_PRE80211 is not set | 566 | # CONFIG_WLAN_PRE80211 is not set |
545 | # CONFIG_WLAN_80211 is not set | 567 | # CONFIG_WLAN_80211 is not set |
546 | # CONFIG_IWLWIFI_LEDS is not set | 568 | |
569 | # | ||
570 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
571 | # | ||
547 | # CONFIG_WAN is not set | 572 | # CONFIG_WAN is not set |
548 | CONFIG_PPP=m | 573 | CONFIG_PPP=m |
549 | # CONFIG_PPP_MULTILINK is not set | 574 | # CONFIG_PPP_MULTILINK is not set |
@@ -601,7 +626,6 @@ CONFIG_MOUSE_PS2=m | |||
601 | CONFIG_MOUSE_PS2_ALPS=y | 626 | CONFIG_MOUSE_PS2_ALPS=y |
602 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 627 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
603 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 628 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
604 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
605 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 629 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
606 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 630 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
607 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 631 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -641,6 +665,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
641 | # Non-8250 serial port support | 665 | # Non-8250 serial port support |
642 | # | 666 | # |
643 | CONFIG_UNIX98_PTYS=y | 667 | CONFIG_UNIX98_PTYS=y |
668 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
644 | CONFIG_LEGACY_PTYS=y | 669 | CONFIG_LEGACY_PTYS=y |
645 | CONFIG_LEGACY_PTY_COUNT=256 | 670 | CONFIG_LEGACY_PTY_COUNT=256 |
646 | # CONFIG_IPMI_HANDLER is not set | 671 | # CONFIG_IPMI_HANDLER is not set |
@@ -717,7 +742,6 @@ CONFIG_HIDRAW=y | |||
717 | # | 742 | # |
718 | # Special HID drivers | 743 | # Special HID drivers |
719 | # | 744 | # |
720 | CONFIG_HID_COMPAT=y | ||
721 | # CONFIG_USB_SUPPORT is not set | 745 | # CONFIG_USB_SUPPORT is not set |
722 | # CONFIG_MMC is not set | 746 | # CONFIG_MMC is not set |
723 | # CONFIG_MEMSTICK is not set | 747 | # CONFIG_MEMSTICK is not set |
@@ -725,9 +749,9 @@ CONFIG_HID_COMPAT=y | |||
725 | # CONFIG_ACCESSIBILITY is not set | 749 | # CONFIG_ACCESSIBILITY is not set |
726 | # CONFIG_RTC_CLASS is not set | 750 | # CONFIG_RTC_CLASS is not set |
727 | # CONFIG_DMADEVICES is not set | 751 | # CONFIG_DMADEVICES is not set |
752 | # CONFIG_AUXDISPLAY is not set | ||
728 | # CONFIG_UIO is not set | 753 | # CONFIG_UIO is not set |
729 | # CONFIG_STAGING is not set | 754 | # CONFIG_STAGING is not set |
730 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
731 | 755 | ||
732 | # | 756 | # |
733 | # Character devices | 757 | # Character devices |
@@ -742,6 +766,7 @@ CONFIG_EXT2_FS=y | |||
742 | # CONFIG_EXT2_FS_XATTR is not set | 766 | # CONFIG_EXT2_FS_XATTR is not set |
743 | # CONFIG_EXT2_FS_XIP is not set | 767 | # CONFIG_EXT2_FS_XIP is not set |
744 | CONFIG_EXT3_FS=y | 768 | CONFIG_EXT3_FS=y |
769 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
745 | # CONFIG_EXT3_FS_XATTR is not set | 770 | # CONFIG_EXT3_FS_XATTR is not set |
746 | # CONFIG_EXT4_FS is not set | 771 | # CONFIG_EXT4_FS is not set |
747 | CONFIG_JBD=y | 772 | CONFIG_JBD=y |
@@ -768,13 +793,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
768 | # CONFIG_OCFS2_FS_STATS is not set | 793 | # CONFIG_OCFS2_FS_STATS is not set |
769 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 794 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
770 | # CONFIG_OCFS2_DEBUG_FS is not set | 795 | # CONFIG_OCFS2_DEBUG_FS is not set |
771 | # CONFIG_OCFS2_COMPAT_JBD is not set | 796 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
797 | # CONFIG_BTRFS_FS is not set | ||
772 | CONFIG_DNOTIFY=y | 798 | CONFIG_DNOTIFY=y |
773 | CONFIG_INOTIFY=y | 799 | CONFIG_INOTIFY=y |
774 | CONFIG_INOTIFY_USER=y | 800 | CONFIG_INOTIFY_USER=y |
775 | CONFIG_QUOTA=y | 801 | CONFIG_QUOTA=y |
776 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 802 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
777 | # CONFIG_PRINT_QUOTA_WARNING is not set | 803 | # CONFIG_PRINT_QUOTA_WARNING is not set |
804 | CONFIG_QUOTA_TREE=m | ||
778 | # CONFIG_QFMT_V1 is not set | 805 | # CONFIG_QFMT_V1 is not set |
779 | # CONFIG_QFMT_V2 is not set | 806 | # CONFIG_QFMT_V2 is not set |
780 | CONFIG_QUOTACTL=y | 807 | CONFIG_QUOTACTL=y |
@@ -783,6 +810,11 @@ CONFIG_AUTOFS4_FS=m | |||
783 | CONFIG_FUSE_FS=m | 810 | CONFIG_FUSE_FS=m |
784 | 811 | ||
785 | # | 812 | # |
813 | # Caches | ||
814 | # | ||
815 | # CONFIG_FSCACHE is not set | ||
816 | |||
817 | # | ||
786 | # CD-ROM/DVD Filesystems | 818 | # CD-ROM/DVD Filesystems |
787 | # | 819 | # |
788 | CONFIG_ISO9660_FS=y | 820 | CONFIG_ISO9660_FS=y |
@@ -813,10 +845,7 @@ CONFIG_TMPFS=y | |||
813 | # CONFIG_TMPFS_POSIX_ACL is not set | 845 | # CONFIG_TMPFS_POSIX_ACL is not set |
814 | # CONFIG_HUGETLB_PAGE is not set | 846 | # CONFIG_HUGETLB_PAGE is not set |
815 | CONFIG_CONFIGFS_FS=m | 847 | CONFIG_CONFIGFS_FS=m |
816 | 848 | CONFIG_MISC_FILESYSTEMS=y | |
817 | # | ||
818 | # Miscellaneous filesystems | ||
819 | # | ||
820 | # CONFIG_ADFS_FS is not set | 849 | # CONFIG_ADFS_FS is not set |
821 | CONFIG_AFFS_FS=m | 850 | CONFIG_AFFS_FS=m |
822 | CONFIG_HFS_FS=m | 851 | CONFIG_HFS_FS=m |
@@ -825,6 +854,9 @@ CONFIG_HFSPLUS_FS=m | |||
825 | # CONFIG_BFS_FS is not set | 854 | # CONFIG_BFS_FS is not set |
826 | # CONFIG_EFS_FS is not set | 855 | # CONFIG_EFS_FS is not set |
827 | CONFIG_CRAMFS=m | 856 | CONFIG_CRAMFS=m |
857 | CONFIG_SQUASHFS=m | ||
858 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
859 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
828 | # CONFIG_VXFS_FS is not set | 860 | # CONFIG_VXFS_FS is not set |
829 | CONFIG_MINIX_FS=y | 861 | CONFIG_MINIX_FS=y |
830 | # CONFIG_OMFS_FS is not set | 862 | # CONFIG_OMFS_FS is not set |
@@ -835,6 +867,7 @@ CONFIG_SYSV_FS=m | |||
835 | CONFIG_UFS_FS=m | 867 | CONFIG_UFS_FS=m |
836 | # CONFIG_UFS_FS_WRITE is not set | 868 | # CONFIG_UFS_FS_WRITE is not set |
837 | # CONFIG_UFS_DEBUG is not set | 869 | # CONFIG_UFS_DEBUG is not set |
870 | # CONFIG_NILFS2_FS is not set | ||
838 | CONFIG_NETWORK_FILESYSTEMS=y | 871 | CONFIG_NETWORK_FILESYSTEMS=y |
839 | CONFIG_NFS_FS=y | 872 | CONFIG_NFS_FS=y |
840 | CONFIG_NFS_V3=y | 873 | CONFIG_NFS_V3=y |
@@ -851,7 +884,6 @@ CONFIG_EXPORTFS=m | |||
851 | CONFIG_NFS_COMMON=y | 884 | CONFIG_NFS_COMMON=y |
852 | CONFIG_SUNRPC=y | 885 | CONFIG_SUNRPC=y |
853 | CONFIG_SUNRPC_GSS=y | 886 | CONFIG_SUNRPC_GSS=y |
854 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
855 | CONFIG_RPCSEC_GSS_KRB5=y | 887 | CONFIG_RPCSEC_GSS_KRB5=y |
856 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 888 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
857 | CONFIG_SMB_FS=m | 889 | CONFIG_SMB_FS=m |
@@ -927,11 +959,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
927 | CONFIG_DEBUG_MEMORY_INIT=y | 959 | CONFIG_DEBUG_MEMORY_INIT=y |
928 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 960 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
929 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 961 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
930 | |||
931 | # | ||
932 | # Tracers | ||
933 | # | ||
934 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
935 | # CONFIG_SAMPLES is not set | 962 | # CONFIG_SAMPLES is not set |
936 | 963 | ||
937 | # | 964 | # |
@@ -952,13 +979,21 @@ CONFIG_CRYPTO=y | |||
952 | # | 979 | # |
953 | # CONFIG_CRYPTO_FIPS is not set | 980 | # CONFIG_CRYPTO_FIPS is not set |
954 | CONFIG_CRYPTO_ALGAPI=y | 981 | CONFIG_CRYPTO_ALGAPI=y |
955 | CONFIG_CRYPTO_AEAD=y | 982 | CONFIG_CRYPTO_ALGAPI2=y |
983 | CONFIG_CRYPTO_AEAD=m | ||
984 | CONFIG_CRYPTO_AEAD2=y | ||
956 | CONFIG_CRYPTO_BLKCIPHER=y | 985 | CONFIG_CRYPTO_BLKCIPHER=y |
986 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
957 | CONFIG_CRYPTO_HASH=y | 987 | CONFIG_CRYPTO_HASH=y |
958 | CONFIG_CRYPTO_RNG=y | 988 | CONFIG_CRYPTO_HASH2=y |
989 | CONFIG_CRYPTO_RNG=m | ||
990 | CONFIG_CRYPTO_RNG2=y | ||
991 | CONFIG_CRYPTO_PCOMP=y | ||
959 | CONFIG_CRYPTO_MANAGER=y | 992 | CONFIG_CRYPTO_MANAGER=y |
993 | CONFIG_CRYPTO_MANAGER2=y | ||
960 | CONFIG_CRYPTO_GF128MUL=m | 994 | CONFIG_CRYPTO_GF128MUL=m |
961 | CONFIG_CRYPTO_NULL=m | 995 | CONFIG_CRYPTO_NULL=m |
996 | CONFIG_CRYPTO_WORKQUEUE=y | ||
962 | CONFIG_CRYPTO_CRYPTD=m | 997 | CONFIG_CRYPTO_CRYPTD=m |
963 | CONFIG_CRYPTO_AUTHENC=m | 998 | CONFIG_CRYPTO_AUTHENC=m |
964 | CONFIG_CRYPTO_TEST=m | 999 | CONFIG_CRYPTO_TEST=m |
@@ -1028,6 +1063,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1028 | # Compression | 1063 | # Compression |
1029 | # | 1064 | # |
1030 | CONFIG_CRYPTO_DEFLATE=m | 1065 | CONFIG_CRYPTO_DEFLATE=m |
1066 | CONFIG_CRYPTO_ZLIB=m | ||
1031 | CONFIG_CRYPTO_LZO=m | 1067 | CONFIG_CRYPTO_LZO=m |
1032 | 1068 | ||
1033 | # | 1069 | # |
@@ -1035,11 +1071,13 @@ CONFIG_CRYPTO_LZO=m | |||
1035 | # | 1071 | # |
1036 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1072 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1037 | # CONFIG_CRYPTO_HW is not set | 1073 | # CONFIG_CRYPTO_HW is not set |
1074 | # CONFIG_BINARY_PRINTF is not set | ||
1038 | 1075 | ||
1039 | # | 1076 | # |
1040 | # Library routines | 1077 | # Library routines |
1041 | # | 1078 | # |
1042 | CONFIG_BITREVERSE=m | 1079 | CONFIG_BITREVERSE=m |
1080 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1043 | CONFIG_CRC_CCITT=m | 1081 | CONFIG_CRC_CCITT=m |
1044 | CONFIG_CRC16=m | 1082 | CONFIG_CRC16=m |
1045 | CONFIG_CRC_T10DIF=y | 1083 | CONFIG_CRC_T10DIF=y |
@@ -1051,10 +1089,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1051 | CONFIG_ZLIB_DEFLATE=m | 1089 | CONFIG_ZLIB_DEFLATE=m |
1052 | CONFIG_LZO_COMPRESS=m | 1090 | CONFIG_LZO_COMPRESS=m |
1053 | CONFIG_LZO_DECOMPRESS=m | 1091 | CONFIG_LZO_DECOMPRESS=m |
1092 | CONFIG_DECOMPRESS_GZIP=y | ||
1093 | CONFIG_DECOMPRESS_BZIP2=y | ||
1094 | CONFIG_DECOMPRESS_LZMA=y | ||
1054 | CONFIG_TEXTSEARCH=y | 1095 | CONFIG_TEXTSEARCH=y |
1055 | CONFIG_TEXTSEARCH_KMP=m | 1096 | CONFIG_TEXTSEARCH_KMP=m |
1056 | CONFIG_TEXTSEARCH_BM=m | 1097 | CONFIG_TEXTSEARCH_BM=m |
1057 | CONFIG_TEXTSEARCH_FSM=m | 1098 | CONFIG_TEXTSEARCH_FSM=m |
1058 | CONFIG_PLIST=y | ||
1059 | CONFIG_HAS_IOMEM=y | 1099 | CONFIG_HAS_IOMEM=y |
1060 | CONFIG_HAS_DMA=y | 1100 | CONFIG_HAS_DMA=y |
1101 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/hp300_defconfig b/arch/m68k/configs/hp300_defconfig index 5556ef088d04..bc0565f63a15 100644 --- a/arch/m68k/configs/hp300_defconfig +++ b/arch/m68k/configs/hp300_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:46 2008 | 4 | # Wed Apr 22 20:48:01 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -141,12 +152,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
141 | CONFIG_NEED_MULTIPLE_NODES=y | 152 | CONFIG_NEED_MULTIPLE_NODES=y |
142 | CONFIG_PAGEFLAGS_EXTENDED=y | 153 | CONFIG_PAGEFLAGS_EXTENDED=y |
143 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 154 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
144 | # CONFIG_RESOURCES_64BIT is not set | ||
145 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 155 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
146 | CONFIG_ZONE_DMA_FLAG=1 | 156 | CONFIG_ZONE_DMA_FLAG=1 |
147 | CONFIG_BOUNCE=y | 157 | CONFIG_BOUNCE=y |
148 | CONFIG_VIRT_TO_BUS=y | 158 | CONFIG_VIRT_TO_BUS=y |
149 | CONFIG_UNEVICTABLE_LRU=y | 159 | CONFIG_UNEVICTABLE_LRU=y |
160 | CONFIG_HAVE_MLOCK=y | ||
161 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
150 | 162 | ||
151 | # | 163 | # |
152 | # General setup | 164 | # General setup |
@@ -257,6 +269,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
257 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 269 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
258 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 270 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
259 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 271 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
272 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
260 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 273 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
261 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 274 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
262 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 275 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -265,6 +278,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
265 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 278 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
266 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 279 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
267 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 280 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
281 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
268 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 282 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
269 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 283 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
270 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 284 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -275,6 +289,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
275 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 289 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
276 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 290 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
277 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 291 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
292 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
278 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 293 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
279 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 294 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
280 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 295 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -353,25 +368,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
353 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 368 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
354 | CONFIG_IP6_NF_MATCH_MH=m | 369 | CONFIG_IP6_NF_MATCH_MH=m |
355 | CONFIG_IP6_NF_MATCH_RT=m | 370 | CONFIG_IP6_NF_MATCH_RT=m |
371 | CONFIG_IP6_NF_TARGET_HL=m | ||
356 | CONFIG_IP6_NF_TARGET_LOG=m | 372 | CONFIG_IP6_NF_TARGET_LOG=m |
357 | CONFIG_IP6_NF_FILTER=m | 373 | CONFIG_IP6_NF_FILTER=m |
358 | CONFIG_IP6_NF_TARGET_REJECT=m | 374 | CONFIG_IP6_NF_TARGET_REJECT=m |
359 | CONFIG_IP6_NF_MANGLE=m | 375 | CONFIG_IP6_NF_MANGLE=m |
360 | CONFIG_IP6_NF_TARGET_HL=m | ||
361 | CONFIG_IP6_NF_RAW=m | 376 | CONFIG_IP6_NF_RAW=m |
362 | CONFIG_IP_DCCP=m | 377 | CONFIG_IP_DCCP=m |
363 | CONFIG_INET_DCCP_DIAG=m | 378 | CONFIG_INET_DCCP_DIAG=m |
364 | CONFIG_IP_DCCP_ACKVEC=y | ||
365 | 379 | ||
366 | # | 380 | # |
367 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 381 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
368 | # | 382 | # |
369 | CONFIG_IP_DCCP_CCID2=m | ||
370 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 383 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
371 | CONFIG_IP_DCCP_CCID3=m | 384 | # CONFIG_IP_DCCP_CCID3 is not set |
372 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
373 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
374 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
375 | CONFIG_IP_SCTP=m | 385 | CONFIG_IP_SCTP=m |
376 | # CONFIG_SCTP_DBG_MSG is not set | 386 | # CONFIG_SCTP_DBG_MSG is not set |
377 | # CONFIG_SCTP_DBG_OBJCNT is not set | 387 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -393,8 +403,10 @@ CONFIG_ATALK=m | |||
393 | # CONFIG_LAPB is not set | 403 | # CONFIG_LAPB is not set |
394 | # CONFIG_ECONET is not set | 404 | # CONFIG_ECONET is not set |
395 | # CONFIG_WAN_ROUTER is not set | 405 | # CONFIG_WAN_ROUTER is not set |
406 | # CONFIG_PHONET is not set | ||
396 | # CONFIG_NET_SCHED is not set | 407 | # CONFIG_NET_SCHED is not set |
397 | CONFIG_NET_CLS_ROUTE=y | 408 | CONFIG_NET_CLS_ROUTE=y |
409 | # CONFIG_DCB is not set | ||
398 | 410 | ||
399 | # | 411 | # |
400 | # Network testing | 412 | # Network testing |
@@ -405,8 +417,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
405 | # CONFIG_IRDA is not set | 417 | # CONFIG_IRDA is not set |
406 | # CONFIG_BT is not set | 418 | # CONFIG_BT is not set |
407 | # CONFIG_AF_RXRPC is not set | 419 | # CONFIG_AF_RXRPC is not set |
408 | # CONFIG_PHONET is not set | ||
409 | # CONFIG_WIRELESS is not set | 420 | # CONFIG_WIRELESS is not set |
421 | # CONFIG_WIMAX is not set | ||
410 | # CONFIG_RFKILL is not set | 422 | # CONFIG_RFKILL is not set |
411 | # CONFIG_NET_9P is not set | 423 | # CONFIG_NET_9P is not set |
412 | 424 | ||
@@ -442,9 +454,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
442 | CONFIG_ATA_OVER_ETH=m | 454 | CONFIG_ATA_OVER_ETH=m |
443 | # CONFIG_BLK_DEV_HD is not set | 455 | # CONFIG_BLK_DEV_HD is not set |
444 | CONFIG_MISC_DEVICES=y | 456 | CONFIG_MISC_DEVICES=y |
445 | # CONFIG_EEPROM_93CX6 is not set | ||
446 | # CONFIG_ENCLOSURE_SERVICES is not set | 457 | # CONFIG_ENCLOSURE_SERVICES is not set |
447 | # CONFIG_C2PORT is not set | 458 | # CONFIG_C2PORT is not set |
459 | |||
460 | # | ||
461 | # EEPROM support | ||
462 | # | ||
463 | # CONFIG_EEPROM_93CX6 is not set | ||
448 | CONFIG_HAVE_IDE=y | 464 | CONFIG_HAVE_IDE=y |
449 | # CONFIG_IDE is not set | 465 | # CONFIG_IDE is not set |
450 | 466 | ||
@@ -492,8 +508,11 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
492 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 508 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
493 | CONFIG_SCSI_LOWLEVEL=y | 509 | CONFIG_SCSI_LOWLEVEL=y |
494 | CONFIG_ISCSI_TCP=m | 510 | CONFIG_ISCSI_TCP=m |
511 | # CONFIG_LIBFC is not set | ||
512 | # CONFIG_LIBFCOE is not set | ||
495 | # CONFIG_SCSI_DEBUG is not set | 513 | # CONFIG_SCSI_DEBUG is not set |
496 | # CONFIG_SCSI_DH is not set | 514 | # CONFIG_SCSI_DH is not set |
515 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
497 | CONFIG_MD=y | 516 | CONFIG_MD=y |
498 | CONFIG_BLK_DEV_MD=m | 517 | CONFIG_BLK_DEV_MD=m |
499 | CONFIG_MD_LINEAR=m | 518 | CONFIG_MD_LINEAR=m |
@@ -501,7 +520,7 @@ CONFIG_MD_RAID0=m | |||
501 | CONFIG_MD_RAID1=m | 520 | CONFIG_MD_RAID1=m |
502 | # CONFIG_MD_RAID10 is not set | 521 | # CONFIG_MD_RAID10 is not set |
503 | CONFIG_MD_RAID456=m | 522 | CONFIG_MD_RAID456=m |
504 | CONFIG_MD_RAID5_RESHAPE=y | 523 | CONFIG_MD_RAID6_PQ=m |
505 | # CONFIG_MD_MULTIPATH is not set | 524 | # CONFIG_MD_MULTIPATH is not set |
506 | # CONFIG_MD_FAULTY is not set | 525 | # CONFIG_MD_FAULTY is not set |
507 | CONFIG_BLK_DEV_DM=m | 526 | CONFIG_BLK_DEV_DM=m |
@@ -514,6 +533,7 @@ CONFIG_DM_MULTIPATH=m | |||
514 | # CONFIG_DM_DELAY is not set | 533 | # CONFIG_DM_DELAY is not set |
515 | CONFIG_DM_UEVENT=y | 534 | CONFIG_DM_UEVENT=y |
516 | CONFIG_NETDEVICES=y | 535 | CONFIG_NETDEVICES=y |
536 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
517 | CONFIG_DUMMY=m | 537 | CONFIG_DUMMY=m |
518 | # CONFIG_BONDING is not set | 538 | # CONFIG_BONDING is not set |
519 | CONFIG_MACVLAN=m | 539 | CONFIG_MACVLAN=m |
@@ -524,6 +544,8 @@ CONFIG_VETH=m | |||
524 | CONFIG_NET_ETHERNET=y | 544 | CONFIG_NET_ETHERNET=y |
525 | # CONFIG_MII is not set | 545 | # CONFIG_MII is not set |
526 | CONFIG_HPLANCE=y | 546 | CONFIG_HPLANCE=y |
547 | # CONFIG_ETHOC is not set | ||
548 | # CONFIG_DNET is not set | ||
527 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 549 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
528 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 550 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
529 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 551 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -540,7 +562,10 @@ CONFIG_HPLANCE=y | |||
540 | # | 562 | # |
541 | # CONFIG_WLAN_PRE80211 is not set | 563 | # CONFIG_WLAN_PRE80211 is not set |
542 | # CONFIG_WLAN_80211 is not set | 564 | # CONFIG_WLAN_80211 is not set |
543 | # CONFIG_IWLWIFI_LEDS is not set | 565 | |
566 | # | ||
567 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
568 | # | ||
544 | # CONFIG_WAN is not set | 569 | # CONFIG_WAN is not set |
545 | CONFIG_PPP=m | 570 | CONFIG_PPP=m |
546 | # CONFIG_PPP_MULTILINK is not set | 571 | # CONFIG_PPP_MULTILINK is not set |
@@ -600,7 +625,6 @@ CONFIG_MOUSE_PS2=m | |||
600 | CONFIG_MOUSE_PS2_ALPS=y | 625 | CONFIG_MOUSE_PS2_ALPS=y |
601 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 626 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
602 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 627 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
603 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
604 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 628 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
605 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 629 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
606 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 630 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -646,6 +670,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
646 | # Non-8250 serial port support | 670 | # Non-8250 serial port support |
647 | # | 671 | # |
648 | CONFIG_UNIX98_PTYS=y | 672 | CONFIG_UNIX98_PTYS=y |
673 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
649 | CONFIG_LEGACY_PTYS=y | 674 | CONFIG_LEGACY_PTYS=y |
650 | CONFIG_LEGACY_PTY_COUNT=256 | 675 | CONFIG_LEGACY_PTY_COUNT=256 |
651 | # CONFIG_IPMI_HANDLER is not set | 676 | # CONFIG_IPMI_HANDLER is not set |
@@ -728,6 +753,7 @@ CONFIG_FB_HP300=y | |||
728 | # CONFIG_FB_VIRTUAL is not set | 753 | # CONFIG_FB_VIRTUAL is not set |
729 | # CONFIG_FB_METRONOME is not set | 754 | # CONFIG_FB_METRONOME is not set |
730 | # CONFIG_FB_MB862XX is not set | 755 | # CONFIG_FB_MB862XX is not set |
756 | # CONFIG_FB_BROADSHEET is not set | ||
731 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 757 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
732 | 758 | ||
733 | # | 759 | # |
@@ -759,7 +785,6 @@ CONFIG_HIDRAW=y | |||
759 | # | 785 | # |
760 | # Special HID drivers | 786 | # Special HID drivers |
761 | # | 787 | # |
762 | CONFIG_HID_COMPAT=y | ||
763 | # CONFIG_USB_SUPPORT is not set | 788 | # CONFIG_USB_SUPPORT is not set |
764 | # CONFIG_MMC is not set | 789 | # CONFIG_MMC is not set |
765 | # CONFIG_MEMSTICK is not set | 790 | # CONFIG_MEMSTICK is not set |
@@ -767,9 +792,9 @@ CONFIG_HID_COMPAT=y | |||
767 | # CONFIG_ACCESSIBILITY is not set | 792 | # CONFIG_ACCESSIBILITY is not set |
768 | # CONFIG_RTC_CLASS is not set | 793 | # CONFIG_RTC_CLASS is not set |
769 | # CONFIG_DMADEVICES is not set | 794 | # CONFIG_DMADEVICES is not set |
795 | # CONFIG_AUXDISPLAY is not set | ||
770 | # CONFIG_UIO is not set | 796 | # CONFIG_UIO is not set |
771 | # CONFIG_STAGING is not set | 797 | # CONFIG_STAGING is not set |
772 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
773 | 798 | ||
774 | # | 799 | # |
775 | # Character devices | 800 | # Character devices |
@@ -782,6 +807,7 @@ CONFIG_EXT2_FS=y | |||
782 | # CONFIG_EXT2_FS_XATTR is not set | 807 | # CONFIG_EXT2_FS_XATTR is not set |
783 | # CONFIG_EXT2_FS_XIP is not set | 808 | # CONFIG_EXT2_FS_XIP is not set |
784 | CONFIG_EXT3_FS=y | 809 | CONFIG_EXT3_FS=y |
810 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
785 | # CONFIG_EXT3_FS_XATTR is not set | 811 | # CONFIG_EXT3_FS_XATTR is not set |
786 | # CONFIG_EXT4_FS is not set | 812 | # CONFIG_EXT4_FS is not set |
787 | CONFIG_JBD=y | 813 | CONFIG_JBD=y |
@@ -808,13 +834,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
808 | # CONFIG_OCFS2_FS_STATS is not set | 834 | # CONFIG_OCFS2_FS_STATS is not set |
809 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 835 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
810 | # CONFIG_OCFS2_DEBUG_FS is not set | 836 | # CONFIG_OCFS2_DEBUG_FS is not set |
811 | # CONFIG_OCFS2_COMPAT_JBD is not set | 837 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
838 | # CONFIG_BTRFS_FS is not set | ||
812 | CONFIG_DNOTIFY=y | 839 | CONFIG_DNOTIFY=y |
813 | CONFIG_INOTIFY=y | 840 | CONFIG_INOTIFY=y |
814 | CONFIG_INOTIFY_USER=y | 841 | CONFIG_INOTIFY_USER=y |
815 | CONFIG_QUOTA=y | 842 | CONFIG_QUOTA=y |
816 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 843 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
817 | # CONFIG_PRINT_QUOTA_WARNING is not set | 844 | # CONFIG_PRINT_QUOTA_WARNING is not set |
845 | CONFIG_QUOTA_TREE=m | ||
818 | # CONFIG_QFMT_V1 is not set | 846 | # CONFIG_QFMT_V1 is not set |
819 | # CONFIG_QFMT_V2 is not set | 847 | # CONFIG_QFMT_V2 is not set |
820 | CONFIG_QUOTACTL=y | 848 | CONFIG_QUOTACTL=y |
@@ -823,6 +851,11 @@ CONFIG_AUTOFS4_FS=m | |||
823 | CONFIG_FUSE_FS=m | 851 | CONFIG_FUSE_FS=m |
824 | 852 | ||
825 | # | 853 | # |
854 | # Caches | ||
855 | # | ||
856 | # CONFIG_FSCACHE is not set | ||
857 | |||
858 | # | ||
826 | # CD-ROM/DVD Filesystems | 859 | # CD-ROM/DVD Filesystems |
827 | # | 860 | # |
828 | CONFIG_ISO9660_FS=y | 861 | CONFIG_ISO9660_FS=y |
@@ -853,10 +886,7 @@ CONFIG_TMPFS=y | |||
853 | # CONFIG_TMPFS_POSIX_ACL is not set | 886 | # CONFIG_TMPFS_POSIX_ACL is not set |
854 | # CONFIG_HUGETLB_PAGE is not set | 887 | # CONFIG_HUGETLB_PAGE is not set |
855 | CONFIG_CONFIGFS_FS=m | 888 | CONFIG_CONFIGFS_FS=m |
856 | 889 | CONFIG_MISC_FILESYSTEMS=y | |
857 | # | ||
858 | # Miscellaneous filesystems | ||
859 | # | ||
860 | # CONFIG_ADFS_FS is not set | 890 | # CONFIG_ADFS_FS is not set |
861 | CONFIG_AFFS_FS=m | 891 | CONFIG_AFFS_FS=m |
862 | CONFIG_HFS_FS=m | 892 | CONFIG_HFS_FS=m |
@@ -865,6 +895,9 @@ CONFIG_HFSPLUS_FS=m | |||
865 | # CONFIG_BFS_FS is not set | 895 | # CONFIG_BFS_FS is not set |
866 | # CONFIG_EFS_FS is not set | 896 | # CONFIG_EFS_FS is not set |
867 | CONFIG_CRAMFS=m | 897 | CONFIG_CRAMFS=m |
898 | CONFIG_SQUASHFS=m | ||
899 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
900 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
868 | # CONFIG_VXFS_FS is not set | 901 | # CONFIG_VXFS_FS is not set |
869 | CONFIG_MINIX_FS=y | 902 | CONFIG_MINIX_FS=y |
870 | # CONFIG_OMFS_FS is not set | 903 | # CONFIG_OMFS_FS is not set |
@@ -875,6 +908,7 @@ CONFIG_SYSV_FS=m | |||
875 | CONFIG_UFS_FS=m | 908 | CONFIG_UFS_FS=m |
876 | # CONFIG_UFS_FS_WRITE is not set | 909 | # CONFIG_UFS_FS_WRITE is not set |
877 | # CONFIG_UFS_DEBUG is not set | 910 | # CONFIG_UFS_DEBUG is not set |
911 | # CONFIG_NILFS2_FS is not set | ||
878 | CONFIG_NETWORK_FILESYSTEMS=y | 912 | CONFIG_NETWORK_FILESYSTEMS=y |
879 | CONFIG_NFS_FS=y | 913 | CONFIG_NFS_FS=y |
880 | CONFIG_NFS_V3=y | 914 | CONFIG_NFS_V3=y |
@@ -891,7 +925,6 @@ CONFIG_EXPORTFS=m | |||
891 | CONFIG_NFS_COMMON=y | 925 | CONFIG_NFS_COMMON=y |
892 | CONFIG_SUNRPC=y | 926 | CONFIG_SUNRPC=y |
893 | CONFIG_SUNRPC_GSS=y | 927 | CONFIG_SUNRPC_GSS=y |
894 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
895 | CONFIG_RPCSEC_GSS_KRB5=y | 928 | CONFIG_RPCSEC_GSS_KRB5=y |
896 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 929 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
897 | CONFIG_SMB_FS=m | 930 | CONFIG_SMB_FS=m |
@@ -966,11 +999,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
966 | CONFIG_DEBUG_MEMORY_INIT=y | 999 | CONFIG_DEBUG_MEMORY_INIT=y |
967 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1000 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
968 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1001 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
969 | |||
970 | # | ||
971 | # Tracers | ||
972 | # | ||
973 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
974 | # CONFIG_SAMPLES is not set | 1002 | # CONFIG_SAMPLES is not set |
975 | 1003 | ||
976 | # | 1004 | # |
@@ -991,13 +1019,21 @@ CONFIG_CRYPTO=y | |||
991 | # | 1019 | # |
992 | # CONFIG_CRYPTO_FIPS is not set | 1020 | # CONFIG_CRYPTO_FIPS is not set |
993 | CONFIG_CRYPTO_ALGAPI=y | 1021 | CONFIG_CRYPTO_ALGAPI=y |
994 | CONFIG_CRYPTO_AEAD=y | 1022 | CONFIG_CRYPTO_ALGAPI2=y |
1023 | CONFIG_CRYPTO_AEAD=m | ||
1024 | CONFIG_CRYPTO_AEAD2=y | ||
995 | CONFIG_CRYPTO_BLKCIPHER=y | 1025 | CONFIG_CRYPTO_BLKCIPHER=y |
1026 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
996 | CONFIG_CRYPTO_HASH=y | 1027 | CONFIG_CRYPTO_HASH=y |
997 | CONFIG_CRYPTO_RNG=y | 1028 | CONFIG_CRYPTO_HASH2=y |
1029 | CONFIG_CRYPTO_RNG=m | ||
1030 | CONFIG_CRYPTO_RNG2=y | ||
1031 | CONFIG_CRYPTO_PCOMP=y | ||
998 | CONFIG_CRYPTO_MANAGER=y | 1032 | CONFIG_CRYPTO_MANAGER=y |
1033 | CONFIG_CRYPTO_MANAGER2=y | ||
999 | CONFIG_CRYPTO_GF128MUL=m | 1034 | CONFIG_CRYPTO_GF128MUL=m |
1000 | CONFIG_CRYPTO_NULL=m | 1035 | CONFIG_CRYPTO_NULL=m |
1036 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1001 | CONFIG_CRYPTO_CRYPTD=m | 1037 | CONFIG_CRYPTO_CRYPTD=m |
1002 | CONFIG_CRYPTO_AUTHENC=m | 1038 | CONFIG_CRYPTO_AUTHENC=m |
1003 | CONFIG_CRYPTO_TEST=m | 1039 | CONFIG_CRYPTO_TEST=m |
@@ -1067,6 +1103,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1067 | # Compression | 1103 | # Compression |
1068 | # | 1104 | # |
1069 | CONFIG_CRYPTO_DEFLATE=m | 1105 | CONFIG_CRYPTO_DEFLATE=m |
1106 | CONFIG_CRYPTO_ZLIB=m | ||
1070 | CONFIG_CRYPTO_LZO=m | 1107 | CONFIG_CRYPTO_LZO=m |
1071 | 1108 | ||
1072 | # | 1109 | # |
@@ -1074,11 +1111,13 @@ CONFIG_CRYPTO_LZO=m | |||
1074 | # | 1111 | # |
1075 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1112 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1076 | # CONFIG_CRYPTO_HW is not set | 1113 | # CONFIG_CRYPTO_HW is not set |
1114 | # CONFIG_BINARY_PRINTF is not set | ||
1077 | 1115 | ||
1078 | # | 1116 | # |
1079 | # Library routines | 1117 | # Library routines |
1080 | # | 1118 | # |
1081 | CONFIG_BITREVERSE=y | 1119 | CONFIG_BITREVERSE=y |
1120 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1082 | CONFIG_CRC_CCITT=m | 1121 | CONFIG_CRC_CCITT=m |
1083 | CONFIG_CRC16=m | 1122 | CONFIG_CRC16=m |
1084 | CONFIG_CRC_T10DIF=y | 1123 | CONFIG_CRC_T10DIF=y |
@@ -1090,10 +1129,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1090 | CONFIG_ZLIB_DEFLATE=m | 1129 | CONFIG_ZLIB_DEFLATE=m |
1091 | CONFIG_LZO_COMPRESS=m | 1130 | CONFIG_LZO_COMPRESS=m |
1092 | CONFIG_LZO_DECOMPRESS=m | 1131 | CONFIG_LZO_DECOMPRESS=m |
1132 | CONFIG_DECOMPRESS_GZIP=y | ||
1133 | CONFIG_DECOMPRESS_BZIP2=y | ||
1134 | CONFIG_DECOMPRESS_LZMA=y | ||
1093 | CONFIG_TEXTSEARCH=y | 1135 | CONFIG_TEXTSEARCH=y |
1094 | CONFIG_TEXTSEARCH_KMP=m | 1136 | CONFIG_TEXTSEARCH_KMP=m |
1095 | CONFIG_TEXTSEARCH_BM=m | 1137 | CONFIG_TEXTSEARCH_BM=m |
1096 | CONFIG_TEXTSEARCH_FSM=m | 1138 | CONFIG_TEXTSEARCH_FSM=m |
1097 | CONFIG_PLIST=y | ||
1098 | CONFIG_HAS_IOMEM=y | 1139 | CONFIG_HAS_IOMEM=y |
1099 | CONFIG_HAS_DMA=y | 1140 | CONFIG_HAS_DMA=y |
1141 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/mac_defconfig b/arch/m68k/configs/mac_defconfig index c6de25724a25..9991b64fea57 100644 --- a/arch/m68k/configs/mac_defconfig +++ b/arch/m68k/configs/mac_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:47 2008 | 4 | # Wed Apr 22 20:48:03 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -142,12 +153,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
142 | CONFIG_NEED_MULTIPLE_NODES=y | 153 | CONFIG_NEED_MULTIPLE_NODES=y |
143 | CONFIG_PAGEFLAGS_EXTENDED=y | 154 | CONFIG_PAGEFLAGS_EXTENDED=y |
144 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 155 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
145 | # CONFIG_RESOURCES_64BIT is not set | ||
146 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 156 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
147 | CONFIG_ZONE_DMA_FLAG=1 | 157 | CONFIG_ZONE_DMA_FLAG=1 |
148 | CONFIG_BOUNCE=y | 158 | CONFIG_BOUNCE=y |
149 | CONFIG_VIRT_TO_BUS=y | 159 | CONFIG_VIRT_TO_BUS=y |
150 | CONFIG_UNEVICTABLE_LRU=y | 160 | CONFIG_UNEVICTABLE_LRU=y |
161 | CONFIG_HAVE_MLOCK=y | ||
162 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
151 | 163 | ||
152 | # | 164 | # |
153 | # General setup | 165 | # General setup |
@@ -255,6 +267,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
255 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 267 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
256 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 268 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
257 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 269 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
270 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
258 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
259 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 272 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
260 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 273 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -263,6 +276,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
263 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 276 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
264 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 277 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
265 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 278 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
279 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
266 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 280 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
267 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 281 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
268 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 282 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -273,6 +287,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
273 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 287 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
274 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 288 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
275 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 289 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
290 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
276 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 291 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
277 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 292 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
278 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 293 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -351,25 +366,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
351 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 366 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
352 | CONFIG_IP6_NF_MATCH_MH=m | 367 | CONFIG_IP6_NF_MATCH_MH=m |
353 | CONFIG_IP6_NF_MATCH_RT=m | 368 | CONFIG_IP6_NF_MATCH_RT=m |
369 | CONFIG_IP6_NF_TARGET_HL=m | ||
354 | CONFIG_IP6_NF_TARGET_LOG=m | 370 | CONFIG_IP6_NF_TARGET_LOG=m |
355 | CONFIG_IP6_NF_FILTER=m | 371 | CONFIG_IP6_NF_FILTER=m |
356 | CONFIG_IP6_NF_TARGET_REJECT=m | 372 | CONFIG_IP6_NF_TARGET_REJECT=m |
357 | CONFIG_IP6_NF_MANGLE=m | 373 | CONFIG_IP6_NF_MANGLE=m |
358 | CONFIG_IP6_NF_TARGET_HL=m | ||
359 | CONFIG_IP6_NF_RAW=m | 374 | CONFIG_IP6_NF_RAW=m |
360 | CONFIG_IP_DCCP=m | 375 | CONFIG_IP_DCCP=m |
361 | CONFIG_INET_DCCP_DIAG=m | 376 | CONFIG_INET_DCCP_DIAG=m |
362 | CONFIG_IP_DCCP_ACKVEC=y | ||
363 | 377 | ||
364 | # | 378 | # |
365 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 379 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
366 | # | 380 | # |
367 | CONFIG_IP_DCCP_CCID2=m | ||
368 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 381 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
369 | CONFIG_IP_DCCP_CCID3=m | 382 | # CONFIG_IP_DCCP_CCID3 is not set |
370 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
371 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
372 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
373 | CONFIG_IP_SCTP=m | 383 | CONFIG_IP_SCTP=m |
374 | # CONFIG_SCTP_DBG_MSG is not set | 384 | # CONFIG_SCTP_DBG_MSG is not set |
375 | # CONFIG_SCTP_DBG_OBJCNT is not set | 385 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -394,8 +404,10 @@ CONFIG_IPDDP_DECAP=y | |||
394 | # CONFIG_LAPB is not set | 404 | # CONFIG_LAPB is not set |
395 | # CONFIG_ECONET is not set | 405 | # CONFIG_ECONET is not set |
396 | # CONFIG_WAN_ROUTER is not set | 406 | # CONFIG_WAN_ROUTER is not set |
407 | # CONFIG_PHONET is not set | ||
397 | # CONFIG_NET_SCHED is not set | 408 | # CONFIG_NET_SCHED is not set |
398 | CONFIG_NET_CLS_ROUTE=y | 409 | CONFIG_NET_CLS_ROUTE=y |
410 | # CONFIG_DCB is not set | ||
399 | 411 | ||
400 | # | 412 | # |
401 | # Network testing | 413 | # Network testing |
@@ -406,8 +418,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
406 | # CONFIG_IRDA is not set | 418 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 419 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 420 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_PHONET is not set | ||
410 | # CONFIG_WIRELESS is not set | 421 | # CONFIG_WIRELESS is not set |
422 | # CONFIG_WIMAX is not set | ||
411 | # CONFIG_RFKILL is not set | 423 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 424 | # CONFIG_NET_9P is not set |
413 | 425 | ||
@@ -429,6 +441,7 @@ CONFIG_CONNECTOR=m | |||
429 | # CONFIG_MTD is not set | 441 | # CONFIG_MTD is not set |
430 | # CONFIG_PARPORT is not set | 442 | # CONFIG_PARPORT is not set |
431 | CONFIG_BLK_DEV=y | 443 | CONFIG_BLK_DEV=y |
444 | CONFIG_BLK_DEV_SWIM=y | ||
432 | # CONFIG_BLK_DEV_COW_COMMON is not set | 445 | # CONFIG_BLK_DEV_COW_COMMON is not set |
433 | CONFIG_BLK_DEV_LOOP=y | 446 | CONFIG_BLK_DEV_LOOP=y |
434 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 447 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
@@ -443,15 +456,20 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
443 | CONFIG_ATA_OVER_ETH=m | 456 | CONFIG_ATA_OVER_ETH=m |
444 | # CONFIG_BLK_DEV_HD is not set | 457 | # CONFIG_BLK_DEV_HD is not set |
445 | CONFIG_MISC_DEVICES=y | 458 | CONFIG_MISC_DEVICES=y |
446 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | # CONFIG_ENCLOSURE_SERVICES is not set | 459 | # CONFIG_ENCLOSURE_SERVICES is not set |
448 | # CONFIG_C2PORT is not set | 460 | # CONFIG_C2PORT is not set |
461 | |||
462 | # | ||
463 | # EEPROM support | ||
464 | # | ||
465 | # CONFIG_EEPROM_93CX6 is not set | ||
449 | CONFIG_HAVE_IDE=y | 466 | CONFIG_HAVE_IDE=y |
450 | CONFIG_IDE=y | 467 | CONFIG_IDE=y |
451 | 468 | ||
452 | # | 469 | # |
453 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 470 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
454 | # | 471 | # |
472 | CONFIG_IDE_ATAPI=y | ||
455 | # CONFIG_BLK_DEV_IDE_SATA is not set | 473 | # CONFIG_BLK_DEV_IDE_SATA is not set |
456 | CONFIG_IDE_GD=y | 474 | CONFIG_IDE_GD=y |
457 | CONFIG_IDE_GD_ATA=y | 475 | CONFIG_IDE_GD_ATA=y |
@@ -459,7 +477,6 @@ CONFIG_IDE_GD_ATA=y | |||
459 | CONFIG_BLK_DEV_IDECD=y | 477 | CONFIG_BLK_DEV_IDECD=y |
460 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 478 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
461 | # CONFIG_BLK_DEV_IDETAPE is not set | 479 | # CONFIG_BLK_DEV_IDETAPE is not set |
462 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
463 | # CONFIG_IDE_TASK_IOCTL is not set | 480 | # CONFIG_IDE_TASK_IOCTL is not set |
464 | CONFIG_IDE_PROC_FS=y | 481 | CONFIG_IDE_PROC_FS=y |
465 | 482 | ||
@@ -514,10 +531,13 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
514 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 531 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
515 | CONFIG_SCSI_LOWLEVEL=y | 532 | CONFIG_SCSI_LOWLEVEL=y |
516 | CONFIG_ISCSI_TCP=m | 533 | CONFIG_ISCSI_TCP=m |
534 | # CONFIG_LIBFC is not set | ||
535 | # CONFIG_LIBFCOE is not set | ||
517 | # CONFIG_SCSI_DEBUG is not set | 536 | # CONFIG_SCSI_DEBUG is not set |
518 | CONFIG_MAC_SCSI=y | 537 | CONFIG_MAC_SCSI=y |
519 | CONFIG_SCSI_MAC_ESP=y | 538 | CONFIG_SCSI_MAC_ESP=y |
520 | # CONFIG_SCSI_DH is not set | 539 | # CONFIG_SCSI_DH is not set |
540 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
521 | CONFIG_MD=y | 541 | CONFIG_MD=y |
522 | CONFIG_BLK_DEV_MD=m | 542 | CONFIG_BLK_DEV_MD=m |
523 | CONFIG_MD_LINEAR=m | 543 | CONFIG_MD_LINEAR=m |
@@ -525,7 +545,7 @@ CONFIG_MD_RAID0=m | |||
525 | CONFIG_MD_RAID1=m | 545 | CONFIG_MD_RAID1=m |
526 | # CONFIG_MD_RAID10 is not set | 546 | # CONFIG_MD_RAID10 is not set |
527 | CONFIG_MD_RAID456=m | 547 | CONFIG_MD_RAID456=m |
528 | CONFIG_MD_RAID5_RESHAPE=y | 548 | CONFIG_MD_RAID6_PQ=m |
529 | # CONFIG_MD_MULTIPATH is not set | 549 | # CONFIG_MD_MULTIPATH is not set |
530 | # CONFIG_MD_FAULTY is not set | 550 | # CONFIG_MD_FAULTY is not set |
531 | CONFIG_BLK_DEV_DM=m | 551 | CONFIG_BLK_DEV_DM=m |
@@ -547,6 +567,7 @@ CONFIG_ADB_CUDA=y | |||
547 | CONFIG_INPUT_ADBHID=y | 567 | CONFIG_INPUT_ADBHID=y |
548 | CONFIG_MAC_EMUMOUSEBTN=y | 568 | CONFIG_MAC_EMUMOUSEBTN=y |
549 | CONFIG_NETDEVICES=y | 569 | CONFIG_NETDEVICES=y |
570 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
550 | CONFIG_DUMMY=m | 571 | CONFIG_DUMMY=m |
551 | # CONFIG_BONDING is not set | 572 | # CONFIG_BONDING is not set |
552 | CONFIG_MACVLAN=m | 573 | CONFIG_MACVLAN=m |
@@ -561,6 +582,8 @@ CONFIG_MAC89x0=m | |||
561 | CONFIG_MACSONIC=m | 582 | CONFIG_MACSONIC=m |
562 | CONFIG_MACMACE=y | 583 | CONFIG_MACMACE=y |
563 | # CONFIG_NET_VENDOR_SMC is not set | 584 | # CONFIG_NET_VENDOR_SMC is not set |
585 | # CONFIG_ETHOC is not set | ||
586 | # CONFIG_DNET is not set | ||
564 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 587 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
565 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 588 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
566 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 589 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -577,7 +600,10 @@ CONFIG_MACMACE=y | |||
577 | # | 600 | # |
578 | # CONFIG_WLAN_PRE80211 is not set | 601 | # CONFIG_WLAN_PRE80211 is not set |
579 | # CONFIG_WLAN_80211 is not set | 602 | # CONFIG_WLAN_80211 is not set |
580 | # CONFIG_IWLWIFI_LEDS is not set | 603 | |
604 | # | ||
605 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
606 | # | ||
581 | # CONFIG_WAN is not set | 607 | # CONFIG_WAN is not set |
582 | CONFIG_PPP=m | 608 | CONFIG_PPP=m |
583 | # CONFIG_PPP_MULTILINK is not set | 609 | # CONFIG_PPP_MULTILINK is not set |
@@ -635,7 +661,6 @@ CONFIG_MOUSE_PS2=m | |||
635 | CONFIG_MOUSE_PS2_ALPS=y | 661 | CONFIG_MOUSE_PS2_ALPS=y |
636 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 662 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
637 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 663 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
638 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
639 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 664 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
640 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 665 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
641 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 666 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -677,6 +702,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
677 | # Non-8250 serial port support | 702 | # Non-8250 serial port support |
678 | # | 703 | # |
679 | CONFIG_UNIX98_PTYS=y | 704 | CONFIG_UNIX98_PTYS=y |
705 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
680 | CONFIG_LEGACY_PTYS=y | 706 | CONFIG_LEGACY_PTYS=y |
681 | CONFIG_LEGACY_PTY_COUNT=256 | 707 | CONFIG_LEGACY_PTY_COUNT=256 |
682 | # CONFIG_IPMI_HANDLER is not set | 708 | # CONFIG_IPMI_HANDLER is not set |
@@ -760,6 +786,7 @@ CONFIG_FB_MAC=y | |||
760 | # CONFIG_FB_VIRTUAL is not set | 786 | # CONFIG_FB_VIRTUAL is not set |
761 | # CONFIG_FB_METRONOME is not set | 787 | # CONFIG_FB_METRONOME is not set |
762 | # CONFIG_FB_MB862XX is not set | 788 | # CONFIG_FB_MB862XX is not set |
789 | # CONFIG_FB_BROADSHEET is not set | ||
763 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 790 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
764 | 791 | ||
765 | # | 792 | # |
@@ -793,7 +820,6 @@ CONFIG_HIDRAW=y | |||
793 | # | 820 | # |
794 | # Special HID drivers | 821 | # Special HID drivers |
795 | # | 822 | # |
796 | CONFIG_HID_COMPAT=y | ||
797 | # CONFIG_USB_SUPPORT is not set | 823 | # CONFIG_USB_SUPPORT is not set |
798 | # CONFIG_MMC is not set | 824 | # CONFIG_MMC is not set |
799 | # CONFIG_MEMSTICK is not set | 825 | # CONFIG_MEMSTICK is not set |
@@ -801,9 +827,9 @@ CONFIG_HID_COMPAT=y | |||
801 | # CONFIG_ACCESSIBILITY is not set | 827 | # CONFIG_ACCESSIBILITY is not set |
802 | # CONFIG_RTC_CLASS is not set | 828 | # CONFIG_RTC_CLASS is not set |
803 | # CONFIG_DMADEVICES is not set | 829 | # CONFIG_DMADEVICES is not set |
830 | # CONFIG_AUXDISPLAY is not set | ||
804 | # CONFIG_UIO is not set | 831 | # CONFIG_UIO is not set |
805 | # CONFIG_STAGING is not set | 832 | # CONFIG_STAGING is not set |
806 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
807 | 833 | ||
808 | # | 834 | # |
809 | # Character devices | 835 | # Character devices |
@@ -819,6 +845,7 @@ CONFIG_EXT2_FS=y | |||
819 | # CONFIG_EXT2_FS_XATTR is not set | 845 | # CONFIG_EXT2_FS_XATTR is not set |
820 | # CONFIG_EXT2_FS_XIP is not set | 846 | # CONFIG_EXT2_FS_XIP is not set |
821 | CONFIG_EXT3_FS=y | 847 | CONFIG_EXT3_FS=y |
848 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
822 | # CONFIG_EXT3_FS_XATTR is not set | 849 | # CONFIG_EXT3_FS_XATTR is not set |
823 | # CONFIG_EXT4_FS is not set | 850 | # CONFIG_EXT4_FS is not set |
824 | CONFIG_JBD=y | 851 | CONFIG_JBD=y |
@@ -845,13 +872,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
845 | # CONFIG_OCFS2_FS_STATS is not set | 872 | # CONFIG_OCFS2_FS_STATS is not set |
846 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 873 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
847 | # CONFIG_OCFS2_DEBUG_FS is not set | 874 | # CONFIG_OCFS2_DEBUG_FS is not set |
848 | # CONFIG_OCFS2_COMPAT_JBD is not set | 875 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
876 | # CONFIG_BTRFS_FS is not set | ||
849 | CONFIG_DNOTIFY=y | 877 | CONFIG_DNOTIFY=y |
850 | CONFIG_INOTIFY=y | 878 | CONFIG_INOTIFY=y |
851 | CONFIG_INOTIFY_USER=y | 879 | CONFIG_INOTIFY_USER=y |
852 | CONFIG_QUOTA=y | 880 | CONFIG_QUOTA=y |
853 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 881 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
854 | # CONFIG_PRINT_QUOTA_WARNING is not set | 882 | # CONFIG_PRINT_QUOTA_WARNING is not set |
883 | CONFIG_QUOTA_TREE=m | ||
855 | # CONFIG_QFMT_V1 is not set | 884 | # CONFIG_QFMT_V1 is not set |
856 | # CONFIG_QFMT_V2 is not set | 885 | # CONFIG_QFMT_V2 is not set |
857 | CONFIG_QUOTACTL=y | 886 | CONFIG_QUOTACTL=y |
@@ -860,6 +889,11 @@ CONFIG_AUTOFS4_FS=m | |||
860 | CONFIG_FUSE_FS=m | 889 | CONFIG_FUSE_FS=m |
861 | 890 | ||
862 | # | 891 | # |
892 | # Caches | ||
893 | # | ||
894 | # CONFIG_FSCACHE is not set | ||
895 | |||
896 | # | ||
863 | # CD-ROM/DVD Filesystems | 897 | # CD-ROM/DVD Filesystems |
864 | # | 898 | # |
865 | CONFIG_ISO9660_FS=y | 899 | CONFIG_ISO9660_FS=y |
@@ -890,10 +924,7 @@ CONFIG_TMPFS=y | |||
890 | # CONFIG_TMPFS_POSIX_ACL is not set | 924 | # CONFIG_TMPFS_POSIX_ACL is not set |
891 | # CONFIG_HUGETLB_PAGE is not set | 925 | # CONFIG_HUGETLB_PAGE is not set |
892 | CONFIG_CONFIGFS_FS=m | 926 | CONFIG_CONFIGFS_FS=m |
893 | 927 | CONFIG_MISC_FILESYSTEMS=y | |
894 | # | ||
895 | # Miscellaneous filesystems | ||
896 | # | ||
897 | # CONFIG_ADFS_FS is not set | 928 | # CONFIG_ADFS_FS is not set |
898 | CONFIG_AFFS_FS=m | 929 | CONFIG_AFFS_FS=m |
899 | CONFIG_HFS_FS=y | 930 | CONFIG_HFS_FS=y |
@@ -902,6 +933,9 @@ CONFIG_HFSPLUS_FS=y | |||
902 | # CONFIG_BFS_FS is not set | 933 | # CONFIG_BFS_FS is not set |
903 | # CONFIG_EFS_FS is not set | 934 | # CONFIG_EFS_FS is not set |
904 | CONFIG_CRAMFS=m | 935 | CONFIG_CRAMFS=m |
936 | CONFIG_SQUASHFS=m | ||
937 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
938 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
905 | # CONFIG_VXFS_FS is not set | 939 | # CONFIG_VXFS_FS is not set |
906 | CONFIG_MINIX_FS=y | 940 | CONFIG_MINIX_FS=y |
907 | # CONFIG_OMFS_FS is not set | 941 | # CONFIG_OMFS_FS is not set |
@@ -912,6 +946,7 @@ CONFIG_SYSV_FS=m | |||
912 | CONFIG_UFS_FS=m | 946 | CONFIG_UFS_FS=m |
913 | # CONFIG_UFS_FS_WRITE is not set | 947 | # CONFIG_UFS_FS_WRITE is not set |
914 | # CONFIG_UFS_DEBUG is not set | 948 | # CONFIG_UFS_DEBUG is not set |
949 | # CONFIG_NILFS2_FS is not set | ||
915 | CONFIG_NETWORK_FILESYSTEMS=y | 950 | CONFIG_NETWORK_FILESYSTEMS=y |
916 | CONFIG_NFS_FS=m | 951 | CONFIG_NFS_FS=m |
917 | CONFIG_NFS_V3=y | 952 | CONFIG_NFS_V3=y |
@@ -927,7 +962,6 @@ CONFIG_EXPORTFS=m | |||
927 | CONFIG_NFS_COMMON=y | 962 | CONFIG_NFS_COMMON=y |
928 | CONFIG_SUNRPC=m | 963 | CONFIG_SUNRPC=m |
929 | CONFIG_SUNRPC_GSS=m | 964 | CONFIG_SUNRPC_GSS=m |
930 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
931 | CONFIG_RPCSEC_GSS_KRB5=m | 965 | CONFIG_RPCSEC_GSS_KRB5=m |
932 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 966 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
933 | CONFIG_SMB_FS=m | 967 | CONFIG_SMB_FS=m |
@@ -1003,11 +1037,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1003 | CONFIG_DEBUG_MEMORY_INIT=y | 1037 | CONFIG_DEBUG_MEMORY_INIT=y |
1004 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1038 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1005 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1039 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1006 | |||
1007 | # | ||
1008 | # Tracers | ||
1009 | # | ||
1010 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1011 | # CONFIG_SAMPLES is not set | 1040 | # CONFIG_SAMPLES is not set |
1012 | 1041 | ||
1013 | # | 1042 | # |
@@ -1028,13 +1057,21 @@ CONFIG_CRYPTO=y | |||
1028 | # | 1057 | # |
1029 | # CONFIG_CRYPTO_FIPS is not set | 1058 | # CONFIG_CRYPTO_FIPS is not set |
1030 | CONFIG_CRYPTO_ALGAPI=y | 1059 | CONFIG_CRYPTO_ALGAPI=y |
1031 | CONFIG_CRYPTO_AEAD=y | 1060 | CONFIG_CRYPTO_ALGAPI2=y |
1032 | CONFIG_CRYPTO_BLKCIPHER=y | 1061 | CONFIG_CRYPTO_AEAD=m |
1062 | CONFIG_CRYPTO_AEAD2=y | ||
1063 | CONFIG_CRYPTO_BLKCIPHER=m | ||
1064 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1033 | CONFIG_CRYPTO_HASH=y | 1065 | CONFIG_CRYPTO_HASH=y |
1034 | CONFIG_CRYPTO_RNG=y | 1066 | CONFIG_CRYPTO_HASH2=y |
1067 | CONFIG_CRYPTO_RNG=m | ||
1068 | CONFIG_CRYPTO_RNG2=y | ||
1069 | CONFIG_CRYPTO_PCOMP=y | ||
1035 | CONFIG_CRYPTO_MANAGER=y | 1070 | CONFIG_CRYPTO_MANAGER=y |
1071 | CONFIG_CRYPTO_MANAGER2=y | ||
1036 | CONFIG_CRYPTO_GF128MUL=m | 1072 | CONFIG_CRYPTO_GF128MUL=m |
1037 | CONFIG_CRYPTO_NULL=m | 1073 | CONFIG_CRYPTO_NULL=m |
1074 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1038 | CONFIG_CRYPTO_CRYPTD=m | 1075 | CONFIG_CRYPTO_CRYPTD=m |
1039 | CONFIG_CRYPTO_AUTHENC=m | 1076 | CONFIG_CRYPTO_AUTHENC=m |
1040 | CONFIG_CRYPTO_TEST=m | 1077 | CONFIG_CRYPTO_TEST=m |
@@ -1104,6 +1141,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1104 | # Compression | 1141 | # Compression |
1105 | # | 1142 | # |
1106 | CONFIG_CRYPTO_DEFLATE=m | 1143 | CONFIG_CRYPTO_DEFLATE=m |
1144 | CONFIG_CRYPTO_ZLIB=m | ||
1107 | CONFIG_CRYPTO_LZO=m | 1145 | CONFIG_CRYPTO_LZO=m |
1108 | 1146 | ||
1109 | # | 1147 | # |
@@ -1111,11 +1149,13 @@ CONFIG_CRYPTO_LZO=m | |||
1111 | # | 1149 | # |
1112 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1150 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1113 | # CONFIG_CRYPTO_HW is not set | 1151 | # CONFIG_CRYPTO_HW is not set |
1152 | # CONFIG_BINARY_PRINTF is not set | ||
1114 | 1153 | ||
1115 | # | 1154 | # |
1116 | # Library routines | 1155 | # Library routines |
1117 | # | 1156 | # |
1118 | CONFIG_BITREVERSE=y | 1157 | CONFIG_BITREVERSE=y |
1158 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1119 | CONFIG_CRC_CCITT=m | 1159 | CONFIG_CRC_CCITT=m |
1120 | CONFIG_CRC16=m | 1160 | CONFIG_CRC16=m |
1121 | CONFIG_CRC_T10DIF=y | 1161 | CONFIG_CRC_T10DIF=y |
@@ -1127,10 +1167,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1127 | CONFIG_ZLIB_DEFLATE=m | 1167 | CONFIG_ZLIB_DEFLATE=m |
1128 | CONFIG_LZO_COMPRESS=m | 1168 | CONFIG_LZO_COMPRESS=m |
1129 | CONFIG_LZO_DECOMPRESS=m | 1169 | CONFIG_LZO_DECOMPRESS=m |
1170 | CONFIG_DECOMPRESS_GZIP=y | ||
1171 | CONFIG_DECOMPRESS_BZIP2=y | ||
1172 | CONFIG_DECOMPRESS_LZMA=y | ||
1130 | CONFIG_TEXTSEARCH=y | 1173 | CONFIG_TEXTSEARCH=y |
1131 | CONFIG_TEXTSEARCH_KMP=m | 1174 | CONFIG_TEXTSEARCH_KMP=m |
1132 | CONFIG_TEXTSEARCH_BM=m | 1175 | CONFIG_TEXTSEARCH_BM=m |
1133 | CONFIG_TEXTSEARCH_FSM=m | 1176 | CONFIG_TEXTSEARCH_FSM=m |
1134 | CONFIG_PLIST=y | ||
1135 | CONFIG_HAS_IOMEM=y | 1177 | CONFIG_HAS_IOMEM=y |
1136 | CONFIG_HAS_DMA=y | 1178 | CONFIG_HAS_DMA=y |
1179 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/multi_defconfig b/arch/m68k/configs/multi_defconfig index 70693588031e..69c43e2d8b45 100644 --- a/arch/m68k/configs/multi_defconfig +++ b/arch/m68k/configs/multi_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:48 2008 | 4 | # Wed Apr 22 20:48:06 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -146,12 +157,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
146 | CONFIG_NEED_MULTIPLE_NODES=y | 157 | CONFIG_NEED_MULTIPLE_NODES=y |
147 | CONFIG_PAGEFLAGS_EXTENDED=y | 158 | CONFIG_PAGEFLAGS_EXTENDED=y |
148 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 159 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
149 | # CONFIG_RESOURCES_64BIT is not set | ||
150 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 160 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
151 | CONFIG_ZONE_DMA_FLAG=1 | 161 | CONFIG_ZONE_DMA_FLAG=1 |
152 | CONFIG_BOUNCE=y | 162 | CONFIG_BOUNCE=y |
153 | CONFIG_VIRT_TO_BUS=y | 163 | CONFIG_VIRT_TO_BUS=y |
154 | CONFIG_UNEVICTABLE_LRU=y | 164 | CONFIG_UNEVICTABLE_LRU=y |
165 | CONFIG_HAVE_MLOCK=y | ||
166 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
155 | 167 | ||
156 | # | 168 | # |
157 | # General setup | 169 | # General setup |
@@ -268,6 +280,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
268 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 280 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
269 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 281 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
270 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 282 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
283 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
271 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 284 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
272 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 285 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
273 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 286 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -276,6 +289,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
276 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 289 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
277 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 290 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
278 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 291 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
292 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 293 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
280 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 294 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
281 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 295 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -286,6 +300,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
286 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 300 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
287 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 301 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
288 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 302 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
303 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
289 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 304 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
290 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 305 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
291 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 306 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -364,25 +379,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
364 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 379 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
365 | CONFIG_IP6_NF_MATCH_MH=m | 380 | CONFIG_IP6_NF_MATCH_MH=m |
366 | CONFIG_IP6_NF_MATCH_RT=m | 381 | CONFIG_IP6_NF_MATCH_RT=m |
382 | CONFIG_IP6_NF_TARGET_HL=m | ||
367 | CONFIG_IP6_NF_TARGET_LOG=m | 383 | CONFIG_IP6_NF_TARGET_LOG=m |
368 | CONFIG_IP6_NF_FILTER=m | 384 | CONFIG_IP6_NF_FILTER=m |
369 | CONFIG_IP6_NF_TARGET_REJECT=m | 385 | CONFIG_IP6_NF_TARGET_REJECT=m |
370 | CONFIG_IP6_NF_MANGLE=m | 386 | CONFIG_IP6_NF_MANGLE=m |
371 | CONFIG_IP6_NF_TARGET_HL=m | ||
372 | CONFIG_IP6_NF_RAW=m | 387 | CONFIG_IP6_NF_RAW=m |
373 | CONFIG_IP_DCCP=m | 388 | CONFIG_IP_DCCP=m |
374 | CONFIG_INET_DCCP_DIAG=m | 389 | CONFIG_INET_DCCP_DIAG=m |
375 | CONFIG_IP_DCCP_ACKVEC=y | ||
376 | 390 | ||
377 | # | 391 | # |
378 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 392 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
379 | # | 393 | # |
380 | CONFIG_IP_DCCP_CCID2=m | ||
381 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 394 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
382 | CONFIG_IP_DCCP_CCID3=m | 395 | # CONFIG_IP_DCCP_CCID3 is not set |
383 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
384 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
385 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
386 | CONFIG_IP_SCTP=m | 396 | CONFIG_IP_SCTP=m |
387 | # CONFIG_SCTP_DBG_MSG is not set | 397 | # CONFIG_SCTP_DBG_MSG is not set |
388 | # CONFIG_SCTP_DBG_OBJCNT is not set | 398 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -408,8 +418,10 @@ CONFIG_IPDDP_DECAP=y | |||
408 | # CONFIG_LAPB is not set | 418 | # CONFIG_LAPB is not set |
409 | # CONFIG_ECONET is not set | 419 | # CONFIG_ECONET is not set |
410 | # CONFIG_WAN_ROUTER is not set | 420 | # CONFIG_WAN_ROUTER is not set |
421 | # CONFIG_PHONET is not set | ||
411 | # CONFIG_NET_SCHED is not set | 422 | # CONFIG_NET_SCHED is not set |
412 | CONFIG_NET_CLS_ROUTE=y | 423 | CONFIG_NET_CLS_ROUTE=y |
424 | # CONFIG_DCB is not set | ||
413 | 425 | ||
414 | # | 426 | # |
415 | # Network testing | 427 | # Network testing |
@@ -420,8 +432,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
420 | # CONFIG_IRDA is not set | 432 | # CONFIG_IRDA is not set |
421 | # CONFIG_BT is not set | 433 | # CONFIG_BT is not set |
422 | # CONFIG_AF_RXRPC is not set | 434 | # CONFIG_AF_RXRPC is not set |
423 | # CONFIG_PHONET is not set | ||
424 | # CONFIG_WIRELESS is not set | 435 | # CONFIG_WIRELESS is not set |
436 | # CONFIG_WIMAX is not set | ||
425 | # CONFIG_RFKILL is not set | 437 | # CONFIG_RFKILL is not set |
426 | # CONFIG_NET_9P is not set | 438 | # CONFIG_NET_9P is not set |
427 | 439 | ||
@@ -454,6 +466,7 @@ CONFIG_PARPORT_NOT_PC=y | |||
454 | CONFIG_BLK_DEV=y | 466 | CONFIG_BLK_DEV=y |
455 | CONFIG_AMIGA_FLOPPY=y | 467 | CONFIG_AMIGA_FLOPPY=y |
456 | CONFIG_ATARI_FLOPPY=y | 468 | CONFIG_ATARI_FLOPPY=y |
469 | CONFIG_BLK_DEV_SWIM=y | ||
457 | CONFIG_AMIGA_Z2RAM=y | 470 | CONFIG_AMIGA_Z2RAM=y |
458 | # CONFIG_BLK_DEV_COW_COMMON is not set | 471 | # CONFIG_BLK_DEV_COW_COMMON is not set |
459 | CONFIG_BLK_DEV_LOOP=y | 472 | CONFIG_BLK_DEV_LOOP=y |
@@ -469,15 +482,20 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
469 | CONFIG_ATA_OVER_ETH=m | 482 | CONFIG_ATA_OVER_ETH=m |
470 | # CONFIG_BLK_DEV_HD is not set | 483 | # CONFIG_BLK_DEV_HD is not set |
471 | CONFIG_MISC_DEVICES=y | 484 | CONFIG_MISC_DEVICES=y |
472 | # CONFIG_EEPROM_93CX6 is not set | ||
473 | # CONFIG_ENCLOSURE_SERVICES is not set | 485 | # CONFIG_ENCLOSURE_SERVICES is not set |
474 | # CONFIG_C2PORT is not set | 486 | # CONFIG_C2PORT is not set |
487 | |||
488 | # | ||
489 | # EEPROM support | ||
490 | # | ||
491 | # CONFIG_EEPROM_93CX6 is not set | ||
475 | CONFIG_HAVE_IDE=y | 492 | CONFIG_HAVE_IDE=y |
476 | CONFIG_IDE=y | 493 | CONFIG_IDE=y |
477 | 494 | ||
478 | # | 495 | # |
479 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 496 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
480 | # | 497 | # |
498 | CONFIG_IDE_ATAPI=y | ||
481 | # CONFIG_BLK_DEV_IDE_SATA is not set | 499 | # CONFIG_BLK_DEV_IDE_SATA is not set |
482 | CONFIG_IDE_GD=y | 500 | CONFIG_IDE_GD=y |
483 | CONFIG_IDE_GD_ATA=y | 501 | CONFIG_IDE_GD_ATA=y |
@@ -485,7 +503,6 @@ CONFIG_IDE_GD_ATA=y | |||
485 | CONFIG_BLK_DEV_IDECD=y | 503 | CONFIG_BLK_DEV_IDECD=y |
486 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 504 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
487 | # CONFIG_BLK_DEV_IDETAPE is not set | 505 | # CONFIG_BLK_DEV_IDETAPE is not set |
488 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
489 | # CONFIG_IDE_TASK_IOCTL is not set | 506 | # CONFIG_IDE_TASK_IOCTL is not set |
490 | CONFIG_IDE_PROC_FS=y | 507 | CONFIG_IDE_PROC_FS=y |
491 | 508 | ||
@@ -494,7 +511,6 @@ CONFIG_IDE_PROC_FS=y | |||
494 | # | 511 | # |
495 | # CONFIG_BLK_DEV_PLATFORM is not set | 512 | # CONFIG_BLK_DEV_PLATFORM is not set |
496 | CONFIG_BLK_DEV_GAYLE=y | 513 | CONFIG_BLK_DEV_GAYLE=y |
497 | CONFIG_BLK_DEV_IDEDOUBLER=y | ||
498 | CONFIG_BLK_DEV_BUDDHA=y | 514 | CONFIG_BLK_DEV_BUDDHA=y |
499 | CONFIG_BLK_DEV_FALCON_IDE=y | 515 | CONFIG_BLK_DEV_FALCON_IDE=y |
500 | CONFIG_BLK_DEV_MAC_IDE=y | 516 | CONFIG_BLK_DEV_MAC_IDE=y |
@@ -549,6 +565,8 @@ CONFIG_ISCSI_TCP=m | |||
549 | # CONFIG_SCSI_AIC7XXX_OLD is not set | 565 | # CONFIG_SCSI_AIC7XXX_OLD is not set |
550 | # CONFIG_SCSI_ADVANSYS is not set | 566 | # CONFIG_SCSI_ADVANSYS is not set |
551 | # CONFIG_SCSI_IN2000 is not set | 567 | # CONFIG_SCSI_IN2000 is not set |
568 | # CONFIG_LIBFC is not set | ||
569 | # CONFIG_LIBFCOE is not set | ||
552 | # CONFIG_SCSI_DTC3280 is not set | 570 | # CONFIG_SCSI_DTC3280 is not set |
553 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 571 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
554 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | 572 | # CONFIG_SCSI_GENERIC_NCR5380 is not set |
@@ -575,6 +593,7 @@ CONFIG_MVME16x_SCSI=y | |||
575 | CONFIG_BVME6000_SCSI=y | 593 | CONFIG_BVME6000_SCSI=y |
576 | CONFIG_SUN3X_ESP=y | 594 | CONFIG_SUN3X_ESP=y |
577 | # CONFIG_SCSI_DH is not set | 595 | # CONFIG_SCSI_DH is not set |
596 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
578 | CONFIG_MD=y | 597 | CONFIG_MD=y |
579 | CONFIG_BLK_DEV_MD=m | 598 | CONFIG_BLK_DEV_MD=m |
580 | CONFIG_MD_LINEAR=m | 599 | CONFIG_MD_LINEAR=m |
@@ -582,7 +601,7 @@ CONFIG_MD_RAID0=m | |||
582 | CONFIG_MD_RAID1=m | 601 | CONFIG_MD_RAID1=m |
583 | # CONFIG_MD_RAID10 is not set | 602 | # CONFIG_MD_RAID10 is not set |
584 | CONFIG_MD_RAID456=m | 603 | CONFIG_MD_RAID456=m |
585 | CONFIG_MD_RAID5_RESHAPE=y | 604 | CONFIG_MD_RAID6_PQ=m |
586 | # CONFIG_MD_MULTIPATH is not set | 605 | # CONFIG_MD_MULTIPATH is not set |
587 | # CONFIG_MD_FAULTY is not set | 606 | # CONFIG_MD_FAULTY is not set |
588 | CONFIG_BLK_DEV_DM=m | 607 | CONFIG_BLK_DEV_DM=m |
@@ -604,6 +623,7 @@ CONFIG_ADB_CUDA=y | |||
604 | CONFIG_INPUT_ADBHID=y | 623 | CONFIG_INPUT_ADBHID=y |
605 | CONFIG_MAC_EMUMOUSEBTN=y | 624 | CONFIG_MAC_EMUMOUSEBTN=y |
606 | CONFIG_NETDEVICES=y | 625 | CONFIG_NETDEVICES=y |
626 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
607 | CONFIG_DUMMY=m | 627 | CONFIG_DUMMY=m |
608 | # CONFIG_BONDING is not set | 628 | # CONFIG_BONDING is not set |
609 | CONFIG_MACVLAN=m | 629 | CONFIG_MACVLAN=m |
@@ -614,24 +634,26 @@ CONFIG_VETH=m | |||
614 | # CONFIG_PHYLIB is not set | 634 | # CONFIG_PHYLIB is not set |
615 | CONFIG_NET_ETHERNET=y | 635 | CONFIG_NET_ETHERNET=y |
616 | CONFIG_MII=y | 636 | CONFIG_MII=y |
617 | CONFIG_ARIADNE=m | 637 | CONFIG_ARIADNE=y |
618 | CONFIG_A2065=m | 638 | CONFIG_A2065=y |
619 | CONFIG_HYDRA=m | 639 | CONFIG_HYDRA=y |
620 | CONFIG_ZORRO8390=m | 640 | CONFIG_ZORRO8390=y |
621 | CONFIG_APNE=m | 641 | CONFIG_APNE=y |
622 | CONFIG_MAC8390=y | 642 | CONFIG_MAC8390=y |
623 | CONFIG_MAC89x0=m | 643 | CONFIG_MAC89x0=y |
624 | CONFIG_MACSONIC=m | 644 | CONFIG_MACSONIC=y |
625 | CONFIG_MACMACE=y | 645 | CONFIG_MACMACE=y |
626 | CONFIG_MVME147_NET=y | 646 | CONFIG_MVME147_NET=y |
627 | CONFIG_MVME16x_NET=y | 647 | CONFIG_MVME16x_NET=y |
628 | CONFIG_BVME6000_NET=y | 648 | CONFIG_BVME6000_NET=y |
629 | CONFIG_ATARILANCE=m | 649 | CONFIG_ATARILANCE=y |
630 | CONFIG_SUN3LANCE=y | 650 | CONFIG_SUN3LANCE=y |
631 | CONFIG_HPLANCE=y | 651 | CONFIG_HPLANCE=y |
632 | # CONFIG_NET_VENDOR_3COM is not set | 652 | # CONFIG_NET_VENDOR_3COM is not set |
633 | # CONFIG_NET_VENDOR_SMC is not set | 653 | # CONFIG_NET_VENDOR_SMC is not set |
654 | # CONFIG_ETHOC is not set | ||
634 | # CONFIG_NET_VENDOR_RACAL is not set | 655 | # CONFIG_NET_VENDOR_RACAL is not set |
656 | # CONFIG_DNET is not set | ||
635 | # CONFIG_AT1700 is not set | 657 | # CONFIG_AT1700 is not set |
636 | # CONFIG_DEPCA is not set | 658 | # CONFIG_DEPCA is not set |
637 | # CONFIG_HP100 is not set | 659 | # CONFIG_HP100 is not set |
@@ -657,7 +679,10 @@ CONFIG_NE2000=m | |||
657 | # | 679 | # |
658 | # CONFIG_WLAN_PRE80211 is not set | 680 | # CONFIG_WLAN_PRE80211 is not set |
659 | # CONFIG_WLAN_80211 is not set | 681 | # CONFIG_WLAN_80211 is not set |
660 | # CONFIG_IWLWIFI_LEDS is not set | 682 | |
683 | # | ||
684 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
685 | # | ||
661 | # CONFIG_WAN is not set | 686 | # CONFIG_WAN is not set |
662 | # CONFIG_PLIP is not set | 687 | # CONFIG_PLIP is not set |
663 | CONFIG_PPP=m | 688 | CONFIG_PPP=m |
@@ -717,11 +742,10 @@ CONFIG_KEYBOARD_ATARI=y | |||
717 | CONFIG_KEYBOARD_HIL_OLD=y | 742 | CONFIG_KEYBOARD_HIL_OLD=y |
718 | CONFIG_KEYBOARD_HIL=y | 743 | CONFIG_KEYBOARD_HIL=y |
719 | CONFIG_INPUT_MOUSE=y | 744 | CONFIG_INPUT_MOUSE=y |
720 | CONFIG_MOUSE_PS2=y | 745 | CONFIG_MOUSE_PS2=m |
721 | CONFIG_MOUSE_PS2_ALPS=y | 746 | CONFIG_MOUSE_PS2_ALPS=y |
722 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 747 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
723 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 748 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
724 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
725 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 749 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
726 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 750 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
727 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 751 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -732,7 +756,7 @@ CONFIG_MOUSE_SERIAL=m | |||
732 | CONFIG_MOUSE_AMIGA=m | 756 | CONFIG_MOUSE_AMIGA=m |
733 | CONFIG_MOUSE_ATARI=m | 757 | CONFIG_MOUSE_ATARI=m |
734 | # CONFIG_MOUSE_VSXXXAA is not set | 758 | # CONFIG_MOUSE_VSXXXAA is not set |
735 | CONFIG_MOUSE_HIL=m | 759 | CONFIG_MOUSE_HIL=y |
736 | CONFIG_INPUT_JOYSTICK=y | 760 | CONFIG_INPUT_JOYSTICK=y |
737 | # CONFIG_JOYSTICK_ANALOG is not set | 761 | # CONFIG_JOYSTICK_ANALOG is not set |
738 | # CONFIG_JOYSTICK_A3D is not set | 762 | # CONFIG_JOYSTICK_A3D is not set |
@@ -763,18 +787,18 @@ CONFIG_JOYSTICK_AMIGA=m | |||
763 | CONFIG_INPUT_MISC=y | 787 | CONFIG_INPUT_MISC=y |
764 | CONFIG_INPUT_M68K_BEEP=m | 788 | CONFIG_INPUT_M68K_BEEP=m |
765 | # CONFIG_INPUT_UINPUT is not set | 789 | # CONFIG_INPUT_UINPUT is not set |
766 | CONFIG_HP_SDC_RTC=m | 790 | CONFIG_HP_SDC_RTC=y |
767 | 791 | ||
768 | # | 792 | # |
769 | # Hardware I/O ports | 793 | # Hardware I/O ports |
770 | # | 794 | # |
771 | CONFIG_SERIO=y | 795 | CONFIG_SERIO=y |
772 | # CONFIG_SERIO_SERPORT is not set | 796 | # CONFIG_SERIO_SERPORT is not set |
773 | CONFIG_SERIO_Q40KBD=m | 797 | CONFIG_SERIO_Q40KBD=y |
774 | # CONFIG_SERIO_PARKBD is not set | 798 | # CONFIG_SERIO_PARKBD is not set |
775 | CONFIG_HP_SDC=y | 799 | CONFIG_HP_SDC=y |
776 | CONFIG_HIL_MLC=y | 800 | CONFIG_HIL_MLC=y |
777 | CONFIG_SERIO_LIBPS2=y | 801 | CONFIG_SERIO_LIBPS2=m |
778 | # CONFIG_SERIO_RAW is not set | 802 | # CONFIG_SERIO_RAW is not set |
779 | # CONFIG_GAMEPORT is not set | 803 | # CONFIG_GAMEPORT is not set |
780 | 804 | ||
@@ -788,7 +812,7 @@ CONFIG_HW_CONSOLE=y | |||
788 | CONFIG_VT_HW_CONSOLE_BINDING=y | 812 | CONFIG_VT_HW_CONSOLE_BINDING=y |
789 | # CONFIG_DEVKMEM is not set | 813 | # CONFIG_DEVKMEM is not set |
790 | # CONFIG_SERIAL_NONSTANDARD is not set | 814 | # CONFIG_SERIAL_NONSTANDARD is not set |
791 | CONFIG_A2232=m | 815 | CONFIG_A2232=y |
792 | 816 | ||
793 | # | 817 | # |
794 | # Serial drivers | 818 | # Serial drivers |
@@ -799,6 +823,7 @@ CONFIG_A2232=m | |||
799 | # Non-8250 serial port support | 823 | # Non-8250 serial port support |
800 | # | 824 | # |
801 | CONFIG_UNIX98_PTYS=y | 825 | CONFIG_UNIX98_PTYS=y |
826 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
802 | CONFIG_LEGACY_PTYS=y | 827 | CONFIG_LEGACY_PTYS=y |
803 | CONFIG_LEGACY_PTY_COUNT=256 | 828 | CONFIG_LEGACY_PTY_COUNT=256 |
804 | CONFIG_PRINTER=m | 829 | CONFIG_PRINTER=m |
@@ -807,7 +832,7 @@ CONFIG_PRINTER=m | |||
807 | # CONFIG_IPMI_HANDLER is not set | 832 | # CONFIG_IPMI_HANDLER is not set |
808 | # CONFIG_HW_RANDOM is not set | 833 | # CONFIG_HW_RANDOM is not set |
809 | CONFIG_NVRAM=y | 834 | CONFIG_NVRAM=y |
810 | CONFIG_GEN_RTC=m | 835 | CONFIG_GEN_RTC=y |
811 | CONFIG_GEN_RTC_X=y | 836 | CONFIG_GEN_RTC_X=y |
812 | # CONFIG_DTLK is not set | 837 | # CONFIG_DTLK is not set |
813 | # CONFIG_R3964 is not set | 838 | # CONFIG_R3964 is not set |
@@ -898,6 +923,7 @@ CONFIG_FB_HP300=y | |||
898 | # CONFIG_FB_VIRTUAL is not set | 923 | # CONFIG_FB_VIRTUAL is not set |
899 | # CONFIG_FB_METRONOME is not set | 924 | # CONFIG_FB_METRONOME is not set |
900 | # CONFIG_FB_MB862XX is not set | 925 | # CONFIG_FB_MB862XX is not set |
926 | # CONFIG_FB_BROADSHEET is not set | ||
901 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 927 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
902 | 928 | ||
903 | # | 929 | # |
@@ -937,7 +963,6 @@ CONFIG_HIDRAW=y | |||
937 | # | 963 | # |
938 | # Special HID drivers | 964 | # Special HID drivers |
939 | # | 965 | # |
940 | CONFIG_HID_COMPAT=y | ||
941 | # CONFIG_USB_SUPPORT is not set | 966 | # CONFIG_USB_SUPPORT is not set |
942 | # CONFIG_MMC is not set | 967 | # CONFIG_MMC is not set |
943 | # CONFIG_MEMSTICK is not set | 968 | # CONFIG_MEMSTICK is not set |
@@ -948,13 +973,12 @@ CONFIG_HID_COMPAT=y | |||
948 | # CONFIG_AUXDISPLAY is not set | 973 | # CONFIG_AUXDISPLAY is not set |
949 | # CONFIG_UIO is not set | 974 | # CONFIG_UIO is not set |
950 | # CONFIG_STAGING is not set | 975 | # CONFIG_STAGING is not set |
951 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
952 | 976 | ||
953 | # | 977 | # |
954 | # Character devices | 978 | # Character devices |
955 | # | 979 | # |
956 | CONFIG_ATARI_MFPSER=m | 980 | CONFIG_ATARI_MFPSER=y |
957 | CONFIG_ATARI_MIDI=m | 981 | CONFIG_ATARI_MIDI=y |
958 | CONFIG_ATARI_DSP56K=m | 982 | CONFIG_ATARI_DSP56K=m |
959 | CONFIG_AMIGA_BUILTIN_SERIAL=y | 983 | CONFIG_AMIGA_BUILTIN_SERIAL=y |
960 | CONFIG_MULTIFACE_III_TTY=m | 984 | CONFIG_MULTIFACE_III_TTY=m |
@@ -974,6 +998,7 @@ CONFIG_EXT2_FS=y | |||
974 | # CONFIG_EXT2_FS_XATTR is not set | 998 | # CONFIG_EXT2_FS_XATTR is not set |
975 | # CONFIG_EXT2_FS_XIP is not set | 999 | # CONFIG_EXT2_FS_XIP is not set |
976 | CONFIG_EXT3_FS=y | 1000 | CONFIG_EXT3_FS=y |
1001 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
977 | # CONFIG_EXT3_FS_XATTR is not set | 1002 | # CONFIG_EXT3_FS_XATTR is not set |
978 | # CONFIG_EXT4_FS is not set | 1003 | # CONFIG_EXT4_FS is not set |
979 | CONFIG_JBD=y | 1004 | CONFIG_JBD=y |
@@ -1000,13 +1025,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
1000 | # CONFIG_OCFS2_FS_STATS is not set | 1025 | # CONFIG_OCFS2_FS_STATS is not set |
1001 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 1026 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
1002 | # CONFIG_OCFS2_DEBUG_FS is not set | 1027 | # CONFIG_OCFS2_DEBUG_FS is not set |
1003 | # CONFIG_OCFS2_COMPAT_JBD is not set | 1028 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
1029 | # CONFIG_BTRFS_FS is not set | ||
1004 | CONFIG_DNOTIFY=y | 1030 | CONFIG_DNOTIFY=y |
1005 | CONFIG_INOTIFY=y | 1031 | CONFIG_INOTIFY=y |
1006 | CONFIG_INOTIFY_USER=y | 1032 | CONFIG_INOTIFY_USER=y |
1007 | CONFIG_QUOTA=y | 1033 | CONFIG_QUOTA=y |
1008 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 1034 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
1009 | # CONFIG_PRINT_QUOTA_WARNING is not set | 1035 | # CONFIG_PRINT_QUOTA_WARNING is not set |
1036 | CONFIG_QUOTA_TREE=m | ||
1010 | # CONFIG_QFMT_V1 is not set | 1037 | # CONFIG_QFMT_V1 is not set |
1011 | # CONFIG_QFMT_V2 is not set | 1038 | # CONFIG_QFMT_V2 is not set |
1012 | CONFIG_QUOTACTL=y | 1039 | CONFIG_QUOTACTL=y |
@@ -1015,6 +1042,11 @@ CONFIG_AUTOFS4_FS=m | |||
1015 | CONFIG_FUSE_FS=m | 1042 | CONFIG_FUSE_FS=m |
1016 | 1043 | ||
1017 | # | 1044 | # |
1045 | # Caches | ||
1046 | # | ||
1047 | # CONFIG_FSCACHE is not set | ||
1048 | |||
1049 | # | ||
1018 | # CD-ROM/DVD Filesystems | 1050 | # CD-ROM/DVD Filesystems |
1019 | # | 1051 | # |
1020 | CONFIG_ISO9660_FS=y | 1052 | CONFIG_ISO9660_FS=y |
@@ -1045,10 +1077,7 @@ CONFIG_TMPFS=y | |||
1045 | # CONFIG_TMPFS_POSIX_ACL is not set | 1077 | # CONFIG_TMPFS_POSIX_ACL is not set |
1046 | # CONFIG_HUGETLB_PAGE is not set | 1078 | # CONFIG_HUGETLB_PAGE is not set |
1047 | CONFIG_CONFIGFS_FS=m | 1079 | CONFIG_CONFIGFS_FS=m |
1048 | 1080 | CONFIG_MISC_FILESYSTEMS=y | |
1049 | # | ||
1050 | # Miscellaneous filesystems | ||
1051 | # | ||
1052 | # CONFIG_ADFS_FS is not set | 1081 | # CONFIG_ADFS_FS is not set |
1053 | CONFIG_AFFS_FS=m | 1082 | CONFIG_AFFS_FS=m |
1054 | CONFIG_HFS_FS=y | 1083 | CONFIG_HFS_FS=y |
@@ -1057,6 +1086,9 @@ CONFIG_HFSPLUS_FS=y | |||
1057 | # CONFIG_BFS_FS is not set | 1086 | # CONFIG_BFS_FS is not set |
1058 | # CONFIG_EFS_FS is not set | 1087 | # CONFIG_EFS_FS is not set |
1059 | CONFIG_CRAMFS=m | 1088 | CONFIG_CRAMFS=m |
1089 | CONFIG_SQUASHFS=m | ||
1090 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
1091 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
1060 | # CONFIG_VXFS_FS is not set | 1092 | # CONFIG_VXFS_FS is not set |
1061 | CONFIG_MINIX_FS=y | 1093 | CONFIG_MINIX_FS=y |
1062 | # CONFIG_OMFS_FS is not set | 1094 | # CONFIG_OMFS_FS is not set |
@@ -1067,6 +1099,7 @@ CONFIG_SYSV_FS=m | |||
1067 | CONFIG_UFS_FS=m | 1099 | CONFIG_UFS_FS=m |
1068 | # CONFIG_UFS_FS_WRITE is not set | 1100 | # CONFIG_UFS_FS_WRITE is not set |
1069 | # CONFIG_UFS_DEBUG is not set | 1101 | # CONFIG_UFS_DEBUG is not set |
1102 | # CONFIG_NILFS2_FS is not set | ||
1070 | CONFIG_NETWORK_FILESYSTEMS=y | 1103 | CONFIG_NETWORK_FILESYSTEMS=y |
1071 | CONFIG_NFS_FS=y | 1104 | CONFIG_NFS_FS=y |
1072 | CONFIG_NFS_V3=y | 1105 | CONFIG_NFS_V3=y |
@@ -1083,7 +1116,6 @@ CONFIG_EXPORTFS=m | |||
1083 | CONFIG_NFS_COMMON=y | 1116 | CONFIG_NFS_COMMON=y |
1084 | CONFIG_SUNRPC=y | 1117 | CONFIG_SUNRPC=y |
1085 | CONFIG_SUNRPC_GSS=y | 1118 | CONFIG_SUNRPC_GSS=y |
1086 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1087 | CONFIG_RPCSEC_GSS_KRB5=y | 1119 | CONFIG_RPCSEC_GSS_KRB5=y |
1088 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1120 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1089 | CONFIG_SMB_FS=m | 1121 | CONFIG_SMB_FS=m |
@@ -1163,11 +1195,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1163 | CONFIG_DEBUG_MEMORY_INIT=y | 1195 | CONFIG_DEBUG_MEMORY_INIT=y |
1164 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1196 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1165 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1197 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1166 | |||
1167 | # | ||
1168 | # Tracers | ||
1169 | # | ||
1170 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1171 | # CONFIG_SAMPLES is not set | 1198 | # CONFIG_SAMPLES is not set |
1172 | 1199 | ||
1173 | # | 1200 | # |
@@ -1188,13 +1215,21 @@ CONFIG_CRYPTO=y | |||
1188 | # | 1215 | # |
1189 | # CONFIG_CRYPTO_FIPS is not set | 1216 | # CONFIG_CRYPTO_FIPS is not set |
1190 | CONFIG_CRYPTO_ALGAPI=y | 1217 | CONFIG_CRYPTO_ALGAPI=y |
1191 | CONFIG_CRYPTO_AEAD=y | 1218 | CONFIG_CRYPTO_ALGAPI2=y |
1219 | CONFIG_CRYPTO_AEAD=m | ||
1220 | CONFIG_CRYPTO_AEAD2=y | ||
1192 | CONFIG_CRYPTO_BLKCIPHER=y | 1221 | CONFIG_CRYPTO_BLKCIPHER=y |
1222 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1193 | CONFIG_CRYPTO_HASH=y | 1223 | CONFIG_CRYPTO_HASH=y |
1194 | CONFIG_CRYPTO_RNG=y | 1224 | CONFIG_CRYPTO_HASH2=y |
1225 | CONFIG_CRYPTO_RNG=m | ||
1226 | CONFIG_CRYPTO_RNG2=y | ||
1227 | CONFIG_CRYPTO_PCOMP=y | ||
1195 | CONFIG_CRYPTO_MANAGER=y | 1228 | CONFIG_CRYPTO_MANAGER=y |
1229 | CONFIG_CRYPTO_MANAGER2=y | ||
1196 | CONFIG_CRYPTO_GF128MUL=m | 1230 | CONFIG_CRYPTO_GF128MUL=m |
1197 | CONFIG_CRYPTO_NULL=m | 1231 | CONFIG_CRYPTO_NULL=m |
1232 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1198 | CONFIG_CRYPTO_CRYPTD=m | 1233 | CONFIG_CRYPTO_CRYPTD=m |
1199 | CONFIG_CRYPTO_AUTHENC=m | 1234 | CONFIG_CRYPTO_AUTHENC=m |
1200 | CONFIG_CRYPTO_TEST=m | 1235 | CONFIG_CRYPTO_TEST=m |
@@ -1264,6 +1299,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1264 | # Compression | 1299 | # Compression |
1265 | # | 1300 | # |
1266 | CONFIG_CRYPTO_DEFLATE=m | 1301 | CONFIG_CRYPTO_DEFLATE=m |
1302 | CONFIG_CRYPTO_ZLIB=m | ||
1267 | CONFIG_CRYPTO_LZO=m | 1303 | CONFIG_CRYPTO_LZO=m |
1268 | 1304 | ||
1269 | # | 1305 | # |
@@ -1271,11 +1307,13 @@ CONFIG_CRYPTO_LZO=m | |||
1271 | # | 1307 | # |
1272 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1308 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1273 | # CONFIG_CRYPTO_HW is not set | 1309 | # CONFIG_CRYPTO_HW is not set |
1310 | # CONFIG_BINARY_PRINTF is not set | ||
1274 | 1311 | ||
1275 | # | 1312 | # |
1276 | # Library routines | 1313 | # Library routines |
1277 | # | 1314 | # |
1278 | CONFIG_BITREVERSE=y | 1315 | CONFIG_BITREVERSE=y |
1316 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1279 | CONFIG_CRC_CCITT=m | 1317 | CONFIG_CRC_CCITT=m |
1280 | CONFIG_CRC16=y | 1318 | CONFIG_CRC16=y |
1281 | CONFIG_CRC_T10DIF=y | 1319 | CONFIG_CRC_T10DIF=y |
@@ -1287,10 +1325,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1287 | CONFIG_ZLIB_DEFLATE=m | 1325 | CONFIG_ZLIB_DEFLATE=m |
1288 | CONFIG_LZO_COMPRESS=m | 1326 | CONFIG_LZO_COMPRESS=m |
1289 | CONFIG_LZO_DECOMPRESS=m | 1327 | CONFIG_LZO_DECOMPRESS=m |
1328 | CONFIG_DECOMPRESS_GZIP=y | ||
1329 | CONFIG_DECOMPRESS_BZIP2=y | ||
1330 | CONFIG_DECOMPRESS_LZMA=y | ||
1290 | CONFIG_TEXTSEARCH=y | 1331 | CONFIG_TEXTSEARCH=y |
1291 | CONFIG_TEXTSEARCH_KMP=m | 1332 | CONFIG_TEXTSEARCH_KMP=m |
1292 | CONFIG_TEXTSEARCH_BM=m | 1333 | CONFIG_TEXTSEARCH_BM=m |
1293 | CONFIG_TEXTSEARCH_FSM=m | 1334 | CONFIG_TEXTSEARCH_FSM=m |
1294 | CONFIG_PLIST=y | ||
1295 | CONFIG_HAS_IOMEM=y | 1335 | CONFIG_HAS_IOMEM=y |
1296 | CONFIG_HAS_DMA=y | 1336 | CONFIG_HAS_DMA=y |
1337 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/mvme147_defconfig b/arch/m68k/configs/mvme147_defconfig index 52d42715bd0b..7dceb5d71223 100644 --- a/arch/m68k/configs/mvme147_defconfig +++ b/arch/m68k/configs/mvme147_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:50 2008 | 4 | # Wed Apr 22 20:48:08 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -143,12 +154,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
143 | CONFIG_NEED_MULTIPLE_NODES=y | 154 | CONFIG_NEED_MULTIPLE_NODES=y |
144 | CONFIG_PAGEFLAGS_EXTENDED=y | 155 | CONFIG_PAGEFLAGS_EXTENDED=y |
145 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 156 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
146 | # CONFIG_RESOURCES_64BIT is not set | ||
147 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 157 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
148 | CONFIG_ZONE_DMA_FLAG=1 | 158 | CONFIG_ZONE_DMA_FLAG=1 |
149 | CONFIG_BOUNCE=y | 159 | CONFIG_BOUNCE=y |
150 | CONFIG_VIRT_TO_BUS=y | 160 | CONFIG_VIRT_TO_BUS=y |
151 | CONFIG_UNEVICTABLE_LRU=y | 161 | CONFIG_UNEVICTABLE_LRU=y |
162 | CONFIG_HAVE_MLOCK=y | ||
163 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
152 | 164 | ||
153 | # | 165 | # |
154 | # General setup | 166 | # General setup |
@@ -258,6 +270,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
258 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 270 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
259 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
260 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 272 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
273 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
261 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 274 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
262 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 275 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
263 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 276 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -266,6 +279,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
266 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 279 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
267 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 280 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
268 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 281 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
282 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
269 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 283 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
270 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 284 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
271 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 285 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -276,6 +290,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
276 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 290 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
277 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 291 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 292 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
293 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 294 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
280 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 295 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
281 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 296 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -354,25 +369,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
354 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 369 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
355 | CONFIG_IP6_NF_MATCH_MH=m | 370 | CONFIG_IP6_NF_MATCH_MH=m |
356 | CONFIG_IP6_NF_MATCH_RT=m | 371 | CONFIG_IP6_NF_MATCH_RT=m |
372 | CONFIG_IP6_NF_TARGET_HL=m | ||
357 | CONFIG_IP6_NF_TARGET_LOG=m | 373 | CONFIG_IP6_NF_TARGET_LOG=m |
358 | CONFIG_IP6_NF_FILTER=m | 374 | CONFIG_IP6_NF_FILTER=m |
359 | CONFIG_IP6_NF_TARGET_REJECT=m | 375 | CONFIG_IP6_NF_TARGET_REJECT=m |
360 | CONFIG_IP6_NF_MANGLE=m | 376 | CONFIG_IP6_NF_MANGLE=m |
361 | CONFIG_IP6_NF_TARGET_HL=m | ||
362 | CONFIG_IP6_NF_RAW=m | 377 | CONFIG_IP6_NF_RAW=m |
363 | CONFIG_IP_DCCP=m | 378 | CONFIG_IP_DCCP=m |
364 | CONFIG_INET_DCCP_DIAG=m | 379 | CONFIG_INET_DCCP_DIAG=m |
365 | CONFIG_IP_DCCP_ACKVEC=y | ||
366 | 380 | ||
367 | # | 381 | # |
368 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 382 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
369 | # | 383 | # |
370 | CONFIG_IP_DCCP_CCID2=m | ||
371 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 384 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
372 | CONFIG_IP_DCCP_CCID3=m | 385 | # CONFIG_IP_DCCP_CCID3 is not set |
373 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
374 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
375 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
376 | CONFIG_IP_SCTP=m | 386 | CONFIG_IP_SCTP=m |
377 | # CONFIG_SCTP_DBG_MSG is not set | 387 | # CONFIG_SCTP_DBG_MSG is not set |
378 | # CONFIG_SCTP_DBG_OBJCNT is not set | 388 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -394,8 +404,10 @@ CONFIG_ATALK=m | |||
394 | # CONFIG_LAPB is not set | 404 | # CONFIG_LAPB is not set |
395 | # CONFIG_ECONET is not set | 405 | # CONFIG_ECONET is not set |
396 | # CONFIG_WAN_ROUTER is not set | 406 | # CONFIG_WAN_ROUTER is not set |
407 | # CONFIG_PHONET is not set | ||
397 | # CONFIG_NET_SCHED is not set | 408 | # CONFIG_NET_SCHED is not set |
398 | CONFIG_NET_CLS_ROUTE=y | 409 | CONFIG_NET_CLS_ROUTE=y |
410 | # CONFIG_DCB is not set | ||
399 | 411 | ||
400 | # | 412 | # |
401 | # Network testing | 413 | # Network testing |
@@ -406,8 +418,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
406 | # CONFIG_IRDA is not set | 418 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 419 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 420 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_PHONET is not set | ||
410 | # CONFIG_WIRELESS is not set | 421 | # CONFIG_WIRELESS is not set |
422 | # CONFIG_WIMAX is not set | ||
411 | # CONFIG_RFKILL is not set | 423 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 424 | # CONFIG_NET_9P is not set |
413 | 425 | ||
@@ -443,9 +455,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
443 | CONFIG_ATA_OVER_ETH=m | 455 | CONFIG_ATA_OVER_ETH=m |
444 | # CONFIG_BLK_DEV_HD is not set | 456 | # CONFIG_BLK_DEV_HD is not set |
445 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
446 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | # CONFIG_ENCLOSURE_SERVICES is not set | 458 | # CONFIG_ENCLOSURE_SERVICES is not set |
448 | # CONFIG_C2PORT is not set | 459 | # CONFIG_C2PORT is not set |
460 | |||
461 | # | ||
462 | # EEPROM support | ||
463 | # | ||
464 | # CONFIG_EEPROM_93CX6 is not set | ||
449 | CONFIG_HAVE_IDE=y | 465 | CONFIG_HAVE_IDE=y |
450 | # CONFIG_IDE is not set | 466 | # CONFIG_IDE is not set |
451 | 467 | ||
@@ -493,9 +509,12 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
493 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 509 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
494 | CONFIG_SCSI_LOWLEVEL=y | 510 | CONFIG_SCSI_LOWLEVEL=y |
495 | CONFIG_ISCSI_TCP=m | 511 | CONFIG_ISCSI_TCP=m |
512 | # CONFIG_LIBFC is not set | ||
513 | # CONFIG_LIBFCOE is not set | ||
496 | # CONFIG_SCSI_DEBUG is not set | 514 | # CONFIG_SCSI_DEBUG is not set |
497 | CONFIG_MVME147_SCSI=y | 515 | CONFIG_MVME147_SCSI=y |
498 | # CONFIG_SCSI_DH is not set | 516 | # CONFIG_SCSI_DH is not set |
517 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
499 | CONFIG_MD=y | 518 | CONFIG_MD=y |
500 | CONFIG_BLK_DEV_MD=m | 519 | CONFIG_BLK_DEV_MD=m |
501 | CONFIG_MD_LINEAR=m | 520 | CONFIG_MD_LINEAR=m |
@@ -503,7 +522,7 @@ CONFIG_MD_RAID0=m | |||
503 | CONFIG_MD_RAID1=m | 522 | CONFIG_MD_RAID1=m |
504 | # CONFIG_MD_RAID10 is not set | 523 | # CONFIG_MD_RAID10 is not set |
505 | CONFIG_MD_RAID456=m | 524 | CONFIG_MD_RAID456=m |
506 | CONFIG_MD_RAID5_RESHAPE=y | 525 | CONFIG_MD_RAID6_PQ=m |
507 | # CONFIG_MD_MULTIPATH is not set | 526 | # CONFIG_MD_MULTIPATH is not set |
508 | # CONFIG_MD_FAULTY is not set | 527 | # CONFIG_MD_FAULTY is not set |
509 | CONFIG_BLK_DEV_DM=m | 528 | CONFIG_BLK_DEV_DM=m |
@@ -516,6 +535,7 @@ CONFIG_DM_MULTIPATH=m | |||
516 | # CONFIG_DM_DELAY is not set | 535 | # CONFIG_DM_DELAY is not set |
517 | CONFIG_DM_UEVENT=y | 536 | CONFIG_DM_UEVENT=y |
518 | CONFIG_NETDEVICES=y | 537 | CONFIG_NETDEVICES=y |
538 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
519 | CONFIG_DUMMY=m | 539 | CONFIG_DUMMY=m |
520 | # CONFIG_BONDING is not set | 540 | # CONFIG_BONDING is not set |
521 | CONFIG_MACVLAN=m | 541 | CONFIG_MACVLAN=m |
@@ -526,6 +546,8 @@ CONFIG_VETH=m | |||
526 | CONFIG_NET_ETHERNET=y | 546 | CONFIG_NET_ETHERNET=y |
527 | # CONFIG_MII is not set | 547 | # CONFIG_MII is not set |
528 | CONFIG_MVME147_NET=y | 548 | CONFIG_MVME147_NET=y |
549 | # CONFIG_ETHOC is not set | ||
550 | # CONFIG_DNET is not set | ||
529 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 551 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
530 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 552 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
531 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 553 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -542,7 +564,10 @@ CONFIG_MVME147_NET=y | |||
542 | # | 564 | # |
543 | # CONFIG_WLAN_PRE80211 is not set | 565 | # CONFIG_WLAN_PRE80211 is not set |
544 | # CONFIG_WLAN_80211 is not set | 566 | # CONFIG_WLAN_80211 is not set |
545 | # CONFIG_IWLWIFI_LEDS is not set | 567 | |
568 | # | ||
569 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
570 | # | ||
546 | # CONFIG_WAN is not set | 571 | # CONFIG_WAN is not set |
547 | CONFIG_PPP=m | 572 | CONFIG_PPP=m |
548 | # CONFIG_PPP_MULTILINK is not set | 573 | # CONFIG_PPP_MULTILINK is not set |
@@ -600,7 +625,6 @@ CONFIG_MOUSE_PS2=m | |||
600 | CONFIG_MOUSE_PS2_ALPS=y | 625 | CONFIG_MOUSE_PS2_ALPS=y |
601 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 626 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
602 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 627 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
603 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
604 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 628 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
605 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 629 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
606 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 630 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -640,6 +664,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
640 | # Non-8250 serial port support | 664 | # Non-8250 serial port support |
641 | # | 665 | # |
642 | CONFIG_UNIX98_PTYS=y | 666 | CONFIG_UNIX98_PTYS=y |
667 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
643 | CONFIG_LEGACY_PTYS=y | 668 | CONFIG_LEGACY_PTYS=y |
644 | CONFIG_LEGACY_PTY_COUNT=256 | 669 | CONFIG_LEGACY_PTY_COUNT=256 |
645 | # CONFIG_IPMI_HANDLER is not set | 670 | # CONFIG_IPMI_HANDLER is not set |
@@ -716,7 +741,6 @@ CONFIG_HIDRAW=y | |||
716 | # | 741 | # |
717 | # Special HID drivers | 742 | # Special HID drivers |
718 | # | 743 | # |
719 | CONFIG_HID_COMPAT=y | ||
720 | # CONFIG_USB_SUPPORT is not set | 744 | # CONFIG_USB_SUPPORT is not set |
721 | # CONFIG_MMC is not set | 745 | # CONFIG_MMC is not set |
722 | # CONFIG_MEMSTICK is not set | 746 | # CONFIG_MEMSTICK is not set |
@@ -724,9 +748,9 @@ CONFIG_HID_COMPAT=y | |||
724 | # CONFIG_ACCESSIBILITY is not set | 748 | # CONFIG_ACCESSIBILITY is not set |
725 | # CONFIG_RTC_CLASS is not set | 749 | # CONFIG_RTC_CLASS is not set |
726 | # CONFIG_DMADEVICES is not set | 750 | # CONFIG_DMADEVICES is not set |
751 | # CONFIG_AUXDISPLAY is not set | ||
727 | # CONFIG_UIO is not set | 752 | # CONFIG_UIO is not set |
728 | # CONFIG_STAGING is not set | 753 | # CONFIG_STAGING is not set |
729 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
730 | 754 | ||
731 | # | 755 | # |
732 | # Character devices | 756 | # Character devices |
@@ -741,6 +765,7 @@ CONFIG_EXT2_FS=y | |||
741 | # CONFIG_EXT2_FS_XATTR is not set | 765 | # CONFIG_EXT2_FS_XATTR is not set |
742 | # CONFIG_EXT2_FS_XIP is not set | 766 | # CONFIG_EXT2_FS_XIP is not set |
743 | CONFIG_EXT3_FS=y | 767 | CONFIG_EXT3_FS=y |
768 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
744 | # CONFIG_EXT3_FS_XATTR is not set | 769 | # CONFIG_EXT3_FS_XATTR is not set |
745 | # CONFIG_EXT4_FS is not set | 770 | # CONFIG_EXT4_FS is not set |
746 | CONFIG_JBD=y | 771 | CONFIG_JBD=y |
@@ -767,13 +792,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
767 | # CONFIG_OCFS2_FS_STATS is not set | 792 | # CONFIG_OCFS2_FS_STATS is not set |
768 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 793 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
769 | # CONFIG_OCFS2_DEBUG_FS is not set | 794 | # CONFIG_OCFS2_DEBUG_FS is not set |
770 | # CONFIG_OCFS2_COMPAT_JBD is not set | 795 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
796 | # CONFIG_BTRFS_FS is not set | ||
771 | CONFIG_DNOTIFY=y | 797 | CONFIG_DNOTIFY=y |
772 | CONFIG_INOTIFY=y | 798 | CONFIG_INOTIFY=y |
773 | CONFIG_INOTIFY_USER=y | 799 | CONFIG_INOTIFY_USER=y |
774 | CONFIG_QUOTA=y | 800 | CONFIG_QUOTA=y |
775 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 801 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
776 | # CONFIG_PRINT_QUOTA_WARNING is not set | 802 | # CONFIG_PRINT_QUOTA_WARNING is not set |
803 | CONFIG_QUOTA_TREE=m | ||
777 | # CONFIG_QFMT_V1 is not set | 804 | # CONFIG_QFMT_V1 is not set |
778 | # CONFIG_QFMT_V2 is not set | 805 | # CONFIG_QFMT_V2 is not set |
779 | CONFIG_QUOTACTL=y | 806 | CONFIG_QUOTACTL=y |
@@ -782,6 +809,11 @@ CONFIG_AUTOFS4_FS=m | |||
782 | CONFIG_FUSE_FS=m | 809 | CONFIG_FUSE_FS=m |
783 | 810 | ||
784 | # | 811 | # |
812 | # Caches | ||
813 | # | ||
814 | # CONFIG_FSCACHE is not set | ||
815 | |||
816 | # | ||
785 | # CD-ROM/DVD Filesystems | 817 | # CD-ROM/DVD Filesystems |
786 | # | 818 | # |
787 | CONFIG_ISO9660_FS=y | 819 | CONFIG_ISO9660_FS=y |
@@ -812,10 +844,7 @@ CONFIG_TMPFS=y | |||
812 | # CONFIG_TMPFS_POSIX_ACL is not set | 844 | # CONFIG_TMPFS_POSIX_ACL is not set |
813 | # CONFIG_HUGETLB_PAGE is not set | 845 | # CONFIG_HUGETLB_PAGE is not set |
814 | CONFIG_CONFIGFS_FS=m | 846 | CONFIG_CONFIGFS_FS=m |
815 | 847 | CONFIG_MISC_FILESYSTEMS=y | |
816 | # | ||
817 | # Miscellaneous filesystems | ||
818 | # | ||
819 | # CONFIG_ADFS_FS is not set | 848 | # CONFIG_ADFS_FS is not set |
820 | CONFIG_AFFS_FS=m | 849 | CONFIG_AFFS_FS=m |
821 | CONFIG_HFS_FS=m | 850 | CONFIG_HFS_FS=m |
@@ -824,6 +853,9 @@ CONFIG_HFSPLUS_FS=m | |||
824 | # CONFIG_BFS_FS is not set | 853 | # CONFIG_BFS_FS is not set |
825 | # CONFIG_EFS_FS is not set | 854 | # CONFIG_EFS_FS is not set |
826 | CONFIG_CRAMFS=m | 855 | CONFIG_CRAMFS=m |
856 | CONFIG_SQUASHFS=m | ||
857 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
858 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
827 | # CONFIG_VXFS_FS is not set | 859 | # CONFIG_VXFS_FS is not set |
828 | CONFIG_MINIX_FS=y | 860 | CONFIG_MINIX_FS=y |
829 | # CONFIG_OMFS_FS is not set | 861 | # CONFIG_OMFS_FS is not set |
@@ -834,6 +866,7 @@ CONFIG_SYSV_FS=m | |||
834 | CONFIG_UFS_FS=m | 866 | CONFIG_UFS_FS=m |
835 | # CONFIG_UFS_FS_WRITE is not set | 867 | # CONFIG_UFS_FS_WRITE is not set |
836 | # CONFIG_UFS_DEBUG is not set | 868 | # CONFIG_UFS_DEBUG is not set |
869 | # CONFIG_NILFS2_FS is not set | ||
837 | CONFIG_NETWORK_FILESYSTEMS=y | 870 | CONFIG_NETWORK_FILESYSTEMS=y |
838 | CONFIG_NFS_FS=y | 871 | CONFIG_NFS_FS=y |
839 | CONFIG_NFS_V3=y | 872 | CONFIG_NFS_V3=y |
@@ -850,7 +883,6 @@ CONFIG_EXPORTFS=m | |||
850 | CONFIG_NFS_COMMON=y | 883 | CONFIG_NFS_COMMON=y |
851 | CONFIG_SUNRPC=y | 884 | CONFIG_SUNRPC=y |
852 | CONFIG_SUNRPC_GSS=y | 885 | CONFIG_SUNRPC_GSS=y |
853 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
854 | CONFIG_RPCSEC_GSS_KRB5=y | 886 | CONFIG_RPCSEC_GSS_KRB5=y |
855 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 887 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
856 | CONFIG_SMB_FS=m | 888 | CONFIG_SMB_FS=m |
@@ -926,11 +958,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
926 | CONFIG_DEBUG_MEMORY_INIT=y | 958 | CONFIG_DEBUG_MEMORY_INIT=y |
927 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 959 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
928 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 960 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
929 | |||
930 | # | ||
931 | # Tracers | ||
932 | # | ||
933 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
934 | # CONFIG_SAMPLES is not set | 961 | # CONFIG_SAMPLES is not set |
935 | 962 | ||
936 | # | 963 | # |
@@ -951,13 +978,21 @@ CONFIG_CRYPTO=y | |||
951 | # | 978 | # |
952 | # CONFIG_CRYPTO_FIPS is not set | 979 | # CONFIG_CRYPTO_FIPS is not set |
953 | CONFIG_CRYPTO_ALGAPI=y | 980 | CONFIG_CRYPTO_ALGAPI=y |
954 | CONFIG_CRYPTO_AEAD=y | 981 | CONFIG_CRYPTO_ALGAPI2=y |
982 | CONFIG_CRYPTO_AEAD=m | ||
983 | CONFIG_CRYPTO_AEAD2=y | ||
955 | CONFIG_CRYPTO_BLKCIPHER=y | 984 | CONFIG_CRYPTO_BLKCIPHER=y |
985 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
956 | CONFIG_CRYPTO_HASH=y | 986 | CONFIG_CRYPTO_HASH=y |
957 | CONFIG_CRYPTO_RNG=y | 987 | CONFIG_CRYPTO_HASH2=y |
988 | CONFIG_CRYPTO_RNG=m | ||
989 | CONFIG_CRYPTO_RNG2=y | ||
990 | CONFIG_CRYPTO_PCOMP=y | ||
958 | CONFIG_CRYPTO_MANAGER=y | 991 | CONFIG_CRYPTO_MANAGER=y |
992 | CONFIG_CRYPTO_MANAGER2=y | ||
959 | CONFIG_CRYPTO_GF128MUL=m | 993 | CONFIG_CRYPTO_GF128MUL=m |
960 | CONFIG_CRYPTO_NULL=m | 994 | CONFIG_CRYPTO_NULL=m |
995 | CONFIG_CRYPTO_WORKQUEUE=y | ||
961 | CONFIG_CRYPTO_CRYPTD=m | 996 | CONFIG_CRYPTO_CRYPTD=m |
962 | CONFIG_CRYPTO_AUTHENC=m | 997 | CONFIG_CRYPTO_AUTHENC=m |
963 | CONFIG_CRYPTO_TEST=m | 998 | CONFIG_CRYPTO_TEST=m |
@@ -1027,6 +1062,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1027 | # Compression | 1062 | # Compression |
1028 | # | 1063 | # |
1029 | CONFIG_CRYPTO_DEFLATE=m | 1064 | CONFIG_CRYPTO_DEFLATE=m |
1065 | CONFIG_CRYPTO_ZLIB=m | ||
1030 | CONFIG_CRYPTO_LZO=m | 1066 | CONFIG_CRYPTO_LZO=m |
1031 | 1067 | ||
1032 | # | 1068 | # |
@@ -1034,11 +1070,13 @@ CONFIG_CRYPTO_LZO=m | |||
1034 | # | 1070 | # |
1035 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1071 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1036 | # CONFIG_CRYPTO_HW is not set | 1072 | # CONFIG_CRYPTO_HW is not set |
1073 | # CONFIG_BINARY_PRINTF is not set | ||
1037 | 1074 | ||
1038 | # | 1075 | # |
1039 | # Library routines | 1076 | # Library routines |
1040 | # | 1077 | # |
1041 | CONFIG_BITREVERSE=y | 1078 | CONFIG_BITREVERSE=y |
1079 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1042 | CONFIG_CRC_CCITT=m | 1080 | CONFIG_CRC_CCITT=m |
1043 | CONFIG_CRC16=m | 1081 | CONFIG_CRC16=m |
1044 | CONFIG_CRC_T10DIF=y | 1082 | CONFIG_CRC_T10DIF=y |
@@ -1050,10 +1088,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1050 | CONFIG_ZLIB_DEFLATE=m | 1088 | CONFIG_ZLIB_DEFLATE=m |
1051 | CONFIG_LZO_COMPRESS=m | 1089 | CONFIG_LZO_COMPRESS=m |
1052 | CONFIG_LZO_DECOMPRESS=m | 1090 | CONFIG_LZO_DECOMPRESS=m |
1091 | CONFIG_DECOMPRESS_GZIP=y | ||
1092 | CONFIG_DECOMPRESS_BZIP2=y | ||
1093 | CONFIG_DECOMPRESS_LZMA=y | ||
1053 | CONFIG_TEXTSEARCH=y | 1094 | CONFIG_TEXTSEARCH=y |
1054 | CONFIG_TEXTSEARCH_KMP=m | 1095 | CONFIG_TEXTSEARCH_KMP=m |
1055 | CONFIG_TEXTSEARCH_BM=m | 1096 | CONFIG_TEXTSEARCH_BM=m |
1056 | CONFIG_TEXTSEARCH_FSM=m | 1097 | CONFIG_TEXTSEARCH_FSM=m |
1057 | CONFIG_PLIST=y | ||
1058 | CONFIG_HAS_IOMEM=y | 1098 | CONFIG_HAS_IOMEM=y |
1059 | CONFIG_HAS_DMA=y | 1099 | CONFIG_HAS_DMA=y |
1100 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/mvme16x_defconfig b/arch/m68k/configs/mvme16x_defconfig index 3403ed2eda79..890594fcacb3 100644 --- a/arch/m68k/configs/mvme16x_defconfig +++ b/arch/m68k/configs/mvme16x_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:51 2008 | 4 | # Wed Apr 22 20:48:10 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -143,12 +154,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
143 | CONFIG_NEED_MULTIPLE_NODES=y | 154 | CONFIG_NEED_MULTIPLE_NODES=y |
144 | CONFIG_PAGEFLAGS_EXTENDED=y | 155 | CONFIG_PAGEFLAGS_EXTENDED=y |
145 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 156 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
146 | # CONFIG_RESOURCES_64BIT is not set | ||
147 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 157 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
148 | CONFIG_ZONE_DMA_FLAG=1 | 158 | CONFIG_ZONE_DMA_FLAG=1 |
149 | CONFIG_BOUNCE=y | 159 | CONFIG_BOUNCE=y |
150 | CONFIG_VIRT_TO_BUS=y | 160 | CONFIG_VIRT_TO_BUS=y |
151 | CONFIG_UNEVICTABLE_LRU=y | 161 | CONFIG_UNEVICTABLE_LRU=y |
162 | CONFIG_HAVE_MLOCK=y | ||
163 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
152 | 164 | ||
153 | # | 165 | # |
154 | # General setup | 166 | # General setup |
@@ -258,6 +270,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
258 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 270 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
259 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
260 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 272 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
273 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
261 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 274 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
262 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 275 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
263 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 276 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -266,6 +279,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
266 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 279 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
267 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 280 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
268 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 281 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
282 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
269 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 283 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
270 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 284 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
271 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 285 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -276,6 +290,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
276 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 290 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
277 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 291 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 292 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
293 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 294 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
280 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 295 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
281 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 296 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -354,25 +369,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
354 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 369 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
355 | CONFIG_IP6_NF_MATCH_MH=m | 370 | CONFIG_IP6_NF_MATCH_MH=m |
356 | CONFIG_IP6_NF_MATCH_RT=m | 371 | CONFIG_IP6_NF_MATCH_RT=m |
372 | CONFIG_IP6_NF_TARGET_HL=m | ||
357 | CONFIG_IP6_NF_TARGET_LOG=m | 373 | CONFIG_IP6_NF_TARGET_LOG=m |
358 | CONFIG_IP6_NF_FILTER=m | 374 | CONFIG_IP6_NF_FILTER=m |
359 | CONFIG_IP6_NF_TARGET_REJECT=m | 375 | CONFIG_IP6_NF_TARGET_REJECT=m |
360 | CONFIG_IP6_NF_MANGLE=m | 376 | CONFIG_IP6_NF_MANGLE=m |
361 | CONFIG_IP6_NF_TARGET_HL=m | ||
362 | CONFIG_IP6_NF_RAW=m | 377 | CONFIG_IP6_NF_RAW=m |
363 | CONFIG_IP_DCCP=m | 378 | CONFIG_IP_DCCP=m |
364 | CONFIG_INET_DCCP_DIAG=m | 379 | CONFIG_INET_DCCP_DIAG=m |
365 | CONFIG_IP_DCCP_ACKVEC=y | ||
366 | 380 | ||
367 | # | 381 | # |
368 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 382 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
369 | # | 383 | # |
370 | CONFIG_IP_DCCP_CCID2=m | ||
371 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 384 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
372 | CONFIG_IP_DCCP_CCID3=m | 385 | # CONFIG_IP_DCCP_CCID3 is not set |
373 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
374 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
375 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
376 | CONFIG_IP_SCTP=m | 386 | CONFIG_IP_SCTP=m |
377 | # CONFIG_SCTP_DBG_MSG is not set | 387 | # CONFIG_SCTP_DBG_MSG is not set |
378 | # CONFIG_SCTP_DBG_OBJCNT is not set | 388 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -394,8 +404,10 @@ CONFIG_ATALK=m | |||
394 | # CONFIG_LAPB is not set | 404 | # CONFIG_LAPB is not set |
395 | # CONFIG_ECONET is not set | 405 | # CONFIG_ECONET is not set |
396 | # CONFIG_WAN_ROUTER is not set | 406 | # CONFIG_WAN_ROUTER is not set |
407 | # CONFIG_PHONET is not set | ||
397 | # CONFIG_NET_SCHED is not set | 408 | # CONFIG_NET_SCHED is not set |
398 | CONFIG_NET_CLS_ROUTE=y | 409 | CONFIG_NET_CLS_ROUTE=y |
410 | # CONFIG_DCB is not set | ||
399 | 411 | ||
400 | # | 412 | # |
401 | # Network testing | 413 | # Network testing |
@@ -406,8 +418,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
406 | # CONFIG_IRDA is not set | 418 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 419 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 420 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_PHONET is not set | ||
410 | # CONFIG_WIRELESS is not set | 421 | # CONFIG_WIRELESS is not set |
422 | # CONFIG_WIMAX is not set | ||
411 | # CONFIG_RFKILL is not set | 423 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 424 | # CONFIG_NET_9P is not set |
413 | 425 | ||
@@ -443,9 +455,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
443 | CONFIG_ATA_OVER_ETH=m | 455 | CONFIG_ATA_OVER_ETH=m |
444 | # CONFIG_BLK_DEV_HD is not set | 456 | # CONFIG_BLK_DEV_HD is not set |
445 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
446 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | # CONFIG_ENCLOSURE_SERVICES is not set | 458 | # CONFIG_ENCLOSURE_SERVICES is not set |
448 | # CONFIG_C2PORT is not set | 459 | # CONFIG_C2PORT is not set |
460 | |||
461 | # | ||
462 | # EEPROM support | ||
463 | # | ||
464 | # CONFIG_EEPROM_93CX6 is not set | ||
449 | CONFIG_HAVE_IDE=y | 465 | CONFIG_HAVE_IDE=y |
450 | # CONFIG_IDE is not set | 466 | # CONFIG_IDE is not set |
451 | 467 | ||
@@ -493,10 +509,13 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
493 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 509 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
494 | CONFIG_SCSI_LOWLEVEL=y | 510 | CONFIG_SCSI_LOWLEVEL=y |
495 | CONFIG_ISCSI_TCP=m | 511 | CONFIG_ISCSI_TCP=m |
512 | # CONFIG_LIBFC is not set | ||
513 | # CONFIG_LIBFCOE is not set | ||
496 | CONFIG_53C700_BE_BUS=y | 514 | CONFIG_53C700_BE_BUS=y |
497 | # CONFIG_SCSI_DEBUG is not set | 515 | # CONFIG_SCSI_DEBUG is not set |
498 | CONFIG_MVME16x_SCSI=y | 516 | CONFIG_MVME16x_SCSI=y |
499 | # CONFIG_SCSI_DH is not set | 517 | # CONFIG_SCSI_DH is not set |
518 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
500 | CONFIG_MD=y | 519 | CONFIG_MD=y |
501 | CONFIG_BLK_DEV_MD=m | 520 | CONFIG_BLK_DEV_MD=m |
502 | CONFIG_MD_LINEAR=m | 521 | CONFIG_MD_LINEAR=m |
@@ -504,7 +523,7 @@ CONFIG_MD_RAID0=m | |||
504 | CONFIG_MD_RAID1=m | 523 | CONFIG_MD_RAID1=m |
505 | # CONFIG_MD_RAID10 is not set | 524 | # CONFIG_MD_RAID10 is not set |
506 | CONFIG_MD_RAID456=m | 525 | CONFIG_MD_RAID456=m |
507 | CONFIG_MD_RAID5_RESHAPE=y | 526 | CONFIG_MD_RAID6_PQ=m |
508 | # CONFIG_MD_MULTIPATH is not set | 527 | # CONFIG_MD_MULTIPATH is not set |
509 | # CONFIG_MD_FAULTY is not set | 528 | # CONFIG_MD_FAULTY is not set |
510 | CONFIG_BLK_DEV_DM=m | 529 | CONFIG_BLK_DEV_DM=m |
@@ -517,6 +536,7 @@ CONFIG_DM_MULTIPATH=m | |||
517 | # CONFIG_DM_DELAY is not set | 536 | # CONFIG_DM_DELAY is not set |
518 | CONFIG_DM_UEVENT=y | 537 | CONFIG_DM_UEVENT=y |
519 | CONFIG_NETDEVICES=y | 538 | CONFIG_NETDEVICES=y |
539 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
520 | CONFIG_DUMMY=m | 540 | CONFIG_DUMMY=m |
521 | # CONFIG_BONDING is not set | 541 | # CONFIG_BONDING is not set |
522 | CONFIG_MACVLAN=m | 542 | CONFIG_MACVLAN=m |
@@ -527,6 +547,8 @@ CONFIG_VETH=m | |||
527 | CONFIG_NET_ETHERNET=y | 547 | CONFIG_NET_ETHERNET=y |
528 | # CONFIG_MII is not set | 548 | # CONFIG_MII is not set |
529 | CONFIG_MVME16x_NET=y | 549 | CONFIG_MVME16x_NET=y |
550 | # CONFIG_ETHOC is not set | ||
551 | # CONFIG_DNET is not set | ||
530 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 552 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
531 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 553 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
532 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 554 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -543,7 +565,10 @@ CONFIG_MVME16x_NET=y | |||
543 | # | 565 | # |
544 | # CONFIG_WLAN_PRE80211 is not set | 566 | # CONFIG_WLAN_PRE80211 is not set |
545 | # CONFIG_WLAN_80211 is not set | 567 | # CONFIG_WLAN_80211 is not set |
546 | # CONFIG_IWLWIFI_LEDS is not set | 568 | |
569 | # | ||
570 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
571 | # | ||
547 | # CONFIG_WAN is not set | 572 | # CONFIG_WAN is not set |
548 | CONFIG_PPP=m | 573 | CONFIG_PPP=m |
549 | # CONFIG_PPP_MULTILINK is not set | 574 | # CONFIG_PPP_MULTILINK is not set |
@@ -601,7 +626,6 @@ CONFIG_MOUSE_PS2=m | |||
601 | CONFIG_MOUSE_PS2_ALPS=y | 626 | CONFIG_MOUSE_PS2_ALPS=y |
602 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 627 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
603 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 628 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
604 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
605 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 629 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
606 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 630 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
607 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 631 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -641,6 +665,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
641 | # Non-8250 serial port support | 665 | # Non-8250 serial port support |
642 | # | 666 | # |
643 | CONFIG_UNIX98_PTYS=y | 667 | CONFIG_UNIX98_PTYS=y |
668 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
644 | CONFIG_LEGACY_PTYS=y | 669 | CONFIG_LEGACY_PTYS=y |
645 | CONFIG_LEGACY_PTY_COUNT=256 | 670 | CONFIG_LEGACY_PTY_COUNT=256 |
646 | # CONFIG_IPMI_HANDLER is not set | 671 | # CONFIG_IPMI_HANDLER is not set |
@@ -717,7 +742,6 @@ CONFIG_HIDRAW=y | |||
717 | # | 742 | # |
718 | # Special HID drivers | 743 | # Special HID drivers |
719 | # | 744 | # |
720 | CONFIG_HID_COMPAT=y | ||
721 | # CONFIG_USB_SUPPORT is not set | 745 | # CONFIG_USB_SUPPORT is not set |
722 | # CONFIG_MMC is not set | 746 | # CONFIG_MMC is not set |
723 | # CONFIG_MEMSTICK is not set | 747 | # CONFIG_MEMSTICK is not set |
@@ -725,9 +749,9 @@ CONFIG_HID_COMPAT=y | |||
725 | # CONFIG_ACCESSIBILITY is not set | 749 | # CONFIG_ACCESSIBILITY is not set |
726 | # CONFIG_RTC_CLASS is not set | 750 | # CONFIG_RTC_CLASS is not set |
727 | # CONFIG_DMADEVICES is not set | 751 | # CONFIG_DMADEVICES is not set |
752 | # CONFIG_AUXDISPLAY is not set | ||
728 | # CONFIG_UIO is not set | 753 | # CONFIG_UIO is not set |
729 | # CONFIG_STAGING is not set | 754 | # CONFIG_STAGING is not set |
730 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
731 | 755 | ||
732 | # | 756 | # |
733 | # Character devices | 757 | # Character devices |
@@ -743,6 +767,7 @@ CONFIG_EXT2_FS=y | |||
743 | # CONFIG_EXT2_FS_XATTR is not set | 767 | # CONFIG_EXT2_FS_XATTR is not set |
744 | # CONFIG_EXT2_FS_XIP is not set | 768 | # CONFIG_EXT2_FS_XIP is not set |
745 | CONFIG_EXT3_FS=y | 769 | CONFIG_EXT3_FS=y |
770 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
746 | # CONFIG_EXT3_FS_XATTR is not set | 771 | # CONFIG_EXT3_FS_XATTR is not set |
747 | # CONFIG_EXT4_FS is not set | 772 | # CONFIG_EXT4_FS is not set |
748 | CONFIG_JBD=y | 773 | CONFIG_JBD=y |
@@ -769,13 +794,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
769 | # CONFIG_OCFS2_FS_STATS is not set | 794 | # CONFIG_OCFS2_FS_STATS is not set |
770 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 795 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
771 | # CONFIG_OCFS2_DEBUG_FS is not set | 796 | # CONFIG_OCFS2_DEBUG_FS is not set |
772 | # CONFIG_OCFS2_COMPAT_JBD is not set | 797 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
798 | # CONFIG_BTRFS_FS is not set | ||
773 | CONFIG_DNOTIFY=y | 799 | CONFIG_DNOTIFY=y |
774 | CONFIG_INOTIFY=y | 800 | CONFIG_INOTIFY=y |
775 | CONFIG_INOTIFY_USER=y | 801 | CONFIG_INOTIFY_USER=y |
776 | CONFIG_QUOTA=y | 802 | CONFIG_QUOTA=y |
777 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 803 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
778 | # CONFIG_PRINT_QUOTA_WARNING is not set | 804 | # CONFIG_PRINT_QUOTA_WARNING is not set |
805 | CONFIG_QUOTA_TREE=m | ||
779 | # CONFIG_QFMT_V1 is not set | 806 | # CONFIG_QFMT_V1 is not set |
780 | # CONFIG_QFMT_V2 is not set | 807 | # CONFIG_QFMT_V2 is not set |
781 | CONFIG_QUOTACTL=y | 808 | CONFIG_QUOTACTL=y |
@@ -784,6 +811,11 @@ CONFIG_AUTOFS4_FS=m | |||
784 | CONFIG_FUSE_FS=m | 811 | CONFIG_FUSE_FS=m |
785 | 812 | ||
786 | # | 813 | # |
814 | # Caches | ||
815 | # | ||
816 | # CONFIG_FSCACHE is not set | ||
817 | |||
818 | # | ||
787 | # CD-ROM/DVD Filesystems | 819 | # CD-ROM/DVD Filesystems |
788 | # | 820 | # |
789 | CONFIG_ISO9660_FS=y | 821 | CONFIG_ISO9660_FS=y |
@@ -814,10 +846,7 @@ CONFIG_TMPFS=y | |||
814 | # CONFIG_TMPFS_POSIX_ACL is not set | 846 | # CONFIG_TMPFS_POSIX_ACL is not set |
815 | # CONFIG_HUGETLB_PAGE is not set | 847 | # CONFIG_HUGETLB_PAGE is not set |
816 | CONFIG_CONFIGFS_FS=m | 848 | CONFIG_CONFIGFS_FS=m |
817 | 849 | CONFIG_MISC_FILESYSTEMS=y | |
818 | # | ||
819 | # Miscellaneous filesystems | ||
820 | # | ||
821 | # CONFIG_ADFS_FS is not set | 850 | # CONFIG_ADFS_FS is not set |
822 | CONFIG_AFFS_FS=m | 851 | CONFIG_AFFS_FS=m |
823 | CONFIG_HFS_FS=m | 852 | CONFIG_HFS_FS=m |
@@ -826,6 +855,9 @@ CONFIG_HFSPLUS_FS=m | |||
826 | # CONFIG_BFS_FS is not set | 855 | # CONFIG_BFS_FS is not set |
827 | # CONFIG_EFS_FS is not set | 856 | # CONFIG_EFS_FS is not set |
828 | CONFIG_CRAMFS=m | 857 | CONFIG_CRAMFS=m |
858 | CONFIG_SQUASHFS=m | ||
859 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
860 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
829 | # CONFIG_VXFS_FS is not set | 861 | # CONFIG_VXFS_FS is not set |
830 | CONFIG_MINIX_FS=y | 862 | CONFIG_MINIX_FS=y |
831 | # CONFIG_OMFS_FS is not set | 863 | # CONFIG_OMFS_FS is not set |
@@ -836,6 +868,7 @@ CONFIG_SYSV_FS=m | |||
836 | CONFIG_UFS_FS=m | 868 | CONFIG_UFS_FS=m |
837 | # CONFIG_UFS_FS_WRITE is not set | 869 | # CONFIG_UFS_FS_WRITE is not set |
838 | # CONFIG_UFS_DEBUG is not set | 870 | # CONFIG_UFS_DEBUG is not set |
871 | # CONFIG_NILFS2_FS is not set | ||
839 | CONFIG_NETWORK_FILESYSTEMS=y | 872 | CONFIG_NETWORK_FILESYSTEMS=y |
840 | CONFIG_NFS_FS=y | 873 | CONFIG_NFS_FS=y |
841 | CONFIG_NFS_V3=y | 874 | CONFIG_NFS_V3=y |
@@ -852,7 +885,6 @@ CONFIG_EXPORTFS=m | |||
852 | CONFIG_NFS_COMMON=y | 885 | CONFIG_NFS_COMMON=y |
853 | CONFIG_SUNRPC=y | 886 | CONFIG_SUNRPC=y |
854 | CONFIG_SUNRPC_GSS=y | 887 | CONFIG_SUNRPC_GSS=y |
855 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
856 | CONFIG_RPCSEC_GSS_KRB5=y | 888 | CONFIG_RPCSEC_GSS_KRB5=y |
857 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 889 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
858 | CONFIG_SMB_FS=m | 890 | CONFIG_SMB_FS=m |
@@ -928,11 +960,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
928 | CONFIG_DEBUG_MEMORY_INIT=y | 960 | CONFIG_DEBUG_MEMORY_INIT=y |
929 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 961 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
930 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 962 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
931 | |||
932 | # | ||
933 | # Tracers | ||
934 | # | ||
935 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
936 | # CONFIG_SAMPLES is not set | 963 | # CONFIG_SAMPLES is not set |
937 | 964 | ||
938 | # | 965 | # |
@@ -953,13 +980,21 @@ CONFIG_CRYPTO=y | |||
953 | # | 980 | # |
954 | # CONFIG_CRYPTO_FIPS is not set | 981 | # CONFIG_CRYPTO_FIPS is not set |
955 | CONFIG_CRYPTO_ALGAPI=y | 982 | CONFIG_CRYPTO_ALGAPI=y |
956 | CONFIG_CRYPTO_AEAD=y | 983 | CONFIG_CRYPTO_ALGAPI2=y |
984 | CONFIG_CRYPTO_AEAD=m | ||
985 | CONFIG_CRYPTO_AEAD2=y | ||
957 | CONFIG_CRYPTO_BLKCIPHER=y | 986 | CONFIG_CRYPTO_BLKCIPHER=y |
987 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
958 | CONFIG_CRYPTO_HASH=y | 988 | CONFIG_CRYPTO_HASH=y |
959 | CONFIG_CRYPTO_RNG=y | 989 | CONFIG_CRYPTO_HASH2=y |
990 | CONFIG_CRYPTO_RNG=m | ||
991 | CONFIG_CRYPTO_RNG2=y | ||
992 | CONFIG_CRYPTO_PCOMP=y | ||
960 | CONFIG_CRYPTO_MANAGER=y | 993 | CONFIG_CRYPTO_MANAGER=y |
994 | CONFIG_CRYPTO_MANAGER2=y | ||
961 | CONFIG_CRYPTO_GF128MUL=m | 995 | CONFIG_CRYPTO_GF128MUL=m |
962 | CONFIG_CRYPTO_NULL=m | 996 | CONFIG_CRYPTO_NULL=m |
997 | CONFIG_CRYPTO_WORKQUEUE=y | ||
963 | CONFIG_CRYPTO_CRYPTD=m | 998 | CONFIG_CRYPTO_CRYPTD=m |
964 | CONFIG_CRYPTO_AUTHENC=m | 999 | CONFIG_CRYPTO_AUTHENC=m |
965 | CONFIG_CRYPTO_TEST=m | 1000 | CONFIG_CRYPTO_TEST=m |
@@ -1029,6 +1064,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1029 | # Compression | 1064 | # Compression |
1030 | # | 1065 | # |
1031 | CONFIG_CRYPTO_DEFLATE=m | 1066 | CONFIG_CRYPTO_DEFLATE=m |
1067 | CONFIG_CRYPTO_ZLIB=m | ||
1032 | CONFIG_CRYPTO_LZO=m | 1068 | CONFIG_CRYPTO_LZO=m |
1033 | 1069 | ||
1034 | # | 1070 | # |
@@ -1036,11 +1072,13 @@ CONFIG_CRYPTO_LZO=m | |||
1036 | # | 1072 | # |
1037 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1073 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1038 | # CONFIG_CRYPTO_HW is not set | 1074 | # CONFIG_CRYPTO_HW is not set |
1075 | # CONFIG_BINARY_PRINTF is not set | ||
1039 | 1076 | ||
1040 | # | 1077 | # |
1041 | # Library routines | 1078 | # Library routines |
1042 | # | 1079 | # |
1043 | CONFIG_BITREVERSE=y | 1080 | CONFIG_BITREVERSE=y |
1081 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1044 | CONFIG_CRC_CCITT=m | 1082 | CONFIG_CRC_CCITT=m |
1045 | CONFIG_CRC16=m | 1083 | CONFIG_CRC16=m |
1046 | CONFIG_CRC_T10DIF=y | 1084 | CONFIG_CRC_T10DIF=y |
@@ -1052,10 +1090,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1052 | CONFIG_ZLIB_DEFLATE=m | 1090 | CONFIG_ZLIB_DEFLATE=m |
1053 | CONFIG_LZO_COMPRESS=m | 1091 | CONFIG_LZO_COMPRESS=m |
1054 | CONFIG_LZO_DECOMPRESS=m | 1092 | CONFIG_LZO_DECOMPRESS=m |
1093 | CONFIG_DECOMPRESS_GZIP=y | ||
1094 | CONFIG_DECOMPRESS_BZIP2=y | ||
1095 | CONFIG_DECOMPRESS_LZMA=y | ||
1055 | CONFIG_TEXTSEARCH=y | 1096 | CONFIG_TEXTSEARCH=y |
1056 | CONFIG_TEXTSEARCH_KMP=m | 1097 | CONFIG_TEXTSEARCH_KMP=m |
1057 | CONFIG_TEXTSEARCH_BM=m | 1098 | CONFIG_TEXTSEARCH_BM=m |
1058 | CONFIG_TEXTSEARCH_FSM=m | 1099 | CONFIG_TEXTSEARCH_FSM=m |
1059 | CONFIG_PLIST=y | ||
1060 | CONFIG_HAS_IOMEM=y | 1100 | CONFIG_HAS_IOMEM=y |
1061 | CONFIG_HAS_DMA=y | 1101 | CONFIG_HAS_DMA=y |
1102 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/q40_defconfig b/arch/m68k/configs/q40_defconfig index 3459c594194b..7cf58c27ff84 100644 --- a/arch/m68k/configs/q40_defconfig +++ b/arch/m68k/configs/q40_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:52 2008 | 4 | # Wed Apr 22 20:48:13 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -140,12 +151,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
140 | CONFIG_NEED_MULTIPLE_NODES=y | 151 | CONFIG_NEED_MULTIPLE_NODES=y |
141 | CONFIG_PAGEFLAGS_EXTENDED=y | 152 | CONFIG_PAGEFLAGS_EXTENDED=y |
142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 153 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
143 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 154 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
145 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
146 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
147 | CONFIG_VIRT_TO_BUS=y | 157 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 158 | CONFIG_UNEVICTABLE_LRU=y |
159 | CONFIG_HAVE_MLOCK=y | ||
160 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
149 | 161 | ||
150 | # | 162 | # |
151 | # General setup | 163 | # General setup |
@@ -255,6 +267,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
255 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 267 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
256 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 268 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
257 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 269 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
270 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
258 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
259 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 272 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
260 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 273 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -263,6 +276,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
263 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 276 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
264 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 277 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
265 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 278 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
279 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
266 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 280 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
267 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 281 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
268 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 282 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -273,6 +287,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
273 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 287 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
274 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 288 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
275 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 289 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
290 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
276 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 291 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
277 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 292 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
278 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 293 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -351,25 +366,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
351 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 366 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
352 | CONFIG_IP6_NF_MATCH_MH=m | 367 | CONFIG_IP6_NF_MATCH_MH=m |
353 | CONFIG_IP6_NF_MATCH_RT=m | 368 | CONFIG_IP6_NF_MATCH_RT=m |
369 | CONFIG_IP6_NF_TARGET_HL=m | ||
354 | CONFIG_IP6_NF_TARGET_LOG=m | 370 | CONFIG_IP6_NF_TARGET_LOG=m |
355 | CONFIG_IP6_NF_FILTER=m | 371 | CONFIG_IP6_NF_FILTER=m |
356 | CONFIG_IP6_NF_TARGET_REJECT=m | 372 | CONFIG_IP6_NF_TARGET_REJECT=m |
357 | CONFIG_IP6_NF_MANGLE=m | 373 | CONFIG_IP6_NF_MANGLE=m |
358 | CONFIG_IP6_NF_TARGET_HL=m | ||
359 | CONFIG_IP6_NF_RAW=m | 374 | CONFIG_IP6_NF_RAW=m |
360 | CONFIG_IP_DCCP=m | 375 | CONFIG_IP_DCCP=m |
361 | CONFIG_INET_DCCP_DIAG=m | 376 | CONFIG_INET_DCCP_DIAG=m |
362 | CONFIG_IP_DCCP_ACKVEC=y | ||
363 | 377 | ||
364 | # | 378 | # |
365 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 379 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
366 | # | 380 | # |
367 | CONFIG_IP_DCCP_CCID2=m | ||
368 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 381 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
369 | CONFIG_IP_DCCP_CCID3=m | 382 | # CONFIG_IP_DCCP_CCID3 is not set |
370 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
371 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
372 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
373 | CONFIG_IP_SCTP=m | 383 | CONFIG_IP_SCTP=m |
374 | # CONFIG_SCTP_DBG_MSG is not set | 384 | # CONFIG_SCTP_DBG_MSG is not set |
375 | # CONFIG_SCTP_DBG_OBJCNT is not set | 385 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -391,8 +401,10 @@ CONFIG_ATALK=m | |||
391 | # CONFIG_LAPB is not set | 401 | # CONFIG_LAPB is not set |
392 | # CONFIG_ECONET is not set | 402 | # CONFIG_ECONET is not set |
393 | # CONFIG_WAN_ROUTER is not set | 403 | # CONFIG_WAN_ROUTER is not set |
404 | # CONFIG_PHONET is not set | ||
394 | # CONFIG_NET_SCHED is not set | 405 | # CONFIG_NET_SCHED is not set |
395 | CONFIG_NET_CLS_ROUTE=y | 406 | CONFIG_NET_CLS_ROUTE=y |
407 | # CONFIG_DCB is not set | ||
396 | 408 | ||
397 | # | 409 | # |
398 | # Network testing | 410 | # Network testing |
@@ -403,8 +415,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
403 | # CONFIG_IRDA is not set | 415 | # CONFIG_IRDA is not set |
404 | # CONFIG_BT is not set | 416 | # CONFIG_BT is not set |
405 | # CONFIG_AF_RXRPC is not set | 417 | # CONFIG_AF_RXRPC is not set |
406 | # CONFIG_PHONET is not set | ||
407 | # CONFIG_WIRELESS is not set | 418 | # CONFIG_WIRELESS is not set |
419 | # CONFIG_WIMAX is not set | ||
408 | # CONFIG_RFKILL is not set | 420 | # CONFIG_RFKILL is not set |
409 | # CONFIG_NET_9P is not set | 421 | # CONFIG_NET_9P is not set |
410 | 422 | ||
@@ -441,15 +453,20 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
441 | CONFIG_ATA_OVER_ETH=m | 453 | CONFIG_ATA_OVER_ETH=m |
442 | # CONFIG_BLK_DEV_HD is not set | 454 | # CONFIG_BLK_DEV_HD is not set |
443 | CONFIG_MISC_DEVICES=y | 455 | CONFIG_MISC_DEVICES=y |
444 | # CONFIG_EEPROM_93CX6 is not set | ||
445 | # CONFIG_ENCLOSURE_SERVICES is not set | 456 | # CONFIG_ENCLOSURE_SERVICES is not set |
446 | # CONFIG_C2PORT is not set | 457 | # CONFIG_C2PORT is not set |
458 | |||
459 | # | ||
460 | # EEPROM support | ||
461 | # | ||
462 | # CONFIG_EEPROM_93CX6 is not set | ||
447 | CONFIG_HAVE_IDE=y | 463 | CONFIG_HAVE_IDE=y |
448 | CONFIG_IDE=y | 464 | CONFIG_IDE=y |
449 | 465 | ||
450 | # | 466 | # |
451 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 467 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
452 | # | 468 | # |
469 | CONFIG_IDE_ATAPI=y | ||
453 | # CONFIG_BLK_DEV_IDE_SATA is not set | 470 | # CONFIG_BLK_DEV_IDE_SATA is not set |
454 | CONFIG_IDE_GD=y | 471 | CONFIG_IDE_GD=y |
455 | CONFIG_IDE_GD_ATA=y | 472 | CONFIG_IDE_GD_ATA=y |
@@ -457,7 +474,6 @@ CONFIG_IDE_GD_ATA=y | |||
457 | CONFIG_BLK_DEV_IDECD=y | 474 | CONFIG_BLK_DEV_IDECD=y |
458 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 475 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
459 | # CONFIG_BLK_DEV_IDETAPE is not set | 476 | # CONFIG_BLK_DEV_IDETAPE is not set |
460 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
461 | # CONFIG_IDE_TASK_IOCTL is not set | 477 | # CONFIG_IDE_TASK_IOCTL is not set |
462 | CONFIG_IDE_PROC_FS=y | 478 | CONFIG_IDE_PROC_FS=y |
463 | 479 | ||
@@ -516,6 +532,8 @@ CONFIG_ISCSI_TCP=m | |||
516 | # CONFIG_SCSI_AIC7XXX_OLD is not set | 532 | # CONFIG_SCSI_AIC7XXX_OLD is not set |
517 | # CONFIG_SCSI_ADVANSYS is not set | 533 | # CONFIG_SCSI_ADVANSYS is not set |
518 | # CONFIG_SCSI_IN2000 is not set | 534 | # CONFIG_SCSI_IN2000 is not set |
535 | # CONFIG_LIBFC is not set | ||
536 | # CONFIG_LIBFCOE is not set | ||
519 | # CONFIG_SCSI_DTC3280 is not set | 537 | # CONFIG_SCSI_DTC3280 is not set |
520 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 538 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
521 | # CONFIG_SCSI_GENERIC_NCR5380 is not set | 539 | # CONFIG_SCSI_GENERIC_NCR5380 is not set |
@@ -527,6 +545,7 @@ CONFIG_ISCSI_TCP=m | |||
527 | # CONFIG_SCSI_T128 is not set | 545 | # CONFIG_SCSI_T128 is not set |
528 | # CONFIG_SCSI_DEBUG is not set | 546 | # CONFIG_SCSI_DEBUG is not set |
529 | # CONFIG_SCSI_DH is not set | 547 | # CONFIG_SCSI_DH is not set |
548 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
530 | CONFIG_MD=y | 549 | CONFIG_MD=y |
531 | CONFIG_BLK_DEV_MD=m | 550 | CONFIG_BLK_DEV_MD=m |
532 | CONFIG_MD_LINEAR=m | 551 | CONFIG_MD_LINEAR=m |
@@ -534,7 +553,7 @@ CONFIG_MD_RAID0=m | |||
534 | CONFIG_MD_RAID1=m | 553 | CONFIG_MD_RAID1=m |
535 | # CONFIG_MD_RAID10 is not set | 554 | # CONFIG_MD_RAID10 is not set |
536 | CONFIG_MD_RAID456=m | 555 | CONFIG_MD_RAID456=m |
537 | CONFIG_MD_RAID5_RESHAPE=y | 556 | CONFIG_MD_RAID6_PQ=m |
538 | # CONFIG_MD_MULTIPATH is not set | 557 | # CONFIG_MD_MULTIPATH is not set |
539 | # CONFIG_MD_FAULTY is not set | 558 | # CONFIG_MD_FAULTY is not set |
540 | CONFIG_BLK_DEV_DM=m | 559 | CONFIG_BLK_DEV_DM=m |
@@ -547,6 +566,7 @@ CONFIG_DM_MULTIPATH=m | |||
547 | # CONFIG_DM_DELAY is not set | 566 | # CONFIG_DM_DELAY is not set |
548 | CONFIG_DM_UEVENT=y | 567 | CONFIG_DM_UEVENT=y |
549 | CONFIG_NETDEVICES=y | 568 | CONFIG_NETDEVICES=y |
569 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
550 | CONFIG_DUMMY=m | 570 | CONFIG_DUMMY=m |
551 | # CONFIG_BONDING is not set | 571 | # CONFIG_BONDING is not set |
552 | CONFIG_MACVLAN=m | 572 | CONFIG_MACVLAN=m |
@@ -559,7 +579,9 @@ CONFIG_NET_ETHERNET=y | |||
559 | # CONFIG_MII is not set | 579 | # CONFIG_MII is not set |
560 | # CONFIG_NET_VENDOR_3COM is not set | 580 | # CONFIG_NET_VENDOR_3COM is not set |
561 | # CONFIG_NET_VENDOR_SMC is not set | 581 | # CONFIG_NET_VENDOR_SMC is not set |
582 | # CONFIG_ETHOC is not set | ||
562 | # CONFIG_NET_VENDOR_RACAL is not set | 583 | # CONFIG_NET_VENDOR_RACAL is not set |
584 | # CONFIG_DNET is not set | ||
563 | # CONFIG_AT1700 is not set | 585 | # CONFIG_AT1700 is not set |
564 | # CONFIG_DEPCA is not set | 586 | # CONFIG_DEPCA is not set |
565 | # CONFIG_HP100 is not set | 587 | # CONFIG_HP100 is not set |
@@ -584,7 +606,10 @@ CONFIG_NE2000=m | |||
584 | # | 606 | # |
585 | # CONFIG_WLAN_PRE80211 is not set | 607 | # CONFIG_WLAN_PRE80211 is not set |
586 | # CONFIG_WLAN_80211 is not set | 608 | # CONFIG_WLAN_80211 is not set |
587 | # CONFIG_IWLWIFI_LEDS is not set | 609 | |
610 | # | ||
611 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
612 | # | ||
588 | # CONFIG_WAN is not set | 613 | # CONFIG_WAN is not set |
589 | CONFIG_PPP=m | 614 | CONFIG_PPP=m |
590 | # CONFIG_PPP_MULTILINK is not set | 615 | # CONFIG_PPP_MULTILINK is not set |
@@ -642,7 +667,6 @@ CONFIG_MOUSE_PS2=m | |||
642 | CONFIG_MOUSE_PS2_ALPS=y | 667 | CONFIG_MOUSE_PS2_ALPS=y |
643 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 668 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
644 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 669 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
645 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
646 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 670 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
647 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 671 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
648 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 672 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -688,6 +712,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
688 | # Non-8250 serial port support | 712 | # Non-8250 serial port support |
689 | # | 713 | # |
690 | CONFIG_UNIX98_PTYS=y | 714 | CONFIG_UNIX98_PTYS=y |
715 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
691 | CONFIG_LEGACY_PTYS=y | 716 | CONFIG_LEGACY_PTYS=y |
692 | CONFIG_LEGACY_PTY_COUNT=256 | 717 | CONFIG_LEGACY_PTY_COUNT=256 |
693 | # CONFIG_IPMI_HANDLER is not set | 718 | # CONFIG_IPMI_HANDLER is not set |
@@ -771,6 +796,7 @@ CONFIG_FB_Q40=y | |||
771 | # CONFIG_FB_VIRTUAL is not set | 796 | # CONFIG_FB_VIRTUAL is not set |
772 | # CONFIG_FB_METRONOME is not set | 797 | # CONFIG_FB_METRONOME is not set |
773 | # CONFIG_FB_MB862XX is not set | 798 | # CONFIG_FB_MB862XX is not set |
799 | # CONFIG_FB_BROADSHEET is not set | ||
774 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 800 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
775 | 801 | ||
776 | # | 802 | # |
@@ -805,7 +831,6 @@ CONFIG_HIDRAW=y | |||
805 | # | 831 | # |
806 | # Special HID drivers | 832 | # Special HID drivers |
807 | # | 833 | # |
808 | CONFIG_HID_COMPAT=y | ||
809 | # CONFIG_USB_SUPPORT is not set | 834 | # CONFIG_USB_SUPPORT is not set |
810 | # CONFIG_MMC is not set | 835 | # CONFIG_MMC is not set |
811 | # CONFIG_MEMSTICK is not set | 836 | # CONFIG_MEMSTICK is not set |
@@ -813,9 +838,9 @@ CONFIG_HID_COMPAT=y | |||
813 | # CONFIG_ACCESSIBILITY is not set | 838 | # CONFIG_ACCESSIBILITY is not set |
814 | # CONFIG_RTC_CLASS is not set | 839 | # CONFIG_RTC_CLASS is not set |
815 | # CONFIG_DMADEVICES is not set | 840 | # CONFIG_DMADEVICES is not set |
841 | # CONFIG_AUXDISPLAY is not set | ||
816 | # CONFIG_UIO is not set | 842 | # CONFIG_UIO is not set |
817 | # CONFIG_STAGING is not set | 843 | # CONFIG_STAGING is not set |
818 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
819 | 844 | ||
820 | # | 845 | # |
821 | # Character devices | 846 | # Character devices |
@@ -828,6 +853,7 @@ CONFIG_EXT2_FS=y | |||
828 | # CONFIG_EXT2_FS_XATTR is not set | 853 | # CONFIG_EXT2_FS_XATTR is not set |
829 | # CONFIG_EXT2_FS_XIP is not set | 854 | # CONFIG_EXT2_FS_XIP is not set |
830 | CONFIG_EXT3_FS=y | 855 | CONFIG_EXT3_FS=y |
856 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
831 | # CONFIG_EXT3_FS_XATTR is not set | 857 | # CONFIG_EXT3_FS_XATTR is not set |
832 | # CONFIG_EXT4_FS is not set | 858 | # CONFIG_EXT4_FS is not set |
833 | CONFIG_JBD=y | 859 | CONFIG_JBD=y |
@@ -854,13 +880,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
854 | # CONFIG_OCFS2_FS_STATS is not set | 880 | # CONFIG_OCFS2_FS_STATS is not set |
855 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 881 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
856 | # CONFIG_OCFS2_DEBUG_FS is not set | 882 | # CONFIG_OCFS2_DEBUG_FS is not set |
857 | # CONFIG_OCFS2_COMPAT_JBD is not set | 883 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
884 | # CONFIG_BTRFS_FS is not set | ||
858 | CONFIG_DNOTIFY=y | 885 | CONFIG_DNOTIFY=y |
859 | CONFIG_INOTIFY=y | 886 | CONFIG_INOTIFY=y |
860 | CONFIG_INOTIFY_USER=y | 887 | CONFIG_INOTIFY_USER=y |
861 | CONFIG_QUOTA=y | 888 | CONFIG_QUOTA=y |
862 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 889 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
863 | # CONFIG_PRINT_QUOTA_WARNING is not set | 890 | # CONFIG_PRINT_QUOTA_WARNING is not set |
891 | CONFIG_QUOTA_TREE=m | ||
864 | # CONFIG_QFMT_V1 is not set | 892 | # CONFIG_QFMT_V1 is not set |
865 | # CONFIG_QFMT_V2 is not set | 893 | # CONFIG_QFMT_V2 is not set |
866 | CONFIG_QUOTACTL=y | 894 | CONFIG_QUOTACTL=y |
@@ -869,6 +897,11 @@ CONFIG_AUTOFS4_FS=m | |||
869 | CONFIG_FUSE_FS=m | 897 | CONFIG_FUSE_FS=m |
870 | 898 | ||
871 | # | 899 | # |
900 | # Caches | ||
901 | # | ||
902 | # CONFIG_FSCACHE is not set | ||
903 | |||
904 | # | ||
872 | # CD-ROM/DVD Filesystems | 905 | # CD-ROM/DVD Filesystems |
873 | # | 906 | # |
874 | CONFIG_ISO9660_FS=y | 907 | CONFIG_ISO9660_FS=y |
@@ -899,10 +932,7 @@ CONFIG_TMPFS=y | |||
899 | # CONFIG_TMPFS_POSIX_ACL is not set | 932 | # CONFIG_TMPFS_POSIX_ACL is not set |
900 | # CONFIG_HUGETLB_PAGE is not set | 933 | # CONFIG_HUGETLB_PAGE is not set |
901 | CONFIG_CONFIGFS_FS=m | 934 | CONFIG_CONFIGFS_FS=m |
902 | 935 | CONFIG_MISC_FILESYSTEMS=y | |
903 | # | ||
904 | # Miscellaneous filesystems | ||
905 | # | ||
906 | # CONFIG_ADFS_FS is not set | 936 | # CONFIG_ADFS_FS is not set |
907 | CONFIG_AFFS_FS=m | 937 | CONFIG_AFFS_FS=m |
908 | CONFIG_HFS_FS=m | 938 | CONFIG_HFS_FS=m |
@@ -911,6 +941,9 @@ CONFIG_HFSPLUS_FS=m | |||
911 | # CONFIG_BFS_FS is not set | 941 | # CONFIG_BFS_FS is not set |
912 | # CONFIG_EFS_FS is not set | 942 | # CONFIG_EFS_FS is not set |
913 | CONFIG_CRAMFS=m | 943 | CONFIG_CRAMFS=m |
944 | CONFIG_SQUASHFS=m | ||
945 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
946 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
914 | # CONFIG_VXFS_FS is not set | 947 | # CONFIG_VXFS_FS is not set |
915 | CONFIG_MINIX_FS=y | 948 | CONFIG_MINIX_FS=y |
916 | # CONFIG_OMFS_FS is not set | 949 | # CONFIG_OMFS_FS is not set |
@@ -921,6 +954,7 @@ CONFIG_SYSV_FS=m | |||
921 | CONFIG_UFS_FS=m | 954 | CONFIG_UFS_FS=m |
922 | # CONFIG_UFS_FS_WRITE is not set | 955 | # CONFIG_UFS_FS_WRITE is not set |
923 | # CONFIG_UFS_DEBUG is not set | 956 | # CONFIG_UFS_DEBUG is not set |
957 | # CONFIG_NILFS2_FS is not set | ||
924 | CONFIG_NETWORK_FILESYSTEMS=y | 958 | CONFIG_NETWORK_FILESYSTEMS=y |
925 | CONFIG_NFS_FS=y | 959 | CONFIG_NFS_FS=y |
926 | CONFIG_NFS_V3=y | 960 | CONFIG_NFS_V3=y |
@@ -936,7 +970,6 @@ CONFIG_EXPORTFS=m | |||
936 | CONFIG_NFS_COMMON=y | 970 | CONFIG_NFS_COMMON=y |
937 | CONFIG_SUNRPC=y | 971 | CONFIG_SUNRPC=y |
938 | CONFIG_SUNRPC_GSS=y | 972 | CONFIG_SUNRPC_GSS=y |
939 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
940 | CONFIG_RPCSEC_GSS_KRB5=y | 973 | CONFIG_RPCSEC_GSS_KRB5=y |
941 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 974 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
942 | CONFIG_SMB_FS=m | 975 | CONFIG_SMB_FS=m |
@@ -1011,11 +1044,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1011 | CONFIG_DEBUG_MEMORY_INIT=y | 1044 | CONFIG_DEBUG_MEMORY_INIT=y |
1012 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1045 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1013 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1046 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1014 | |||
1015 | # | ||
1016 | # Tracers | ||
1017 | # | ||
1018 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1019 | # CONFIG_SAMPLES is not set | 1047 | # CONFIG_SAMPLES is not set |
1020 | 1048 | ||
1021 | # | 1049 | # |
@@ -1036,13 +1064,21 @@ CONFIG_CRYPTO=y | |||
1036 | # | 1064 | # |
1037 | # CONFIG_CRYPTO_FIPS is not set | 1065 | # CONFIG_CRYPTO_FIPS is not set |
1038 | CONFIG_CRYPTO_ALGAPI=y | 1066 | CONFIG_CRYPTO_ALGAPI=y |
1039 | CONFIG_CRYPTO_AEAD=y | 1067 | CONFIG_CRYPTO_ALGAPI2=y |
1068 | CONFIG_CRYPTO_AEAD=m | ||
1069 | CONFIG_CRYPTO_AEAD2=y | ||
1040 | CONFIG_CRYPTO_BLKCIPHER=y | 1070 | CONFIG_CRYPTO_BLKCIPHER=y |
1071 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1041 | CONFIG_CRYPTO_HASH=y | 1072 | CONFIG_CRYPTO_HASH=y |
1042 | CONFIG_CRYPTO_RNG=y | 1073 | CONFIG_CRYPTO_HASH2=y |
1074 | CONFIG_CRYPTO_RNG=m | ||
1075 | CONFIG_CRYPTO_RNG2=y | ||
1076 | CONFIG_CRYPTO_PCOMP=y | ||
1043 | CONFIG_CRYPTO_MANAGER=y | 1077 | CONFIG_CRYPTO_MANAGER=y |
1078 | CONFIG_CRYPTO_MANAGER2=y | ||
1044 | CONFIG_CRYPTO_GF128MUL=m | 1079 | CONFIG_CRYPTO_GF128MUL=m |
1045 | CONFIG_CRYPTO_NULL=m | 1080 | CONFIG_CRYPTO_NULL=m |
1081 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1046 | CONFIG_CRYPTO_CRYPTD=m | 1082 | CONFIG_CRYPTO_CRYPTD=m |
1047 | CONFIG_CRYPTO_AUTHENC=m | 1083 | CONFIG_CRYPTO_AUTHENC=m |
1048 | CONFIG_CRYPTO_TEST=m | 1084 | CONFIG_CRYPTO_TEST=m |
@@ -1112,6 +1148,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1112 | # Compression | 1148 | # Compression |
1113 | # | 1149 | # |
1114 | CONFIG_CRYPTO_DEFLATE=m | 1150 | CONFIG_CRYPTO_DEFLATE=m |
1151 | CONFIG_CRYPTO_ZLIB=m | ||
1115 | CONFIG_CRYPTO_LZO=m | 1152 | CONFIG_CRYPTO_LZO=m |
1116 | 1153 | ||
1117 | # | 1154 | # |
@@ -1119,11 +1156,13 @@ CONFIG_CRYPTO_LZO=m | |||
1119 | # | 1156 | # |
1120 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1157 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1121 | # CONFIG_CRYPTO_HW is not set | 1158 | # CONFIG_CRYPTO_HW is not set |
1159 | # CONFIG_BINARY_PRINTF is not set | ||
1122 | 1160 | ||
1123 | # | 1161 | # |
1124 | # Library routines | 1162 | # Library routines |
1125 | # | 1163 | # |
1126 | CONFIG_BITREVERSE=y | 1164 | CONFIG_BITREVERSE=y |
1165 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1127 | CONFIG_CRC_CCITT=m | 1166 | CONFIG_CRC_CCITT=m |
1128 | CONFIG_CRC16=m | 1167 | CONFIG_CRC16=m |
1129 | CONFIG_CRC_T10DIF=y | 1168 | CONFIG_CRC_T10DIF=y |
@@ -1135,10 +1174,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1135 | CONFIG_ZLIB_DEFLATE=m | 1174 | CONFIG_ZLIB_DEFLATE=m |
1136 | CONFIG_LZO_COMPRESS=m | 1175 | CONFIG_LZO_COMPRESS=m |
1137 | CONFIG_LZO_DECOMPRESS=m | 1176 | CONFIG_LZO_DECOMPRESS=m |
1177 | CONFIG_DECOMPRESS_GZIP=y | ||
1178 | CONFIG_DECOMPRESS_BZIP2=y | ||
1179 | CONFIG_DECOMPRESS_LZMA=y | ||
1138 | CONFIG_TEXTSEARCH=y | 1180 | CONFIG_TEXTSEARCH=y |
1139 | CONFIG_TEXTSEARCH_KMP=m | 1181 | CONFIG_TEXTSEARCH_KMP=m |
1140 | CONFIG_TEXTSEARCH_BM=m | 1182 | CONFIG_TEXTSEARCH_BM=m |
1141 | CONFIG_TEXTSEARCH_FSM=m | 1183 | CONFIG_TEXTSEARCH_FSM=m |
1142 | CONFIG_PLIST=y | ||
1143 | CONFIG_HAS_IOMEM=y | 1184 | CONFIG_HAS_IOMEM=y |
1144 | CONFIG_HAS_DMA=y | 1185 | CONFIG_HAS_DMA=y |
1186 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/sun3_defconfig b/arch/m68k/configs/sun3_defconfig index f404917429fa..f27c1a47bacf 100644 --- a/arch/m68k/configs/sun3_defconfig +++ b/arch/m68k/configs/sun3_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:53 2008 | 4 | # Wed Apr 22 20:48:16 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -138,12 +149,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
138 | CONFIG_NEED_MULTIPLE_NODES=y | 149 | CONFIG_NEED_MULTIPLE_NODES=y |
139 | CONFIG_PAGEFLAGS_EXTENDED=y | 150 | CONFIG_PAGEFLAGS_EXTENDED=y |
140 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 151 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
141 | # CONFIG_RESOURCES_64BIT is not set | ||
142 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 152 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
143 | CONFIG_ZONE_DMA_FLAG=1 | 153 | CONFIG_ZONE_DMA_FLAG=1 |
144 | CONFIG_BOUNCE=y | 154 | CONFIG_BOUNCE=y |
145 | CONFIG_VIRT_TO_BUS=y | 155 | CONFIG_VIRT_TO_BUS=y |
146 | CONFIG_UNEVICTABLE_LRU=y | 156 | CONFIG_UNEVICTABLE_LRU=y |
157 | CONFIG_HAVE_MLOCK=y | ||
158 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
147 | 159 | ||
148 | # | 160 | # |
149 | # General setup | 161 | # General setup |
@@ -253,6 +265,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
253 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 265 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
254 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 266 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
255 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 267 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
268 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
256 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 269 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
257 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 270 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
258 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 271 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -261,6 +274,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
261 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 274 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
262 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 275 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
263 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 276 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
277 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
264 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 278 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
265 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 279 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
266 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 280 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -271,6 +285,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
271 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 285 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
272 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 286 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
273 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 287 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
288 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
274 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 289 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
275 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 290 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
276 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 291 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -349,25 +364,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
349 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 364 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
350 | CONFIG_IP6_NF_MATCH_MH=m | 365 | CONFIG_IP6_NF_MATCH_MH=m |
351 | CONFIG_IP6_NF_MATCH_RT=m | 366 | CONFIG_IP6_NF_MATCH_RT=m |
367 | CONFIG_IP6_NF_TARGET_HL=m | ||
352 | CONFIG_IP6_NF_TARGET_LOG=m | 368 | CONFIG_IP6_NF_TARGET_LOG=m |
353 | CONFIG_IP6_NF_FILTER=m | 369 | CONFIG_IP6_NF_FILTER=m |
354 | CONFIG_IP6_NF_TARGET_REJECT=m | 370 | CONFIG_IP6_NF_TARGET_REJECT=m |
355 | CONFIG_IP6_NF_MANGLE=m | 371 | CONFIG_IP6_NF_MANGLE=m |
356 | CONFIG_IP6_NF_TARGET_HL=m | ||
357 | CONFIG_IP6_NF_RAW=m | 372 | CONFIG_IP6_NF_RAW=m |
358 | CONFIG_IP_DCCP=m | 373 | CONFIG_IP_DCCP=m |
359 | CONFIG_INET_DCCP_DIAG=m | 374 | CONFIG_INET_DCCP_DIAG=m |
360 | CONFIG_IP_DCCP_ACKVEC=y | ||
361 | 375 | ||
362 | # | 376 | # |
363 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 377 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
364 | # | 378 | # |
365 | CONFIG_IP_DCCP_CCID2=m | ||
366 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 379 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
367 | CONFIG_IP_DCCP_CCID3=m | 380 | # CONFIG_IP_DCCP_CCID3 is not set |
368 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
369 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
370 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
371 | CONFIG_IP_SCTP=m | 381 | CONFIG_IP_SCTP=m |
372 | # CONFIG_SCTP_DBG_MSG is not set | 382 | # CONFIG_SCTP_DBG_MSG is not set |
373 | # CONFIG_SCTP_DBG_OBJCNT is not set | 383 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -389,8 +399,10 @@ CONFIG_ATALK=m | |||
389 | # CONFIG_LAPB is not set | 399 | # CONFIG_LAPB is not set |
390 | # CONFIG_ECONET is not set | 400 | # CONFIG_ECONET is not set |
391 | # CONFIG_WAN_ROUTER is not set | 401 | # CONFIG_WAN_ROUTER is not set |
402 | # CONFIG_PHONET is not set | ||
392 | # CONFIG_NET_SCHED is not set | 403 | # CONFIG_NET_SCHED is not set |
393 | CONFIG_NET_CLS_ROUTE=y | 404 | CONFIG_NET_CLS_ROUTE=y |
405 | # CONFIG_DCB is not set | ||
394 | 406 | ||
395 | # | 407 | # |
396 | # Network testing | 408 | # Network testing |
@@ -401,8 +413,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
401 | # CONFIG_IRDA is not set | 413 | # CONFIG_IRDA is not set |
402 | # CONFIG_BT is not set | 414 | # CONFIG_BT is not set |
403 | # CONFIG_AF_RXRPC is not set | 415 | # CONFIG_AF_RXRPC is not set |
404 | # CONFIG_PHONET is not set | ||
405 | # CONFIG_WIRELESS is not set | 416 | # CONFIG_WIRELESS is not set |
417 | # CONFIG_WIMAX is not set | ||
406 | # CONFIG_RFKILL is not set | 418 | # CONFIG_RFKILL is not set |
407 | # CONFIG_NET_9P is not set | 419 | # CONFIG_NET_9P is not set |
408 | 420 | ||
@@ -438,9 +450,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
438 | CONFIG_ATA_OVER_ETH=m | 450 | CONFIG_ATA_OVER_ETH=m |
439 | # CONFIG_BLK_DEV_HD is not set | 451 | # CONFIG_BLK_DEV_HD is not set |
440 | CONFIG_MISC_DEVICES=y | 452 | CONFIG_MISC_DEVICES=y |
441 | # CONFIG_EEPROM_93CX6 is not set | ||
442 | # CONFIG_ENCLOSURE_SERVICES is not set | 453 | # CONFIG_ENCLOSURE_SERVICES is not set |
443 | # CONFIG_C2PORT is not set | 454 | # CONFIG_C2PORT is not set |
455 | |||
456 | # | ||
457 | # EEPROM support | ||
458 | # | ||
459 | # CONFIG_EEPROM_93CX6 is not set | ||
444 | CONFIG_HAVE_IDE=y | 460 | CONFIG_HAVE_IDE=y |
445 | # CONFIG_IDE is not set | 461 | # CONFIG_IDE is not set |
446 | 462 | ||
@@ -488,9 +504,12 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
488 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 504 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
489 | CONFIG_SCSI_LOWLEVEL=y | 505 | CONFIG_SCSI_LOWLEVEL=y |
490 | CONFIG_ISCSI_TCP=m | 506 | CONFIG_ISCSI_TCP=m |
507 | # CONFIG_LIBFC is not set | ||
508 | # CONFIG_LIBFCOE is not set | ||
491 | # CONFIG_SCSI_DEBUG is not set | 509 | # CONFIG_SCSI_DEBUG is not set |
492 | CONFIG_SUN3_SCSI=y | 510 | CONFIG_SUN3_SCSI=y |
493 | # CONFIG_SCSI_DH is not set | 511 | # CONFIG_SCSI_DH is not set |
512 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
494 | CONFIG_MD=y | 513 | CONFIG_MD=y |
495 | CONFIG_BLK_DEV_MD=m | 514 | CONFIG_BLK_DEV_MD=m |
496 | CONFIG_MD_LINEAR=m | 515 | CONFIG_MD_LINEAR=m |
@@ -498,7 +517,7 @@ CONFIG_MD_RAID0=m | |||
498 | CONFIG_MD_RAID1=m | 517 | CONFIG_MD_RAID1=m |
499 | # CONFIG_MD_RAID10 is not set | 518 | # CONFIG_MD_RAID10 is not set |
500 | CONFIG_MD_RAID456=m | 519 | CONFIG_MD_RAID456=m |
501 | CONFIG_MD_RAID5_RESHAPE=y | 520 | CONFIG_MD_RAID6_PQ=m |
502 | # CONFIG_MD_MULTIPATH is not set | 521 | # CONFIG_MD_MULTIPATH is not set |
503 | # CONFIG_MD_FAULTY is not set | 522 | # CONFIG_MD_FAULTY is not set |
504 | CONFIG_BLK_DEV_DM=m | 523 | CONFIG_BLK_DEV_DM=m |
@@ -511,6 +530,7 @@ CONFIG_DM_MULTIPATH=m | |||
511 | # CONFIG_DM_DELAY is not set | 530 | # CONFIG_DM_DELAY is not set |
512 | CONFIG_DM_UEVENT=y | 531 | CONFIG_DM_UEVENT=y |
513 | CONFIG_NETDEVICES=y | 532 | CONFIG_NETDEVICES=y |
533 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
514 | CONFIG_DUMMY=m | 534 | CONFIG_DUMMY=m |
515 | # CONFIG_BONDING is not set | 535 | # CONFIG_BONDING is not set |
516 | CONFIG_MACVLAN=m | 536 | CONFIG_MACVLAN=m |
@@ -522,6 +542,8 @@ CONFIG_NET_ETHERNET=y | |||
522 | # CONFIG_MII is not set | 542 | # CONFIG_MII is not set |
523 | CONFIG_SUN3LANCE=y | 543 | CONFIG_SUN3LANCE=y |
524 | CONFIG_SUN3_82586=y | 544 | CONFIG_SUN3_82586=y |
545 | # CONFIG_ETHOC is not set | ||
546 | # CONFIG_DNET is not set | ||
525 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 547 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
526 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 548 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
527 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 549 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -537,7 +559,10 @@ CONFIG_SUN3_82586=y | |||
537 | # | 559 | # |
538 | # CONFIG_WLAN_PRE80211 is not set | 560 | # CONFIG_WLAN_PRE80211 is not set |
539 | # CONFIG_WLAN_80211 is not set | 561 | # CONFIG_WLAN_80211 is not set |
540 | # CONFIG_IWLWIFI_LEDS is not set | 562 | |
563 | # | ||
564 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
565 | # | ||
541 | # CONFIG_WAN is not set | 566 | # CONFIG_WAN is not set |
542 | CONFIG_PPP=m | 567 | CONFIG_PPP=m |
543 | # CONFIG_PPP_MULTILINK is not set | 568 | # CONFIG_PPP_MULTILINK is not set |
@@ -595,7 +620,6 @@ CONFIG_MOUSE_PS2=m | |||
595 | CONFIG_MOUSE_PS2_ALPS=y | 620 | CONFIG_MOUSE_PS2_ALPS=y |
596 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 621 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
597 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 622 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
598 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
599 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 623 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
600 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 624 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
601 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 625 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -635,6 +659,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
635 | # Non-8250 serial port support | 659 | # Non-8250 serial port support |
636 | # | 660 | # |
637 | CONFIG_UNIX98_PTYS=y | 661 | CONFIG_UNIX98_PTYS=y |
662 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
638 | CONFIG_LEGACY_PTYS=y | 663 | CONFIG_LEGACY_PTYS=y |
639 | CONFIG_LEGACY_PTY_COUNT=256 | 664 | CONFIG_LEGACY_PTY_COUNT=256 |
640 | # CONFIG_IPMI_HANDLER is not set | 665 | # CONFIG_IPMI_HANDLER is not set |
@@ -710,6 +735,7 @@ CONFIG_FB=y | |||
710 | # CONFIG_FB_VIRTUAL is not set | 735 | # CONFIG_FB_VIRTUAL is not set |
711 | # CONFIG_FB_METRONOME is not set | 736 | # CONFIG_FB_METRONOME is not set |
712 | # CONFIG_FB_MB862XX is not set | 737 | # CONFIG_FB_MB862XX is not set |
738 | # CONFIG_FB_BROADSHEET is not set | ||
713 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 739 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
714 | 740 | ||
715 | # | 741 | # |
@@ -741,16 +767,15 @@ CONFIG_HIDRAW=y | |||
741 | # | 767 | # |
742 | # Special HID drivers | 768 | # Special HID drivers |
743 | # | 769 | # |
744 | CONFIG_HID_COMPAT=y | ||
745 | # CONFIG_USB_SUPPORT is not set | 770 | # CONFIG_USB_SUPPORT is not set |
746 | # CONFIG_MMC is not set | 771 | # CONFIG_MMC is not set |
747 | # CONFIG_MEMSTICK is not set | 772 | # CONFIG_MEMSTICK is not set |
748 | # CONFIG_NEW_LEDS is not set | 773 | # CONFIG_NEW_LEDS is not set |
749 | # CONFIG_ACCESSIBILITY is not set | 774 | # CONFIG_ACCESSIBILITY is not set |
750 | # CONFIG_RTC_CLASS is not set | 775 | # CONFIG_RTC_CLASS is not set |
776 | # CONFIG_AUXDISPLAY is not set | ||
751 | # CONFIG_UIO is not set | 777 | # CONFIG_UIO is not set |
752 | # CONFIG_STAGING is not set | 778 | # CONFIG_STAGING is not set |
753 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
754 | 779 | ||
755 | # | 780 | # |
756 | # Character devices | 781 | # Character devices |
@@ -763,6 +788,7 @@ CONFIG_EXT2_FS=y | |||
763 | # CONFIG_EXT2_FS_XATTR is not set | 788 | # CONFIG_EXT2_FS_XATTR is not set |
764 | # CONFIG_EXT2_FS_XIP is not set | 789 | # CONFIG_EXT2_FS_XIP is not set |
765 | CONFIG_EXT3_FS=y | 790 | CONFIG_EXT3_FS=y |
791 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
766 | # CONFIG_EXT3_FS_XATTR is not set | 792 | # CONFIG_EXT3_FS_XATTR is not set |
767 | # CONFIG_EXT4_FS is not set | 793 | # CONFIG_EXT4_FS is not set |
768 | CONFIG_JBD=y | 794 | CONFIG_JBD=y |
@@ -789,13 +815,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
789 | # CONFIG_OCFS2_FS_STATS is not set | 815 | # CONFIG_OCFS2_FS_STATS is not set |
790 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 816 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
791 | # CONFIG_OCFS2_DEBUG_FS is not set | 817 | # CONFIG_OCFS2_DEBUG_FS is not set |
792 | # CONFIG_OCFS2_COMPAT_JBD is not set | 818 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
819 | # CONFIG_BTRFS_FS is not set | ||
793 | CONFIG_DNOTIFY=y | 820 | CONFIG_DNOTIFY=y |
794 | CONFIG_INOTIFY=y | 821 | CONFIG_INOTIFY=y |
795 | CONFIG_INOTIFY_USER=y | 822 | CONFIG_INOTIFY_USER=y |
796 | CONFIG_QUOTA=y | 823 | CONFIG_QUOTA=y |
797 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 824 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
798 | # CONFIG_PRINT_QUOTA_WARNING is not set | 825 | # CONFIG_PRINT_QUOTA_WARNING is not set |
826 | CONFIG_QUOTA_TREE=m | ||
799 | # CONFIG_QFMT_V1 is not set | 827 | # CONFIG_QFMT_V1 is not set |
800 | # CONFIG_QFMT_V2 is not set | 828 | # CONFIG_QFMT_V2 is not set |
801 | CONFIG_QUOTACTL=y | 829 | CONFIG_QUOTACTL=y |
@@ -804,6 +832,11 @@ CONFIG_AUTOFS4_FS=m | |||
804 | CONFIG_FUSE_FS=m | 832 | CONFIG_FUSE_FS=m |
805 | 833 | ||
806 | # | 834 | # |
835 | # Caches | ||
836 | # | ||
837 | # CONFIG_FSCACHE is not set | ||
838 | |||
839 | # | ||
807 | # CD-ROM/DVD Filesystems | 840 | # CD-ROM/DVD Filesystems |
808 | # | 841 | # |
809 | CONFIG_ISO9660_FS=y | 842 | CONFIG_ISO9660_FS=y |
@@ -834,10 +867,7 @@ CONFIG_TMPFS=y | |||
834 | # CONFIG_TMPFS_POSIX_ACL is not set | 867 | # CONFIG_TMPFS_POSIX_ACL is not set |
835 | # CONFIG_HUGETLB_PAGE is not set | 868 | # CONFIG_HUGETLB_PAGE is not set |
836 | CONFIG_CONFIGFS_FS=m | 869 | CONFIG_CONFIGFS_FS=m |
837 | 870 | CONFIG_MISC_FILESYSTEMS=y | |
838 | # | ||
839 | # Miscellaneous filesystems | ||
840 | # | ||
841 | # CONFIG_ADFS_FS is not set | 871 | # CONFIG_ADFS_FS is not set |
842 | CONFIG_AFFS_FS=m | 872 | CONFIG_AFFS_FS=m |
843 | CONFIG_HFS_FS=m | 873 | CONFIG_HFS_FS=m |
@@ -846,6 +876,9 @@ CONFIG_HFSPLUS_FS=m | |||
846 | # CONFIG_BFS_FS is not set | 876 | # CONFIG_BFS_FS is not set |
847 | # CONFIG_EFS_FS is not set | 877 | # CONFIG_EFS_FS is not set |
848 | CONFIG_CRAMFS=m | 878 | CONFIG_CRAMFS=m |
879 | CONFIG_SQUASHFS=m | ||
880 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
881 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
849 | # CONFIG_VXFS_FS is not set | 882 | # CONFIG_VXFS_FS is not set |
850 | CONFIG_MINIX_FS=y | 883 | CONFIG_MINIX_FS=y |
851 | # CONFIG_OMFS_FS is not set | 884 | # CONFIG_OMFS_FS is not set |
@@ -856,6 +889,7 @@ CONFIG_SYSV_FS=m | |||
856 | CONFIG_UFS_FS=m | 889 | CONFIG_UFS_FS=m |
857 | # CONFIG_UFS_FS_WRITE is not set | 890 | # CONFIG_UFS_FS_WRITE is not set |
858 | # CONFIG_UFS_DEBUG is not set | 891 | # CONFIG_UFS_DEBUG is not set |
892 | # CONFIG_NILFS2_FS is not set | ||
859 | CONFIG_NETWORK_FILESYSTEMS=y | 893 | CONFIG_NETWORK_FILESYSTEMS=y |
860 | CONFIG_NFS_FS=y | 894 | CONFIG_NFS_FS=y |
861 | CONFIG_NFS_V3=y | 895 | CONFIG_NFS_V3=y |
@@ -872,7 +906,6 @@ CONFIG_EXPORTFS=m | |||
872 | CONFIG_NFS_COMMON=y | 906 | CONFIG_NFS_COMMON=y |
873 | CONFIG_SUNRPC=y | 907 | CONFIG_SUNRPC=y |
874 | CONFIG_SUNRPC_GSS=y | 908 | CONFIG_SUNRPC_GSS=y |
875 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
876 | CONFIG_RPCSEC_GSS_KRB5=y | 909 | CONFIG_RPCSEC_GSS_KRB5=y |
877 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 910 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
878 | CONFIG_SMB_FS=m | 911 | CONFIG_SMB_FS=m |
@@ -948,11 +981,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
948 | CONFIG_DEBUG_MEMORY_INIT=y | 981 | CONFIG_DEBUG_MEMORY_INIT=y |
949 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 982 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
950 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 983 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
951 | |||
952 | # | ||
953 | # Tracers | ||
954 | # | ||
955 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
956 | # CONFIG_SAMPLES is not set | 984 | # CONFIG_SAMPLES is not set |
957 | 985 | ||
958 | # | 986 | # |
@@ -973,13 +1001,21 @@ CONFIG_CRYPTO=y | |||
973 | # | 1001 | # |
974 | # CONFIG_CRYPTO_FIPS is not set | 1002 | # CONFIG_CRYPTO_FIPS is not set |
975 | CONFIG_CRYPTO_ALGAPI=y | 1003 | CONFIG_CRYPTO_ALGAPI=y |
976 | CONFIG_CRYPTO_AEAD=y | 1004 | CONFIG_CRYPTO_ALGAPI2=y |
1005 | CONFIG_CRYPTO_AEAD=m | ||
1006 | CONFIG_CRYPTO_AEAD2=y | ||
977 | CONFIG_CRYPTO_BLKCIPHER=y | 1007 | CONFIG_CRYPTO_BLKCIPHER=y |
1008 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
978 | CONFIG_CRYPTO_HASH=y | 1009 | CONFIG_CRYPTO_HASH=y |
979 | CONFIG_CRYPTO_RNG=y | 1010 | CONFIG_CRYPTO_HASH2=y |
1011 | CONFIG_CRYPTO_RNG=m | ||
1012 | CONFIG_CRYPTO_RNG2=y | ||
1013 | CONFIG_CRYPTO_PCOMP=y | ||
980 | CONFIG_CRYPTO_MANAGER=y | 1014 | CONFIG_CRYPTO_MANAGER=y |
1015 | CONFIG_CRYPTO_MANAGER2=y | ||
981 | CONFIG_CRYPTO_GF128MUL=m | 1016 | CONFIG_CRYPTO_GF128MUL=m |
982 | CONFIG_CRYPTO_NULL=m | 1017 | CONFIG_CRYPTO_NULL=m |
1018 | CONFIG_CRYPTO_WORKQUEUE=y | ||
983 | CONFIG_CRYPTO_CRYPTD=m | 1019 | CONFIG_CRYPTO_CRYPTD=m |
984 | CONFIG_CRYPTO_AUTHENC=m | 1020 | CONFIG_CRYPTO_AUTHENC=m |
985 | CONFIG_CRYPTO_TEST=m | 1021 | CONFIG_CRYPTO_TEST=m |
@@ -1049,6 +1085,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1049 | # Compression | 1085 | # Compression |
1050 | # | 1086 | # |
1051 | CONFIG_CRYPTO_DEFLATE=m | 1087 | CONFIG_CRYPTO_DEFLATE=m |
1088 | CONFIG_CRYPTO_ZLIB=m | ||
1052 | CONFIG_CRYPTO_LZO=m | 1089 | CONFIG_CRYPTO_LZO=m |
1053 | 1090 | ||
1054 | # | 1091 | # |
@@ -1056,11 +1093,13 @@ CONFIG_CRYPTO_LZO=m | |||
1056 | # | 1093 | # |
1057 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1094 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1058 | # CONFIG_CRYPTO_HW is not set | 1095 | # CONFIG_CRYPTO_HW is not set |
1096 | # CONFIG_BINARY_PRINTF is not set | ||
1059 | 1097 | ||
1060 | # | 1098 | # |
1061 | # Library routines | 1099 | # Library routines |
1062 | # | 1100 | # |
1063 | CONFIG_BITREVERSE=y | 1101 | CONFIG_BITREVERSE=y |
1102 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1064 | CONFIG_CRC_CCITT=m | 1103 | CONFIG_CRC_CCITT=m |
1065 | CONFIG_CRC16=m | 1104 | CONFIG_CRC16=m |
1066 | CONFIG_CRC_T10DIF=y | 1105 | CONFIG_CRC_T10DIF=y |
@@ -1072,9 +1111,12 @@ CONFIG_ZLIB_INFLATE=y | |||
1072 | CONFIG_ZLIB_DEFLATE=m | 1111 | CONFIG_ZLIB_DEFLATE=m |
1073 | CONFIG_LZO_COMPRESS=m | 1112 | CONFIG_LZO_COMPRESS=m |
1074 | CONFIG_LZO_DECOMPRESS=m | 1113 | CONFIG_LZO_DECOMPRESS=m |
1114 | CONFIG_DECOMPRESS_GZIP=y | ||
1115 | CONFIG_DECOMPRESS_BZIP2=y | ||
1116 | CONFIG_DECOMPRESS_LZMA=y | ||
1075 | CONFIG_TEXTSEARCH=y | 1117 | CONFIG_TEXTSEARCH=y |
1076 | CONFIG_TEXTSEARCH_KMP=m | 1118 | CONFIG_TEXTSEARCH_KMP=m |
1077 | CONFIG_TEXTSEARCH_BM=m | 1119 | CONFIG_TEXTSEARCH_BM=m |
1078 | CONFIG_TEXTSEARCH_FSM=m | 1120 | CONFIG_TEXTSEARCH_FSM=m |
1079 | CONFIG_PLIST=y | ||
1080 | CONFIG_HAS_IOMEM=y | 1121 | CONFIG_HAS_IOMEM=y |
1122 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/configs/sun3x_defconfig b/arch/m68k/configs/sun3x_defconfig index 4d8a1e84e39f..c40edb919fda 100644 --- a/arch/m68k/configs/sun3x_defconfig +++ b/arch/m68k/configs/sun3x_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.28-rc7 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Tue Dec 2 20:27:54 2008 | 4 | # Wed Apr 22 20:48:20 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -29,14 +29,24 @@ CONFIG_SWAP=y | |||
29 | CONFIG_SYSVIPC=y | 29 | CONFIG_SYSVIPC=y |
30 | CONFIG_SYSVIPC_SYSCTL=y | 30 | CONFIG_SYSVIPC_SYSCTL=y |
31 | CONFIG_POSIX_MQUEUE=y | 31 | CONFIG_POSIX_MQUEUE=y |
32 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
32 | CONFIG_BSD_PROCESS_ACCT=y | 33 | CONFIG_BSD_PROCESS_ACCT=y |
33 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 34 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 50 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | CONFIG_RELAY=y | 51 | CONFIG_RELAY=y |
42 | CONFIG_NAMESPACES=y | 52 | CONFIG_NAMESPACES=y |
@@ -44,23 +54,27 @@ CONFIG_NAMESPACES=y | |||
44 | # CONFIG_IPC_NS is not set | 54 | # CONFIG_IPC_NS is not set |
45 | # CONFIG_USER_NS is not set | 55 | # CONFIG_USER_NS is not set |
46 | # CONFIG_PID_NS is not set | 56 | # CONFIG_PID_NS is not set |
57 | # CONFIG_NET_NS is not set | ||
47 | CONFIG_BLK_DEV_INITRD=y | 58 | CONFIG_BLK_DEV_INITRD=y |
48 | CONFIG_INITRAMFS_SOURCE="" | 59 | CONFIG_INITRAMFS_SOURCE="" |
60 | CONFIG_RD_GZIP=y | ||
61 | CONFIG_RD_BZIP2=y | ||
62 | CONFIG_RD_LZMA=y | ||
49 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 63 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
50 | CONFIG_SYSCTL=y | 64 | CONFIG_SYSCTL=y |
65 | CONFIG_ANON_INODES=y | ||
51 | # CONFIG_EMBEDDED is not set | 66 | # CONFIG_EMBEDDED is not set |
52 | CONFIG_UID16=y | 67 | CONFIG_UID16=y |
53 | CONFIG_SYSCTL_SYSCALL=y | 68 | CONFIG_SYSCTL_SYSCALL=y |
54 | CONFIG_KALLSYMS=y | 69 | CONFIG_KALLSYMS=y |
55 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 70 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
71 | # CONFIG_STRIP_ASM_SYMS is not set | ||
56 | CONFIG_HOTPLUG=y | 72 | CONFIG_HOTPLUG=y |
57 | CONFIG_PRINTK=y | 73 | CONFIG_PRINTK=y |
58 | CONFIG_BUG=y | 74 | CONFIG_BUG=y |
59 | CONFIG_ELF_CORE=y | 75 | CONFIG_ELF_CORE=y |
60 | CONFIG_COMPAT_BRK=y | ||
61 | CONFIG_BASE_FULL=y | 76 | CONFIG_BASE_FULL=y |
62 | CONFIG_FUTEX=y | 77 | CONFIG_FUTEX=y |
63 | CONFIG_ANON_INODES=y | ||
64 | CONFIG_EPOLL=y | 78 | CONFIG_EPOLL=y |
65 | CONFIG_SIGNALFD=y | 79 | CONFIG_SIGNALFD=y |
66 | CONFIG_TIMERFD=y | 80 | CONFIG_TIMERFD=y |
@@ -68,15 +82,16 @@ CONFIG_EVENTFD=y | |||
68 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
69 | CONFIG_AIO=y | 83 | CONFIG_AIO=y |
70 | CONFIG_VM_EVENT_COUNTERS=y | 84 | CONFIG_VM_EVENT_COUNTERS=y |
85 | CONFIG_COMPAT_BRK=y | ||
71 | CONFIG_SLAB=y | 86 | CONFIG_SLAB=y |
72 | # CONFIG_SLUB is not set | 87 | # CONFIG_SLUB is not set |
73 | # CONFIG_SLOB is not set | 88 | # CONFIG_SLOB is not set |
74 | # CONFIG_PROFILING is not set | 89 | # CONFIG_PROFILING is not set |
75 | # CONFIG_MARKERS is not set | 90 | # CONFIG_MARKERS is not set |
91 | # CONFIG_SLOW_WORK is not set | ||
76 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 92 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
77 | CONFIG_SLABINFO=y | 93 | CONFIG_SLABINFO=y |
78 | CONFIG_RT_MUTEXES=y | 94 | CONFIG_RT_MUTEXES=y |
79 | # CONFIG_TINY_SHMEM is not set | ||
80 | CONFIG_BASE_SMALL=0 | 95 | CONFIG_BASE_SMALL=0 |
81 | CONFIG_MODULES=y | 96 | CONFIG_MODULES=y |
82 | # CONFIG_MODULE_FORCE_LOAD is not set | 97 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -84,11 +99,8 @@ CONFIG_MODULE_UNLOAD=y | |||
84 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 99 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
85 | # CONFIG_MODVERSIONS is not set | 100 | # CONFIG_MODVERSIONS is not set |
86 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 101 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
87 | CONFIG_KMOD=y | ||
88 | CONFIG_BLOCK=y | 102 | CONFIG_BLOCK=y |
89 | # CONFIG_LBD is not set | 103 | # CONFIG_LBD is not set |
90 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
91 | # CONFIG_LSF is not set | ||
92 | CONFIG_BLK_DEV_BSG=y | 104 | CONFIG_BLK_DEV_BSG=y |
93 | # CONFIG_BLK_DEV_INTEGRITY is not set | 105 | # CONFIG_BLK_DEV_INTEGRITY is not set |
94 | 106 | ||
@@ -104,7 +116,6 @@ CONFIG_DEFAULT_AS=y | |||
104 | # CONFIG_DEFAULT_CFQ is not set | 116 | # CONFIG_DEFAULT_CFQ is not set |
105 | # CONFIG_DEFAULT_NOOP is not set | 117 | # CONFIG_DEFAULT_NOOP is not set |
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 118 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_FREEZER is not set | 119 | # CONFIG_FREEZER is not set |
109 | 120 | ||
110 | # | 121 | # |
@@ -140,12 +151,13 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
140 | CONFIG_NEED_MULTIPLE_NODES=y | 151 | CONFIG_NEED_MULTIPLE_NODES=y |
141 | CONFIG_PAGEFLAGS_EXTENDED=y | 152 | CONFIG_PAGEFLAGS_EXTENDED=y |
142 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 153 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
143 | # CONFIG_RESOURCES_64BIT is not set | ||
144 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 154 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
145 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
146 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
147 | CONFIG_VIRT_TO_BUS=y | 157 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 158 | CONFIG_UNEVICTABLE_LRU=y |
159 | CONFIG_HAVE_MLOCK=y | ||
160 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
149 | 161 | ||
150 | # | 162 | # |
151 | # General setup | 163 | # General setup |
@@ -255,6 +267,7 @@ CONFIG_NETFILTER_XTABLES=m | |||
255 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 267 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
256 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m | 268 | CONFIG_NETFILTER_XT_TARGET_CONNMARK=m |
257 | CONFIG_NETFILTER_XT_TARGET_DSCP=m | 269 | CONFIG_NETFILTER_XT_TARGET_DSCP=m |
270 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
258 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 271 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
259 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 272 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
260 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 273 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -263,6 +276,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
263 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 276 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
264 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 277 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
265 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 278 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
279 | CONFIG_NETFILTER_XT_MATCH_CLUSTER=m | ||
266 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 280 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
267 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | 281 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m |
268 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 282 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -273,6 +287,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
273 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 287 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
274 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | 288 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m |
275 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 289 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
290 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
276 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 291 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
277 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 292 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
278 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 293 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -351,25 +366,20 @@ CONFIG_IP6_NF_MATCH_HL=m | |||
351 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | 366 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m |
352 | CONFIG_IP6_NF_MATCH_MH=m | 367 | CONFIG_IP6_NF_MATCH_MH=m |
353 | CONFIG_IP6_NF_MATCH_RT=m | 368 | CONFIG_IP6_NF_MATCH_RT=m |
369 | CONFIG_IP6_NF_TARGET_HL=m | ||
354 | CONFIG_IP6_NF_TARGET_LOG=m | 370 | CONFIG_IP6_NF_TARGET_LOG=m |
355 | CONFIG_IP6_NF_FILTER=m | 371 | CONFIG_IP6_NF_FILTER=m |
356 | CONFIG_IP6_NF_TARGET_REJECT=m | 372 | CONFIG_IP6_NF_TARGET_REJECT=m |
357 | CONFIG_IP6_NF_MANGLE=m | 373 | CONFIG_IP6_NF_MANGLE=m |
358 | CONFIG_IP6_NF_TARGET_HL=m | ||
359 | CONFIG_IP6_NF_RAW=m | 374 | CONFIG_IP6_NF_RAW=m |
360 | CONFIG_IP_DCCP=m | 375 | CONFIG_IP_DCCP=m |
361 | CONFIG_INET_DCCP_DIAG=m | 376 | CONFIG_INET_DCCP_DIAG=m |
362 | CONFIG_IP_DCCP_ACKVEC=y | ||
363 | 377 | ||
364 | # | 378 | # |
365 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 379 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
366 | # | 380 | # |
367 | CONFIG_IP_DCCP_CCID2=m | ||
368 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 381 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
369 | CONFIG_IP_DCCP_CCID3=m | 382 | # CONFIG_IP_DCCP_CCID3 is not set |
370 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
371 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
372 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
373 | CONFIG_IP_SCTP=m | 383 | CONFIG_IP_SCTP=m |
374 | # CONFIG_SCTP_DBG_MSG is not set | 384 | # CONFIG_SCTP_DBG_MSG is not set |
375 | # CONFIG_SCTP_DBG_OBJCNT is not set | 385 | # CONFIG_SCTP_DBG_OBJCNT is not set |
@@ -391,8 +401,10 @@ CONFIG_ATALK=m | |||
391 | # CONFIG_LAPB is not set | 401 | # CONFIG_LAPB is not set |
392 | # CONFIG_ECONET is not set | 402 | # CONFIG_ECONET is not set |
393 | # CONFIG_WAN_ROUTER is not set | 403 | # CONFIG_WAN_ROUTER is not set |
404 | # CONFIG_PHONET is not set | ||
394 | # CONFIG_NET_SCHED is not set | 405 | # CONFIG_NET_SCHED is not set |
395 | CONFIG_NET_CLS_ROUTE=y | 406 | CONFIG_NET_CLS_ROUTE=y |
407 | # CONFIG_DCB is not set | ||
396 | 408 | ||
397 | # | 409 | # |
398 | # Network testing | 410 | # Network testing |
@@ -403,8 +415,8 @@ CONFIG_NET_CLS_ROUTE=y | |||
403 | # CONFIG_IRDA is not set | 415 | # CONFIG_IRDA is not set |
404 | # CONFIG_BT is not set | 416 | # CONFIG_BT is not set |
405 | # CONFIG_AF_RXRPC is not set | 417 | # CONFIG_AF_RXRPC is not set |
406 | # CONFIG_PHONET is not set | ||
407 | # CONFIG_WIRELESS is not set | 418 | # CONFIG_WIRELESS is not set |
419 | # CONFIG_WIMAX is not set | ||
408 | # CONFIG_RFKILL is not set | 420 | # CONFIG_RFKILL is not set |
409 | # CONFIG_NET_9P is not set | 421 | # CONFIG_NET_9P is not set |
410 | 422 | ||
@@ -440,9 +452,13 @@ CONFIG_CDROM_PKTCDVD_BUFFERS=8 | |||
440 | CONFIG_ATA_OVER_ETH=m | 452 | CONFIG_ATA_OVER_ETH=m |
441 | # CONFIG_BLK_DEV_HD is not set | 453 | # CONFIG_BLK_DEV_HD is not set |
442 | CONFIG_MISC_DEVICES=y | 454 | CONFIG_MISC_DEVICES=y |
443 | # CONFIG_EEPROM_93CX6 is not set | ||
444 | # CONFIG_ENCLOSURE_SERVICES is not set | 455 | # CONFIG_ENCLOSURE_SERVICES is not set |
445 | # CONFIG_C2PORT is not set | 456 | # CONFIG_C2PORT is not set |
457 | |||
458 | # | ||
459 | # EEPROM support | ||
460 | # | ||
461 | # CONFIG_EEPROM_93CX6 is not set | ||
446 | CONFIG_HAVE_IDE=y | 462 | CONFIG_HAVE_IDE=y |
447 | # CONFIG_IDE is not set | 463 | # CONFIG_IDE is not set |
448 | 464 | ||
@@ -490,9 +506,12 @@ CONFIG_SCSI_SRP_ATTRS=m | |||
490 | CONFIG_SCSI_SRP_TGT_ATTRS=y | 506 | CONFIG_SCSI_SRP_TGT_ATTRS=y |
491 | CONFIG_SCSI_LOWLEVEL=y | 507 | CONFIG_SCSI_LOWLEVEL=y |
492 | CONFIG_ISCSI_TCP=m | 508 | CONFIG_ISCSI_TCP=m |
509 | # CONFIG_LIBFC is not set | ||
510 | # CONFIG_LIBFCOE is not set | ||
493 | # CONFIG_SCSI_DEBUG is not set | 511 | # CONFIG_SCSI_DEBUG is not set |
494 | CONFIG_SUN3X_ESP=y | 512 | CONFIG_SUN3X_ESP=y |
495 | # CONFIG_SCSI_DH is not set | 513 | # CONFIG_SCSI_DH is not set |
514 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
496 | CONFIG_MD=y | 515 | CONFIG_MD=y |
497 | CONFIG_BLK_DEV_MD=m | 516 | CONFIG_BLK_DEV_MD=m |
498 | CONFIG_MD_LINEAR=m | 517 | CONFIG_MD_LINEAR=m |
@@ -500,7 +519,7 @@ CONFIG_MD_RAID0=m | |||
500 | CONFIG_MD_RAID1=m | 519 | CONFIG_MD_RAID1=m |
501 | # CONFIG_MD_RAID10 is not set | 520 | # CONFIG_MD_RAID10 is not set |
502 | CONFIG_MD_RAID456=m | 521 | CONFIG_MD_RAID456=m |
503 | CONFIG_MD_RAID5_RESHAPE=y | 522 | CONFIG_MD_RAID6_PQ=m |
504 | # CONFIG_MD_MULTIPATH is not set | 523 | # CONFIG_MD_MULTIPATH is not set |
505 | # CONFIG_MD_FAULTY is not set | 524 | # CONFIG_MD_FAULTY is not set |
506 | CONFIG_BLK_DEV_DM=m | 525 | CONFIG_BLK_DEV_DM=m |
@@ -513,6 +532,7 @@ CONFIG_DM_MULTIPATH=m | |||
513 | # CONFIG_DM_DELAY is not set | 532 | # CONFIG_DM_DELAY is not set |
514 | CONFIG_DM_UEVENT=y | 533 | CONFIG_DM_UEVENT=y |
515 | CONFIG_NETDEVICES=y | 534 | CONFIG_NETDEVICES=y |
535 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
516 | CONFIG_DUMMY=m | 536 | CONFIG_DUMMY=m |
517 | # CONFIG_BONDING is not set | 537 | # CONFIG_BONDING is not set |
518 | CONFIG_MACVLAN=m | 538 | CONFIG_MACVLAN=m |
@@ -523,6 +543,8 @@ CONFIG_VETH=m | |||
523 | CONFIG_NET_ETHERNET=y | 543 | CONFIG_NET_ETHERNET=y |
524 | # CONFIG_MII is not set | 544 | # CONFIG_MII is not set |
525 | CONFIG_SUN3LANCE=y | 545 | CONFIG_SUN3LANCE=y |
546 | # CONFIG_ETHOC is not set | ||
547 | # CONFIG_DNET is not set | ||
526 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 548 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
527 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 549 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
528 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 550 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -539,7 +561,10 @@ CONFIG_SUN3LANCE=y | |||
539 | # | 561 | # |
540 | # CONFIG_WLAN_PRE80211 is not set | 562 | # CONFIG_WLAN_PRE80211 is not set |
541 | # CONFIG_WLAN_80211 is not set | 563 | # CONFIG_WLAN_80211 is not set |
542 | # CONFIG_IWLWIFI_LEDS is not set | 564 | |
565 | # | ||
566 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
567 | # | ||
543 | # CONFIG_WAN is not set | 568 | # CONFIG_WAN is not set |
544 | CONFIG_PPP=m | 569 | CONFIG_PPP=m |
545 | # CONFIG_PPP_MULTILINK is not set | 570 | # CONFIG_PPP_MULTILINK is not set |
@@ -597,7 +622,6 @@ CONFIG_MOUSE_PS2=m | |||
597 | CONFIG_MOUSE_PS2_ALPS=y | 622 | CONFIG_MOUSE_PS2_ALPS=y |
598 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 623 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
599 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 624 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
600 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
601 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 625 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
602 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 626 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
603 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 627 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -637,6 +661,7 @@ CONFIG_VT_HW_CONSOLE_BINDING=y | |||
637 | # Non-8250 serial port support | 661 | # Non-8250 serial port support |
638 | # | 662 | # |
639 | CONFIG_UNIX98_PTYS=y | 663 | CONFIG_UNIX98_PTYS=y |
664 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
640 | CONFIG_LEGACY_PTYS=y | 665 | CONFIG_LEGACY_PTYS=y |
641 | CONFIG_LEGACY_PTY_COUNT=256 | 666 | CONFIG_LEGACY_PTY_COUNT=256 |
642 | # CONFIG_IPMI_HANDLER is not set | 667 | # CONFIG_IPMI_HANDLER is not set |
@@ -718,6 +743,7 @@ CONFIG_FB=y | |||
718 | # CONFIG_FB_VIRTUAL is not set | 743 | # CONFIG_FB_VIRTUAL is not set |
719 | # CONFIG_FB_METRONOME is not set | 744 | # CONFIG_FB_METRONOME is not set |
720 | # CONFIG_FB_MB862XX is not set | 745 | # CONFIG_FB_MB862XX is not set |
746 | # CONFIG_FB_BROADSHEET is not set | ||
721 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 747 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
722 | 748 | ||
723 | # | 749 | # |
@@ -749,7 +775,6 @@ CONFIG_HIDRAW=y | |||
749 | # | 775 | # |
750 | # Special HID drivers | 776 | # Special HID drivers |
751 | # | 777 | # |
752 | CONFIG_HID_COMPAT=y | ||
753 | # CONFIG_USB_SUPPORT is not set | 778 | # CONFIG_USB_SUPPORT is not set |
754 | # CONFIG_MMC is not set | 779 | # CONFIG_MMC is not set |
755 | # CONFIG_MEMSTICK is not set | 780 | # CONFIG_MEMSTICK is not set |
@@ -757,9 +782,9 @@ CONFIG_HID_COMPAT=y | |||
757 | # CONFIG_ACCESSIBILITY is not set | 782 | # CONFIG_ACCESSIBILITY is not set |
758 | # CONFIG_RTC_CLASS is not set | 783 | # CONFIG_RTC_CLASS is not set |
759 | # CONFIG_DMADEVICES is not set | 784 | # CONFIG_DMADEVICES is not set |
785 | # CONFIG_AUXDISPLAY is not set | ||
760 | # CONFIG_UIO is not set | 786 | # CONFIG_UIO is not set |
761 | # CONFIG_STAGING is not set | 787 | # CONFIG_STAGING is not set |
762 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
763 | 788 | ||
764 | # | 789 | # |
765 | # Character devices | 790 | # Character devices |
@@ -772,6 +797,7 @@ CONFIG_EXT2_FS=y | |||
772 | # CONFIG_EXT2_FS_XATTR is not set | 797 | # CONFIG_EXT2_FS_XATTR is not set |
773 | # CONFIG_EXT2_FS_XIP is not set | 798 | # CONFIG_EXT2_FS_XIP is not set |
774 | CONFIG_EXT3_FS=y | 799 | CONFIG_EXT3_FS=y |
800 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
775 | # CONFIG_EXT3_FS_XATTR is not set | 801 | # CONFIG_EXT3_FS_XATTR is not set |
776 | # CONFIG_EXT4_FS is not set | 802 | # CONFIG_EXT4_FS is not set |
777 | CONFIG_JBD=y | 803 | CONFIG_JBD=y |
@@ -798,13 +824,15 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m | |||
798 | # CONFIG_OCFS2_FS_STATS is not set | 824 | # CONFIG_OCFS2_FS_STATS is not set |
799 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set | 825 | # CONFIG_OCFS2_DEBUG_MASKLOG is not set |
800 | # CONFIG_OCFS2_DEBUG_FS is not set | 826 | # CONFIG_OCFS2_DEBUG_FS is not set |
801 | # CONFIG_OCFS2_COMPAT_JBD is not set | 827 | # CONFIG_OCFS2_FS_POSIX_ACL is not set |
828 | # CONFIG_BTRFS_FS is not set | ||
802 | CONFIG_DNOTIFY=y | 829 | CONFIG_DNOTIFY=y |
803 | CONFIG_INOTIFY=y | 830 | CONFIG_INOTIFY=y |
804 | CONFIG_INOTIFY_USER=y | 831 | CONFIG_INOTIFY_USER=y |
805 | CONFIG_QUOTA=y | 832 | CONFIG_QUOTA=y |
806 | CONFIG_QUOTA_NETLINK_INTERFACE=y | 833 | CONFIG_QUOTA_NETLINK_INTERFACE=y |
807 | # CONFIG_PRINT_QUOTA_WARNING is not set | 834 | # CONFIG_PRINT_QUOTA_WARNING is not set |
835 | CONFIG_QUOTA_TREE=m | ||
808 | # CONFIG_QFMT_V1 is not set | 836 | # CONFIG_QFMT_V1 is not set |
809 | # CONFIG_QFMT_V2 is not set | 837 | # CONFIG_QFMT_V2 is not set |
810 | CONFIG_QUOTACTL=y | 838 | CONFIG_QUOTACTL=y |
@@ -813,6 +841,11 @@ CONFIG_AUTOFS4_FS=m | |||
813 | CONFIG_FUSE_FS=m | 841 | CONFIG_FUSE_FS=m |
814 | 842 | ||
815 | # | 843 | # |
844 | # Caches | ||
845 | # | ||
846 | # CONFIG_FSCACHE is not set | ||
847 | |||
848 | # | ||
816 | # CD-ROM/DVD Filesystems | 849 | # CD-ROM/DVD Filesystems |
817 | # | 850 | # |
818 | CONFIG_ISO9660_FS=y | 851 | CONFIG_ISO9660_FS=y |
@@ -843,10 +876,7 @@ CONFIG_TMPFS=y | |||
843 | # CONFIG_TMPFS_POSIX_ACL is not set | 876 | # CONFIG_TMPFS_POSIX_ACL is not set |
844 | # CONFIG_HUGETLB_PAGE is not set | 877 | # CONFIG_HUGETLB_PAGE is not set |
845 | CONFIG_CONFIGFS_FS=m | 878 | CONFIG_CONFIGFS_FS=m |
846 | 879 | CONFIG_MISC_FILESYSTEMS=y | |
847 | # | ||
848 | # Miscellaneous filesystems | ||
849 | # | ||
850 | # CONFIG_ADFS_FS is not set | 880 | # CONFIG_ADFS_FS is not set |
851 | CONFIG_AFFS_FS=m | 881 | CONFIG_AFFS_FS=m |
852 | CONFIG_HFS_FS=m | 882 | CONFIG_HFS_FS=m |
@@ -855,6 +885,9 @@ CONFIG_HFSPLUS_FS=m | |||
855 | # CONFIG_BFS_FS is not set | 885 | # CONFIG_BFS_FS is not set |
856 | # CONFIG_EFS_FS is not set | 886 | # CONFIG_EFS_FS is not set |
857 | CONFIG_CRAMFS=m | 887 | CONFIG_CRAMFS=m |
888 | CONFIG_SQUASHFS=m | ||
889 | # CONFIG_SQUASHFS_EMBEDDED is not set | ||
890 | CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 | ||
858 | # CONFIG_VXFS_FS is not set | 891 | # CONFIG_VXFS_FS is not set |
859 | CONFIG_MINIX_FS=y | 892 | CONFIG_MINIX_FS=y |
860 | # CONFIG_OMFS_FS is not set | 893 | # CONFIG_OMFS_FS is not set |
@@ -865,6 +898,7 @@ CONFIG_SYSV_FS=m | |||
865 | CONFIG_UFS_FS=m | 898 | CONFIG_UFS_FS=m |
866 | # CONFIG_UFS_FS_WRITE is not set | 899 | # CONFIG_UFS_FS_WRITE is not set |
867 | # CONFIG_UFS_DEBUG is not set | 900 | # CONFIG_UFS_DEBUG is not set |
901 | # CONFIG_NILFS2_FS is not set | ||
868 | CONFIG_NETWORK_FILESYSTEMS=y | 902 | CONFIG_NETWORK_FILESYSTEMS=y |
869 | CONFIG_NFS_FS=y | 903 | CONFIG_NFS_FS=y |
870 | CONFIG_NFS_V3=y | 904 | CONFIG_NFS_V3=y |
@@ -881,7 +915,6 @@ CONFIG_EXPORTFS=m | |||
881 | CONFIG_NFS_COMMON=y | 915 | CONFIG_NFS_COMMON=y |
882 | CONFIG_SUNRPC=y | 916 | CONFIG_SUNRPC=y |
883 | CONFIG_SUNRPC_GSS=y | 917 | CONFIG_SUNRPC_GSS=y |
884 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
885 | CONFIG_RPCSEC_GSS_KRB5=y | 918 | CONFIG_RPCSEC_GSS_KRB5=y |
886 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 919 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
887 | CONFIG_SMB_FS=m | 920 | CONFIG_SMB_FS=m |
@@ -957,11 +990,6 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
957 | CONFIG_DEBUG_MEMORY_INIT=y | 990 | CONFIG_DEBUG_MEMORY_INIT=y |
958 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 991 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
959 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 992 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
960 | |||
961 | # | ||
962 | # Tracers | ||
963 | # | ||
964 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
965 | # CONFIG_SAMPLES is not set | 993 | # CONFIG_SAMPLES is not set |
966 | 994 | ||
967 | # | 995 | # |
@@ -982,13 +1010,21 @@ CONFIG_CRYPTO=y | |||
982 | # | 1010 | # |
983 | # CONFIG_CRYPTO_FIPS is not set | 1011 | # CONFIG_CRYPTO_FIPS is not set |
984 | CONFIG_CRYPTO_ALGAPI=y | 1012 | CONFIG_CRYPTO_ALGAPI=y |
985 | CONFIG_CRYPTO_AEAD=y | 1013 | CONFIG_CRYPTO_ALGAPI2=y |
1014 | CONFIG_CRYPTO_AEAD=m | ||
1015 | CONFIG_CRYPTO_AEAD2=y | ||
986 | CONFIG_CRYPTO_BLKCIPHER=y | 1016 | CONFIG_CRYPTO_BLKCIPHER=y |
1017 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
987 | CONFIG_CRYPTO_HASH=y | 1018 | CONFIG_CRYPTO_HASH=y |
988 | CONFIG_CRYPTO_RNG=y | 1019 | CONFIG_CRYPTO_HASH2=y |
1020 | CONFIG_CRYPTO_RNG=m | ||
1021 | CONFIG_CRYPTO_RNG2=y | ||
1022 | CONFIG_CRYPTO_PCOMP=y | ||
989 | CONFIG_CRYPTO_MANAGER=y | 1023 | CONFIG_CRYPTO_MANAGER=y |
1024 | CONFIG_CRYPTO_MANAGER2=y | ||
990 | CONFIG_CRYPTO_GF128MUL=m | 1025 | CONFIG_CRYPTO_GF128MUL=m |
991 | CONFIG_CRYPTO_NULL=m | 1026 | CONFIG_CRYPTO_NULL=m |
1027 | CONFIG_CRYPTO_WORKQUEUE=y | ||
992 | CONFIG_CRYPTO_CRYPTD=m | 1028 | CONFIG_CRYPTO_CRYPTD=m |
993 | CONFIG_CRYPTO_AUTHENC=m | 1029 | CONFIG_CRYPTO_AUTHENC=m |
994 | CONFIG_CRYPTO_TEST=m | 1030 | CONFIG_CRYPTO_TEST=m |
@@ -1058,6 +1094,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1058 | # Compression | 1094 | # Compression |
1059 | # | 1095 | # |
1060 | CONFIG_CRYPTO_DEFLATE=m | 1096 | CONFIG_CRYPTO_DEFLATE=m |
1097 | CONFIG_CRYPTO_ZLIB=m | ||
1061 | CONFIG_CRYPTO_LZO=m | 1098 | CONFIG_CRYPTO_LZO=m |
1062 | 1099 | ||
1063 | # | 1100 | # |
@@ -1065,11 +1102,13 @@ CONFIG_CRYPTO_LZO=m | |||
1065 | # | 1102 | # |
1066 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1103 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1067 | # CONFIG_CRYPTO_HW is not set | 1104 | # CONFIG_CRYPTO_HW is not set |
1105 | # CONFIG_BINARY_PRINTF is not set | ||
1068 | 1106 | ||
1069 | # | 1107 | # |
1070 | # Library routines | 1108 | # Library routines |
1071 | # | 1109 | # |
1072 | CONFIG_BITREVERSE=y | 1110 | CONFIG_BITREVERSE=y |
1111 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1073 | CONFIG_CRC_CCITT=m | 1112 | CONFIG_CRC_CCITT=m |
1074 | CONFIG_CRC16=m | 1113 | CONFIG_CRC16=m |
1075 | CONFIG_CRC_T10DIF=y | 1114 | CONFIG_CRC_T10DIF=y |
@@ -1081,10 +1120,13 @@ CONFIG_ZLIB_INFLATE=y | |||
1081 | CONFIG_ZLIB_DEFLATE=m | 1120 | CONFIG_ZLIB_DEFLATE=m |
1082 | CONFIG_LZO_COMPRESS=m | 1121 | CONFIG_LZO_COMPRESS=m |
1083 | CONFIG_LZO_DECOMPRESS=m | 1122 | CONFIG_LZO_DECOMPRESS=m |
1123 | CONFIG_DECOMPRESS_GZIP=y | ||
1124 | CONFIG_DECOMPRESS_BZIP2=y | ||
1125 | CONFIG_DECOMPRESS_LZMA=y | ||
1084 | CONFIG_TEXTSEARCH=y | 1126 | CONFIG_TEXTSEARCH=y |
1085 | CONFIG_TEXTSEARCH_KMP=m | 1127 | CONFIG_TEXTSEARCH_KMP=m |
1086 | CONFIG_TEXTSEARCH_BM=m | 1128 | CONFIG_TEXTSEARCH_BM=m |
1087 | CONFIG_TEXTSEARCH_FSM=m | 1129 | CONFIG_TEXTSEARCH_FSM=m |
1088 | CONFIG_PLIST=y | ||
1089 | CONFIG_HAS_IOMEM=y | 1130 | CONFIG_HAS_IOMEM=y |
1090 | CONFIG_HAS_DMA=y | 1131 | CONFIG_HAS_DMA=y |
1132 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68k/include/asm/unistd.h b/arch/m68k/include/asm/unistd.h index 3c19027331fa..aa29a8640f74 100644 --- a/arch/m68k/include/asm/unistd.h +++ b/arch/m68k/include/asm/unistd.h | |||
@@ -332,10 +332,12 @@ | |||
332 | #define __NR_dup3 326 | 332 | #define __NR_dup3 326 |
333 | #define __NR_pipe2 327 | 333 | #define __NR_pipe2 327 |
334 | #define __NR_inotify_init1 328 | 334 | #define __NR_inotify_init1 328 |
335 | #define __NR_preadv 329 | ||
336 | #define __NR_pwritev 330 | ||
335 | 337 | ||
336 | #ifdef __KERNEL__ | 338 | #ifdef __KERNEL__ |
337 | 339 | ||
338 | #define NR_syscalls 329 | 340 | #define NR_syscalls 331 |
339 | 341 | ||
340 | #define __ARCH_WANT_IPC_PARSE_VERSION | 342 | #define __ARCH_WANT_IPC_PARSE_VERSION |
341 | #define __ARCH_WANT_OLD_READDIR | 343 | #define __ARCH_WANT_OLD_READDIR |
diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 5c332f2b9b83..8744f60c07a9 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S | |||
@@ -753,4 +753,6 @@ sys_call_table: | |||
753 | .long sys_dup3 | 753 | .long sys_dup3 |
754 | .long sys_pipe2 | 754 | .long sys_pipe2 |
755 | .long sys_inotify_init1 | 755 | .long sys_inotify_init1 |
756 | .long sys_preadv | ||
757 | .long sys_pwritev /* 330 */ | ||
756 | 758 | ||
diff --git a/arch/m68k/kernel/head.S b/arch/m68k/kernel/head.S index f513f530de91..86edb5fbcfc3 100644 --- a/arch/m68k/kernel/head.S +++ b/arch/m68k/kernel/head.S | |||
@@ -577,7 +577,7 @@ func_define putn,1 | |||
577 | #endif | 577 | #endif |
578 | .endm | 578 | .endm |
579 | 579 | ||
580 | .section ".text.head","ax" | 580 | __HEAD |
581 | ENTRY(_stext) | 581 | ENTRY(_stext) |
582 | /* | 582 | /* |
583 | * Version numbers of the bootinfo interface | 583 | * Version numbers of the bootinfo interface |
diff --git a/arch/m68k/kernel/sun3-head.S b/arch/m68k/kernel/sun3-head.S index aad01592dbbc..43036bf4aeed 100644 --- a/arch/m68k/kernel/sun3-head.S +++ b/arch/m68k/kernel/sun3-head.S | |||
@@ -1,4 +1,5 @@ | |||
1 | #include <linux/linkage.h> | 1 | #include <linux/linkage.h> |
2 | #include <linux/init.h> | ||
2 | 3 | ||
3 | #include <asm/entry.h> | 4 | #include <asm/entry.h> |
4 | #include <asm/page.h> | 5 | #include <asm/page.h> |
@@ -29,7 +30,7 @@ kernel_pmd_table: .skip 0x2000 | |||
29 | .globl kernel_pg_dir | 30 | .globl kernel_pg_dir |
30 | .equ kernel_pg_dir,kernel_pmd_table | 31 | .equ kernel_pg_dir,kernel_pmd_table |
31 | 32 | ||
32 | .section .text.head | 33 | __HEAD |
33 | ENTRY(_stext) | 34 | ENTRY(_stext) |
34 | ENTRY(_start) | 35 | ENTRY(_start) |
35 | 36 | ||
diff --git a/arch/m68k/kernel/vmlinux-std.lds b/arch/m68k/kernel/vmlinux-std.lds index f846d4e3e5e1..01d212bb05a6 100644 --- a/arch/m68k/kernel/vmlinux-std.lds +++ b/arch/m68k/kernel/vmlinux-std.lds | |||
@@ -12,7 +12,7 @@ SECTIONS | |||
12 | . = 0x1000; | 12 | . = 0x1000; |
13 | _text = .; /* Text and read-only data */ | 13 | _text = .; /* Text and read-only data */ |
14 | .text : { | 14 | .text : { |
15 | *(.text.head) | 15 | HEAD_TEXT |
16 | TEXT_TEXT | 16 | TEXT_TEXT |
17 | SCHED_TEXT | 17 | SCHED_TEXT |
18 | LOCK_TEXT | 18 | LOCK_TEXT |
diff --git a/arch/m68k/kernel/vmlinux-sun3.lds b/arch/m68k/kernel/vmlinux-sun3.lds index d9368c0709ba..c192f773db96 100644 --- a/arch/m68k/kernel/vmlinux-sun3.lds +++ b/arch/m68k/kernel/vmlinux-sun3.lds | |||
@@ -12,7 +12,7 @@ SECTIONS | |||
12 | . = 0xE002000; | 12 | . = 0xE002000; |
13 | _text = .; /* Text and read-only data */ | 13 | _text = .; /* Text and read-only data */ |
14 | .text : { | 14 | .text : { |
15 | *(.text.head) | 15 | HEAD_TEXT |
16 | TEXT_TEXT | 16 | TEXT_TEXT |
17 | SCHED_TEXT | 17 | SCHED_TEXT |
18 | LOCK_TEXT | 18 | LOCK_TEXT |
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index 4beb59dfc6ec..534376299a99 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -16,6 +16,7 @@ config MMU | |||
16 | 16 | ||
17 | config NO_DMA | 17 | config NO_DMA |
18 | bool | 18 | bool |
19 | depends on !COLDFIRE | ||
19 | default y | 20 | default y |
20 | 21 | ||
21 | config FPU | 22 | config FPU |
diff --git a/arch/m68knommu/configs/m5208evb_defconfig b/arch/m68knommu/configs/m5208evb_defconfig index 6fae33a05e2a..854a4f333b2f 100644 --- a/arch/m68knommu/configs/m5208evb_defconfig +++ b/arch/m68knommu/configs/m5208evb_defconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.26-rc1 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # | 4 | # |
5 | CONFIG_M68K=y | 5 | CONFIG_M68K=y |
6 | # CONFIG_MMU is not set | 6 | # CONFIG_MMU is not set |
@@ -15,9 +15,10 @@ CONFIG_GENERIC_HWEIGHT=y | |||
15 | CONFIG_GENERIC_HARDIRQS=y | 15 | CONFIG_GENERIC_HARDIRQS=y |
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 16 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
18 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
18 | CONFIG_TIME_LOW_RES=y | 19 | CONFIG_TIME_LOW_RES=y |
20 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
19 | CONFIG_NO_IOPORT=y | 21 | CONFIG_NO_IOPORT=y |
20 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
21 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 22 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
22 | 23 | ||
23 | # | 24 | # |
@@ -33,53 +34,55 @@ CONFIG_LOCALVERSION_AUTO=y | |||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | 34 | # CONFIG_BSD_PROCESS_ACCT is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_RELAY is not set | 50 | # CONFIG_RELAY is not set |
41 | # CONFIG_NAMESPACES is not set | 51 | # CONFIG_NAMESPACES is not set |
42 | # CONFIG_BLK_DEV_INITRD is not set | 52 | # CONFIG_BLK_DEV_INITRD is not set |
43 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
44 | CONFIG_SYSCTL=y | 54 | CONFIG_SYSCTL=y |
45 | CONFIG_EMBEDDED=y | 55 | CONFIG_EMBEDDED=y |
46 | # CONFIG_UID16 is not set | 56 | CONFIG_UID16=y |
47 | # CONFIG_SYSCTL_SYSCALL is not set | 57 | CONFIG_SYSCTL_SYSCALL=y |
48 | # CONFIG_KALLSYMS is not set | 58 | # CONFIG_KALLSYMS is not set |
59 | # CONFIG_STRIP_ASM_SYMS is not set | ||
49 | # CONFIG_HOTPLUG is not set | 60 | # CONFIG_HOTPLUG is not set |
50 | CONFIG_PRINTK=y | 61 | CONFIG_PRINTK=y |
51 | CONFIG_BUG=y | 62 | CONFIG_BUG=y |
52 | CONFIG_ELF_CORE=y | 63 | CONFIG_ELF_CORE=y |
53 | # CONFIG_COMPAT_BRK is not set | ||
54 | CONFIG_BASE_FULL=y | 64 | CONFIG_BASE_FULL=y |
55 | # CONFIG_FUTEX is not set | 65 | # CONFIG_FUTEX is not set |
56 | # CONFIG_EPOLL is not set | 66 | # CONFIG_EPOLL is not set |
57 | # CONFIG_SIGNALFD is not set | 67 | # CONFIG_SIGNALFD is not set |
58 | # CONFIG_TIMERFD is not set | 68 | # CONFIG_TIMERFD is not set |
59 | # CONFIG_EVENTFD is not set | 69 | # CONFIG_EVENTFD is not set |
70 | # CONFIG_AIO is not set | ||
60 | # CONFIG_VM_EVENT_COUNTERS is not set | 71 | # CONFIG_VM_EVENT_COUNTERS is not set |
61 | CONFIG_SLAB=y | 72 | # CONFIG_COMPAT_BRK is not set |
62 | # CONFIG_SLUB is not set | 73 | # CONFIG_SLAB is not set |
74 | CONFIG_SLUB=y | ||
63 | # CONFIG_SLOB is not set | 75 | # CONFIG_SLOB is not set |
64 | # CONFIG_PROFILING is not set | 76 | # CONFIG_PROFILING is not set |
65 | # CONFIG_MARKERS is not set | 77 | # CONFIG_MARKERS is not set |
66 | # CONFIG_HAVE_OPROFILE is not set | 78 | # CONFIG_SLOW_WORK is not set |
67 | # CONFIG_HAVE_KPROBES is not set | 79 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
68 | # CONFIG_HAVE_KRETPROBES is not set | ||
69 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
70 | CONFIG_SLABINFO=y | ||
71 | CONFIG_TINY_SHMEM=y | ||
72 | CONFIG_BASE_SMALL=0 | 80 | CONFIG_BASE_SMALL=0 |
73 | CONFIG_MODULES=y | 81 | # CONFIG_MODULES is not set |
74 | CONFIG_MODULE_UNLOAD=y | ||
75 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
76 | # CONFIG_MODVERSIONS is not set | ||
77 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
78 | # CONFIG_KMOD is not set | ||
79 | CONFIG_BLOCK=y | 82 | CONFIG_BLOCK=y |
80 | # CONFIG_LBD is not set | 83 | # CONFIG_LBD is not set |
81 | # CONFIG_LSF is not set | ||
82 | # CONFIG_BLK_DEV_BSG is not set | 84 | # CONFIG_BLK_DEV_BSG is not set |
85 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
83 | 86 | ||
84 | # | 87 | # |
85 | # IO Schedulers | 88 | # IO Schedulers |
@@ -93,7 +96,7 @@ CONFIG_IOSCHED_NOOP=y | |||
93 | # CONFIG_DEFAULT_CFQ is not set | 96 | # CONFIG_DEFAULT_CFQ is not set |
94 | CONFIG_DEFAULT_NOOP=y | 97 | CONFIG_DEFAULT_NOOP=y |
95 | CONFIG_DEFAULT_IOSCHED="noop" | 98 | CONFIG_DEFAULT_IOSCHED="noop" |
96 | CONFIG_CLASSIC_RCU=y | 99 | # CONFIG_FREEZER is not set |
97 | 100 | ||
98 | # | 101 | # |
99 | # Processor type and features | 102 | # Processor type and features |
@@ -145,44 +148,39 @@ CONFIG_RAM16BIT=y | |||
145 | # CONFIG_ROM is not set | 148 | # CONFIG_ROM is not set |
146 | CONFIG_RAMKERNEL=y | 149 | CONFIG_RAMKERNEL=y |
147 | # CONFIG_ROMKERNEL is not set | 150 | # CONFIG_ROMKERNEL is not set |
151 | CONFIG_PREEMPT_NONE=y | ||
152 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
153 | # CONFIG_PREEMPT is not set | ||
154 | # CONFIG_NO_HZ is not set | ||
155 | # CONFIG_HIGH_RES_TIMERS is not set | ||
156 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
148 | CONFIG_SELECT_MEMORY_MODEL=y | 157 | CONFIG_SELECT_MEMORY_MODEL=y |
149 | CONFIG_FLATMEM_MANUAL=y | 158 | CONFIG_FLATMEM_MANUAL=y |
150 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 159 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
151 | # CONFIG_SPARSEMEM_MANUAL is not set | 160 | # CONFIG_SPARSEMEM_MANUAL is not set |
152 | CONFIG_FLATMEM=y | 161 | CONFIG_FLATMEM=y |
153 | CONFIG_FLAT_NODE_MEM_MAP=y | 162 | CONFIG_FLAT_NODE_MEM_MAP=y |
154 | # CONFIG_SPARSEMEM_STATIC is not set | ||
155 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
156 | CONFIG_PAGEFLAGS_EXTENDED=y | 163 | CONFIG_PAGEFLAGS_EXTENDED=y |
157 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 164 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
158 | # CONFIG_RESOURCES_64BIT is not set | 165 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
159 | CONFIG_ZONE_DMA_FLAG=1 | 166 | CONFIG_ZONE_DMA_FLAG=1 |
160 | CONFIG_VIRT_TO_BUS=y | 167 | CONFIG_VIRT_TO_BUS=y |
168 | # CONFIG_UNEVICTABLE_LRU is not set | ||
161 | CONFIG_ISA_DMA_API=y | 169 | CONFIG_ISA_DMA_API=y |
162 | 170 | ||
163 | # | 171 | # |
164 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
165 | # | ||
166 | # CONFIG_PCI is not set | ||
167 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
168 | |||
169 | # | ||
170 | # Executable file formats | 172 | # Executable file formats |
171 | # | 173 | # |
172 | CONFIG_BINFMT_FLAT=y | 174 | CONFIG_BINFMT_FLAT=y |
173 | # CONFIG_BINFMT_ZFLAT is not set | 175 | # CONFIG_BINFMT_ZFLAT is not set |
174 | # CONFIG_BINFMT_SHARED_FLAT is not set | 176 | # CONFIG_BINFMT_SHARED_FLAT is not set |
175 | # CONFIG_BINFMT_AOUT is not set | 177 | # CONFIG_HAVE_AOUT is not set |
176 | # CONFIG_BINFMT_MISC is not set | 178 | # CONFIG_BINFMT_MISC is not set |
177 | 179 | ||
178 | # | 180 | # |
179 | # Power management options | 181 | # Power management options |
180 | # | 182 | # |
181 | # CONFIG_PM is not set | 183 | # CONFIG_PM is not set |
182 | |||
183 | # | ||
184 | # Networking | ||
185 | # | ||
186 | CONFIG_NET=y | 184 | CONFIG_NET=y |
187 | 185 | ||
188 | # | 186 | # |
@@ -223,6 +221,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
223 | # CONFIG_TIPC is not set | 221 | # CONFIG_TIPC is not set |
224 | # CONFIG_ATM is not set | 222 | # CONFIG_ATM is not set |
225 | # CONFIG_BRIDGE is not set | 223 | # CONFIG_BRIDGE is not set |
224 | # CONFIG_NET_DSA is not set | ||
226 | # CONFIG_VLAN_8021Q is not set | 225 | # CONFIG_VLAN_8021Q is not set |
227 | # CONFIG_DECNET is not set | 226 | # CONFIG_DECNET is not set |
228 | # CONFIG_LLC2 is not set | 227 | # CONFIG_LLC2 is not set |
@@ -232,7 +231,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
232 | # CONFIG_LAPB is not set | 231 | # CONFIG_LAPB is not set |
233 | # CONFIG_ECONET is not set | 232 | # CONFIG_ECONET is not set |
234 | # CONFIG_WAN_ROUTER is not set | 233 | # CONFIG_WAN_ROUTER is not set |
234 | # CONFIG_PHONET is not set | ||
235 | # CONFIG_NET_SCHED is not set | 235 | # CONFIG_NET_SCHED is not set |
236 | # CONFIG_DCB is not set | ||
236 | 237 | ||
237 | # | 238 | # |
238 | # Network testing | 239 | # Network testing |
@@ -243,14 +244,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
243 | # CONFIG_IRDA is not set | 244 | # CONFIG_IRDA is not set |
244 | # CONFIG_BT is not set | 245 | # CONFIG_BT is not set |
245 | # CONFIG_AF_RXRPC is not set | 246 | # CONFIG_AF_RXRPC is not set |
246 | 247 | # CONFIG_WIRELESS is not set | |
247 | # | 248 | # CONFIG_WIMAX is not set |
248 | # Wireless | ||
249 | # | ||
250 | # CONFIG_CFG80211 is not set | ||
251 | # CONFIG_WIRELESS_EXT is not set | ||
252 | # CONFIG_MAC80211 is not set | ||
253 | # CONFIG_IEEE80211 is not set | ||
254 | # CONFIG_RFKILL is not set | 249 | # CONFIG_RFKILL is not set |
255 | # CONFIG_NET_9P is not set | 250 | # CONFIG_NET_9P is not set |
256 | 251 | ||
@@ -289,10 +284,8 @@ CONFIG_MTD_BLOCK=y | |||
289 | # | 284 | # |
290 | # RAM/ROM/Flash chip drivers | 285 | # RAM/ROM/Flash chip drivers |
291 | # | 286 | # |
292 | CONFIG_MTD_CFI=y | 287 | # CONFIG_MTD_CFI is not set |
293 | # CONFIG_MTD_JEDECPROBE is not set | 288 | # CONFIG_MTD_JEDECPROBE is not set |
294 | CONFIG_MTD_GEN_PROBE=y | ||
295 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
296 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | 289 | CONFIG_MTD_MAP_BANK_WIDTH_1=y |
297 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | 290 | CONFIG_MTD_MAP_BANK_WIDTH_2=y |
298 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | 291 | CONFIG_MTD_MAP_BANK_WIDTH_4=y |
@@ -303,10 +296,6 @@ CONFIG_MTD_CFI_I1=y | |||
303 | CONFIG_MTD_CFI_I2=y | 296 | CONFIG_MTD_CFI_I2=y |
304 | # CONFIG_MTD_CFI_I4 is not set | 297 | # CONFIG_MTD_CFI_I4 is not set |
305 | # CONFIG_MTD_CFI_I8 is not set | 298 | # CONFIG_MTD_CFI_I8 is not set |
306 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
307 | CONFIG_MTD_CFI_AMDSTD=y | ||
308 | # CONFIG_MTD_CFI_STAA is not set | ||
309 | CONFIG_MTD_CFI_UTIL=y | ||
310 | CONFIG_MTD_RAM=y | 299 | CONFIG_MTD_RAM=y |
311 | # CONFIG_MTD_ROM is not set | 300 | # CONFIG_MTD_ROM is not set |
312 | # CONFIG_MTD_ABSENT is not set | 301 | # CONFIG_MTD_ABSENT is not set |
@@ -315,7 +304,6 @@ CONFIG_MTD_RAM=y | |||
315 | # Mapping drivers for chip access | 304 | # Mapping drivers for chip access |
316 | # | 305 | # |
317 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 306 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
318 | # CONFIG_MTD_PHYSMAP is not set | ||
319 | CONFIG_MTD_UCLINUX=y | 307 | CONFIG_MTD_UCLINUX=y |
320 | # CONFIG_MTD_PLATRAM is not set | 308 | # CONFIG_MTD_PLATRAM is not set |
321 | 309 | ||
@@ -337,6 +325,11 @@ CONFIG_MTD_UCLINUX=y | |||
337 | # CONFIG_MTD_ONENAND is not set | 325 | # CONFIG_MTD_ONENAND is not set |
338 | 326 | ||
339 | # | 327 | # |
328 | # LPDDR flash memory drivers | ||
329 | # | ||
330 | # CONFIG_MTD_LPDDR is not set | ||
331 | |||
332 | # | ||
340 | # UBI - Unsorted block images | 333 | # UBI - Unsorted block images |
341 | # | 334 | # |
342 | # CONFIG_MTD_UBI is not set | 335 | # CONFIG_MTD_UBI is not set |
@@ -351,6 +344,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
351 | # CONFIG_BLK_DEV_XIP is not set | 344 | # CONFIG_BLK_DEV_XIP is not set |
352 | # CONFIG_CDROM_PKTCDVD is not set | 345 | # CONFIG_CDROM_PKTCDVD is not set |
353 | # CONFIG_ATA_OVER_ETH is not set | 346 | # CONFIG_ATA_OVER_ETH is not set |
347 | # CONFIG_BLK_DEV_HD is not set | ||
354 | # CONFIG_MISC_DEVICES is not set | 348 | # CONFIG_MISC_DEVICES is not set |
355 | CONFIG_HAVE_IDE=y | 349 | CONFIG_HAVE_IDE=y |
356 | # CONFIG_IDE is not set | 350 | # CONFIG_IDE is not set |
@@ -364,7 +358,7 @@ CONFIG_HAVE_IDE=y | |||
364 | # CONFIG_SCSI_NETLINK is not set | 358 | # CONFIG_SCSI_NETLINK is not set |
365 | # CONFIG_MD is not set | 359 | # CONFIG_MD is not set |
366 | CONFIG_NETDEVICES=y | 360 | CONFIG_NETDEVICES=y |
367 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 361 | CONFIG_COMPAT_NET_DEV_OPS=y |
368 | # CONFIG_DUMMY is not set | 362 | # CONFIG_DUMMY is not set |
369 | # CONFIG_BONDING is not set | 363 | # CONFIG_BONDING is not set |
370 | # CONFIG_MACVLAN is not set | 364 | # CONFIG_MACVLAN is not set |
@@ -374,10 +368,15 @@ CONFIG_NETDEVICES=y | |||
374 | # CONFIG_PHYLIB is not set | 368 | # CONFIG_PHYLIB is not set |
375 | CONFIG_NET_ETHERNET=y | 369 | CONFIG_NET_ETHERNET=y |
376 | # CONFIG_MII is not set | 370 | # CONFIG_MII is not set |
371 | # CONFIG_ETHOC is not set | ||
372 | # CONFIG_DNET is not set | ||
377 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 373 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
378 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 374 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
379 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 375 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
380 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 376 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
377 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
378 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
379 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
381 | # CONFIG_B44 is not set | 380 | # CONFIG_B44 is not set |
382 | CONFIG_FEC=y | 381 | CONFIG_FEC=y |
383 | # CONFIG_FEC2 is not set | 382 | # CONFIG_FEC2 is not set |
@@ -389,8 +388,10 @@ CONFIG_FEC=y | |||
389 | # | 388 | # |
390 | # CONFIG_WLAN_PRE80211 is not set | 389 | # CONFIG_WLAN_PRE80211 is not set |
391 | # CONFIG_WLAN_80211 is not set | 390 | # CONFIG_WLAN_80211 is not set |
392 | # CONFIG_IWLWIFI is not set | 391 | |
393 | # CONFIG_IWLWIFI_LEDS is not set | 392 | # |
393 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
394 | # | ||
394 | # CONFIG_WAN is not set | 395 | # CONFIG_WAN is not set |
395 | # CONFIG_PPP is not set | 396 | # CONFIG_PPP is not set |
396 | # CONFIG_SLIP is not set | 397 | # CONFIG_SLIP is not set |
@@ -415,7 +416,7 @@ CONFIG_FEC=y | |||
415 | # Character devices | 416 | # Character devices |
416 | # | 417 | # |
417 | # CONFIG_VT is not set | 418 | # CONFIG_VT is not set |
418 | # CONFIG_DEVKMEM is not set | 419 | CONFIG_DEVKMEM=y |
419 | # CONFIG_SERIAL_NONSTANDARD is not set | 420 | # CONFIG_SERIAL_NONSTANDARD is not set |
420 | 421 | ||
421 | # | 422 | # |
@@ -428,7 +429,6 @@ CONFIG_FEC=y | |||
428 | # | 429 | # |
429 | CONFIG_SERIAL_CORE=y | 430 | CONFIG_SERIAL_CORE=y |
430 | CONFIG_SERIAL_CORE_CONSOLE=y | 431 | CONFIG_SERIAL_CORE_CONSOLE=y |
431 | # CONFIG_SERIAL_COLDFIRE is not set | ||
432 | CONFIG_SERIAL_MCF=y | 432 | CONFIG_SERIAL_MCF=y |
433 | CONFIG_SERIAL_MCF_BAUDRATE=115200 | 433 | CONFIG_SERIAL_MCF_BAUDRATE=115200 |
434 | CONFIG_SERIAL_MCF_CONSOLE=y | 434 | CONFIG_SERIAL_MCF_CONSOLE=y |
@@ -447,19 +447,23 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
447 | # CONFIG_POWER_SUPPLY is not set | 447 | # CONFIG_POWER_SUPPLY is not set |
448 | # CONFIG_HWMON is not set | 448 | # CONFIG_HWMON is not set |
449 | # CONFIG_THERMAL is not set | 449 | # CONFIG_THERMAL is not set |
450 | # CONFIG_THERMAL_HWMON is not set | ||
450 | # CONFIG_WATCHDOG is not set | 451 | # CONFIG_WATCHDOG is not set |
452 | CONFIG_SSB_POSSIBLE=y | ||
451 | 453 | ||
452 | # | 454 | # |
453 | # Sonics Silicon Backplane | 455 | # Sonics Silicon Backplane |
454 | # | 456 | # |
455 | CONFIG_SSB_POSSIBLE=y | ||
456 | # CONFIG_SSB is not set | 457 | # CONFIG_SSB is not set |
457 | 458 | ||
458 | # | 459 | # |
459 | # Multifunction device drivers | 460 | # Multifunction device drivers |
460 | # | 461 | # |
462 | # CONFIG_MFD_CORE is not set | ||
461 | # CONFIG_MFD_SM501 is not set | 463 | # CONFIG_MFD_SM501 is not set |
462 | # CONFIG_HTC_PASIC3 is not set | 464 | # CONFIG_HTC_PASIC3 is not set |
465 | # CONFIG_MFD_TMIO is not set | ||
466 | # CONFIG_REGULATOR is not set | ||
463 | 467 | ||
464 | # | 468 | # |
465 | # Multimedia devices | 469 | # Multimedia devices |
@@ -470,11 +474,12 @@ CONFIG_SSB_POSSIBLE=y | |||
470 | # | 474 | # |
471 | # CONFIG_VIDEO_DEV is not set | 475 | # CONFIG_VIDEO_DEV is not set |
472 | # CONFIG_DVB_CORE is not set | 476 | # CONFIG_DVB_CORE is not set |
477 | # CONFIG_VIDEO_MEDIA is not set | ||
473 | 478 | ||
474 | # | 479 | # |
475 | # Multimedia drivers | 480 | # Multimedia drivers |
476 | # | 481 | # |
477 | # CONFIG_DAB is not set | 482 | CONFIG_DAB=y |
478 | 483 | ||
479 | # | 484 | # |
480 | # Graphics support | 485 | # Graphics support |
@@ -488,10 +493,6 @@ CONFIG_SSB_POSSIBLE=y | |||
488 | # Display device support | 493 | # Display device support |
489 | # | 494 | # |
490 | # CONFIG_DISPLAY_SUPPORT is not set | 495 | # CONFIG_DISPLAY_SUPPORT is not set |
491 | |||
492 | # | ||
493 | # Sound | ||
494 | # | ||
495 | # CONFIG_SOUND is not set | 496 | # CONFIG_SOUND is not set |
496 | # CONFIG_USB_SUPPORT is not set | 497 | # CONFIG_USB_SUPPORT is not set |
497 | # CONFIG_MMC is not set | 498 | # CONFIG_MMC is not set |
@@ -499,7 +500,10 @@ CONFIG_SSB_POSSIBLE=y | |||
499 | # CONFIG_NEW_LEDS is not set | 500 | # CONFIG_NEW_LEDS is not set |
500 | # CONFIG_ACCESSIBILITY is not set | 501 | # CONFIG_ACCESSIBILITY is not set |
501 | # CONFIG_RTC_CLASS is not set | 502 | # CONFIG_RTC_CLASS is not set |
503 | # CONFIG_DMADEVICES is not set | ||
504 | # CONFIG_AUXDISPLAY is not set | ||
502 | # CONFIG_UIO is not set | 505 | # CONFIG_UIO is not set |
506 | # CONFIG_STAGING is not set | ||
503 | 507 | ||
504 | # | 508 | # |
505 | # File systems | 509 | # File systems |
@@ -507,11 +511,13 @@ CONFIG_SSB_POSSIBLE=y | |||
507 | CONFIG_EXT2_FS=y | 511 | CONFIG_EXT2_FS=y |
508 | # CONFIG_EXT2_FS_XATTR is not set | 512 | # CONFIG_EXT2_FS_XATTR is not set |
509 | # CONFIG_EXT3_FS is not set | 513 | # CONFIG_EXT3_FS is not set |
510 | # CONFIG_EXT4DEV_FS is not set | 514 | # CONFIG_EXT4_FS is not set |
511 | # CONFIG_REISERFS_FS is not set | 515 | # CONFIG_REISERFS_FS is not set |
512 | # CONFIG_JFS_FS is not set | 516 | # CONFIG_JFS_FS is not set |
513 | # CONFIG_FS_POSIX_ACL is not set | 517 | # CONFIG_FS_POSIX_ACL is not set |
518 | # CONFIG_FILE_LOCKING is not set | ||
514 | # CONFIG_XFS_FS is not set | 519 | # CONFIG_XFS_FS is not set |
520 | # CONFIG_BTRFS_FS is not set | ||
515 | # CONFIG_DNOTIFY is not set | 521 | # CONFIG_DNOTIFY is not set |
516 | # CONFIG_INOTIFY is not set | 522 | # CONFIG_INOTIFY is not set |
517 | # CONFIG_QUOTA is not set | 523 | # CONFIG_QUOTA is not set |
@@ -520,6 +526,11 @@ CONFIG_EXT2_FS=y | |||
520 | # CONFIG_FUSE_FS is not set | 526 | # CONFIG_FUSE_FS is not set |
521 | 527 | ||
522 | # | 528 | # |
529 | # Caches | ||
530 | # | ||
531 | # CONFIG_FSCACHE is not set | ||
532 | |||
533 | # | ||
523 | # CD-ROM/DVD Filesystems | 534 | # CD-ROM/DVD Filesystems |
524 | # | 535 | # |
525 | # CONFIG_ISO9660_FS is not set | 536 | # CONFIG_ISO9660_FS is not set |
@@ -540,10 +551,7 @@ CONFIG_PROC_SYSCTL=y | |||
540 | # CONFIG_SYSFS is not set | 551 | # CONFIG_SYSFS is not set |
541 | # CONFIG_TMPFS is not set | 552 | # CONFIG_TMPFS is not set |
542 | # CONFIG_HUGETLB_PAGE is not set | 553 | # CONFIG_HUGETLB_PAGE is not set |
543 | 554 | CONFIG_MISC_FILESYSTEMS=y | |
544 | # | ||
545 | # Miscellaneous filesystems | ||
546 | # | ||
547 | # CONFIG_ADFS_FS is not set | 555 | # CONFIG_ADFS_FS is not set |
548 | # CONFIG_AFFS_FS is not set | 556 | # CONFIG_AFFS_FS is not set |
549 | # CONFIG_HFS_FS is not set | 557 | # CONFIG_HFS_FS is not set |
@@ -553,13 +561,20 @@ CONFIG_PROC_SYSCTL=y | |||
553 | # CONFIG_EFS_FS is not set | 561 | # CONFIG_EFS_FS is not set |
554 | # CONFIG_JFFS2_FS is not set | 562 | # CONFIG_JFFS2_FS is not set |
555 | # CONFIG_CRAMFS is not set | 563 | # CONFIG_CRAMFS is not set |
564 | # CONFIG_SQUASHFS is not set | ||
556 | # CONFIG_VXFS_FS is not set | 565 | # CONFIG_VXFS_FS is not set |
557 | # CONFIG_MINIX_FS is not set | 566 | # CONFIG_MINIX_FS is not set |
567 | # CONFIG_OMFS_FS is not set | ||
558 | # CONFIG_HPFS_FS is not set | 568 | # CONFIG_HPFS_FS is not set |
559 | # CONFIG_QNX4FS_FS is not set | 569 | # CONFIG_QNX4FS_FS is not set |
560 | CONFIG_ROMFS_FS=y | 570 | CONFIG_ROMFS_FS=y |
571 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
572 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
573 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
574 | CONFIG_ROMFS_ON_MTD=y | ||
561 | # CONFIG_SYSV_FS is not set | 575 | # CONFIG_SYSV_FS is not set |
562 | # CONFIG_UFS_FS is not set | 576 | # CONFIG_UFS_FS is not set |
577 | # CONFIG_NILFS2_FS is not set | ||
563 | # CONFIG_NETWORK_FILESYSTEMS is not set | 578 | # CONFIG_NETWORK_FILESYSTEMS is not set |
564 | 579 | ||
565 | # | 580 | # |
@@ -581,10 +596,14 @@ CONFIG_FRAME_WARN=1024 | |||
581 | # CONFIG_HEADERS_CHECK is not set | 596 | # CONFIG_HEADERS_CHECK is not set |
582 | # CONFIG_DEBUG_KERNEL is not set | 597 | # CONFIG_DEBUG_KERNEL is not set |
583 | # CONFIG_DEBUG_BUGVERBOSE is not set | 598 | # CONFIG_DEBUG_BUGVERBOSE is not set |
599 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
600 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
601 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
584 | # CONFIG_SAMPLES is not set | 602 | # CONFIG_SAMPLES is not set |
585 | CONFIG_FULLDEBUG=y | 603 | CONFIG_FULLDEBUG=y |
586 | # CONFIG_HIGHPROFILE is not set | 604 | # CONFIG_HIGHPROFILE is not set |
587 | # CONFIG_BOOTPARAM is not set | 605 | CONFIG_BOOTPARAM=y |
606 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
588 | # CONFIG_NO_KERNEL_MSG is not set | 607 | # CONFIG_NO_KERNEL_MSG is not set |
589 | # CONFIG_BDM_DISABLE is not set | 608 | # CONFIG_BDM_DISABLE is not set |
590 | 609 | ||
@@ -592,19 +611,23 @@ CONFIG_FULLDEBUG=y | |||
592 | # Security options | 611 | # Security options |
593 | # | 612 | # |
594 | # CONFIG_KEYS is not set | 613 | # CONFIG_KEYS is not set |
614 | # CONFIG_SECURITYFS is not set | ||
595 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 615 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
596 | # CONFIG_CRYPTO is not set | 616 | # CONFIG_CRYPTO is not set |
617 | # CONFIG_BINARY_PRINTF is not set | ||
597 | 618 | ||
598 | # | 619 | # |
599 | # Library routines | 620 | # Library routines |
600 | # | 621 | # |
601 | CONFIG_BITREVERSE=y | 622 | CONFIG_BITREVERSE=y |
602 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 623 | CONFIG_GENERIC_FIND_LAST_BIT=y |
603 | # CONFIG_CRC_CCITT is not set | 624 | # CONFIG_CRC_CCITT is not set |
604 | # CONFIG_CRC16 is not set | 625 | # CONFIG_CRC16 is not set |
626 | # CONFIG_CRC_T10DIF is not set | ||
605 | # CONFIG_CRC_ITU_T is not set | 627 | # CONFIG_CRC_ITU_T is not set |
606 | CONFIG_CRC32=y | 628 | CONFIG_CRC32=y |
607 | # CONFIG_CRC7 is not set | 629 | # CONFIG_CRC7 is not set |
608 | # CONFIG_LIBCRC32C is not set | 630 | # CONFIG_LIBCRC32C is not set |
609 | CONFIG_HAS_IOMEM=y | 631 | CONFIG_HAS_IOMEM=y |
610 | CONFIG_HAS_DMA=y | 632 | CONFIG_HAS_DMA=y |
633 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/configs/m5249evb_defconfig b/arch/m68knommu/configs/m5249evb_defconfig index cc6458333d67..2efba32e33a0 100644 --- a/arch/m68knommu/configs/m5249evb_defconfig +++ b/arch/m68knommu/configs/m5249evb_defconfig | |||
@@ -1,6 +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.26-rc1 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Wed Apr 22 17:32:41 2009 | ||
4 | # | 5 | # |
5 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
6 | # CONFIG_MMU is not set | 7 | # CONFIG_MMU is not set |
@@ -15,9 +16,10 @@ CONFIG_GENERIC_HWEIGHT=y | |||
15 | CONFIG_GENERIC_HARDIRQS=y | 16 | CONFIG_GENERIC_HARDIRQS=y |
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 17 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
17 | CONFIG_GENERIC_TIME=y | 18 | CONFIG_GENERIC_TIME=y |
19 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
18 | CONFIG_TIME_LOW_RES=y | 20 | CONFIG_TIME_LOW_RES=y |
21 | # CONFIG_GENERIC_CLOCKEVENTS is not set | ||
19 | CONFIG_NO_IOPORT=y | 22 | CONFIG_NO_IOPORT=y |
20 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
21 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
22 | 24 | ||
23 | # | 25 | # |
@@ -29,11 +31,23 @@ CONFIG_INIT_ENV_ARG_LIMIT=32 | |||
29 | CONFIG_LOCALVERSION="" | 31 | CONFIG_LOCALVERSION="" |
30 | CONFIG_LOCALVERSION_AUTO=y | 32 | CONFIG_LOCALVERSION_AUTO=y |
31 | # CONFIG_SYSVIPC is not set | 33 | # CONFIG_SYSVIPC is not set |
34 | # CONFIG_POSIX_MQUEUE is not set | ||
32 | # CONFIG_BSD_PROCESS_ACCT is not set | 35 | # CONFIG_BSD_PROCESS_ACCT is not set |
36 | # CONFIG_TASKSTATS is not set | ||
37 | # CONFIG_AUDIT is not set | ||
38 | |||
39 | # | ||
40 | # RCU Subsystem | ||
41 | # | ||
42 | CONFIG_CLASSIC_RCU=y | ||
43 | # CONFIG_TREE_RCU is not set | ||
44 | # CONFIG_PREEMPT_RCU is not set | ||
45 | # CONFIG_TREE_RCU_TRACE is not set | ||
46 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
33 | # CONFIG_IKCONFIG is not set | 47 | # CONFIG_IKCONFIG is not set |
34 | CONFIG_LOG_BUF_SHIFT=14 | 48 | CONFIG_LOG_BUF_SHIFT=14 |
35 | # CONFIG_CGROUPS is not set | ||
36 | # CONFIG_GROUP_SCHED is not set | 49 | # CONFIG_GROUP_SCHED is not set |
50 | # CONFIG_CGROUPS is not set | ||
37 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 51 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
38 | # CONFIG_RELAY is not set | 52 | # CONFIG_RELAY is not set |
39 | # CONFIG_NAMESPACES is not set | 53 | # CONFIG_NAMESPACES is not set |
@@ -41,44 +55,37 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
41 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
42 | CONFIG_SYSCTL=y | 56 | CONFIG_SYSCTL=y |
43 | CONFIG_EMBEDDED=y | 57 | CONFIG_EMBEDDED=y |
44 | # CONFIG_UID16 is not set | 58 | CONFIG_UID16=y |
45 | # CONFIG_SYSCTL_SYSCALL is not set | 59 | CONFIG_SYSCTL_SYSCALL=y |
46 | # CONFIG_KALLSYMS is not set | 60 | # CONFIG_KALLSYMS is not set |
61 | # CONFIG_STRIP_ASM_SYMS is not set | ||
47 | # CONFIG_HOTPLUG is not set | 62 | # CONFIG_HOTPLUG is not set |
48 | CONFIG_PRINTK=y | 63 | CONFIG_PRINTK=y |
49 | CONFIG_BUG=y | 64 | CONFIG_BUG=y |
50 | CONFIG_ELF_CORE=y | 65 | CONFIG_ELF_CORE=y |
51 | # CONFIG_COMPAT_BRK is not set | ||
52 | CONFIG_BASE_FULL=y | 66 | CONFIG_BASE_FULL=y |
53 | # CONFIG_FUTEX is not set | 67 | # CONFIG_FUTEX is not set |
54 | # CONFIG_EPOLL is not set | 68 | # CONFIG_EPOLL is not set |
55 | # CONFIG_SIGNALFD is not set | 69 | # CONFIG_SIGNALFD is not set |
56 | # CONFIG_TIMERFD is not set | 70 | # CONFIG_TIMERFD is not set |
57 | # CONFIG_EVENTFD is not set | 71 | # CONFIG_EVENTFD is not set |
72 | # CONFIG_AIO is not set | ||
58 | # CONFIG_VM_EVENT_COUNTERS is not set | 73 | # CONFIG_VM_EVENT_COUNTERS is not set |
59 | CONFIG_SLAB=y | 74 | # CONFIG_SLUB_DEBUG is not set |
60 | # CONFIG_SLUB is not set | 75 | CONFIG_COMPAT_BRK=y |
76 | # CONFIG_SLAB is not set | ||
77 | CONFIG_SLUB=y | ||
61 | # CONFIG_SLOB is not set | 78 | # CONFIG_SLOB is not set |
62 | # CONFIG_PROFILING is not set | 79 | # CONFIG_PROFILING is not set |
63 | # CONFIG_MARKERS is not set | 80 | # CONFIG_MARKERS is not set |
64 | # CONFIG_HAVE_OPROFILE is not set | 81 | # CONFIG_SLOW_WORK is not set |
65 | # CONFIG_HAVE_KPROBES is not set | 82 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
66 | # CONFIG_HAVE_KRETPROBES is not set | ||
67 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
68 | CONFIG_SLABINFO=y | ||
69 | CONFIG_TINY_SHMEM=y | ||
70 | CONFIG_BASE_SMALL=0 | 83 | CONFIG_BASE_SMALL=0 |
71 | CONFIG_MODULES=y | 84 | # CONFIG_MODULES is not set |
72 | CONFIG_MODULE_UNLOAD=y | ||
73 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
74 | # CONFIG_MODVERSIONS is not set | ||
75 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
76 | # CONFIG_KMOD is not set | ||
77 | CONFIG_BLOCK=y | 85 | CONFIG_BLOCK=y |
78 | # CONFIG_LBD is not set | 86 | # CONFIG_LBD is not set |
79 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
80 | # CONFIG_LSF is not set | ||
81 | # CONFIG_BLK_DEV_BSG is not set | 87 | # CONFIG_BLK_DEV_BSG is not set |
88 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
82 | 89 | ||
83 | # | 90 | # |
84 | # IO Schedulers | 91 | # IO Schedulers |
@@ -92,7 +99,7 @@ CONFIG_IOSCHED_NOOP=y | |||
92 | # CONFIG_DEFAULT_CFQ is not set | 99 | # CONFIG_DEFAULT_CFQ is not set |
93 | CONFIG_DEFAULT_NOOP=y | 100 | CONFIG_DEFAULT_NOOP=y |
94 | CONFIG_DEFAULT_IOSCHED="noop" | 101 | CONFIG_DEFAULT_IOSCHED="noop" |
95 | CONFIG_CLASSIC_RCU=y | 102 | # CONFIG_FREEZER is not set |
96 | 103 | ||
97 | # | 104 | # |
98 | # Processor type and features | 105 | # Processor type and features |
@@ -144,45 +151,103 @@ CONFIG_RAMAUTOBIT=y | |||
144 | # CONFIG_ROM is not set | 151 | # CONFIG_ROM is not set |
145 | CONFIG_RAMKERNEL=y | 152 | CONFIG_RAMKERNEL=y |
146 | # CONFIG_ROMKERNEL is not set | 153 | # CONFIG_ROMKERNEL is not set |
154 | CONFIG_PREEMPT_NONE=y | ||
155 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
156 | # CONFIG_PREEMPT is not set | ||
147 | CONFIG_SELECT_MEMORY_MODEL=y | 157 | CONFIG_SELECT_MEMORY_MODEL=y |
148 | CONFIG_FLATMEM_MANUAL=y | 158 | CONFIG_FLATMEM_MANUAL=y |
149 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 159 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
150 | # CONFIG_SPARSEMEM_MANUAL is not set | 160 | # CONFIG_SPARSEMEM_MANUAL is not set |
151 | CONFIG_FLATMEM=y | 161 | CONFIG_FLATMEM=y |
152 | CONFIG_FLAT_NODE_MEM_MAP=y | 162 | CONFIG_FLAT_NODE_MEM_MAP=y |
153 | # CONFIG_SPARSEMEM_STATIC is not set | ||
154 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
155 | CONFIG_PAGEFLAGS_EXTENDED=y | 163 | CONFIG_PAGEFLAGS_EXTENDED=y |
156 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 164 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
157 | # CONFIG_RESOURCES_64BIT is not set | 165 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
158 | CONFIG_ZONE_DMA_FLAG=1 | 166 | CONFIG_ZONE_DMA_FLAG=1 |
159 | CONFIG_VIRT_TO_BUS=y | 167 | CONFIG_VIRT_TO_BUS=y |
168 | # CONFIG_UNEVICTABLE_LRU is not set | ||
160 | CONFIG_ISA_DMA_API=y | 169 | CONFIG_ISA_DMA_API=y |
161 | 170 | ||
162 | # | 171 | # |
163 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
164 | # | ||
165 | # CONFIG_PCI is not set | ||
166 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
167 | |||
168 | # | ||
169 | # Executable file formats | 172 | # Executable file formats |
170 | # | 173 | # |
171 | CONFIG_BINFMT_FLAT=y | 174 | CONFIG_BINFMT_FLAT=y |
172 | # CONFIG_BINFMT_ZFLAT is not set | 175 | # CONFIG_BINFMT_ZFLAT is not set |
173 | # CONFIG_BINFMT_SHARED_FLAT is not set | 176 | # CONFIG_BINFMT_SHARED_FLAT is not set |
174 | # CONFIG_BINFMT_AOUT is not set | 177 | # CONFIG_HAVE_AOUT is not set |
175 | # CONFIG_BINFMT_MISC is not set | 178 | # CONFIG_BINFMT_MISC is not set |
176 | 179 | ||
177 | # | 180 | # |
178 | # Power management options | 181 | # Power management options |
179 | # | 182 | # |
180 | # CONFIG_PM is not set | 183 | # CONFIG_PM is not set |
181 | 184 | CONFIG_NET=y | |
182 | # | 185 | |
183 | # Networking | 186 | # |
184 | # | 187 | # Networking options |
185 | # CONFIG_NET is not set | 188 | # |
189 | CONFIG_PACKET=y | ||
190 | # CONFIG_PACKET_MMAP is not set | ||
191 | CONFIG_UNIX=y | ||
192 | # CONFIG_NET_KEY is not set | ||
193 | CONFIG_INET=y | ||
194 | # CONFIG_IP_MULTICAST is not set | ||
195 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
196 | CONFIG_IP_FIB_HASH=y | ||
197 | # CONFIG_IP_PNP is not set | ||
198 | # CONFIG_NET_IPIP is not set | ||
199 | # CONFIG_NET_IPGRE is not set | ||
200 | # CONFIG_ARPD is not set | ||
201 | # CONFIG_SYN_COOKIES is not set | ||
202 | # CONFIG_INET_AH is not set | ||
203 | # CONFIG_INET_ESP is not set | ||
204 | # CONFIG_INET_IPCOMP is not set | ||
205 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
206 | # CONFIG_INET_TUNNEL is not set | ||
207 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
208 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
209 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
210 | # CONFIG_INET_LRO is not set | ||
211 | # CONFIG_INET_DIAG is not set | ||
212 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
213 | CONFIG_TCP_CONG_CUBIC=y | ||
214 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
215 | # CONFIG_TCP_MD5SIG is not set | ||
216 | # CONFIG_IPV6 is not set | ||
217 | # CONFIG_NETWORK_SECMARK is not set | ||
218 | # CONFIG_NETFILTER is not set | ||
219 | # CONFIG_IP_DCCP is not set | ||
220 | # CONFIG_IP_SCTP is not set | ||
221 | # CONFIG_TIPC is not set | ||
222 | # CONFIG_ATM is not set | ||
223 | # CONFIG_BRIDGE is not set | ||
224 | # CONFIG_NET_DSA is not set | ||
225 | # CONFIG_VLAN_8021Q is not set | ||
226 | # CONFIG_DECNET is not set | ||
227 | # CONFIG_LLC2 is not set | ||
228 | # CONFIG_IPX is not set | ||
229 | # CONFIG_ATALK is not set | ||
230 | # CONFIG_X25 is not set | ||
231 | # CONFIG_LAPB is not set | ||
232 | # CONFIG_ECONET is not set | ||
233 | # CONFIG_WAN_ROUTER is not set | ||
234 | # CONFIG_PHONET is not set | ||
235 | # CONFIG_NET_SCHED is not set | ||
236 | # CONFIG_DCB is not set | ||
237 | |||
238 | # | ||
239 | # Network testing | ||
240 | # | ||
241 | # CONFIG_NET_PKTGEN is not set | ||
242 | # CONFIG_HAMRADIO is not set | ||
243 | # CONFIG_CAN is not set | ||
244 | # CONFIG_IRDA is not set | ||
245 | # CONFIG_BT is not set | ||
246 | # CONFIG_AF_RXRPC is not set | ||
247 | # CONFIG_WIRELESS is not set | ||
248 | # CONFIG_WIMAX is not set | ||
249 | # CONFIG_RFKILL is not set | ||
250 | # CONFIG_NET_9P is not set | ||
186 | 251 | ||
187 | # | 252 | # |
188 | # Device Drivers | 253 | # Device Drivers |
@@ -194,6 +259,7 @@ CONFIG_BINFMT_FLAT=y | |||
194 | CONFIG_STANDALONE=y | 259 | CONFIG_STANDALONE=y |
195 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 260 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
196 | # CONFIG_SYS_HYPERVISOR is not set | 261 | # CONFIG_SYS_HYPERVISOR is not set |
262 | # CONFIG_CONNECTOR is not set | ||
197 | CONFIG_MTD=y | 263 | CONFIG_MTD=y |
198 | # CONFIG_MTD_DEBUG is not set | 264 | # CONFIG_MTD_DEBUG is not set |
199 | # CONFIG_MTD_CONCAT is not set | 265 | # CONFIG_MTD_CONCAT is not set |
@@ -259,6 +325,11 @@ CONFIG_MTD_UCLINUX=y | |||
259 | # CONFIG_MTD_ONENAND is not set | 325 | # CONFIG_MTD_ONENAND is not set |
260 | 326 | ||
261 | # | 327 | # |
328 | # LPDDR flash memory drivers | ||
329 | # | ||
330 | # CONFIG_MTD_LPDDR is not set | ||
331 | |||
332 | # | ||
262 | # UBI - Unsorted block images | 333 | # UBI - Unsorted block images |
263 | # | 334 | # |
264 | # CONFIG_MTD_UBI is not set | 335 | # CONFIG_MTD_UBI is not set |
@@ -266,14 +337,15 @@ CONFIG_MTD_UCLINUX=y | |||
266 | CONFIG_BLK_DEV=y | 337 | CONFIG_BLK_DEV=y |
267 | # CONFIG_BLK_DEV_COW_COMMON is not set | 338 | # CONFIG_BLK_DEV_COW_COMMON is not set |
268 | # CONFIG_BLK_DEV_LOOP is not set | 339 | # CONFIG_BLK_DEV_LOOP is not set |
340 | # CONFIG_BLK_DEV_NBD is not set | ||
269 | CONFIG_BLK_DEV_RAM=y | 341 | CONFIG_BLK_DEV_RAM=y |
270 | CONFIG_BLK_DEV_RAM_COUNT=16 | 342 | CONFIG_BLK_DEV_RAM_COUNT=16 |
271 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 343 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
272 | # CONFIG_BLK_DEV_XIP is not set | 344 | # CONFIG_BLK_DEV_XIP is not set |
273 | # CONFIG_CDROM_PKTCDVD is not set | 345 | # CONFIG_CDROM_PKTCDVD is not set |
274 | CONFIG_MISC_DEVICES=y | 346 | # CONFIG_ATA_OVER_ETH is not set |
275 | # CONFIG_EEPROM_93CX6 is not set | 347 | # CONFIG_BLK_DEV_HD is not set |
276 | # CONFIG_ENCLOSURE_SERVICES is not set | 348 | # CONFIG_MISC_DEVICES is not set |
277 | CONFIG_HAVE_IDE=y | 349 | CONFIG_HAVE_IDE=y |
278 | # CONFIG_IDE is not set | 350 | # CONFIG_IDE is not set |
279 | 351 | ||
@@ -285,6 +357,56 @@ CONFIG_HAVE_IDE=y | |||
285 | # CONFIG_SCSI_DMA is not set | 357 | # CONFIG_SCSI_DMA is not set |
286 | # CONFIG_SCSI_NETLINK is not set | 358 | # CONFIG_SCSI_NETLINK is not set |
287 | # CONFIG_MD is not set | 359 | # CONFIG_MD is not set |
360 | CONFIG_NETDEVICES=y | ||
361 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
362 | # CONFIG_DUMMY is not set | ||
363 | # CONFIG_BONDING is not set | ||
364 | # CONFIG_MACVLAN is not set | ||
365 | # CONFIG_EQUALIZER is not set | ||
366 | # CONFIG_TUN is not set | ||
367 | # CONFIG_VETH is not set | ||
368 | # CONFIG_PHYLIB is not set | ||
369 | CONFIG_NET_ETHERNET=y | ||
370 | # CONFIG_MII is not set | ||
371 | # CONFIG_ETHOC is not set | ||
372 | # CONFIG_DNET is not set | ||
373 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
374 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
375 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
376 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
377 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
378 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
379 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
380 | # CONFIG_B44 is not set | ||
381 | # CONFIG_NETDEV_1000 is not set | ||
382 | # CONFIG_NETDEV_10000 is not set | ||
383 | |||
384 | # | ||
385 | # Wireless LAN | ||
386 | # | ||
387 | # CONFIG_WLAN_PRE80211 is not set | ||
388 | # CONFIG_WLAN_80211 is not set | ||
389 | |||
390 | # | ||
391 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
392 | # | ||
393 | # CONFIG_WAN is not set | ||
394 | CONFIG_PPP=y | ||
395 | # CONFIG_PPP_MULTILINK is not set | ||
396 | # CONFIG_PPP_FILTER is not set | ||
397 | # CONFIG_PPP_ASYNC is not set | ||
398 | # CONFIG_PPP_SYNC_TTY is not set | ||
399 | # CONFIG_PPP_DEFLATE is not set | ||
400 | # CONFIG_PPP_BSDCOMP is not set | ||
401 | # CONFIG_PPP_MPPE is not set | ||
402 | # CONFIG_PPPOE is not set | ||
403 | # CONFIG_PPPOL2TP is not set | ||
404 | # CONFIG_SLIP is not set | ||
405 | CONFIG_SLHC=y | ||
406 | # CONFIG_NETCONSOLE is not set | ||
407 | # CONFIG_NETPOLL is not set | ||
408 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
409 | # CONFIG_ISDN is not set | ||
288 | # CONFIG_PHONE is not set | 410 | # CONFIG_PHONE is not set |
289 | 411 | ||
290 | # | 412 | # |
@@ -302,7 +424,7 @@ CONFIG_HAVE_IDE=y | |||
302 | # Character devices | 424 | # Character devices |
303 | # | 425 | # |
304 | # CONFIG_VT is not set | 426 | # CONFIG_VT is not set |
305 | # CONFIG_DEVKMEM is not set | 427 | CONFIG_DEVKMEM=y |
306 | # CONFIG_SERIAL_NONSTANDARD is not set | 428 | # CONFIG_SERIAL_NONSTANDARD is not set |
307 | 429 | ||
308 | # | 430 | # |
@@ -315,7 +437,6 @@ CONFIG_HAVE_IDE=y | |||
315 | # | 437 | # |
316 | CONFIG_SERIAL_CORE=y | 438 | CONFIG_SERIAL_CORE=y |
317 | CONFIG_SERIAL_CORE_CONSOLE=y | 439 | CONFIG_SERIAL_CORE_CONSOLE=y |
318 | # CONFIG_SERIAL_COLDFIRE is not set | ||
319 | CONFIG_SERIAL_MCF=y | 440 | CONFIG_SERIAL_MCF=y |
320 | CONFIG_SERIAL_MCF_BAUDRATE=19200 | 441 | CONFIG_SERIAL_MCF_BAUDRATE=19200 |
321 | CONFIG_SERIAL_MCF_CONSOLE=y | 442 | CONFIG_SERIAL_MCF_CONSOLE=y |
@@ -323,7 +444,8 @@ CONFIG_SERIAL_MCF_CONSOLE=y | |||
323 | CONFIG_LEGACY_PTYS=y | 444 | CONFIG_LEGACY_PTYS=y |
324 | CONFIG_LEGACY_PTY_COUNT=256 | 445 | CONFIG_LEGACY_PTY_COUNT=256 |
325 | # CONFIG_IPMI_HANDLER is not set | 446 | # CONFIG_IPMI_HANDLER is not set |
326 | # CONFIG_HW_RANDOM is not set | 447 | CONFIG_HW_RANDOM=y |
448 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
327 | # CONFIG_GEN_RTC is not set | 449 | # CONFIG_GEN_RTC is not set |
328 | # CONFIG_R3964 is not set | 450 | # CONFIG_R3964 is not set |
329 | # CONFIG_RAW_DRIVER is not set | 451 | # CONFIG_RAW_DRIVER is not set |
@@ -334,19 +456,23 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
334 | # CONFIG_POWER_SUPPLY is not set | 456 | # CONFIG_POWER_SUPPLY is not set |
335 | # CONFIG_HWMON is not set | 457 | # CONFIG_HWMON is not set |
336 | # CONFIG_THERMAL is not set | 458 | # CONFIG_THERMAL is not set |
459 | # CONFIG_THERMAL_HWMON is not set | ||
337 | # CONFIG_WATCHDOG is not set | 460 | # CONFIG_WATCHDOG is not set |
461 | CONFIG_SSB_POSSIBLE=y | ||
338 | 462 | ||
339 | # | 463 | # |
340 | # Sonics Silicon Backplane | 464 | # Sonics Silicon Backplane |
341 | # | 465 | # |
342 | CONFIG_SSB_POSSIBLE=y | ||
343 | # CONFIG_SSB is not set | 466 | # CONFIG_SSB is not set |
344 | 467 | ||
345 | # | 468 | # |
346 | # Multifunction device drivers | 469 | # Multifunction device drivers |
347 | # | 470 | # |
471 | # CONFIG_MFD_CORE is not set | ||
348 | # CONFIG_MFD_SM501 is not set | 472 | # CONFIG_MFD_SM501 is not set |
349 | # CONFIG_HTC_PASIC3 is not set | 473 | # CONFIG_HTC_PASIC3 is not set |
474 | # CONFIG_MFD_TMIO is not set | ||
475 | # CONFIG_REGULATOR is not set | ||
350 | 476 | ||
351 | # | 477 | # |
352 | # Multimedia devices | 478 | # Multimedia devices |
@@ -356,11 +482,13 @@ CONFIG_SSB_POSSIBLE=y | |||
356 | # Multimedia core support | 482 | # Multimedia core support |
357 | # | 483 | # |
358 | # CONFIG_VIDEO_DEV is not set | 484 | # CONFIG_VIDEO_DEV is not set |
485 | # CONFIG_DVB_CORE is not set | ||
486 | # CONFIG_VIDEO_MEDIA is not set | ||
359 | 487 | ||
360 | # | 488 | # |
361 | # Multimedia drivers | 489 | # Multimedia drivers |
362 | # | 490 | # |
363 | # CONFIG_DAB is not set | 491 | CONFIG_DAB=y |
364 | 492 | ||
365 | # | 493 | # |
366 | # Graphics support | 494 | # Graphics support |
@@ -374,10 +502,6 @@ CONFIG_SSB_POSSIBLE=y | |||
374 | # Display device support | 502 | # Display device support |
375 | # | 503 | # |
376 | # CONFIG_DISPLAY_SUPPORT is not set | 504 | # CONFIG_DISPLAY_SUPPORT is not set |
377 | |||
378 | # | ||
379 | # Sound | ||
380 | # | ||
381 | # CONFIG_SOUND is not set | 505 | # CONFIG_SOUND is not set |
382 | # CONFIG_USB_SUPPORT is not set | 506 | # CONFIG_USB_SUPPORT is not set |
383 | # CONFIG_MMC is not set | 507 | # CONFIG_MMC is not set |
@@ -385,7 +509,10 @@ CONFIG_SSB_POSSIBLE=y | |||
385 | # CONFIG_NEW_LEDS is not set | 509 | # CONFIG_NEW_LEDS is not set |
386 | # CONFIG_ACCESSIBILITY is not set | 510 | # CONFIG_ACCESSIBILITY is not set |
387 | # CONFIG_RTC_CLASS is not set | 511 | # CONFIG_RTC_CLASS is not set |
512 | # CONFIG_DMADEVICES is not set | ||
513 | # CONFIG_AUXDISPLAY is not set | ||
388 | # CONFIG_UIO is not set | 514 | # CONFIG_UIO is not set |
515 | # CONFIG_STAGING is not set | ||
389 | 516 | ||
390 | # | 517 | # |
391 | # File systems | 518 | # File systems |
@@ -393,19 +520,28 @@ CONFIG_SSB_POSSIBLE=y | |||
393 | CONFIG_EXT2_FS=y | 520 | CONFIG_EXT2_FS=y |
394 | # CONFIG_EXT2_FS_XATTR is not set | 521 | # CONFIG_EXT2_FS_XATTR is not set |
395 | # CONFIG_EXT3_FS is not set | 522 | # CONFIG_EXT3_FS is not set |
396 | # CONFIG_EXT4DEV_FS is not set | 523 | # CONFIG_EXT4_FS is not set |
397 | # CONFIG_REISERFS_FS is not set | 524 | # CONFIG_REISERFS_FS is not set |
398 | # CONFIG_JFS_FS is not set | 525 | # CONFIG_JFS_FS is not set |
399 | # CONFIG_FS_POSIX_ACL is not set | 526 | # CONFIG_FS_POSIX_ACL is not set |
527 | # CONFIG_FILE_LOCKING is not set | ||
400 | # CONFIG_XFS_FS is not set | 528 | # CONFIG_XFS_FS is not set |
401 | # CONFIG_DNOTIFY is not set | 529 | # CONFIG_OCFS2_FS is not set |
402 | # CONFIG_INOTIFY is not set | 530 | # CONFIG_BTRFS_FS is not set |
531 | CONFIG_DNOTIFY=y | ||
532 | CONFIG_INOTIFY=y | ||
533 | CONFIG_INOTIFY_USER=y | ||
403 | # CONFIG_QUOTA is not set | 534 | # CONFIG_QUOTA is not set |
404 | # CONFIG_AUTOFS_FS is not set | 535 | # CONFIG_AUTOFS_FS is not set |
405 | # CONFIG_AUTOFS4_FS is not set | 536 | # CONFIG_AUTOFS4_FS is not set |
406 | # CONFIG_FUSE_FS is not set | 537 | # CONFIG_FUSE_FS is not set |
407 | 538 | ||
408 | # | 539 | # |
540 | # Caches | ||
541 | # | ||
542 | # CONFIG_FSCACHE is not set | ||
543 | |||
544 | # | ||
409 | # CD-ROM/DVD Filesystems | 545 | # CD-ROM/DVD Filesystems |
410 | # | 546 | # |
411 | # CONFIG_ISO9660_FS is not set | 547 | # CONFIG_ISO9660_FS is not set |
@@ -427,10 +563,7 @@ CONFIG_SYSFS=y | |||
427 | # CONFIG_TMPFS is not set | 563 | # CONFIG_TMPFS is not set |
428 | # CONFIG_HUGETLB_PAGE is not set | 564 | # CONFIG_HUGETLB_PAGE is not set |
429 | # CONFIG_CONFIGFS_FS is not set | 565 | # CONFIG_CONFIGFS_FS is not set |
430 | 566 | CONFIG_MISC_FILESYSTEMS=y | |
431 | # | ||
432 | # Miscellaneous filesystems | ||
433 | # | ||
434 | # CONFIG_ADFS_FS is not set | 567 | # CONFIG_ADFS_FS is not set |
435 | # CONFIG_AFFS_FS is not set | 568 | # CONFIG_AFFS_FS is not set |
436 | # CONFIG_HFS_FS is not set | 569 | # CONFIG_HFS_FS is not set |
@@ -440,13 +573,21 @@ CONFIG_SYSFS=y | |||
440 | # CONFIG_EFS_FS is not set | 573 | # CONFIG_EFS_FS is not set |
441 | # CONFIG_JFFS2_FS is not set | 574 | # CONFIG_JFFS2_FS is not set |
442 | # CONFIG_CRAMFS is not set | 575 | # CONFIG_CRAMFS is not set |
576 | # CONFIG_SQUASHFS is not set | ||
443 | # CONFIG_VXFS_FS is not set | 577 | # CONFIG_VXFS_FS is not set |
444 | # CONFIG_MINIX_FS is not set | 578 | # CONFIG_MINIX_FS is not set |
579 | # CONFIG_OMFS_FS is not set | ||
445 | # CONFIG_HPFS_FS is not set | 580 | # CONFIG_HPFS_FS is not set |
446 | # CONFIG_QNX4FS_FS is not set | 581 | # CONFIG_QNX4FS_FS is not set |
447 | CONFIG_ROMFS_FS=y | 582 | CONFIG_ROMFS_FS=y |
583 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
584 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
585 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
586 | CONFIG_ROMFS_ON_MTD=y | ||
448 | # CONFIG_SYSV_FS is not set | 587 | # CONFIG_SYSV_FS is not set |
449 | # CONFIG_UFS_FS is not set | 588 | # CONFIG_UFS_FS is not set |
589 | # CONFIG_NILFS2_FS is not set | ||
590 | # CONFIG_NETWORK_FILESYSTEMS is not set | ||
450 | 591 | ||
451 | # | 592 | # |
452 | # Partition Types | 593 | # Partition Types |
@@ -454,6 +595,7 @@ CONFIG_ROMFS_FS=y | |||
454 | # CONFIG_PARTITION_ADVANCED is not set | 595 | # CONFIG_PARTITION_ADVANCED is not set |
455 | CONFIG_MSDOS_PARTITION=y | 596 | CONFIG_MSDOS_PARTITION=y |
456 | # CONFIG_NLS is not set | 597 | # CONFIG_NLS is not set |
598 | # CONFIG_DLM is not set | ||
457 | 599 | ||
458 | # | 600 | # |
459 | # Kernel hacking | 601 | # Kernel hacking |
@@ -468,10 +610,14 @@ CONFIG_FRAME_WARN=1024 | |||
468 | # CONFIG_HEADERS_CHECK is not set | 610 | # CONFIG_HEADERS_CHECK is not set |
469 | # CONFIG_DEBUG_KERNEL is not set | 611 | # CONFIG_DEBUG_KERNEL is not set |
470 | # CONFIG_DEBUG_BUGVERBOSE is not set | 612 | # CONFIG_DEBUG_BUGVERBOSE is not set |
613 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
614 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
615 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
471 | # CONFIG_SAMPLES is not set | 616 | # CONFIG_SAMPLES is not set |
472 | # CONFIG_FULLDEBUG is not set | 617 | # CONFIG_FULLDEBUG is not set |
473 | # CONFIG_HIGHPROFILE is not set | 618 | # CONFIG_HIGHPROFILE is not set |
474 | # CONFIG_BOOTPARAM is not set | 619 | CONFIG_BOOTPARAM=y |
620 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
475 | # CONFIG_NO_KERNEL_MSG is not set | 621 | # CONFIG_NO_KERNEL_MSG is not set |
476 | # CONFIG_BDM_DISABLE is not set | 622 | # CONFIG_BDM_DISABLE is not set |
477 | 623 | ||
@@ -480,18 +626,22 @@ CONFIG_FRAME_WARN=1024 | |||
480 | # | 626 | # |
481 | # CONFIG_KEYS is not set | 627 | # CONFIG_KEYS is not set |
482 | # CONFIG_SECURITY is not set | 628 | # CONFIG_SECURITY is not set |
629 | # CONFIG_SECURITYFS is not set | ||
483 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 630 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
484 | # CONFIG_CRYPTO is not set | 631 | # CONFIG_CRYPTO is not set |
632 | # CONFIG_BINARY_PRINTF is not set | ||
485 | 633 | ||
486 | # | 634 | # |
487 | # Library routines | 635 | # Library routines |
488 | # | 636 | # |
489 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 637 | CONFIG_GENERIC_FIND_LAST_BIT=y |
490 | # CONFIG_CRC_CCITT is not set | 638 | # CONFIG_CRC_CCITT is not set |
491 | # CONFIG_CRC16 is not set | 639 | # CONFIG_CRC16 is not set |
640 | # CONFIG_CRC_T10DIF is not set | ||
492 | # CONFIG_CRC_ITU_T is not set | 641 | # CONFIG_CRC_ITU_T is not set |
493 | # CONFIG_CRC32 is not set | 642 | # CONFIG_CRC32 is not set |
494 | # CONFIG_CRC7 is not set | 643 | # CONFIG_CRC7 is not set |
495 | # CONFIG_LIBCRC32C is not set | 644 | # CONFIG_LIBCRC32C is not set |
496 | CONFIG_HAS_IOMEM=y | 645 | CONFIG_HAS_IOMEM=y |
497 | CONFIG_HAS_DMA=y | 646 | CONFIG_HAS_DMA=y |
647 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/configs/m5272c3_defconfig b/arch/m68knommu/configs/m5272c3_defconfig new file mode 100644 index 000000000000..f37852a34218 --- /dev/null +++ b/arch/m68knommu/configs/m5272c3_defconfig | |||
@@ -0,0 +1,645 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.30-rc2 | ||
4 | # Wed Apr 22 17:17:30 2009 | ||
5 | # | ||
6 | CONFIG_M68K=y | ||
7 | # CONFIG_MMU is not set | ||
8 | # CONFIG_FPU is not set | ||
9 | CONFIG_ZONE_DMA=y | ||
10 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
11 | # CONFIG_RWSEM_XCHGADD_ALGORITHM is not set | ||
12 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
13 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
14 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
15 | CONFIG_GENERIC_HWEIGHT=y | ||
16 | CONFIG_GENERIC_HARDIRQS=y | ||
17 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
18 | CONFIG_GENERIC_TIME=y | ||
19 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
20 | CONFIG_TIME_LOW_RES=y | ||
21 | # CONFIG_GENERIC_CLOCKEVENTS is not set | ||
22 | CONFIG_NO_IOPORT=y | ||
23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
24 | |||
25 | # | ||
26 | # General setup | ||
27 | # | ||
28 | CONFIG_EXPERIMENTAL=y | ||
29 | CONFIG_BROKEN_ON_SMP=y | ||
30 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
31 | CONFIG_LOCALVERSION="" | ||
32 | CONFIG_LOCALVERSION_AUTO=y | ||
33 | # CONFIG_SYSVIPC is not set | ||
34 | # CONFIG_POSIX_MQUEUE is not set | ||
35 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
36 | # CONFIG_TASKSTATS is not set | ||
37 | # CONFIG_AUDIT is not set | ||
38 | |||
39 | # | ||
40 | # RCU Subsystem | ||
41 | # | ||
42 | CONFIG_CLASSIC_RCU=y | ||
43 | # CONFIG_TREE_RCU is not set | ||
44 | # CONFIG_PREEMPT_RCU is not set | ||
45 | # CONFIG_TREE_RCU_TRACE is not set | ||
46 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
47 | # CONFIG_IKCONFIG is not set | ||
48 | CONFIG_LOG_BUF_SHIFT=14 | ||
49 | # CONFIG_GROUP_SCHED is not set | ||
50 | # CONFIG_CGROUPS is not set | ||
51 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | ||
52 | # CONFIG_RELAY is not set | ||
53 | # CONFIG_NAMESPACES is not set | ||
54 | # CONFIG_BLK_DEV_INITRD is not set | ||
55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
56 | CONFIG_SYSCTL=y | ||
57 | CONFIG_EMBEDDED=y | ||
58 | CONFIG_UID16=y | ||
59 | CONFIG_SYSCTL_SYSCALL=y | ||
60 | # CONFIG_KALLSYMS is not set | ||
61 | # CONFIG_STRIP_ASM_SYMS is not set | ||
62 | # CONFIG_HOTPLUG is not set | ||
63 | CONFIG_PRINTK=y | ||
64 | CONFIG_BUG=y | ||
65 | CONFIG_ELF_CORE=y | ||
66 | CONFIG_BASE_FULL=y | ||
67 | # CONFIG_FUTEX is not set | ||
68 | # CONFIG_EPOLL is not set | ||
69 | # CONFIG_SIGNALFD is not set | ||
70 | # CONFIG_TIMERFD is not set | ||
71 | # CONFIG_EVENTFD is not set | ||
72 | # CONFIG_AIO is not set | ||
73 | # CONFIG_VM_EVENT_COUNTERS is not set | ||
74 | # CONFIG_SLUB_DEBUG is not set | ||
75 | CONFIG_COMPAT_BRK=y | ||
76 | # CONFIG_SLAB is not set | ||
77 | CONFIG_SLUB=y | ||
78 | # CONFIG_SLOB is not set | ||
79 | # CONFIG_PROFILING is not set | ||
80 | # CONFIG_MARKERS is not set | ||
81 | # CONFIG_SLOW_WORK is not set | ||
82 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
83 | CONFIG_BASE_SMALL=0 | ||
84 | # CONFIG_MODULES is not set | ||
85 | CONFIG_BLOCK=y | ||
86 | # CONFIG_LBD is not set | ||
87 | # CONFIG_BLK_DEV_BSG is not set | ||
88 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
89 | |||
90 | # | ||
91 | # IO Schedulers | ||
92 | # | ||
93 | CONFIG_IOSCHED_NOOP=y | ||
94 | # CONFIG_IOSCHED_AS is not set | ||
95 | # CONFIG_IOSCHED_DEADLINE is not set | ||
96 | # CONFIG_IOSCHED_CFQ is not set | ||
97 | # CONFIG_DEFAULT_AS is not set | ||
98 | # CONFIG_DEFAULT_DEADLINE is not set | ||
99 | # CONFIG_DEFAULT_CFQ is not set | ||
100 | CONFIG_DEFAULT_NOOP=y | ||
101 | CONFIG_DEFAULT_IOSCHED="noop" | ||
102 | # CONFIG_FREEZER is not set | ||
103 | |||
104 | # | ||
105 | # Processor type and features | ||
106 | # | ||
107 | # CONFIG_M68328 is not set | ||
108 | # CONFIG_M68EZ328 is not set | ||
109 | # CONFIG_M68VZ328 is not set | ||
110 | # CONFIG_M68360 is not set | ||
111 | # CONFIG_M5206 is not set | ||
112 | # CONFIG_M5206e is not set | ||
113 | # CONFIG_M520x is not set | ||
114 | # CONFIG_M523x is not set | ||
115 | # CONFIG_M5249 is not set | ||
116 | # CONFIG_M5271 is not set | ||
117 | CONFIG_M5272=y | ||
118 | # CONFIG_M5275 is not set | ||
119 | # CONFIG_M528x is not set | ||
120 | # CONFIG_M5307 is not set | ||
121 | # CONFIG_M532x is not set | ||
122 | # CONFIG_M5407 is not set | ||
123 | CONFIG_COLDFIRE=y | ||
124 | CONFIG_CLOCK_SET=y | ||
125 | CONFIG_CLOCK_FREQ=66666666 | ||
126 | CONFIG_CLOCK_DIV=1 | ||
127 | |||
128 | # | ||
129 | # Platform | ||
130 | # | ||
131 | # CONFIG_UC5272 is not set | ||
132 | CONFIG_M5272C3=y | ||
133 | # CONFIG_COBRA5272 is not set | ||
134 | # CONFIG_CANCam is not set | ||
135 | # CONFIG_SCALES is not set | ||
136 | # CONFIG_NETtel is not set | ||
137 | # CONFIG_CPU16B is not set | ||
138 | # CONFIG_MOD5272 is not set | ||
139 | CONFIG_FREESCALE=y | ||
140 | CONFIG_4KSTACKS=y | ||
141 | CONFIG_HZ=100 | ||
142 | |||
143 | # | ||
144 | # RAM configuration | ||
145 | # | ||
146 | CONFIG_RAMBASE=0x00000000 | ||
147 | CONFIG_RAMSIZE=0x00800000 | ||
148 | CONFIG_VECTORBASE=0x00000000 | ||
149 | CONFIG_KERNELBASE=0x00020000 | ||
150 | CONFIG_RAMAUTOBIT=y | ||
151 | # CONFIG_RAM8BIT is not set | ||
152 | # CONFIG_RAM16BIT is not set | ||
153 | # CONFIG_RAM32BIT is not set | ||
154 | |||
155 | # | ||
156 | # ROM configuration | ||
157 | # | ||
158 | # CONFIG_ROM is not set | ||
159 | CONFIG_RAMKERNEL=y | ||
160 | # CONFIG_ROMKERNEL is not set | ||
161 | CONFIG_PREEMPT_NONE=y | ||
162 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
163 | # CONFIG_PREEMPT is not set | ||
164 | CONFIG_SELECT_MEMORY_MODEL=y | ||
165 | CONFIG_FLATMEM_MANUAL=y | ||
166 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
167 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
168 | CONFIG_FLATMEM=y | ||
169 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
170 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
171 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
172 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
173 | CONFIG_ZONE_DMA_FLAG=1 | ||
174 | CONFIG_VIRT_TO_BUS=y | ||
175 | # CONFIG_UNEVICTABLE_LRU is not set | ||
176 | |||
177 | # | ||
178 | # Executable file formats | ||
179 | # | ||
180 | CONFIG_BINFMT_FLAT=y | ||
181 | # CONFIG_BINFMT_ZFLAT is not set | ||
182 | # CONFIG_BINFMT_SHARED_FLAT is not set | ||
183 | # CONFIG_HAVE_AOUT is not set | ||
184 | # CONFIG_BINFMT_MISC is not set | ||
185 | |||
186 | # | ||
187 | # Power management options | ||
188 | # | ||
189 | # CONFIG_PM is not set | ||
190 | CONFIG_NET=y | ||
191 | |||
192 | # | ||
193 | # Networking options | ||
194 | # | ||
195 | CONFIG_PACKET=y | ||
196 | # CONFIG_PACKET_MMAP is not set | ||
197 | CONFIG_UNIX=y | ||
198 | # CONFIG_NET_KEY is not set | ||
199 | CONFIG_INET=y | ||
200 | # CONFIG_IP_MULTICAST is not set | ||
201 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
202 | CONFIG_IP_FIB_HASH=y | ||
203 | # CONFIG_IP_PNP is not set | ||
204 | # CONFIG_NET_IPIP is not set | ||
205 | # CONFIG_NET_IPGRE is not set | ||
206 | # CONFIG_ARPD is not set | ||
207 | # CONFIG_SYN_COOKIES is not set | ||
208 | # CONFIG_INET_AH is not set | ||
209 | # CONFIG_INET_ESP is not set | ||
210 | # CONFIG_INET_IPCOMP is not set | ||
211 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
212 | # CONFIG_INET_TUNNEL is not set | ||
213 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
214 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
215 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
216 | # CONFIG_INET_LRO is not set | ||
217 | # CONFIG_INET_DIAG is not set | ||
218 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
219 | CONFIG_TCP_CONG_CUBIC=y | ||
220 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
221 | # CONFIG_TCP_MD5SIG is not set | ||
222 | # CONFIG_IPV6 is not set | ||
223 | # CONFIG_NETWORK_SECMARK is not set | ||
224 | # CONFIG_NETFILTER is not set | ||
225 | # CONFIG_IP_DCCP is not set | ||
226 | # CONFIG_IP_SCTP is not set | ||
227 | # CONFIG_TIPC is not set | ||
228 | # CONFIG_ATM is not set | ||
229 | # CONFIG_BRIDGE is not set | ||
230 | # CONFIG_NET_DSA is not set | ||
231 | # CONFIG_VLAN_8021Q is not set | ||
232 | # CONFIG_DECNET is not set | ||
233 | # CONFIG_LLC2 is not set | ||
234 | # CONFIG_IPX is not set | ||
235 | # CONFIG_ATALK is not set | ||
236 | # CONFIG_X25 is not set | ||
237 | # CONFIG_LAPB is not set | ||
238 | # CONFIG_ECONET is not set | ||
239 | # CONFIG_WAN_ROUTER is not set | ||
240 | # CONFIG_PHONET is not set | ||
241 | # CONFIG_NET_SCHED is not set | ||
242 | # CONFIG_DCB is not set | ||
243 | |||
244 | # | ||
245 | # Network testing | ||
246 | # | ||
247 | # CONFIG_NET_PKTGEN is not set | ||
248 | # CONFIG_HAMRADIO is not set | ||
249 | # CONFIG_CAN is not set | ||
250 | # CONFIG_IRDA is not set | ||
251 | # CONFIG_BT is not set | ||
252 | # CONFIG_AF_RXRPC is not set | ||
253 | # CONFIG_WIRELESS is not set | ||
254 | # CONFIG_WIMAX is not set | ||
255 | # CONFIG_RFKILL is not set | ||
256 | # CONFIG_NET_9P is not set | ||
257 | |||
258 | # | ||
259 | # Device Drivers | ||
260 | # | ||
261 | |||
262 | # | ||
263 | # Generic Driver Options | ||
264 | # | ||
265 | CONFIG_STANDALONE=y | ||
266 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
267 | # CONFIG_SYS_HYPERVISOR is not set | ||
268 | # CONFIG_CONNECTOR is not set | ||
269 | CONFIG_MTD=y | ||
270 | # CONFIG_MTD_DEBUG is not set | ||
271 | # CONFIG_MTD_CONCAT is not set | ||
272 | CONFIG_MTD_PARTITIONS=y | ||
273 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
274 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
275 | # CONFIG_MTD_AR7_PARTS is not set | ||
276 | |||
277 | # | ||
278 | # User Modules And Translation Layers | ||
279 | # | ||
280 | CONFIG_MTD_CHAR=y | ||
281 | CONFIG_MTD_BLKDEVS=y | ||
282 | CONFIG_MTD_BLOCK=y | ||
283 | # CONFIG_FTL is not set | ||
284 | # CONFIG_NFTL is not set | ||
285 | # CONFIG_INFTL is not set | ||
286 | # CONFIG_RFD_FTL is not set | ||
287 | # CONFIG_SSFDC is not set | ||
288 | # CONFIG_MTD_OOPS is not set | ||
289 | |||
290 | # | ||
291 | # RAM/ROM/Flash chip drivers | ||
292 | # | ||
293 | # CONFIG_MTD_CFI is not set | ||
294 | # CONFIG_MTD_JEDECPROBE is not set | ||
295 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
296 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
297 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
298 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
299 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
300 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
301 | CONFIG_MTD_CFI_I1=y | ||
302 | CONFIG_MTD_CFI_I2=y | ||
303 | # CONFIG_MTD_CFI_I4 is not set | ||
304 | # CONFIG_MTD_CFI_I8 is not set | ||
305 | CONFIG_MTD_RAM=y | ||
306 | # CONFIG_MTD_ROM is not set | ||
307 | # CONFIG_MTD_ABSENT is not set | ||
308 | |||
309 | # | ||
310 | # Mapping drivers for chip access | ||
311 | # | ||
312 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
313 | CONFIG_MTD_UCLINUX=y | ||
314 | # CONFIG_MTD_PLATRAM is not set | ||
315 | |||
316 | # | ||
317 | # Self-contained MTD device drivers | ||
318 | # | ||
319 | # CONFIG_MTD_SLRAM is not set | ||
320 | # CONFIG_MTD_PHRAM is not set | ||
321 | # CONFIG_MTD_MTDRAM is not set | ||
322 | # CONFIG_MTD_BLOCK2MTD is not set | ||
323 | |||
324 | # | ||
325 | # Disk-On-Chip Device Drivers | ||
326 | # | ||
327 | # CONFIG_MTD_DOC2000 is not set | ||
328 | # CONFIG_MTD_DOC2001 is not set | ||
329 | # CONFIG_MTD_DOC2001PLUS is not set | ||
330 | # CONFIG_MTD_NAND is not set | ||
331 | # CONFIG_MTD_ONENAND is not set | ||
332 | |||
333 | # | ||
334 | # LPDDR flash memory drivers | ||
335 | # | ||
336 | # CONFIG_MTD_LPDDR is not set | ||
337 | |||
338 | # | ||
339 | # UBI - Unsorted block images | ||
340 | # | ||
341 | # CONFIG_MTD_UBI is not set | ||
342 | # CONFIG_PARPORT is not set | ||
343 | CONFIG_BLK_DEV=y | ||
344 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
345 | # CONFIG_BLK_DEV_LOOP is not set | ||
346 | # CONFIG_BLK_DEV_NBD is not set | ||
347 | CONFIG_BLK_DEV_RAM=y | ||
348 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
349 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
350 | # CONFIG_BLK_DEV_XIP is not set | ||
351 | # CONFIG_CDROM_PKTCDVD is not set | ||
352 | # CONFIG_ATA_OVER_ETH is not set | ||
353 | # CONFIG_BLK_DEV_HD is not set | ||
354 | # CONFIG_MISC_DEVICES is not set | ||
355 | CONFIG_HAVE_IDE=y | ||
356 | # CONFIG_IDE is not set | ||
357 | |||
358 | # | ||
359 | # SCSI device support | ||
360 | # | ||
361 | # CONFIG_RAID_ATTRS is not set | ||
362 | # CONFIG_SCSI is not set | ||
363 | # CONFIG_SCSI_DMA is not set | ||
364 | # CONFIG_SCSI_NETLINK is not set | ||
365 | # CONFIG_MD is not set | ||
366 | CONFIG_NETDEVICES=y | ||
367 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
368 | # CONFIG_DUMMY is not set | ||
369 | # CONFIG_BONDING is not set | ||
370 | # CONFIG_MACVLAN is not set | ||
371 | # CONFIG_EQUALIZER is not set | ||
372 | # CONFIG_TUN is not set | ||
373 | # CONFIG_VETH is not set | ||
374 | # CONFIG_PHYLIB is not set | ||
375 | CONFIG_NET_ETHERNET=y | ||
376 | # CONFIG_MII is not set | ||
377 | # CONFIG_ETHOC is not set | ||
378 | # CONFIG_DNET is not set | ||
379 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
380 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
381 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
382 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
383 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
384 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
385 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
386 | # CONFIG_B44 is not set | ||
387 | CONFIG_FEC=y | ||
388 | # CONFIG_FEC2 is not set | ||
389 | # CONFIG_NETDEV_1000 is not set | ||
390 | # CONFIG_NETDEV_10000 is not set | ||
391 | |||
392 | # | ||
393 | # Wireless LAN | ||
394 | # | ||
395 | # CONFIG_WLAN_PRE80211 is not set | ||
396 | # CONFIG_WLAN_80211 is not set | ||
397 | |||
398 | # | ||
399 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
400 | # | ||
401 | # CONFIG_WAN is not set | ||
402 | # CONFIG_PPP is not set | ||
403 | # CONFIG_SLIP is not set | ||
404 | # CONFIG_NETCONSOLE is not set | ||
405 | # CONFIG_NETPOLL is not set | ||
406 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
407 | # CONFIG_ISDN is not set | ||
408 | # CONFIG_PHONE is not set | ||
409 | |||
410 | # | ||
411 | # Input device support | ||
412 | # | ||
413 | # CONFIG_INPUT is not set | ||
414 | |||
415 | # | ||
416 | # Hardware I/O ports | ||
417 | # | ||
418 | # CONFIG_SERIO is not set | ||
419 | # CONFIG_GAMEPORT is not set | ||
420 | |||
421 | # | ||
422 | # Character devices | ||
423 | # | ||
424 | # CONFIG_VT is not set | ||
425 | CONFIG_DEVKMEM=y | ||
426 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
427 | |||
428 | # | ||
429 | # Serial drivers | ||
430 | # | ||
431 | # CONFIG_SERIAL_8250 is not set | ||
432 | |||
433 | # | ||
434 | # Non-8250 serial port support | ||
435 | # | ||
436 | CONFIG_SERIAL_CORE=y | ||
437 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
438 | CONFIG_SERIAL_MCF=y | ||
439 | CONFIG_SERIAL_MCF_BAUDRATE=19200 | ||
440 | CONFIG_SERIAL_MCF_CONSOLE=y | ||
441 | # CONFIG_UNIX98_PTYS is not set | ||
442 | CONFIG_LEGACY_PTYS=y | ||
443 | CONFIG_LEGACY_PTY_COUNT=256 | ||
444 | # CONFIG_IPMI_HANDLER is not set | ||
445 | CONFIG_HW_RANDOM=y | ||
446 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
447 | # CONFIG_GEN_RTC is not set | ||
448 | # CONFIG_R3964 is not set | ||
449 | # CONFIG_RAW_DRIVER is not set | ||
450 | # CONFIG_TCG_TPM is not set | ||
451 | # CONFIG_I2C is not set | ||
452 | # CONFIG_SPI is not set | ||
453 | # CONFIG_W1 is not set | ||
454 | # CONFIG_POWER_SUPPLY is not set | ||
455 | # CONFIG_HWMON is not set | ||
456 | # CONFIG_THERMAL is not set | ||
457 | # CONFIG_THERMAL_HWMON is not set | ||
458 | # CONFIG_WATCHDOG is not set | ||
459 | CONFIG_SSB_POSSIBLE=y | ||
460 | |||
461 | # | ||
462 | # Sonics Silicon Backplane | ||
463 | # | ||
464 | # CONFIG_SSB is not set | ||
465 | |||
466 | # | ||
467 | # Multifunction device drivers | ||
468 | # | ||
469 | # CONFIG_MFD_CORE is not set | ||
470 | # CONFIG_MFD_SM501 is not set | ||
471 | # CONFIG_HTC_PASIC3 is not set | ||
472 | # CONFIG_MFD_TMIO is not set | ||
473 | # CONFIG_REGULATOR is not set | ||
474 | |||
475 | # | ||
476 | # Multimedia devices | ||
477 | # | ||
478 | |||
479 | # | ||
480 | # Multimedia core support | ||
481 | # | ||
482 | # CONFIG_VIDEO_DEV is not set | ||
483 | # CONFIG_DVB_CORE is not set | ||
484 | # CONFIG_VIDEO_MEDIA is not set | ||
485 | |||
486 | # | ||
487 | # Multimedia drivers | ||
488 | # | ||
489 | CONFIG_DAB=y | ||
490 | |||
491 | # | ||
492 | # Graphics support | ||
493 | # | ||
494 | # CONFIG_VGASTATE is not set | ||
495 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
496 | # CONFIG_FB is not set | ||
497 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
498 | |||
499 | # | ||
500 | # Display device support | ||
501 | # | ||
502 | # CONFIG_DISPLAY_SUPPORT is not set | ||
503 | # CONFIG_SOUND is not set | ||
504 | # CONFIG_USB_SUPPORT is not set | ||
505 | # CONFIG_MMC is not set | ||
506 | # CONFIG_MEMSTICK is not set | ||
507 | # CONFIG_NEW_LEDS is not set | ||
508 | # CONFIG_ACCESSIBILITY is not set | ||
509 | # CONFIG_RTC_CLASS is not set | ||
510 | # CONFIG_DMADEVICES is not set | ||
511 | # CONFIG_AUXDISPLAY is not set | ||
512 | # CONFIG_UIO is not set | ||
513 | # CONFIG_STAGING is not set | ||
514 | |||
515 | # | ||
516 | # File systems | ||
517 | # | ||
518 | CONFIG_EXT2_FS=y | ||
519 | # CONFIG_EXT2_FS_XATTR is not set | ||
520 | # CONFIG_EXT3_FS is not set | ||
521 | # CONFIG_EXT4_FS is not set | ||
522 | # CONFIG_REISERFS_FS is not set | ||
523 | # CONFIG_JFS_FS is not set | ||
524 | # CONFIG_FS_POSIX_ACL is not set | ||
525 | # CONFIG_FILE_LOCKING is not set | ||
526 | # CONFIG_XFS_FS is not set | ||
527 | # CONFIG_OCFS2_FS is not set | ||
528 | # CONFIG_BTRFS_FS is not set | ||
529 | # CONFIG_DNOTIFY is not set | ||
530 | # CONFIG_INOTIFY is not set | ||
531 | # CONFIG_QUOTA is not set | ||
532 | # CONFIG_AUTOFS_FS is not set | ||
533 | # CONFIG_AUTOFS4_FS is not set | ||
534 | # CONFIG_FUSE_FS is not set | ||
535 | |||
536 | # | ||
537 | # Caches | ||
538 | # | ||
539 | # CONFIG_FSCACHE is not set | ||
540 | |||
541 | # | ||
542 | # CD-ROM/DVD Filesystems | ||
543 | # | ||
544 | # CONFIG_ISO9660_FS is not set | ||
545 | # CONFIG_UDF_FS is not set | ||
546 | |||
547 | # | ||
548 | # DOS/FAT/NT Filesystems | ||
549 | # | ||
550 | # CONFIG_MSDOS_FS is not set | ||
551 | # CONFIG_VFAT_FS is not set | ||
552 | # CONFIG_NTFS_FS is not set | ||
553 | |||
554 | # | ||
555 | # Pseudo filesystems | ||
556 | # | ||
557 | CONFIG_PROC_FS=y | ||
558 | CONFIG_PROC_SYSCTL=y | ||
559 | CONFIG_SYSFS=y | ||
560 | # CONFIG_TMPFS is not set | ||
561 | # CONFIG_HUGETLB_PAGE is not set | ||
562 | # CONFIG_CONFIGFS_FS is not set | ||
563 | CONFIG_MISC_FILESYSTEMS=y | ||
564 | # CONFIG_ADFS_FS is not set | ||
565 | # CONFIG_AFFS_FS is not set | ||
566 | # CONFIG_HFS_FS is not set | ||
567 | # CONFIG_HFSPLUS_FS is not set | ||
568 | # CONFIG_BEFS_FS is not set | ||
569 | # CONFIG_BFS_FS is not set | ||
570 | # CONFIG_EFS_FS is not set | ||
571 | # CONFIG_JFFS2_FS is not set | ||
572 | # CONFIG_CRAMFS is not set | ||
573 | # CONFIG_SQUASHFS is not set | ||
574 | # CONFIG_VXFS_FS is not set | ||
575 | # CONFIG_MINIX_FS is not set | ||
576 | # CONFIG_OMFS_FS is not set | ||
577 | # CONFIG_HPFS_FS is not set | ||
578 | # CONFIG_QNX4FS_FS is not set | ||
579 | CONFIG_ROMFS_FS=y | ||
580 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
581 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
582 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
583 | CONFIG_ROMFS_ON_MTD=y | ||
584 | # CONFIG_SYSV_FS is not set | ||
585 | # CONFIG_UFS_FS is not set | ||
586 | # CONFIG_NILFS2_FS is not set | ||
587 | # CONFIG_NETWORK_FILESYSTEMS is not set | ||
588 | |||
589 | # | ||
590 | # Partition Types | ||
591 | # | ||
592 | # CONFIG_PARTITION_ADVANCED is not set | ||
593 | CONFIG_MSDOS_PARTITION=y | ||
594 | # CONFIG_NLS is not set | ||
595 | # CONFIG_DLM is not set | ||
596 | |||
597 | # | ||
598 | # Kernel hacking | ||
599 | # | ||
600 | # CONFIG_PRINTK_TIME is not set | ||
601 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
602 | CONFIG_ENABLE_MUST_CHECK=y | ||
603 | CONFIG_FRAME_WARN=1024 | ||
604 | # CONFIG_MAGIC_SYSRQ is not set | ||
605 | # CONFIG_UNUSED_SYMBOLS is not set | ||
606 | # CONFIG_DEBUG_FS is not set | ||
607 | # CONFIG_HEADERS_CHECK is not set | ||
608 | # CONFIG_DEBUG_KERNEL is not set | ||
609 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
610 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
611 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
612 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
613 | # CONFIG_SAMPLES is not set | ||
614 | # CONFIG_FULLDEBUG is not set | ||
615 | # CONFIG_HIGHPROFILE is not set | ||
616 | CONFIG_BOOTPARAM=y | ||
617 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
618 | # CONFIG_NO_KERNEL_MSG is not set | ||
619 | # CONFIG_BDM_DISABLE is not set | ||
620 | |||
621 | # | ||
622 | # Security options | ||
623 | # | ||
624 | # CONFIG_KEYS is not set | ||
625 | # CONFIG_SECURITY is not set | ||
626 | # CONFIG_SECURITYFS is not set | ||
627 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
628 | # CONFIG_CRYPTO is not set | ||
629 | # CONFIG_BINARY_PRINTF is not set | ||
630 | |||
631 | # | ||
632 | # Library routines | ||
633 | # | ||
634 | CONFIG_BITREVERSE=y | ||
635 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
636 | # CONFIG_CRC_CCITT is not set | ||
637 | # CONFIG_CRC16 is not set | ||
638 | # CONFIG_CRC_T10DIF is not set | ||
639 | # CONFIG_CRC_ITU_T is not set | ||
640 | CONFIG_CRC32=y | ||
641 | # CONFIG_CRC7 is not set | ||
642 | # CONFIG_LIBCRC32C is not set | ||
643 | CONFIG_HAS_IOMEM=y | ||
644 | CONFIG_HAS_DMA=y | ||
645 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/configs/m5275evb_defconfig b/arch/m68knommu/configs/m5275evb_defconfig index 0d1256f5addb..dc5c621d419c 100644 --- a/arch/m68knommu/configs/m5275evb_defconfig +++ b/arch/m68knommu/configs/m5275evb_defconfig | |||
@@ -1,6 +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.26-rc1 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Wed Apr 22 23:29:01 2009 | ||
4 | # | 5 | # |
5 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
6 | # CONFIG_MMU is not set | 7 | # CONFIG_MMU is not set |
@@ -15,9 +16,10 @@ CONFIG_GENERIC_HWEIGHT=y | |||
15 | CONFIG_GENERIC_HARDIRQS=y | 16 | CONFIG_GENERIC_HARDIRQS=y |
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 17 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
17 | CONFIG_GENERIC_TIME=y | 18 | CONFIG_GENERIC_TIME=y |
19 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
18 | CONFIG_TIME_LOW_RES=y | 20 | CONFIG_TIME_LOW_RES=y |
21 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
19 | CONFIG_NO_IOPORT=y | 22 | CONFIG_NO_IOPORT=y |
20 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
21 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
22 | 24 | ||
23 | # | 25 | # |
@@ -33,10 +35,19 @@ CONFIG_LOCALVERSION_AUTO=y | |||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | 35 | # CONFIG_BSD_PROCESS_ACCT is not set |
34 | # CONFIG_TASKSTATS is not set | 36 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 37 | # CONFIG_AUDIT is not set |
38 | |||
39 | # | ||
40 | # RCU Subsystem | ||
41 | # | ||
42 | CONFIG_CLASSIC_RCU=y | ||
43 | # CONFIG_TREE_RCU is not set | ||
44 | # CONFIG_PREEMPT_RCU is not set | ||
45 | # CONFIG_TREE_RCU_TRACE is not set | ||
46 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 47 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 48 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 49 | # CONFIG_GROUP_SCHED is not set |
50 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 51 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | # CONFIG_RELAY is not set | 52 | # CONFIG_RELAY is not set |
42 | # CONFIG_NAMESPACES is not set | 53 | # CONFIG_NAMESPACES is not set |
@@ -44,44 +55,37 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
44 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
45 | CONFIG_SYSCTL=y | 56 | CONFIG_SYSCTL=y |
46 | CONFIG_EMBEDDED=y | 57 | CONFIG_EMBEDDED=y |
47 | # CONFIG_UID16 is not set | 58 | CONFIG_UID16=y |
48 | # CONFIG_SYSCTL_SYSCALL is not set | 59 | CONFIG_SYSCTL_SYSCALL=y |
49 | # CONFIG_KALLSYMS is not set | 60 | # CONFIG_KALLSYMS is not set |
61 | # CONFIG_STRIP_ASM_SYMS is not set | ||
50 | # CONFIG_HOTPLUG is not set | 62 | # CONFIG_HOTPLUG is not set |
51 | CONFIG_PRINTK=y | 63 | CONFIG_PRINTK=y |
52 | CONFIG_BUG=y | 64 | CONFIG_BUG=y |
53 | CONFIG_ELF_CORE=y | 65 | CONFIG_ELF_CORE=y |
54 | # CONFIG_COMPAT_BRK is not set | ||
55 | CONFIG_BASE_FULL=y | 66 | CONFIG_BASE_FULL=y |
56 | # CONFIG_FUTEX is not set | 67 | # CONFIG_FUTEX is not set |
57 | # CONFIG_EPOLL is not set | 68 | # CONFIG_EPOLL is not set |
58 | # CONFIG_SIGNALFD is not set | 69 | # CONFIG_SIGNALFD is not set |
59 | # CONFIG_TIMERFD is not set | 70 | # CONFIG_TIMERFD is not set |
60 | # CONFIG_EVENTFD is not set | 71 | # CONFIG_EVENTFD is not set |
72 | # CONFIG_AIO is not set | ||
61 | # CONFIG_VM_EVENT_COUNTERS is not set | 73 | # CONFIG_VM_EVENT_COUNTERS is not set |
62 | CONFIG_SLAB=y | 74 | # CONFIG_SLUB_DEBUG is not set |
63 | # CONFIG_SLUB is not set | 75 | CONFIG_COMPAT_BRK=y |
76 | # CONFIG_SLAB is not set | ||
77 | CONFIG_SLUB=y | ||
64 | # CONFIG_SLOB is not set | 78 | # CONFIG_SLOB is not set |
65 | # CONFIG_PROFILING is not set | 79 | # CONFIG_PROFILING is not set |
66 | # CONFIG_MARKERS is not set | 80 | # CONFIG_MARKERS is not set |
67 | # CONFIG_HAVE_OPROFILE is not set | 81 | # CONFIG_SLOW_WORK is not set |
68 | # CONFIG_HAVE_KPROBES is not set | 82 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
69 | # CONFIG_HAVE_KRETPROBES is not set | ||
70 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
71 | CONFIG_SLABINFO=y | ||
72 | CONFIG_TINY_SHMEM=y | ||
73 | CONFIG_BASE_SMALL=0 | 83 | CONFIG_BASE_SMALL=0 |
74 | CONFIG_MODULES=y | 84 | # CONFIG_MODULES is not set |
75 | CONFIG_MODULE_UNLOAD=y | ||
76 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
77 | # CONFIG_MODVERSIONS is not set | ||
78 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
79 | # CONFIG_KMOD is not set | ||
80 | CONFIG_BLOCK=y | 85 | CONFIG_BLOCK=y |
81 | # CONFIG_LBD is not set | 86 | # CONFIG_LBD is not set |
82 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
83 | # CONFIG_LSF is not set | ||
84 | # CONFIG_BLK_DEV_BSG is not set | 87 | # CONFIG_BLK_DEV_BSG is not set |
88 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
85 | 89 | ||
86 | # | 90 | # |
87 | # IO Schedulers | 91 | # IO Schedulers |
@@ -95,7 +99,7 @@ CONFIG_IOSCHED_NOOP=y | |||
95 | # CONFIG_DEFAULT_CFQ is not set | 99 | # CONFIG_DEFAULT_CFQ is not set |
96 | CONFIG_DEFAULT_NOOP=y | 100 | CONFIG_DEFAULT_NOOP=y |
97 | CONFIG_DEFAULT_IOSCHED="noop" | 101 | CONFIG_DEFAULT_IOSCHED="noop" |
98 | CONFIG_CLASSIC_RCU=y | 102 | # CONFIG_FREEZER is not set |
99 | 103 | ||
100 | # | 104 | # |
101 | # Processor type and features | 105 | # Processor type and features |
@@ -148,44 +152,39 @@ CONFIG_RAMAUTOBIT=y | |||
148 | # CONFIG_ROM is not set | 152 | # CONFIG_ROM is not set |
149 | CONFIG_RAMKERNEL=y | 153 | CONFIG_RAMKERNEL=y |
150 | # CONFIG_ROMKERNEL is not set | 154 | # CONFIG_ROMKERNEL is not set |
155 | CONFIG_PREEMPT_NONE=y | ||
156 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
157 | # CONFIG_PREEMPT is not set | ||
158 | # CONFIG_NO_HZ is not set | ||
159 | # CONFIG_HIGH_RES_TIMERS is not set | ||
160 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
151 | CONFIG_SELECT_MEMORY_MODEL=y | 161 | CONFIG_SELECT_MEMORY_MODEL=y |
152 | CONFIG_FLATMEM_MANUAL=y | 162 | CONFIG_FLATMEM_MANUAL=y |
153 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 163 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
154 | # CONFIG_SPARSEMEM_MANUAL is not set | 164 | # CONFIG_SPARSEMEM_MANUAL is not set |
155 | CONFIG_FLATMEM=y | 165 | CONFIG_FLATMEM=y |
156 | CONFIG_FLAT_NODE_MEM_MAP=y | 166 | CONFIG_FLAT_NODE_MEM_MAP=y |
157 | # CONFIG_SPARSEMEM_STATIC is not set | ||
158 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
159 | CONFIG_PAGEFLAGS_EXTENDED=y | 167 | CONFIG_PAGEFLAGS_EXTENDED=y |
160 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 168 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
161 | # CONFIG_RESOURCES_64BIT is not set | 169 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
162 | CONFIG_ZONE_DMA_FLAG=1 | 170 | CONFIG_ZONE_DMA_FLAG=1 |
163 | CONFIG_VIRT_TO_BUS=y | 171 | CONFIG_VIRT_TO_BUS=y |
172 | # CONFIG_UNEVICTABLE_LRU is not set | ||
164 | CONFIG_ISA_DMA_API=y | 173 | CONFIG_ISA_DMA_API=y |
165 | 174 | ||
166 | # | 175 | # |
167 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
168 | # | ||
169 | # CONFIG_PCI is not set | ||
170 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
171 | |||
172 | # | ||
173 | # Executable file formats | 176 | # Executable file formats |
174 | # | 177 | # |
175 | CONFIG_BINFMT_FLAT=y | 178 | CONFIG_BINFMT_FLAT=y |
176 | # CONFIG_BINFMT_ZFLAT is not set | 179 | # CONFIG_BINFMT_ZFLAT is not set |
177 | # CONFIG_BINFMT_SHARED_FLAT is not set | 180 | # CONFIG_BINFMT_SHARED_FLAT is not set |
178 | # CONFIG_BINFMT_AOUT is not set | 181 | # CONFIG_HAVE_AOUT is not set |
179 | # CONFIG_BINFMT_MISC is not set | 182 | # CONFIG_BINFMT_MISC is not set |
180 | 183 | ||
181 | # | 184 | # |
182 | # Power management options | 185 | # Power management options |
183 | # | 186 | # |
184 | # CONFIG_PM is not set | 187 | # CONFIG_PM is not set |
185 | |||
186 | # | ||
187 | # Networking | ||
188 | # | ||
189 | CONFIG_NET=y | 188 | CONFIG_NET=y |
190 | 189 | ||
191 | # | 190 | # |
@@ -226,6 +225,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
226 | # CONFIG_TIPC is not set | 225 | # CONFIG_TIPC is not set |
227 | # CONFIG_ATM is not set | 226 | # CONFIG_ATM is not set |
228 | # CONFIG_BRIDGE is not set | 227 | # CONFIG_BRIDGE is not set |
228 | # CONFIG_NET_DSA is not set | ||
229 | # CONFIG_VLAN_8021Q is not set | 229 | # CONFIG_VLAN_8021Q is not set |
230 | # CONFIG_DECNET is not set | 230 | # CONFIG_DECNET is not set |
231 | # CONFIG_LLC2 is not set | 231 | # CONFIG_LLC2 is not set |
@@ -235,7 +235,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
235 | # CONFIG_LAPB is not set | 235 | # CONFIG_LAPB is not set |
236 | # CONFIG_ECONET is not set | 236 | # CONFIG_ECONET is not set |
237 | # CONFIG_WAN_ROUTER is not set | 237 | # CONFIG_WAN_ROUTER is not set |
238 | # CONFIG_PHONET is not set | ||
238 | # CONFIG_NET_SCHED is not set | 239 | # CONFIG_NET_SCHED is not set |
240 | # CONFIG_DCB is not set | ||
239 | 241 | ||
240 | # | 242 | # |
241 | # Network testing | 243 | # Network testing |
@@ -246,14 +248,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
246 | # CONFIG_IRDA is not set | 248 | # CONFIG_IRDA is not set |
247 | # CONFIG_BT is not set | 249 | # CONFIG_BT is not set |
248 | # CONFIG_AF_RXRPC is not set | 250 | # CONFIG_AF_RXRPC is not set |
249 | 251 | # CONFIG_WIRELESS is not set | |
250 | # | 252 | # CONFIG_WIMAX is not set |
251 | # Wireless | ||
252 | # | ||
253 | # CONFIG_CFG80211 is not set | ||
254 | # CONFIG_WIRELESS_EXT is not set | ||
255 | # CONFIG_MAC80211 is not set | ||
256 | # CONFIG_IEEE80211 is not set | ||
257 | # CONFIG_RFKILL is not set | 253 | # CONFIG_RFKILL is not set |
258 | # CONFIG_NET_9P is not set | 254 | # CONFIG_NET_9P is not set |
259 | 255 | ||
@@ -333,6 +329,11 @@ CONFIG_MTD_UCLINUX=y | |||
333 | # CONFIG_MTD_ONENAND is not set | 329 | # CONFIG_MTD_ONENAND is not set |
334 | 330 | ||
335 | # | 331 | # |
332 | # LPDDR flash memory drivers | ||
333 | # | ||
334 | # CONFIG_MTD_LPDDR is not set | ||
335 | |||
336 | # | ||
336 | # UBI - Unsorted block images | 337 | # UBI - Unsorted block images |
337 | # | 338 | # |
338 | # CONFIG_MTD_UBI is not set | 339 | # CONFIG_MTD_UBI is not set |
@@ -347,6 +348,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
347 | # CONFIG_BLK_DEV_XIP is not set | 348 | # CONFIG_BLK_DEV_XIP is not set |
348 | # CONFIG_CDROM_PKTCDVD is not set | 349 | # CONFIG_CDROM_PKTCDVD is not set |
349 | # CONFIG_ATA_OVER_ETH is not set | 350 | # CONFIG_ATA_OVER_ETH is not set |
351 | # CONFIG_BLK_DEV_HD is not set | ||
350 | # CONFIG_MISC_DEVICES is not set | 352 | # CONFIG_MISC_DEVICES is not set |
351 | CONFIG_HAVE_IDE=y | 353 | CONFIG_HAVE_IDE=y |
352 | # CONFIG_IDE is not set | 354 | # CONFIG_IDE is not set |
@@ -360,7 +362,7 @@ CONFIG_HAVE_IDE=y | |||
360 | # CONFIG_SCSI_NETLINK is not set | 362 | # CONFIG_SCSI_NETLINK is not set |
361 | # CONFIG_MD is not set | 363 | # CONFIG_MD is not set |
362 | CONFIG_NETDEVICES=y | 364 | CONFIG_NETDEVICES=y |
363 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 365 | CONFIG_COMPAT_NET_DEV_OPS=y |
364 | # CONFIG_DUMMY is not set | 366 | # CONFIG_DUMMY is not set |
365 | # CONFIG_BONDING is not set | 367 | # CONFIG_BONDING is not set |
366 | # CONFIG_MACVLAN is not set | 368 | # CONFIG_MACVLAN is not set |
@@ -370,10 +372,15 @@ CONFIG_NETDEVICES=y | |||
370 | # CONFIG_PHYLIB is not set | 372 | # CONFIG_PHYLIB is not set |
371 | CONFIG_NET_ETHERNET=y | 373 | CONFIG_NET_ETHERNET=y |
372 | # CONFIG_MII is not set | 374 | # CONFIG_MII is not set |
375 | # CONFIG_ETHOC is not set | ||
376 | # CONFIG_DNET is not set | ||
373 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 377 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
374 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 378 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
375 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 379 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
376 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 380 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
381 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
382 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
383 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
377 | # CONFIG_B44 is not set | 384 | # CONFIG_B44 is not set |
378 | CONFIG_FEC=y | 385 | CONFIG_FEC=y |
379 | CONFIG_FEC2=y | 386 | CONFIG_FEC2=y |
@@ -385,8 +392,10 @@ CONFIG_FEC2=y | |||
385 | # | 392 | # |
386 | # CONFIG_WLAN_PRE80211 is not set | 393 | # CONFIG_WLAN_PRE80211 is not set |
387 | # CONFIG_WLAN_80211 is not set | 394 | # CONFIG_WLAN_80211 is not set |
388 | # CONFIG_IWLWIFI is not set | 395 | |
389 | # CONFIG_IWLWIFI_LEDS is not set | 396 | # |
397 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
398 | # | ||
390 | # CONFIG_WAN is not set | 399 | # CONFIG_WAN is not set |
391 | CONFIG_PPP=y | 400 | CONFIG_PPP=y |
392 | # CONFIG_PPP_MULTILINK is not set | 401 | # CONFIG_PPP_MULTILINK is not set |
@@ -421,7 +430,7 @@ CONFIG_SLHC=y | |||
421 | # Character devices | 430 | # Character devices |
422 | # | 431 | # |
423 | # CONFIG_VT is not set | 432 | # CONFIG_VT is not set |
424 | # CONFIG_DEVKMEM is not set | 433 | CONFIG_DEVKMEM=y |
425 | # CONFIG_SERIAL_NONSTANDARD is not set | 434 | # CONFIG_SERIAL_NONSTANDARD is not set |
426 | 435 | ||
427 | # | 436 | # |
@@ -434,7 +443,6 @@ CONFIG_SLHC=y | |||
434 | # | 443 | # |
435 | CONFIG_SERIAL_CORE=y | 444 | CONFIG_SERIAL_CORE=y |
436 | CONFIG_SERIAL_CORE_CONSOLE=y | 445 | CONFIG_SERIAL_CORE_CONSOLE=y |
437 | # CONFIG_SERIAL_COLDFIRE is not set | ||
438 | CONFIG_SERIAL_MCF=y | 446 | CONFIG_SERIAL_MCF=y |
439 | CONFIG_SERIAL_MCF_BAUDRATE=19200 | 447 | CONFIG_SERIAL_MCF_BAUDRATE=19200 |
440 | CONFIG_SERIAL_MCF_CONSOLE=y | 448 | CONFIG_SERIAL_MCF_CONSOLE=y |
@@ -442,7 +450,8 @@ CONFIG_SERIAL_MCF_CONSOLE=y | |||
442 | CONFIG_LEGACY_PTYS=y | 450 | CONFIG_LEGACY_PTYS=y |
443 | CONFIG_LEGACY_PTY_COUNT=256 | 451 | CONFIG_LEGACY_PTY_COUNT=256 |
444 | # CONFIG_IPMI_HANDLER is not set | 452 | # CONFIG_IPMI_HANDLER is not set |
445 | # CONFIG_HW_RANDOM is not set | 453 | CONFIG_HW_RANDOM=y |
454 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
446 | # CONFIG_GEN_RTC is not set | 455 | # CONFIG_GEN_RTC is not set |
447 | # CONFIG_R3964 is not set | 456 | # CONFIG_R3964 is not set |
448 | # CONFIG_RAW_DRIVER is not set | 457 | # CONFIG_RAW_DRIVER is not set |
@@ -453,19 +462,23 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
453 | # CONFIG_POWER_SUPPLY is not set | 462 | # CONFIG_POWER_SUPPLY is not set |
454 | # CONFIG_HWMON is not set | 463 | # CONFIG_HWMON is not set |
455 | # CONFIG_THERMAL is not set | 464 | # CONFIG_THERMAL is not set |
465 | # CONFIG_THERMAL_HWMON is not set | ||
456 | # CONFIG_WATCHDOG is not set | 466 | # CONFIG_WATCHDOG is not set |
467 | CONFIG_SSB_POSSIBLE=y | ||
457 | 468 | ||
458 | # | 469 | # |
459 | # Sonics Silicon Backplane | 470 | # Sonics Silicon Backplane |
460 | # | 471 | # |
461 | CONFIG_SSB_POSSIBLE=y | ||
462 | # CONFIG_SSB is not set | 472 | # CONFIG_SSB is not set |
463 | 473 | ||
464 | # | 474 | # |
465 | # Multifunction device drivers | 475 | # Multifunction device drivers |
466 | # | 476 | # |
477 | # CONFIG_MFD_CORE is not set | ||
467 | # CONFIG_MFD_SM501 is not set | 478 | # CONFIG_MFD_SM501 is not set |
468 | # CONFIG_HTC_PASIC3 is not set | 479 | # CONFIG_HTC_PASIC3 is not set |
480 | # CONFIG_MFD_TMIO is not set | ||
481 | # CONFIG_REGULATOR is not set | ||
469 | 482 | ||
470 | # | 483 | # |
471 | # Multimedia devices | 484 | # Multimedia devices |
@@ -476,6 +489,7 @@ CONFIG_SSB_POSSIBLE=y | |||
476 | # | 489 | # |
477 | # CONFIG_VIDEO_DEV is not set | 490 | # CONFIG_VIDEO_DEV is not set |
478 | # CONFIG_DVB_CORE is not set | 491 | # CONFIG_DVB_CORE is not set |
492 | # CONFIG_VIDEO_MEDIA is not set | ||
479 | 493 | ||
480 | # | 494 | # |
481 | # Multimedia drivers | 495 | # Multimedia drivers |
@@ -494,10 +508,6 @@ CONFIG_DAB=y | |||
494 | # Display device support | 508 | # Display device support |
495 | # | 509 | # |
496 | # CONFIG_DISPLAY_SUPPORT is not set | 510 | # CONFIG_DISPLAY_SUPPORT is not set |
497 | |||
498 | # | ||
499 | # Sound | ||
500 | # | ||
501 | # CONFIG_SOUND is not set | 511 | # CONFIG_SOUND is not set |
502 | # CONFIG_USB_SUPPORT is not set | 512 | # CONFIG_USB_SUPPORT is not set |
503 | # CONFIG_MMC is not set | 513 | # CONFIG_MMC is not set |
@@ -505,7 +515,10 @@ CONFIG_DAB=y | |||
505 | # CONFIG_NEW_LEDS is not set | 515 | # CONFIG_NEW_LEDS is not set |
506 | # CONFIG_ACCESSIBILITY is not set | 516 | # CONFIG_ACCESSIBILITY is not set |
507 | # CONFIG_RTC_CLASS is not set | 517 | # CONFIG_RTC_CLASS is not set |
518 | # CONFIG_DMADEVICES is not set | ||
519 | # CONFIG_AUXDISPLAY is not set | ||
508 | # CONFIG_UIO is not set | 520 | # CONFIG_UIO is not set |
521 | # CONFIG_STAGING is not set | ||
509 | 522 | ||
510 | # | 523 | # |
511 | # File systems | 524 | # File systems |
@@ -513,12 +526,14 @@ CONFIG_DAB=y | |||
513 | CONFIG_EXT2_FS=y | 526 | CONFIG_EXT2_FS=y |
514 | # CONFIG_EXT2_FS_XATTR is not set | 527 | # CONFIG_EXT2_FS_XATTR is not set |
515 | # CONFIG_EXT3_FS is not set | 528 | # CONFIG_EXT3_FS is not set |
516 | # CONFIG_EXT4DEV_FS is not set | 529 | # CONFIG_EXT4_FS is not set |
517 | # CONFIG_REISERFS_FS is not set | 530 | # CONFIG_REISERFS_FS is not set |
518 | # CONFIG_JFS_FS is not set | 531 | # CONFIG_JFS_FS is not set |
519 | # CONFIG_FS_POSIX_ACL is not set | 532 | # CONFIG_FS_POSIX_ACL is not set |
533 | # CONFIG_FILE_LOCKING is not set | ||
520 | # CONFIG_XFS_FS is not set | 534 | # CONFIG_XFS_FS is not set |
521 | # CONFIG_OCFS2_FS is not set | 535 | # CONFIG_OCFS2_FS is not set |
536 | # CONFIG_BTRFS_FS is not set | ||
522 | # CONFIG_DNOTIFY is not set | 537 | # CONFIG_DNOTIFY is not set |
523 | # CONFIG_INOTIFY is not set | 538 | # CONFIG_INOTIFY is not set |
524 | # CONFIG_QUOTA is not set | 539 | # CONFIG_QUOTA is not set |
@@ -527,6 +542,11 @@ CONFIG_EXT2_FS=y | |||
527 | # CONFIG_FUSE_FS is not set | 542 | # CONFIG_FUSE_FS is not set |
528 | 543 | ||
529 | # | 544 | # |
545 | # Caches | ||
546 | # | ||
547 | # CONFIG_FSCACHE is not set | ||
548 | |||
549 | # | ||
530 | # CD-ROM/DVD Filesystems | 550 | # CD-ROM/DVD Filesystems |
531 | # | 551 | # |
532 | # CONFIG_ISO9660_FS is not set | 552 | # CONFIG_ISO9660_FS is not set |
@@ -548,10 +568,7 @@ CONFIG_SYSFS=y | |||
548 | # CONFIG_TMPFS is not set | 568 | # CONFIG_TMPFS is not set |
549 | # CONFIG_HUGETLB_PAGE is not set | 569 | # CONFIG_HUGETLB_PAGE is not set |
550 | # CONFIG_CONFIGFS_FS is not set | 570 | # CONFIG_CONFIGFS_FS is not set |
551 | 571 | CONFIG_MISC_FILESYSTEMS=y | |
552 | # | ||
553 | # Miscellaneous filesystems | ||
554 | # | ||
555 | # CONFIG_ADFS_FS is not set | 572 | # CONFIG_ADFS_FS is not set |
556 | # CONFIG_AFFS_FS is not set | 573 | # CONFIG_AFFS_FS is not set |
557 | # CONFIG_HFS_FS is not set | 574 | # CONFIG_HFS_FS is not set |
@@ -561,21 +578,21 @@ CONFIG_SYSFS=y | |||
561 | # CONFIG_EFS_FS is not set | 578 | # CONFIG_EFS_FS is not set |
562 | # CONFIG_JFFS2_FS is not set | 579 | # CONFIG_JFFS2_FS is not set |
563 | # CONFIG_CRAMFS is not set | 580 | # CONFIG_CRAMFS is not set |
581 | # CONFIG_SQUASHFS is not set | ||
564 | # CONFIG_VXFS_FS is not set | 582 | # CONFIG_VXFS_FS is not set |
565 | # CONFIG_MINIX_FS is not set | 583 | # CONFIG_MINIX_FS is not set |
584 | # CONFIG_OMFS_FS is not set | ||
566 | # CONFIG_HPFS_FS is not set | 585 | # CONFIG_HPFS_FS is not set |
567 | # CONFIG_QNX4FS_FS is not set | 586 | # CONFIG_QNX4FS_FS is not set |
568 | CONFIG_ROMFS_FS=y | 587 | CONFIG_ROMFS_FS=y |
588 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
589 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
590 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
591 | CONFIG_ROMFS_ON_MTD=y | ||
569 | # CONFIG_SYSV_FS is not set | 592 | # CONFIG_SYSV_FS is not set |
570 | # CONFIG_UFS_FS is not set | 593 | # CONFIG_UFS_FS is not set |
571 | CONFIG_NETWORK_FILESYSTEMS=y | 594 | # CONFIG_NILFS2_FS is not set |
572 | # CONFIG_NFS_FS is not set | 595 | # CONFIG_NETWORK_FILESYSTEMS is not set |
573 | # CONFIG_NFSD is not set | ||
574 | # CONFIG_SMB_FS is not set | ||
575 | # CONFIG_CIFS is not set | ||
576 | # CONFIG_NCP_FS is not set | ||
577 | # CONFIG_CODA_FS is not set | ||
578 | # CONFIG_AFS_FS is not set | ||
579 | 596 | ||
580 | # | 597 | # |
581 | # Partition Types | 598 | # Partition Types |
@@ -598,10 +615,14 @@ CONFIG_FRAME_WARN=1024 | |||
598 | # CONFIG_HEADERS_CHECK is not set | 615 | # CONFIG_HEADERS_CHECK is not set |
599 | # CONFIG_DEBUG_KERNEL is not set | 616 | # CONFIG_DEBUG_KERNEL is not set |
600 | # CONFIG_DEBUG_BUGVERBOSE is not set | 617 | # CONFIG_DEBUG_BUGVERBOSE is not set |
618 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
619 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
620 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
601 | # CONFIG_SAMPLES is not set | 621 | # CONFIG_SAMPLES is not set |
602 | # CONFIG_FULLDEBUG is not set | 622 | # CONFIG_FULLDEBUG is not set |
603 | # CONFIG_HIGHPROFILE is not set | 623 | # CONFIG_HIGHPROFILE is not set |
604 | # CONFIG_BOOTPARAM is not set | 624 | CONFIG_BOOTPARAM=y |
625 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
605 | # CONFIG_NO_KERNEL_MSG is not set | 626 | # CONFIG_NO_KERNEL_MSG is not set |
606 | # CONFIG_BDM_DISABLE is not set | 627 | # CONFIG_BDM_DISABLE is not set |
607 | 628 | ||
@@ -610,18 +631,22 @@ CONFIG_FRAME_WARN=1024 | |||
610 | # | 631 | # |
611 | # CONFIG_KEYS is not set | 632 | # CONFIG_KEYS is not set |
612 | # CONFIG_SECURITY is not set | 633 | # CONFIG_SECURITY is not set |
634 | # CONFIG_SECURITYFS is not set | ||
613 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 635 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
614 | # CONFIG_CRYPTO is not set | 636 | # CONFIG_CRYPTO is not set |
637 | # CONFIG_BINARY_PRINTF is not set | ||
615 | 638 | ||
616 | # | 639 | # |
617 | # Library routines | 640 | # Library routines |
618 | # | 641 | # |
619 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 642 | CONFIG_GENERIC_FIND_LAST_BIT=y |
620 | # CONFIG_CRC_CCITT is not set | 643 | # CONFIG_CRC_CCITT is not set |
621 | # CONFIG_CRC16 is not set | 644 | # CONFIG_CRC16 is not set |
645 | # CONFIG_CRC_T10DIF is not set | ||
622 | # CONFIG_CRC_ITU_T is not set | 646 | # CONFIG_CRC_ITU_T is not set |
623 | # CONFIG_CRC32 is not set | 647 | # CONFIG_CRC32 is not set |
624 | # CONFIG_CRC7 is not set | 648 | # CONFIG_CRC7 is not set |
625 | # CONFIG_LIBCRC32C is not set | 649 | # CONFIG_LIBCRC32C is not set |
626 | CONFIG_HAS_IOMEM=y | 650 | CONFIG_HAS_IOMEM=y |
627 | CONFIG_HAS_DMA=y | 651 | CONFIG_HAS_DMA=y |
652 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/configs/m5307c3_defconfig b/arch/m68knommu/configs/m5307c3_defconfig index fe2acdfa4d76..3a3f6733ae43 100644 --- a/arch/m68knommu/configs/m5307c3_defconfig +++ b/arch/m68knommu/configs/m5307c3_defconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.26-rc1 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # | 4 | # |
5 | CONFIG_M68K=y | 5 | CONFIG_M68K=y |
6 | # CONFIG_MMU is not set | 6 | # CONFIG_MMU is not set |
@@ -15,9 +15,10 @@ CONFIG_GENERIC_HWEIGHT=y | |||
15 | CONFIG_GENERIC_HARDIRQS=y | 15 | CONFIG_GENERIC_HARDIRQS=y |
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 16 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
17 | CONFIG_GENERIC_TIME=y | 17 | CONFIG_GENERIC_TIME=y |
18 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
18 | CONFIG_TIME_LOW_RES=y | 19 | CONFIG_TIME_LOW_RES=y |
20 | # CONFIG_GENERIC_CLOCKEVENTS is not set | ||
19 | CONFIG_NO_IOPORT=y | 21 | CONFIG_NO_IOPORT=y |
20 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
21 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 22 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
22 | 23 | ||
23 | # | 24 | # |
@@ -33,10 +34,21 @@ CONFIG_LOCALVERSION_AUTO=y | |||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | 34 | # CONFIG_BSD_PROCESS_ACCT is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | # CONFIG_GROUP_SCHED is not set | 48 | # CONFIG_GROUP_SCHED is not set |
49 | # CONFIG_USER_SCHED is not set | ||
50 | # CONFIG_CGROUP_SCHED is not set | ||
51 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 52 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
41 | # CONFIG_RELAY is not set | 53 | # CONFIG_RELAY is not set |
42 | # CONFIG_NAMESPACES is not set | 54 | # CONFIG_NAMESPACES is not set |
@@ -44,44 +56,37 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
44 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 56 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
45 | CONFIG_SYSCTL=y | 57 | CONFIG_SYSCTL=y |
46 | CONFIG_EMBEDDED=y | 58 | CONFIG_EMBEDDED=y |
47 | # CONFIG_UID16 is not set | 59 | CONFIG_UID16=y |
48 | # CONFIG_SYSCTL_SYSCALL is not set | 60 | CONFIG_SYSCTL_SYSCALL=y |
49 | # CONFIG_KALLSYMS is not set | 61 | # CONFIG_KALLSYMS is not set |
62 | # CONFIG_STRIP_ASM_SYMS is not set | ||
50 | # CONFIG_HOTPLUG is not set | 63 | # CONFIG_HOTPLUG is not set |
51 | CONFIG_PRINTK=y | 64 | CONFIG_PRINTK=y |
52 | CONFIG_BUG=y | 65 | CONFIG_BUG=y |
53 | CONFIG_ELF_CORE=y | 66 | CONFIG_ELF_CORE=y |
54 | # CONFIG_COMPAT_BRK is not set | ||
55 | CONFIG_BASE_FULL=y | 67 | CONFIG_BASE_FULL=y |
56 | # CONFIG_FUTEX is not set | 68 | # CONFIG_FUTEX is not set |
57 | # CONFIG_EPOLL is not set | 69 | # CONFIG_EPOLL is not set |
58 | # CONFIG_SIGNALFD is not set | 70 | # CONFIG_SIGNALFD is not set |
59 | # CONFIG_TIMERFD is not set | 71 | # CONFIG_TIMERFD is not set |
60 | # CONFIG_EVENTFD is not set | 72 | # CONFIG_EVENTFD is not set |
73 | # CONFIG_AIO is not set | ||
61 | # CONFIG_VM_EVENT_COUNTERS is not set | 74 | # CONFIG_VM_EVENT_COUNTERS is not set |
62 | CONFIG_SLAB=y | 75 | # CONFIG_SLUB_DEBUG is not set |
63 | # CONFIG_SLUB is not set | 76 | CONFIG_COMPAT_BRK=y |
77 | # CONFIG_SLAB is not set | ||
78 | CONFIG_SLUB=y | ||
64 | # CONFIG_SLOB is not set | 79 | # CONFIG_SLOB is not set |
65 | # CONFIG_PROFILING is not set | 80 | # CONFIG_PROFILING is not set |
66 | # CONFIG_MARKERS is not set | 81 | # CONFIG_MARKERS is not set |
67 | # CONFIG_HAVE_OPROFILE is not set | 82 | # CONFIG_SLOW_WORK is not set |
68 | # CONFIG_HAVE_KPROBES is not set | 83 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
69 | # CONFIG_HAVE_KRETPROBES is not set | ||
70 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
71 | CONFIG_SLABINFO=y | ||
72 | CONFIG_TINY_SHMEM=y | ||
73 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
74 | CONFIG_MODULES=y | 85 | # CONFIG_MODULES is not set |
75 | CONFIG_MODULE_UNLOAD=y | ||
76 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
77 | # CONFIG_MODVERSIONS is not set | ||
78 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
79 | # CONFIG_KMOD is not set | ||
80 | CONFIG_BLOCK=y | 86 | CONFIG_BLOCK=y |
81 | # CONFIG_LBD is not set | 87 | # CONFIG_LBD is not set |
82 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
83 | # CONFIG_LSF is not set | ||
84 | # CONFIG_BLK_DEV_BSG is not set | 88 | # CONFIG_BLK_DEV_BSG is not set |
89 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
85 | 90 | ||
86 | # | 91 | # |
87 | # IO Schedulers | 92 | # IO Schedulers |
@@ -95,7 +100,7 @@ CONFIG_IOSCHED_NOOP=y | |||
95 | # CONFIG_DEFAULT_CFQ is not set | 100 | # CONFIG_DEFAULT_CFQ is not set |
96 | CONFIG_DEFAULT_NOOP=y | 101 | CONFIG_DEFAULT_NOOP=y |
97 | CONFIG_DEFAULT_IOSCHED="noop" | 102 | CONFIG_DEFAULT_IOSCHED="noop" |
98 | CONFIG_CLASSIC_RCU=y | 103 | # CONFIG_FREEZER is not set |
99 | 104 | ||
100 | # | 105 | # |
101 | # Processor type and features | 106 | # Processor type and features |
@@ -127,12 +132,11 @@ CONFIG_CLOCK_DIV=2 | |||
127 | # | 132 | # |
128 | # CONFIG_ARN5307 is not set | 133 | # CONFIG_ARN5307 is not set |
129 | CONFIG_M5307C3=y | 134 | CONFIG_M5307C3=y |
130 | # CONFIG_eLIA is not set | ||
131 | # CONFIG_SECUREEDGEMP3 is not set | 135 | # CONFIG_SECUREEDGEMP3 is not set |
132 | # CONFIG_CLEOPATRA is not set | 136 | # CONFIG_CLEOPATRA is not set |
133 | # CONFIG_NETtel is not set | 137 | # CONFIG_NETtel is not set |
134 | CONFIG_FREESCALE=y | 138 | CONFIG_FREESCALE=y |
135 | # CONFIG_4KSTACKS is not set | 139 | CONFIG_4KSTACKS=y |
136 | CONFIG_HZ=100 | 140 | CONFIG_HZ=100 |
137 | 141 | ||
138 | # | 142 | # |
@@ -153,45 +157,36 @@ CONFIG_RAMAUTOBIT=y | |||
153 | # CONFIG_ROM is not set | 157 | # CONFIG_ROM is not set |
154 | CONFIG_RAMKERNEL=y | 158 | CONFIG_RAMKERNEL=y |
155 | # CONFIG_ROMKERNEL is not set | 159 | # CONFIG_ROMKERNEL is not set |
160 | CONFIG_PREEMPT_NONE=y | ||
161 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
162 | # CONFIG_PREEMPT is not set | ||
156 | CONFIG_SELECT_MEMORY_MODEL=y | 163 | CONFIG_SELECT_MEMORY_MODEL=y |
157 | CONFIG_FLATMEM_MANUAL=y | 164 | CONFIG_FLATMEM_MANUAL=y |
158 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 165 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
159 | # CONFIG_SPARSEMEM_MANUAL is not set | 166 | # CONFIG_SPARSEMEM_MANUAL is not set |
160 | CONFIG_FLATMEM=y | 167 | CONFIG_FLATMEM=y |
161 | CONFIG_FLAT_NODE_MEM_MAP=y | 168 | CONFIG_FLAT_NODE_MEM_MAP=y |
162 | # CONFIG_SPARSEMEM_STATIC is not set | ||
163 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
164 | CONFIG_PAGEFLAGS_EXTENDED=y | 169 | CONFIG_PAGEFLAGS_EXTENDED=y |
165 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 170 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
166 | # CONFIG_RESOURCES_64BIT is not set | 171 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
167 | CONFIG_ZONE_DMA_FLAG=1 | 172 | CONFIG_ZONE_DMA_FLAG=1 |
168 | CONFIG_VIRT_TO_BUS=y | 173 | CONFIG_VIRT_TO_BUS=y |
174 | # CONFIG_UNEVICTABLE_LRU is not set | ||
169 | CONFIG_ISA_DMA_API=y | 175 | CONFIG_ISA_DMA_API=y |
170 | 176 | ||
171 | # | 177 | # |
172 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
173 | # | ||
174 | # CONFIG_PCI is not set | ||
175 | # CONFIG_COMEMPCI is not set | ||
176 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
177 | |||
178 | # | ||
179 | # Executable file formats | 178 | # Executable file formats |
180 | # | 179 | # |
181 | CONFIG_BINFMT_FLAT=y | 180 | CONFIG_BINFMT_FLAT=y |
182 | # CONFIG_BINFMT_ZFLAT is not set | 181 | # CONFIG_BINFMT_ZFLAT is not set |
183 | # CONFIG_BINFMT_SHARED_FLAT is not set | 182 | # CONFIG_BINFMT_SHARED_FLAT is not set |
184 | # CONFIG_BINFMT_AOUT is not set | 183 | # CONFIG_HAVE_AOUT is not set |
185 | # CONFIG_BINFMT_MISC is not set | 184 | # CONFIG_BINFMT_MISC is not set |
186 | 185 | ||
187 | # | 186 | # |
188 | # Power management options | 187 | # Power management options |
189 | # | 188 | # |
190 | # CONFIG_PM is not set | 189 | # CONFIG_PM is not set |
191 | |||
192 | # | ||
193 | # Networking | ||
194 | # | ||
195 | CONFIG_NET=y | 190 | CONFIG_NET=y |
196 | 191 | ||
197 | # | 192 | # |
@@ -232,6 +227,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
232 | # CONFIG_TIPC is not set | 227 | # CONFIG_TIPC is not set |
233 | # CONFIG_ATM is not set | 228 | # CONFIG_ATM is not set |
234 | # CONFIG_BRIDGE is not set | 229 | # CONFIG_BRIDGE is not set |
230 | # CONFIG_NET_DSA is not set | ||
235 | # CONFIG_VLAN_8021Q is not set | 231 | # CONFIG_VLAN_8021Q is not set |
236 | # CONFIG_DECNET is not set | 232 | # CONFIG_DECNET is not set |
237 | # CONFIG_LLC2 is not set | 233 | # CONFIG_LLC2 is not set |
@@ -241,7 +237,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
241 | # CONFIG_LAPB is not set | 237 | # CONFIG_LAPB is not set |
242 | # CONFIG_ECONET is not set | 238 | # CONFIG_ECONET is not set |
243 | # CONFIG_WAN_ROUTER is not set | 239 | # CONFIG_WAN_ROUTER is not set |
240 | # CONFIG_PHONET is not set | ||
244 | # CONFIG_NET_SCHED is not set | 241 | # CONFIG_NET_SCHED is not set |
242 | # CONFIG_DCB is not set | ||
245 | 243 | ||
246 | # | 244 | # |
247 | # Network testing | 245 | # Network testing |
@@ -252,14 +250,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
252 | # CONFIG_IRDA is not set | 250 | # CONFIG_IRDA is not set |
253 | # CONFIG_BT is not set | 251 | # CONFIG_BT is not set |
254 | # CONFIG_AF_RXRPC is not set | 252 | # CONFIG_AF_RXRPC is not set |
255 | 253 | # CONFIG_WIRELESS is not set | |
256 | # | 254 | # CONFIG_WIMAX is not set |
257 | # Wireless | ||
258 | # | ||
259 | # CONFIG_CFG80211 is not set | ||
260 | # CONFIG_WIRELESS_EXT is not set | ||
261 | # CONFIG_MAC80211 is not set | ||
262 | # CONFIG_IEEE80211 is not set | ||
263 | # CONFIG_RFKILL is not set | 255 | # CONFIG_RFKILL is not set |
264 | # CONFIG_NET_9P is not set | 256 | # CONFIG_NET_9P is not set |
265 | 257 | ||
@@ -274,7 +266,79 @@ CONFIG_STANDALONE=y | |||
274 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 266 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
275 | # CONFIG_SYS_HYPERVISOR is not set | 267 | # CONFIG_SYS_HYPERVISOR is not set |
276 | # CONFIG_CONNECTOR is not set | 268 | # CONFIG_CONNECTOR is not set |
277 | # CONFIG_MTD is not set | 269 | CONFIG_MTD=y |
270 | # CONFIG_MTD_DEBUG is not set | ||
271 | # CONFIG_MTD_CONCAT is not set | ||
272 | CONFIG_MTD_PARTITIONS=y | ||
273 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
274 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
275 | # CONFIG_MTD_AR7_PARTS is not set | ||
276 | |||
277 | # | ||
278 | # User Modules And Translation Layers | ||
279 | # | ||
280 | CONFIG_MTD_CHAR=y | ||
281 | CONFIG_MTD_BLKDEVS=y | ||
282 | CONFIG_MTD_BLOCK=y | ||
283 | # CONFIG_FTL is not set | ||
284 | # CONFIG_NFTL is not set | ||
285 | # CONFIG_INFTL is not set | ||
286 | # CONFIG_RFD_FTL is not set | ||
287 | # CONFIG_SSFDC is not set | ||
288 | # CONFIG_MTD_OOPS is not set | ||
289 | |||
290 | # | ||
291 | # RAM/ROM/Flash chip drivers | ||
292 | # | ||
293 | # CONFIG_MTD_CFI is not set | ||
294 | # CONFIG_MTD_JEDECPROBE is not set | ||
295 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
296 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
297 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
298 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
299 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
300 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
301 | CONFIG_MTD_CFI_I1=y | ||
302 | CONFIG_MTD_CFI_I2=y | ||
303 | # CONFIG_MTD_CFI_I4 is not set | ||
304 | # CONFIG_MTD_CFI_I8 is not set | ||
305 | CONFIG_MTD_RAM=y | ||
306 | # CONFIG_MTD_ROM is not set | ||
307 | # CONFIG_MTD_ABSENT is not set | ||
308 | |||
309 | # | ||
310 | # Mapping drivers for chip access | ||
311 | # | ||
312 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
313 | CONFIG_MTD_UCLINUX=y | ||
314 | # CONFIG_MTD_PLATRAM is not set | ||
315 | |||
316 | # | ||
317 | # Self-contained MTD device drivers | ||
318 | # | ||
319 | # CONFIG_MTD_SLRAM is not set | ||
320 | # CONFIG_MTD_PHRAM is not set | ||
321 | # CONFIG_MTD_MTDRAM is not set | ||
322 | # CONFIG_MTD_BLOCK2MTD is not set | ||
323 | |||
324 | # | ||
325 | # Disk-On-Chip Device Drivers | ||
326 | # | ||
327 | # CONFIG_MTD_DOC2000 is not set | ||
328 | # CONFIG_MTD_DOC2001 is not set | ||
329 | # CONFIG_MTD_DOC2001PLUS is not set | ||
330 | # CONFIG_MTD_NAND is not set | ||
331 | # CONFIG_MTD_ONENAND is not set | ||
332 | |||
333 | # | ||
334 | # LPDDR flash memory drivers | ||
335 | # | ||
336 | # CONFIG_MTD_LPDDR is not set | ||
337 | |||
338 | # | ||
339 | # UBI - Unsorted block images | ||
340 | # | ||
341 | # CONFIG_MTD_UBI is not set | ||
278 | # CONFIG_PARPORT is not set | 342 | # CONFIG_PARPORT is not set |
279 | CONFIG_BLK_DEV=y | 343 | CONFIG_BLK_DEV=y |
280 | # CONFIG_BLK_DEV_COW_COMMON is not set | 344 | # CONFIG_BLK_DEV_COW_COMMON is not set |
@@ -286,6 +350,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
286 | # CONFIG_BLK_DEV_XIP is not set | 350 | # CONFIG_BLK_DEV_XIP is not set |
287 | # CONFIG_CDROM_PKTCDVD is not set | 351 | # CONFIG_CDROM_PKTCDVD is not set |
288 | # CONFIG_ATA_OVER_ETH is not set | 352 | # CONFIG_ATA_OVER_ETH is not set |
353 | # CONFIG_BLK_DEV_HD is not set | ||
289 | # CONFIG_MISC_DEVICES is not set | 354 | # CONFIG_MISC_DEVICES is not set |
290 | CONFIG_HAVE_IDE=y | 355 | CONFIG_HAVE_IDE=y |
291 | # CONFIG_IDE is not set | 356 | # CONFIG_IDE is not set |
@@ -299,7 +364,7 @@ CONFIG_HAVE_IDE=y | |||
299 | # CONFIG_SCSI_NETLINK is not set | 364 | # CONFIG_SCSI_NETLINK is not set |
300 | # CONFIG_MD is not set | 365 | # CONFIG_MD is not set |
301 | CONFIG_NETDEVICES=y | 366 | CONFIG_NETDEVICES=y |
302 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 367 | CONFIG_COMPAT_NET_DEV_OPS=y |
303 | # CONFIG_DUMMY is not set | 368 | # CONFIG_DUMMY is not set |
304 | # CONFIG_BONDING is not set | 369 | # CONFIG_BONDING is not set |
305 | # CONFIG_MACVLAN is not set | 370 | # CONFIG_MACVLAN is not set |
@@ -309,10 +374,15 @@ CONFIG_NETDEVICES=y | |||
309 | # CONFIG_PHYLIB is not set | 374 | # CONFIG_PHYLIB is not set |
310 | CONFIG_NET_ETHERNET=y | 375 | CONFIG_NET_ETHERNET=y |
311 | # CONFIG_MII is not set | 376 | # CONFIG_MII is not set |
377 | # CONFIG_ETHOC is not set | ||
378 | # CONFIG_DNET is not set | ||
312 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 379 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
313 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 380 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
314 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 381 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
315 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 382 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
383 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
384 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
385 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
316 | # CONFIG_B44 is not set | 386 | # CONFIG_B44 is not set |
317 | # CONFIG_NETDEV_1000 is not set | 387 | # CONFIG_NETDEV_1000 is not set |
318 | # CONFIG_NETDEV_10000 is not set | 388 | # CONFIG_NETDEV_10000 is not set |
@@ -322,8 +392,10 @@ CONFIG_NET_ETHERNET=y | |||
322 | # | 392 | # |
323 | # CONFIG_WLAN_PRE80211 is not set | 393 | # CONFIG_WLAN_PRE80211 is not set |
324 | # CONFIG_WLAN_80211 is not set | 394 | # CONFIG_WLAN_80211 is not set |
325 | # CONFIG_IWLWIFI is not set | 395 | |
326 | # CONFIG_IWLWIFI_LEDS is not set | 396 | # |
397 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
398 | # | ||
327 | # CONFIG_WAN is not set | 399 | # CONFIG_WAN is not set |
328 | CONFIG_PPP=y | 400 | CONFIG_PPP=y |
329 | # CONFIG_PPP_MULTILINK is not set | 401 | # CONFIG_PPP_MULTILINK is not set |
@@ -381,7 +453,7 @@ CONFIG_INPUT=y | |||
381 | # Character devices | 453 | # Character devices |
382 | # | 454 | # |
383 | # CONFIG_VT is not set | 455 | # CONFIG_VT is not set |
384 | # CONFIG_DEVKMEM is not set | 456 | CONFIG_DEVKMEM=y |
385 | # CONFIG_SERIAL_NONSTANDARD is not set | 457 | # CONFIG_SERIAL_NONSTANDARD is not set |
386 | 458 | ||
387 | # | 459 | # |
@@ -394,13 +466,12 @@ CONFIG_INPUT=y | |||
394 | # | 466 | # |
395 | CONFIG_SERIAL_CORE=y | 467 | CONFIG_SERIAL_CORE=y |
396 | CONFIG_SERIAL_CORE_CONSOLE=y | 468 | CONFIG_SERIAL_CORE_CONSOLE=y |
397 | # CONFIG_SERIAL_COLDFIRE is not set | ||
398 | CONFIG_SERIAL_MCF=y | 469 | CONFIG_SERIAL_MCF=y |
399 | CONFIG_SERIAL_MCF_BAUDRATE=19200 | 470 | CONFIG_SERIAL_MCF_BAUDRATE=19200 |
400 | CONFIG_SERIAL_MCF_CONSOLE=y | 471 | CONFIG_SERIAL_MCF_CONSOLE=y |
401 | CONFIG_UNIX98_PTYS=y | 472 | CONFIG_UNIX98_PTYS=y |
402 | CONFIG_LEGACY_PTYS=y | 473 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set |
403 | CONFIG_LEGACY_PTY_COUNT=256 | 474 | # CONFIG_LEGACY_PTYS is not set |
404 | # CONFIG_IPMI_HANDLER is not set | 475 | # CONFIG_IPMI_HANDLER is not set |
405 | # CONFIG_HW_RANDOM is not set | 476 | # CONFIG_HW_RANDOM is not set |
406 | # CONFIG_GEN_RTC is not set | 477 | # CONFIG_GEN_RTC is not set |
@@ -413,19 +484,23 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
413 | # CONFIG_POWER_SUPPLY is not set | 484 | # CONFIG_POWER_SUPPLY is not set |
414 | # CONFIG_HWMON is not set | 485 | # CONFIG_HWMON is not set |
415 | # CONFIG_THERMAL is not set | 486 | # CONFIG_THERMAL is not set |
487 | # CONFIG_THERMAL_HWMON is not set | ||
416 | # CONFIG_WATCHDOG is not set | 488 | # CONFIG_WATCHDOG is not set |
489 | CONFIG_SSB_POSSIBLE=y | ||
417 | 490 | ||
418 | # | 491 | # |
419 | # Sonics Silicon Backplane | 492 | # Sonics Silicon Backplane |
420 | # | 493 | # |
421 | CONFIG_SSB_POSSIBLE=y | ||
422 | # CONFIG_SSB is not set | 494 | # CONFIG_SSB is not set |
423 | 495 | ||
424 | # | 496 | # |
425 | # Multifunction device drivers | 497 | # Multifunction device drivers |
426 | # | 498 | # |
499 | # CONFIG_MFD_CORE is not set | ||
427 | # CONFIG_MFD_SM501 is not set | 500 | # CONFIG_MFD_SM501 is not set |
428 | # CONFIG_HTC_PASIC3 is not set | 501 | # CONFIG_HTC_PASIC3 is not set |
502 | # CONFIG_MFD_TMIO is not set | ||
503 | # CONFIG_REGULATOR is not set | ||
429 | 504 | ||
430 | # | 505 | # |
431 | # Multimedia devices | 506 | # Multimedia devices |
@@ -436,6 +511,7 @@ CONFIG_SSB_POSSIBLE=y | |||
436 | # | 511 | # |
437 | # CONFIG_VIDEO_DEV is not set | 512 | # CONFIG_VIDEO_DEV is not set |
438 | # CONFIG_DVB_CORE is not set | 513 | # CONFIG_DVB_CORE is not set |
514 | # CONFIG_VIDEO_MEDIA is not set | ||
439 | 515 | ||
440 | # | 516 | # |
441 | # Multimedia drivers | 517 | # Multimedia drivers |
@@ -454,10 +530,6 @@ CONFIG_DAB=y | |||
454 | # Display device support | 530 | # Display device support |
455 | # | 531 | # |
456 | # CONFIG_DISPLAY_SUPPORT is not set | 532 | # CONFIG_DISPLAY_SUPPORT is not set |
457 | |||
458 | # | ||
459 | # Sound | ||
460 | # | ||
461 | # CONFIG_SOUND is not set | 533 | # CONFIG_SOUND is not set |
462 | # CONFIG_HID_SUPPORT is not set | 534 | # CONFIG_HID_SUPPORT is not set |
463 | # CONFIG_USB_SUPPORT is not set | 535 | # CONFIG_USB_SUPPORT is not set |
@@ -466,7 +538,10 @@ CONFIG_DAB=y | |||
466 | # CONFIG_NEW_LEDS is not set | 538 | # CONFIG_NEW_LEDS is not set |
467 | # CONFIG_ACCESSIBILITY is not set | 539 | # CONFIG_ACCESSIBILITY is not set |
468 | # CONFIG_RTC_CLASS is not set | 540 | # CONFIG_RTC_CLASS is not set |
541 | # CONFIG_DMADEVICES is not set | ||
542 | # CONFIG_AUXDISPLAY is not set | ||
469 | # CONFIG_UIO is not set | 543 | # CONFIG_UIO is not set |
544 | # CONFIG_STAGING is not set | ||
470 | 545 | ||
471 | # | 546 | # |
472 | # File systems | 547 | # File systems |
@@ -474,12 +549,14 @@ CONFIG_DAB=y | |||
474 | CONFIG_EXT2_FS=y | 549 | CONFIG_EXT2_FS=y |
475 | # CONFIG_EXT2_FS_XATTR is not set | 550 | # CONFIG_EXT2_FS_XATTR is not set |
476 | # CONFIG_EXT3_FS is not set | 551 | # CONFIG_EXT3_FS is not set |
477 | # CONFIG_EXT4DEV_FS is not set | 552 | # CONFIG_EXT4_FS is not set |
478 | # CONFIG_REISERFS_FS is not set | 553 | # CONFIG_REISERFS_FS is not set |
479 | # CONFIG_JFS_FS is not set | 554 | # CONFIG_JFS_FS is not set |
480 | # CONFIG_FS_POSIX_ACL is not set | 555 | # CONFIG_FS_POSIX_ACL is not set |
556 | CONFIG_FILE_LOCKING=y | ||
481 | # CONFIG_XFS_FS is not set | 557 | # CONFIG_XFS_FS is not set |
482 | # CONFIG_OCFS2_FS is not set | 558 | # CONFIG_OCFS2_FS is not set |
559 | # CONFIG_BTRFS_FS is not set | ||
483 | # CONFIG_DNOTIFY is not set | 560 | # CONFIG_DNOTIFY is not set |
484 | # CONFIG_INOTIFY is not set | 561 | # CONFIG_INOTIFY is not set |
485 | # CONFIG_QUOTA is not set | 562 | # CONFIG_QUOTA is not set |
@@ -488,6 +565,11 @@ CONFIG_EXT2_FS=y | |||
488 | # CONFIG_FUSE_FS is not set | 565 | # CONFIG_FUSE_FS is not set |
489 | 566 | ||
490 | # | 567 | # |
568 | # Caches | ||
569 | # | ||
570 | # CONFIG_FSCACHE is not set | ||
571 | |||
572 | # | ||
491 | # CD-ROM/DVD Filesystems | 573 | # CD-ROM/DVD Filesystems |
492 | # | 574 | # |
493 | # CONFIG_ISO9660_FS is not set | 575 | # CONFIG_ISO9660_FS is not set |
@@ -509,10 +591,7 @@ CONFIG_SYSFS=y | |||
509 | # CONFIG_TMPFS is not set | 591 | # CONFIG_TMPFS is not set |
510 | # CONFIG_HUGETLB_PAGE is not set | 592 | # CONFIG_HUGETLB_PAGE is not set |
511 | # CONFIG_CONFIGFS_FS is not set | 593 | # CONFIG_CONFIGFS_FS is not set |
512 | 594 | CONFIG_MISC_FILESYSTEMS=y | |
513 | # | ||
514 | # Miscellaneous filesystems | ||
515 | # | ||
516 | # CONFIG_ADFS_FS is not set | 595 | # CONFIG_ADFS_FS is not set |
517 | # CONFIG_AFFS_FS is not set | 596 | # CONFIG_AFFS_FS is not set |
518 | # CONFIG_HFS_FS is not set | 597 | # CONFIG_HFS_FS is not set |
@@ -520,14 +599,22 @@ CONFIG_SYSFS=y | |||
520 | # CONFIG_BEFS_FS is not set | 599 | # CONFIG_BEFS_FS is not set |
521 | # CONFIG_BFS_FS is not set | 600 | # CONFIG_BFS_FS is not set |
522 | # CONFIG_EFS_FS is not set | 601 | # CONFIG_EFS_FS is not set |
602 | # CONFIG_JFFS2_FS is not set | ||
523 | # CONFIG_CRAMFS is not set | 603 | # CONFIG_CRAMFS is not set |
604 | # CONFIG_SQUASHFS is not set | ||
524 | # CONFIG_VXFS_FS is not set | 605 | # CONFIG_VXFS_FS is not set |
525 | # CONFIG_MINIX_FS is not set | 606 | # CONFIG_MINIX_FS is not set |
607 | # CONFIG_OMFS_FS is not set | ||
526 | # CONFIG_HPFS_FS is not set | 608 | # CONFIG_HPFS_FS is not set |
527 | # CONFIG_QNX4FS_FS is not set | 609 | # CONFIG_QNX4FS_FS is not set |
528 | CONFIG_ROMFS_FS=y | 610 | CONFIG_ROMFS_FS=y |
611 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
612 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
613 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
614 | CONFIG_ROMFS_ON_MTD=y | ||
529 | # CONFIG_SYSV_FS is not set | 615 | # CONFIG_SYSV_FS is not set |
530 | # CONFIG_UFS_FS is not set | 616 | # CONFIG_UFS_FS is not set |
617 | # CONFIG_NILFS2_FS is not set | ||
531 | # CONFIG_NETWORK_FILESYSTEMS is not set | 618 | # CONFIG_NETWORK_FILESYSTEMS is not set |
532 | 619 | ||
533 | # | 620 | # |
@@ -551,10 +638,14 @@ CONFIG_FRAME_WARN=1024 | |||
551 | # CONFIG_HEADERS_CHECK is not set | 638 | # CONFIG_HEADERS_CHECK is not set |
552 | # CONFIG_DEBUG_KERNEL is not set | 639 | # CONFIG_DEBUG_KERNEL is not set |
553 | # CONFIG_DEBUG_BUGVERBOSE is not set | 640 | # CONFIG_DEBUG_BUGVERBOSE is not set |
641 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
642 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
643 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
554 | # CONFIG_SAMPLES is not set | 644 | # CONFIG_SAMPLES is not set |
555 | CONFIG_FULLDEBUG=y | 645 | CONFIG_FULLDEBUG=y |
556 | # CONFIG_HIGHPROFILE is not set | 646 | # CONFIG_HIGHPROFILE is not set |
557 | # CONFIG_BOOTPARAM is not set | 647 | CONFIG_BOOTPARAM=y |
648 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
558 | # CONFIG_NO_KERNEL_MSG is not set | 649 | # CONFIG_NO_KERNEL_MSG is not set |
559 | # CONFIG_BDM_DISABLE is not set | 650 | # CONFIG_BDM_DISABLE is not set |
560 | 651 | ||
@@ -563,18 +654,22 @@ CONFIG_FULLDEBUG=y | |||
563 | # | 654 | # |
564 | # CONFIG_KEYS is not set | 655 | # CONFIG_KEYS is not set |
565 | # CONFIG_SECURITY is not set | 656 | # CONFIG_SECURITY is not set |
657 | # CONFIG_SECURITYFS is not set | ||
566 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 658 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
567 | # CONFIG_CRYPTO is not set | 659 | # CONFIG_CRYPTO is not set |
660 | # CONFIG_BINARY_PRINTF is not set | ||
568 | 661 | ||
569 | # | 662 | # |
570 | # Library routines | 663 | # Library routines |
571 | # | 664 | # |
572 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 665 | CONFIG_GENERIC_FIND_LAST_BIT=y |
573 | # CONFIG_CRC_CCITT is not set | 666 | # CONFIG_CRC_CCITT is not set |
574 | # CONFIG_CRC16 is not set | 667 | # CONFIG_CRC16 is not set |
668 | # CONFIG_CRC_T10DIF is not set | ||
575 | # CONFIG_CRC_ITU_T is not set | 669 | # CONFIG_CRC_ITU_T is not set |
576 | # CONFIG_CRC32 is not set | 670 | # CONFIG_CRC32 is not set |
577 | # CONFIG_CRC7 is not set | 671 | # CONFIG_CRC7 is not set |
578 | # CONFIG_LIBCRC32C is not set | 672 | # CONFIG_LIBCRC32C is not set |
579 | CONFIG_HAS_IOMEM=y | 673 | CONFIG_HAS_IOMEM=y |
580 | CONFIG_HAS_DMA=y | 674 | CONFIG_HAS_DMA=y |
675 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/configs/m5407c3_defconfig b/arch/m68knommu/configs/m5407c3_defconfig index 1118936d20e3..97b6cde2fc19 100644 --- a/arch/m68knommu/configs/m5407c3_defconfig +++ b/arch/m68knommu/configs/m5407c3_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.26-rc1 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Wed May 7 10:25:16 2008 | 4 | # Thu Apr 23 09:21:40 2009 |
5 | # | 5 | # |
6 | CONFIG_M68K=y | 6 | CONFIG_M68K=y |
7 | # CONFIG_MMU is not set | 7 | # CONFIG_MMU is not set |
@@ -16,9 +16,10 @@ CONFIG_GENERIC_HWEIGHT=y | |||
16 | CONFIG_GENERIC_HARDIRQS=y | 16 | CONFIG_GENERIC_HARDIRQS=y |
17 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 17 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
18 | CONFIG_GENERIC_TIME=y | 18 | CONFIG_GENERIC_TIME=y |
19 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
19 | CONFIG_TIME_LOW_RES=y | 20 | CONFIG_TIME_LOW_RES=y |
21 | # CONFIG_GENERIC_CLOCKEVENTS is not set | ||
20 | CONFIG_NO_IOPORT=y | 22 | CONFIG_NO_IOPORT=y |
21 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
22 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 23 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
23 | 24 | ||
24 | # | 25 | # |
@@ -34,10 +35,19 @@ CONFIG_LOCALVERSION_AUTO=y | |||
34 | # CONFIG_BSD_PROCESS_ACCT is not set | 35 | # CONFIG_BSD_PROCESS_ACCT is not set |
35 | # CONFIG_TASKSTATS is not set | 36 | # CONFIG_TASKSTATS is not set |
36 | # CONFIG_AUDIT is not set | 37 | # CONFIG_AUDIT is not set |
38 | |||
39 | # | ||
40 | # RCU Subsystem | ||
41 | # | ||
42 | CONFIG_CLASSIC_RCU=y | ||
43 | # CONFIG_TREE_RCU is not set | ||
44 | # CONFIG_PREEMPT_RCU is not set | ||
45 | # CONFIG_TREE_RCU_TRACE is not set | ||
46 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
37 | # CONFIG_IKCONFIG is not set | 47 | # CONFIG_IKCONFIG is not set |
38 | CONFIG_LOG_BUF_SHIFT=14 | 48 | CONFIG_LOG_BUF_SHIFT=14 |
39 | # CONFIG_CGROUPS is not set | ||
40 | # CONFIG_GROUP_SCHED is not set | 49 | # CONFIG_GROUP_SCHED is not set |
50 | # CONFIG_CGROUPS is not set | ||
41 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | 51 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
42 | # CONFIG_RELAY is not set | 52 | # CONFIG_RELAY is not set |
43 | # CONFIG_NAMESPACES is not set | 53 | # CONFIG_NAMESPACES is not set |
@@ -45,44 +55,43 @@ CONFIG_LOG_BUF_SHIFT=14 | |||
45 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 55 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
46 | CONFIG_SYSCTL=y | 56 | CONFIG_SYSCTL=y |
47 | CONFIG_EMBEDDED=y | 57 | CONFIG_EMBEDDED=y |
48 | # CONFIG_UID16 is not set | 58 | CONFIG_UID16=y |
49 | # CONFIG_SYSCTL_SYSCALL is not set | 59 | CONFIG_SYSCTL_SYSCALL=y |
50 | # CONFIG_KALLSYMS is not set | 60 | # CONFIG_KALLSYMS is not set |
61 | # CONFIG_STRIP_ASM_SYMS is not set | ||
51 | # CONFIG_HOTPLUG is not set | 62 | # CONFIG_HOTPLUG is not set |
52 | CONFIG_PRINTK=y | 63 | CONFIG_PRINTK=y |
53 | CONFIG_BUG=y | 64 | CONFIG_BUG=y |
54 | CONFIG_ELF_CORE=y | 65 | CONFIG_ELF_CORE=y |
55 | # CONFIG_COMPAT_BRK is not set | ||
56 | CONFIG_BASE_FULL=y | 66 | CONFIG_BASE_FULL=y |
57 | # CONFIG_FUTEX is not set | 67 | # CONFIG_FUTEX is not set |
58 | # CONFIG_EPOLL is not set | 68 | # CONFIG_EPOLL is not set |
59 | # CONFIG_SIGNALFD is not set | 69 | # CONFIG_SIGNALFD is not set |
60 | # CONFIG_TIMERFD is not set | 70 | # CONFIG_TIMERFD is not set |
61 | # CONFIG_EVENTFD is not set | 71 | # CONFIG_EVENTFD is not set |
72 | # CONFIG_AIO is not set | ||
62 | # CONFIG_VM_EVENT_COUNTERS is not set | 73 | # CONFIG_VM_EVENT_COUNTERS is not set |
63 | CONFIG_SLAB=y | 74 | CONFIG_SLUB_DEBUG=y |
64 | # CONFIG_SLUB is not set | 75 | CONFIG_COMPAT_BRK=y |
76 | # CONFIG_SLAB is not set | ||
77 | CONFIG_SLUB=y | ||
65 | # CONFIG_SLOB is not set | 78 | # CONFIG_SLOB is not set |
66 | # CONFIG_PROFILING is not set | 79 | # CONFIG_PROFILING is not set |
67 | # CONFIG_MARKERS is not set | 80 | # CONFIG_MARKERS is not set |
68 | # CONFIG_HAVE_OPROFILE is not set | 81 | # CONFIG_SLOW_WORK is not set |
69 | # CONFIG_HAVE_KPROBES is not set | 82 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
70 | # CONFIG_HAVE_KRETPROBES is not set | ||
71 | # CONFIG_HAVE_DMA_ATTRS is not set | ||
72 | CONFIG_SLABINFO=y | 83 | CONFIG_SLABINFO=y |
73 | CONFIG_TINY_SHMEM=y | ||
74 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
75 | CONFIG_MODULES=y | 85 | CONFIG_MODULES=y |
86 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
76 | CONFIG_MODULE_UNLOAD=y | 87 | CONFIG_MODULE_UNLOAD=y |
77 | # CONFIG_MODULE_FORCE_UNLOAD is not set | 88 | # CONFIG_MODULE_FORCE_UNLOAD is not set |
78 | # CONFIG_MODVERSIONS is not set | 89 | # CONFIG_MODVERSIONS is not set |
79 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 90 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
80 | # CONFIG_KMOD is not set | ||
81 | CONFIG_BLOCK=y | 91 | CONFIG_BLOCK=y |
82 | # CONFIG_LBD is not set | 92 | # CONFIG_LBD is not set |
83 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
84 | # CONFIG_LSF is not set | ||
85 | # CONFIG_BLK_DEV_BSG is not set | 93 | # CONFIG_BLK_DEV_BSG is not set |
94 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
86 | 95 | ||
87 | # | 96 | # |
88 | # IO Schedulers | 97 | # IO Schedulers |
@@ -96,7 +105,7 @@ CONFIG_IOSCHED_NOOP=y | |||
96 | # CONFIG_DEFAULT_CFQ is not set | 105 | # CONFIG_DEFAULT_CFQ is not set |
97 | CONFIG_DEFAULT_NOOP=y | 106 | CONFIG_DEFAULT_NOOP=y |
98 | CONFIG_DEFAULT_IOSCHED="noop" | 107 | CONFIG_DEFAULT_IOSCHED="noop" |
99 | CONFIG_CLASSIC_RCU=y | 108 | # CONFIG_FREEZER is not set |
100 | 109 | ||
101 | # | 110 | # |
102 | # Processor type and features | 111 | # Processor type and features |
@@ -149,45 +158,36 @@ CONFIG_RAMAUTOBIT=y | |||
149 | # CONFIG_ROM is not set | 158 | # CONFIG_ROM is not set |
150 | CONFIG_RAMKERNEL=y | 159 | CONFIG_RAMKERNEL=y |
151 | # CONFIG_ROMKERNEL is not set | 160 | # CONFIG_ROMKERNEL is not set |
161 | CONFIG_PREEMPT_NONE=y | ||
162 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
163 | # CONFIG_PREEMPT is not set | ||
152 | CONFIG_SELECT_MEMORY_MODEL=y | 164 | CONFIG_SELECT_MEMORY_MODEL=y |
153 | CONFIG_FLATMEM_MANUAL=y | 165 | CONFIG_FLATMEM_MANUAL=y |
154 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 166 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
155 | # CONFIG_SPARSEMEM_MANUAL is not set | 167 | # CONFIG_SPARSEMEM_MANUAL is not set |
156 | CONFIG_FLATMEM=y | 168 | CONFIG_FLATMEM=y |
157 | CONFIG_FLAT_NODE_MEM_MAP=y | 169 | CONFIG_FLAT_NODE_MEM_MAP=y |
158 | # CONFIG_SPARSEMEM_STATIC is not set | ||
159 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
160 | CONFIG_PAGEFLAGS_EXTENDED=y | 170 | CONFIG_PAGEFLAGS_EXTENDED=y |
161 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 171 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
162 | # CONFIG_RESOURCES_64BIT is not set | 172 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
163 | CONFIG_ZONE_DMA_FLAG=1 | 173 | CONFIG_ZONE_DMA_FLAG=1 |
164 | CONFIG_VIRT_TO_BUS=y | 174 | CONFIG_VIRT_TO_BUS=y |
175 | # CONFIG_UNEVICTABLE_LRU is not set | ||
165 | CONFIG_ISA_DMA_API=y | 176 | CONFIG_ISA_DMA_API=y |
166 | 177 | ||
167 | # | 178 | # |
168 | # Bus options (PCI, PCMCIA, EISA, MCA, ISA) | ||
169 | # | ||
170 | # CONFIG_PCI is not set | ||
171 | # CONFIG_COMEMPCI is not set | ||
172 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
173 | |||
174 | # | ||
175 | # Executable file formats | 179 | # Executable file formats |
176 | # | 180 | # |
177 | CONFIG_BINFMT_FLAT=y | 181 | CONFIG_BINFMT_FLAT=y |
178 | # CONFIG_BINFMT_ZFLAT is not set | 182 | # CONFIG_BINFMT_ZFLAT is not set |
179 | # CONFIG_BINFMT_SHARED_FLAT is not set | 183 | # CONFIG_BINFMT_SHARED_FLAT is not set |
180 | # CONFIG_BINFMT_AOUT is not set | 184 | # CONFIG_HAVE_AOUT is not set |
181 | # CONFIG_BINFMT_MISC is not set | 185 | # CONFIG_BINFMT_MISC is not set |
182 | 186 | ||
183 | # | 187 | # |
184 | # Power management options | 188 | # Power management options |
185 | # | 189 | # |
186 | # CONFIG_PM is not set | 190 | # CONFIG_PM is not set |
187 | |||
188 | # | ||
189 | # Networking | ||
190 | # | ||
191 | CONFIG_NET=y | 191 | CONFIG_NET=y |
192 | 192 | ||
193 | # | 193 | # |
@@ -228,6 +228,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
228 | # CONFIG_TIPC is not set | 228 | # CONFIG_TIPC is not set |
229 | # CONFIG_ATM is not set | 229 | # CONFIG_ATM is not set |
230 | # CONFIG_BRIDGE is not set | 230 | # CONFIG_BRIDGE is not set |
231 | # CONFIG_NET_DSA is not set | ||
231 | # CONFIG_VLAN_8021Q is not set | 232 | # CONFIG_VLAN_8021Q is not set |
232 | # CONFIG_DECNET is not set | 233 | # CONFIG_DECNET is not set |
233 | # CONFIG_LLC2 is not set | 234 | # CONFIG_LLC2 is not set |
@@ -237,7 +238,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
237 | # CONFIG_LAPB is not set | 238 | # CONFIG_LAPB is not set |
238 | # CONFIG_ECONET is not set | 239 | # CONFIG_ECONET is not set |
239 | # CONFIG_WAN_ROUTER is not set | 240 | # CONFIG_WAN_ROUTER is not set |
241 | # CONFIG_PHONET is not set | ||
240 | # CONFIG_NET_SCHED is not set | 242 | # CONFIG_NET_SCHED is not set |
243 | # CONFIG_DCB is not set | ||
241 | 244 | ||
242 | # | 245 | # |
243 | # Network testing | 246 | # Network testing |
@@ -248,14 +251,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
248 | # CONFIG_IRDA is not set | 251 | # CONFIG_IRDA is not set |
249 | # CONFIG_BT is not set | 252 | # CONFIG_BT is not set |
250 | # CONFIG_AF_RXRPC is not set | 253 | # CONFIG_AF_RXRPC is not set |
251 | 254 | # CONFIG_WIRELESS is not set | |
252 | # | 255 | # CONFIG_WIMAX is not set |
253 | # Wireless | ||
254 | # | ||
255 | # CONFIG_CFG80211 is not set | ||
256 | # CONFIG_WIRELESS_EXT is not set | ||
257 | # CONFIG_MAC80211 is not set | ||
258 | # CONFIG_IEEE80211 is not set | ||
259 | # CONFIG_RFKILL is not set | 256 | # CONFIG_RFKILL is not set |
260 | # CONFIG_NET_9P is not set | 257 | # CONFIG_NET_9P is not set |
261 | 258 | ||
@@ -274,6 +271,7 @@ CONFIG_MTD=y | |||
274 | # CONFIG_MTD_DEBUG is not set | 271 | # CONFIG_MTD_DEBUG is not set |
275 | # CONFIG_MTD_CONCAT is not set | 272 | # CONFIG_MTD_CONCAT is not set |
276 | CONFIG_MTD_PARTITIONS=y | 273 | CONFIG_MTD_PARTITIONS=y |
274 | # CONFIG_MTD_TESTS is not set | ||
277 | # CONFIG_MTD_REDBOOT_PARTS is not set | 275 | # CONFIG_MTD_REDBOOT_PARTS is not set |
278 | # CONFIG_MTD_CMDLINE_PARTS is not set | 276 | # CONFIG_MTD_CMDLINE_PARTS is not set |
279 | # CONFIG_MTD_AR7_PARTS is not set | 277 | # CONFIG_MTD_AR7_PARTS is not set |
@@ -335,6 +333,11 @@ CONFIG_MTD_UCLINUX=y | |||
335 | # CONFIG_MTD_ONENAND is not set | 333 | # CONFIG_MTD_ONENAND is not set |
336 | 334 | ||
337 | # | 335 | # |
336 | # LPDDR flash memory drivers | ||
337 | # | ||
338 | # CONFIG_MTD_LPDDR is not set | ||
339 | |||
340 | # | ||
338 | # UBI - Unsorted block images | 341 | # UBI - Unsorted block images |
339 | # | 342 | # |
340 | # CONFIG_MTD_UBI is not set | 343 | # CONFIG_MTD_UBI is not set |
@@ -349,6 +352,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
349 | # CONFIG_BLK_DEV_XIP is not set | 352 | # CONFIG_BLK_DEV_XIP is not set |
350 | # CONFIG_CDROM_PKTCDVD is not set | 353 | # CONFIG_CDROM_PKTCDVD is not set |
351 | # CONFIG_ATA_OVER_ETH is not set | 354 | # CONFIG_ATA_OVER_ETH is not set |
355 | # CONFIG_BLK_DEV_HD is not set | ||
352 | # CONFIG_MISC_DEVICES is not set | 356 | # CONFIG_MISC_DEVICES is not set |
353 | CONFIG_HAVE_IDE=y | 357 | CONFIG_HAVE_IDE=y |
354 | # CONFIG_IDE is not set | 358 | # CONFIG_IDE is not set |
@@ -362,7 +366,7 @@ CONFIG_HAVE_IDE=y | |||
362 | # CONFIG_SCSI_NETLINK is not set | 366 | # CONFIG_SCSI_NETLINK is not set |
363 | # CONFIG_MD is not set | 367 | # CONFIG_MD is not set |
364 | CONFIG_NETDEVICES=y | 368 | CONFIG_NETDEVICES=y |
365 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 369 | CONFIG_COMPAT_NET_DEV_OPS=y |
366 | # CONFIG_DUMMY is not set | 370 | # CONFIG_DUMMY is not set |
367 | # CONFIG_BONDING is not set | 371 | # CONFIG_BONDING is not set |
368 | # CONFIG_MACVLAN is not set | 372 | # CONFIG_MACVLAN is not set |
@@ -372,10 +376,15 @@ CONFIG_NETDEVICES=y | |||
372 | # CONFIG_PHYLIB is not set | 376 | # CONFIG_PHYLIB is not set |
373 | CONFIG_NET_ETHERNET=y | 377 | CONFIG_NET_ETHERNET=y |
374 | # CONFIG_MII is not set | 378 | # CONFIG_MII is not set |
379 | # CONFIG_ETHOC is not set | ||
380 | # CONFIG_DNET is not set | ||
375 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 381 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
376 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 382 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
377 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 383 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
378 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 384 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
385 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
386 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
387 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
379 | # CONFIG_B44 is not set | 388 | # CONFIG_B44 is not set |
380 | # CONFIG_NETDEV_1000 is not set | 389 | # CONFIG_NETDEV_1000 is not set |
381 | # CONFIG_NETDEV_10000 is not set | 390 | # CONFIG_NETDEV_10000 is not set |
@@ -385,8 +394,10 @@ CONFIG_NET_ETHERNET=y | |||
385 | # | 394 | # |
386 | # CONFIG_WLAN_PRE80211 is not set | 395 | # CONFIG_WLAN_PRE80211 is not set |
387 | # CONFIG_WLAN_80211 is not set | 396 | # CONFIG_WLAN_80211 is not set |
388 | # CONFIG_IWLWIFI is not set | 397 | |
389 | # CONFIG_IWLWIFI_LEDS is not set | 398 | # |
399 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
400 | # | ||
390 | # CONFIG_WAN is not set | 401 | # CONFIG_WAN is not set |
391 | CONFIG_PPP=y | 402 | CONFIG_PPP=y |
392 | # CONFIG_PPP_MULTILINK is not set | 403 | # CONFIG_PPP_MULTILINK is not set |
@@ -409,39 +420,22 @@ CONFIG_SLHC=y | |||
409 | # | 420 | # |
410 | # Input device support | 421 | # Input device support |
411 | # | 422 | # |
412 | CONFIG_INPUT=y | 423 | # CONFIG_INPUT is not set |
413 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
414 | # CONFIG_INPUT_POLLDEV is not set | ||
415 | |||
416 | # | ||
417 | # Userland interfaces | ||
418 | # | ||
419 | # CONFIG_INPUT_MOUSEDEV is not set | ||
420 | # CONFIG_INPUT_JOYDEV is not set | ||
421 | # CONFIG_INPUT_EVDEV is not set | ||
422 | # CONFIG_INPUT_EVBUG is not set | ||
423 | |||
424 | # | ||
425 | # Input Device Drivers | ||
426 | # | ||
427 | # CONFIG_INPUT_KEYBOARD is not set | ||
428 | # CONFIG_INPUT_MOUSE is not set | ||
429 | # CONFIG_INPUT_JOYSTICK is not set | ||
430 | # CONFIG_INPUT_TABLET is not set | ||
431 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
432 | # CONFIG_INPUT_MISC is not set | ||
433 | 424 | ||
434 | # | 425 | # |
435 | # Hardware I/O ports | 426 | # Hardware I/O ports |
436 | # | 427 | # |
437 | # CONFIG_SERIO is not set | 428 | CONFIG_SERIO=y |
429 | CONFIG_SERIO_SERPORT=y | ||
430 | # CONFIG_SERIO_LIBPS2 is not set | ||
431 | # CONFIG_SERIO_RAW is not set | ||
438 | # CONFIG_GAMEPORT is not set | 432 | # CONFIG_GAMEPORT is not set |
439 | 433 | ||
440 | # | 434 | # |
441 | # Character devices | 435 | # Character devices |
442 | # | 436 | # |
443 | # CONFIG_VT is not set | 437 | # CONFIG_VT is not set |
444 | # CONFIG_DEVKMEM is not set | 438 | CONFIG_DEVKMEM=y |
445 | # CONFIG_SERIAL_NONSTANDARD is not set | 439 | # CONFIG_SERIAL_NONSTANDARD is not set |
446 | 440 | ||
447 | # | 441 | # |
@@ -454,7 +448,6 @@ CONFIG_INPUT=y | |||
454 | # | 448 | # |
455 | CONFIG_SERIAL_CORE=y | 449 | CONFIG_SERIAL_CORE=y |
456 | CONFIG_SERIAL_CORE_CONSOLE=y | 450 | CONFIG_SERIAL_CORE_CONSOLE=y |
457 | # CONFIG_SERIAL_COLDFIRE is not set | ||
458 | CONFIG_SERIAL_MCF=y | 451 | CONFIG_SERIAL_MCF=y |
459 | CONFIG_SERIAL_MCF_BAUDRATE=19200 | 452 | CONFIG_SERIAL_MCF_BAUDRATE=19200 |
460 | CONFIG_SERIAL_MCF_CONSOLE=y | 453 | CONFIG_SERIAL_MCF_CONSOLE=y |
@@ -473,19 +466,23 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
473 | # CONFIG_POWER_SUPPLY is not set | 466 | # CONFIG_POWER_SUPPLY is not set |
474 | # CONFIG_HWMON is not set | 467 | # CONFIG_HWMON is not set |
475 | # CONFIG_THERMAL is not set | 468 | # CONFIG_THERMAL is not set |
469 | # CONFIG_THERMAL_HWMON is not set | ||
476 | # CONFIG_WATCHDOG is not set | 470 | # CONFIG_WATCHDOG is not set |
471 | CONFIG_SSB_POSSIBLE=y | ||
477 | 472 | ||
478 | # | 473 | # |
479 | # Sonics Silicon Backplane | 474 | # Sonics Silicon Backplane |
480 | # | 475 | # |
481 | CONFIG_SSB_POSSIBLE=y | ||
482 | # CONFIG_SSB is not set | 476 | # CONFIG_SSB is not set |
483 | 477 | ||
484 | # | 478 | # |
485 | # Multifunction device drivers | 479 | # Multifunction device drivers |
486 | # | 480 | # |
481 | # CONFIG_MFD_CORE is not set | ||
487 | # CONFIG_MFD_SM501 is not set | 482 | # CONFIG_MFD_SM501 is not set |
488 | # CONFIG_HTC_PASIC3 is not set | 483 | # CONFIG_HTC_PASIC3 is not set |
484 | # CONFIG_MFD_TMIO is not set | ||
485 | # CONFIG_REGULATOR is not set | ||
489 | 486 | ||
490 | # | 487 | # |
491 | # Multimedia devices | 488 | # Multimedia devices |
@@ -496,6 +493,7 @@ CONFIG_SSB_POSSIBLE=y | |||
496 | # | 493 | # |
497 | # CONFIG_VIDEO_DEV is not set | 494 | # CONFIG_VIDEO_DEV is not set |
498 | # CONFIG_DVB_CORE is not set | 495 | # CONFIG_DVB_CORE is not set |
496 | # CONFIG_VIDEO_MEDIA is not set | ||
499 | 497 | ||
500 | # | 498 | # |
501 | # Multimedia drivers | 499 | # Multimedia drivers |
@@ -514,19 +512,17 @@ CONFIG_DAB=y | |||
514 | # Display device support | 512 | # Display device support |
515 | # | 513 | # |
516 | # CONFIG_DISPLAY_SUPPORT is not set | 514 | # CONFIG_DISPLAY_SUPPORT is not set |
517 | |||
518 | # | ||
519 | # Sound | ||
520 | # | ||
521 | # CONFIG_SOUND is not set | 515 | # CONFIG_SOUND is not set |
522 | # CONFIG_HID_SUPPORT is not set | ||
523 | # CONFIG_USB_SUPPORT is not set | 516 | # CONFIG_USB_SUPPORT is not set |
524 | # CONFIG_MMC is not set | 517 | # CONFIG_MMC is not set |
525 | # CONFIG_MEMSTICK is not set | 518 | # CONFIG_MEMSTICK is not set |
526 | # CONFIG_NEW_LEDS is not set | 519 | # CONFIG_NEW_LEDS is not set |
527 | # CONFIG_ACCESSIBILITY is not set | 520 | # CONFIG_ACCESSIBILITY is not set |
528 | # CONFIG_RTC_CLASS is not set | 521 | # CONFIG_RTC_CLASS is not set |
522 | # CONFIG_DMADEVICES is not set | ||
523 | # CONFIG_AUXDISPLAY is not set | ||
529 | # CONFIG_UIO is not set | 524 | # CONFIG_UIO is not set |
525 | # CONFIG_STAGING is not set | ||
530 | 526 | ||
531 | # | 527 | # |
532 | # File systems | 528 | # File systems |
@@ -534,12 +530,14 @@ CONFIG_DAB=y | |||
534 | CONFIG_EXT2_FS=y | 530 | CONFIG_EXT2_FS=y |
535 | # CONFIG_EXT2_FS_XATTR is not set | 531 | # CONFIG_EXT2_FS_XATTR is not set |
536 | # CONFIG_EXT3_FS is not set | 532 | # CONFIG_EXT3_FS is not set |
537 | # CONFIG_EXT4DEV_FS is not set | 533 | # CONFIG_EXT4_FS is not set |
538 | # CONFIG_REISERFS_FS is not set | 534 | # CONFIG_REISERFS_FS is not set |
539 | # CONFIG_JFS_FS is not set | 535 | # CONFIG_JFS_FS is not set |
540 | # CONFIG_FS_POSIX_ACL is not set | 536 | # CONFIG_FS_POSIX_ACL is not set |
537 | # CONFIG_FILE_LOCKING is not set | ||
541 | # CONFIG_XFS_FS is not set | 538 | # CONFIG_XFS_FS is not set |
542 | # CONFIG_OCFS2_FS is not set | 539 | # CONFIG_OCFS2_FS is not set |
540 | # CONFIG_BTRFS_FS is not set | ||
543 | # CONFIG_DNOTIFY is not set | 541 | # CONFIG_DNOTIFY is not set |
544 | # CONFIG_INOTIFY is not set | 542 | # CONFIG_INOTIFY is not set |
545 | # CONFIG_QUOTA is not set | 543 | # CONFIG_QUOTA is not set |
@@ -548,6 +546,11 @@ CONFIG_EXT2_FS=y | |||
548 | # CONFIG_FUSE_FS is not set | 546 | # CONFIG_FUSE_FS is not set |
549 | 547 | ||
550 | # | 548 | # |
549 | # Caches | ||
550 | # | ||
551 | # CONFIG_FSCACHE is not set | ||
552 | |||
553 | # | ||
551 | # CD-ROM/DVD Filesystems | 554 | # CD-ROM/DVD Filesystems |
552 | # | 555 | # |
553 | # CONFIG_ISO9660_FS is not set | 556 | # CONFIG_ISO9660_FS is not set |
@@ -569,10 +572,7 @@ CONFIG_SYSFS=y | |||
569 | # CONFIG_TMPFS is not set | 572 | # CONFIG_TMPFS is not set |
570 | # CONFIG_HUGETLB_PAGE is not set | 573 | # CONFIG_HUGETLB_PAGE is not set |
571 | # CONFIG_CONFIGFS_FS is not set | 574 | # CONFIG_CONFIGFS_FS is not set |
572 | 575 | CONFIG_MISC_FILESYSTEMS=y | |
573 | # | ||
574 | # Miscellaneous filesystems | ||
575 | # | ||
576 | # CONFIG_ADFS_FS is not set | 576 | # CONFIG_ADFS_FS is not set |
577 | # CONFIG_AFFS_FS is not set | 577 | # CONFIG_AFFS_FS is not set |
578 | # CONFIG_HFS_FS is not set | 578 | # CONFIG_HFS_FS is not set |
@@ -582,13 +582,20 @@ CONFIG_SYSFS=y | |||
582 | # CONFIG_EFS_FS is not set | 582 | # CONFIG_EFS_FS is not set |
583 | # CONFIG_JFFS2_FS is not set | 583 | # CONFIG_JFFS2_FS is not set |
584 | # CONFIG_CRAMFS is not set | 584 | # CONFIG_CRAMFS is not set |
585 | # CONFIG_SQUASHFS is not set | ||
585 | # CONFIG_VXFS_FS is not set | 586 | # CONFIG_VXFS_FS is not set |
586 | # CONFIG_MINIX_FS is not set | 587 | # CONFIG_MINIX_FS is not set |
588 | # CONFIG_OMFS_FS is not set | ||
587 | # CONFIG_HPFS_FS is not set | 589 | # CONFIG_HPFS_FS is not set |
588 | # CONFIG_QNX4FS_FS is not set | 590 | # CONFIG_QNX4FS_FS is not set |
589 | CONFIG_ROMFS_FS=y | 591 | CONFIG_ROMFS_FS=y |
592 | # CONFIG_ROMFS_BACKED_BY_BLOCK is not set | ||
593 | CONFIG_ROMFS_BACKED_BY_MTD=y | ||
594 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
595 | CONFIG_ROMFS_ON_MTD=y | ||
590 | # CONFIG_SYSV_FS is not set | 596 | # CONFIG_SYSV_FS is not set |
591 | # CONFIG_UFS_FS is not set | 597 | # CONFIG_UFS_FS is not set |
598 | # CONFIG_NILFS2_FS is not set | ||
592 | # CONFIG_NETWORK_FILESYSTEMS is not set | 599 | # CONFIG_NETWORK_FILESYSTEMS is not set |
593 | 600 | ||
594 | # | 601 | # |
@@ -611,11 +618,17 @@ CONFIG_FRAME_WARN=1024 | |||
611 | # CONFIG_DEBUG_FS is not set | 618 | # CONFIG_DEBUG_FS is not set |
612 | # CONFIG_HEADERS_CHECK is not set | 619 | # CONFIG_HEADERS_CHECK is not set |
613 | # CONFIG_DEBUG_KERNEL is not set | 620 | # CONFIG_DEBUG_KERNEL is not set |
621 | # CONFIG_SLUB_DEBUG_ON is not set | ||
622 | # CONFIG_SLUB_STATS is not set | ||
614 | # CONFIG_DEBUG_BUGVERBOSE is not set | 623 | # CONFIG_DEBUG_BUGVERBOSE is not set |
624 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
625 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
626 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
615 | # CONFIG_SAMPLES is not set | 627 | # CONFIG_SAMPLES is not set |
616 | # CONFIG_FULLDEBUG is not set | 628 | # CONFIG_FULLDEBUG is not set |
617 | # CONFIG_HIGHPROFILE is not set | 629 | # CONFIG_HIGHPROFILE is not set |
618 | # CONFIG_BOOTPARAM is not set | 630 | CONFIG_BOOTPARAM=y |
631 | CONFIG_BOOTPARAM_STRING="root=/dev/mtdblock0" | ||
619 | # CONFIG_NO_KERNEL_MSG is not set | 632 | # CONFIG_NO_KERNEL_MSG is not set |
620 | # CONFIG_BDM_DISABLE is not set | 633 | # CONFIG_BDM_DISABLE is not set |
621 | 634 | ||
@@ -624,18 +637,22 @@ CONFIG_FRAME_WARN=1024 | |||
624 | # | 637 | # |
625 | # CONFIG_KEYS is not set | 638 | # CONFIG_KEYS is not set |
626 | # CONFIG_SECURITY is not set | 639 | # CONFIG_SECURITY is not set |
640 | # CONFIG_SECURITYFS is not set | ||
627 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 641 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
628 | # CONFIG_CRYPTO is not set | 642 | # CONFIG_CRYPTO is not set |
643 | # CONFIG_BINARY_PRINTF is not set | ||
629 | 644 | ||
630 | # | 645 | # |
631 | # Library routines | 646 | # Library routines |
632 | # | 647 | # |
633 | # CONFIG_GENERIC_FIND_FIRST_BIT is not set | 648 | CONFIG_GENERIC_FIND_LAST_BIT=y |
634 | # CONFIG_CRC_CCITT is not set | 649 | # CONFIG_CRC_CCITT is not set |
635 | # CONFIG_CRC16 is not set | 650 | # CONFIG_CRC16 is not set |
651 | # CONFIG_CRC_T10DIF is not set | ||
636 | # CONFIG_CRC_ITU_T is not set | 652 | # CONFIG_CRC_ITU_T is not set |
637 | # CONFIG_CRC32 is not set | 653 | # CONFIG_CRC32 is not set |
638 | # CONFIG_CRC7 is not set | 654 | # CONFIG_CRC7 is not set |
639 | # CONFIG_LIBCRC32C is not set | 655 | # CONFIG_LIBCRC32C is not set |
640 | CONFIG_HAS_IOMEM=y | 656 | CONFIG_HAS_IOMEM=y |
641 | CONFIG_HAS_DMA=y | 657 | CONFIG_HAS_DMA=y |
658 | CONFIG_NLATTR=y | ||
diff --git a/arch/m68knommu/kernel/asm-offsets.c b/arch/m68knommu/kernel/asm-offsets.c index c785d07c02cc..f500dd6935d6 100644 --- a/arch/m68knommu/kernel/asm-offsets.c +++ b/arch/m68knommu/kernel/asm-offsets.c | |||
@@ -30,9 +30,6 @@ int main(void) | |||
30 | DEFINE(TASK_MM, offsetof(struct task_struct, mm)); | 30 | DEFINE(TASK_MM, offsetof(struct task_struct, mm)); |
31 | DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); | 31 | DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm)); |
32 | 32 | ||
33 | /* offsets into the kernel_stat struct */ | ||
34 | DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs)); | ||
35 | |||
36 | /* offsets into the irq_cpustat_t struct */ | 33 | /* offsets into the irq_cpustat_t struct */ |
37 | DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending)); | 34 | DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending)); |
38 | 35 | ||
@@ -69,9 +66,6 @@ int main(void) | |||
69 | DEFINE(PT_VECTOR, offsetof(struct pt_regs, pc) + 4); | 66 | DEFINE(PT_VECTOR, offsetof(struct pt_regs, pc) + 4); |
70 | #endif | 67 | #endif |
71 | 68 | ||
72 | /* offsets into the kernel_stat struct */ | ||
73 | DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs)); | ||
74 | |||
75 | /* signal defines */ | 69 | /* signal defines */ |
76 | DEFINE(SIGSEGV, SIGSEGV); | 70 | DEFINE(SIGSEGV, SIGSEGV); |
77 | DEFINE(SEGV_MAPERR, SEGV_MAPERR); | 71 | DEFINE(SEGV_MAPERR, SEGV_MAPERR); |
diff --git a/arch/m68knommu/kernel/dma.c b/arch/m68knommu/kernel/dma.c index 936125806638..aaf38bbbb6cd 100644 --- a/arch/m68knommu/kernel/dma.c +++ b/arch/m68knommu/kernel/dma.c | |||
@@ -7,10 +7,9 @@ | |||
7 | 7 | ||
8 | #include <linux/types.h> | 8 | #include <linux/types.h> |
9 | #include <linux/mm.h> | 9 | #include <linux/mm.h> |
10 | #include <linux/string.h> | ||
11 | #include <linux/device.h> | 10 | #include <linux/device.h> |
12 | #include <linux/dma-mapping.h> | 11 | #include <linux/dma-mapping.h> |
13 | #include <asm/io.h> | 12 | #include <asm/cacheflush.h> |
14 | 13 | ||
15 | void *dma_alloc_coherent(struct device *dev, size_t size, | 14 | void *dma_alloc_coherent(struct device *dev, size_t size, |
16 | dma_addr_t *dma_handle, gfp_t gfp) | 15 | dma_addr_t *dma_handle, gfp_t gfp) |
@@ -36,7 +35,39 @@ void dma_free_coherent(struct device *dev, size_t size, | |||
36 | free_pages((unsigned long)vaddr, get_order(size)); | 35 | free_pages((unsigned long)vaddr, get_order(size)); |
37 | } | 36 | } |
38 | 37 | ||
39 | void dma_sync_single_for_cpu(struct device *dev, dma_addr_t handle, size_t size, enum dma_data_direction dir) | 38 | void dma_sync_single_for_device(struct device *dev, dma_addr_t handle, |
39 | size_t size, enum dma_data_direction dir) | ||
40 | { | 40 | { |
41 | switch (dir) { | ||
42 | case DMA_TO_DEVICE: | ||
43 | flush_dcache_range(handle, size); | ||
44 | break; | ||
45 | case DMA_FROM_DEVICE: | ||
46 | /* Should be clear already */ | ||
47 | break; | ||
48 | default: | ||
49 | if (printk_ratelimit()) | ||
50 | printk("dma_sync_single_for_device: unsupported dir %u\n", dir); | ||
51 | break; | ||
52 | } | ||
53 | } | ||
54 | |||
55 | EXPORT_SYMBOL(dma_sync_single_for_device); | ||
56 | dma_addr_t dma_map_single(struct device *dev, void *addr, size_t size, | ||
57 | enum dma_data_direction dir) | ||
58 | { | ||
59 | dma_addr_t handle = virt_to_phys(addr); | ||
60 | flush_dcache_range(handle, size); | ||
61 | return handle; | ||
41 | } | 62 | } |
63 | EXPORT_SYMBOL(dma_map_single); | ||
42 | 64 | ||
65 | dma_addr_t dma_map_page(struct device *dev, struct page *page, | ||
66 | unsigned long offset, size_t size, | ||
67 | enum dma_data_direction dir) | ||
68 | { | ||
69 | dma_addr_t handle = page_to_phys(page) + offset; | ||
70 | dma_sync_single_for_device(dev, handle, size, dir); | ||
71 | return handle; | ||
72 | } | ||
73 | EXPORT_SYMBOL(dma_map_page); | ||
diff --git a/arch/m68knommu/kernel/syscalltable.S b/arch/m68knommu/kernel/syscalltable.S index 1017e76f3711..c0b8782832fd 100644 --- a/arch/m68knommu/kernel/syscalltable.S +++ b/arch/m68knommu/kernel/syscalltable.S | |||
@@ -347,6 +347,8 @@ ENTRY(sys_call_table) | |||
347 | .long sys_dup3 | 347 | .long sys_dup3 |
348 | .long sys_pipe2 | 348 | .long sys_pipe2 |
349 | .long sys_inotify_init1 | 349 | .long sys_inotify_init1 |
350 | .long sys_preadv | ||
351 | .long sys_pwritev /* 330 */ | ||
350 | 352 | ||
351 | .rept NR_syscalls-(.-sys_call_table)/4 | 353 | .rept NR_syscalls-(.-sys_call_table)/4 |
352 | .long sys_ni_syscall | 354 | .long sys_ni_syscall |
diff --git a/arch/m68knommu/kernel/vmlinux.lds.S b/arch/m68knommu/kernel/vmlinux.lds.S index 69ba9b10767a..b7fe505e358d 100644 --- a/arch/m68knommu/kernel/vmlinux.lds.S +++ b/arch/m68knommu/kernel/vmlinux.lds.S | |||
@@ -147,6 +147,8 @@ SECTIONS { | |||
147 | . = ALIGN(4); | 147 | . = ALIGN(4); |
148 | _sdata = . ; | 148 | _sdata = . ; |
149 | DATA_DATA | 149 | DATA_DATA |
150 | . = ALIGN(32); | ||
151 | *(.data.cacheline_aligned) | ||
150 | . = ALIGN(8192) ; | 152 | . = ALIGN(8192) ; |
151 | *(.data.init_task) | 153 | *(.data.init_task) |
152 | _edata = . ; | 154 | _edata = . ; |
diff --git a/arch/m68knommu/platform/527x/config.c b/arch/m68knommu/platform/527x/config.c index 49343fb157b0..428b15922ef5 100644 --- a/arch/m68knommu/platform/527x/config.c +++ b/arch/m68knommu/platform/527x/config.c | |||
@@ -189,10 +189,15 @@ static void __init m527x_fec_init(void) | |||
189 | m527x_fec_irq_init(0); | 189 | m527x_fec_irq_init(0); |
190 | 190 | ||
191 | /* Set multi-function pins to ethernet mode for fec0 */ | 191 | /* Set multi-function pins to ethernet mode for fec0 */ |
192 | #if defined(CONFIG_M5271) | ||
193 | v = readb(MCF_IPSBAR + 0x100047); | ||
194 | writeb(v | 0xf0, MCF_IPSBAR + 0x100047); | ||
195 | #else | ||
192 | par = readw(MCF_IPSBAR + 0x100082); | 196 | par = readw(MCF_IPSBAR + 0x100082); |
193 | writew(par | 0xf00, MCF_IPSBAR + 0x100082); | 197 | writew(par | 0xf00, MCF_IPSBAR + 0x100082); |
194 | v = readb(MCF_IPSBAR + 0x100078); | 198 | v = readb(MCF_IPSBAR + 0x100078); |
195 | writeb(v | 0xc0, MCF_IPSBAR + 0x100078); | 199 | writeb(v | 0xc0, MCF_IPSBAR + 0x100078); |
200 | #endif | ||
196 | 201 | ||
197 | #ifdef CONFIG_FEC2 | 202 | #ifdef CONFIG_FEC2 |
198 | m527x_fec_irq_init(1); | 203 | m527x_fec_irq_init(1); |
diff --git a/arch/m68knommu/platform/68328/timers.c b/arch/m68knommu/platform/68328/timers.c index 6bafefa546e5..309f725995bf 100644 --- a/arch/m68knommu/platform/68328/timers.c +++ b/arch/m68knommu/platform/68328/timers.c | |||
@@ -75,7 +75,7 @@ static struct irqaction m68328_timer_irq = { | |||
75 | 75 | ||
76 | /***************************************************************************/ | 76 | /***************************************************************************/ |
77 | 77 | ||
78 | static cycle_t m68328_read_clk(void) | 78 | static cycle_t m68328_read_clk(struct clocksource *cs) |
79 | { | 79 | { |
80 | unsigned long flags; | 80 | unsigned long flags; |
81 | u32 cycles; | 81 | u32 cycles; |
diff --git a/arch/m68knommu/platform/coldfire/dma_timer.c b/arch/m68knommu/platform/coldfire/dma_timer.c index 772578b1084f..a5f562823d7a 100644 --- a/arch/m68knommu/platform/coldfire/dma_timer.c +++ b/arch/m68knommu/platform/coldfire/dma_timer.c | |||
@@ -34,7 +34,7 @@ | |||
34 | #define DMA_DTMR_CLK_DIV_16 (2 << 1) | 34 | #define DMA_DTMR_CLK_DIV_16 (2 << 1) |
35 | #define DMA_DTMR_ENABLE (1 << 0) | 35 | #define DMA_DTMR_ENABLE (1 << 0) |
36 | 36 | ||
37 | static cycle_t cf_dt_get_cycles(void) | 37 | static cycle_t cf_dt_get_cycles(struct clocksource *cs) |
38 | { | 38 | { |
39 | return __raw_readl(DTCN0); | 39 | return __raw_readl(DTCN0); |
40 | } | 40 | } |
diff --git a/arch/m68knommu/platform/coldfire/pit.c b/arch/m68knommu/platform/coldfire/pit.c index 2a12e7fa9748..61b96211f8ff 100644 --- a/arch/m68knommu/platform/coldfire/pit.c +++ b/arch/m68knommu/platform/coldfire/pit.c | |||
@@ -125,7 +125,7 @@ static struct irqaction pit_irq = { | |||
125 | 125 | ||
126 | /***************************************************************************/ | 126 | /***************************************************************************/ |
127 | 127 | ||
128 | static cycle_t pit_read_clk(void) | 128 | static cycle_t pit_read_clk(struct clocksource *cs) |
129 | { | 129 | { |
130 | unsigned long flags; | 130 | unsigned long flags; |
131 | u32 cycles; | 131 | u32 cycles; |
diff --git a/arch/m68knommu/platform/coldfire/timers.c b/arch/m68knommu/platform/coldfire/timers.c index 454f25493491..1ba8a3731653 100644 --- a/arch/m68knommu/platform/coldfire/timers.c +++ b/arch/m68knommu/platform/coldfire/timers.c | |||
@@ -78,7 +78,7 @@ static struct irqaction mcftmr_timer_irq = { | |||
78 | 78 | ||
79 | /***************************************************************************/ | 79 | /***************************************************************************/ |
80 | 80 | ||
81 | static cycle_t mcftmr_read_clk(void) | 81 | static cycle_t mcftmr_read_clk(struct clocksource *cs) |
82 | { | 82 | { |
83 | unsigned long flags; | 83 | unsigned long flags; |
84 | u32 cycles; | 84 | u32 cycles; |
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index 0dcbb9832974..aaadfa701da3 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile | |||
@@ -26,21 +26,19 @@ ifeq (,$(findstring spartan2,$(CONFIG_XILINX_MICROBLAZE0_FAMILY))) | |||
26 | endif | 26 | endif |
27 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div | 27 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div |
28 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift | 28 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_BARREL) += -mxl-barrel-shift |
29 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP) += -mxl-pattern-compare | 29 | CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_PCMP_INSTR) += -mxl-pattern-compare |
30 | 30 | ||
31 | CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER)) | 31 | CPUFLAGS-1 += $(call cc-option,-mcpu=v$(CPU_VER)) |
32 | 32 | ||
33 | # The various CONFIG_XILINX cpu features options are integers 0/1/2... | 33 | # The various CONFIG_XILINX cpu features options are integers 0/1/2... |
34 | # rather than bools y/n | 34 | # rather than bools y/n |
35 | CFLAGS += $(CPUFLAGS-1) | ||
36 | CFLAGS += $(CPUFLAGS-2) | ||
37 | 35 | ||
38 | # r31 holds current when in kernel mode | 36 | # r31 holds current when in kernel mode |
39 | CFLAGS += -ffixed-r31 | 37 | CFLAGS_KERNEL += -ffixed-r31 $(CPUFLAGS-1) $(CPUFLAGS-2) |
40 | 38 | ||
41 | LDFLAGS_BLOB := --format binary --oformat elf32-microblaze | 39 | LDFLAGS_BLOB := --format binary --oformat elf32-microblaze |
42 | 40 | ||
43 | LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name) | 41 | LIBGCC := $(shell $(CC) $(CFLAGS_KERNEL) -print-libgcc-file-name) |
44 | 42 | ||
45 | head-y := arch/microblaze/kernel/head.o | 43 | head-y := arch/microblaze/kernel/head.o |
46 | libs-y += arch/microblaze/lib/ $(LIBGCC) | 44 | libs-y += arch/microblaze/lib/ $(LIBGCC) |
diff --git a/arch/microblaze/include/asm/cache.h b/arch/microblaze/include/asm/cache.h index c4c64b43c074..c209c47509d5 100644 --- a/arch/microblaze/include/asm/cache.h +++ b/arch/microblaze/include/asm/cache.h | |||
@@ -37,9 +37,4 @@ void _invalidate_dcache(unsigned int addr); | |||
37 | #define __disable_dcache() _disable_dcache() | 37 | #define __disable_dcache() _disable_dcache() |
38 | #define __invalidate_dcache(addr) _invalidate_dcache(addr) | 38 | #define __invalidate_dcache(addr) _invalidate_dcache(addr) |
39 | 39 | ||
40 | /* FIXME - I don't think this is right */ | ||
41 | #ifdef CONFIG_XILINX_UNCACHED_SHADOW | ||
42 | #define UNCACHED_SHADOW_MASK (CONFIG_XILINX_ERAM_SIZE) | ||
43 | #endif | ||
44 | |||
45 | #endif /* _ASM_MICROBLAZE_CACHE_H */ | 40 | #endif /* _ASM_MICROBLAZE_CACHE_H */ |
diff --git a/arch/microblaze/include/asm/entry.h b/arch/microblaze/include/asm/entry.h index 7f57e42ee467..e4c3aef884df 100644 --- a/arch/microblaze/include/asm/entry.h +++ b/arch/microblaze/include/asm/entry.h | |||
@@ -29,7 +29,9 @@ DECLARE_PER_CPU(unsigned int, KM); /* Kernel/user mode */ | |||
29 | DECLARE_PER_CPU(unsigned int, ENTRY_SP); /* Saved SP on kernel entry */ | 29 | DECLARE_PER_CPU(unsigned int, ENTRY_SP); /* Saved SP on kernel entry */ |
30 | DECLARE_PER_CPU(unsigned int, R11_SAVE); /* Temp variable for entry */ | 30 | DECLARE_PER_CPU(unsigned int, R11_SAVE); /* Temp variable for entry */ |
31 | DECLARE_PER_CPU(unsigned int, CURRENT_SAVE); /* Saved current pointer */ | 31 | DECLARE_PER_CPU(unsigned int, CURRENT_SAVE); /* Saved current pointer */ |
32 | DECLARE_PER_CPU(unsigned int, SYSCALL_SAVE); /* Saved syscall number */ | ||
33 | # endif /* __ASSEMBLY__ */ | 32 | # endif /* __ASSEMBLY__ */ |
34 | 33 | ||
34 | /* noMMU hasn't any space for args */ | ||
35 | # define STATE_SAVE_ARG_SPACE (0) | ||
36 | |||
35 | #endif /* _ASM_MICROBLAZE_ENTRY_H */ | 37 | #endif /* _ASM_MICROBLAZE_ENTRY_H */ |
diff --git a/arch/microblaze/include/asm/exceptions.h b/arch/microblaze/include/asm/exceptions.h index 4cdd2159f470..24ca540e77c0 100644 --- a/arch/microblaze/include/asm/exceptions.h +++ b/arch/microblaze/include/asm/exceptions.h | |||
@@ -61,6 +61,9 @@ | |||
61 | asmlinkage void full_exception(struct pt_regs *regs, unsigned int type, | 61 | asmlinkage void full_exception(struct pt_regs *regs, unsigned int type, |
62 | int fsr, int addr); | 62 | int fsr, int addr); |
63 | 63 | ||
64 | void die(const char *str, struct pt_regs *fp, long err); | ||
65 | void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr); | ||
66 | |||
64 | #if defined(CONFIG_XMON) | 67 | #if defined(CONFIG_XMON) |
65 | extern void xmon(struct pt_regs *regs); | 68 | extern void xmon(struct pt_regs *regs); |
66 | extern int xmon_bpt(struct pt_regs *regs); | 69 | extern int xmon_bpt(struct pt_regs *regs); |
diff --git a/arch/microblaze/include/asm/processor.h b/arch/microblaze/include/asm/processor.h index d8e15434ba21..9329029d2614 100644 --- a/arch/microblaze/include/asm/processor.h +++ b/arch/microblaze/include/asm/processor.h | |||
@@ -15,6 +15,8 @@ | |||
15 | #include <asm/setup.h> | 15 | #include <asm/setup.h> |
16 | #include <asm/registers.h> | 16 | #include <asm/registers.h> |
17 | #include <asm/segment.h> | 17 | #include <asm/segment.h> |
18 | #include <asm/entry.h> | ||
19 | #include <asm/current.h> | ||
18 | 20 | ||
19 | # ifndef __ASSEMBLY__ | 21 | # ifndef __ASSEMBLY__ |
20 | /* from kernel/cpu/mb.c */ | 22 | /* from kernel/cpu/mb.c */ |
@@ -26,6 +28,12 @@ extern const struct seq_operations cpuinfo_op; | |||
26 | 28 | ||
27 | # endif /* __ASSEMBLY__ */ | 29 | # endif /* __ASSEMBLY__ */ |
28 | 30 | ||
31 | #define task_pt_regs(tsk) \ | ||
32 | (((struct pt_regs *)(THREAD_SIZE + task_stack_page(tsk))) - 1) | ||
33 | |||
34 | /* Do necessary setup to start up a newly executed thread. */ | ||
35 | void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp); | ||
36 | |||
29 | /* | 37 | /* |
30 | * User space process size: memory size | 38 | * User space process size: memory size |
31 | * | 39 | * |
@@ -55,16 +63,6 @@ struct task_struct; | |||
55 | struct thread_struct { }; | 63 | struct thread_struct { }; |
56 | # define INIT_THREAD { } | 64 | # define INIT_THREAD { } |
57 | 65 | ||
58 | /* Do necessary setup to start up a newly executed thread. */ | ||
59 | static inline void start_thread(struct pt_regs *regs, | ||
60 | unsigned long pc, | ||
61 | unsigned long usp) | ||
62 | { | ||
63 | regs->pc = pc; | ||
64 | regs->r1 = usp; | ||
65 | regs->kernel_mode = 0; | ||
66 | } | ||
67 | |||
68 | /* Free all resources held by a thread. */ | 66 | /* Free all resources held by a thread. */ |
69 | static inline void release_thread(struct task_struct *dead_task) | 67 | static inline void release_thread(struct task_struct *dead_task) |
70 | { | 68 | { |
@@ -84,9 +82,6 @@ extern unsigned long get_wchan(struct task_struct *p); | |||
84 | */ | 82 | */ |
85 | extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); | 83 | extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); |
86 | 84 | ||
87 | # define task_pt_regs(tsk) \ | ||
88 | (((struct pt_regs *)(THREAD_SIZE + task_stack_page(tsk))) - 1) | ||
89 | |||
90 | # define KSTK_EIP(tsk) (0) | 85 | # define KSTK_EIP(tsk) (0) |
91 | # define KSTK_ESP(tsk) (0) | 86 | # define KSTK_ESP(tsk) (0) |
92 | 87 | ||
diff --git a/arch/microblaze/include/asm/ptrace.h b/arch/microblaze/include/asm/ptrace.h index f1f03486428a..55015bce5e47 100644 --- a/arch/microblaze/include/asm/ptrace.h +++ b/arch/microblaze/include/asm/ptrace.h | |||
@@ -52,10 +52,10 @@ struct pt_regs { | |||
52 | microblaze_reg_t ear; | 52 | microblaze_reg_t ear; |
53 | microblaze_reg_t esr; | 53 | microblaze_reg_t esr; |
54 | microblaze_reg_t fsr; | 54 | microblaze_reg_t fsr; |
55 | int kernel_mode; | 55 | int pt_mode; |
56 | }; | 56 | }; |
57 | 57 | ||
58 | #define kernel_mode(regs) ((regs)->kernel_mode) | 58 | #define kernel_mode(regs) ((regs)->pt_mode) |
59 | #define user_mode(regs) (!kernel_mode(regs)) | 59 | #define user_mode(regs) (!kernel_mode(regs)) |
60 | 60 | ||
61 | #define instruction_pointer(regs) ((regs)->pc) | 61 | #define instruction_pointer(regs) ((regs)->pc) |
diff --git a/arch/microblaze/include/asm/unistd.h b/arch/microblaze/include/asm/unistd.h index d9d3903fde3f..b5e2f5fa5c53 100644 --- a/arch/microblaze/include/asm/unistd.h +++ b/arch/microblaze/include/asm/unistd.h | |||
@@ -378,8 +378,10 @@ | |||
378 | #define __NR_sendmsg 360 /* new */ | 378 | #define __NR_sendmsg 360 /* new */ |
379 | #define __NR_recvmsg 361 /* new */ | 379 | #define __NR_recvmsg 361 /* new */ |
380 | #define __NR_accept04 362 /* new */ | 380 | #define __NR_accept04 362 /* new */ |
381 | #define __NR_preadv 363 /* new */ | ||
382 | #define __NR_pwritev 364 /* new */ | ||
381 | 383 | ||
382 | #define __NR_syscalls 363 | 384 | #define __NR_syscalls 365 |
383 | 385 | ||
384 | #ifdef __KERNEL__ | 386 | #ifdef __KERNEL__ |
385 | #ifndef __ASSEMBLY__ | 387 | #ifndef __ASSEMBLY__ |
diff --git a/arch/microblaze/kernel/asm-offsets.c b/arch/microblaze/kernel/asm-offsets.c index 38e1a2e8ad0c..aabd9e9423a6 100644 --- a/arch/microblaze/kernel/asm-offsets.c +++ b/arch/microblaze/kernel/asm-offsets.c | |||
@@ -57,7 +57,7 @@ int main(int argc, char *argv[]) | |||
57 | DEFINE(PT_R29, offsetof(struct pt_regs, r29)); | 57 | DEFINE(PT_R29, offsetof(struct pt_regs, r29)); |
58 | DEFINE(PT_R30, offsetof(struct pt_regs, r30)); | 58 | DEFINE(PT_R30, offsetof(struct pt_regs, r30)); |
59 | DEFINE(PT_R31, offsetof(struct pt_regs, r31)); | 59 | DEFINE(PT_R31, offsetof(struct pt_regs, r31)); |
60 | DEFINE(PT_MODE, offsetof(struct pt_regs, kernel_mode)); | 60 | DEFINE(PT_MODE, offsetof(struct pt_regs, pt_mode)); |
61 | BLANK(); | 61 | BLANK(); |
62 | 62 | ||
63 | /* Magic offsets for PTRACE PEEK/POKE etc */ | 63 | /* Magic offsets for PTRACE PEEK/POKE etc */ |
diff --git a/arch/microblaze/kernel/cpu/cache.c b/arch/microblaze/kernel/cpu/cache.c index be9fecca4f91..af866a450125 100644 --- a/arch/microblaze/kernel/cpu/cache.c +++ b/arch/microblaze/kernel/cpu/cache.c | |||
@@ -100,7 +100,6 @@ void _enable_dcache(void) | |||
100 | 100 | ||
101 | void _disable_dcache(void) | 101 | void _disable_dcache(void) |
102 | { | 102 | { |
103 | if (cpuinfo.use_dcache) { | ||
104 | #if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR | 103 | #if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR |
105 | __asm__ __volatile__ (" \ | 104 | __asm__ __volatile__ (" \ |
106 | msrclr r0, %0; \ | 105 | msrclr r0, %0; \ |
@@ -119,12 +118,10 @@ void _disable_dcache(void) | |||
119 | : "i" (MSR_DCE) \ | 118 | : "i" (MSR_DCE) \ |
120 | : "memory", "r12"); | 119 | : "memory", "r12"); |
121 | #endif | 120 | #endif |
122 | } | ||
123 | } | 121 | } |
124 | 122 | ||
125 | void _invalidate_dcache(unsigned int addr) | 123 | void _invalidate_dcache(unsigned int addr) |
126 | { | 124 | { |
127 | if (cpuinfo.use_dcache) | ||
128 | __asm__ __volatile__ (" \ | 125 | __asm__ __volatile__ (" \ |
129 | wdc %0, r0" \ | 126 | wdc %0, r0" \ |
130 | : \ | 127 | : \ |
diff --git a/arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c b/arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c index cf7424a6bb87..153f57c57b6d 100644 --- a/arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c +++ b/arch/microblaze/kernel/cpu/cpuinfo-pvr-full.c | |||
@@ -30,6 +30,13 @@ void set_cpuinfo_pvr_full(struct cpuinfo *ci, struct device_node *cpu) | |||
30 | int temp; /* for saving temp value */ | 30 | int temp; /* for saving temp value */ |
31 | get_pvr(&pvr); | 31 | get_pvr(&pvr); |
32 | 32 | ||
33 | CI(ver_code, VERSION); | ||
34 | if (!ci->ver_code) { | ||
35 | printk(KERN_ERR "ERROR: MB has broken PVR regs " | ||
36 | "-> use DTS setting\n"); | ||
37 | return; | ||
38 | } | ||
39 | |||
33 | temp = PVR_USE_BARREL(pvr) | PVR_USE_MSR_INSTR(pvr) |\ | 40 | temp = PVR_USE_BARREL(pvr) | PVR_USE_MSR_INSTR(pvr) |\ |
34 | PVR_USE_PCMP_INSTR(pvr) | PVR_USE_DIV(pvr); | 41 | PVR_USE_PCMP_INSTR(pvr) | PVR_USE_DIV(pvr); |
35 | if (ci->use_instr != temp) | 42 | if (ci->use_instr != temp) |
@@ -60,8 +67,6 @@ void set_cpuinfo_pvr_full(struct cpuinfo *ci, struct device_node *cpu) | |||
60 | 67 | ||
61 | CI(mmu, USE_MMU); | 68 | CI(mmu, USE_MMU); |
62 | 69 | ||
63 | CI(ver_code, VERSION); | ||
64 | |||
65 | CI(use_icache, USE_ICACHE); | 70 | CI(use_icache, USE_ICACHE); |
66 | CI(icache_tagbits, ICACHE_ADDR_TAG_BITS); | 71 | CI(icache_tagbits, ICACHE_ADDR_TAG_BITS); |
67 | CI(icache_write, ICACHE_ALLOW_WR); | 72 | CI(icache_write, ICACHE_ALLOW_WR); |
diff --git a/arch/microblaze/kernel/cpu/cpuinfo.c b/arch/microblaze/kernel/cpu/cpuinfo.c index 4a740dfcf6da..a10bea119b94 100644 --- a/arch/microblaze/kernel/cpu/cpuinfo.c +++ b/arch/microblaze/kernel/cpu/cpuinfo.c | |||
@@ -71,7 +71,7 @@ void __init setup_cpuinfo(void) | |||
71 | __func__); | 71 | __func__); |
72 | set_cpuinfo_static(&cpuinfo, cpu); | 72 | set_cpuinfo_static(&cpuinfo, cpu); |
73 | break; | 73 | break; |
74 | /* FIXME I found weird behavior with MB 7.00.a/b | 74 | /* FIXME I found weird behavior with MB 7.00.a/b 7.10.a |
75 | * please do not use FULL PVR with MMU */ | 75 | * please do not use FULL PVR with MMU */ |
76 | case 1: | 76 | case 1: |
77 | printk(KERN_INFO "%s: Using full CPU PVR support\n", | 77 | printk(KERN_INFO "%s: Using full CPU PVR support\n", |
diff --git a/arch/microblaze/kernel/cpu/mb.c b/arch/microblaze/kernel/cpu/mb.c index 3b6212bdc8dc..4dcfccdbc364 100644 --- a/arch/microblaze/kernel/cpu/mb.c +++ b/arch/microblaze/kernel/cpu/mb.c | |||
@@ -115,8 +115,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
115 | cpuinfo.hw_debug ? "yes" : "no"); | 115 | cpuinfo.hw_debug ? "yes" : "no"); |
116 | 116 | ||
117 | count += seq_printf(m, | 117 | count += seq_printf(m, |
118 | "PVR-USR1:\t%x\n" | 118 | "PVR-USR1:\t%02x\n" |
119 | "PVR-USR2:\t%x\n", | 119 | "PVR-USR2:\t%08x\n", |
120 | cpuinfo.pvr_user1, | 120 | cpuinfo.pvr_user1, |
121 | cpuinfo.pvr_user2); | 121 | cpuinfo.pvr_user2); |
122 | 122 | ||
diff --git a/arch/microblaze/kernel/early_printk.c b/arch/microblaze/kernel/early_printk.c index 62cc78993f44..4b0f0fdb9ca0 100644 --- a/arch/microblaze/kernel/early_printk.c +++ b/arch/microblaze/kernel/early_printk.c | |||
@@ -36,7 +36,7 @@ static void early_printk_putc(char c) | |||
36 | 36 | ||
37 | unsigned retries = 10000; | 37 | unsigned retries = 10000; |
38 | /* read status bit - 0x8 offset */ | 38 | /* read status bit - 0x8 offset */ |
39 | while (retries-- && (in_be32(base_addr + 8) & (1 << 3))) | 39 | while (--retries && (in_be32(base_addr + 8) & (1 << 3))) |
40 | ; | 40 | ; |
41 | 41 | ||
42 | /* Only attempt the iowrite if we didn't timeout */ | 42 | /* Only attempt the iowrite if we didn't timeout */ |
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c index 436f26ccbfa9..07d4fa339eda 100644 --- a/arch/microblaze/kernel/process.c +++ b/arch/microblaze/kernel/process.c | |||
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | void show_regs(struct pt_regs *regs) | 19 | void show_regs(struct pt_regs *regs) |
20 | { | 20 | { |
21 | printk(KERN_INFO " Registers dump: mode=%X\r\n", regs->kernel_mode); | 21 | printk(KERN_INFO " Registers dump: mode=%X\r\n", regs->pt_mode); |
22 | printk(KERN_INFO " r1=%08lX, r2=%08lX, r3=%08lX, r4=%08lX\n", | 22 | printk(KERN_INFO " r1=%08lX, r2=%08lX, r3=%08lX, r4=%08lX\n", |
23 | regs->r1, regs->r2, regs->r3, regs->r4); | 23 | regs->r1, regs->r2, regs->r3, regs->r4); |
24 | printk(KERN_INFO " r5=%08lX, r6=%08lX, r7=%08lX, r8=%08lX\n", | 24 | printk(KERN_INFO " r5=%08lX, r6=%08lX, r7=%08lX, r8=%08lX\n", |
@@ -37,8 +37,6 @@ void show_regs(struct pt_regs *regs) | |||
37 | regs->r29, regs->r30, regs->r31, regs->pc); | 37 | regs->r29, regs->r30, regs->r31, regs->pc); |
38 | printk(KERN_INFO " msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n", | 38 | printk(KERN_INFO " msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n", |
39 | regs->msr, regs->ear, regs->esr, regs->fsr); | 39 | regs->msr, regs->ear, regs->esr, regs->fsr); |
40 | while (1) | ||
41 | ; | ||
42 | } | 40 | } |
43 | 41 | ||
44 | void (*pm_idle)(void); | 42 | void (*pm_idle)(void); |
@@ -163,7 +161,6 @@ static void kernel_thread_helper(int (*fn)(void *), void *arg) | |||
163 | int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) | 161 | int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) |
164 | { | 162 | { |
165 | struct pt_regs regs; | 163 | struct pt_regs regs; |
166 | int ret; | ||
167 | 164 | ||
168 | memset(®s, 0, sizeof(regs)); | 165 | memset(®s, 0, sizeof(regs)); |
169 | /* store them in non-volatile registers */ | 166 | /* store them in non-volatile registers */ |
@@ -171,12 +168,10 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) | |||
171 | regs.r6 = (unsigned long)arg; | 168 | regs.r6 = (unsigned long)arg; |
172 | local_save_flags(regs.msr); | 169 | local_save_flags(regs.msr); |
173 | regs.pc = (unsigned long)kernel_thread_helper; | 170 | regs.pc = (unsigned long)kernel_thread_helper; |
174 | regs.kernel_mode = 1; | 171 | regs.pt_mode = 1; |
175 | 172 | ||
176 | ret = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, | 173 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, |
177 | ®s, 0, NULL, NULL); | 174 | ®s, 0, NULL, NULL); |
178 | |||
179 | return ret; | ||
180 | } | 175 | } |
181 | 176 | ||
182 | unsigned long get_wchan(struct task_struct *p) | 177 | unsigned long get_wchan(struct task_struct *p) |
@@ -184,3 +179,12 @@ unsigned long get_wchan(struct task_struct *p) | |||
184 | /* TBD (used by procfs) */ | 179 | /* TBD (used by procfs) */ |
185 | return 0; | 180 | return 0; |
186 | } | 181 | } |
182 | |||
183 | /* Set up a thread for executing a new program */ | ||
184 | void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp) | ||
185 | { | ||
186 | set_fs(USER_DS); | ||
187 | regs->pc = pc; | ||
188 | regs->r1 = usp; | ||
189 | regs->pt_mode = 0; | ||
190 | } | ||
diff --git a/arch/microblaze/kernel/signal.c b/arch/microblaze/kernel/signal.c index 3889cf45fa71..40d36931e363 100644 --- a/arch/microblaze/kernel/signal.c +++ b/arch/microblaze/kernel/signal.c | |||
@@ -178,7 +178,9 @@ restore_sigcontext(struct pt_regs *regs, struct sigcontext *sc, int *rval_p) | |||
178 | 178 | ||
179 | asmlinkage int sys_sigreturn(struct pt_regs *regs) | 179 | asmlinkage int sys_sigreturn(struct pt_regs *regs) |
180 | { | 180 | { |
181 | struct sigframe *frame = (struct sigframe *)regs->r1; | 181 | struct sigframe *frame = |
182 | (struct sigframe *)(regs->r1 + STATE_SAVE_ARG_SPACE); | ||
183 | |||
182 | sigset_t set; | 184 | sigset_t set; |
183 | int rval; | 185 | int rval; |
184 | 186 | ||
@@ -209,7 +211,9 @@ badframe: | |||
209 | 211 | ||
210 | asmlinkage int sys_rt_sigreturn(struct pt_regs *regs) | 212 | asmlinkage int sys_rt_sigreturn(struct pt_regs *regs) |
211 | { | 213 | { |
212 | struct rt_sigframe *frame = (struct rt_sigframe *)regs->r1; | 214 | struct rt_sigframe *frame = |
215 | (struct rt_sigframe *)(regs->r1 + STATE_SAVE_ARG_SPACE); | ||
216 | |||
213 | sigset_t set; | 217 | sigset_t set; |
214 | stack_t st; | 218 | stack_t st; |
215 | int rval; | 219 | int rval; |
@@ -336,7 +340,8 @@ static void setup_frame(int sig, struct k_sigaction *ka, | |||
336 | goto give_sigsegv; | 340 | goto give_sigsegv; |
337 | 341 | ||
338 | /* Set up registers for signal handler */ | 342 | /* Set up registers for signal handler */ |
339 | regs->r1 = (unsigned long) frame; | 343 | regs->r1 = (unsigned long) frame - STATE_SAVE_ARG_SPACE; |
344 | |||
340 | /* Signal handler args: */ | 345 | /* Signal handler args: */ |
341 | regs->r5 = signal; /* Arg 0: signum */ | 346 | regs->r5 = signal; /* Arg 0: signum */ |
342 | regs->r6 = (unsigned long) &frame->sc; /* arg 1: sigcontext */ | 347 | regs->r6 = (unsigned long) &frame->sc; /* arg 1: sigcontext */ |
@@ -414,7 +419,8 @@ static void setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
414 | goto give_sigsegv; | 419 | goto give_sigsegv; |
415 | 420 | ||
416 | /* Set up registers for signal handler */ | 421 | /* Set up registers for signal handler */ |
417 | regs->r1 = (unsigned long) frame; | 422 | regs->r1 = (unsigned long) frame - STATE_SAVE_ARG_SPACE; |
423 | |||
418 | /* Signal handler args: */ | 424 | /* Signal handler args: */ |
419 | regs->r5 = signal; /* arg 0: signum */ | 425 | regs->r5 = signal; /* arg 0: signum */ |
420 | regs->r6 = (unsigned long) &frame->info; /* arg 1: siginfo */ | 426 | regs->r6 = (unsigned long) &frame->info; /* arg 1: siginfo */ |
diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S index 529b0dbf4fe9..3bb42ec924c2 100644 --- a/arch/microblaze/kernel/syscall_table.S +++ b/arch/microblaze/kernel/syscall_table.S | |||
@@ -363,3 +363,5 @@ ENTRY(sys_call_table) | |||
363 | .long sys_sendmsg /* 360 */ | 363 | .long sys_sendmsg /* 360 */ |
364 | .long sys_recvmsg | 364 | .long sys_recvmsg |
365 | .long sys_ni_syscall | 365 | .long sys_ni_syscall |
366 | .long sys_ni_syscall | ||
367 | .long sys_ni_syscall | ||
diff --git a/arch/microblaze/kernel/timer.c b/arch/microblaze/kernel/timer.c index 05a497eefd78..bdfa2f9f0c81 100644 --- a/arch/microblaze/kernel/timer.c +++ b/arch/microblaze/kernel/timer.c | |||
@@ -176,7 +176,7 @@ static __init void microblaze_clockevent_init(void) | |||
176 | clockevents_register_device(&clockevent_microblaze_timer); | 176 | clockevents_register_device(&clockevent_microblaze_timer); |
177 | } | 177 | } |
178 | 178 | ||
179 | static cycle_t microblaze_read(void) | 179 | static cycle_t microblaze_read(struct clocksource *cs) |
180 | { | 180 | { |
181 | /* reading actual value of timer 1 */ | 181 | /* reading actual value of timer 1 */ |
182 | return (cycle_t) (in_be32(TIMER_BASE + TCR1)); | 182 | return (cycle_t) (in_be32(TIMER_BASE + TCR1)); |
diff --git a/arch/microblaze/kernel/traps.c b/arch/microblaze/kernel/traps.c index fbdc533c61e3..293ef486013a 100644 --- a/arch/microblaze/kernel/traps.c +++ b/arch/microblaze/kernel/traps.c | |||
@@ -34,7 +34,7 @@ static int kstack_depth_to_print = 24; | |||
34 | 34 | ||
35 | static int __init kstack_setup(char *s) | 35 | static int __init kstack_setup(char *s) |
36 | { | 36 | { |
37 | kstack_depth_to_print = strict_strtoul(s, 0, 0); | 37 | kstack_depth_to_print = strict_strtoul(s, 0, NULL); |
38 | 38 | ||
39 | return 1; | 39 | return 1; |
40 | } | 40 | } |
diff --git a/arch/mips/kernel/cevt-txx9.c b/arch/mips/kernel/cevt-txx9.c index eccf7d6096bd..2e911e3da8d3 100644 --- a/arch/mips/kernel/cevt-txx9.c +++ b/arch/mips/kernel/cevt-txx9.c | |||
@@ -22,7 +22,7 @@ | |||
22 | 22 | ||
23 | static struct txx9_tmr_reg __iomem *txx9_cs_tmrptr; | 23 | static struct txx9_tmr_reg __iomem *txx9_cs_tmrptr; |
24 | 24 | ||
25 | static cycle_t txx9_cs_read(void) | 25 | static cycle_t txx9_cs_read(struct clocksource *cs) |
26 | { | 26 | { |
27 | return __raw_readl(&txx9_cs_tmrptr->trr); | 27 | return __raw_readl(&txx9_cs_tmrptr->trr); |
28 | } | 28 | } |
diff --git a/arch/mips/kernel/csrc-bcm1480.c b/arch/mips/kernel/csrc-bcm1480.c index 868745e7184b..51489f8a825e 100644 --- a/arch/mips/kernel/csrc-bcm1480.c +++ b/arch/mips/kernel/csrc-bcm1480.c | |||
@@ -28,7 +28,7 @@ | |||
28 | 28 | ||
29 | #include <asm/sibyte/sb1250.h> | 29 | #include <asm/sibyte/sb1250.h> |
30 | 30 | ||
31 | static cycle_t bcm1480_hpt_read(void) | 31 | static cycle_t bcm1480_hpt_read(struct clocksource *cs) |
32 | { | 32 | { |
33 | return (cycle_t) __raw_readq(IOADDR(A_SCD_ZBBUS_CYCLE_COUNT)); | 33 | return (cycle_t) __raw_readq(IOADDR(A_SCD_ZBBUS_CYCLE_COUNT)); |
34 | } | 34 | } |
diff --git a/arch/mips/kernel/csrc-ioasic.c b/arch/mips/kernel/csrc-ioasic.c index 1d5f63cf8997..b551f48d3a07 100644 --- a/arch/mips/kernel/csrc-ioasic.c +++ b/arch/mips/kernel/csrc-ioasic.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include <asm/dec/ioasic.h> | 25 | #include <asm/dec/ioasic.h> |
26 | #include <asm/dec/ioasic_addrs.h> | 26 | #include <asm/dec/ioasic_addrs.h> |
27 | 27 | ||
28 | static cycle_t dec_ioasic_hpt_read(void) | 28 | static cycle_t dec_ioasic_hpt_read(struct clocksource *cs) |
29 | { | 29 | { |
30 | return ioasic_read(IO_REG_FCTR); | 30 | return ioasic_read(IO_REG_FCTR); |
31 | } | 31 | } |
@@ -47,13 +47,13 @@ void __init dec_ioasic_clocksource_init(void) | |||
47 | while (!ds1287_timer_state()) | 47 | while (!ds1287_timer_state()) |
48 | ; | 48 | ; |
49 | 49 | ||
50 | start = dec_ioasic_hpt_read(); | 50 | start = dec_ioasic_hpt_read(&clocksource_dec); |
51 | 51 | ||
52 | while (i--) | 52 | while (i--) |
53 | while (!ds1287_timer_state()) | 53 | while (!ds1287_timer_state()) |
54 | ; | 54 | ; |
55 | 55 | ||
56 | end = dec_ioasic_hpt_read(); | 56 | end = dec_ioasic_hpt_read(&clocksource_dec); |
57 | 57 | ||
58 | freq = (end - start) * 10; | 58 | freq = (end - start) * 10; |
59 | printk(KERN_INFO "I/O ASIC clock frequency %dHz\n", freq); | 59 | printk(KERN_INFO "I/O ASIC clock frequency %dHz\n", freq); |
diff --git a/arch/mips/kernel/csrc-r4k.c b/arch/mips/kernel/csrc-r4k.c index f1a2893931ed..e95a3cd48eea 100644 --- a/arch/mips/kernel/csrc-r4k.c +++ b/arch/mips/kernel/csrc-r4k.c | |||
@@ -10,7 +10,7 @@ | |||
10 | 10 | ||
11 | #include <asm/time.h> | 11 | #include <asm/time.h> |
12 | 12 | ||
13 | static cycle_t c0_hpt_read(void) | 13 | static cycle_t c0_hpt_read(struct clocksource *cs) |
14 | { | 14 | { |
15 | return read_c0_count(); | 15 | return read_c0_count(); |
16 | } | 16 | } |
diff --git a/arch/mips/kernel/csrc-sb1250.c b/arch/mips/kernel/csrc-sb1250.c index 92212bbb8e45..d14d3d1907fa 100644 --- a/arch/mips/kernel/csrc-sb1250.c +++ b/arch/mips/kernel/csrc-sb1250.c | |||
@@ -33,7 +33,7 @@ | |||
33 | * The HPT is free running from SB1250_HPT_VALUE down to 0 then starts over | 33 | * The HPT is free running from SB1250_HPT_VALUE down to 0 then starts over |
34 | * again. | 34 | * again. |
35 | */ | 35 | */ |
36 | static cycle_t sb1250_hpt_read(void) | 36 | static cycle_t sb1250_hpt_read(struct clocksource *cs) |
37 | { | 37 | { |
38 | unsigned int count; | 38 | unsigned int count; |
39 | 39 | ||
diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c index 689719e34f08..ed20e7fe65e3 100644 --- a/arch/mips/kernel/i8253.c +++ b/arch/mips/kernel/i8253.c | |||
@@ -128,7 +128,7 @@ void __init setup_pit_timer(void) | |||
128 | * to just read by itself. So use jiffies to emulate a free | 128 | * to just read by itself. So use jiffies to emulate a free |
129 | * running counter: | 129 | * running counter: |
130 | */ | 130 | */ |
131 | static cycle_t pit_read(void) | 131 | static cycle_t pit_read(struct clocksource *cs) |
132 | { | 132 | { |
133 | unsigned long flags; | 133 | unsigned long flags; |
134 | int count; | 134 | int count; |
diff --git a/arch/mips/nxp/pnx8550/common/time.c b/arch/mips/nxp/pnx8550/common/time.c index cf293b279098..8df43e9e4d90 100644 --- a/arch/mips/nxp/pnx8550/common/time.c +++ b/arch/mips/nxp/pnx8550/common/time.c | |||
@@ -35,7 +35,7 @@ | |||
35 | 35 | ||
36 | static unsigned long cpj; | 36 | static unsigned long cpj; |
37 | 37 | ||
38 | static cycle_t hpt_read(void) | 38 | static cycle_t hpt_read(struct clocksource *cs) |
39 | { | 39 | { |
40 | return read_c0_count2(); | 40 | return read_c0_count2(); |
41 | } | 41 | } |
diff --git a/arch/mips/sgi-ip27/ip27-timer.c b/arch/mips/sgi-ip27/ip27-timer.c index f024057a35f8..f10a7cd64f7e 100644 --- a/arch/mips/sgi-ip27/ip27-timer.c +++ b/arch/mips/sgi-ip27/ip27-timer.c | |||
@@ -159,7 +159,7 @@ static void __init hub_rt_clock_event_global_init(void) | |||
159 | setup_irq(irq, &hub_rt_irqaction); | 159 | setup_irq(irq, &hub_rt_irqaction); |
160 | } | 160 | } |
161 | 161 | ||
162 | static cycle_t hub_rt_read(void) | 162 | static cycle_t hub_rt_read(struct clocksource *cs) |
163 | { | 163 | { |
164 | return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT); | 164 | return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT); |
165 | } | 165 | } |
diff --git a/arch/mn10300/configs/asb2303_defconfig b/arch/mn10300/configs/asb2303_defconfig index 3aa8906b3dea..3acce23708b0 100644 --- a/arch/mn10300/configs/asb2303_defconfig +++ b/arch/mn10300/configs/asb2303_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.25-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Tue Feb 19 18:52:24 2008 | 4 | # Sat Apr 18 11:13:22 2009 |
5 | # | 5 | # |
6 | CONFIG_MN10300=y | 6 | CONFIG_MN10300=y |
7 | CONFIG_AM33=y | 7 | CONFIG_AM33=y |
@@ -18,7 +18,6 @@ CONFIG_GENERIC_TIME=y | |||
18 | CONFIG_GENERIC_BUG=y | 18 | CONFIG_GENERIC_BUG=y |
19 | CONFIG_QUICKLIST=y | 19 | CONFIG_QUICKLIST=y |
20 | CONFIG_ARCH_HAS_ILOG2_U32=y | 20 | CONFIG_ARCH_HAS_ILOG2_U32=y |
21 | # CONFIG_ARCH_SUPPORTS_AOUT is not set | ||
22 | CONFIG_GENERIC_HARDIRQS=y | 21 | CONFIG_GENERIC_HARDIRQS=y |
23 | # CONFIG_HOTPLUG_CPU is not set | 22 | # CONFIG_HOTPLUG_CPU is not set |
24 | CONFIG_HZ=1000 | 23 | CONFIG_HZ=1000 |
@@ -40,52 +39,58 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
40 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 39 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
41 | # CONFIG_TASKSTATS is not set | 40 | # CONFIG_TASKSTATS is not set |
42 | # CONFIG_AUDIT is not set | 41 | # CONFIG_AUDIT is not set |
42 | |||
43 | # | ||
44 | # RCU Subsystem | ||
45 | # | ||
46 | CONFIG_CLASSIC_RCU=y | ||
47 | # CONFIG_TREE_RCU is not set | ||
48 | # CONFIG_PREEMPT_RCU is not set | ||
49 | # CONFIG_TREE_RCU_TRACE is not set | ||
50 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
43 | # CONFIG_IKCONFIG is not set | 51 | # CONFIG_IKCONFIG is not set |
44 | CONFIG_LOG_BUF_SHIFT=14 | 52 | CONFIG_LOG_BUF_SHIFT=14 |
45 | # CONFIG_CGROUPS is not set | ||
46 | # CONFIG_GROUP_SCHED is not set | 53 | # CONFIG_GROUP_SCHED is not set |
47 | # CONFIG_USER_SCHED is not set | 54 | # CONFIG_CGROUPS is not set |
48 | # CONFIG_CGROUP_SCHED is not set | 55 | # CONFIG_SYSFS_DEPRECATED_V2 is not set |
49 | # CONFIG_SYSFS_DEPRECATED is not set | ||
50 | # CONFIG_RELAY is not set | 56 | # CONFIG_RELAY is not set |
51 | # CONFIG_NAMESPACES is not set | 57 | # CONFIG_NAMESPACES is not set |
52 | # CONFIG_BLK_DEV_INITRD is not set | 58 | # CONFIG_BLK_DEV_INITRD is not set |
53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 59 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
54 | CONFIG_SYSCTL=y | 60 | CONFIG_SYSCTL=y |
61 | CONFIG_ANON_INODES=y | ||
55 | CONFIG_EMBEDDED=y | 62 | CONFIG_EMBEDDED=y |
56 | CONFIG_SYSCTL_SYSCALL=y | 63 | CONFIG_SYSCTL_SYSCALL=y |
57 | # CONFIG_KALLSYMS is not set | 64 | # CONFIG_KALLSYMS is not set |
65 | CONFIG_STRIP_ASM_SYMS=y | ||
58 | # CONFIG_HOTPLUG is not set | 66 | # CONFIG_HOTPLUG is not set |
59 | CONFIG_PRINTK=y | 67 | CONFIG_PRINTK=y |
60 | CONFIG_BUG=y | 68 | CONFIG_BUG=y |
61 | CONFIG_ELF_CORE=y | 69 | CONFIG_ELF_CORE=y |
62 | CONFIG_COMPAT_BRK=y | ||
63 | CONFIG_BASE_FULL=y | 70 | CONFIG_BASE_FULL=y |
64 | CONFIG_FUTEX=y | 71 | CONFIG_FUTEX=y |
65 | CONFIG_ANON_INODES=y | ||
66 | CONFIG_EPOLL=y | 72 | CONFIG_EPOLL=y |
67 | CONFIG_SIGNALFD=y | 73 | CONFIG_SIGNALFD=y |
68 | CONFIG_TIMERFD=y | 74 | CONFIG_TIMERFD=y |
69 | CONFIG_EVENTFD=y | 75 | CONFIG_EVENTFD=y |
70 | CONFIG_SHMEM=y | 76 | CONFIG_SHMEM=y |
77 | CONFIG_AIO=y | ||
71 | # CONFIG_VM_EVENT_COUNTERS is not set | 78 | # CONFIG_VM_EVENT_COUNTERS is not set |
79 | CONFIG_COMPAT_BRK=y | ||
72 | CONFIG_SLAB=y | 80 | CONFIG_SLAB=y |
73 | # CONFIG_SLUB is not set | 81 | # CONFIG_SLUB is not set |
74 | # CONFIG_SLOB is not set | 82 | # CONFIG_SLOB is not set |
75 | CONFIG_PROFILING=y | 83 | CONFIG_PROFILING=y |
76 | # CONFIG_MARKERS is not set | 84 | # CONFIG_MARKERS is not set |
77 | CONFIG_OPROFILE=y | 85 | CONFIG_HAVE_OPROFILE=y |
78 | # CONFIG_HAVE_OPROFILE is not set | 86 | # CONFIG_SLOW_WORK is not set |
79 | # CONFIG_HAVE_KPROBES is not set | 87 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
80 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
81 | CONFIG_SLABINFO=y | 88 | CONFIG_SLABINFO=y |
82 | CONFIG_RT_MUTEXES=y | 89 | CONFIG_RT_MUTEXES=y |
83 | # CONFIG_TINY_SHMEM is not set | ||
84 | CONFIG_BASE_SMALL=0 | 90 | CONFIG_BASE_SMALL=0 |
85 | # CONFIG_MODULES is not set | 91 | # CONFIG_MODULES is not set |
86 | # CONFIG_BLOCK is not set | 92 | # CONFIG_BLOCK is not set |
87 | CONFIG_CLASSIC_RCU=y | 93 | # CONFIG_FREEZER is not set |
88 | # CONFIG_PREEMPT_RCU is not set | ||
89 | 94 | ||
90 | # | 95 | # |
91 | # Matsushita MN10300 system setup | 96 | # Matsushita MN10300 system setup |
@@ -107,7 +112,6 @@ CONFIG_INTERRUPT_VECTOR_BASE=0x90000000 | |||
107 | CONFIG_KERNEL_TEXT_ADDRESS=0x90001000 | 112 | CONFIG_KERNEL_TEXT_ADDRESS=0x90001000 |
108 | CONFIG_KERNEL_ZIMAGE_BASE_ADDRESS=0x90700000 | 113 | CONFIG_KERNEL_ZIMAGE_BASE_ADDRESS=0x90700000 |
109 | CONFIG_PREEMPT=y | 114 | CONFIG_PREEMPT=y |
110 | CONFIG_PREEMPT_BKL=y | ||
111 | CONFIG_MN10300_CURRENT_IN_E2=y | 115 | CONFIG_MN10300_CURRENT_IN_E2=y |
112 | CONFIG_MN10300_USING_JTAG=y | 116 | CONFIG_MN10300_USING_JTAG=y |
113 | CONFIG_MN10300_RTC=y | 117 | CONFIG_MN10300_RTC=y |
@@ -135,13 +139,15 @@ CONFIG_FLATMEM_MANUAL=y | |||
135 | # CONFIG_SPARSEMEM_MANUAL is not set | 139 | # CONFIG_SPARSEMEM_MANUAL is not set |
136 | CONFIG_FLATMEM=y | 140 | CONFIG_FLATMEM=y |
137 | CONFIG_FLAT_NODE_MEM_MAP=y | 141 | CONFIG_FLAT_NODE_MEM_MAP=y |
138 | # CONFIG_SPARSEMEM_STATIC is not set | 142 | CONFIG_PAGEFLAGS_EXTENDED=y |
139 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
140 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 143 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
141 | # CONFIG_RESOURCES_64BIT is not set | 144 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
142 | CONFIG_ZONE_DMA_FLAG=0 | 145 | CONFIG_ZONE_DMA_FLAG=0 |
143 | CONFIG_NR_QUICK=1 | 146 | CONFIG_NR_QUICK=1 |
144 | CONFIG_VIRT_TO_BUS=y | 147 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | ||
149 | CONFIG_HAVE_MLOCK=y | ||
150 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
145 | 151 | ||
146 | # | 152 | # |
147 | # Power management options | 153 | # Power management options |
@@ -152,11 +158,9 @@ CONFIG_VIRT_TO_BUS=y | |||
152 | # Executable formats | 158 | # Executable formats |
153 | # | 159 | # |
154 | CONFIG_BINFMT_ELF=y | 160 | CONFIG_BINFMT_ELF=y |
161 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
162 | # CONFIG_HAVE_AOUT is not set | ||
155 | # CONFIG_BINFMT_MISC is not set | 163 | # CONFIG_BINFMT_MISC is not set |
156 | |||
157 | # | ||
158 | # Networking | ||
159 | # | ||
160 | CONFIG_NET=y | 164 | CONFIG_NET=y |
161 | 165 | ||
162 | # | 166 | # |
@@ -194,8 +198,6 @@ CONFIG_TCP_CONG_CUBIC=y | |||
194 | CONFIG_DEFAULT_TCP_CONG="cubic" | 198 | CONFIG_DEFAULT_TCP_CONG="cubic" |
195 | # CONFIG_TCP_MD5SIG is not set | 199 | # CONFIG_TCP_MD5SIG is not set |
196 | # CONFIG_IPV6 is not set | 200 | # CONFIG_IPV6 is not set |
197 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
198 | # CONFIG_INET6_TUNNEL is not set | ||
199 | # CONFIG_NETWORK_SECMARK is not set | 201 | # CONFIG_NETWORK_SECMARK is not set |
200 | # CONFIG_NETFILTER is not set | 202 | # CONFIG_NETFILTER is not set |
201 | # CONFIG_IP_DCCP is not set | 203 | # CONFIG_IP_DCCP is not set |
@@ -203,6 +205,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
203 | # CONFIG_TIPC is not set | 205 | # CONFIG_TIPC is not set |
204 | # CONFIG_ATM is not set | 206 | # CONFIG_ATM is not set |
205 | # CONFIG_BRIDGE is not set | 207 | # CONFIG_BRIDGE is not set |
208 | # CONFIG_NET_DSA is not set | ||
206 | # CONFIG_VLAN_8021Q is not set | 209 | # CONFIG_VLAN_8021Q is not set |
207 | # CONFIG_DECNET is not set | 210 | # CONFIG_DECNET is not set |
208 | # CONFIG_LLC2 is not set | 211 | # CONFIG_LLC2 is not set |
@@ -212,7 +215,9 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
212 | # CONFIG_LAPB is not set | 215 | # CONFIG_LAPB is not set |
213 | # CONFIG_ECONET is not set | 216 | # CONFIG_ECONET is not set |
214 | # CONFIG_WAN_ROUTER is not set | 217 | # CONFIG_WAN_ROUTER is not set |
218 | # CONFIG_PHONET is not set | ||
215 | # CONFIG_NET_SCHED is not set | 219 | # CONFIG_NET_SCHED is not set |
220 | # CONFIG_DCB is not set | ||
216 | 221 | ||
217 | # | 222 | # |
218 | # Network testing | 223 | # Network testing |
@@ -223,14 +228,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
223 | # CONFIG_IRDA is not set | 228 | # CONFIG_IRDA is not set |
224 | # CONFIG_BT is not set | 229 | # CONFIG_BT is not set |
225 | # CONFIG_AF_RXRPC is not set | 230 | # CONFIG_AF_RXRPC is not set |
226 | 231 | # CONFIG_WIRELESS is not set | |
227 | # | 232 | # CONFIG_WIMAX is not set |
228 | # Wireless | ||
229 | # | ||
230 | # CONFIG_CFG80211 is not set | ||
231 | # CONFIG_WIRELESS_EXT is not set | ||
232 | # CONFIG_MAC80211 is not set | ||
233 | # CONFIG_IEEE80211 is not set | ||
234 | # CONFIG_RFKILL is not set | 233 | # CONFIG_RFKILL is not set |
235 | # CONFIG_NET_9P is not set | 234 | # CONFIG_NET_9P is not set |
236 | 235 | ||
@@ -255,6 +254,7 @@ CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | |||
255 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y | 254 | CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED=y |
256 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | 255 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set |
257 | # CONFIG_MTD_CMDLINE_PARTS is not set | 256 | # CONFIG_MTD_CMDLINE_PARTS is not set |
257 | # CONFIG_MTD_AR7_PARTS is not set | ||
258 | 258 | ||
259 | # | 259 | # |
260 | # User Modules And Translation Layers | 260 | # User Modules And Translation Layers |
@@ -297,9 +297,7 @@ CONFIG_MTD_CFI_UTIL=y | |||
297 | # | 297 | # |
298 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | 298 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set |
299 | CONFIG_MTD_PHYSMAP=y | 299 | CONFIG_MTD_PHYSMAP=y |
300 | CONFIG_MTD_PHYSMAP_START=0x8000000 | 300 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
301 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
302 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
303 | # CONFIG_MTD_PLATRAM is not set | 301 | # CONFIG_MTD_PLATRAM is not set |
304 | 302 | ||
305 | # | 303 | # |
@@ -319,14 +317,23 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
319 | # CONFIG_MTD_ONENAND is not set | 317 | # CONFIG_MTD_ONENAND is not set |
320 | 318 | ||
321 | # | 319 | # |
320 | # LPDDR flash memory drivers | ||
321 | # | ||
322 | # CONFIG_MTD_LPDDR is not set | ||
323 | |||
324 | # | ||
322 | # UBI - Unsorted block images | 325 | # UBI - Unsorted block images |
323 | # | 326 | # |
324 | # CONFIG_MTD_UBI is not set | 327 | # CONFIG_MTD_UBI is not set |
325 | # CONFIG_PARPORT is not set | 328 | # CONFIG_PARPORT is not set |
326 | CONFIG_MISC_DEVICES=y | 329 | CONFIG_MISC_DEVICES=y |
327 | # CONFIG_EEPROM_93CX6 is not set | ||
328 | # CONFIG_ENCLOSURE_SERVICES is not set | 330 | # CONFIG_ENCLOSURE_SERVICES is not set |
329 | # CONFIG_HAVE_IDE is not set | 331 | # CONFIG_C2PORT is not set |
332 | |||
333 | # | ||
334 | # EEPROM support | ||
335 | # | ||
336 | # CONFIG_EEPROM_93CX6 is not set | ||
330 | 337 | ||
331 | # | 338 | # |
332 | # SCSI device support | 339 | # SCSI device support |
@@ -334,7 +341,7 @@ CONFIG_MISC_DEVICES=y | |||
334 | # CONFIG_SCSI_DMA is not set | 341 | # CONFIG_SCSI_DMA is not set |
335 | # CONFIG_SCSI_NETLINK is not set | 342 | # CONFIG_SCSI_NETLINK is not set |
336 | CONFIG_NETDEVICES=y | 343 | CONFIG_NETDEVICES=y |
337 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | 344 | CONFIG_COMPAT_NET_DEV_OPS=y |
338 | # CONFIG_DUMMY is not set | 345 | # CONFIG_DUMMY is not set |
339 | # CONFIG_BONDING is not set | 346 | # CONFIG_BONDING is not set |
340 | # CONFIG_MACVLAN is not set | 347 | # CONFIG_MACVLAN is not set |
@@ -345,10 +352,15 @@ CONFIG_NETDEVICES=y | |||
345 | CONFIG_NET_ETHERNET=y | 352 | CONFIG_NET_ETHERNET=y |
346 | CONFIG_MII=y | 353 | CONFIG_MII=y |
347 | CONFIG_SMC91X=y | 354 | CONFIG_SMC91X=y |
355 | # CONFIG_ETHOC is not set | ||
356 | # CONFIG_DNET is not set | ||
348 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 357 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
349 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 358 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
350 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 359 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
351 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | 360 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set |
361 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
362 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
363 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
352 | # CONFIG_B44 is not set | 364 | # CONFIG_B44 is not set |
353 | # CONFIG_NETDEV_1000 is not set | 365 | # CONFIG_NETDEV_1000 is not set |
354 | # CONFIG_NETDEV_10000 is not set | 366 | # CONFIG_NETDEV_10000 is not set |
@@ -358,6 +370,10 @@ CONFIG_SMC91X=y | |||
358 | # | 370 | # |
359 | # CONFIG_WLAN_PRE80211 is not set | 371 | # CONFIG_WLAN_PRE80211 is not set |
360 | # CONFIG_WLAN_80211 is not set | 372 | # CONFIG_WLAN_80211 is not set |
373 | |||
374 | # | ||
375 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
376 | # | ||
361 | # CONFIG_WAN is not set | 377 | # CONFIG_WAN is not set |
362 | # CONFIG_PPP is not set | 378 | # CONFIG_PPP is not set |
363 | # CONFIG_SLIP is not set | 379 | # CONFIG_SLIP is not set |
@@ -382,6 +398,7 @@ CONFIG_SMC91X=y | |||
382 | # Character devices | 398 | # Character devices |
383 | # | 399 | # |
384 | # CONFIG_VT is not set | 400 | # CONFIG_VT is not set |
401 | CONFIG_DEVKMEM=y | ||
385 | # CONFIG_SERIAL_NONSTANDARD is not set | 402 | # CONFIG_SERIAL_NONSTANDARD is not set |
386 | 403 | ||
387 | # | 404 | # |
@@ -403,6 +420,7 @@ CONFIG_SERIAL_8250_SHARE_IRQ=y | |||
403 | CONFIG_SERIAL_CORE=y | 420 | CONFIG_SERIAL_CORE=y |
404 | CONFIG_SERIAL_CORE_CONSOLE=y | 421 | CONFIG_SERIAL_CORE_CONSOLE=y |
405 | CONFIG_UNIX98_PTYS=y | 422 | CONFIG_UNIX98_PTYS=y |
423 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
406 | CONFIG_LEGACY_PTYS=y | 424 | CONFIG_LEGACY_PTYS=y |
407 | CONFIG_LEGACY_PTY_COUNT=256 | 425 | CONFIG_LEGACY_PTY_COUNT=256 |
408 | # CONFIG_IPMI_HANDLER is not set | 426 | # CONFIG_IPMI_HANDLER is not set |
@@ -411,34 +429,43 @@ CONFIG_RTC=y | |||
411 | # CONFIG_R3964 is not set | 429 | # CONFIG_R3964 is not set |
412 | # CONFIG_TCG_TPM is not set | 430 | # CONFIG_TCG_TPM is not set |
413 | # CONFIG_I2C is not set | 431 | # CONFIG_I2C is not set |
414 | |||
415 | # | ||
416 | # SPI support | ||
417 | # | ||
418 | # CONFIG_SPI is not set | 432 | # CONFIG_SPI is not set |
419 | # CONFIG_SPI_MASTER is not set | ||
420 | # CONFIG_W1 is not set | 433 | # CONFIG_W1 is not set |
421 | # CONFIG_POWER_SUPPLY is not set | 434 | # CONFIG_POWER_SUPPLY is not set |
422 | # CONFIG_HWMON is not set | 435 | # CONFIG_HWMON is not set |
423 | # CONFIG_THERMAL is not set | 436 | # CONFIG_THERMAL is not set |
437 | # CONFIG_THERMAL_HWMON is not set | ||
424 | # CONFIG_WATCHDOG is not set | 438 | # CONFIG_WATCHDOG is not set |
439 | CONFIG_SSB_POSSIBLE=y | ||
425 | 440 | ||
426 | # | 441 | # |
427 | # Sonics Silicon Backplane | 442 | # Sonics Silicon Backplane |
428 | # | 443 | # |
429 | CONFIG_SSB_POSSIBLE=y | ||
430 | # CONFIG_SSB is not set | 444 | # CONFIG_SSB is not set |
431 | 445 | ||
432 | # | 446 | # |
433 | # Multifunction device drivers | 447 | # Multifunction device drivers |
434 | # | 448 | # |
449 | # CONFIG_MFD_CORE is not set | ||
435 | # CONFIG_MFD_SM501 is not set | 450 | # CONFIG_MFD_SM501 is not set |
451 | # CONFIG_HTC_PASIC3 is not set | ||
452 | # CONFIG_MFD_TMIO is not set | ||
453 | # CONFIG_REGULATOR is not set | ||
436 | 454 | ||
437 | # | 455 | # |
438 | # Multimedia devices | 456 | # Multimedia devices |
439 | # | 457 | # |
458 | |||
459 | # | ||
460 | # Multimedia core support | ||
461 | # | ||
440 | # CONFIG_VIDEO_DEV is not set | 462 | # CONFIG_VIDEO_DEV is not set |
441 | # CONFIG_DVB_CORE is not set | 463 | # CONFIG_DVB_CORE is not set |
464 | # CONFIG_VIDEO_MEDIA is not set | ||
465 | |||
466 | # | ||
467 | # Multimedia drivers | ||
468 | # | ||
442 | # CONFIG_DAB is not set | 469 | # CONFIG_DAB is not set |
443 | 470 | ||
444 | # | 471 | # |
@@ -453,21 +480,17 @@ CONFIG_SSB_POSSIBLE=y | |||
453 | # Display device support | 480 | # Display device support |
454 | # | 481 | # |
455 | # CONFIG_DISPLAY_SUPPORT is not set | 482 | # CONFIG_DISPLAY_SUPPORT is not set |
456 | |||
457 | # | ||
458 | # Sound | ||
459 | # | ||
460 | # CONFIG_SOUND is not set | 483 | # CONFIG_SOUND is not set |
461 | # CONFIG_USB_SUPPORT is not set | 484 | # CONFIG_USB_SUPPORT is not set |
462 | # CONFIG_MMC is not set | 485 | # CONFIG_MMC is not set |
463 | # CONFIG_MEMSTICK is not set | 486 | # CONFIG_MEMSTICK is not set |
464 | # CONFIG_NEW_LEDS is not set | 487 | # CONFIG_NEW_LEDS is not set |
488 | # CONFIG_ACCESSIBILITY is not set | ||
465 | # CONFIG_RTC_CLASS is not set | 489 | # CONFIG_RTC_CLASS is not set |
466 | 490 | # CONFIG_DMADEVICES is not set | |
467 | # | 491 | # CONFIG_AUXDISPLAY is not set |
468 | # Userspace I/O | ||
469 | # | ||
470 | # CONFIG_UIO is not set | 492 | # CONFIG_UIO is not set |
493 | # CONFIG_STAGING is not set | ||
471 | 494 | ||
472 | # | 495 | # |
473 | # File systems | 496 | # File systems |
@@ -481,20 +504,23 @@ CONFIG_INOTIFY_USER=y | |||
481 | # CONFIG_FUSE_FS is not set | 504 | # CONFIG_FUSE_FS is not set |
482 | 505 | ||
483 | # | 506 | # |
507 | # Caches | ||
508 | # | ||
509 | # CONFIG_FSCACHE is not set | ||
510 | |||
511 | # | ||
484 | # Pseudo filesystems | 512 | # Pseudo filesystems |
485 | # | 513 | # |
486 | CONFIG_PROC_FS=y | 514 | CONFIG_PROC_FS=y |
487 | CONFIG_PROC_KCORE=y | 515 | CONFIG_PROC_KCORE=y |
488 | CONFIG_PROC_SYSCTL=y | 516 | CONFIG_PROC_SYSCTL=y |
517 | # CONFIG_PROC_PAGE_MONITOR is not set | ||
489 | CONFIG_SYSFS=y | 518 | CONFIG_SYSFS=y |
490 | CONFIG_TMPFS=y | 519 | CONFIG_TMPFS=y |
491 | # CONFIG_TMPFS_POSIX_ACL is not set | 520 | # CONFIG_TMPFS_POSIX_ACL is not set |
492 | # CONFIG_HUGETLB_PAGE is not set | 521 | # CONFIG_HUGETLB_PAGE is not set |
493 | # CONFIG_CONFIGFS_FS is not set | 522 | # CONFIG_CONFIGFS_FS is not set |
494 | 523 | CONFIG_MISC_FILESYSTEMS=y | |
495 | # | ||
496 | # Miscellaneous filesystems | ||
497 | # | ||
498 | CONFIG_JFFS2_FS=y | 524 | CONFIG_JFFS2_FS=y |
499 | CONFIG_JFFS2_FS_DEBUG=0 | 525 | CONFIG_JFFS2_FS_DEBUG=0 |
500 | CONFIG_JFFS2_FS_WRITEBUFFER=y | 526 | CONFIG_JFFS2_FS_WRITEBUFFER=y |
@@ -506,19 +532,17 @@ CONFIG_JFFS2_ZLIB=y | |||
506 | # CONFIG_JFFS2_LZO is not set | 532 | # CONFIG_JFFS2_LZO is not set |
507 | CONFIG_JFFS2_RTIME=y | 533 | CONFIG_JFFS2_RTIME=y |
508 | # CONFIG_JFFS2_RUBIN is not set | 534 | # CONFIG_JFFS2_RUBIN is not set |
535 | # CONFIG_ROMFS_FS is not set | ||
509 | CONFIG_NETWORK_FILESYSTEMS=y | 536 | CONFIG_NETWORK_FILESYSTEMS=y |
510 | CONFIG_NFS_FS=y | 537 | CONFIG_NFS_FS=y |
511 | CONFIG_NFS_V3=y | 538 | CONFIG_NFS_V3=y |
512 | # CONFIG_NFS_V3_ACL is not set | 539 | # CONFIG_NFS_V3_ACL is not set |
513 | # CONFIG_NFS_V4 is not set | 540 | # CONFIG_NFS_V4 is not set |
514 | # CONFIG_NFS_DIRECTIO is not set | ||
515 | # CONFIG_NFSD is not set | ||
516 | CONFIG_ROOT_NFS=y | 541 | CONFIG_ROOT_NFS=y |
517 | CONFIG_LOCKD=y | 542 | CONFIG_LOCKD=y |
518 | CONFIG_LOCKD_V4=y | 543 | CONFIG_LOCKD_V4=y |
519 | CONFIG_NFS_COMMON=y | 544 | CONFIG_NFS_COMMON=y |
520 | CONFIG_SUNRPC=y | 545 | CONFIG_SUNRPC=y |
521 | # CONFIG_SUNRPC_BIND34 is not set | ||
522 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 546 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
523 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 547 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
524 | # CONFIG_SMB_FS is not set | 548 | # CONFIG_SMB_FS is not set |
@@ -535,12 +559,16 @@ CONFIG_SUNRPC=y | |||
535 | # CONFIG_PRINTK_TIME is not set | 559 | # CONFIG_PRINTK_TIME is not set |
536 | CONFIG_ENABLE_WARN_DEPRECATED=y | 560 | CONFIG_ENABLE_WARN_DEPRECATED=y |
537 | CONFIG_ENABLE_MUST_CHECK=y | 561 | CONFIG_ENABLE_MUST_CHECK=y |
562 | CONFIG_FRAME_WARN=1024 | ||
538 | CONFIG_MAGIC_SYSRQ=y | 563 | CONFIG_MAGIC_SYSRQ=y |
539 | # CONFIG_UNUSED_SYMBOLS is not set | 564 | # CONFIG_UNUSED_SYMBOLS is not set |
540 | # CONFIG_DEBUG_FS is not set | 565 | # CONFIG_DEBUG_FS is not set |
541 | # CONFIG_HEADERS_CHECK is not set | 566 | # CONFIG_HEADERS_CHECK is not set |
542 | # CONFIG_DEBUG_KERNEL is not set | 567 | # CONFIG_DEBUG_KERNEL is not set |
543 | # CONFIG_DEBUG_BUGVERBOSE is not set | 568 | # CONFIG_DEBUG_BUGVERBOSE is not set |
569 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
570 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
571 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
544 | # CONFIG_SAMPLES is not set | 572 | # CONFIG_SAMPLES is not set |
545 | 573 | ||
546 | # | 574 | # |
@@ -548,26 +576,26 @@ CONFIG_MAGIC_SYSRQ=y | |||
548 | # | 576 | # |
549 | # CONFIG_KEYS is not set | 577 | # CONFIG_KEYS is not set |
550 | # CONFIG_SECURITY is not set | 578 | # CONFIG_SECURITY is not set |
579 | # CONFIG_SECURITYFS is not set | ||
551 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 580 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
552 | # CONFIG_CRYPTO is not set | 581 | # CONFIG_CRYPTO is not set |
582 | # CONFIG_BINARY_PRINTF is not set | ||
553 | 583 | ||
554 | # | 584 | # |
555 | # Library routines | 585 | # Library routines |
556 | # | 586 | # |
557 | CONFIG_BITREVERSE=y | 587 | CONFIG_BITREVERSE=y |
588 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
558 | # CONFIG_CRC_CCITT is not set | 589 | # CONFIG_CRC_CCITT is not set |
559 | # CONFIG_CRC16 is not set | 590 | # CONFIG_CRC16 is not set |
591 | # CONFIG_CRC_T10DIF is not set | ||
560 | # CONFIG_CRC_ITU_T is not set | 592 | # CONFIG_CRC_ITU_T is not set |
561 | CONFIG_CRC32=y | 593 | CONFIG_CRC32=y |
562 | # CONFIG_CRC7 is not set | 594 | # CONFIG_CRC7 is not set |
563 | # CONFIG_LIBCRC32C is not set | 595 | # CONFIG_LIBCRC32C is not set |
564 | CONFIG_ZLIB_INFLATE=y | 596 | CONFIG_ZLIB_INFLATE=y |
565 | CONFIG_ZLIB_DEFLATE=y | 597 | CONFIG_ZLIB_DEFLATE=y |
566 | CONFIG_PLIST=y | ||
567 | CONFIG_HAS_IOMEM=y | 598 | CONFIG_HAS_IOMEM=y |
568 | CONFIG_HAS_IOPORT=y | 599 | CONFIG_HAS_IOPORT=y |
569 | CONFIG_HAS_DMA=y | 600 | CONFIG_HAS_DMA=y |
570 | 601 | CONFIG_NLATTR=y | |
571 | # | ||
572 | # Profiling support | ||
573 | # | ||
diff --git a/arch/mn10300/kernel/head.S b/arch/mn10300/kernel/head.S index 8a8309fbe3c4..14f27f3bfaf4 100644 --- a/arch/mn10300/kernel/head.S +++ b/arch/mn10300/kernel/head.S | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the Licence, or (at your option) any later version. | 9 | * 2 of the Licence, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/init.h> | ||
12 | #include <linux/threads.h> | 13 | #include <linux/threads.h> |
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <linux/serial_reg.h> | 15 | #include <linux/serial_reg.h> |
@@ -19,7 +20,7 @@ | |||
19 | #include <asm/param.h> | 20 | #include <asm/param.h> |
20 | #include <unit/serial.h> | 21 | #include <unit/serial.h> |
21 | 22 | ||
22 | .section .text.head,"ax" | 23 | __HEAD |
23 | 24 | ||
24 | ############################################################################### | 25 | ############################################################################### |
25 | # | 26 | # |
diff --git a/arch/mn10300/kernel/vmlinux.lds.S b/arch/mn10300/kernel/vmlinux.lds.S index b8259668f7dc..24de6b90f401 100644 --- a/arch/mn10300/kernel/vmlinux.lds.S +++ b/arch/mn10300/kernel/vmlinux.lds.S | |||
@@ -27,10 +27,7 @@ SECTIONS | |||
27 | _stext = .; | 27 | _stext = .; |
28 | _text = .; /* Text and read-only data */ | 28 | _text = .; /* Text and read-only data */ |
29 | .text : { | 29 | .text : { |
30 | *( | 30 | HEAD_TEXT |
31 | .text.head | ||
32 | .text | ||
33 | ) | ||
34 | TEXT_TEXT | 31 | TEXT_TEXT |
35 | SCHED_TEXT | 32 | SCHED_TEXT |
36 | LOCK_TEXT | 33 | LOCK_TEXT |
diff --git a/arch/powerpc/boot/4xx.c b/arch/powerpc/boot/4xx.c index 5c878436f348..325b310573b9 100644 --- a/arch/powerpc/boot/4xx.c +++ b/arch/powerpc/boot/4xx.c | |||
@@ -158,21 +158,33 @@ void ibm440spe_fixup_memsize(void) | |||
158 | 158 | ||
159 | #define DDR_GET_VAL(val, mask, shift) (((val) >> (shift)) & (mask)) | 159 | #define DDR_GET_VAL(val, mask, shift) (((val) >> (shift)) & (mask)) |
160 | 160 | ||
161 | void ibm4xx_denali_fixup_memsize(void) | 161 | /* |
162 | * Some U-Boot versions set the number of chipselects to two | ||
163 | * for Sequoia/Rainier boards while they only have one chipselect | ||
164 | * hardwired. Hardcode the number of chipselects to one | ||
165 | * for sequioa/rainer board models or read the actual value | ||
166 | * from the memory controller register DDR0_10 otherwise. | ||
167 | */ | ||
168 | static inline u32 ibm4xx_denali_get_cs(void) | ||
162 | { | 169 | { |
163 | u32 val, max_cs, max_col, max_row; | 170 | void *devp; |
164 | u32 cs, col, row, bank, dpath; | 171 | char model[64]; |
165 | unsigned long memsize; | 172 | u32 val, cs; |
166 | 173 | ||
167 | val = SDRAM0_READ(DDR0_02); | 174 | devp = finddevice("/"); |
168 | if (!DDR_GET_VAL(val, DDR_START, DDR_START_SHIFT)) | 175 | if (!devp) |
169 | fatal("DDR controller is not initialized\n"); | 176 | goto read_cs; |
170 | 177 | ||
171 | /* get maximum cs col and row values */ | 178 | if (getprop(devp, "model", model, sizeof(model)) <= 0) |
172 | max_cs = DDR_GET_VAL(val, DDR_MAX_CS_REG, DDR_MAX_CS_REG_SHIFT); | 179 | goto read_cs; |
173 | max_col = DDR_GET_VAL(val, DDR_MAX_COL_REG, DDR_MAX_COL_REG_SHIFT); | ||
174 | max_row = DDR_GET_VAL(val, DDR_MAX_ROW_REG, DDR_MAX_ROW_REG_SHIFT); | ||
175 | 180 | ||
181 | model[sizeof(model)-1] = 0; | ||
182 | |||
183 | if (!strcmp(model, "amcc,sequoia") || | ||
184 | !strcmp(model, "amcc,rainier")) | ||
185 | return 1; | ||
186 | |||
187 | read_cs: | ||
176 | /* get CS value */ | 188 | /* get CS value */ |
177 | val = SDRAM0_READ(DDR0_10); | 189 | val = SDRAM0_READ(DDR0_10); |
178 | 190 | ||
@@ -183,7 +195,25 @@ void ibm4xx_denali_fixup_memsize(void) | |||
183 | cs++; | 195 | cs++; |
184 | val = val >> 1; | 196 | val = val >> 1; |
185 | } | 197 | } |
198 | return cs; | ||
199 | } | ||
200 | |||
201 | void ibm4xx_denali_fixup_memsize(void) | ||
202 | { | ||
203 | u32 val, max_cs, max_col, max_row; | ||
204 | u32 cs, col, row, bank, dpath; | ||
205 | unsigned long memsize; | ||
206 | |||
207 | val = SDRAM0_READ(DDR0_02); | ||
208 | if (!DDR_GET_VAL(val, DDR_START, DDR_START_SHIFT)) | ||
209 | fatal("DDR controller is not initialized\n"); | ||
186 | 210 | ||
211 | /* get maximum cs col and row values */ | ||
212 | max_cs = DDR_GET_VAL(val, DDR_MAX_CS_REG, DDR_MAX_CS_REG_SHIFT); | ||
213 | max_col = DDR_GET_VAL(val, DDR_MAX_COL_REG, DDR_MAX_COL_REG_SHIFT); | ||
214 | max_row = DDR_GET_VAL(val, DDR_MAX_ROW_REG, DDR_MAX_ROW_REG_SHIFT); | ||
215 | |||
216 | cs = ibm4xx_denali_get_cs(); | ||
187 | if (!cs) | 217 | if (!cs) |
188 | fatal("No memory installed\n"); | 218 | fatal("No memory installed\n"); |
189 | if (cs > max_cs) | 219 | if (cs > max_cs) |
@@ -193,9 +223,9 @@ void ibm4xx_denali_fixup_memsize(void) | |||
193 | val = SDRAM0_READ(DDR0_14); | 223 | val = SDRAM0_READ(DDR0_14); |
194 | 224 | ||
195 | if (DDR_GET_VAL(val, DDR_REDUC, DDR_REDUC_SHIFT)) | 225 | if (DDR_GET_VAL(val, DDR_REDUC, DDR_REDUC_SHIFT)) |
196 | dpath = 8; /* 64 bits */ | ||
197 | else | ||
198 | dpath = 4; /* 32 bits */ | 226 | dpath = 4; /* 32 bits */ |
227 | else | ||
228 | dpath = 8; /* 64 bits */ | ||
199 | 229 | ||
200 | /* get address pins (rows) */ | 230 | /* get address pins (rows) */ |
201 | val = SDRAM0_READ(DDR0_42); | 231 | val = SDRAM0_READ(DDR0_42); |
diff --git a/arch/powerpc/boot/dts/gef_ppc9a.dts b/arch/powerpc/boot/dts/gef_ppc9a.dts index d47ad0718759..53a7a6255909 100644 --- a/arch/powerpc/boot/dts/gef_ppc9a.dts +++ b/arch/powerpc/boot/dts/gef_ppc9a.dts | |||
@@ -161,6 +161,7 @@ | |||
161 | #address-cells = <1>; | 161 | #address-cells = <1>; |
162 | #size-cells = <1>; | 162 | #size-cells = <1>; |
163 | #interrupt-cells = <2>; | 163 | #interrupt-cells = <2>; |
164 | device_type = "soc"; | ||
164 | compatible = "fsl,mpc8641-soc", "simple-bus"; | 165 | compatible = "fsl,mpc8641-soc", "simple-bus"; |
165 | ranges = <0x0 0xfef00000 0x00100000>; | 166 | ranges = <0x0 0xfef00000 0x00100000>; |
166 | reg = <0xfef00000 0x100000>; // CCSRBAR 1M | 167 | reg = <0xfef00000 0x100000>; // CCSRBAR 1M |
diff --git a/arch/powerpc/boot/dts/lite5200b.dts b/arch/powerpc/boot/dts/lite5200b.dts index c63e3566479e..d13cb11ce623 100644 --- a/arch/powerpc/boot/dts/lite5200b.dts +++ b/arch/powerpc/boot/dts/lite5200b.dts | |||
@@ -293,4 +293,43 @@ | |||
293 | 0x02000000 0 0xa0000000 0xa0000000 0 0x10000000 | 293 | 0x02000000 0 0xa0000000 0xa0000000 0 0x10000000 |
294 | 0x01000000 0 0x00000000 0xb0000000 0 0x01000000>; | 294 | 0x01000000 0 0x00000000 0xb0000000 0 0x01000000>; |
295 | }; | 295 | }; |
296 | |||
297 | localbus { | ||
298 | compatible = "fsl,mpc5200b-lpb","fsl,mpc5200-lpb","simple-bus"; | ||
299 | |||
300 | #address-cells = <2>; | ||
301 | #size-cells = <1>; | ||
302 | |||
303 | ranges = <0 0 0xfe000000 0x02000000>; | ||
304 | |||
305 | flash@0,0 { | ||
306 | compatible = "cfi-flash"; | ||
307 | reg = <0 0 0x02000000>; | ||
308 | bank-width = <1>; | ||
309 | #size-cells = <1>; | ||
310 | #address-cells = <1>; | ||
311 | |||
312 | partition@0 { | ||
313 | label = "kernel"; | ||
314 | reg = <0x00000000 0x00200000>; | ||
315 | }; | ||
316 | partition@200000 { | ||
317 | label = "rootfs"; | ||
318 | reg = <0x00200000 0x01d00000>; | ||
319 | }; | ||
320 | partition@1f00000 { | ||
321 | label = "u-boot"; | ||
322 | reg = <0x01f00000 0x00060000>; | ||
323 | }; | ||
324 | partition@1f60000 { | ||
325 | label = "u-boot-env"; | ||
326 | reg = <0x01f60000 0x00020000>; | ||
327 | }; | ||
328 | partition@1f80000 { | ||
329 | label = "dtb"; | ||
330 | reg = <0x01f80000 0x00080000>; | ||
331 | }; | ||
332 | }; | ||
333 | }; | ||
334 | |||
296 | }; | 335 | }; |
diff --git a/arch/powerpc/configs/52xx/cm5200_defconfig b/arch/powerpc/configs/52xx/cm5200_defconfig index 1239c6132b4a..3838b77b8116 100644 --- a/arch/powerpc/configs/52xx/cm5200_defconfig +++ b/arch/powerpc/configs/52xx/cm5200_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 21:41:58 2009 | 4 | # Sat Apr 18 00:47:44 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
58 | 60 | ||
59 | # | 61 | # |
@@ -94,19 +96,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
94 | # CONFIG_NAMESPACES is not set | 96 | # CONFIG_NAMESPACES is not set |
95 | CONFIG_BLK_DEV_INITRD=y | 97 | CONFIG_BLK_DEV_INITRD=y |
96 | CONFIG_INITRAMFS_SOURCE="" | 98 | CONFIG_INITRAMFS_SOURCE="" |
99 | CONFIG_RD_GZIP=y | ||
100 | # CONFIG_RD_BZIP2 is not set | ||
101 | # CONFIG_RD_LZMA is not set | ||
97 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 102 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
98 | CONFIG_SYSCTL=y | 103 | CONFIG_SYSCTL=y |
104 | CONFIG_ANON_INODES=y | ||
99 | CONFIG_EMBEDDED=y | 105 | CONFIG_EMBEDDED=y |
100 | # CONFIG_SYSCTL_SYSCALL is not set | 106 | # CONFIG_SYSCTL_SYSCALL is not set |
101 | # CONFIG_KALLSYMS is not set | 107 | # CONFIG_KALLSYMS is not set |
108 | # CONFIG_STRIP_ASM_SYMS is not set | ||
102 | CONFIG_HOTPLUG=y | 109 | CONFIG_HOTPLUG=y |
103 | CONFIG_PRINTK=y | 110 | CONFIG_PRINTK=y |
104 | CONFIG_BUG=y | 111 | CONFIG_BUG=y |
105 | CONFIG_ELF_CORE=y | 112 | CONFIG_ELF_CORE=y |
106 | CONFIG_COMPAT_BRK=y | ||
107 | CONFIG_BASE_FULL=y | 113 | CONFIG_BASE_FULL=y |
108 | CONFIG_FUTEX=y | 114 | CONFIG_FUTEX=y |
109 | CONFIG_ANON_INODES=y | ||
110 | # CONFIG_EPOLL is not set | 115 | # CONFIG_EPOLL is not set |
111 | CONFIG_SIGNALFD=y | 116 | CONFIG_SIGNALFD=y |
112 | CONFIG_TIMERFD=y | 117 | CONFIG_TIMERFD=y |
@@ -115,10 +120,12 @@ CONFIG_SHMEM=y | |||
115 | CONFIG_AIO=y | 120 | CONFIG_AIO=y |
116 | CONFIG_VM_EVENT_COUNTERS=y | 121 | CONFIG_VM_EVENT_COUNTERS=y |
117 | CONFIG_SLUB_DEBUG=y | 122 | CONFIG_SLUB_DEBUG=y |
123 | CONFIG_COMPAT_BRK=y | ||
118 | # CONFIG_SLAB is not set | 124 | # CONFIG_SLAB is not set |
119 | CONFIG_SLUB=y | 125 | CONFIG_SLUB=y |
120 | # CONFIG_SLOB is not set | 126 | # CONFIG_SLOB is not set |
121 | # CONFIG_PROFILING is not set | 127 | # CONFIG_PROFILING is not set |
128 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 129 | CONFIG_HAVE_OPROFILE=y |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 130 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
124 | CONFIG_HAVE_IOREMAP_PROT=y | 131 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -126,6 +133,7 @@ CONFIG_HAVE_KPROBES=y | |||
126 | CONFIG_HAVE_KRETPROBES=y | 133 | CONFIG_HAVE_KRETPROBES=y |
127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 134 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_CLK=y | 135 | CONFIG_HAVE_CLK=y |
136 | # CONFIG_SLOW_WORK is not set | ||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 137 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 138 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 139 | CONFIG_RT_MUTEXES=y |
@@ -133,7 +141,6 @@ CONFIG_BASE_SMALL=0 | |||
133 | # CONFIG_MODULES is not set | 141 | # CONFIG_MODULES is not set |
134 | CONFIG_BLOCK=y | 142 | CONFIG_BLOCK=y |
135 | # CONFIG_LBD is not set | 143 | # CONFIG_LBD is not set |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 146 | ||
@@ -154,8 +161,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
154 | # | 161 | # |
155 | # Platform support | 162 | # Platform support |
156 | # | 163 | # |
157 | CONFIG_PPC_MULTIPLATFORM=y | ||
158 | CONFIG_CLASSIC32=y | ||
159 | # CONFIG_PPC_CHRP is not set | 164 | # CONFIG_PPC_CHRP is not set |
160 | # CONFIG_MPC5121_ADS is not set | 165 | # CONFIG_MPC5121_ADS is not set |
161 | # CONFIG_MPC5121_GENERIC is not set | 166 | # CONFIG_MPC5121_GENERIC is not set |
@@ -163,6 +168,7 @@ CONFIG_PPC_MPC52xx=y | |||
163 | CONFIG_PPC_MPC5200_SIMPLE=y | 168 | CONFIG_PPC_MPC5200_SIMPLE=y |
164 | # CONFIG_PPC_EFIKA is not set | 169 | # CONFIG_PPC_EFIKA is not set |
165 | # CONFIG_PPC_LITE5200 is not set | 170 | # CONFIG_PPC_LITE5200 is not set |
171 | # CONFIG_PPC_MEDIA5200 is not set | ||
166 | # CONFIG_PPC_MPC5200_BUGFIX is not set | 172 | # CONFIG_PPC_MPC5200_BUGFIX is not set |
167 | # CONFIG_PPC_MPC5200_GPIO is not set | 173 | # CONFIG_PPC_MPC5200_GPIO is not set |
168 | # CONFIG_PPC_PMAC is not set | 174 | # CONFIG_PPC_PMAC is not set |
@@ -173,6 +179,8 @@ CONFIG_PPC_MPC5200_SIMPLE=y | |||
173 | # CONFIG_PPC_83xx is not set | 179 | # CONFIG_PPC_83xx is not set |
174 | # CONFIG_PPC_86xx is not set | 180 | # CONFIG_PPC_86xx is not set |
175 | # CONFIG_EMBEDDED6xx is not set | 181 | # CONFIG_EMBEDDED6xx is not set |
182 | # CONFIG_AMIGAONE is not set | ||
183 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
176 | # CONFIG_IPIC is not set | 184 | # CONFIG_IPIC is not set |
177 | # CONFIG_MPIC is not set | 185 | # CONFIG_MPIC is not set |
178 | # CONFIG_MPIC_WEIRD is not set | 186 | # CONFIG_MPIC_WEIRD is not set |
@@ -232,9 +240,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
232 | CONFIG_BOUNCE=y | 240 | CONFIG_BOUNCE=y |
233 | CONFIG_VIRT_TO_BUS=y | 241 | CONFIG_VIRT_TO_BUS=y |
234 | CONFIG_UNEVICTABLE_LRU=y | 242 | CONFIG_UNEVICTABLE_LRU=y |
243 | CONFIG_HAVE_MLOCK=y | ||
244 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
235 | CONFIG_PPC_4K_PAGES=y | 245 | CONFIG_PPC_4K_PAGES=y |
236 | # CONFIG_PPC_16K_PAGES is not set | 246 | # CONFIG_PPC_16K_PAGES is not set |
237 | # CONFIG_PPC_64K_PAGES is not set | 247 | # CONFIG_PPC_64K_PAGES is not set |
248 | # CONFIG_PPC_256K_PAGES is not set | ||
238 | CONFIG_FORCE_MAX_ZONEORDER=11 | 249 | CONFIG_FORCE_MAX_ZONEORDER=11 |
239 | CONFIG_PROC_DEVICETREE=y | 250 | CONFIG_PROC_DEVICETREE=y |
240 | # CONFIG_CMDLINE_BOOL is not set | 251 | # CONFIG_CMDLINE_BOOL is not set |
@@ -275,7 +286,6 @@ CONFIG_NET=y | |||
275 | # | 286 | # |
276 | # Networking options | 287 | # Networking options |
277 | # | 288 | # |
278 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
279 | CONFIG_PACKET=y | 289 | CONFIG_PACKET=y |
280 | # CONFIG_PACKET_MMAP is not set | 290 | # CONFIG_PACKET_MMAP is not set |
281 | CONFIG_UNIX=y | 291 | CONFIG_UNIX=y |
@@ -331,6 +341,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
331 | # CONFIG_LAPB is not set | 341 | # CONFIG_LAPB is not set |
332 | # CONFIG_ECONET is not set | 342 | # CONFIG_ECONET is not set |
333 | # CONFIG_WAN_ROUTER is not set | 343 | # CONFIG_WAN_ROUTER is not set |
344 | # CONFIG_PHONET is not set | ||
334 | # CONFIG_NET_SCHED is not set | 345 | # CONFIG_NET_SCHED is not set |
335 | # CONFIG_DCB is not set | 346 | # CONFIG_DCB is not set |
336 | 347 | ||
@@ -343,7 +354,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
343 | # CONFIG_IRDA is not set | 354 | # CONFIG_IRDA is not set |
344 | # CONFIG_BT is not set | 355 | # CONFIG_BT is not set |
345 | # CONFIG_AF_RXRPC is not set | 356 | # CONFIG_AF_RXRPC is not set |
346 | # CONFIG_PHONET is not set | ||
347 | # CONFIG_WIRELESS is not set | 357 | # CONFIG_WIRELESS is not set |
348 | # CONFIG_WIMAX is not set | 358 | # CONFIG_WIMAX is not set |
349 | # CONFIG_RFKILL is not set | 359 | # CONFIG_RFKILL is not set |
@@ -440,7 +450,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
440 | # LPDDR flash memory drivers | 450 | # LPDDR flash memory drivers |
441 | # | 451 | # |
442 | # CONFIG_MTD_LPDDR is not set | 452 | # CONFIG_MTD_LPDDR is not set |
443 | # CONFIG_MTD_QINFO_PROBE is not set | ||
444 | 453 | ||
445 | # | 454 | # |
446 | # UBI - Unsorted block images | 455 | # UBI - Unsorted block images |
@@ -505,10 +514,12 @@ CONFIG_CHR_DEV_SG=y | |||
505 | # CONFIG_SCSI_SRP_ATTRS is not set | 514 | # CONFIG_SCSI_SRP_ATTRS is not set |
506 | # CONFIG_SCSI_LOWLEVEL is not set | 515 | # CONFIG_SCSI_LOWLEVEL is not set |
507 | # CONFIG_SCSI_DH is not set | 516 | # CONFIG_SCSI_DH is not set |
517 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
508 | # CONFIG_ATA is not set | 518 | # CONFIG_ATA is not set |
509 | # CONFIG_MD is not set | 519 | # CONFIG_MD is not set |
510 | # CONFIG_MACINTOSH_DRIVERS is not set | 520 | # CONFIG_MACINTOSH_DRIVERS is not set |
511 | CONFIG_NETDEVICES=y | 521 | CONFIG_NETDEVICES=y |
522 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
512 | # CONFIG_DUMMY is not set | 523 | # CONFIG_DUMMY is not set |
513 | # CONFIG_BONDING is not set | 524 | # CONFIG_BONDING is not set |
514 | # CONFIG_MACVLAN is not set | 525 | # CONFIG_MACVLAN is not set |
@@ -537,6 +548,8 @@ CONFIG_LXT_PHY=y | |||
537 | # CONFIG_MDIO_BITBANG is not set | 548 | # CONFIG_MDIO_BITBANG is not set |
538 | CONFIG_NET_ETHERNET=y | 549 | CONFIG_NET_ETHERNET=y |
539 | # CONFIG_MII is not set | 550 | # CONFIG_MII is not set |
551 | # CONFIG_ETHOC is not set | ||
552 | # CONFIG_DNET is not set | ||
540 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 553 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
541 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 554 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
542 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 555 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -555,7 +568,6 @@ CONFIG_FEC_MPC52xx_MDIO=y | |||
555 | # | 568 | # |
556 | # CONFIG_WLAN_PRE80211 is not set | 569 | # CONFIG_WLAN_PRE80211 is not set |
557 | # CONFIG_WLAN_80211 is not set | 570 | # CONFIG_WLAN_80211 is not set |
558 | # CONFIG_IWLWIFI_LEDS is not set | ||
559 | 571 | ||
560 | # | 572 | # |
561 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 573 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -657,7 +669,6 @@ CONFIG_I2C_MPC=y | |||
657 | # CONFIG_SENSORS_PCF8574 is not set | 669 | # CONFIG_SENSORS_PCF8574 is not set |
658 | # CONFIG_PCF8575 is not set | 670 | # CONFIG_PCF8575 is not set |
659 | # CONFIG_SENSORS_PCA9539 is not set | 671 | # CONFIG_SENSORS_PCA9539 is not set |
660 | # CONFIG_SENSORS_PCF8591 is not set | ||
661 | # CONFIG_SENSORS_MAX6875 is not set | 672 | # CONFIG_SENSORS_MAX6875 is not set |
662 | # CONFIG_SENSORS_TSL2550 is not set | 673 | # CONFIG_SENSORS_TSL2550 is not set |
663 | # CONFIG_I2C_DEBUG_CORE is not set | 674 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -786,11 +797,11 @@ CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | |||
786 | # CONFIG_USB_TMC is not set | 797 | # CONFIG_USB_TMC is not set |
787 | 798 | ||
788 | # | 799 | # |
789 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 800 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
790 | # | 801 | # |
791 | 802 | ||
792 | # | 803 | # |
793 | # see USB_STORAGE Help for more information | 804 | # also be needed; see USB_STORAGE Help for more info |
794 | # | 805 | # |
795 | CONFIG_USB_STORAGE=y | 806 | CONFIG_USB_STORAGE=y |
796 | # CONFIG_USB_STORAGE_DEBUG is not set | 807 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -831,7 +842,6 @@ CONFIG_USB_STORAGE=y | |||
831 | # CONFIG_USB_LED is not set | 842 | # CONFIG_USB_LED is not set |
832 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 843 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
833 | # CONFIG_USB_CYTHERM is not set | 844 | # CONFIG_USB_CYTHERM is not set |
834 | # CONFIG_USB_PHIDGET is not set | ||
835 | # CONFIG_USB_IDMOUSE is not set | 845 | # CONFIG_USB_IDMOUSE is not set |
836 | # CONFIG_USB_FTDI_ELAN is not set | 846 | # CONFIG_USB_FTDI_ELAN is not set |
837 | # CONFIG_USB_APPLEDISPLAY is not set | 847 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -846,6 +856,7 @@ CONFIG_USB_STORAGE=y | |||
846 | # | 856 | # |
847 | # OTG and related infrastructure | 857 | # OTG and related infrastructure |
848 | # | 858 | # |
859 | # CONFIG_NOP_USB_XCEIV is not set | ||
849 | # CONFIG_MMC is not set | 860 | # CONFIG_MMC is not set |
850 | # CONFIG_MEMSTICK is not set | 861 | # CONFIG_MEMSTICK is not set |
851 | # CONFIG_NEW_LEDS is not set | 862 | # CONFIG_NEW_LEDS is not set |
@@ -853,6 +864,7 @@ CONFIG_USB_STORAGE=y | |||
853 | # CONFIG_EDAC is not set | 864 | # CONFIG_EDAC is not set |
854 | # CONFIG_RTC_CLASS is not set | 865 | # CONFIG_RTC_CLASS is not set |
855 | # CONFIG_DMADEVICES is not set | 866 | # CONFIG_DMADEVICES is not set |
867 | # CONFIG_AUXDISPLAY is not set | ||
856 | # CONFIG_UIO is not set | 868 | # CONFIG_UIO is not set |
857 | # CONFIG_STAGING is not set | 869 | # CONFIG_STAGING is not set |
858 | 870 | ||
@@ -863,6 +875,7 @@ CONFIG_EXT2_FS=y | |||
863 | # CONFIG_EXT2_FS_XATTR is not set | 875 | # CONFIG_EXT2_FS_XATTR is not set |
864 | # CONFIG_EXT2_FS_XIP is not set | 876 | # CONFIG_EXT2_FS_XIP is not set |
865 | CONFIG_EXT3_FS=y | 877 | CONFIG_EXT3_FS=y |
878 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
866 | CONFIG_EXT3_FS_XATTR=y | 879 | CONFIG_EXT3_FS_XATTR=y |
867 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 880 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
868 | # CONFIG_EXT3_FS_SECURITY is not set | 881 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -885,6 +898,11 @@ CONFIG_INOTIFY_USER=y | |||
885 | # CONFIG_FUSE_FS is not set | 898 | # CONFIG_FUSE_FS is not set |
886 | 899 | ||
887 | # | 900 | # |
901 | # Caches | ||
902 | # | ||
903 | # CONFIG_FSCACHE is not set | ||
904 | |||
905 | # | ||
888 | # CD-ROM/DVD Filesystems | 906 | # CD-ROM/DVD Filesystems |
889 | # | 907 | # |
890 | # CONFIG_ISO9660_FS is not set | 908 | # CONFIG_ISO9660_FS is not set |
@@ -941,6 +959,7 @@ CONFIG_CRAMFS=y | |||
941 | # CONFIG_ROMFS_FS is not set | 959 | # CONFIG_ROMFS_FS is not set |
942 | # CONFIG_SYSV_FS is not set | 960 | # CONFIG_SYSV_FS is not set |
943 | # CONFIG_UFS_FS is not set | 961 | # CONFIG_UFS_FS is not set |
962 | # CONFIG_NILFS2_FS is not set | ||
944 | CONFIG_NETWORK_FILESYSTEMS=y | 963 | CONFIG_NETWORK_FILESYSTEMS=y |
945 | CONFIG_NFS_FS=y | 964 | CONFIG_NFS_FS=y |
946 | CONFIG_NFS_V3=y | 965 | CONFIG_NFS_V3=y |
@@ -953,7 +972,6 @@ CONFIG_LOCKD_V4=y | |||
953 | CONFIG_NFS_COMMON=y | 972 | CONFIG_NFS_COMMON=y |
954 | CONFIG_SUNRPC=y | 973 | CONFIG_SUNRPC=y |
955 | CONFIG_SUNRPC_GSS=y | 974 | CONFIG_SUNRPC_GSS=y |
956 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
957 | CONFIG_RPCSEC_GSS_KRB5=y | 975 | CONFIG_RPCSEC_GSS_KRB5=y |
958 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 976 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
959 | # CONFIG_SMB_FS is not set | 977 | # CONFIG_SMB_FS is not set |
@@ -1024,6 +1042,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1024 | # CONFIG_NLS_KOI8_U is not set | 1042 | # CONFIG_NLS_KOI8_U is not set |
1025 | # CONFIG_NLS_UTF8 is not set | 1043 | # CONFIG_NLS_UTF8 is not set |
1026 | # CONFIG_DLM is not set | 1044 | # CONFIG_DLM is not set |
1045 | # CONFIG_BINARY_PRINTF is not set | ||
1027 | 1046 | ||
1028 | # | 1047 | # |
1029 | # Library routines | 1048 | # Library routines |
@@ -1039,11 +1058,12 @@ CONFIG_CRC32=y | |||
1039 | # CONFIG_LIBCRC32C is not set | 1058 | # CONFIG_LIBCRC32C is not set |
1040 | CONFIG_ZLIB_INFLATE=y | 1059 | CONFIG_ZLIB_INFLATE=y |
1041 | CONFIG_ZLIB_DEFLATE=y | 1060 | CONFIG_ZLIB_DEFLATE=y |
1042 | CONFIG_PLIST=y | 1061 | CONFIG_DECOMPRESS_GZIP=y |
1043 | CONFIG_HAS_IOMEM=y | 1062 | CONFIG_HAS_IOMEM=y |
1044 | CONFIG_HAS_IOPORT=y | 1063 | CONFIG_HAS_IOPORT=y |
1045 | CONFIG_HAS_DMA=y | 1064 | CONFIG_HAS_DMA=y |
1046 | CONFIG_HAVE_LMB=y | 1065 | CONFIG_HAVE_LMB=y |
1066 | CONFIG_NLATTR=y | ||
1047 | 1067 | ||
1048 | # | 1068 | # |
1049 | # Kernel hacking | 1069 | # Kernel hacking |
@@ -1061,6 +1081,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1061 | CONFIG_DETECT_SOFTLOCKUP=y | 1081 | CONFIG_DETECT_SOFTLOCKUP=y |
1062 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1082 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1063 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1083 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1084 | CONFIG_DETECT_HUNG_TASK=y | ||
1085 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1086 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1064 | CONFIG_SCHED_DEBUG=y | 1087 | CONFIG_SCHED_DEBUG=y |
1065 | # CONFIG_SCHEDSTATS is not set | 1088 | # CONFIG_SCHEDSTATS is not set |
1066 | # CONFIG_TIMER_STATS is not set | 1089 | # CONFIG_TIMER_STATS is not set |
@@ -1089,9 +1112,12 @@ CONFIG_SCHED_DEBUG=y | |||
1089 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1112 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1090 | # CONFIG_FAULT_INJECTION is not set | 1113 | # CONFIG_FAULT_INJECTION is not set |
1091 | # CONFIG_LATENCYTOP is not set | 1114 | # CONFIG_LATENCYTOP is not set |
1115 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1092 | CONFIG_HAVE_FUNCTION_TRACER=y | 1116 | CONFIG_HAVE_FUNCTION_TRACER=y |
1117 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1093 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1118 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1094 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1119 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1120 | CONFIG_TRACING_SUPPORT=y | ||
1095 | 1121 | ||
1096 | # | 1122 | # |
1097 | # Tracers | 1123 | # Tracers |
@@ -1099,17 +1125,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1099 | # CONFIG_FUNCTION_TRACER is not set | 1125 | # CONFIG_FUNCTION_TRACER is not set |
1100 | # CONFIG_SCHED_TRACER is not set | 1126 | # CONFIG_SCHED_TRACER is not set |
1101 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1127 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1128 | # CONFIG_EVENT_TRACER is not set | ||
1102 | # CONFIG_BOOT_TRACER is not set | 1129 | # CONFIG_BOOT_TRACER is not set |
1103 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1130 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1104 | # CONFIG_STACK_TRACER is not set | 1131 | # CONFIG_STACK_TRACER is not set |
1105 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1132 | # CONFIG_KMEMTRACE is not set |
1133 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1134 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1106 | # CONFIG_SAMPLES is not set | 1135 | # CONFIG_SAMPLES is not set |
1107 | CONFIG_HAVE_ARCH_KGDB=y | 1136 | CONFIG_HAVE_ARCH_KGDB=y |
1108 | # CONFIG_KGDB is not set | 1137 | # CONFIG_KGDB is not set |
1109 | CONFIG_PRINT_STACK_DEPTH=64 | 1138 | CONFIG_PRINT_STACK_DEPTH=64 |
1110 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1139 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1111 | # CONFIG_DEBUG_STACK_USAGE is not set | 1140 | # CONFIG_DEBUG_STACK_USAGE is not set |
1112 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1113 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1141 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1114 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1142 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1115 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1143 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1140,10 +1168,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1140 | CONFIG_CRYPTO_HASH=y | 1168 | CONFIG_CRYPTO_HASH=y |
1141 | CONFIG_CRYPTO_HASH2=y | 1169 | CONFIG_CRYPTO_HASH2=y |
1142 | CONFIG_CRYPTO_RNG2=y | 1170 | CONFIG_CRYPTO_RNG2=y |
1171 | CONFIG_CRYPTO_PCOMP=y | ||
1143 | CONFIG_CRYPTO_MANAGER=y | 1172 | CONFIG_CRYPTO_MANAGER=y |
1144 | CONFIG_CRYPTO_MANAGER2=y | 1173 | CONFIG_CRYPTO_MANAGER2=y |
1145 | # CONFIG_CRYPTO_GF128MUL is not set | 1174 | # CONFIG_CRYPTO_GF128MUL is not set |
1146 | # CONFIG_CRYPTO_NULL is not set | 1175 | # CONFIG_CRYPTO_NULL is not set |
1176 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1147 | # CONFIG_CRYPTO_CRYPTD is not set | 1177 | # CONFIG_CRYPTO_CRYPTD is not set |
1148 | # CONFIG_CRYPTO_AUTHENC is not set | 1178 | # CONFIG_CRYPTO_AUTHENC is not set |
1149 | 1179 | ||
@@ -1211,6 +1241,7 @@ CONFIG_CRYPTO_DES=y | |||
1211 | # Compression | 1241 | # Compression |
1212 | # | 1242 | # |
1213 | # CONFIG_CRYPTO_DEFLATE is not set | 1243 | # CONFIG_CRYPTO_DEFLATE is not set |
1244 | # CONFIG_CRYPTO_ZLIB is not set | ||
1214 | # CONFIG_CRYPTO_LZO is not set | 1245 | # CONFIG_CRYPTO_LZO is not set |
1215 | 1246 | ||
1216 | # | 1247 | # |
diff --git a/arch/powerpc/configs/52xx/lite5200b_defconfig b/arch/powerpc/configs/52xx/lite5200b_defconfig index b7b880562906..29b0f34488f5 100644 --- a/arch/powerpc/configs/52xx/lite5200b_defconfig +++ b/arch/powerpc/configs/52xx/lite5200b_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 21:41:14 2009 | 4 | # Sat Apr 18 00:48:04 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -55,6 +56,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
55 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 56 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
56 | # CONFIG_PPC_DCR_NATIVE is not set | 57 | # CONFIG_PPC_DCR_NATIVE is not set |
57 | # CONFIG_PPC_DCR_MMIO is not set | 58 | # CONFIG_PPC_DCR_MMIO is not set |
59 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 60 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
59 | 61 | ||
60 | # | 62 | # |
@@ -95,19 +97,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
95 | # CONFIG_NAMESPACES is not set | 97 | # CONFIG_NAMESPACES is not set |
96 | CONFIG_BLK_DEV_INITRD=y | 98 | CONFIG_BLK_DEV_INITRD=y |
97 | CONFIG_INITRAMFS_SOURCE="" | 99 | CONFIG_INITRAMFS_SOURCE="" |
100 | CONFIG_RD_GZIP=y | ||
101 | # CONFIG_RD_BZIP2 is not set | ||
102 | # CONFIG_RD_LZMA is not set | ||
98 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 103 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
99 | CONFIG_SYSCTL=y | 104 | CONFIG_SYSCTL=y |
105 | CONFIG_ANON_INODES=y | ||
100 | CONFIG_EMBEDDED=y | 106 | CONFIG_EMBEDDED=y |
101 | # CONFIG_SYSCTL_SYSCALL is not set | 107 | # CONFIG_SYSCTL_SYSCALL is not set |
102 | # CONFIG_KALLSYMS is not set | 108 | # CONFIG_KALLSYMS is not set |
109 | # CONFIG_STRIP_ASM_SYMS is not set | ||
103 | CONFIG_HOTPLUG=y | 110 | CONFIG_HOTPLUG=y |
104 | CONFIG_PRINTK=y | 111 | CONFIG_PRINTK=y |
105 | CONFIG_BUG=y | 112 | CONFIG_BUG=y |
106 | CONFIG_ELF_CORE=y | 113 | CONFIG_ELF_CORE=y |
107 | CONFIG_COMPAT_BRK=y | ||
108 | CONFIG_BASE_FULL=y | 114 | CONFIG_BASE_FULL=y |
109 | CONFIG_FUTEX=y | 115 | CONFIG_FUTEX=y |
110 | CONFIG_ANON_INODES=y | ||
111 | # CONFIG_EPOLL is not set | 116 | # CONFIG_EPOLL is not set |
112 | CONFIG_SIGNALFD=y | 117 | CONFIG_SIGNALFD=y |
113 | CONFIG_TIMERFD=y | 118 | CONFIG_TIMERFD=y |
@@ -117,10 +122,12 @@ CONFIG_AIO=y | |||
117 | CONFIG_VM_EVENT_COUNTERS=y | 122 | CONFIG_VM_EVENT_COUNTERS=y |
118 | CONFIG_PCI_QUIRKS=y | 123 | CONFIG_PCI_QUIRKS=y |
119 | CONFIG_SLUB_DEBUG=y | 124 | CONFIG_SLUB_DEBUG=y |
125 | CONFIG_COMPAT_BRK=y | ||
120 | # CONFIG_SLAB is not set | 126 | # CONFIG_SLAB is not set |
121 | CONFIG_SLUB=y | 127 | CONFIG_SLUB=y |
122 | # CONFIG_SLOB is not set | 128 | # CONFIG_SLOB is not set |
123 | # CONFIG_PROFILING is not set | 129 | # CONFIG_PROFILING is not set |
130 | # CONFIG_MARKERS is not set | ||
124 | CONFIG_HAVE_OPROFILE=y | 131 | CONFIG_HAVE_OPROFILE=y |
125 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 132 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
126 | CONFIG_HAVE_IOREMAP_PROT=y | 133 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -128,6 +135,7 @@ CONFIG_HAVE_KPROBES=y | |||
128 | CONFIG_HAVE_KRETPROBES=y | 135 | CONFIG_HAVE_KRETPROBES=y |
129 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 136 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
130 | CONFIG_HAVE_CLK=y | 137 | CONFIG_HAVE_CLK=y |
138 | # CONFIG_SLOW_WORK is not set | ||
131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 139 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
132 | CONFIG_SLABINFO=y | 140 | CONFIG_SLABINFO=y |
133 | CONFIG_RT_MUTEXES=y | 141 | CONFIG_RT_MUTEXES=y |
@@ -140,7 +148,6 @@ CONFIG_MODULE_UNLOAD=y | |||
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 148 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
142 | # CONFIG_LBD is not set | 150 | # CONFIG_LBD is not set |
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
144 | # CONFIG_BLK_DEV_BSG is not set | 151 | # CONFIG_BLK_DEV_BSG is not set |
145 | # CONFIG_BLK_DEV_INTEGRITY is not set | 152 | # CONFIG_BLK_DEV_INTEGRITY is not set |
146 | 153 | ||
@@ -161,8 +168,6 @@ CONFIG_FREEZER=y | |||
161 | # | 168 | # |
162 | # Platform support | 169 | # Platform support |
163 | # | 170 | # |
164 | CONFIG_PPC_MULTIPLATFORM=y | ||
165 | CONFIG_CLASSIC32=y | ||
166 | # CONFIG_PPC_CHRP is not set | 171 | # CONFIG_PPC_CHRP is not set |
167 | # CONFIG_MPC5121_ADS is not set | 172 | # CONFIG_MPC5121_ADS is not set |
168 | # CONFIG_MPC5121_GENERIC is not set | 173 | # CONFIG_MPC5121_GENERIC is not set |
@@ -170,6 +175,7 @@ CONFIG_PPC_MPC52xx=y | |||
170 | CONFIG_PPC_MPC5200_SIMPLE=y | 175 | CONFIG_PPC_MPC5200_SIMPLE=y |
171 | # CONFIG_PPC_EFIKA is not set | 176 | # CONFIG_PPC_EFIKA is not set |
172 | CONFIG_PPC_LITE5200=y | 177 | CONFIG_PPC_LITE5200=y |
178 | # CONFIG_PPC_MEDIA5200 is not set | ||
173 | # CONFIG_PPC_MPC5200_BUGFIX is not set | 179 | # CONFIG_PPC_MPC5200_BUGFIX is not set |
174 | # CONFIG_PPC_MPC5200_GPIO is not set | 180 | # CONFIG_PPC_MPC5200_GPIO is not set |
175 | # CONFIG_PPC_PMAC is not set | 181 | # CONFIG_PPC_PMAC is not set |
@@ -180,6 +186,8 @@ CONFIG_PPC_LITE5200=y | |||
180 | # CONFIG_PPC_83xx is not set | 186 | # CONFIG_PPC_83xx is not set |
181 | # CONFIG_PPC_86xx is not set | 187 | # CONFIG_PPC_86xx is not set |
182 | # CONFIG_EMBEDDED6xx is not set | 188 | # CONFIG_EMBEDDED6xx is not set |
189 | # CONFIG_AMIGAONE is not set | ||
190 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
183 | # CONFIG_IPIC is not set | 191 | # CONFIG_IPIC is not set |
184 | # CONFIG_MPIC is not set | 192 | # CONFIG_MPIC is not set |
185 | # CONFIG_MPIC_WEIRD is not set | 193 | # CONFIG_MPIC_WEIRD is not set |
@@ -241,9 +249,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
241 | CONFIG_BOUNCE=y | 249 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 250 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 251 | CONFIG_UNEVICTABLE_LRU=y |
252 | CONFIG_HAVE_MLOCK=y | ||
253 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
244 | CONFIG_PPC_4K_PAGES=y | 254 | CONFIG_PPC_4K_PAGES=y |
245 | # CONFIG_PPC_16K_PAGES is not set | 255 | # CONFIG_PPC_16K_PAGES is not set |
246 | # CONFIG_PPC_64K_PAGES is not set | 256 | # CONFIG_PPC_64K_PAGES is not set |
257 | # CONFIG_PPC_256K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 258 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 259 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 260 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +283,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
272 | CONFIG_PCI_LEGACY=y | 283 | CONFIG_PCI_LEGACY=y |
273 | # CONFIG_PCI_DEBUG is not set | 284 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | 285 | # CONFIG_PCI_STUB is not set |
286 | # CONFIG_PCI_IOV is not set | ||
275 | # CONFIG_PCCARD is not set | 287 | # CONFIG_PCCARD is not set |
276 | # CONFIG_HOTPLUG_PCI is not set | 288 | # CONFIG_HOTPLUG_PCI is not set |
277 | # CONFIG_HAS_RAPIDIO is not set | 289 | # CONFIG_HAS_RAPIDIO is not set |
@@ -294,7 +306,6 @@ CONFIG_NET=y | |||
294 | # | 306 | # |
295 | # Networking options | 307 | # Networking options |
296 | # | 308 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
298 | CONFIG_PACKET=y | 309 | CONFIG_PACKET=y |
299 | # CONFIG_PACKET_MMAP is not set | 310 | # CONFIG_PACKET_MMAP is not set |
300 | CONFIG_UNIX=y | 311 | CONFIG_UNIX=y |
@@ -350,6 +361,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
350 | # CONFIG_LAPB is not set | 361 | # CONFIG_LAPB is not set |
351 | # CONFIG_ECONET is not set | 362 | # CONFIG_ECONET is not set |
352 | # CONFIG_WAN_ROUTER is not set | 363 | # CONFIG_WAN_ROUTER is not set |
364 | # CONFIG_PHONET is not set | ||
353 | # CONFIG_NET_SCHED is not set | 365 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | 366 | # CONFIG_DCB is not set |
355 | 367 | ||
@@ -362,7 +374,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
362 | # CONFIG_IRDA is not set | 374 | # CONFIG_IRDA is not set |
363 | # CONFIG_BT is not set | 375 | # CONFIG_BT is not set |
364 | # CONFIG_AF_RXRPC is not set | 376 | # CONFIG_AF_RXRPC is not set |
365 | # CONFIG_PHONET is not set | ||
366 | # CONFIG_WIRELESS is not set | 377 | # CONFIG_WIRELESS is not set |
367 | # CONFIG_WIMAX is not set | 378 | # CONFIG_WIMAX is not set |
368 | # CONFIG_RFKILL is not set | 379 | # CONFIG_RFKILL is not set |
@@ -412,6 +423,7 @@ CONFIG_MISC_DEVICES=y | |||
412 | # CONFIG_ICS932S401 is not set | 423 | # CONFIG_ICS932S401 is not set |
413 | # CONFIG_ENCLOSURE_SERVICES is not set | 424 | # CONFIG_ENCLOSURE_SERVICES is not set |
414 | # CONFIG_HP_ILO is not set | 425 | # CONFIG_HP_ILO is not set |
426 | # CONFIG_ISL29003 is not set | ||
415 | # CONFIG_C2PORT is not set | 427 | # CONFIG_C2PORT is not set |
416 | 428 | ||
417 | # | 429 | # |
@@ -477,9 +489,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
477 | # CONFIG_MEGARAID_NEWGEN is not set | 489 | # CONFIG_MEGARAID_NEWGEN is not set |
478 | # CONFIG_MEGARAID_LEGACY is not set | 490 | # CONFIG_MEGARAID_LEGACY is not set |
479 | # CONFIG_MEGARAID_SAS is not set | 491 | # CONFIG_MEGARAID_SAS is not set |
492 | # CONFIG_SCSI_MPT2SAS is not set | ||
480 | # CONFIG_SCSI_HPTIOP is not set | 493 | # CONFIG_SCSI_HPTIOP is not set |
481 | # CONFIG_SCSI_BUSLOGIC is not set | 494 | # CONFIG_SCSI_BUSLOGIC is not set |
482 | # CONFIG_LIBFC is not set | 495 | # CONFIG_LIBFC is not set |
496 | # CONFIG_LIBFCOE is not set | ||
483 | # CONFIG_FCOE is not set | 497 | # CONFIG_FCOE is not set |
484 | # CONFIG_SCSI_DMX3191D is not set | 498 | # CONFIG_SCSI_DMX3191D is not set |
485 | # CONFIG_SCSI_EATA is not set | 499 | # CONFIG_SCSI_EATA is not set |
@@ -502,6 +516,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
502 | # CONFIG_SCSI_DEBUG is not set | 516 | # CONFIG_SCSI_DEBUG is not set |
503 | # CONFIG_SCSI_SRP is not set | 517 | # CONFIG_SCSI_SRP is not set |
504 | # CONFIG_SCSI_DH is not set | 518 | # CONFIG_SCSI_DH is not set |
519 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
505 | CONFIG_ATA=y | 520 | CONFIG_ATA=y |
506 | # CONFIG_ATA_NONSTANDARD is not set | 521 | # CONFIG_ATA_NONSTANDARD is not set |
507 | CONFIG_SATA_PMP=y | 522 | CONFIG_SATA_PMP=y |
@@ -578,6 +593,7 @@ CONFIG_PATA_MPC52xx=y | |||
578 | # CONFIG_I2O is not set | 593 | # CONFIG_I2O is not set |
579 | # CONFIG_MACINTOSH_DRIVERS is not set | 594 | # CONFIG_MACINTOSH_DRIVERS is not set |
580 | CONFIG_NETDEVICES=y | 595 | CONFIG_NETDEVICES=y |
596 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
581 | # CONFIG_DUMMY is not set | 597 | # CONFIG_DUMMY is not set |
582 | # CONFIG_BONDING is not set | 598 | # CONFIG_BONDING is not set |
583 | # CONFIG_MACVLAN is not set | 599 | # CONFIG_MACVLAN is not set |
@@ -611,6 +627,8 @@ CONFIG_NET_ETHERNET=y | |||
611 | # CONFIG_SUNGEM is not set | 627 | # CONFIG_SUNGEM is not set |
612 | # CONFIG_CASSINI is not set | 628 | # CONFIG_CASSINI is not set |
613 | # CONFIG_NET_VENDOR_3COM is not set | 629 | # CONFIG_NET_VENDOR_3COM is not set |
630 | # CONFIG_ETHOC is not set | ||
631 | # CONFIG_DNET is not set | ||
614 | # CONFIG_NET_TULIP is not set | 632 | # CONFIG_NET_TULIP is not set |
615 | # CONFIG_HP100 is not set | 633 | # CONFIG_HP100 is not set |
616 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 634 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -632,6 +650,7 @@ CONFIG_NETDEV_1000=y | |||
632 | # CONFIG_E1000E is not set | 650 | # CONFIG_E1000E is not set |
633 | # CONFIG_IP1000 is not set | 651 | # CONFIG_IP1000 is not set |
634 | # CONFIG_IGB is not set | 652 | # CONFIG_IGB is not set |
653 | # CONFIG_IGBVF is not set | ||
635 | # CONFIG_NS83820 is not set | 654 | # CONFIG_NS83820 is not set |
636 | # CONFIG_HAMACHI is not set | 655 | # CONFIG_HAMACHI is not set |
637 | # CONFIG_YELLOWFIN is not set | 656 | # CONFIG_YELLOWFIN is not set |
@@ -642,10 +661,10 @@ CONFIG_NETDEV_1000=y | |||
642 | # CONFIG_VIA_VELOCITY is not set | 661 | # CONFIG_VIA_VELOCITY is not set |
643 | # CONFIG_TIGON3 is not set | 662 | # CONFIG_TIGON3 is not set |
644 | # CONFIG_BNX2 is not set | 663 | # CONFIG_BNX2 is not set |
645 | # CONFIG_MV643XX_ETH is not set | ||
646 | # CONFIG_QLA3XXX is not set | 664 | # CONFIG_QLA3XXX is not set |
647 | # CONFIG_ATL1 is not set | 665 | # CONFIG_ATL1 is not set |
648 | # CONFIG_ATL1E is not set | 666 | # CONFIG_ATL1E is not set |
667 | # CONFIG_ATL1C is not set | ||
649 | # CONFIG_JME is not set | 668 | # CONFIG_JME is not set |
650 | CONFIG_NETDEV_10000=y | 669 | CONFIG_NETDEV_10000=y |
651 | # CONFIG_CHELSIO_T1 is not set | 670 | # CONFIG_CHELSIO_T1 is not set |
@@ -655,6 +674,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
655 | # CONFIG_IXGBE is not set | 674 | # CONFIG_IXGBE is not set |
656 | # CONFIG_IXGB is not set | 675 | # CONFIG_IXGB is not set |
657 | # CONFIG_S2IO is not set | 676 | # CONFIG_S2IO is not set |
677 | # CONFIG_VXGE is not set | ||
658 | # CONFIG_MYRI10GE is not set | 678 | # CONFIG_MYRI10GE is not set |
659 | # CONFIG_NETXEN_NIC is not set | 679 | # CONFIG_NETXEN_NIC is not set |
660 | # CONFIG_NIU is not set | 680 | # CONFIG_NIU is not set |
@@ -664,6 +684,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
664 | # CONFIG_BNX2X is not set | 684 | # CONFIG_BNX2X is not set |
665 | # CONFIG_QLGE is not set | 685 | # CONFIG_QLGE is not set |
666 | # CONFIG_SFC is not set | 686 | # CONFIG_SFC is not set |
687 | # CONFIG_BE2NET is not set | ||
667 | # CONFIG_TR is not set | 688 | # CONFIG_TR is not set |
668 | 689 | ||
669 | # | 690 | # |
@@ -671,7 +692,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
671 | # | 692 | # |
672 | # CONFIG_WLAN_PRE80211 is not set | 693 | # CONFIG_WLAN_PRE80211 is not set |
673 | # CONFIG_WLAN_80211 is not set | 694 | # CONFIG_WLAN_80211 is not set |
674 | # CONFIG_IWLWIFI_LEDS is not set | ||
675 | 695 | ||
676 | # | 696 | # |
677 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 697 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -795,7 +815,6 @@ CONFIG_I2C_MPC=y | |||
795 | # CONFIG_SENSORS_PCF8574 is not set | 815 | # CONFIG_SENSORS_PCF8574 is not set |
796 | # CONFIG_PCF8575 is not set | 816 | # CONFIG_PCF8575 is not set |
797 | # CONFIG_SENSORS_PCA9539 is not set | 817 | # CONFIG_SENSORS_PCA9539 is not set |
798 | # CONFIG_SENSORS_PCF8591 is not set | ||
799 | # CONFIG_SENSORS_MAX6875 is not set | 818 | # CONFIG_SENSORS_MAX6875 is not set |
800 | # CONFIG_SENSORS_TSL2550 is not set | 819 | # CONFIG_SENSORS_TSL2550 is not set |
801 | # CONFIG_I2C_DEBUG_CORE is not set | 820 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -876,7 +895,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
876 | # | 895 | # |
877 | 896 | ||
878 | # | 897 | # |
879 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 898 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
880 | # | 899 | # |
881 | # CONFIG_USB_GADGET is not set | 900 | # CONFIG_USB_GADGET is not set |
882 | 901 | ||
@@ -892,6 +911,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
892 | # CONFIG_EDAC is not set | 911 | # CONFIG_EDAC is not set |
893 | # CONFIG_RTC_CLASS is not set | 912 | # CONFIG_RTC_CLASS is not set |
894 | # CONFIG_DMADEVICES is not set | 913 | # CONFIG_DMADEVICES is not set |
914 | # CONFIG_AUXDISPLAY is not set | ||
895 | # CONFIG_UIO is not set | 915 | # CONFIG_UIO is not set |
896 | # CONFIG_STAGING is not set | 916 | # CONFIG_STAGING is not set |
897 | 917 | ||
@@ -902,6 +922,7 @@ CONFIG_EXT2_FS=y | |||
902 | # CONFIG_EXT2_FS_XATTR is not set | 922 | # CONFIG_EXT2_FS_XATTR is not set |
903 | # CONFIG_EXT2_FS_XIP is not set | 923 | # CONFIG_EXT2_FS_XIP is not set |
904 | CONFIG_EXT3_FS=y | 924 | CONFIG_EXT3_FS=y |
925 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
905 | CONFIG_EXT3_FS_XATTR=y | 926 | CONFIG_EXT3_FS_XATTR=y |
906 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 927 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
907 | # CONFIG_EXT3_FS_SECURITY is not set | 928 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -924,6 +945,11 @@ CONFIG_INOTIFY_USER=y | |||
924 | # CONFIG_FUSE_FS is not set | 945 | # CONFIG_FUSE_FS is not set |
925 | 946 | ||
926 | # | 947 | # |
948 | # Caches | ||
949 | # | ||
950 | # CONFIG_FSCACHE is not set | ||
951 | |||
952 | # | ||
927 | # CD-ROM/DVD Filesystems | 953 | # CD-ROM/DVD Filesystems |
928 | # | 954 | # |
929 | # CONFIG_ISO9660_FS is not set | 955 | # CONFIG_ISO9660_FS is not set |
@@ -966,6 +992,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
966 | # CONFIG_ROMFS_FS is not set | 992 | # CONFIG_ROMFS_FS is not set |
967 | # CONFIG_SYSV_FS is not set | 993 | # CONFIG_SYSV_FS is not set |
968 | # CONFIG_UFS_FS is not set | 994 | # CONFIG_UFS_FS is not set |
995 | # CONFIG_NILFS2_FS is not set | ||
969 | CONFIG_NETWORK_FILESYSTEMS=y | 996 | CONFIG_NETWORK_FILESYSTEMS=y |
970 | CONFIG_NFS_FS=y | 997 | CONFIG_NFS_FS=y |
971 | CONFIG_NFS_V3=y | 998 | CONFIG_NFS_V3=y |
@@ -978,7 +1005,6 @@ CONFIG_LOCKD_V4=y | |||
978 | CONFIG_NFS_COMMON=y | 1005 | CONFIG_NFS_COMMON=y |
979 | CONFIG_SUNRPC=y | 1006 | CONFIG_SUNRPC=y |
980 | CONFIG_SUNRPC_GSS=y | 1007 | CONFIG_SUNRPC_GSS=y |
981 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
982 | CONFIG_RPCSEC_GSS_KRB5=y | 1008 | CONFIG_RPCSEC_GSS_KRB5=y |
983 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1009 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
984 | # CONFIG_SMB_FS is not set | 1010 | # CONFIG_SMB_FS is not set |
@@ -994,6 +1020,7 @@ CONFIG_RPCSEC_GSS_KRB5=y | |||
994 | CONFIG_MSDOS_PARTITION=y | 1020 | CONFIG_MSDOS_PARTITION=y |
995 | # CONFIG_NLS is not set | 1021 | # CONFIG_NLS is not set |
996 | # CONFIG_DLM is not set | 1022 | # CONFIG_DLM is not set |
1023 | # CONFIG_BINARY_PRINTF is not set | ||
997 | 1024 | ||
998 | # | 1025 | # |
999 | # Library routines | 1026 | # Library routines |
@@ -1007,11 +1034,13 @@ CONFIG_GENERIC_FIND_LAST_BIT=y | |||
1007 | CONFIG_CRC32=y | 1034 | CONFIG_CRC32=y |
1008 | # CONFIG_CRC7 is not set | 1035 | # CONFIG_CRC7 is not set |
1009 | # CONFIG_LIBCRC32C is not set | 1036 | # CONFIG_LIBCRC32C is not set |
1010 | CONFIG_PLIST=y | 1037 | CONFIG_ZLIB_INFLATE=y |
1038 | CONFIG_DECOMPRESS_GZIP=y | ||
1011 | CONFIG_HAS_IOMEM=y | 1039 | CONFIG_HAS_IOMEM=y |
1012 | CONFIG_HAS_IOPORT=y | 1040 | CONFIG_HAS_IOPORT=y |
1013 | CONFIG_HAS_DMA=y | 1041 | CONFIG_HAS_DMA=y |
1014 | CONFIG_HAVE_LMB=y | 1042 | CONFIG_HAVE_LMB=y |
1043 | CONFIG_NLATTR=y | ||
1015 | 1044 | ||
1016 | # | 1045 | # |
1017 | # Kernel hacking | 1046 | # Kernel hacking |
@@ -1029,6 +1058,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1029 | CONFIG_DETECT_SOFTLOCKUP=y | 1058 | CONFIG_DETECT_SOFTLOCKUP=y |
1030 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1059 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1031 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1060 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1061 | CONFIG_DETECT_HUNG_TASK=y | ||
1062 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1063 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1032 | CONFIG_SCHED_DEBUG=y | 1064 | CONFIG_SCHED_DEBUG=y |
1033 | # CONFIG_SCHEDSTATS is not set | 1065 | # CONFIG_SCHEDSTATS is not set |
1034 | # CONFIG_TIMER_STATS is not set | 1066 | # CONFIG_TIMER_STATS is not set |
@@ -1057,9 +1089,12 @@ CONFIG_DEBUG_INFO=y | |||
1057 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1089 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1058 | # CONFIG_FAULT_INJECTION is not set | 1090 | # CONFIG_FAULT_INJECTION is not set |
1059 | # CONFIG_LATENCYTOP is not set | 1091 | # CONFIG_LATENCYTOP is not set |
1092 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1060 | CONFIG_HAVE_FUNCTION_TRACER=y | 1093 | CONFIG_HAVE_FUNCTION_TRACER=y |
1094 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1061 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1095 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1062 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1096 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1097 | CONFIG_TRACING_SUPPORT=y | ||
1063 | 1098 | ||
1064 | # | 1099 | # |
1065 | # Tracers | 1100 | # Tracers |
@@ -1067,17 +1102,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1067 | # CONFIG_FUNCTION_TRACER is not set | 1102 | # CONFIG_FUNCTION_TRACER is not set |
1068 | # CONFIG_SCHED_TRACER is not set | 1103 | # CONFIG_SCHED_TRACER is not set |
1069 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1104 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1105 | # CONFIG_EVENT_TRACER is not set | ||
1070 | # CONFIG_BOOT_TRACER is not set | 1106 | # CONFIG_BOOT_TRACER is not set |
1071 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1107 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1072 | # CONFIG_STACK_TRACER is not set | 1108 | # CONFIG_STACK_TRACER is not set |
1073 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1109 | # CONFIG_KMEMTRACE is not set |
1110 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1111 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1074 | # CONFIG_SAMPLES is not set | 1112 | # CONFIG_SAMPLES is not set |
1075 | CONFIG_HAVE_ARCH_KGDB=y | 1113 | CONFIG_HAVE_ARCH_KGDB=y |
1076 | # CONFIG_KGDB is not set | 1114 | # CONFIG_KGDB is not set |
1077 | CONFIG_PRINT_STACK_DEPTH=64 | 1115 | CONFIG_PRINT_STACK_DEPTH=64 |
1078 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1116 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1079 | # CONFIG_DEBUG_STACK_USAGE is not set | 1117 | # CONFIG_DEBUG_STACK_USAGE is not set |
1080 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1081 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1118 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1082 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1119 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1083 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1120 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1108,10 +1145,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1108 | CONFIG_CRYPTO_HASH=y | 1145 | CONFIG_CRYPTO_HASH=y |
1109 | CONFIG_CRYPTO_HASH2=y | 1146 | CONFIG_CRYPTO_HASH2=y |
1110 | CONFIG_CRYPTO_RNG2=y | 1147 | CONFIG_CRYPTO_RNG2=y |
1148 | CONFIG_CRYPTO_PCOMP=y | ||
1111 | CONFIG_CRYPTO_MANAGER=y | 1149 | CONFIG_CRYPTO_MANAGER=y |
1112 | CONFIG_CRYPTO_MANAGER2=y | 1150 | CONFIG_CRYPTO_MANAGER2=y |
1113 | # CONFIG_CRYPTO_GF128MUL is not set | 1151 | # CONFIG_CRYPTO_GF128MUL is not set |
1114 | # CONFIG_CRYPTO_NULL is not set | 1152 | # CONFIG_CRYPTO_NULL is not set |
1153 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1115 | # CONFIG_CRYPTO_CRYPTD is not set | 1154 | # CONFIG_CRYPTO_CRYPTD is not set |
1116 | # CONFIG_CRYPTO_AUTHENC is not set | 1155 | # CONFIG_CRYPTO_AUTHENC is not set |
1117 | # CONFIG_CRYPTO_TEST is not set | 1156 | # CONFIG_CRYPTO_TEST is not set |
@@ -1180,6 +1219,7 @@ CONFIG_CRYPTO_DES=y | |||
1180 | # Compression | 1219 | # Compression |
1181 | # | 1220 | # |
1182 | # CONFIG_CRYPTO_DEFLATE is not set | 1221 | # CONFIG_CRYPTO_DEFLATE is not set |
1222 | # CONFIG_CRYPTO_ZLIB is not set | ||
1183 | # CONFIG_CRYPTO_LZO is not set | 1223 | # CONFIG_CRYPTO_LZO is not set |
1184 | 1224 | ||
1185 | # | 1225 | # |
diff --git a/arch/powerpc/configs/52xx/motionpro_defconfig b/arch/powerpc/configs/52xx/motionpro_defconfig index fb10f22fd0d2..07b6b266ea95 100644 --- a/arch/powerpc/configs/52xx/motionpro_defconfig +++ b/arch/powerpc/configs/52xx/motionpro_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 21:42:29 2009 | 4 | # Sat Apr 18 00:48:22 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
58 | 60 | ||
59 | # | 61 | # |
@@ -94,19 +96,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
94 | # CONFIG_NAMESPACES is not set | 96 | # CONFIG_NAMESPACES is not set |
95 | CONFIG_BLK_DEV_INITRD=y | 97 | CONFIG_BLK_DEV_INITRD=y |
96 | CONFIG_INITRAMFS_SOURCE="" | 98 | CONFIG_INITRAMFS_SOURCE="" |
99 | CONFIG_RD_GZIP=y | ||
100 | # CONFIG_RD_BZIP2 is not set | ||
101 | # CONFIG_RD_LZMA is not set | ||
97 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 102 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
98 | CONFIG_SYSCTL=y | 103 | CONFIG_SYSCTL=y |
104 | CONFIG_ANON_INODES=y | ||
99 | CONFIG_EMBEDDED=y | 105 | CONFIG_EMBEDDED=y |
100 | # CONFIG_SYSCTL_SYSCALL is not set | 106 | # CONFIG_SYSCTL_SYSCALL is not set |
101 | # CONFIG_KALLSYMS is not set | 107 | # CONFIG_KALLSYMS is not set |
108 | # CONFIG_STRIP_ASM_SYMS is not set | ||
102 | CONFIG_HOTPLUG=y | 109 | CONFIG_HOTPLUG=y |
103 | CONFIG_PRINTK=y | 110 | CONFIG_PRINTK=y |
104 | CONFIG_BUG=y | 111 | CONFIG_BUG=y |
105 | CONFIG_ELF_CORE=y | 112 | CONFIG_ELF_CORE=y |
106 | CONFIG_COMPAT_BRK=y | ||
107 | CONFIG_BASE_FULL=y | 113 | CONFIG_BASE_FULL=y |
108 | CONFIG_FUTEX=y | 114 | CONFIG_FUTEX=y |
109 | CONFIG_ANON_INODES=y | ||
110 | # CONFIG_EPOLL is not set | 115 | # CONFIG_EPOLL is not set |
111 | CONFIG_SIGNALFD=y | 116 | CONFIG_SIGNALFD=y |
112 | CONFIG_TIMERFD=y | 117 | CONFIG_TIMERFD=y |
@@ -115,10 +120,12 @@ CONFIG_SHMEM=y | |||
115 | CONFIG_AIO=y | 120 | CONFIG_AIO=y |
116 | CONFIG_VM_EVENT_COUNTERS=y | 121 | CONFIG_VM_EVENT_COUNTERS=y |
117 | CONFIG_SLUB_DEBUG=y | 122 | CONFIG_SLUB_DEBUG=y |
123 | CONFIG_COMPAT_BRK=y | ||
118 | # CONFIG_SLAB is not set | 124 | # CONFIG_SLAB is not set |
119 | CONFIG_SLUB=y | 125 | CONFIG_SLUB=y |
120 | # CONFIG_SLOB is not set | 126 | # CONFIG_SLOB is not set |
121 | # CONFIG_PROFILING is not set | 127 | # CONFIG_PROFILING is not set |
128 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 129 | CONFIG_HAVE_OPROFILE=y |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 130 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
124 | CONFIG_HAVE_IOREMAP_PROT=y | 131 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -126,6 +133,7 @@ CONFIG_HAVE_KPROBES=y | |||
126 | CONFIG_HAVE_KRETPROBES=y | 133 | CONFIG_HAVE_KRETPROBES=y |
127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 134 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_CLK=y | 135 | CONFIG_HAVE_CLK=y |
136 | # CONFIG_SLOW_WORK is not set | ||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 137 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 138 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 139 | CONFIG_RT_MUTEXES=y |
@@ -133,7 +141,6 @@ CONFIG_BASE_SMALL=0 | |||
133 | # CONFIG_MODULES is not set | 141 | # CONFIG_MODULES is not set |
134 | CONFIG_BLOCK=y | 142 | CONFIG_BLOCK=y |
135 | # CONFIG_LBD is not set | 143 | # CONFIG_LBD is not set |
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | 144 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 145 | # CONFIG_BLK_DEV_INTEGRITY is not set |
139 | 146 | ||
@@ -154,8 +161,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
154 | # | 161 | # |
155 | # Platform support | 162 | # Platform support |
156 | # | 163 | # |
157 | CONFIG_PPC_MULTIPLATFORM=y | ||
158 | CONFIG_CLASSIC32=y | ||
159 | # CONFIG_PPC_CHRP is not set | 164 | # CONFIG_PPC_CHRP is not set |
160 | # CONFIG_MPC5121_ADS is not set | 165 | # CONFIG_MPC5121_ADS is not set |
161 | # CONFIG_MPC5121_GENERIC is not set | 166 | # CONFIG_MPC5121_GENERIC is not set |
@@ -163,6 +168,7 @@ CONFIG_PPC_MPC52xx=y | |||
163 | CONFIG_PPC_MPC5200_SIMPLE=y | 168 | CONFIG_PPC_MPC5200_SIMPLE=y |
164 | # CONFIG_PPC_EFIKA is not set | 169 | # CONFIG_PPC_EFIKA is not set |
165 | # CONFIG_PPC_LITE5200 is not set | 170 | # CONFIG_PPC_LITE5200 is not set |
171 | # CONFIG_PPC_MEDIA5200 is not set | ||
166 | # CONFIG_PPC_MPC5200_BUGFIX is not set | 172 | # CONFIG_PPC_MPC5200_BUGFIX is not set |
167 | # CONFIG_PPC_MPC5200_GPIO is not set | 173 | # CONFIG_PPC_MPC5200_GPIO is not set |
168 | # CONFIG_PPC_PMAC is not set | 174 | # CONFIG_PPC_PMAC is not set |
@@ -173,6 +179,8 @@ CONFIG_PPC_MPC5200_SIMPLE=y | |||
173 | # CONFIG_PPC_83xx is not set | 179 | # CONFIG_PPC_83xx is not set |
174 | # CONFIG_PPC_86xx is not set | 180 | # CONFIG_PPC_86xx is not set |
175 | # CONFIG_EMBEDDED6xx is not set | 181 | # CONFIG_EMBEDDED6xx is not set |
182 | # CONFIG_AMIGAONE is not set | ||
183 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
176 | # CONFIG_IPIC is not set | 184 | # CONFIG_IPIC is not set |
177 | # CONFIG_MPIC is not set | 185 | # CONFIG_MPIC is not set |
178 | # CONFIG_MPIC_WEIRD is not set | 186 | # CONFIG_MPIC_WEIRD is not set |
@@ -233,9 +241,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
233 | CONFIG_BOUNCE=y | 241 | CONFIG_BOUNCE=y |
234 | CONFIG_VIRT_TO_BUS=y | 242 | CONFIG_VIRT_TO_BUS=y |
235 | CONFIG_UNEVICTABLE_LRU=y | 243 | CONFIG_UNEVICTABLE_LRU=y |
244 | CONFIG_HAVE_MLOCK=y | ||
245 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
236 | CONFIG_PPC_4K_PAGES=y | 246 | CONFIG_PPC_4K_PAGES=y |
237 | # CONFIG_PPC_16K_PAGES is not set | 247 | # CONFIG_PPC_16K_PAGES is not set |
238 | # CONFIG_PPC_64K_PAGES is not set | 248 | # CONFIG_PPC_64K_PAGES is not set |
249 | # CONFIG_PPC_256K_PAGES is not set | ||
239 | CONFIG_FORCE_MAX_ZONEORDER=11 | 250 | CONFIG_FORCE_MAX_ZONEORDER=11 |
240 | CONFIG_PROC_DEVICETREE=y | 251 | CONFIG_PROC_DEVICETREE=y |
241 | # CONFIG_CMDLINE_BOOL is not set | 252 | # CONFIG_CMDLINE_BOOL is not set |
@@ -276,7 +287,6 @@ CONFIG_NET=y | |||
276 | # | 287 | # |
277 | # Networking options | 288 | # Networking options |
278 | # | 289 | # |
279 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
280 | CONFIG_PACKET=y | 290 | CONFIG_PACKET=y |
281 | # CONFIG_PACKET_MMAP is not set | 291 | # CONFIG_PACKET_MMAP is not set |
282 | CONFIG_UNIX=y | 292 | CONFIG_UNIX=y |
@@ -332,6 +342,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
332 | # CONFIG_LAPB is not set | 342 | # CONFIG_LAPB is not set |
333 | # CONFIG_ECONET is not set | 343 | # CONFIG_ECONET is not set |
334 | # CONFIG_WAN_ROUTER is not set | 344 | # CONFIG_WAN_ROUTER is not set |
345 | # CONFIG_PHONET is not set | ||
335 | # CONFIG_NET_SCHED is not set | 346 | # CONFIG_NET_SCHED is not set |
336 | # CONFIG_DCB is not set | 347 | # CONFIG_DCB is not set |
337 | 348 | ||
@@ -344,7 +355,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
344 | # CONFIG_IRDA is not set | 355 | # CONFIG_IRDA is not set |
345 | # CONFIG_BT is not set | 356 | # CONFIG_BT is not set |
346 | # CONFIG_AF_RXRPC is not set | 357 | # CONFIG_AF_RXRPC is not set |
347 | # CONFIG_PHONET is not set | ||
348 | # CONFIG_WIRELESS is not set | 358 | # CONFIG_WIRELESS is not set |
349 | # CONFIG_WIMAX is not set | 359 | # CONFIG_WIMAX is not set |
350 | # CONFIG_RFKILL is not set | 360 | # CONFIG_RFKILL is not set |
@@ -441,7 +451,6 @@ CONFIG_MTD_ROM=y | |||
441 | # LPDDR flash memory drivers | 451 | # LPDDR flash memory drivers |
442 | # | 452 | # |
443 | # CONFIG_MTD_LPDDR is not set | 453 | # CONFIG_MTD_LPDDR is not set |
444 | # CONFIG_MTD_QINFO_PROBE is not set | ||
445 | 454 | ||
446 | # | 455 | # |
447 | # UBI - Unsorted block images | 456 | # UBI - Unsorted block images |
@@ -466,6 +475,7 @@ CONFIG_BLK_DEV_RAM_SIZE=32768 | |||
466 | CONFIG_MISC_DEVICES=y | 475 | CONFIG_MISC_DEVICES=y |
467 | # CONFIG_ICS932S401 is not set | 476 | # CONFIG_ICS932S401 is not set |
468 | # CONFIG_ENCLOSURE_SERVICES is not set | 477 | # CONFIG_ENCLOSURE_SERVICES is not set |
478 | # CONFIG_ISL29003 is not set | ||
469 | # CONFIG_C2PORT is not set | 479 | # CONFIG_C2PORT is not set |
470 | 480 | ||
471 | # | 481 | # |
@@ -516,8 +526,10 @@ CONFIG_CHR_DEV_SG=y | |||
516 | CONFIG_SCSI_LOWLEVEL=y | 526 | CONFIG_SCSI_LOWLEVEL=y |
517 | # CONFIG_ISCSI_TCP is not set | 527 | # CONFIG_ISCSI_TCP is not set |
518 | # CONFIG_LIBFC is not set | 528 | # CONFIG_LIBFC is not set |
529 | # CONFIG_LIBFCOE is not set | ||
519 | # CONFIG_SCSI_DEBUG is not set | 530 | # CONFIG_SCSI_DEBUG is not set |
520 | # CONFIG_SCSI_DH is not set | 531 | # CONFIG_SCSI_DH is not set |
532 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
521 | CONFIG_ATA=y | 533 | CONFIG_ATA=y |
522 | # CONFIG_ATA_NONSTANDARD is not set | 534 | # CONFIG_ATA_NONSTANDARD is not set |
523 | CONFIG_SATA_PMP=y | 535 | CONFIG_SATA_PMP=y |
@@ -528,6 +540,7 @@ CONFIG_PATA_MPC52xx=y | |||
528 | # CONFIG_MD is not set | 540 | # CONFIG_MD is not set |
529 | # CONFIG_MACINTOSH_DRIVERS is not set | 541 | # CONFIG_MACINTOSH_DRIVERS is not set |
530 | CONFIG_NETDEVICES=y | 542 | CONFIG_NETDEVICES=y |
543 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
531 | # CONFIG_DUMMY is not set | 544 | # CONFIG_DUMMY is not set |
532 | # CONFIG_BONDING is not set | 545 | # CONFIG_BONDING is not set |
533 | # CONFIG_MACVLAN is not set | 546 | # CONFIG_MACVLAN is not set |
@@ -556,6 +569,8 @@ CONFIG_ICPLUS_PHY=y | |||
556 | CONFIG_MDIO_BITBANG=y | 569 | CONFIG_MDIO_BITBANG=y |
557 | CONFIG_NET_ETHERNET=y | 570 | CONFIG_NET_ETHERNET=y |
558 | CONFIG_MII=y | 571 | CONFIG_MII=y |
572 | # CONFIG_ETHOC is not set | ||
573 | # CONFIG_DNET is not set | ||
559 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 574 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
560 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 575 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
561 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 576 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -574,7 +589,6 @@ CONFIG_FEC_MPC52xx_MDIO=y | |||
574 | # | 589 | # |
575 | # CONFIG_WLAN_PRE80211 is not set | 590 | # CONFIG_WLAN_PRE80211 is not set |
576 | # CONFIG_WLAN_80211 is not set | 591 | # CONFIG_WLAN_80211 is not set |
577 | # CONFIG_IWLWIFI_LEDS is not set | ||
578 | 592 | ||
579 | # | 593 | # |
580 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 594 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -665,7 +679,6 @@ CONFIG_I2C_MPC=y | |||
665 | # CONFIG_SENSORS_PCF8574 is not set | 679 | # CONFIG_SENSORS_PCF8574 is not set |
666 | # CONFIG_PCF8575 is not set | 680 | # CONFIG_PCF8575 is not set |
667 | # CONFIG_SENSORS_PCA9539 is not set | 681 | # CONFIG_SENSORS_PCA9539 is not set |
668 | # CONFIG_SENSORS_PCF8591 is not set | ||
669 | # CONFIG_SENSORS_MAX6875 is not set | 682 | # CONFIG_SENSORS_MAX6875 is not set |
670 | # CONFIG_SENSORS_TSL2550 is not set | 683 | # CONFIG_SENSORS_TSL2550 is not set |
671 | # CONFIG_I2C_DEBUG_CORE is not set | 684 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -696,6 +709,7 @@ CONFIG_HWMON=y | |||
696 | # CONFIG_SENSORS_F71805F is not set | 709 | # CONFIG_SENSORS_F71805F is not set |
697 | # CONFIG_SENSORS_F71882FG is not set | 710 | # CONFIG_SENSORS_F71882FG is not set |
698 | # CONFIG_SENSORS_F75375S is not set | 711 | # CONFIG_SENSORS_F75375S is not set |
712 | # CONFIG_SENSORS_G760A is not set | ||
699 | # CONFIG_SENSORS_GL518SM is not set | 713 | # CONFIG_SENSORS_GL518SM is not set |
700 | # CONFIG_SENSORS_GL520SM is not set | 714 | # CONFIG_SENSORS_GL520SM is not set |
701 | # CONFIG_SENSORS_IT87 is not set | 715 | # CONFIG_SENSORS_IT87 is not set |
@@ -710,11 +724,14 @@ CONFIG_HWMON=y | |||
710 | # CONFIG_SENSORS_LM90 is not set | 724 | # CONFIG_SENSORS_LM90 is not set |
711 | # CONFIG_SENSORS_LM92 is not set | 725 | # CONFIG_SENSORS_LM92 is not set |
712 | # CONFIG_SENSORS_LM93 is not set | 726 | # CONFIG_SENSORS_LM93 is not set |
727 | # CONFIG_SENSORS_LTC4215 is not set | ||
713 | # CONFIG_SENSORS_LTC4245 is not set | 728 | # CONFIG_SENSORS_LTC4245 is not set |
729 | # CONFIG_SENSORS_LM95241 is not set | ||
714 | # CONFIG_SENSORS_MAX1619 is not set | 730 | # CONFIG_SENSORS_MAX1619 is not set |
715 | # CONFIG_SENSORS_MAX6650 is not set | 731 | # CONFIG_SENSORS_MAX6650 is not set |
716 | # CONFIG_SENSORS_PC87360 is not set | 732 | # CONFIG_SENSORS_PC87360 is not set |
717 | # CONFIG_SENSORS_PC87427 is not set | 733 | # CONFIG_SENSORS_PC87427 is not set |
734 | # CONFIG_SENSORS_PCF8591 is not set | ||
718 | # CONFIG_SENSORS_DME1737 is not set | 735 | # CONFIG_SENSORS_DME1737 is not set |
719 | # CONFIG_SENSORS_SMSC47M1 is not set | 736 | # CONFIG_SENSORS_SMSC47M1 is not set |
720 | # CONFIG_SENSORS_SMSC47M192 is not set | 737 | # CONFIG_SENSORS_SMSC47M192 is not set |
@@ -800,7 +817,9 @@ CONFIG_LEDS_CLASS=y | |||
800 | # | 817 | # |
801 | # LED drivers | 818 | # LED drivers |
802 | # | 819 | # |
820 | # CONFIG_LEDS_LP5521 is not set | ||
803 | # CONFIG_LEDS_PCA955X is not set | 821 | # CONFIG_LEDS_PCA955X is not set |
822 | # CONFIG_LEDS_BD2802 is not set | ||
804 | 823 | ||
805 | # | 824 | # |
806 | # LED Triggers | 825 | # LED Triggers |
@@ -810,6 +829,10 @@ CONFIG_LEDS_TRIGGER_TIMER=y | |||
810 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 829 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
811 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | 830 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set |
812 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set | 831 | # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set |
832 | |||
833 | # | ||
834 | # iptables trigger is under Netfilter config (LED target) | ||
835 | # | ||
813 | # CONFIG_ACCESSIBILITY is not set | 836 | # CONFIG_ACCESSIBILITY is not set |
814 | # CONFIG_EDAC is not set | 837 | # CONFIG_EDAC is not set |
815 | CONFIG_RTC_LIB=y | 838 | CONFIG_RTC_LIB=y |
@@ -866,8 +889,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
866 | # | 889 | # |
867 | # on-CPU RTC drivers | 890 | # on-CPU RTC drivers |
868 | # | 891 | # |
869 | # CONFIG_RTC_DRV_PPC is not set | 892 | # CONFIG_RTC_DRV_GENERIC is not set |
870 | # CONFIG_DMADEVICES is not set | 893 | # CONFIG_DMADEVICES is not set |
894 | # CONFIG_AUXDISPLAY is not set | ||
871 | # CONFIG_UIO is not set | 895 | # CONFIG_UIO is not set |
872 | # CONFIG_STAGING is not set | 896 | # CONFIG_STAGING is not set |
873 | 897 | ||
@@ -878,6 +902,7 @@ CONFIG_EXT2_FS=y | |||
878 | # CONFIG_EXT2_FS_XATTR is not set | 902 | # CONFIG_EXT2_FS_XATTR is not set |
879 | # CONFIG_EXT2_FS_XIP is not set | 903 | # CONFIG_EXT2_FS_XIP is not set |
880 | CONFIG_EXT3_FS=y | 904 | CONFIG_EXT3_FS=y |
905 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
881 | CONFIG_EXT3_FS_XATTR=y | 906 | CONFIG_EXT3_FS_XATTR=y |
882 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 907 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
883 | # CONFIG_EXT3_FS_SECURITY is not set | 908 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -900,6 +925,11 @@ CONFIG_INOTIFY_USER=y | |||
900 | # CONFIG_FUSE_FS is not set | 925 | # CONFIG_FUSE_FS is not set |
901 | 926 | ||
902 | # | 927 | # |
928 | # Caches | ||
929 | # | ||
930 | # CONFIG_FSCACHE is not set | ||
931 | |||
932 | # | ||
903 | # CD-ROM/DVD Filesystems | 933 | # CD-ROM/DVD Filesystems |
904 | # | 934 | # |
905 | # CONFIG_ISO9660_FS is not set | 935 | # CONFIG_ISO9660_FS is not set |
@@ -956,6 +986,7 @@ CONFIG_CRAMFS=y | |||
956 | # CONFIG_ROMFS_FS is not set | 986 | # CONFIG_ROMFS_FS is not set |
957 | # CONFIG_SYSV_FS is not set | 987 | # CONFIG_SYSV_FS is not set |
958 | # CONFIG_UFS_FS is not set | 988 | # CONFIG_UFS_FS is not set |
989 | # CONFIG_NILFS2_FS is not set | ||
959 | CONFIG_NETWORK_FILESYSTEMS=y | 990 | CONFIG_NETWORK_FILESYSTEMS=y |
960 | CONFIG_NFS_FS=y | 991 | CONFIG_NFS_FS=y |
961 | CONFIG_NFS_V3=y | 992 | CONFIG_NFS_V3=y |
@@ -968,7 +999,6 @@ CONFIG_LOCKD_V4=y | |||
968 | CONFIG_NFS_COMMON=y | 999 | CONFIG_NFS_COMMON=y |
969 | CONFIG_SUNRPC=y | 1000 | CONFIG_SUNRPC=y |
970 | CONFIG_SUNRPC_GSS=y | 1001 | CONFIG_SUNRPC_GSS=y |
971 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
972 | CONFIG_RPCSEC_GSS_KRB5=y | 1002 | CONFIG_RPCSEC_GSS_KRB5=y |
973 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1003 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
974 | # CONFIG_SMB_FS is not set | 1004 | # CONFIG_SMB_FS is not set |
@@ -1039,6 +1069,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1039 | # CONFIG_NLS_KOI8_U is not set | 1069 | # CONFIG_NLS_KOI8_U is not set |
1040 | # CONFIG_NLS_UTF8 is not set | 1070 | # CONFIG_NLS_UTF8 is not set |
1041 | # CONFIG_DLM is not set | 1071 | # CONFIG_DLM is not set |
1072 | # CONFIG_BINARY_PRINTF is not set | ||
1042 | 1073 | ||
1043 | # | 1074 | # |
1044 | # Library routines | 1075 | # Library routines |
@@ -1054,11 +1085,12 @@ CONFIG_CRC32=y | |||
1054 | # CONFIG_LIBCRC32C is not set | 1085 | # CONFIG_LIBCRC32C is not set |
1055 | CONFIG_ZLIB_INFLATE=y | 1086 | CONFIG_ZLIB_INFLATE=y |
1056 | CONFIG_ZLIB_DEFLATE=y | 1087 | CONFIG_ZLIB_DEFLATE=y |
1057 | CONFIG_PLIST=y | 1088 | CONFIG_DECOMPRESS_GZIP=y |
1058 | CONFIG_HAS_IOMEM=y | 1089 | CONFIG_HAS_IOMEM=y |
1059 | CONFIG_HAS_IOPORT=y | 1090 | CONFIG_HAS_IOPORT=y |
1060 | CONFIG_HAS_DMA=y | 1091 | CONFIG_HAS_DMA=y |
1061 | CONFIG_HAVE_LMB=y | 1092 | CONFIG_HAVE_LMB=y |
1093 | CONFIG_NLATTR=y | ||
1062 | 1094 | ||
1063 | # | 1095 | # |
1064 | # Kernel hacking | 1096 | # Kernel hacking |
@@ -1076,6 +1108,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1076 | CONFIG_DETECT_SOFTLOCKUP=y | 1108 | CONFIG_DETECT_SOFTLOCKUP=y |
1077 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1109 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1078 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1110 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1111 | CONFIG_DETECT_HUNG_TASK=y | ||
1112 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1113 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1079 | CONFIG_SCHED_DEBUG=y | 1114 | CONFIG_SCHED_DEBUG=y |
1080 | # CONFIG_SCHEDSTATS is not set | 1115 | # CONFIG_SCHEDSTATS is not set |
1081 | # CONFIG_TIMER_STATS is not set | 1116 | # CONFIG_TIMER_STATS is not set |
@@ -1104,9 +1139,12 @@ CONFIG_DEBUG_INFO=y | |||
1104 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1139 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1105 | # CONFIG_FAULT_INJECTION is not set | 1140 | # CONFIG_FAULT_INJECTION is not set |
1106 | # CONFIG_LATENCYTOP is not set | 1141 | # CONFIG_LATENCYTOP is not set |
1142 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1107 | CONFIG_HAVE_FUNCTION_TRACER=y | 1143 | CONFIG_HAVE_FUNCTION_TRACER=y |
1144 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1108 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1145 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1109 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1146 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1147 | CONFIG_TRACING_SUPPORT=y | ||
1110 | 1148 | ||
1111 | # | 1149 | # |
1112 | # Tracers | 1150 | # Tracers |
@@ -1114,17 +1152,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1114 | # CONFIG_FUNCTION_TRACER is not set | 1152 | # CONFIG_FUNCTION_TRACER is not set |
1115 | # CONFIG_SCHED_TRACER is not set | 1153 | # CONFIG_SCHED_TRACER is not set |
1116 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1154 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1155 | # CONFIG_EVENT_TRACER is not set | ||
1117 | # CONFIG_BOOT_TRACER is not set | 1156 | # CONFIG_BOOT_TRACER is not set |
1118 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1157 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1119 | # CONFIG_STACK_TRACER is not set | 1158 | # CONFIG_STACK_TRACER is not set |
1120 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1159 | # CONFIG_KMEMTRACE is not set |
1160 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1161 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1121 | # CONFIG_SAMPLES is not set | 1162 | # CONFIG_SAMPLES is not set |
1122 | CONFIG_HAVE_ARCH_KGDB=y | 1163 | CONFIG_HAVE_ARCH_KGDB=y |
1123 | # CONFIG_KGDB is not set | 1164 | # CONFIG_KGDB is not set |
1124 | CONFIG_PRINT_STACK_DEPTH=64 | 1165 | CONFIG_PRINT_STACK_DEPTH=64 |
1125 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1166 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1126 | # CONFIG_DEBUG_STACK_USAGE is not set | 1167 | # CONFIG_DEBUG_STACK_USAGE is not set |
1127 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1128 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1168 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1129 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1169 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1130 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1170 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1155,10 +1195,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1155 | CONFIG_CRYPTO_HASH=y | 1195 | CONFIG_CRYPTO_HASH=y |
1156 | CONFIG_CRYPTO_HASH2=y | 1196 | CONFIG_CRYPTO_HASH2=y |
1157 | CONFIG_CRYPTO_RNG2=y | 1197 | CONFIG_CRYPTO_RNG2=y |
1198 | CONFIG_CRYPTO_PCOMP=y | ||
1158 | CONFIG_CRYPTO_MANAGER=y | 1199 | CONFIG_CRYPTO_MANAGER=y |
1159 | CONFIG_CRYPTO_MANAGER2=y | 1200 | CONFIG_CRYPTO_MANAGER2=y |
1160 | # CONFIG_CRYPTO_GF128MUL is not set | 1201 | # CONFIG_CRYPTO_GF128MUL is not set |
1161 | # CONFIG_CRYPTO_NULL is not set | 1202 | # CONFIG_CRYPTO_NULL is not set |
1203 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1162 | # CONFIG_CRYPTO_CRYPTD is not set | 1204 | # CONFIG_CRYPTO_CRYPTD is not set |
1163 | # CONFIG_CRYPTO_AUTHENC is not set | 1205 | # CONFIG_CRYPTO_AUTHENC is not set |
1164 | 1206 | ||
@@ -1226,6 +1268,7 @@ CONFIG_CRYPTO_DES=y | |||
1226 | # Compression | 1268 | # Compression |
1227 | # | 1269 | # |
1228 | # CONFIG_CRYPTO_DEFLATE is not set | 1270 | # CONFIG_CRYPTO_DEFLATE is not set |
1271 | # CONFIG_CRYPTO_ZLIB is not set | ||
1229 | # CONFIG_CRYPTO_LZO is not set | 1272 | # CONFIG_CRYPTO_LZO is not set |
1230 | 1273 | ||
1231 | # | 1274 | # |
diff --git a/arch/powerpc/configs/52xx/pcm030_defconfig b/arch/powerpc/configs/52xx/pcm030_defconfig index 00944c09a0ae..afb1a3d1ef0a 100644 --- a/arch/powerpc/configs/52xx/pcm030_defconfig +++ b/arch/powerpc/configs/52xx/pcm030_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 21:41:33 2009 | 4 | # Sat Apr 18 00:48:42 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
58 | 60 | ||
59 | # | 61 | # |
@@ -69,6 +71,7 @@ CONFIG_LOCALVERSION="trunk" | |||
69 | CONFIG_SYSVIPC=y | 71 | CONFIG_SYSVIPC=y |
70 | CONFIG_SYSVIPC_SYSCTL=y | 72 | CONFIG_SYSVIPC_SYSCTL=y |
71 | CONFIG_POSIX_MQUEUE=y | 73 | CONFIG_POSIX_MQUEUE=y |
74 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
72 | # CONFIG_BSD_PROCESS_ACCT is not set | 75 | # CONFIG_BSD_PROCESS_ACCT is not set |
73 | # CONFIG_TASKSTATS is not set | 76 | # CONFIG_TASKSTATS is not set |
74 | # CONFIG_AUDIT is not set | 77 | # CONFIG_AUDIT is not set |
@@ -97,18 +100,18 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
97 | # CONFIG_BLK_DEV_INITRD is not set | 100 | # CONFIG_BLK_DEV_INITRD is not set |
98 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 101 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
99 | CONFIG_SYSCTL=y | 102 | CONFIG_SYSCTL=y |
103 | CONFIG_ANON_INODES=y | ||
100 | CONFIG_EMBEDDED=y | 104 | CONFIG_EMBEDDED=y |
101 | # CONFIG_SYSCTL_SYSCALL is not set | 105 | # CONFIG_SYSCTL_SYSCALL is not set |
102 | CONFIG_KALLSYMS=y | 106 | CONFIG_KALLSYMS=y |
103 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 107 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
108 | # CONFIG_STRIP_ASM_SYMS is not set | ||
104 | CONFIG_HOTPLUG=y | 109 | CONFIG_HOTPLUG=y |
105 | CONFIG_PRINTK=y | 110 | CONFIG_PRINTK=y |
106 | CONFIG_BUG=y | 111 | CONFIG_BUG=y |
107 | CONFIG_ELF_CORE=y | 112 | CONFIG_ELF_CORE=y |
108 | CONFIG_COMPAT_BRK=y | ||
109 | CONFIG_BASE_FULL=y | 113 | CONFIG_BASE_FULL=y |
110 | CONFIG_FUTEX=y | 114 | CONFIG_FUTEX=y |
111 | CONFIG_ANON_INODES=y | ||
112 | CONFIG_EPOLL=y | 115 | CONFIG_EPOLL=y |
113 | CONFIG_SIGNALFD=y | 116 | CONFIG_SIGNALFD=y |
114 | CONFIG_TIMERFD=y | 117 | CONFIG_TIMERFD=y |
@@ -117,10 +120,12 @@ CONFIG_SHMEM=y | |||
117 | CONFIG_AIO=y | 120 | CONFIG_AIO=y |
118 | # CONFIG_VM_EVENT_COUNTERS is not set | 121 | # CONFIG_VM_EVENT_COUNTERS is not set |
119 | CONFIG_PCI_QUIRKS=y | 122 | CONFIG_PCI_QUIRKS=y |
123 | CONFIG_COMPAT_BRK=y | ||
120 | CONFIG_SLAB=y | 124 | CONFIG_SLAB=y |
121 | # CONFIG_SLUB is not set | 125 | # CONFIG_SLUB is not set |
122 | # CONFIG_SLOB is not set | 126 | # CONFIG_SLOB is not set |
123 | # CONFIG_PROFILING is not set | 127 | # CONFIG_PROFILING is not set |
128 | # CONFIG_MARKERS is not set | ||
124 | CONFIG_HAVE_OPROFILE=y | 129 | CONFIG_HAVE_OPROFILE=y |
125 | # CONFIG_KPROBES is not set | 130 | # CONFIG_KPROBES is not set |
126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 131 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -129,6 +134,7 @@ CONFIG_HAVE_KPROBES=y | |||
129 | CONFIG_HAVE_KRETPROBES=y | 134 | CONFIG_HAVE_KRETPROBES=y |
130 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 135 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
131 | CONFIG_HAVE_CLK=y | 136 | CONFIG_HAVE_CLK=y |
137 | # CONFIG_SLOW_WORK is not set | ||
132 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 138 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
133 | CONFIG_SLABINFO=y | 139 | CONFIG_SLABINFO=y |
134 | CONFIG_RT_MUTEXES=y | 140 | CONFIG_RT_MUTEXES=y |
@@ -141,7 +147,6 @@ CONFIG_MODULE_UNLOAD=y | |||
141 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 147 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
142 | CONFIG_BLOCK=y | 148 | CONFIG_BLOCK=y |
143 | # CONFIG_LBD is not set | 149 | # CONFIG_LBD is not set |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
145 | # CONFIG_BLK_DEV_BSG is not set | 150 | # CONFIG_BLK_DEV_BSG is not set |
146 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
147 | 152 | ||
@@ -162,8 +167,6 @@ CONFIG_DEFAULT_IOSCHED="noop" | |||
162 | # | 167 | # |
163 | # Platform support | 168 | # Platform support |
164 | # | 169 | # |
165 | CONFIG_PPC_MULTIPLATFORM=y | ||
166 | CONFIG_CLASSIC32=y | ||
167 | # CONFIG_PPC_CHRP is not set | 170 | # CONFIG_PPC_CHRP is not set |
168 | # CONFIG_MPC5121_ADS is not set | 171 | # CONFIG_MPC5121_ADS is not set |
169 | # CONFIG_MPC5121_GENERIC is not set | 172 | # CONFIG_MPC5121_GENERIC is not set |
@@ -171,6 +174,7 @@ CONFIG_PPC_MPC52xx=y | |||
171 | CONFIG_PPC_MPC5200_SIMPLE=y | 174 | CONFIG_PPC_MPC5200_SIMPLE=y |
172 | # CONFIG_PPC_EFIKA is not set | 175 | # CONFIG_PPC_EFIKA is not set |
173 | # CONFIG_PPC_LITE5200 is not set | 176 | # CONFIG_PPC_LITE5200 is not set |
177 | # CONFIG_PPC_MEDIA5200 is not set | ||
174 | # CONFIG_PPC_MPC5200_BUGFIX is not set | 178 | # CONFIG_PPC_MPC5200_BUGFIX is not set |
175 | # CONFIG_PPC_MPC5200_GPIO is not set | 179 | # CONFIG_PPC_MPC5200_GPIO is not set |
176 | # CONFIG_PPC_PMAC is not set | 180 | # CONFIG_PPC_PMAC is not set |
@@ -181,6 +185,8 @@ CONFIG_PPC_MPC5200_SIMPLE=y | |||
181 | # CONFIG_PPC_83xx is not set | 185 | # CONFIG_PPC_83xx is not set |
182 | # CONFIG_PPC_86xx is not set | 186 | # CONFIG_PPC_86xx is not set |
183 | # CONFIG_EMBEDDED6xx is not set | 187 | # CONFIG_EMBEDDED6xx is not set |
188 | # CONFIG_AMIGAONE is not set | ||
189 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
184 | # CONFIG_IPIC is not set | 190 | # CONFIG_IPIC is not set |
185 | # CONFIG_MPIC is not set | 191 | # CONFIG_MPIC is not set |
186 | # CONFIG_MPIC_WEIRD is not set | 192 | # CONFIG_MPIC_WEIRD is not set |
@@ -242,9 +248,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
242 | CONFIG_BOUNCE=y | 248 | CONFIG_BOUNCE=y |
243 | CONFIG_VIRT_TO_BUS=y | 249 | CONFIG_VIRT_TO_BUS=y |
244 | CONFIG_UNEVICTABLE_LRU=y | 250 | CONFIG_UNEVICTABLE_LRU=y |
251 | CONFIG_HAVE_MLOCK=y | ||
252 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
245 | CONFIG_PPC_4K_PAGES=y | 253 | CONFIG_PPC_4K_PAGES=y |
246 | # CONFIG_PPC_16K_PAGES is not set | 254 | # CONFIG_PPC_16K_PAGES is not set |
247 | # CONFIG_PPC_64K_PAGES is not set | 255 | # CONFIG_PPC_64K_PAGES is not set |
256 | # CONFIG_PPC_256K_PAGES is not set | ||
248 | CONFIG_FORCE_MAX_ZONEORDER=11 | 257 | CONFIG_FORCE_MAX_ZONEORDER=11 |
249 | CONFIG_PROC_DEVICETREE=y | 258 | CONFIG_PROC_DEVICETREE=y |
250 | # CONFIG_CMDLINE_BOOL is not set | 259 | # CONFIG_CMDLINE_BOOL is not set |
@@ -268,6 +277,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
268 | # CONFIG_PCI_MSI is not set | 277 | # CONFIG_PCI_MSI is not set |
269 | CONFIG_PCI_LEGACY=y | 278 | CONFIG_PCI_LEGACY=y |
270 | # CONFIG_PCI_STUB is not set | 279 | # CONFIG_PCI_STUB is not set |
280 | # CONFIG_PCI_IOV is not set | ||
271 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
272 | # CONFIG_HOTPLUG_PCI is not set | 282 | # CONFIG_HOTPLUG_PCI is not set |
273 | # CONFIG_HAS_RAPIDIO is not set | 283 | # CONFIG_HAS_RAPIDIO is not set |
@@ -290,7 +300,6 @@ CONFIG_NET=y | |||
290 | # | 300 | # |
291 | # Networking options | 301 | # Networking options |
292 | # | 302 | # |
293 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
294 | CONFIG_PACKET=y | 303 | CONFIG_PACKET=y |
295 | # CONFIG_PACKET_MMAP is not set | 304 | # CONFIG_PACKET_MMAP is not set |
296 | CONFIG_UNIX=y | 305 | CONFIG_UNIX=y |
@@ -340,6 +349,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
340 | # CONFIG_LAPB is not set | 349 | # CONFIG_LAPB is not set |
341 | # CONFIG_ECONET is not set | 350 | # CONFIG_ECONET is not set |
342 | # CONFIG_WAN_ROUTER is not set | 351 | # CONFIG_WAN_ROUTER is not set |
352 | # CONFIG_PHONET is not set | ||
343 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
344 | # CONFIG_DCB is not set | 354 | # CONFIG_DCB is not set |
345 | 355 | ||
@@ -352,7 +362,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
352 | # CONFIG_IRDA is not set | 362 | # CONFIG_IRDA is not set |
353 | # CONFIG_BT is not set | 363 | # CONFIG_BT is not set |
354 | # CONFIG_AF_RXRPC is not set | 364 | # CONFIG_AF_RXRPC is not set |
355 | # CONFIG_PHONET is not set | ||
356 | # CONFIG_WIRELESS is not set | 365 | # CONFIG_WIRELESS is not set |
357 | # CONFIG_WIMAX is not set | 366 | # CONFIG_WIMAX is not set |
358 | # CONFIG_RFKILL is not set | 367 | # CONFIG_RFKILL is not set |
@@ -451,7 +460,6 @@ CONFIG_MTD_PHYSMAP=y | |||
451 | # LPDDR flash memory drivers | 460 | # LPDDR flash memory drivers |
452 | # | 461 | # |
453 | # CONFIG_MTD_LPDDR is not set | 462 | # CONFIG_MTD_LPDDR is not set |
454 | # CONFIG_MTD_QINFO_PROBE is not set | ||
455 | 463 | ||
456 | # | 464 | # |
457 | # UBI - Unsorted block images | 465 | # UBI - Unsorted block images |
@@ -504,6 +512,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
504 | # CONFIG_SCSI_SRP_ATTRS is not set | 512 | # CONFIG_SCSI_SRP_ATTRS is not set |
505 | # CONFIG_SCSI_LOWLEVEL is not set | 513 | # CONFIG_SCSI_LOWLEVEL is not set |
506 | # CONFIG_SCSI_DH is not set | 514 | # CONFIG_SCSI_DH is not set |
515 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
507 | CONFIG_ATA=m | 516 | CONFIG_ATA=m |
508 | # CONFIG_ATA_NONSTANDARD is not set | 517 | # CONFIG_ATA_NONSTANDARD is not set |
509 | CONFIG_SATA_PMP=y | 518 | CONFIG_SATA_PMP=y |
@@ -580,6 +589,7 @@ CONFIG_PATA_MPC52xx=m | |||
580 | # CONFIG_I2O is not set | 589 | # CONFIG_I2O is not set |
581 | # CONFIG_MACINTOSH_DRIVERS is not set | 590 | # CONFIG_MACINTOSH_DRIVERS is not set |
582 | CONFIG_NETDEVICES=y | 591 | CONFIG_NETDEVICES=y |
592 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
583 | # CONFIG_DUMMY is not set | 593 | # CONFIG_DUMMY is not set |
584 | # CONFIG_BONDING is not set | 594 | # CONFIG_BONDING is not set |
585 | # CONFIG_MACVLAN is not set | 595 | # CONFIG_MACVLAN is not set |
@@ -613,6 +623,8 @@ CONFIG_MII=y | |||
613 | # CONFIG_SUNGEM is not set | 623 | # CONFIG_SUNGEM is not set |
614 | # CONFIG_CASSINI is not set | 624 | # CONFIG_CASSINI is not set |
615 | # CONFIG_NET_VENDOR_3COM is not set | 625 | # CONFIG_NET_VENDOR_3COM is not set |
626 | # CONFIG_ETHOC is not set | ||
627 | # CONFIG_DNET is not set | ||
616 | # CONFIG_NET_TULIP is not set | 628 | # CONFIG_NET_TULIP is not set |
617 | # CONFIG_HP100 is not set | 629 | # CONFIG_HP100 is not set |
618 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 630 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -636,7 +648,6 @@ CONFIG_FEC_MPC52xx_MDIO=y | |||
636 | # | 648 | # |
637 | # CONFIG_WLAN_PRE80211 is not set | 649 | # CONFIG_WLAN_PRE80211 is not set |
638 | # CONFIG_WLAN_80211 is not set | 650 | # CONFIG_WLAN_80211 is not set |
639 | # CONFIG_IWLWIFI_LEDS is not set | ||
640 | 651 | ||
641 | # | 652 | # |
642 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 653 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -702,6 +713,7 @@ CONFIG_UNIX98_PTYS=y | |||
702 | # CONFIG_HVC_UDBG is not set | 713 | # CONFIG_HVC_UDBG is not set |
703 | # CONFIG_IPMI_HANDLER is not set | 714 | # CONFIG_IPMI_HANDLER is not set |
704 | CONFIG_HW_RANDOM=y | 715 | CONFIG_HW_RANDOM=y |
716 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
705 | # CONFIG_NVRAM is not set | 717 | # CONFIG_NVRAM is not set |
706 | # CONFIG_R3964 is not set | 718 | # CONFIG_R3964 is not set |
707 | # CONFIG_APPLICOM is not set | 719 | # CONFIG_APPLICOM is not set |
@@ -767,7 +779,6 @@ CONFIG_I2C_MPC=y | |||
767 | # CONFIG_SENSORS_PCF8574 is not set | 779 | # CONFIG_SENSORS_PCF8574 is not set |
768 | # CONFIG_PCF8575 is not set | 780 | # CONFIG_PCF8575 is not set |
769 | # CONFIG_SENSORS_PCA9539 is not set | 781 | # CONFIG_SENSORS_PCA9539 is not set |
770 | # CONFIG_SENSORS_PCF8591 is not set | ||
771 | # CONFIG_SENSORS_MAX6875 is not set | 782 | # CONFIG_SENSORS_MAX6875 is not set |
772 | # CONFIG_SENSORS_TSL2550 is not set | 783 | # CONFIG_SENSORS_TSL2550 is not set |
773 | # CONFIG_I2C_DEBUG_CORE is not set | 784 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -889,11 +900,11 @@ CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | |||
889 | # CONFIG_USB_TMC is not set | 900 | # CONFIG_USB_TMC is not set |
890 | 901 | ||
891 | # | 902 | # |
892 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 903 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
893 | # | 904 | # |
894 | 905 | ||
895 | # | 906 | # |
896 | # see USB_STORAGE Help for more information | 907 | # also be needed; see USB_STORAGE Help for more info |
897 | # | 908 | # |
898 | CONFIG_USB_STORAGE=m | 909 | CONFIG_USB_STORAGE=m |
899 | # CONFIG_USB_STORAGE_DEBUG is not set | 910 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -934,7 +945,6 @@ CONFIG_USB_STORAGE=m | |||
934 | # CONFIG_USB_LED is not set | 945 | # CONFIG_USB_LED is not set |
935 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 946 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
936 | # CONFIG_USB_CYTHERM is not set | 947 | # CONFIG_USB_CYTHERM is not set |
937 | # CONFIG_USB_PHIDGET is not set | ||
938 | # CONFIG_USB_IDMOUSE is not set | 948 | # CONFIG_USB_IDMOUSE is not set |
939 | # CONFIG_USB_FTDI_ELAN is not set | 949 | # CONFIG_USB_FTDI_ELAN is not set |
940 | # CONFIG_USB_APPLEDISPLAY is not set | 950 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -949,6 +959,7 @@ CONFIG_USB_STORAGE=m | |||
949 | # | 959 | # |
950 | # OTG and related infrastructure | 960 | # OTG and related infrastructure |
951 | # | 961 | # |
962 | # CONFIG_NOP_USB_XCEIV is not set | ||
952 | # CONFIG_UWB is not set | 963 | # CONFIG_UWB is not set |
953 | # CONFIG_MMC is not set | 964 | # CONFIG_MMC is not set |
954 | # CONFIG_MEMSTICK is not set | 965 | # CONFIG_MEMSTICK is not set |
@@ -1007,8 +1018,9 @@ CONFIG_RTC_DRV_PCF8563=m | |||
1007 | # | 1018 | # |
1008 | # on-CPU RTC drivers | 1019 | # on-CPU RTC drivers |
1009 | # | 1020 | # |
1010 | # CONFIG_RTC_DRV_PPC is not set | 1021 | # CONFIG_RTC_DRV_GENERIC is not set |
1011 | # CONFIG_DMADEVICES is not set | 1022 | # CONFIG_DMADEVICES is not set |
1023 | # CONFIG_AUXDISPLAY is not set | ||
1012 | # CONFIG_UIO is not set | 1024 | # CONFIG_UIO is not set |
1013 | # CONFIG_STAGING is not set | 1025 | # CONFIG_STAGING is not set |
1014 | 1026 | ||
@@ -1019,6 +1031,7 @@ CONFIG_EXT2_FS=m | |||
1019 | # CONFIG_EXT2_FS_XATTR is not set | 1031 | # CONFIG_EXT2_FS_XATTR is not set |
1020 | # CONFIG_EXT2_FS_XIP is not set | 1032 | # CONFIG_EXT2_FS_XIP is not set |
1021 | CONFIG_EXT3_FS=m | 1033 | CONFIG_EXT3_FS=m |
1034 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1022 | CONFIG_EXT3_FS_XATTR=y | 1035 | CONFIG_EXT3_FS_XATTR=y |
1023 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1036 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1024 | # CONFIG_EXT3_FS_SECURITY is not set | 1037 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1040,6 +1053,11 @@ CONFIG_FILE_LOCKING=y | |||
1040 | # CONFIG_FUSE_FS is not set | 1053 | # CONFIG_FUSE_FS is not set |
1041 | 1054 | ||
1042 | # | 1055 | # |
1056 | # Caches | ||
1057 | # | ||
1058 | # CONFIG_FSCACHE is not set | ||
1059 | |||
1060 | # | ||
1043 | # CD-ROM/DVD Filesystems | 1061 | # CD-ROM/DVD Filesystems |
1044 | # | 1062 | # |
1045 | # CONFIG_ISO9660_FS is not set | 1063 | # CONFIG_ISO9660_FS is not set |
@@ -1096,6 +1114,7 @@ CONFIG_JFFS2_RTIME=y | |||
1096 | # CONFIG_ROMFS_FS is not set | 1114 | # CONFIG_ROMFS_FS is not set |
1097 | # CONFIG_SYSV_FS is not set | 1115 | # CONFIG_SYSV_FS is not set |
1098 | # CONFIG_UFS_FS is not set | 1116 | # CONFIG_UFS_FS is not set |
1117 | # CONFIG_NILFS2_FS is not set | ||
1099 | CONFIG_NETWORK_FILESYSTEMS=y | 1118 | CONFIG_NETWORK_FILESYSTEMS=y |
1100 | CONFIG_NFS_FS=y | 1119 | CONFIG_NFS_FS=y |
1101 | CONFIG_NFS_V3=y | 1120 | CONFIG_NFS_V3=y |
@@ -1107,7 +1126,6 @@ CONFIG_LOCKD=y | |||
1107 | CONFIG_LOCKD_V4=y | 1126 | CONFIG_LOCKD_V4=y |
1108 | CONFIG_NFS_COMMON=y | 1127 | CONFIG_NFS_COMMON=y |
1109 | CONFIG_SUNRPC=y | 1128 | CONFIG_SUNRPC=y |
1110 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1111 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 1129 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
1112 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1130 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1113 | # CONFIG_SMB_FS is not set | 1131 | # CONFIG_SMB_FS is not set |
@@ -1162,6 +1180,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1162 | # CONFIG_NLS_KOI8_U is not set | 1180 | # CONFIG_NLS_KOI8_U is not set |
1163 | # CONFIG_NLS_UTF8 is not set | 1181 | # CONFIG_NLS_UTF8 is not set |
1164 | # CONFIG_DLM is not set | 1182 | # CONFIG_DLM is not set |
1183 | # CONFIG_BINARY_PRINTF is not set | ||
1165 | 1184 | ||
1166 | # | 1185 | # |
1167 | # Library routines | 1186 | # Library routines |
@@ -1177,11 +1196,11 @@ CONFIG_CRC32=y | |||
1177 | # CONFIG_LIBCRC32C is not set | 1196 | # CONFIG_LIBCRC32C is not set |
1178 | CONFIG_ZLIB_INFLATE=y | 1197 | CONFIG_ZLIB_INFLATE=y |
1179 | CONFIG_ZLIB_DEFLATE=y | 1198 | CONFIG_ZLIB_DEFLATE=y |
1180 | CONFIG_PLIST=y | ||
1181 | CONFIG_HAS_IOMEM=y | 1199 | CONFIG_HAS_IOMEM=y |
1182 | CONFIG_HAS_IOPORT=y | 1200 | CONFIG_HAS_IOPORT=y |
1183 | CONFIG_HAS_DMA=y | 1201 | CONFIG_HAS_DMA=y |
1184 | CONFIG_HAVE_LMB=y | 1202 | CONFIG_HAVE_LMB=y |
1203 | CONFIG_NLATTR=y | ||
1185 | 1204 | ||
1186 | # | 1205 | # |
1187 | # Kernel hacking | 1206 | # Kernel hacking |
@@ -1200,13 +1219,25 @@ CONFIG_FRAME_WARN=1024 | |||
1200 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1219 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1201 | # CONFIG_LATENCYTOP is not set | 1220 | # CONFIG_LATENCYTOP is not set |
1202 | CONFIG_HAVE_FUNCTION_TRACER=y | 1221 | CONFIG_HAVE_FUNCTION_TRACER=y |
1222 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1203 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1223 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1204 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1224 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1225 | CONFIG_TRACING_SUPPORT=y | ||
1205 | 1226 | ||
1206 | # | 1227 | # |
1207 | # Tracers | 1228 | # Tracers |
1208 | # | 1229 | # |
1209 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1230 | # CONFIG_FUNCTION_TRACER is not set |
1231 | # CONFIG_PREEMPT_TRACER is not set | ||
1232 | # CONFIG_SCHED_TRACER is not set | ||
1233 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
1234 | # CONFIG_EVENT_TRACER is not set | ||
1235 | # CONFIG_BOOT_TRACER is not set | ||
1236 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1237 | # CONFIG_STACK_TRACER is not set | ||
1238 | # CONFIG_KMEMTRACE is not set | ||
1239 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1240 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1210 | # CONFIG_SAMPLES is not set | 1241 | # CONFIG_SAMPLES is not set |
1211 | CONFIG_HAVE_ARCH_KGDB=y | 1242 | CONFIG_HAVE_ARCH_KGDB=y |
1212 | CONFIG_PRINT_STACK_DEPTH=64 | 1243 | CONFIG_PRINT_STACK_DEPTH=64 |
diff --git a/arch/powerpc/configs/52xx/tqm5200_defconfig b/arch/powerpc/configs/52xx/tqm5200_defconfig index 65237ad6f07e..8585c7c12861 100644 --- a/arch/powerpc/configs/52xx/tqm5200_defconfig +++ b/arch/powerpc/configs/52xx/tqm5200_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 21:42:58 2009 | 4 | # Sat Apr 18 00:48:57 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -54,6 +55,7 @@ CONFIG_GENERIC_BUG=y | |||
54 | CONFIG_DEFAULT_UIMAGE=y | 55 | CONFIG_DEFAULT_UIMAGE=y |
55 | # CONFIG_PPC_DCR_NATIVE is not set | 56 | # CONFIG_PPC_DCR_NATIVE is not set |
56 | # CONFIG_PPC_DCR_MMIO is not set | 57 | # CONFIG_PPC_DCR_MMIO is not set |
58 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
57 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 59 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
58 | 60 | ||
59 | # | 61 | # |
@@ -94,19 +96,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
94 | # CONFIG_NAMESPACES is not set | 96 | # CONFIG_NAMESPACES is not set |
95 | CONFIG_BLK_DEV_INITRD=y | 97 | CONFIG_BLK_DEV_INITRD=y |
96 | CONFIG_INITRAMFS_SOURCE="" | 98 | CONFIG_INITRAMFS_SOURCE="" |
99 | CONFIG_RD_GZIP=y | ||
100 | # CONFIG_RD_BZIP2 is not set | ||
101 | # CONFIG_RD_LZMA is not set | ||
97 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 102 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
98 | CONFIG_SYSCTL=y | 103 | CONFIG_SYSCTL=y |
104 | CONFIG_ANON_INODES=y | ||
99 | CONFIG_EMBEDDED=y | 105 | CONFIG_EMBEDDED=y |
100 | # CONFIG_SYSCTL_SYSCALL is not set | 106 | # CONFIG_SYSCTL_SYSCALL is not set |
101 | # CONFIG_KALLSYMS is not set | 107 | # CONFIG_KALLSYMS is not set |
108 | # CONFIG_STRIP_ASM_SYMS is not set | ||
102 | CONFIG_HOTPLUG=y | 109 | CONFIG_HOTPLUG=y |
103 | CONFIG_PRINTK=y | 110 | CONFIG_PRINTK=y |
104 | CONFIG_BUG=y | 111 | CONFIG_BUG=y |
105 | CONFIG_ELF_CORE=y | 112 | CONFIG_ELF_CORE=y |
106 | CONFIG_COMPAT_BRK=y | ||
107 | CONFIG_BASE_FULL=y | 113 | CONFIG_BASE_FULL=y |
108 | CONFIG_FUTEX=y | 114 | CONFIG_FUTEX=y |
109 | CONFIG_ANON_INODES=y | ||
110 | # CONFIG_EPOLL is not set | 115 | # CONFIG_EPOLL is not set |
111 | CONFIG_SIGNALFD=y | 116 | CONFIG_SIGNALFD=y |
112 | CONFIG_TIMERFD=y | 117 | CONFIG_TIMERFD=y |
@@ -115,10 +120,12 @@ CONFIG_SHMEM=y | |||
115 | CONFIG_AIO=y | 120 | CONFIG_AIO=y |
116 | CONFIG_VM_EVENT_COUNTERS=y | 121 | CONFIG_VM_EVENT_COUNTERS=y |
117 | CONFIG_SLUB_DEBUG=y | 122 | CONFIG_SLUB_DEBUG=y |
123 | CONFIG_COMPAT_BRK=y | ||
118 | # CONFIG_SLAB is not set | 124 | # CONFIG_SLAB is not set |
119 | CONFIG_SLUB=y | 125 | CONFIG_SLUB=y |
120 | # CONFIG_SLOB is not set | 126 | # CONFIG_SLOB is not set |
121 | # CONFIG_PROFILING is not set | 127 | # CONFIG_PROFILING is not set |
128 | # CONFIG_MARKERS is not set | ||
122 | CONFIG_HAVE_OPROFILE=y | 129 | CONFIG_HAVE_OPROFILE=y |
123 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 130 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
124 | CONFIG_HAVE_IOREMAP_PROT=y | 131 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -126,6 +133,7 @@ CONFIG_HAVE_KPROBES=y | |||
126 | CONFIG_HAVE_KRETPROBES=y | 133 | CONFIG_HAVE_KRETPROBES=y |
127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 134 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_CLK=y | 135 | CONFIG_HAVE_CLK=y |
136 | # CONFIG_SLOW_WORK is not set | ||
129 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 137 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
130 | CONFIG_SLABINFO=y | 138 | CONFIG_SLABINFO=y |
131 | CONFIG_RT_MUTEXES=y | 139 | CONFIG_RT_MUTEXES=y |
@@ -138,7 +146,6 @@ CONFIG_MODVERSIONS=y | |||
138 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 146 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
139 | CONFIG_BLOCK=y | 147 | CONFIG_BLOCK=y |
140 | # CONFIG_LBD is not set | 148 | # CONFIG_LBD is not set |
141 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
142 | # CONFIG_BLK_DEV_BSG is not set | 149 | # CONFIG_BLK_DEV_BSG is not set |
143 | # CONFIG_BLK_DEV_INTEGRITY is not set | 150 | # CONFIG_BLK_DEV_INTEGRITY is not set |
144 | 151 | ||
@@ -159,8 +166,6 @@ CONFIG_DEFAULT_IOSCHED="anticipatory" | |||
159 | # | 166 | # |
160 | # Platform support | 167 | # Platform support |
161 | # | 168 | # |
162 | CONFIG_PPC_MULTIPLATFORM=y | ||
163 | CONFIG_CLASSIC32=y | ||
164 | # CONFIG_PPC_CHRP is not set | 169 | # CONFIG_PPC_CHRP is not set |
165 | # CONFIG_MPC5121_ADS is not set | 170 | # CONFIG_MPC5121_ADS is not set |
166 | # CONFIG_MPC5121_GENERIC is not set | 171 | # CONFIG_MPC5121_GENERIC is not set |
@@ -168,6 +173,7 @@ CONFIG_PPC_MPC52xx=y | |||
168 | CONFIG_PPC_MPC5200_SIMPLE=y | 173 | CONFIG_PPC_MPC5200_SIMPLE=y |
169 | # CONFIG_PPC_EFIKA is not set | 174 | # CONFIG_PPC_EFIKA is not set |
170 | # CONFIG_PPC_LITE5200 is not set | 175 | # CONFIG_PPC_LITE5200 is not set |
176 | # CONFIG_PPC_MEDIA5200 is not set | ||
171 | CONFIG_PPC_MPC5200_BUGFIX=y | 177 | CONFIG_PPC_MPC5200_BUGFIX=y |
172 | # CONFIG_PPC_MPC5200_GPIO is not set | 178 | # CONFIG_PPC_MPC5200_GPIO is not set |
173 | # CONFIG_PPC_PMAC is not set | 179 | # CONFIG_PPC_PMAC is not set |
@@ -178,6 +184,8 @@ CONFIG_PPC_MPC5200_BUGFIX=y | |||
178 | # CONFIG_PPC_83xx is not set | 184 | # CONFIG_PPC_83xx is not set |
179 | # CONFIG_PPC_86xx is not set | 185 | # CONFIG_PPC_86xx is not set |
180 | # CONFIG_EMBEDDED6xx is not set | 186 | # CONFIG_EMBEDDED6xx is not set |
187 | # CONFIG_AMIGAONE is not set | ||
188 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
181 | # CONFIG_IPIC is not set | 189 | # CONFIG_IPIC is not set |
182 | # CONFIG_MPIC is not set | 190 | # CONFIG_MPIC is not set |
183 | # CONFIG_MPIC_WEIRD is not set | 191 | # CONFIG_MPIC_WEIRD is not set |
@@ -238,9 +246,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
238 | CONFIG_BOUNCE=y | 246 | CONFIG_BOUNCE=y |
239 | CONFIG_VIRT_TO_BUS=y | 247 | CONFIG_VIRT_TO_BUS=y |
240 | CONFIG_UNEVICTABLE_LRU=y | 248 | CONFIG_UNEVICTABLE_LRU=y |
249 | CONFIG_HAVE_MLOCK=y | ||
250 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
241 | CONFIG_PPC_4K_PAGES=y | 251 | CONFIG_PPC_4K_PAGES=y |
242 | # CONFIG_PPC_16K_PAGES is not set | 252 | # CONFIG_PPC_16K_PAGES is not set |
243 | # CONFIG_PPC_64K_PAGES is not set | 253 | # CONFIG_PPC_64K_PAGES is not set |
254 | # CONFIG_PPC_256K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | 255 | CONFIG_FORCE_MAX_ZONEORDER=11 |
245 | CONFIG_PROC_DEVICETREE=y | 256 | CONFIG_PROC_DEVICETREE=y |
246 | # CONFIG_CMDLINE_BOOL is not set | 257 | # CONFIG_CMDLINE_BOOL is not set |
@@ -281,7 +292,6 @@ CONFIG_NET=y | |||
281 | # | 292 | # |
282 | # Networking options | 293 | # Networking options |
283 | # | 294 | # |
284 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
285 | CONFIG_PACKET=y | 295 | CONFIG_PACKET=y |
286 | # CONFIG_PACKET_MMAP is not set | 296 | # CONFIG_PACKET_MMAP is not set |
287 | CONFIG_UNIX=y | 297 | CONFIG_UNIX=y |
@@ -337,6 +347,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
337 | # CONFIG_LAPB is not set | 347 | # CONFIG_LAPB is not set |
338 | # CONFIG_ECONET is not set | 348 | # CONFIG_ECONET is not set |
339 | # CONFIG_WAN_ROUTER is not set | 349 | # CONFIG_WAN_ROUTER is not set |
350 | # CONFIG_PHONET is not set | ||
340 | # CONFIG_NET_SCHED is not set | 351 | # CONFIG_NET_SCHED is not set |
341 | # CONFIG_DCB is not set | 352 | # CONFIG_DCB is not set |
342 | 353 | ||
@@ -349,7 +360,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
349 | # CONFIG_IRDA is not set | 360 | # CONFIG_IRDA is not set |
350 | # CONFIG_BT is not set | 361 | # CONFIG_BT is not set |
351 | # CONFIG_AF_RXRPC is not set | 362 | # CONFIG_AF_RXRPC is not set |
352 | # CONFIG_PHONET is not set | ||
353 | # CONFIG_WIRELESS is not set | 363 | # CONFIG_WIRELESS is not set |
354 | # CONFIG_WIMAX is not set | 364 | # CONFIG_WIMAX is not set |
355 | # CONFIG_RFKILL is not set | 365 | # CONFIG_RFKILL is not set |
@@ -447,7 +457,6 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
447 | # LPDDR flash memory drivers | 457 | # LPDDR flash memory drivers |
448 | # | 458 | # |
449 | # CONFIG_MTD_LPDDR is not set | 459 | # CONFIG_MTD_LPDDR is not set |
450 | # CONFIG_MTD_QINFO_PROBE is not set | ||
451 | 460 | ||
452 | # | 461 | # |
453 | # UBI - Unsorted block images | 462 | # UBI - Unsorted block images |
@@ -514,8 +523,10 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
514 | CONFIG_SCSI_LOWLEVEL=y | 523 | CONFIG_SCSI_LOWLEVEL=y |
515 | # CONFIG_ISCSI_TCP is not set | 524 | # CONFIG_ISCSI_TCP is not set |
516 | # CONFIG_LIBFC is not set | 525 | # CONFIG_LIBFC is not set |
526 | # CONFIG_LIBFCOE is not set | ||
517 | # CONFIG_SCSI_DEBUG is not set | 527 | # CONFIG_SCSI_DEBUG is not set |
518 | # CONFIG_SCSI_DH is not set | 528 | # CONFIG_SCSI_DH is not set |
529 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
519 | CONFIG_ATA=y | 530 | CONFIG_ATA=y |
520 | # CONFIG_ATA_NONSTANDARD is not set | 531 | # CONFIG_ATA_NONSTANDARD is not set |
521 | CONFIG_SATA_PMP=y | 532 | CONFIG_SATA_PMP=y |
@@ -527,6 +538,7 @@ CONFIG_PATA_PLATFORM=y | |||
527 | # CONFIG_MD is not set | 538 | # CONFIG_MD is not set |
528 | # CONFIG_MACINTOSH_DRIVERS is not set | 539 | # CONFIG_MACINTOSH_DRIVERS is not set |
529 | CONFIG_NETDEVICES=y | 540 | CONFIG_NETDEVICES=y |
541 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
530 | # CONFIG_DUMMY is not set | 542 | # CONFIG_DUMMY is not set |
531 | # CONFIG_BONDING is not set | 543 | # CONFIG_BONDING is not set |
532 | # CONFIG_MACVLAN is not set | 544 | # CONFIG_MACVLAN is not set |
@@ -555,6 +567,8 @@ CONFIG_LXT_PHY=y | |||
555 | # CONFIG_MDIO_BITBANG is not set | 567 | # CONFIG_MDIO_BITBANG is not set |
556 | CONFIG_NET_ETHERNET=y | 568 | CONFIG_NET_ETHERNET=y |
557 | # CONFIG_MII is not set | 569 | # CONFIG_MII is not set |
570 | # CONFIG_ETHOC is not set | ||
571 | # CONFIG_DNET is not set | ||
558 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 572 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
559 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | 573 | # CONFIG_IBM_NEW_EMAC_RGMII is not set |
560 | # CONFIG_IBM_NEW_EMAC_TAH is not set | 574 | # CONFIG_IBM_NEW_EMAC_TAH is not set |
@@ -573,7 +587,6 @@ CONFIG_FEC_MPC52xx_MDIO=y | |||
573 | # | 587 | # |
574 | # CONFIG_WLAN_PRE80211 is not set | 588 | # CONFIG_WLAN_PRE80211 is not set |
575 | # CONFIG_WLAN_80211 is not set | 589 | # CONFIG_WLAN_80211 is not set |
576 | # CONFIG_IWLWIFI_LEDS is not set | ||
577 | 590 | ||
578 | # | 591 | # |
579 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 592 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -675,7 +688,6 @@ CONFIG_I2C_MPC=y | |||
675 | # CONFIG_SENSORS_PCF8574 is not set | 688 | # CONFIG_SENSORS_PCF8574 is not set |
676 | # CONFIG_PCF8575 is not set | 689 | # CONFIG_PCF8575 is not set |
677 | # CONFIG_SENSORS_PCA9539 is not set | 690 | # CONFIG_SENSORS_PCA9539 is not set |
678 | # CONFIG_SENSORS_PCF8591 is not set | ||
679 | # CONFIG_SENSORS_MAX6875 is not set | 691 | # CONFIG_SENSORS_MAX6875 is not set |
680 | # CONFIG_SENSORS_TSL2550 is not set | 692 | # CONFIG_SENSORS_TSL2550 is not set |
681 | # CONFIG_I2C_DEBUG_CORE is not set | 693 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -706,6 +718,7 @@ CONFIG_HWMON=y | |||
706 | # CONFIG_SENSORS_F71805F is not set | 718 | # CONFIG_SENSORS_F71805F is not set |
707 | # CONFIG_SENSORS_F71882FG is not set | 719 | # CONFIG_SENSORS_F71882FG is not set |
708 | # CONFIG_SENSORS_F75375S is not set | 720 | # CONFIG_SENSORS_F75375S is not set |
721 | # CONFIG_SENSORS_G760A is not set | ||
709 | # CONFIG_SENSORS_GL518SM is not set | 722 | # CONFIG_SENSORS_GL518SM is not set |
710 | # CONFIG_SENSORS_GL520SM is not set | 723 | # CONFIG_SENSORS_GL520SM is not set |
711 | # CONFIG_SENSORS_IT87 is not set | 724 | # CONFIG_SENSORS_IT87 is not set |
@@ -720,11 +733,14 @@ CONFIG_HWMON=y | |||
720 | # CONFIG_SENSORS_LM90 is not set | 733 | # CONFIG_SENSORS_LM90 is not set |
721 | # CONFIG_SENSORS_LM92 is not set | 734 | # CONFIG_SENSORS_LM92 is not set |
722 | # CONFIG_SENSORS_LM93 is not set | 735 | # CONFIG_SENSORS_LM93 is not set |
736 | # CONFIG_SENSORS_LTC4215 is not set | ||
723 | # CONFIG_SENSORS_LTC4245 is not set | 737 | # CONFIG_SENSORS_LTC4245 is not set |
738 | # CONFIG_SENSORS_LM95241 is not set | ||
724 | # CONFIG_SENSORS_MAX1619 is not set | 739 | # CONFIG_SENSORS_MAX1619 is not set |
725 | # CONFIG_SENSORS_MAX6650 is not set | 740 | # CONFIG_SENSORS_MAX6650 is not set |
726 | # CONFIG_SENSORS_PC87360 is not set | 741 | # CONFIG_SENSORS_PC87360 is not set |
727 | # CONFIG_SENSORS_PC87427 is not set | 742 | # CONFIG_SENSORS_PC87427 is not set |
743 | # CONFIG_SENSORS_PCF8591 is not set | ||
728 | # CONFIG_SENSORS_DME1737 is not set | 744 | # CONFIG_SENSORS_DME1737 is not set |
729 | # CONFIG_SENSORS_SMSC47M1 is not set | 745 | # CONFIG_SENSORS_SMSC47M1 is not set |
730 | # CONFIG_SENSORS_SMSC47M192 is not set | 746 | # CONFIG_SENSORS_SMSC47M192 is not set |
@@ -857,11 +873,11 @@ CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | |||
857 | # CONFIG_USB_TMC is not set | 873 | # CONFIG_USB_TMC is not set |
858 | 874 | ||
859 | # | 875 | # |
860 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 876 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
861 | # | 877 | # |
862 | 878 | ||
863 | # | 879 | # |
864 | # see USB_STORAGE Help for more information | 880 | # also be needed; see USB_STORAGE Help for more info |
865 | # | 881 | # |
866 | CONFIG_USB_STORAGE=y | 882 | CONFIG_USB_STORAGE=y |
867 | # CONFIG_USB_STORAGE_DEBUG is not set | 883 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -902,7 +918,6 @@ CONFIG_USB_STORAGE=y | |||
902 | # CONFIG_USB_LED is not set | 918 | # CONFIG_USB_LED is not set |
903 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 919 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
904 | # CONFIG_USB_CYTHERM is not set | 920 | # CONFIG_USB_CYTHERM is not set |
905 | # CONFIG_USB_PHIDGET is not set | ||
906 | # CONFIG_USB_IDMOUSE is not set | 921 | # CONFIG_USB_IDMOUSE is not set |
907 | # CONFIG_USB_FTDI_ELAN is not set | 922 | # CONFIG_USB_FTDI_ELAN is not set |
908 | # CONFIG_USB_APPLEDISPLAY is not set | 923 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -917,6 +932,7 @@ CONFIG_USB_STORAGE=y | |||
917 | # | 932 | # |
918 | # OTG and related infrastructure | 933 | # OTG and related infrastructure |
919 | # | 934 | # |
935 | # CONFIG_NOP_USB_XCEIV is not set | ||
920 | # CONFIG_MMC is not set | 936 | # CONFIG_MMC is not set |
921 | # CONFIG_MEMSTICK is not set | 937 | # CONFIG_MEMSTICK is not set |
922 | # CONFIG_NEW_LEDS is not set | 938 | # CONFIG_NEW_LEDS is not set |
@@ -976,8 +992,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
976 | # | 992 | # |
977 | # on-CPU RTC drivers | 993 | # on-CPU RTC drivers |
978 | # | 994 | # |
979 | # CONFIG_RTC_DRV_PPC is not set | 995 | # CONFIG_RTC_DRV_GENERIC is not set |
980 | # CONFIG_DMADEVICES is not set | 996 | # CONFIG_DMADEVICES is not set |
997 | # CONFIG_AUXDISPLAY is not set | ||
981 | # CONFIG_UIO is not set | 998 | # CONFIG_UIO is not set |
982 | # CONFIG_STAGING is not set | 999 | # CONFIG_STAGING is not set |
983 | 1000 | ||
@@ -988,6 +1005,7 @@ CONFIG_EXT2_FS=y | |||
988 | # CONFIG_EXT2_FS_XATTR is not set | 1005 | # CONFIG_EXT2_FS_XATTR is not set |
989 | # CONFIG_EXT2_FS_XIP is not set | 1006 | # CONFIG_EXT2_FS_XIP is not set |
990 | CONFIG_EXT3_FS=y | 1007 | CONFIG_EXT3_FS=y |
1008 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
991 | CONFIG_EXT3_FS_XATTR=y | 1009 | CONFIG_EXT3_FS_XATTR=y |
992 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1010 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
993 | # CONFIG_EXT3_FS_SECURITY is not set | 1011 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1010,6 +1028,11 @@ CONFIG_INOTIFY_USER=y | |||
1010 | # CONFIG_FUSE_FS is not set | 1028 | # CONFIG_FUSE_FS is not set |
1011 | 1029 | ||
1012 | # | 1030 | # |
1031 | # Caches | ||
1032 | # | ||
1033 | # CONFIG_FSCACHE is not set | ||
1034 | |||
1035 | # | ||
1013 | # CD-ROM/DVD Filesystems | 1036 | # CD-ROM/DVD Filesystems |
1014 | # | 1037 | # |
1015 | # CONFIG_ISO9660_FS is not set | 1038 | # CONFIG_ISO9660_FS is not set |
@@ -1066,6 +1089,7 @@ CONFIG_CRAMFS=y | |||
1066 | # CONFIG_ROMFS_FS is not set | 1089 | # CONFIG_ROMFS_FS is not set |
1067 | # CONFIG_SYSV_FS is not set | 1090 | # CONFIG_SYSV_FS is not set |
1068 | # CONFIG_UFS_FS is not set | 1091 | # CONFIG_UFS_FS is not set |
1092 | # CONFIG_NILFS2_FS is not set | ||
1069 | CONFIG_NETWORK_FILESYSTEMS=y | 1093 | CONFIG_NETWORK_FILESYSTEMS=y |
1070 | CONFIG_NFS_FS=y | 1094 | CONFIG_NFS_FS=y |
1071 | CONFIG_NFS_V3=y | 1095 | CONFIG_NFS_V3=y |
@@ -1078,7 +1102,6 @@ CONFIG_LOCKD_V4=y | |||
1078 | CONFIG_NFS_COMMON=y | 1102 | CONFIG_NFS_COMMON=y |
1079 | CONFIG_SUNRPC=y | 1103 | CONFIG_SUNRPC=y |
1080 | CONFIG_SUNRPC_GSS=y | 1104 | CONFIG_SUNRPC_GSS=y |
1081 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1082 | CONFIG_RPCSEC_GSS_KRB5=y | 1105 | CONFIG_RPCSEC_GSS_KRB5=y |
1083 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1106 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1084 | # CONFIG_SMB_FS is not set | 1107 | # CONFIG_SMB_FS is not set |
@@ -1149,6 +1172,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1149 | # CONFIG_NLS_KOI8_U is not set | 1172 | # CONFIG_NLS_KOI8_U is not set |
1150 | # CONFIG_NLS_UTF8 is not set | 1173 | # CONFIG_NLS_UTF8 is not set |
1151 | # CONFIG_DLM is not set | 1174 | # CONFIG_DLM is not set |
1175 | # CONFIG_BINARY_PRINTF is not set | ||
1152 | 1176 | ||
1153 | # | 1177 | # |
1154 | # Library routines | 1178 | # Library routines |
@@ -1164,11 +1188,12 @@ CONFIG_CRC32=y | |||
1164 | # CONFIG_LIBCRC32C is not set | 1188 | # CONFIG_LIBCRC32C is not set |
1165 | CONFIG_ZLIB_INFLATE=y | 1189 | CONFIG_ZLIB_INFLATE=y |
1166 | CONFIG_ZLIB_DEFLATE=y | 1190 | CONFIG_ZLIB_DEFLATE=y |
1167 | CONFIG_PLIST=y | 1191 | CONFIG_DECOMPRESS_GZIP=y |
1168 | CONFIG_HAS_IOMEM=y | 1192 | CONFIG_HAS_IOMEM=y |
1169 | CONFIG_HAS_IOPORT=y | 1193 | CONFIG_HAS_IOPORT=y |
1170 | CONFIG_HAS_DMA=y | 1194 | CONFIG_HAS_DMA=y |
1171 | CONFIG_HAVE_LMB=y | 1195 | CONFIG_HAVE_LMB=y |
1196 | CONFIG_NLATTR=y | ||
1172 | 1197 | ||
1173 | # | 1198 | # |
1174 | # Kernel hacking | 1199 | # Kernel hacking |
@@ -1186,6 +1211,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1186 | CONFIG_DETECT_SOFTLOCKUP=y | 1211 | CONFIG_DETECT_SOFTLOCKUP=y |
1187 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1212 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1188 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1213 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1214 | CONFIG_DETECT_HUNG_TASK=y | ||
1215 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1216 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1189 | CONFIG_SCHED_DEBUG=y | 1217 | CONFIG_SCHED_DEBUG=y |
1190 | # CONFIG_SCHEDSTATS is not set | 1218 | # CONFIG_SCHEDSTATS is not set |
1191 | # CONFIG_TIMER_STATS is not set | 1219 | # CONFIG_TIMER_STATS is not set |
@@ -1214,9 +1242,12 @@ CONFIG_DEBUG_INFO=y | |||
1214 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1242 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1215 | # CONFIG_FAULT_INJECTION is not set | 1243 | # CONFIG_FAULT_INJECTION is not set |
1216 | # CONFIG_LATENCYTOP is not set | 1244 | # CONFIG_LATENCYTOP is not set |
1245 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1217 | CONFIG_HAVE_FUNCTION_TRACER=y | 1246 | CONFIG_HAVE_FUNCTION_TRACER=y |
1247 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1218 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1248 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1219 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1249 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1250 | CONFIG_TRACING_SUPPORT=y | ||
1220 | 1251 | ||
1221 | # | 1252 | # |
1222 | # Tracers | 1253 | # Tracers |
@@ -1224,17 +1255,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1224 | # CONFIG_FUNCTION_TRACER is not set | 1255 | # CONFIG_FUNCTION_TRACER is not set |
1225 | # CONFIG_SCHED_TRACER is not set | 1256 | # CONFIG_SCHED_TRACER is not set |
1226 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1257 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1258 | # CONFIG_EVENT_TRACER is not set | ||
1227 | # CONFIG_BOOT_TRACER is not set | 1259 | # CONFIG_BOOT_TRACER is not set |
1228 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1260 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1229 | # CONFIG_STACK_TRACER is not set | 1261 | # CONFIG_STACK_TRACER is not set |
1230 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1262 | # CONFIG_KMEMTRACE is not set |
1263 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1264 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1231 | # CONFIG_SAMPLES is not set | 1265 | # CONFIG_SAMPLES is not set |
1232 | CONFIG_HAVE_ARCH_KGDB=y | 1266 | CONFIG_HAVE_ARCH_KGDB=y |
1233 | # CONFIG_KGDB is not set | 1267 | # CONFIG_KGDB is not set |
1234 | CONFIG_PRINT_STACK_DEPTH=64 | 1268 | CONFIG_PRINT_STACK_DEPTH=64 |
1235 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1269 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1236 | # CONFIG_DEBUG_STACK_USAGE is not set | 1270 | # CONFIG_DEBUG_STACK_USAGE is not set |
1237 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1238 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1271 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1239 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1272 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1240 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1273 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1265,10 +1298,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1265 | CONFIG_CRYPTO_HASH=y | 1298 | CONFIG_CRYPTO_HASH=y |
1266 | CONFIG_CRYPTO_HASH2=y | 1299 | CONFIG_CRYPTO_HASH2=y |
1267 | CONFIG_CRYPTO_RNG2=y | 1300 | CONFIG_CRYPTO_RNG2=y |
1301 | CONFIG_CRYPTO_PCOMP=y | ||
1268 | CONFIG_CRYPTO_MANAGER=y | 1302 | CONFIG_CRYPTO_MANAGER=y |
1269 | CONFIG_CRYPTO_MANAGER2=y | 1303 | CONFIG_CRYPTO_MANAGER2=y |
1270 | # CONFIG_CRYPTO_GF128MUL is not set | 1304 | # CONFIG_CRYPTO_GF128MUL is not set |
1271 | # CONFIG_CRYPTO_NULL is not set | 1305 | # CONFIG_CRYPTO_NULL is not set |
1306 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1272 | # CONFIG_CRYPTO_CRYPTD is not set | 1307 | # CONFIG_CRYPTO_CRYPTD is not set |
1273 | # CONFIG_CRYPTO_AUTHENC is not set | 1308 | # CONFIG_CRYPTO_AUTHENC is not set |
1274 | # CONFIG_CRYPTO_TEST is not set | 1309 | # CONFIG_CRYPTO_TEST is not set |
@@ -1337,6 +1372,7 @@ CONFIG_CRYPTO_DES=y | |||
1337 | # Compression | 1372 | # Compression |
1338 | # | 1373 | # |
1339 | # CONFIG_CRYPTO_DEFLATE is not set | 1374 | # CONFIG_CRYPTO_DEFLATE is not set |
1375 | # CONFIG_CRYPTO_ZLIB is not set | ||
1340 | # CONFIG_CRYPTO_LZO is not set | 1376 | # CONFIG_CRYPTO_LZO is not set |
1341 | 1377 | ||
1342 | # | 1378 | # |
diff --git a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig b/arch/powerpc/configs/85xx/mpc8536_ds_defconfig deleted file mode 100644 index e31b6a4732ed..000000000000 --- a/arch/powerpc/configs/85xx/mpc8536_ds_defconfig +++ /dev/null | |||
@@ -1,1802 +0,0 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.29-rc2 | ||
4 | # Mon Jan 26 15:36:04 2009 | ||
5 | # | ||
6 | # CONFIG_PPC64 is not set | ||
7 | |||
8 | # | ||
9 | # Processor support | ||
10 | # | ||
11 | # CONFIG_6xx is not set | ||
12 | CONFIG_PPC_85xx=y | ||
13 | # CONFIG_PPC_8xx is not set | ||
14 | # CONFIG_40x is not set | ||
15 | # CONFIG_44x is not set | ||
16 | # CONFIG_E200 is not set | ||
17 | CONFIG_E500=y | ||
18 | # CONFIG_PPC_E500MC is not set | ||
19 | CONFIG_BOOKE=y | ||
20 | CONFIG_FSL_BOOKE=y | ||
21 | CONFIG_FSL_EMB_PERFMON=y | ||
22 | # CONFIG_PHYS_64BIT is not set | ||
23 | CONFIG_SPE=y | ||
24 | CONFIG_PPC_MMU_NOHASH=y | ||
25 | # CONFIG_PPC_MM_SLICES is not set | ||
26 | # CONFIG_SMP is not set | ||
27 | CONFIG_PPC32=y | ||
28 | CONFIG_WORD_SIZE=32 | ||
29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | ||
30 | CONFIG_MMU=y | ||
31 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
32 | CONFIG_GENERIC_TIME=y | ||
33 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
34 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
35 | CONFIG_GENERIC_HARDIRQS=y | ||
36 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
37 | CONFIG_IRQ_PER_CPU=y | ||
38 | CONFIG_STACKTRACE_SUPPORT=y | ||
39 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
40 | CONFIG_LOCKDEP_SUPPORT=y | ||
41 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
42 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
43 | CONFIG_GENERIC_HWEIGHT=y | ||
44 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
45 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
47 | CONFIG_PPC=y | ||
48 | CONFIG_EARLY_PRINTK=y | ||
49 | CONFIG_GENERIC_NVRAM=y | ||
50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
52 | CONFIG_PPC_OF=y | ||
53 | CONFIG_OF=y | ||
54 | CONFIG_PPC_UDBG_16550=y | ||
55 | # CONFIG_GENERIC_TBSYNC is not set | ||
56 | CONFIG_AUDIT_ARCH=y | ||
57 | CONFIG_GENERIC_BUG=y | ||
58 | CONFIG_DEFAULT_UIMAGE=y | ||
59 | # CONFIG_PPC_DCR_NATIVE is not set | ||
60 | # CONFIG_PPC_DCR_MMIO is not set | ||
61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
62 | |||
63 | # | ||
64 | # General setup | ||
65 | # | ||
66 | CONFIG_EXPERIMENTAL=y | ||
67 | CONFIG_BROKEN_ON_SMP=y | ||
68 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
69 | CONFIG_LOCALVERSION="" | ||
70 | CONFIG_LOCALVERSION_AUTO=y | ||
71 | CONFIG_SWAP=y | ||
72 | CONFIG_SYSVIPC=y | ||
73 | CONFIG_SYSVIPC_SYSCTL=y | ||
74 | CONFIG_POSIX_MQUEUE=y | ||
75 | CONFIG_BSD_PROCESS_ACCT=y | ||
76 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
77 | # CONFIG_TASKSTATS is not set | ||
78 | CONFIG_AUDIT=y | ||
79 | # CONFIG_AUDITSYSCALL is not set | ||
80 | CONFIG_IKCONFIG=y | ||
81 | CONFIG_IKCONFIG_PROC=y | ||
82 | CONFIG_LOG_BUF_SHIFT=14 | ||
83 | CONFIG_GROUP_SCHED=y | ||
84 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
85 | # CONFIG_RT_GROUP_SCHED is not set | ||
86 | CONFIG_USER_SCHED=y | ||
87 | # CONFIG_CGROUP_SCHED is not set | ||
88 | # CONFIG_CGROUPS is not set | ||
89 | CONFIG_SYSFS_DEPRECATED=y | ||
90 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
91 | # CONFIG_RELAY is not set | ||
92 | # CONFIG_NAMESPACES is not set | ||
93 | CONFIG_BLK_DEV_INITRD=y | ||
94 | CONFIG_INITRAMFS_SOURCE="" | ||
95 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
96 | CONFIG_SYSCTL=y | ||
97 | CONFIG_EMBEDDED=y | ||
98 | CONFIG_SYSCTL_SYSCALL=y | ||
99 | CONFIG_KALLSYMS=y | ||
100 | CONFIG_KALLSYMS_ALL=y | ||
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
102 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
103 | CONFIG_HOTPLUG=y | ||
104 | CONFIG_PRINTK=y | ||
105 | CONFIG_BUG=y | ||
106 | CONFIG_ELF_CORE=y | ||
107 | CONFIG_COMPAT_BRK=y | ||
108 | CONFIG_BASE_FULL=y | ||
109 | CONFIG_FUTEX=y | ||
110 | CONFIG_ANON_INODES=y | ||
111 | CONFIG_EPOLL=y | ||
112 | CONFIG_SIGNALFD=y | ||
113 | CONFIG_TIMERFD=y | ||
114 | CONFIG_EVENTFD=y | ||
115 | CONFIG_SHMEM=y | ||
116 | CONFIG_AIO=y | ||
117 | CONFIG_VM_EVENT_COUNTERS=y | ||
118 | CONFIG_PCI_QUIRKS=y | ||
119 | CONFIG_SLUB_DEBUG=y | ||
120 | # CONFIG_SLAB is not set | ||
121 | CONFIG_SLUB=y | ||
122 | # CONFIG_SLOB is not set | ||
123 | # CONFIG_PROFILING is not set | ||
124 | CONFIG_HAVE_OPROFILE=y | ||
125 | # CONFIG_KPROBES is not set | ||
126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
127 | CONFIG_HAVE_IOREMAP_PROT=y | ||
128 | CONFIG_HAVE_KPROBES=y | ||
129 | CONFIG_HAVE_KRETPROBES=y | ||
130 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
132 | CONFIG_SLABINFO=y | ||
133 | CONFIG_RT_MUTEXES=y | ||
134 | CONFIG_BASE_SMALL=0 | ||
135 | CONFIG_MODULES=y | ||
136 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
137 | CONFIG_MODULE_UNLOAD=y | ||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
139 | CONFIG_MODVERSIONS=y | ||
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
141 | CONFIG_BLOCK=y | ||
142 | CONFIG_LBD=y | ||
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
144 | # CONFIG_BLK_DEV_BSG is not set | ||
145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
146 | |||
147 | # | ||
148 | # IO Schedulers | ||
149 | # | ||
150 | CONFIG_IOSCHED_NOOP=y | ||
151 | CONFIG_IOSCHED_AS=y | ||
152 | CONFIG_IOSCHED_DEADLINE=y | ||
153 | CONFIG_IOSCHED_CFQ=y | ||
154 | # CONFIG_DEFAULT_AS is not set | ||
155 | # CONFIG_DEFAULT_DEADLINE is not set | ||
156 | CONFIG_DEFAULT_CFQ=y | ||
157 | # CONFIG_DEFAULT_NOOP is not set | ||
158 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
159 | CONFIG_CLASSIC_RCU=y | ||
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
164 | # CONFIG_FREEZER is not set | ||
165 | |||
166 | # | ||
167 | # Platform support | ||
168 | # | ||
169 | # CONFIG_PPC_CELL is not set | ||
170 | # CONFIG_PPC_CELL_NATIVE is not set | ||
171 | # CONFIG_PQ2ADS is not set | ||
172 | CONFIG_MPC85xx=y | ||
173 | # CONFIG_MPC8540_ADS is not set | ||
174 | # CONFIG_MPC8560_ADS is not set | ||
175 | # CONFIG_MPC85xx_CDS is not set | ||
176 | # CONFIG_MPC85xx_MDS is not set | ||
177 | CONFIG_MPC8536_DS=y | ||
178 | # CONFIG_MPC85xx_DS is not set | ||
179 | # CONFIG_KSI8560 is not set | ||
180 | # CONFIG_STX_GP3 is not set | ||
181 | # CONFIG_TQM8540 is not set | ||
182 | # CONFIG_TQM8541 is not set | ||
183 | # CONFIG_TQM8548 is not set | ||
184 | # CONFIG_TQM8555 is not set | ||
185 | # CONFIG_TQM8560 is not set | ||
186 | # CONFIG_SBC8548 is not set | ||
187 | # CONFIG_SBC8560 is not set | ||
188 | # CONFIG_IPIC is not set | ||
189 | CONFIG_MPIC=y | ||
190 | # CONFIG_MPIC_WEIRD is not set | ||
191 | # CONFIG_PPC_I8259 is not set | ||
192 | # CONFIG_PPC_RTAS is not set | ||
193 | # CONFIG_MMIO_NVRAM is not set | ||
194 | # CONFIG_PPC_MPC106 is not set | ||
195 | # CONFIG_PPC_970_NAP is not set | ||
196 | # CONFIG_PPC_INDIRECT_IO is not set | ||
197 | # CONFIG_GENERIC_IOMAP is not set | ||
198 | # CONFIG_CPU_FREQ is not set | ||
199 | # CONFIG_QUICC_ENGINE is not set | ||
200 | # CONFIG_CPM2 is not set | ||
201 | # CONFIG_FSL_ULI1575 is not set | ||
202 | # CONFIG_MPC8xxx_GPIO is not set | ||
203 | # CONFIG_SIMPLE_GPIO is not set | ||
204 | |||
205 | # | ||
206 | # Kernel options | ||
207 | # | ||
208 | CONFIG_HIGHMEM=y | ||
209 | CONFIG_TICK_ONESHOT=y | ||
210 | CONFIG_NO_HZ=y | ||
211 | CONFIG_HIGH_RES_TIMERS=y | ||
212 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
213 | # CONFIG_HZ_100 is not set | ||
214 | CONFIG_HZ_250=y | ||
215 | # CONFIG_HZ_300 is not set | ||
216 | # CONFIG_HZ_1000 is not set | ||
217 | CONFIG_HZ=250 | ||
218 | CONFIG_SCHED_HRTICK=y | ||
219 | CONFIG_PREEMPT_NONE=y | ||
220 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
221 | # CONFIG_PREEMPT is not set | ||
222 | CONFIG_BINFMT_ELF=y | ||
223 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
224 | # CONFIG_HAVE_AOUT is not set | ||
225 | CONFIG_BINFMT_MISC=m | ||
226 | CONFIG_MATH_EMULATION=y | ||
227 | # CONFIG_IOMMU_HELPER is not set | ||
228 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
229 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
230 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
231 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
232 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
233 | CONFIG_SELECT_MEMORY_MODEL=y | ||
234 | CONFIG_FLATMEM_MANUAL=y | ||
235 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
236 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
237 | CONFIG_FLATMEM=y | ||
238 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
239 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
240 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
241 | CONFIG_MIGRATION=y | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
243 | CONFIG_ZONE_DMA_FLAG=1 | ||
244 | CONFIG_BOUNCE=y | ||
245 | CONFIG_VIRT_TO_BUS=y | ||
246 | CONFIG_UNEVICTABLE_LRU=y | ||
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
250 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
251 | CONFIG_PROC_DEVICETREE=y | ||
252 | # CONFIG_CMDLINE_BOOL is not set | ||
253 | CONFIG_EXTRA_TARGETS="" | ||
254 | # CONFIG_PM is not set | ||
255 | CONFIG_SECCOMP=y | ||
256 | CONFIG_ISA_DMA_API=y | ||
257 | |||
258 | # | ||
259 | # Bus options | ||
260 | # | ||
261 | CONFIG_ZONE_DMA=y | ||
262 | CONFIG_PPC_INDIRECT_PCI=y | ||
263 | CONFIG_FSL_SOC=y | ||
264 | CONFIG_FSL_PCI=y | ||
265 | CONFIG_PPC_PCI_CHOICE=y | ||
266 | CONFIG_PCI=y | ||
267 | CONFIG_PCI_DOMAINS=y | ||
268 | CONFIG_PCI_SYSCALL=y | ||
269 | # CONFIG_PCIEPORTBUS is not set | ||
270 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
271 | # CONFIG_PCI_MSI is not set | ||
272 | # CONFIG_PCI_LEGACY is not set | ||
273 | # CONFIG_PCI_DEBUG is not set | ||
274 | # CONFIG_PCI_STUB is not set | ||
275 | # CONFIG_PCCARD is not set | ||
276 | # CONFIG_HOTPLUG_PCI is not set | ||
277 | # CONFIG_HAS_RAPIDIO is not set | ||
278 | |||
279 | # | ||
280 | # Advanced setup | ||
281 | # | ||
282 | # CONFIG_ADVANCED_OPTIONS is not set | ||
283 | |||
284 | # | ||
285 | # Default settings for advanced configuration options are used | ||
286 | # | ||
287 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
288 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
289 | CONFIG_KERNEL_START=0xc0000000 | ||
290 | CONFIG_PHYSICAL_START=0x00000000 | ||
291 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
292 | CONFIG_TASK_SIZE=0xc0000000 | ||
293 | CONFIG_NET=y | ||
294 | |||
295 | # | ||
296 | # Networking options | ||
297 | # | ||
298 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
299 | CONFIG_PACKET=y | ||
300 | # CONFIG_PACKET_MMAP is not set | ||
301 | CONFIG_UNIX=y | ||
302 | CONFIG_XFRM=y | ||
303 | CONFIG_XFRM_USER=y | ||
304 | # CONFIG_XFRM_SUB_POLICY is not set | ||
305 | # CONFIG_XFRM_MIGRATE is not set | ||
306 | # CONFIG_XFRM_STATISTICS is not set | ||
307 | CONFIG_NET_KEY=m | ||
308 | # CONFIG_NET_KEY_MIGRATE is not set | ||
309 | CONFIG_INET=y | ||
310 | CONFIG_IP_MULTICAST=y | ||
311 | CONFIG_IP_ADVANCED_ROUTER=y | ||
312 | CONFIG_ASK_IP_FIB_HASH=y | ||
313 | # CONFIG_IP_FIB_TRIE is not set | ||
314 | CONFIG_IP_FIB_HASH=y | ||
315 | CONFIG_IP_MULTIPLE_TABLES=y | ||
316 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
317 | CONFIG_IP_ROUTE_VERBOSE=y | ||
318 | CONFIG_IP_PNP=y | ||
319 | CONFIG_IP_PNP_DHCP=y | ||
320 | CONFIG_IP_PNP_BOOTP=y | ||
321 | CONFIG_IP_PNP_RARP=y | ||
322 | CONFIG_NET_IPIP=y | ||
323 | CONFIG_NET_IPGRE=y | ||
324 | CONFIG_NET_IPGRE_BROADCAST=y | ||
325 | CONFIG_IP_MROUTE=y | ||
326 | CONFIG_IP_PIMSM_V1=y | ||
327 | CONFIG_IP_PIMSM_V2=y | ||
328 | CONFIG_ARPD=y | ||
329 | # CONFIG_SYN_COOKIES is not set | ||
330 | # CONFIG_INET_AH is not set | ||
331 | # CONFIG_INET_ESP is not set | ||
332 | # CONFIG_INET_IPCOMP is not set | ||
333 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
334 | CONFIG_INET_TUNNEL=y | ||
335 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
336 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
337 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
338 | # CONFIG_INET_LRO is not set | ||
339 | CONFIG_INET_DIAG=y | ||
340 | CONFIG_INET_TCP_DIAG=y | ||
341 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
342 | CONFIG_TCP_CONG_CUBIC=y | ||
343 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
344 | # CONFIG_TCP_MD5SIG is not set | ||
345 | CONFIG_IPV6=y | ||
346 | # CONFIG_IPV6_PRIVACY is not set | ||
347 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
348 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | ||
349 | # CONFIG_INET6_AH is not set | ||
350 | # CONFIG_INET6_ESP is not set | ||
351 | # CONFIG_INET6_IPCOMP is not set | ||
352 | # CONFIG_IPV6_MIP6 is not set | ||
353 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
354 | # CONFIG_INET6_TUNNEL is not set | ||
355 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
356 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
357 | CONFIG_INET6_XFRM_MODE_BEET=y | ||
358 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | ||
359 | CONFIG_IPV6_SIT=y | ||
360 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
361 | # CONFIG_IPV6_TUNNEL is not set | ||
362 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | ||
363 | # CONFIG_IPV6_MROUTE is not set | ||
364 | # CONFIG_NETWORK_SECMARK is not set | ||
365 | # CONFIG_NETFILTER is not set | ||
366 | # CONFIG_IP_DCCP is not set | ||
367 | CONFIG_IP_SCTP=m | ||
368 | # CONFIG_SCTP_DBG_MSG is not set | ||
369 | # CONFIG_SCTP_DBG_OBJCNT is not set | ||
370 | # CONFIG_SCTP_HMAC_NONE is not set | ||
371 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
372 | CONFIG_SCTP_HMAC_MD5=y | ||
373 | # CONFIG_TIPC is not set | ||
374 | # CONFIG_ATM is not set | ||
375 | # CONFIG_BRIDGE is not set | ||
376 | # CONFIG_NET_DSA is not set | ||
377 | # CONFIG_VLAN_8021Q is not set | ||
378 | # CONFIG_DECNET is not set | ||
379 | # CONFIG_LLC2 is not set | ||
380 | # CONFIG_IPX is not set | ||
381 | # CONFIG_ATALK is not set | ||
382 | # CONFIG_X25 is not set | ||
383 | # CONFIG_LAPB is not set | ||
384 | # CONFIG_ECONET is not set | ||
385 | # CONFIG_WAN_ROUTER is not set | ||
386 | # CONFIG_NET_SCHED is not set | ||
387 | # CONFIG_DCB is not set | ||
388 | |||
389 | # | ||
390 | # Network testing | ||
391 | # | ||
392 | # CONFIG_NET_PKTGEN is not set | ||
393 | # CONFIG_HAMRADIO is not set | ||
394 | # CONFIG_CAN is not set | ||
395 | # CONFIG_IRDA is not set | ||
396 | # CONFIG_BT is not set | ||
397 | # CONFIG_AF_RXRPC is not set | ||
398 | # CONFIG_PHONET is not set | ||
399 | CONFIG_FIB_RULES=y | ||
400 | CONFIG_WIRELESS=y | ||
401 | # CONFIG_CFG80211 is not set | ||
402 | CONFIG_WIRELESS_OLD_REGULATORY=y | ||
403 | # CONFIG_WIRELESS_EXT is not set | ||
404 | # CONFIG_LIB80211 is not set | ||
405 | # CONFIG_MAC80211 is not set | ||
406 | # CONFIG_WIMAX is not set | ||
407 | # CONFIG_RFKILL is not set | ||
408 | # CONFIG_NET_9P is not set | ||
409 | |||
410 | # | ||
411 | # Device Drivers | ||
412 | # | ||
413 | |||
414 | # | ||
415 | # Generic Driver Options | ||
416 | # | ||
417 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
418 | CONFIG_STANDALONE=y | ||
419 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
420 | CONFIG_FW_LOADER=y | ||
421 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
422 | CONFIG_EXTRA_FIRMWARE="" | ||
423 | # CONFIG_DEBUG_DRIVER is not set | ||
424 | # CONFIG_DEBUG_DEVRES is not set | ||
425 | # CONFIG_SYS_HYPERVISOR is not set | ||
426 | # CONFIG_CONNECTOR is not set | ||
427 | # CONFIG_MTD is not set | ||
428 | CONFIG_OF_DEVICE=y | ||
429 | CONFIG_OF_I2C=y | ||
430 | # CONFIG_PARPORT is not set | ||
431 | CONFIG_BLK_DEV=y | ||
432 | # CONFIG_BLK_DEV_FD is not set | ||
433 | # CONFIG_BLK_CPQ_DA is not set | ||
434 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
435 | # CONFIG_BLK_DEV_DAC960 is not set | ||
436 | # CONFIG_BLK_DEV_UMEM is not set | ||
437 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
438 | CONFIG_BLK_DEV_LOOP=y | ||
439 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
440 | CONFIG_BLK_DEV_NBD=y | ||
441 | # CONFIG_BLK_DEV_SX8 is not set | ||
442 | # CONFIG_BLK_DEV_UB is not set | ||
443 | CONFIG_BLK_DEV_RAM=y | ||
444 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
445 | CONFIG_BLK_DEV_RAM_SIZE=524288 | ||
446 | # CONFIG_BLK_DEV_XIP is not set | ||
447 | # CONFIG_CDROM_PKTCDVD is not set | ||
448 | # CONFIG_ATA_OVER_ETH is not set | ||
449 | # CONFIG_BLK_DEV_HD is not set | ||
450 | CONFIG_MISC_DEVICES=y | ||
451 | # CONFIG_PHANTOM is not set | ||
452 | # CONFIG_EEPROM_93CX6 is not set | ||
453 | # CONFIG_SGI_IOC4 is not set | ||
454 | # CONFIG_TIFM_CORE is not set | ||
455 | # CONFIG_ICS932S401 is not set | ||
456 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
457 | # CONFIG_HP_ILO is not set | ||
458 | # CONFIG_C2PORT is not set | ||
459 | CONFIG_HAVE_IDE=y | ||
460 | # CONFIG_IDE is not set | ||
461 | |||
462 | # | ||
463 | # SCSI device support | ||
464 | # | ||
465 | # CONFIG_RAID_ATTRS is not set | ||
466 | CONFIG_SCSI=y | ||
467 | CONFIG_SCSI_DMA=y | ||
468 | # CONFIG_SCSI_TGT is not set | ||
469 | # CONFIG_SCSI_NETLINK is not set | ||
470 | CONFIG_SCSI_PROC_FS=y | ||
471 | |||
472 | # | ||
473 | # SCSI support type (disk, tape, CD-ROM) | ||
474 | # | ||
475 | CONFIG_BLK_DEV_SD=y | ||
476 | CONFIG_CHR_DEV_ST=y | ||
477 | # CONFIG_CHR_DEV_OSST is not set | ||
478 | CONFIG_BLK_DEV_SR=y | ||
479 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
480 | CONFIG_CHR_DEV_SG=y | ||
481 | # CONFIG_CHR_DEV_SCH is not set | ||
482 | |||
483 | # | ||
484 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
485 | # | ||
486 | CONFIG_SCSI_MULTI_LUN=y | ||
487 | # CONFIG_SCSI_CONSTANTS is not set | ||
488 | CONFIG_SCSI_LOGGING=y | ||
489 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
490 | CONFIG_SCSI_WAIT_SCAN=m | ||
491 | |||
492 | # | ||
493 | # SCSI Transports | ||
494 | # | ||
495 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
496 | # CONFIG_SCSI_FC_ATTRS is not set | ||
497 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
498 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
499 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
500 | CONFIG_SCSI_LOWLEVEL=y | ||
501 | # CONFIG_ISCSI_TCP is not set | ||
502 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
503 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
504 | # CONFIG_SCSI_3W_9XXX is not set | ||
505 | # CONFIG_SCSI_ACARD is not set | ||
506 | # CONFIG_SCSI_AACRAID is not set | ||
507 | # CONFIG_SCSI_AIC7XXX is not set | ||
508 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
509 | # CONFIG_SCSI_AIC79XX is not set | ||
510 | # CONFIG_SCSI_AIC94XX is not set | ||
511 | # CONFIG_SCSI_DPT_I2O is not set | ||
512 | # CONFIG_SCSI_ADVANSYS is not set | ||
513 | # CONFIG_SCSI_ARCMSR is not set | ||
514 | # CONFIG_MEGARAID_NEWGEN is not set | ||
515 | # CONFIG_MEGARAID_LEGACY is not set | ||
516 | # CONFIG_MEGARAID_SAS is not set | ||
517 | # CONFIG_SCSI_HPTIOP is not set | ||
518 | # CONFIG_SCSI_BUSLOGIC is not set | ||
519 | # CONFIG_LIBFC is not set | ||
520 | # CONFIG_FCOE is not set | ||
521 | # CONFIG_SCSI_DMX3191D is not set | ||
522 | # CONFIG_SCSI_EATA is not set | ||
523 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
524 | # CONFIG_SCSI_GDTH is not set | ||
525 | # CONFIG_SCSI_IPS is not set | ||
526 | # CONFIG_SCSI_INITIO is not set | ||
527 | # CONFIG_SCSI_INIA100 is not set | ||
528 | # CONFIG_SCSI_MVSAS is not set | ||
529 | # CONFIG_SCSI_STEX is not set | ||
530 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
531 | # CONFIG_SCSI_IPR is not set | ||
532 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
533 | # CONFIG_SCSI_QLA_FC is not set | ||
534 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
535 | # CONFIG_SCSI_LPFC is not set | ||
536 | # CONFIG_SCSI_DC395x is not set | ||
537 | # CONFIG_SCSI_DC390T is not set | ||
538 | # CONFIG_SCSI_NSP32 is not set | ||
539 | # CONFIG_SCSI_DEBUG is not set | ||
540 | # CONFIG_SCSI_SRP is not set | ||
541 | # CONFIG_SCSI_DH is not set | ||
542 | CONFIG_ATA=y | ||
543 | # CONFIG_ATA_NONSTANDARD is not set | ||
544 | CONFIG_SATA_PMP=y | ||
545 | # CONFIG_SATA_AHCI is not set | ||
546 | CONFIG_SATA_SIL24=y | ||
547 | CONFIG_SATA_FSL=y | ||
548 | CONFIG_ATA_SFF=y | ||
549 | # CONFIG_SATA_SVW is not set | ||
550 | # CONFIG_ATA_PIIX is not set | ||
551 | # CONFIG_SATA_MV is not set | ||
552 | # CONFIG_SATA_NV is not set | ||
553 | # CONFIG_PDC_ADMA is not set | ||
554 | # CONFIG_SATA_QSTOR is not set | ||
555 | # CONFIG_SATA_PROMISE is not set | ||
556 | # CONFIG_SATA_SX4 is not set | ||
557 | CONFIG_SATA_SIL=y | ||
558 | # CONFIG_SATA_SIS is not set | ||
559 | # CONFIG_SATA_ULI is not set | ||
560 | # CONFIG_SATA_VIA is not set | ||
561 | # CONFIG_SATA_VITESSE is not set | ||
562 | # CONFIG_SATA_INIC162X is not set | ||
563 | # CONFIG_PATA_ALI is not set | ||
564 | # CONFIG_PATA_AMD is not set | ||
565 | # CONFIG_PATA_ARTOP is not set | ||
566 | # CONFIG_PATA_ATIIXP is not set | ||
567 | # CONFIG_PATA_CMD640_PCI is not set | ||
568 | # CONFIG_PATA_CMD64X is not set | ||
569 | # CONFIG_PATA_CS5520 is not set | ||
570 | # CONFIG_PATA_CS5530 is not set | ||
571 | # CONFIG_PATA_CYPRESS is not set | ||
572 | # CONFIG_PATA_EFAR is not set | ||
573 | # CONFIG_ATA_GENERIC is not set | ||
574 | # CONFIG_PATA_HPT366 is not set | ||
575 | # CONFIG_PATA_HPT37X is not set | ||
576 | # CONFIG_PATA_HPT3X2N is not set | ||
577 | # CONFIG_PATA_HPT3X3 is not set | ||
578 | # CONFIG_PATA_IT821X is not set | ||
579 | # CONFIG_PATA_IT8213 is not set | ||
580 | # CONFIG_PATA_JMICRON is not set | ||
581 | # CONFIG_PATA_TRIFLEX is not set | ||
582 | # CONFIG_PATA_MARVELL is not set | ||
583 | # CONFIG_PATA_MPIIX is not set | ||
584 | # CONFIG_PATA_OLDPIIX is not set | ||
585 | # CONFIG_PATA_NETCELL is not set | ||
586 | # CONFIG_PATA_NINJA32 is not set | ||
587 | # CONFIG_PATA_NS87410 is not set | ||
588 | # CONFIG_PATA_NS87415 is not set | ||
589 | # CONFIG_PATA_OPTI is not set | ||
590 | # CONFIG_PATA_OPTIDMA is not set | ||
591 | # CONFIG_PATA_PDC_OLD is not set | ||
592 | # CONFIG_PATA_RADISYS is not set | ||
593 | # CONFIG_PATA_RZ1000 is not set | ||
594 | # CONFIG_PATA_SC1200 is not set | ||
595 | # CONFIG_PATA_SERVERWORKS is not set | ||
596 | # CONFIG_PATA_PDC2027X is not set | ||
597 | # CONFIG_PATA_SIL680 is not set | ||
598 | # CONFIG_PATA_SIS is not set | ||
599 | # CONFIG_PATA_VIA is not set | ||
600 | # CONFIG_PATA_WINBOND is not set | ||
601 | # CONFIG_PATA_PLATFORM is not set | ||
602 | # CONFIG_PATA_SCH is not set | ||
603 | # CONFIG_MD is not set | ||
604 | # CONFIG_FUSION is not set | ||
605 | |||
606 | # | ||
607 | # IEEE 1394 (FireWire) support | ||
608 | # | ||
609 | |||
610 | # | ||
611 | # Enable only one of the two stacks, unless you know what you are doing | ||
612 | # | ||
613 | # CONFIG_FIREWIRE is not set | ||
614 | # CONFIG_IEEE1394 is not set | ||
615 | # CONFIG_I2O is not set | ||
616 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
617 | CONFIG_NETDEVICES=y | ||
618 | CONFIG_DUMMY=y | ||
619 | # CONFIG_BONDING is not set | ||
620 | # CONFIG_MACVLAN is not set | ||
621 | # CONFIG_EQUALIZER is not set | ||
622 | # CONFIG_TUN is not set | ||
623 | # CONFIG_VETH is not set | ||
624 | # CONFIG_ARCNET is not set | ||
625 | CONFIG_PHYLIB=y | ||
626 | |||
627 | # | ||
628 | # MII PHY device drivers | ||
629 | # | ||
630 | # CONFIG_MARVELL_PHY is not set | ||
631 | # CONFIG_DAVICOM_PHY is not set | ||
632 | # CONFIG_QSEMI_PHY is not set | ||
633 | # CONFIG_LXT_PHY is not set | ||
634 | # CONFIG_CICADA_PHY is not set | ||
635 | CONFIG_VITESSE_PHY=y | ||
636 | # CONFIG_SMSC_PHY is not set | ||
637 | # CONFIG_BROADCOM_PHY is not set | ||
638 | # CONFIG_ICPLUS_PHY is not set | ||
639 | # CONFIG_REALTEK_PHY is not set | ||
640 | # CONFIG_NATIONAL_PHY is not set | ||
641 | # CONFIG_STE10XP is not set | ||
642 | # CONFIG_LSI_ET1011C_PHY is not set | ||
643 | # CONFIG_FIXED_PHY is not set | ||
644 | # CONFIG_MDIO_BITBANG is not set | ||
645 | CONFIG_NET_ETHERNET=y | ||
646 | CONFIG_MII=y | ||
647 | # CONFIG_HAPPYMEAL is not set | ||
648 | # CONFIG_SUNGEM is not set | ||
649 | # CONFIG_CASSINI is not set | ||
650 | # CONFIG_NET_VENDOR_3COM is not set | ||
651 | # CONFIG_NET_TULIP is not set | ||
652 | # CONFIG_HP100 is not set | ||
653 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
654 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
655 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
656 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
657 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
658 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
659 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
660 | # CONFIG_NET_PCI is not set | ||
661 | # CONFIG_B44 is not set | ||
662 | # CONFIG_ATL2 is not set | ||
663 | CONFIG_NETDEV_1000=y | ||
664 | # CONFIG_ACENIC is not set | ||
665 | # CONFIG_DL2K is not set | ||
666 | # CONFIG_E1000 is not set | ||
667 | # CONFIG_E1000E is not set | ||
668 | # CONFIG_IP1000 is not set | ||
669 | # CONFIG_IGB is not set | ||
670 | # CONFIG_NS83820 is not set | ||
671 | # CONFIG_HAMACHI is not set | ||
672 | # CONFIG_YELLOWFIN is not set | ||
673 | # CONFIG_R8169 is not set | ||
674 | # CONFIG_SIS190 is not set | ||
675 | CONFIG_SKGE=y | ||
676 | # CONFIG_SKGE_DEBUG is not set | ||
677 | CONFIG_SKY2=y | ||
678 | # CONFIG_SKY2_DEBUG is not set | ||
679 | # CONFIG_VIA_VELOCITY is not set | ||
680 | # CONFIG_TIGON3 is not set | ||
681 | # CONFIG_BNX2 is not set | ||
682 | CONFIG_GIANFAR=y | ||
683 | # CONFIG_QLA3XXX is not set | ||
684 | # CONFIG_ATL1 is not set | ||
685 | # CONFIG_ATL1E is not set | ||
686 | # CONFIG_JME is not set | ||
687 | CONFIG_NETDEV_10000=y | ||
688 | # CONFIG_CHELSIO_T1 is not set | ||
689 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
690 | # CONFIG_CHELSIO_T3 is not set | ||
691 | # CONFIG_ENIC is not set | ||
692 | # CONFIG_IXGBE is not set | ||
693 | # CONFIG_IXGB is not set | ||
694 | # CONFIG_S2IO is not set | ||
695 | # CONFIG_MYRI10GE is not set | ||
696 | # CONFIG_NETXEN_NIC is not set | ||
697 | # CONFIG_NIU is not set | ||
698 | # CONFIG_MLX4_EN is not set | ||
699 | # CONFIG_MLX4_CORE is not set | ||
700 | # CONFIG_TEHUTI is not set | ||
701 | # CONFIG_BNX2X is not set | ||
702 | # CONFIG_QLGE is not set | ||
703 | # CONFIG_SFC is not set | ||
704 | # CONFIG_TR is not set | ||
705 | |||
706 | # | ||
707 | # Wireless LAN | ||
708 | # | ||
709 | # CONFIG_WLAN_PRE80211 is not set | ||
710 | # CONFIG_WLAN_80211 is not set | ||
711 | # CONFIG_IWLWIFI_LEDS is not set | ||
712 | |||
713 | # | ||
714 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
715 | # | ||
716 | |||
717 | # | ||
718 | # USB Network Adapters | ||
719 | # | ||
720 | # CONFIG_USB_CATC is not set | ||
721 | # CONFIG_USB_KAWETH is not set | ||
722 | # CONFIG_USB_PEGASUS is not set | ||
723 | # CONFIG_USB_RTL8150 is not set | ||
724 | # CONFIG_USB_USBNET is not set | ||
725 | # CONFIG_WAN is not set | ||
726 | # CONFIG_FDDI is not set | ||
727 | # CONFIG_HIPPI is not set | ||
728 | # CONFIG_PPP is not set | ||
729 | # CONFIG_SLIP is not set | ||
730 | # CONFIG_NET_FC is not set | ||
731 | # CONFIG_NETCONSOLE is not set | ||
732 | # CONFIG_NETPOLL is not set | ||
733 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
734 | # CONFIG_ISDN is not set | ||
735 | # CONFIG_PHONE is not set | ||
736 | |||
737 | # | ||
738 | # Input device support | ||
739 | # | ||
740 | CONFIG_INPUT=y | ||
741 | CONFIG_INPUT_FF_MEMLESS=m | ||
742 | # CONFIG_INPUT_POLLDEV is not set | ||
743 | |||
744 | # | ||
745 | # Userland interfaces | ||
746 | # | ||
747 | # CONFIG_INPUT_MOUSEDEV is not set | ||
748 | # CONFIG_INPUT_JOYDEV is not set | ||
749 | # CONFIG_INPUT_EVDEV is not set | ||
750 | # CONFIG_INPUT_EVBUG is not set | ||
751 | |||
752 | # | ||
753 | # Input Device Drivers | ||
754 | # | ||
755 | # CONFIG_INPUT_KEYBOARD is not set | ||
756 | # CONFIG_INPUT_MOUSE is not set | ||
757 | # CONFIG_INPUT_JOYSTICK is not set | ||
758 | # CONFIG_INPUT_TABLET is not set | ||
759 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
760 | # CONFIG_INPUT_MISC is not set | ||
761 | |||
762 | # | ||
763 | # Hardware I/O ports | ||
764 | # | ||
765 | CONFIG_SERIO=y | ||
766 | CONFIG_SERIO_I8042=y | ||
767 | CONFIG_SERIO_SERPORT=y | ||
768 | # CONFIG_SERIO_PCIPS2 is not set | ||
769 | CONFIG_SERIO_LIBPS2=y | ||
770 | # CONFIG_SERIO_RAW is not set | ||
771 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
772 | # CONFIG_GAMEPORT is not set | ||
773 | |||
774 | # | ||
775 | # Character devices | ||
776 | # | ||
777 | CONFIG_VT=y | ||
778 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
779 | CONFIG_VT_CONSOLE=y | ||
780 | CONFIG_HW_CONSOLE=y | ||
781 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
782 | CONFIG_DEVKMEM=y | ||
783 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
784 | # CONFIG_NOZOMI is not set | ||
785 | |||
786 | # | ||
787 | # Serial drivers | ||
788 | # | ||
789 | CONFIG_SERIAL_8250=y | ||
790 | CONFIG_SERIAL_8250_CONSOLE=y | ||
791 | CONFIG_SERIAL_8250_PCI=y | ||
792 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
793 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
794 | CONFIG_SERIAL_8250_EXTENDED=y | ||
795 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
796 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
797 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
798 | CONFIG_SERIAL_8250_RSA=y | ||
799 | |||
800 | # | ||
801 | # Non-8250 serial port support | ||
802 | # | ||
803 | # CONFIG_SERIAL_UARTLITE is not set | ||
804 | CONFIG_SERIAL_CORE=y | ||
805 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
806 | # CONFIG_SERIAL_JSM is not set | ||
807 | # CONFIG_SERIAL_OF_PLATFORM is not set | ||
808 | CONFIG_UNIX98_PTYS=y | ||
809 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
810 | CONFIG_LEGACY_PTYS=y | ||
811 | CONFIG_LEGACY_PTY_COUNT=256 | ||
812 | # CONFIG_HVC_UDBG is not set | ||
813 | # CONFIG_IPMI_HANDLER is not set | ||
814 | CONFIG_HW_RANDOM=y | ||
815 | # CONFIG_NVRAM is not set | ||
816 | # CONFIG_R3964 is not set | ||
817 | # CONFIG_APPLICOM is not set | ||
818 | # CONFIG_RAW_DRIVER is not set | ||
819 | # CONFIG_TCG_TPM is not set | ||
820 | CONFIG_DEVPORT=y | ||
821 | CONFIG_I2C=y | ||
822 | CONFIG_I2C_BOARDINFO=y | ||
823 | # CONFIG_I2C_CHARDEV is not set | ||
824 | CONFIG_I2C_HELPER_AUTO=y | ||
825 | |||
826 | # | ||
827 | # I2C Hardware Bus support | ||
828 | # | ||
829 | |||
830 | # | ||
831 | # PC SMBus host controller drivers | ||
832 | # | ||
833 | # CONFIG_I2C_ALI1535 is not set | ||
834 | # CONFIG_I2C_ALI1563 is not set | ||
835 | # CONFIG_I2C_ALI15X3 is not set | ||
836 | # CONFIG_I2C_AMD756 is not set | ||
837 | # CONFIG_I2C_AMD8111 is not set | ||
838 | # CONFIG_I2C_I801 is not set | ||
839 | # CONFIG_I2C_ISCH is not set | ||
840 | # CONFIG_I2C_PIIX4 is not set | ||
841 | # CONFIG_I2C_NFORCE2 is not set | ||
842 | # CONFIG_I2C_SIS5595 is not set | ||
843 | # CONFIG_I2C_SIS630 is not set | ||
844 | # CONFIG_I2C_SIS96X is not set | ||
845 | # CONFIG_I2C_VIA is not set | ||
846 | # CONFIG_I2C_VIAPRO is not set | ||
847 | |||
848 | # | ||
849 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
850 | # | ||
851 | CONFIG_I2C_MPC=y | ||
852 | # CONFIG_I2C_OCORES is not set | ||
853 | # CONFIG_I2C_SIMTEC is not set | ||
854 | |||
855 | # | ||
856 | # External I2C/SMBus adapter drivers | ||
857 | # | ||
858 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
859 | # CONFIG_I2C_TAOS_EVM is not set | ||
860 | # CONFIG_I2C_TINY_USB is not set | ||
861 | |||
862 | # | ||
863 | # Graphics adapter I2C/DDC channel drivers | ||
864 | # | ||
865 | # CONFIG_I2C_VOODOO3 is not set | ||
866 | |||
867 | # | ||
868 | # Other I2C/SMBus bus drivers | ||
869 | # | ||
870 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
871 | # CONFIG_I2C_STUB is not set | ||
872 | |||
873 | # | ||
874 | # Miscellaneous I2C Chip support | ||
875 | # | ||
876 | # CONFIG_DS1682 is not set | ||
877 | # CONFIG_EEPROM_AT24 is not set | ||
878 | CONFIG_EEPROM_LEGACY=y | ||
879 | # CONFIG_SENSORS_PCF8574 is not set | ||
880 | # CONFIG_PCF8575 is not set | ||
881 | # CONFIG_SENSORS_PCA9539 is not set | ||
882 | # CONFIG_SENSORS_PCF8591 is not set | ||
883 | # CONFIG_SENSORS_MAX6875 is not set | ||
884 | # CONFIG_SENSORS_TSL2550 is not set | ||
885 | # CONFIG_I2C_DEBUG_CORE is not set | ||
886 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
887 | # CONFIG_I2C_DEBUG_BUS is not set | ||
888 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
889 | # CONFIG_SPI is not set | ||
890 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
891 | # CONFIG_GPIOLIB is not set | ||
892 | # CONFIG_W1 is not set | ||
893 | # CONFIG_POWER_SUPPLY is not set | ||
894 | # CONFIG_HWMON is not set | ||
895 | CONFIG_THERMAL=y | ||
896 | # CONFIG_WATCHDOG is not set | ||
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | |||
899 | # | ||
900 | # Sonics Silicon Backplane | ||
901 | # | ||
902 | # CONFIG_SSB is not set | ||
903 | |||
904 | # | ||
905 | # Multifunction device drivers | ||
906 | # | ||
907 | # CONFIG_MFD_CORE is not set | ||
908 | # CONFIG_MFD_SM501 is not set | ||
909 | # CONFIG_HTC_PASIC3 is not set | ||
910 | # CONFIG_TWL4030_CORE is not set | ||
911 | # CONFIG_MFD_TMIO is not set | ||
912 | # CONFIG_PMIC_DA903X is not set | ||
913 | # CONFIG_MFD_WM8400 is not set | ||
914 | # CONFIG_MFD_WM8350_I2C is not set | ||
915 | # CONFIG_MFD_PCF50633 is not set | ||
916 | # CONFIG_REGULATOR is not set | ||
917 | |||
918 | # | ||
919 | # Multimedia devices | ||
920 | # | ||
921 | |||
922 | # | ||
923 | # Multimedia core support | ||
924 | # | ||
925 | # CONFIG_VIDEO_DEV is not set | ||
926 | CONFIG_DVB_CORE=m | ||
927 | CONFIG_VIDEO_MEDIA=m | ||
928 | |||
929 | # | ||
930 | # Multimedia drivers | ||
931 | # | ||
932 | # CONFIG_MEDIA_ATTACH is not set | ||
933 | CONFIG_MEDIA_TUNER=m | ||
934 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
935 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
936 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
937 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
938 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
939 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
940 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
941 | CONFIG_MEDIA_TUNER_XC2028=m | ||
942 | CONFIG_MEDIA_TUNER_XC5000=m | ||
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
944 | CONFIG_DVB_CAPTURE_DRIVERS=y | ||
945 | |||
946 | # | ||
947 | # Supported SAA7146 based PCI Adapters | ||
948 | # | ||
949 | # CONFIG_TTPCI_EEPROM is not set | ||
950 | # CONFIG_DVB_BUDGET_CORE is not set | ||
951 | |||
952 | # | ||
953 | # Supported USB Adapters | ||
954 | # | ||
955 | # CONFIG_DVB_USB is not set | ||
956 | # CONFIG_DVB_TTUSB_BUDGET is not set | ||
957 | # CONFIG_DVB_TTUSB_DEC is not set | ||
958 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
959 | |||
960 | # | ||
961 | # Supported FlexCopII (B2C2) Adapters | ||
962 | # | ||
963 | # CONFIG_DVB_B2C2_FLEXCOP is not set | ||
964 | |||
965 | # | ||
966 | # Supported BT878 Adapters | ||
967 | # | ||
968 | |||
969 | # | ||
970 | # Supported Pluto2 Adapters | ||
971 | # | ||
972 | # CONFIG_DVB_PLUTO2 is not set | ||
973 | |||
974 | # | ||
975 | # Supported SDMC DM1105 Adapters | ||
976 | # | ||
977 | # CONFIG_DVB_DM1105 is not set | ||
978 | |||
979 | # | ||
980 | # Supported DVB Frontends | ||
981 | # | ||
982 | |||
983 | # | ||
984 | # Customise DVB Frontends | ||
985 | # | ||
986 | # CONFIG_DVB_FE_CUSTOMISE is not set | ||
987 | |||
988 | # | ||
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
995 | # DVB-S (satellite) frontends | ||
996 | # | ||
997 | # CONFIG_DVB_CX24110 is not set | ||
998 | # CONFIG_DVB_CX24123 is not set | ||
999 | # CONFIG_DVB_MT312 is not set | ||
1000 | # CONFIG_DVB_S5H1420 is not set | ||
1001 | # CONFIG_DVB_STV0288 is not set | ||
1002 | # CONFIG_DVB_STB6000 is not set | ||
1003 | # CONFIG_DVB_STV0299 is not set | ||
1004 | # CONFIG_DVB_TDA8083 is not set | ||
1005 | # CONFIG_DVB_TDA10086 is not set | ||
1006 | # CONFIG_DVB_TDA8261 is not set | ||
1007 | # CONFIG_DVB_VES1X93 is not set | ||
1008 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1010 | # CONFIG_DVB_TDA826X is not set | ||
1011 | # CONFIG_DVB_TUA6100 is not set | ||
1012 | # CONFIG_DVB_CX24116 is not set | ||
1013 | # CONFIG_DVB_SI21XX is not set | ||
1014 | |||
1015 | # | ||
1016 | # DVB-T (terrestrial) frontends | ||
1017 | # | ||
1018 | # CONFIG_DVB_SP8870 is not set | ||
1019 | # CONFIG_DVB_SP887X is not set | ||
1020 | # CONFIG_DVB_CX22700 is not set | ||
1021 | # CONFIG_DVB_CX22702 is not set | ||
1022 | # CONFIG_DVB_DRX397XD is not set | ||
1023 | # CONFIG_DVB_L64781 is not set | ||
1024 | # CONFIG_DVB_TDA1004X is not set | ||
1025 | # CONFIG_DVB_NXT6000 is not set | ||
1026 | # CONFIG_DVB_MT352 is not set | ||
1027 | # CONFIG_DVB_ZL10353 is not set | ||
1028 | # CONFIG_DVB_DIB3000MB is not set | ||
1029 | # CONFIG_DVB_DIB3000MC is not set | ||
1030 | # CONFIG_DVB_DIB7000M is not set | ||
1031 | # CONFIG_DVB_DIB7000P is not set | ||
1032 | # CONFIG_DVB_TDA10048 is not set | ||
1033 | |||
1034 | # | ||
1035 | # DVB-C (cable) frontends | ||
1036 | # | ||
1037 | # CONFIG_DVB_VES1820 is not set | ||
1038 | # CONFIG_DVB_TDA10021 is not set | ||
1039 | # CONFIG_DVB_TDA10023 is not set | ||
1040 | # CONFIG_DVB_STV0297 is not set | ||
1041 | |||
1042 | # | ||
1043 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
1044 | # | ||
1045 | # CONFIG_DVB_NXT200X is not set | ||
1046 | # CONFIG_DVB_OR51211 is not set | ||
1047 | # CONFIG_DVB_OR51132 is not set | ||
1048 | # CONFIG_DVB_BCM3510 is not set | ||
1049 | # CONFIG_DVB_LGDT330X is not set | ||
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1051 | # CONFIG_DVB_S5H1409 is not set | ||
1052 | # CONFIG_DVB_AU8522 is not set | ||
1053 | # CONFIG_DVB_S5H1411 is not set | ||
1054 | |||
1055 | # | ||
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1061 | # Digital terrestrial only tuners/PLL | ||
1062 | # | ||
1063 | # CONFIG_DVB_PLL is not set | ||
1064 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
1065 | |||
1066 | # | ||
1067 | # SEC control devices for DVB-S | ||
1068 | # | ||
1069 | # CONFIG_DVB_LNBP21 is not set | ||
1070 | # CONFIG_DVB_ISL6405 is not set | ||
1071 | # CONFIG_DVB_ISL6421 is not set | ||
1072 | # CONFIG_DVB_LGS8GL5 is not set | ||
1073 | |||
1074 | # | ||
1075 | # Tools to develop new frontends | ||
1076 | # | ||
1077 | # CONFIG_DVB_DUMMY_FE is not set | ||
1078 | # CONFIG_DVB_AF9013 is not set | ||
1079 | CONFIG_DAB=y | ||
1080 | # CONFIG_USB_DABUSB is not set | ||
1081 | |||
1082 | # | ||
1083 | # Graphics support | ||
1084 | # | ||
1085 | # CONFIG_AGP is not set | ||
1086 | # CONFIG_DRM is not set | ||
1087 | # CONFIG_VGASTATE is not set | ||
1088 | CONFIG_VIDEO_OUTPUT_CONTROL=y | ||
1089 | # CONFIG_FB is not set | ||
1090 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1091 | |||
1092 | # | ||
1093 | # Display device support | ||
1094 | # | ||
1095 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1096 | |||
1097 | # | ||
1098 | # Console display driver support | ||
1099 | # | ||
1100 | CONFIG_VGA_CONSOLE=y | ||
1101 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | ||
1102 | CONFIG_DUMMY_CONSOLE=y | ||
1103 | CONFIG_SOUND=y | ||
1104 | # CONFIG_SOUND_OSS_CORE is not set | ||
1105 | CONFIG_SND=y | ||
1106 | CONFIG_SND_TIMER=y | ||
1107 | CONFIG_SND_PCM=y | ||
1108 | # CONFIG_SND_SEQUENCER is not set | ||
1109 | # CONFIG_SND_MIXER_OSS is not set | ||
1110 | # CONFIG_SND_PCM_OSS is not set | ||
1111 | # CONFIG_SND_HRTIMER is not set | ||
1112 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
1113 | CONFIG_SND_SUPPORT_OLD_API=y | ||
1114 | CONFIG_SND_VERBOSE_PROCFS=y | ||
1115 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
1116 | # CONFIG_SND_DEBUG is not set | ||
1117 | CONFIG_SND_VMASTER=y | ||
1118 | CONFIG_SND_AC97_CODEC=y | ||
1119 | CONFIG_SND_DRIVERS=y | ||
1120 | # CONFIG_SND_DUMMY is not set | ||
1121 | # CONFIG_SND_MTPAV is not set | ||
1122 | # CONFIG_SND_SERIAL_U16550 is not set | ||
1123 | # CONFIG_SND_MPU401 is not set | ||
1124 | # CONFIG_SND_AC97_POWER_SAVE is not set | ||
1125 | CONFIG_SND_PCI=y | ||
1126 | # CONFIG_SND_AD1889 is not set | ||
1127 | # CONFIG_SND_ALS300 is not set | ||
1128 | # CONFIG_SND_ALS4000 is not set | ||
1129 | # CONFIG_SND_ALI5451 is not set | ||
1130 | # CONFIG_SND_ATIIXP is not set | ||
1131 | # CONFIG_SND_ATIIXP_MODEM is not set | ||
1132 | # CONFIG_SND_AU8810 is not set | ||
1133 | # CONFIG_SND_AU8820 is not set | ||
1134 | # CONFIG_SND_AU8830 is not set | ||
1135 | # CONFIG_SND_AW2 is not set | ||
1136 | # CONFIG_SND_AZT3328 is not set | ||
1137 | # CONFIG_SND_BT87X is not set | ||
1138 | # CONFIG_SND_CA0106 is not set | ||
1139 | # CONFIG_SND_CMIPCI is not set | ||
1140 | # CONFIG_SND_OXYGEN is not set | ||
1141 | # CONFIG_SND_CS4281 is not set | ||
1142 | # CONFIG_SND_CS46XX is not set | ||
1143 | # CONFIG_SND_CS5530 is not set | ||
1144 | # CONFIG_SND_DARLA20 is not set | ||
1145 | # CONFIG_SND_GINA20 is not set | ||
1146 | # CONFIG_SND_LAYLA20 is not set | ||
1147 | # CONFIG_SND_DARLA24 is not set | ||
1148 | # CONFIG_SND_GINA24 is not set | ||
1149 | # CONFIG_SND_LAYLA24 is not set | ||
1150 | # CONFIG_SND_MONA is not set | ||
1151 | # CONFIG_SND_MIA is not set | ||
1152 | # CONFIG_SND_ECHO3G is not set | ||
1153 | # CONFIG_SND_INDIGO is not set | ||
1154 | # CONFIG_SND_INDIGOIO is not set | ||
1155 | # CONFIG_SND_INDIGODJ is not set | ||
1156 | # CONFIG_SND_EMU10K1 is not set | ||
1157 | # CONFIG_SND_EMU10K1X is not set | ||
1158 | # CONFIG_SND_ENS1370 is not set | ||
1159 | # CONFIG_SND_ENS1371 is not set | ||
1160 | # CONFIG_SND_ES1938 is not set | ||
1161 | # CONFIG_SND_ES1968 is not set | ||
1162 | # CONFIG_SND_FM801 is not set | ||
1163 | # CONFIG_SND_HDA_INTEL is not set | ||
1164 | # CONFIG_SND_HDSP is not set | ||
1165 | # CONFIG_SND_HDSPM is not set | ||
1166 | # CONFIG_SND_HIFIER is not set | ||
1167 | # CONFIG_SND_ICE1712 is not set | ||
1168 | # CONFIG_SND_ICE1724 is not set | ||
1169 | CONFIG_SND_INTEL8X0=y | ||
1170 | # CONFIG_SND_INTEL8X0M is not set | ||
1171 | # CONFIG_SND_KORG1212 is not set | ||
1172 | # CONFIG_SND_MAESTRO3 is not set | ||
1173 | # CONFIG_SND_MIXART is not set | ||
1174 | # CONFIG_SND_NM256 is not set | ||
1175 | # CONFIG_SND_PCXHR is not set | ||
1176 | # CONFIG_SND_RIPTIDE is not set | ||
1177 | # CONFIG_SND_RME32 is not set | ||
1178 | # CONFIG_SND_RME96 is not set | ||
1179 | # CONFIG_SND_RME9652 is not set | ||
1180 | # CONFIG_SND_SONICVIBES is not set | ||
1181 | # CONFIG_SND_TRIDENT is not set | ||
1182 | # CONFIG_SND_VIA82XX is not set | ||
1183 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
1184 | # CONFIG_SND_VIRTUOSO is not set | ||
1185 | # CONFIG_SND_VX222 is not set | ||
1186 | # CONFIG_SND_YMFPCI is not set | ||
1187 | CONFIG_SND_PPC=y | ||
1188 | CONFIG_SND_USB=y | ||
1189 | # CONFIG_SND_USB_AUDIO is not set | ||
1190 | # CONFIG_SND_USB_USX2Y is not set | ||
1191 | # CONFIG_SND_USB_CAIAQ is not set | ||
1192 | # CONFIG_SND_SOC is not set | ||
1193 | # CONFIG_SOUND_PRIME is not set | ||
1194 | CONFIG_AC97_BUS=y | ||
1195 | CONFIG_HID_SUPPORT=y | ||
1196 | CONFIG_HID=y | ||
1197 | # CONFIG_HID_DEBUG is not set | ||
1198 | # CONFIG_HIDRAW is not set | ||
1199 | |||
1200 | # | ||
1201 | # USB Input Devices | ||
1202 | # | ||
1203 | CONFIG_USB_HID=y | ||
1204 | # CONFIG_HID_PID is not set | ||
1205 | # CONFIG_USB_HIDDEV is not set | ||
1206 | |||
1207 | # | ||
1208 | # Special HID drivers | ||
1209 | # | ||
1210 | CONFIG_HID_COMPAT=y | ||
1211 | CONFIG_HID_A4TECH=y | ||
1212 | CONFIG_HID_APPLE=y | ||
1213 | CONFIG_HID_BELKIN=y | ||
1214 | CONFIG_HID_CHERRY=y | ||
1215 | CONFIG_HID_CHICONY=y | ||
1216 | CONFIG_HID_CYPRESS=y | ||
1217 | CONFIG_HID_EZKEY=y | ||
1218 | CONFIG_HID_GYRATION=y | ||
1219 | CONFIG_HID_LOGITECH=y | ||
1220 | # CONFIG_LOGITECH_FF is not set | ||
1221 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | ||
1222 | CONFIG_HID_MICROSOFT=y | ||
1223 | CONFIG_HID_MONTEREY=y | ||
1224 | # CONFIG_HID_NTRIG is not set | ||
1225 | CONFIG_HID_PANTHERLORD=y | ||
1226 | # CONFIG_PANTHERLORD_FF is not set | ||
1227 | CONFIG_HID_PETALYNX=y | ||
1228 | CONFIG_HID_SAMSUNG=y | ||
1229 | CONFIG_HID_SONY=y | ||
1230 | CONFIG_HID_SUNPLUS=y | ||
1231 | # CONFIG_GREENASIA_FF is not set | ||
1232 | # CONFIG_HID_TOPSEED is not set | ||
1233 | CONFIG_THRUSTMASTER_FF=m | ||
1234 | CONFIG_ZEROPLUS_FF=m | ||
1235 | CONFIG_USB_SUPPORT=y | ||
1236 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1237 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1238 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
1239 | CONFIG_USB=y | ||
1240 | # CONFIG_USB_DEBUG is not set | ||
1241 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1242 | |||
1243 | # | ||
1244 | # Miscellaneous USB options | ||
1245 | # | ||
1246 | CONFIG_USB_DEVICEFS=y | ||
1247 | CONFIG_USB_DEVICE_CLASS=y | ||
1248 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1249 | # CONFIG_USB_OTG is not set | ||
1250 | # CONFIG_USB_OTG_WHITELIST is not set | ||
1251 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
1252 | CONFIG_USB_MON=y | ||
1253 | # CONFIG_USB_WUSB is not set | ||
1254 | # CONFIG_USB_WUSB_CBAF is not set | ||
1255 | |||
1256 | # | ||
1257 | # USB Host Controller Drivers | ||
1258 | # | ||
1259 | # CONFIG_USB_C67X00_HCD is not set | ||
1260 | CONFIG_USB_EHCI_HCD=y | ||
1261 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | ||
1262 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
1263 | CONFIG_USB_EHCI_FSL=y | ||
1264 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1265 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1266 | # CONFIG_USB_ISP116X_HCD is not set | ||
1267 | # CONFIG_USB_ISP1760_HCD is not set | ||
1268 | CONFIG_USB_OHCI_HCD=y | ||
1269 | CONFIG_USB_OHCI_HCD_PPC_OF=y | ||
1270 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | ||
1271 | CONFIG_USB_OHCI_HCD_PPC_OF_LE=y | ||
1272 | CONFIG_USB_OHCI_HCD_PCI=y | ||
1273 | CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y | ||
1274 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | ||
1275 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1276 | # CONFIG_USB_UHCI_HCD is not set | ||
1277 | # CONFIG_USB_SL811_HCD is not set | ||
1278 | # CONFIG_USB_R8A66597_HCD is not set | ||
1279 | # CONFIG_USB_WHCI_HCD is not set | ||
1280 | # CONFIG_USB_HWA_HCD is not set | ||
1281 | |||
1282 | # | ||
1283 | # USB Device Class drivers | ||
1284 | # | ||
1285 | # CONFIG_USB_ACM is not set | ||
1286 | # CONFIG_USB_PRINTER is not set | ||
1287 | # CONFIG_USB_WDM is not set | ||
1288 | # CONFIG_USB_TMC is not set | ||
1289 | |||
1290 | # | ||
1291 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | ||
1292 | # | ||
1293 | |||
1294 | # | ||
1295 | # see USB_STORAGE Help for more information | ||
1296 | # | ||
1297 | CONFIG_USB_STORAGE=y | ||
1298 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1299 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1300 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1301 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1302 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1303 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1304 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1305 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1306 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1307 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
1308 | # CONFIG_USB_STORAGE_KARMA is not set | ||
1309 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
1310 | # CONFIG_USB_LIBUSUAL is not set | ||
1311 | |||
1312 | # | ||
1313 | # USB Imaging devices | ||
1314 | # | ||
1315 | # CONFIG_USB_MDC800 is not set | ||
1316 | # CONFIG_USB_MICROTEK is not set | ||
1317 | |||
1318 | # | ||
1319 | # USB port drivers | ||
1320 | # | ||
1321 | # CONFIG_USB_SERIAL is not set | ||
1322 | |||
1323 | # | ||
1324 | # USB Miscellaneous drivers | ||
1325 | # | ||
1326 | # CONFIG_USB_EMI62 is not set | ||
1327 | # CONFIG_USB_EMI26 is not set | ||
1328 | # CONFIG_USB_ADUTUX is not set | ||
1329 | # CONFIG_USB_SEVSEG is not set | ||
1330 | # CONFIG_USB_RIO500 is not set | ||
1331 | # CONFIG_USB_LEGOTOWER is not set | ||
1332 | # CONFIG_USB_LCD is not set | ||
1333 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1334 | # CONFIG_USB_LED is not set | ||
1335 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1336 | # CONFIG_USB_CYTHERM is not set | ||
1337 | # CONFIG_USB_PHIDGET is not set | ||
1338 | # CONFIG_USB_IDMOUSE is not set | ||
1339 | # CONFIG_USB_FTDI_ELAN is not set | ||
1340 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1341 | # CONFIG_USB_SISUSBVGA is not set | ||
1342 | # CONFIG_USB_LD is not set | ||
1343 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1344 | # CONFIG_USB_IOWARRIOR is not set | ||
1345 | # CONFIG_USB_TEST is not set | ||
1346 | # CONFIG_USB_ISIGHTFW is not set | ||
1347 | # CONFIG_USB_VST is not set | ||
1348 | # CONFIG_USB_GADGET is not set | ||
1349 | |||
1350 | # | ||
1351 | # OTG and related infrastructure | ||
1352 | # | ||
1353 | # CONFIG_UWB is not set | ||
1354 | # CONFIG_MMC is not set | ||
1355 | # CONFIG_MEMSTICK is not set | ||
1356 | # CONFIG_NEW_LEDS is not set | ||
1357 | # CONFIG_ACCESSIBILITY is not set | ||
1358 | # CONFIG_INFINIBAND is not set | ||
1359 | # CONFIG_EDAC is not set | ||
1360 | CONFIG_RTC_LIB=y | ||
1361 | CONFIG_RTC_CLASS=y | ||
1362 | CONFIG_RTC_HCTOSYS=y | ||
1363 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1364 | # CONFIG_RTC_DEBUG is not set | ||
1365 | |||
1366 | # | ||
1367 | # RTC interfaces | ||
1368 | # | ||
1369 | CONFIG_RTC_INTF_SYSFS=y | ||
1370 | CONFIG_RTC_INTF_PROC=y | ||
1371 | CONFIG_RTC_INTF_DEV=y | ||
1372 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1373 | # CONFIG_RTC_DRV_TEST is not set | ||
1374 | |||
1375 | # | ||
1376 | # I2C RTC drivers | ||
1377 | # | ||
1378 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1379 | # CONFIG_RTC_DRV_DS1374 is not set | ||
1380 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1381 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
1382 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1383 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1384 | # CONFIG_RTC_DRV_X1205 is not set | ||
1385 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1386 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1387 | # CONFIG_RTC_DRV_M41T80 is not set | ||
1388 | # CONFIG_RTC_DRV_S35390A is not set | ||
1389 | # CONFIG_RTC_DRV_FM3130 is not set | ||
1390 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1391 | |||
1392 | # | ||
1393 | # SPI RTC drivers | ||
1394 | # | ||
1395 | |||
1396 | # | ||
1397 | # Platform RTC drivers | ||
1398 | # | ||
1399 | CONFIG_RTC_DRV_CMOS=y | ||
1400 | # CONFIG_RTC_DRV_DS1286 is not set | ||
1401 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1402 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1403 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1404 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1405 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1406 | # CONFIG_RTC_DRV_M48T35 is not set | ||
1407 | # CONFIG_RTC_DRV_M48T59 is not set | ||
1408 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
1409 | # CONFIG_RTC_DRV_V3020 is not set | ||
1410 | |||
1411 | # | ||
1412 | # on-CPU RTC drivers | ||
1413 | # | ||
1414 | # CONFIG_RTC_DRV_PPC is not set | ||
1415 | CONFIG_DMADEVICES=y | ||
1416 | |||
1417 | # | ||
1418 | # DMA Devices | ||
1419 | # | ||
1420 | CONFIG_FSL_DMA=y | ||
1421 | CONFIG_DMA_ENGINE=y | ||
1422 | |||
1423 | # | ||
1424 | # DMA Clients | ||
1425 | # | ||
1426 | # CONFIG_NET_DMA is not set | ||
1427 | # CONFIG_DMATEST is not set | ||
1428 | # CONFIG_UIO is not set | ||
1429 | # CONFIG_STAGING is not set | ||
1430 | |||
1431 | # | ||
1432 | # File systems | ||
1433 | # | ||
1434 | CONFIG_EXT2_FS=y | ||
1435 | # CONFIG_EXT2_FS_XATTR is not set | ||
1436 | # CONFIG_EXT2_FS_XIP is not set | ||
1437 | CONFIG_EXT3_FS=y | ||
1438 | CONFIG_EXT3_FS_XATTR=y | ||
1439 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
1440 | # CONFIG_EXT3_FS_SECURITY is not set | ||
1441 | # CONFIG_EXT4_FS is not set | ||
1442 | CONFIG_JBD=y | ||
1443 | # CONFIG_JBD_DEBUG is not set | ||
1444 | CONFIG_FS_MBCACHE=y | ||
1445 | # CONFIG_REISERFS_FS is not set | ||
1446 | # CONFIG_JFS_FS is not set | ||
1447 | # CONFIG_FS_POSIX_ACL is not set | ||
1448 | CONFIG_FILE_LOCKING=y | ||
1449 | # CONFIG_XFS_FS is not set | ||
1450 | # CONFIG_GFS2_FS is not set | ||
1451 | # CONFIG_OCFS2_FS is not set | ||
1452 | # CONFIG_BTRFS_FS is not set | ||
1453 | CONFIG_DNOTIFY=y | ||
1454 | CONFIG_INOTIFY=y | ||
1455 | CONFIG_INOTIFY_USER=y | ||
1456 | # CONFIG_QUOTA is not set | ||
1457 | # CONFIG_AUTOFS_FS is not set | ||
1458 | # CONFIG_AUTOFS4_FS is not set | ||
1459 | # CONFIG_FUSE_FS is not set | ||
1460 | |||
1461 | # | ||
1462 | # CD-ROM/DVD Filesystems | ||
1463 | # | ||
1464 | CONFIG_ISO9660_FS=m | ||
1465 | CONFIG_JOLIET=y | ||
1466 | CONFIG_ZISOFS=y | ||
1467 | CONFIG_UDF_FS=m | ||
1468 | CONFIG_UDF_NLS=y | ||
1469 | |||
1470 | # | ||
1471 | # DOS/FAT/NT Filesystems | ||
1472 | # | ||
1473 | CONFIG_FAT_FS=y | ||
1474 | CONFIG_MSDOS_FS=m | ||
1475 | CONFIG_VFAT_FS=y | ||
1476 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1477 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1478 | CONFIG_NTFS_FS=y | ||
1479 | # CONFIG_NTFS_DEBUG is not set | ||
1480 | # CONFIG_NTFS_RW is not set | ||
1481 | |||
1482 | # | ||
1483 | # Pseudo filesystems | ||
1484 | # | ||
1485 | CONFIG_PROC_FS=y | ||
1486 | CONFIG_PROC_KCORE=y | ||
1487 | CONFIG_PROC_SYSCTL=y | ||
1488 | CONFIG_PROC_PAGE_MONITOR=y | ||
1489 | CONFIG_SYSFS=y | ||
1490 | CONFIG_TMPFS=y | ||
1491 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
1492 | # CONFIG_HUGETLB_PAGE is not set | ||
1493 | # CONFIG_CONFIGFS_FS is not set | ||
1494 | CONFIG_MISC_FILESYSTEMS=y | ||
1495 | CONFIG_ADFS_FS=m | ||
1496 | # CONFIG_ADFS_FS_RW is not set | ||
1497 | CONFIG_AFFS_FS=m | ||
1498 | CONFIG_HFS_FS=m | ||
1499 | CONFIG_HFSPLUS_FS=m | ||
1500 | CONFIG_BEFS_FS=m | ||
1501 | # CONFIG_BEFS_DEBUG is not set | ||
1502 | CONFIG_BFS_FS=m | ||
1503 | CONFIG_EFS_FS=m | ||
1504 | CONFIG_CRAMFS=y | ||
1505 | # CONFIG_SQUASHFS is not set | ||
1506 | CONFIG_VXFS_FS=m | ||
1507 | # CONFIG_MINIX_FS is not set | ||
1508 | # CONFIG_OMFS_FS is not set | ||
1509 | CONFIG_HPFS_FS=m | ||
1510 | CONFIG_QNX4FS_FS=m | ||
1511 | # CONFIG_ROMFS_FS is not set | ||
1512 | CONFIG_SYSV_FS=m | ||
1513 | CONFIG_UFS_FS=m | ||
1514 | # CONFIG_UFS_FS_WRITE is not set | ||
1515 | # CONFIG_UFS_DEBUG is not set | ||
1516 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1517 | CONFIG_NFS_FS=y | ||
1518 | CONFIG_NFS_V3=y | ||
1519 | # CONFIG_NFS_V3_ACL is not set | ||
1520 | CONFIG_NFS_V4=y | ||
1521 | CONFIG_ROOT_NFS=y | ||
1522 | CONFIG_NFSD=y | ||
1523 | # CONFIG_NFSD_V3 is not set | ||
1524 | # CONFIG_NFSD_V4 is not set | ||
1525 | CONFIG_LOCKD=y | ||
1526 | CONFIG_LOCKD_V4=y | ||
1527 | CONFIG_EXPORTFS=y | ||
1528 | CONFIG_NFS_COMMON=y | ||
1529 | CONFIG_SUNRPC=y | ||
1530 | CONFIG_SUNRPC_GSS=y | ||
1531 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1532 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1533 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1534 | # CONFIG_SMB_FS is not set | ||
1535 | # CONFIG_CIFS is not set | ||
1536 | # CONFIG_NCP_FS is not set | ||
1537 | # CONFIG_CODA_FS is not set | ||
1538 | # CONFIG_AFS_FS is not set | ||
1539 | |||
1540 | # | ||
1541 | # Partition Types | ||
1542 | # | ||
1543 | CONFIG_PARTITION_ADVANCED=y | ||
1544 | # CONFIG_ACORN_PARTITION is not set | ||
1545 | # CONFIG_OSF_PARTITION is not set | ||
1546 | # CONFIG_AMIGA_PARTITION is not set | ||
1547 | # CONFIG_ATARI_PARTITION is not set | ||
1548 | CONFIG_MAC_PARTITION=y | ||
1549 | CONFIG_MSDOS_PARTITION=y | ||
1550 | # CONFIG_BSD_DISKLABEL is not set | ||
1551 | # CONFIG_MINIX_SUBPARTITION is not set | ||
1552 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
1553 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
1554 | # CONFIG_LDM_PARTITION is not set | ||
1555 | # CONFIG_SGI_PARTITION is not set | ||
1556 | # CONFIG_ULTRIX_PARTITION is not set | ||
1557 | # CONFIG_SUN_PARTITION is not set | ||
1558 | # CONFIG_KARMA_PARTITION is not set | ||
1559 | # CONFIG_EFI_PARTITION is not set | ||
1560 | # CONFIG_SYSV68_PARTITION is not set | ||
1561 | CONFIG_NLS=y | ||
1562 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1563 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
1564 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1565 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1566 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1567 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1568 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1569 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1570 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1571 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1572 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1573 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1574 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1575 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1576 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1577 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1578 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1579 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1580 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1581 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1582 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1583 | # CONFIG_NLS_ISO8859_8 is not set | ||
1584 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1585 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1586 | # CONFIG_NLS_ASCII is not set | ||
1587 | # CONFIG_NLS_ISO8859_1 is not set | ||
1588 | # CONFIG_NLS_ISO8859_2 is not set | ||
1589 | # CONFIG_NLS_ISO8859_3 is not set | ||
1590 | # CONFIG_NLS_ISO8859_4 is not set | ||
1591 | # CONFIG_NLS_ISO8859_5 is not set | ||
1592 | # CONFIG_NLS_ISO8859_6 is not set | ||
1593 | # CONFIG_NLS_ISO8859_7 is not set | ||
1594 | # CONFIG_NLS_ISO8859_9 is not set | ||
1595 | # CONFIG_NLS_ISO8859_13 is not set | ||
1596 | # CONFIG_NLS_ISO8859_14 is not set | ||
1597 | # CONFIG_NLS_ISO8859_15 is not set | ||
1598 | # CONFIG_NLS_KOI8_R is not set | ||
1599 | # CONFIG_NLS_KOI8_U is not set | ||
1600 | CONFIG_NLS_UTF8=m | ||
1601 | # CONFIG_DLM is not set | ||
1602 | |||
1603 | # | ||
1604 | # Library routines | ||
1605 | # | ||
1606 | CONFIG_BITREVERSE=y | ||
1607 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1608 | # CONFIG_CRC_CCITT is not set | ||
1609 | # CONFIG_CRC16 is not set | ||
1610 | CONFIG_CRC_T10DIF=y | ||
1611 | CONFIG_CRC_ITU_T=m | ||
1612 | CONFIG_CRC32=y | ||
1613 | # CONFIG_CRC7 is not set | ||
1614 | CONFIG_LIBCRC32C=m | ||
1615 | CONFIG_ZLIB_INFLATE=y | ||
1616 | CONFIG_PLIST=y | ||
1617 | CONFIG_HAS_IOMEM=y | ||
1618 | CONFIG_HAS_IOPORT=y | ||
1619 | CONFIG_HAS_DMA=y | ||
1620 | CONFIG_HAVE_LMB=y | ||
1621 | |||
1622 | # | ||
1623 | # Kernel hacking | ||
1624 | # | ||
1625 | # CONFIG_PRINTK_TIME is not set | ||
1626 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1627 | CONFIG_ENABLE_MUST_CHECK=y | ||
1628 | CONFIG_FRAME_WARN=1024 | ||
1629 | # CONFIG_MAGIC_SYSRQ is not set | ||
1630 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1631 | CONFIG_DEBUG_FS=y | ||
1632 | # CONFIG_HEADERS_CHECK is not set | ||
1633 | CONFIG_DEBUG_KERNEL=y | ||
1634 | # CONFIG_DEBUG_SHIRQ is not set | ||
1635 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1636 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
1637 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
1638 | CONFIG_SCHED_DEBUG=y | ||
1639 | # CONFIG_SCHEDSTATS is not set | ||
1640 | # CONFIG_TIMER_STATS is not set | ||
1641 | # CONFIG_DEBUG_OBJECTS is not set | ||
1642 | # CONFIG_SLUB_DEBUG_ON is not set | ||
1643 | # CONFIG_SLUB_STATS is not set | ||
1644 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1645 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1646 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1647 | # CONFIG_DEBUG_MUTEXES is not set | ||
1648 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1649 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1650 | # CONFIG_DEBUG_KOBJECT is not set | ||
1651 | # CONFIG_DEBUG_HIGHMEM is not set | ||
1652 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1653 | CONFIG_DEBUG_INFO=y | ||
1654 | # CONFIG_DEBUG_VM is not set | ||
1655 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1656 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
1657 | # CONFIG_DEBUG_LIST is not set | ||
1658 | # CONFIG_DEBUG_SG is not set | ||
1659 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1660 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1661 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1662 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
1663 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1664 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
1665 | # CONFIG_FAULT_INJECTION is not set | ||
1666 | # CONFIG_LATENCYTOP is not set | ||
1667 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
1668 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
1669 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1670 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1671 | |||
1672 | # | ||
1673 | # Tracers | ||
1674 | # | ||
1675 | # CONFIG_FUNCTION_TRACER is not set | ||
1676 | # CONFIG_SCHED_TRACER is not set | ||
1677 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
1678 | # CONFIG_BOOT_TRACER is not set | ||
1679 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1680 | # CONFIG_STACK_TRACER is not set | ||
1681 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1682 | # CONFIG_SAMPLES is not set | ||
1683 | CONFIG_HAVE_ARCH_KGDB=y | ||
1684 | # CONFIG_KGDB is not set | ||
1685 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1686 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1687 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1688 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1689 | # CONFIG_CODE_PATCHING_SELFTEST is not set | ||
1690 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
1691 | # CONFIG_MSI_BITMAP_SELFTEST is not set | ||
1692 | # CONFIG_XMON is not set | ||
1693 | # CONFIG_IRQSTACKS is not set | ||
1694 | # CONFIG_VIRQ_DEBUG is not set | ||
1695 | # CONFIG_BDI_SWITCH is not set | ||
1696 | # CONFIG_PPC_EARLY_DEBUG is not set | ||
1697 | |||
1698 | # | ||
1699 | # Security options | ||
1700 | # | ||
1701 | # CONFIG_KEYS is not set | ||
1702 | # CONFIG_SECURITY is not set | ||
1703 | # CONFIG_SECURITYFS is not set | ||
1704 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1705 | CONFIG_CRYPTO=y | ||
1706 | |||
1707 | # | ||
1708 | # Crypto core or helper | ||
1709 | # | ||
1710 | # CONFIG_CRYPTO_FIPS is not set | ||
1711 | CONFIG_CRYPTO_ALGAPI=y | ||
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1713 | CONFIG_CRYPTO_AEAD=y | ||
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1715 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1717 | CONFIG_CRYPTO_HASH=y | ||
1718 | CONFIG_CRYPTO_HASH2=y | ||
1719 | CONFIG_CRYPTO_RNG2=y | ||
1720 | CONFIG_CRYPTO_MANAGER=y | ||
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1722 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1723 | # CONFIG_CRYPTO_NULL is not set | ||
1724 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1725 | CONFIG_CRYPTO_AUTHENC=y | ||
1726 | # CONFIG_CRYPTO_TEST is not set | ||
1727 | |||
1728 | # | ||
1729 | # Authenticated Encryption with Associated Data | ||
1730 | # | ||
1731 | # CONFIG_CRYPTO_CCM is not set | ||
1732 | # CONFIG_CRYPTO_GCM is not set | ||
1733 | # CONFIG_CRYPTO_SEQIV is not set | ||
1734 | |||
1735 | # | ||
1736 | # Block modes | ||
1737 | # | ||
1738 | CONFIG_CRYPTO_CBC=y | ||
1739 | # CONFIG_CRYPTO_CTR is not set | ||
1740 | # CONFIG_CRYPTO_CTS is not set | ||
1741 | # CONFIG_CRYPTO_ECB is not set | ||
1742 | # CONFIG_CRYPTO_LRW is not set | ||
1743 | CONFIG_CRYPTO_PCBC=m | ||
1744 | # CONFIG_CRYPTO_XTS is not set | ||
1745 | |||
1746 | # | ||
1747 | # Hash modes | ||
1748 | # | ||
1749 | CONFIG_CRYPTO_HMAC=y | ||
1750 | # CONFIG_CRYPTO_XCBC is not set | ||
1751 | |||
1752 | # | ||
1753 | # Digest | ||
1754 | # | ||
1755 | CONFIG_CRYPTO_CRC32C=m | ||
1756 | # CONFIG_CRYPTO_MD4 is not set | ||
1757 | CONFIG_CRYPTO_MD5=y | ||
1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1759 | # CONFIG_CRYPTO_RMD128 is not set | ||
1760 | # CONFIG_CRYPTO_RMD160 is not set | ||
1761 | # CONFIG_CRYPTO_RMD256 is not set | ||
1762 | # CONFIG_CRYPTO_RMD320 is not set | ||
1763 | CONFIG_CRYPTO_SHA1=m | ||
1764 | # CONFIG_CRYPTO_SHA256 is not set | ||
1765 | # CONFIG_CRYPTO_SHA512 is not set | ||
1766 | # CONFIG_CRYPTO_TGR192 is not set | ||
1767 | # CONFIG_CRYPTO_WP512 is not set | ||
1768 | |||
1769 | # | ||
1770 | # Ciphers | ||
1771 | # | ||
1772 | # CONFIG_CRYPTO_AES is not set | ||
1773 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1774 | # CONFIG_CRYPTO_ARC4 is not set | ||
1775 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1776 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1777 | # CONFIG_CRYPTO_CAST5 is not set | ||
1778 | # CONFIG_CRYPTO_CAST6 is not set | ||
1779 | CONFIG_CRYPTO_DES=y | ||
1780 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1781 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1782 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1783 | # CONFIG_CRYPTO_SEED is not set | ||
1784 | # CONFIG_CRYPTO_SERPENT is not set | ||
1785 | # CONFIG_CRYPTO_TEA is not set | ||
1786 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1787 | |||
1788 | # | ||
1789 | # Compression | ||
1790 | # | ||
1791 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1792 | # CONFIG_CRYPTO_LZO is not set | ||
1793 | |||
1794 | # | ||
1795 | # Random Number Generation | ||
1796 | # | ||
1797 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
1798 | CONFIG_CRYPTO_HW=y | ||
1799 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1800 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
1801 | # CONFIG_PPC_CLOCK is not set | ||
1802 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig b/arch/powerpc/configs/85xx/mpc8544_ds_defconfig deleted file mode 100644 index f6fa0b761cb3..000000000000 --- a/arch/powerpc/configs/85xx/mpc8544_ds_defconfig +++ /dev/null | |||
@@ -1,1802 +0,0 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.29-rc2 | ||
4 | # Mon Jan 26 15:36:07 2009 | ||
5 | # | ||
6 | # CONFIG_PPC64 is not set | ||
7 | |||
8 | # | ||
9 | # Processor support | ||
10 | # | ||
11 | # CONFIG_6xx is not set | ||
12 | CONFIG_PPC_85xx=y | ||
13 | # CONFIG_PPC_8xx is not set | ||
14 | # CONFIG_40x is not set | ||
15 | # CONFIG_44x is not set | ||
16 | # CONFIG_E200 is not set | ||
17 | CONFIG_E500=y | ||
18 | # CONFIG_PPC_E500MC is not set | ||
19 | CONFIG_BOOKE=y | ||
20 | CONFIG_FSL_BOOKE=y | ||
21 | CONFIG_FSL_EMB_PERFMON=y | ||
22 | # CONFIG_PHYS_64BIT is not set | ||
23 | CONFIG_SPE=y | ||
24 | CONFIG_PPC_MMU_NOHASH=y | ||
25 | # CONFIG_PPC_MM_SLICES is not set | ||
26 | # CONFIG_SMP is not set | ||
27 | CONFIG_PPC32=y | ||
28 | CONFIG_WORD_SIZE=32 | ||
29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | ||
30 | CONFIG_MMU=y | ||
31 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
32 | CONFIG_GENERIC_TIME=y | ||
33 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
34 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
35 | CONFIG_GENERIC_HARDIRQS=y | ||
36 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
37 | CONFIG_IRQ_PER_CPU=y | ||
38 | CONFIG_STACKTRACE_SUPPORT=y | ||
39 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
40 | CONFIG_LOCKDEP_SUPPORT=y | ||
41 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
42 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
43 | CONFIG_GENERIC_HWEIGHT=y | ||
44 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
45 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
47 | CONFIG_PPC=y | ||
48 | CONFIG_EARLY_PRINTK=y | ||
49 | CONFIG_GENERIC_NVRAM=y | ||
50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
52 | CONFIG_PPC_OF=y | ||
53 | CONFIG_OF=y | ||
54 | CONFIG_PPC_UDBG_16550=y | ||
55 | # CONFIG_GENERIC_TBSYNC is not set | ||
56 | CONFIG_AUDIT_ARCH=y | ||
57 | CONFIG_GENERIC_BUG=y | ||
58 | CONFIG_DEFAULT_UIMAGE=y | ||
59 | # CONFIG_PPC_DCR_NATIVE is not set | ||
60 | # CONFIG_PPC_DCR_MMIO is not set | ||
61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
62 | |||
63 | # | ||
64 | # General setup | ||
65 | # | ||
66 | CONFIG_EXPERIMENTAL=y | ||
67 | CONFIG_BROKEN_ON_SMP=y | ||
68 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
69 | CONFIG_LOCALVERSION="" | ||
70 | CONFIG_LOCALVERSION_AUTO=y | ||
71 | CONFIG_SWAP=y | ||
72 | CONFIG_SYSVIPC=y | ||
73 | CONFIG_SYSVIPC_SYSCTL=y | ||
74 | CONFIG_POSIX_MQUEUE=y | ||
75 | CONFIG_BSD_PROCESS_ACCT=y | ||
76 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
77 | # CONFIG_TASKSTATS is not set | ||
78 | CONFIG_AUDIT=y | ||
79 | # CONFIG_AUDITSYSCALL is not set | ||
80 | CONFIG_IKCONFIG=y | ||
81 | CONFIG_IKCONFIG_PROC=y | ||
82 | CONFIG_LOG_BUF_SHIFT=14 | ||
83 | CONFIG_GROUP_SCHED=y | ||
84 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
85 | # CONFIG_RT_GROUP_SCHED is not set | ||
86 | CONFIG_USER_SCHED=y | ||
87 | # CONFIG_CGROUP_SCHED is not set | ||
88 | # CONFIG_CGROUPS is not set | ||
89 | CONFIG_SYSFS_DEPRECATED=y | ||
90 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
91 | # CONFIG_RELAY is not set | ||
92 | # CONFIG_NAMESPACES is not set | ||
93 | CONFIG_BLK_DEV_INITRD=y | ||
94 | CONFIG_INITRAMFS_SOURCE="" | ||
95 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
96 | CONFIG_SYSCTL=y | ||
97 | CONFIG_EMBEDDED=y | ||
98 | CONFIG_SYSCTL_SYSCALL=y | ||
99 | CONFIG_KALLSYMS=y | ||
100 | CONFIG_KALLSYMS_ALL=y | ||
101 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
102 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
103 | CONFIG_HOTPLUG=y | ||
104 | CONFIG_PRINTK=y | ||
105 | CONFIG_BUG=y | ||
106 | CONFIG_ELF_CORE=y | ||
107 | CONFIG_COMPAT_BRK=y | ||
108 | CONFIG_BASE_FULL=y | ||
109 | CONFIG_FUTEX=y | ||
110 | CONFIG_ANON_INODES=y | ||
111 | CONFIG_EPOLL=y | ||
112 | CONFIG_SIGNALFD=y | ||
113 | CONFIG_TIMERFD=y | ||
114 | CONFIG_EVENTFD=y | ||
115 | CONFIG_SHMEM=y | ||
116 | CONFIG_AIO=y | ||
117 | CONFIG_VM_EVENT_COUNTERS=y | ||
118 | CONFIG_PCI_QUIRKS=y | ||
119 | CONFIG_SLUB_DEBUG=y | ||
120 | # CONFIG_SLAB is not set | ||
121 | CONFIG_SLUB=y | ||
122 | # CONFIG_SLOB is not set | ||
123 | # CONFIG_PROFILING is not set | ||
124 | CONFIG_HAVE_OPROFILE=y | ||
125 | # CONFIG_KPROBES is not set | ||
126 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
127 | CONFIG_HAVE_IOREMAP_PROT=y | ||
128 | CONFIG_HAVE_KPROBES=y | ||
129 | CONFIG_HAVE_KRETPROBES=y | ||
130 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
131 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
132 | CONFIG_SLABINFO=y | ||
133 | CONFIG_RT_MUTEXES=y | ||
134 | CONFIG_BASE_SMALL=0 | ||
135 | CONFIG_MODULES=y | ||
136 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
137 | CONFIG_MODULE_UNLOAD=y | ||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
139 | CONFIG_MODVERSIONS=y | ||
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
141 | CONFIG_BLOCK=y | ||
142 | CONFIG_LBD=y | ||
143 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
144 | # CONFIG_BLK_DEV_BSG is not set | ||
145 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
146 | |||
147 | # | ||
148 | # IO Schedulers | ||
149 | # | ||
150 | CONFIG_IOSCHED_NOOP=y | ||
151 | CONFIG_IOSCHED_AS=y | ||
152 | CONFIG_IOSCHED_DEADLINE=y | ||
153 | CONFIG_IOSCHED_CFQ=y | ||
154 | # CONFIG_DEFAULT_AS is not set | ||
155 | # CONFIG_DEFAULT_DEADLINE is not set | ||
156 | CONFIG_DEFAULT_CFQ=y | ||
157 | # CONFIG_DEFAULT_NOOP is not set | ||
158 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
159 | CONFIG_CLASSIC_RCU=y | ||
160 | # CONFIG_TREE_RCU is not set | ||
161 | # CONFIG_PREEMPT_RCU is not set | ||
162 | # CONFIG_TREE_RCU_TRACE is not set | ||
163 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
164 | # CONFIG_FREEZER is not set | ||
165 | |||
166 | # | ||
167 | # Platform support | ||
168 | # | ||
169 | # CONFIG_PPC_CELL is not set | ||
170 | # CONFIG_PPC_CELL_NATIVE is not set | ||
171 | # CONFIG_PQ2ADS is not set | ||
172 | CONFIG_MPC85xx=y | ||
173 | # CONFIG_MPC8540_ADS is not set | ||
174 | # CONFIG_MPC8560_ADS is not set | ||
175 | # CONFIG_MPC85xx_CDS is not set | ||
176 | # CONFIG_MPC85xx_MDS is not set | ||
177 | # CONFIG_MPC8536_DS is not set | ||
178 | CONFIG_MPC85xx_DS=y | ||
179 | # CONFIG_KSI8560 is not set | ||
180 | # CONFIG_STX_GP3 is not set | ||
181 | # CONFIG_TQM8540 is not set | ||
182 | # CONFIG_TQM8541 is not set | ||
183 | # CONFIG_TQM8548 is not set | ||
184 | # CONFIG_TQM8555 is not set | ||
185 | # CONFIG_TQM8560 is not set | ||
186 | # CONFIG_SBC8548 is not set | ||
187 | # CONFIG_SBC8560 is not set | ||
188 | # CONFIG_IPIC is not set | ||
189 | CONFIG_MPIC=y | ||
190 | # CONFIG_MPIC_WEIRD is not set | ||
191 | CONFIG_PPC_I8259=y | ||
192 | # CONFIG_PPC_RTAS is not set | ||
193 | # CONFIG_MMIO_NVRAM is not set | ||
194 | # CONFIG_PPC_MPC106 is not set | ||
195 | # CONFIG_PPC_970_NAP is not set | ||
196 | # CONFIG_PPC_INDIRECT_IO is not set | ||
197 | # CONFIG_GENERIC_IOMAP is not set | ||
198 | # CONFIG_CPU_FREQ is not set | ||
199 | # CONFIG_QUICC_ENGINE is not set | ||
200 | # CONFIG_CPM2 is not set | ||
201 | CONFIG_FSL_ULI1575=y | ||
202 | # CONFIG_MPC8xxx_GPIO is not set | ||
203 | # CONFIG_SIMPLE_GPIO is not set | ||
204 | |||
205 | # | ||
206 | # Kernel options | ||
207 | # | ||
208 | CONFIG_HIGHMEM=y | ||
209 | CONFIG_TICK_ONESHOT=y | ||
210 | CONFIG_NO_HZ=y | ||
211 | CONFIG_HIGH_RES_TIMERS=y | ||
212 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
213 | # CONFIG_HZ_100 is not set | ||
214 | CONFIG_HZ_250=y | ||
215 | # CONFIG_HZ_300 is not set | ||
216 | # CONFIG_HZ_1000 is not set | ||
217 | CONFIG_HZ=250 | ||
218 | CONFIG_SCHED_HRTICK=y | ||
219 | CONFIG_PREEMPT_NONE=y | ||
220 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
221 | # CONFIG_PREEMPT is not set | ||
222 | CONFIG_BINFMT_ELF=y | ||
223 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
224 | # CONFIG_HAVE_AOUT is not set | ||
225 | CONFIG_BINFMT_MISC=m | ||
226 | CONFIG_MATH_EMULATION=y | ||
227 | # CONFIG_IOMMU_HELPER is not set | ||
228 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
229 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
230 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
231 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
232 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
233 | CONFIG_SELECT_MEMORY_MODEL=y | ||
234 | CONFIG_FLATMEM_MANUAL=y | ||
235 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
236 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
237 | CONFIG_FLATMEM=y | ||
238 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
239 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
240 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
241 | CONFIG_MIGRATION=y | ||
242 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
243 | CONFIG_ZONE_DMA_FLAG=1 | ||
244 | CONFIG_BOUNCE=y | ||
245 | CONFIG_VIRT_TO_BUS=y | ||
246 | CONFIG_UNEVICTABLE_LRU=y | ||
247 | CONFIG_PPC_4K_PAGES=y | ||
248 | # CONFIG_PPC_16K_PAGES is not set | ||
249 | # CONFIG_PPC_64K_PAGES is not set | ||
250 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
251 | CONFIG_PROC_DEVICETREE=y | ||
252 | # CONFIG_CMDLINE_BOOL is not set | ||
253 | CONFIG_EXTRA_TARGETS="" | ||
254 | # CONFIG_PM is not set | ||
255 | CONFIG_SECCOMP=y | ||
256 | CONFIG_ISA_DMA_API=y | ||
257 | |||
258 | # | ||
259 | # Bus options | ||
260 | # | ||
261 | CONFIG_ZONE_DMA=y | ||
262 | CONFIG_GENERIC_ISA_DMA=y | ||
263 | CONFIG_PPC_INDIRECT_PCI=y | ||
264 | CONFIG_FSL_SOC=y | ||
265 | CONFIG_FSL_PCI=y | ||
266 | CONFIG_PPC_PCI_CHOICE=y | ||
267 | CONFIG_PCI=y | ||
268 | CONFIG_PCI_DOMAINS=y | ||
269 | CONFIG_PCI_SYSCALL=y | ||
270 | # CONFIG_PCIEPORTBUS is not set | ||
271 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
272 | # CONFIG_PCI_MSI is not set | ||
273 | # CONFIG_PCI_LEGACY is not set | ||
274 | # CONFIG_PCI_DEBUG is not set | ||
275 | # CONFIG_PCI_STUB is not set | ||
276 | # CONFIG_PCCARD is not set | ||
277 | # CONFIG_HOTPLUG_PCI is not set | ||
278 | # CONFIG_HAS_RAPIDIO is not set | ||
279 | |||
280 | # | ||
281 | # Advanced setup | ||
282 | # | ||
283 | # CONFIG_ADVANCED_OPTIONS is not set | ||
284 | |||
285 | # | ||
286 | # Default settings for advanced configuration options are used | ||
287 | # | ||
288 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
289 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
290 | CONFIG_KERNEL_START=0xc0000000 | ||
291 | CONFIG_PHYSICAL_START=0x00000000 | ||
292 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
293 | CONFIG_TASK_SIZE=0xc0000000 | ||
294 | CONFIG_NET=y | ||
295 | |||
296 | # | ||
297 | # Networking options | ||
298 | # | ||
299 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
300 | CONFIG_PACKET=y | ||
301 | # CONFIG_PACKET_MMAP is not set | ||
302 | CONFIG_UNIX=y | ||
303 | CONFIG_XFRM=y | ||
304 | CONFIG_XFRM_USER=y | ||
305 | # CONFIG_XFRM_SUB_POLICY is not set | ||
306 | # CONFIG_XFRM_MIGRATE is not set | ||
307 | # CONFIG_XFRM_STATISTICS is not set | ||
308 | CONFIG_NET_KEY=m | ||
309 | # CONFIG_NET_KEY_MIGRATE is not set | ||
310 | CONFIG_INET=y | ||
311 | CONFIG_IP_MULTICAST=y | ||
312 | CONFIG_IP_ADVANCED_ROUTER=y | ||
313 | CONFIG_ASK_IP_FIB_HASH=y | ||
314 | # CONFIG_IP_FIB_TRIE is not set | ||
315 | CONFIG_IP_FIB_HASH=y | ||
316 | CONFIG_IP_MULTIPLE_TABLES=y | ||
317 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
318 | CONFIG_IP_ROUTE_VERBOSE=y | ||
319 | CONFIG_IP_PNP=y | ||
320 | CONFIG_IP_PNP_DHCP=y | ||
321 | CONFIG_IP_PNP_BOOTP=y | ||
322 | CONFIG_IP_PNP_RARP=y | ||
323 | CONFIG_NET_IPIP=y | ||
324 | CONFIG_NET_IPGRE=y | ||
325 | CONFIG_NET_IPGRE_BROADCAST=y | ||
326 | CONFIG_IP_MROUTE=y | ||
327 | CONFIG_IP_PIMSM_V1=y | ||
328 | CONFIG_IP_PIMSM_V2=y | ||
329 | CONFIG_ARPD=y | ||
330 | # CONFIG_SYN_COOKIES is not set | ||
331 | # CONFIG_INET_AH is not set | ||
332 | # CONFIG_INET_ESP is not set | ||
333 | # CONFIG_INET_IPCOMP is not set | ||
334 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
335 | CONFIG_INET_TUNNEL=y | ||
336 | # CONFIG_INET_XFRM_MODE_TRANSPORT is not set | ||
337 | # CONFIG_INET_XFRM_MODE_TUNNEL is not set | ||
338 | # CONFIG_INET_XFRM_MODE_BEET is not set | ||
339 | # CONFIG_INET_LRO is not set | ||
340 | CONFIG_INET_DIAG=y | ||
341 | CONFIG_INET_TCP_DIAG=y | ||
342 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
343 | CONFIG_TCP_CONG_CUBIC=y | ||
344 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
345 | # CONFIG_TCP_MD5SIG is not set | ||
346 | CONFIG_IPV6=y | ||
347 | # CONFIG_IPV6_PRIVACY is not set | ||
348 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
349 | # CONFIG_IPV6_OPTIMISTIC_DAD is not set | ||
350 | # CONFIG_INET6_AH is not set | ||
351 | # CONFIG_INET6_ESP is not set | ||
352 | # CONFIG_INET6_IPCOMP is not set | ||
353 | # CONFIG_IPV6_MIP6 is not set | ||
354 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
355 | # CONFIG_INET6_TUNNEL is not set | ||
356 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
357 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
358 | CONFIG_INET6_XFRM_MODE_BEET=y | ||
359 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | ||
360 | CONFIG_IPV6_SIT=y | ||
361 | CONFIG_IPV6_NDISC_NODETYPE=y | ||
362 | # CONFIG_IPV6_TUNNEL is not set | ||
363 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | ||
364 | # CONFIG_IPV6_MROUTE is not set | ||
365 | # CONFIG_NETWORK_SECMARK is not set | ||
366 | # CONFIG_NETFILTER is not set | ||
367 | # CONFIG_IP_DCCP is not set | ||
368 | CONFIG_IP_SCTP=m | ||
369 | # CONFIG_SCTP_DBG_MSG is not set | ||
370 | # CONFIG_SCTP_DBG_OBJCNT is not set | ||
371 | # CONFIG_SCTP_HMAC_NONE is not set | ||
372 | # CONFIG_SCTP_HMAC_SHA1 is not set | ||
373 | CONFIG_SCTP_HMAC_MD5=y | ||
374 | # CONFIG_TIPC is not set | ||
375 | # CONFIG_ATM is not set | ||
376 | # CONFIG_BRIDGE is not set | ||
377 | # CONFIG_NET_DSA is not set | ||
378 | # CONFIG_VLAN_8021Q is not set | ||
379 | # CONFIG_DECNET is not set | ||
380 | # CONFIG_LLC2 is not set | ||
381 | # CONFIG_IPX is not set | ||
382 | # CONFIG_ATALK is not set | ||
383 | # CONFIG_X25 is not set | ||
384 | # CONFIG_LAPB is not set | ||
385 | # CONFIG_ECONET is not set | ||
386 | # CONFIG_WAN_ROUTER is not set | ||
387 | # CONFIG_NET_SCHED is not set | ||
388 | # CONFIG_DCB is not set | ||
389 | |||
390 | # | ||
391 | # Network testing | ||
392 | # | ||
393 | # CONFIG_NET_PKTGEN is not set | ||
394 | # CONFIG_HAMRADIO is not set | ||
395 | # CONFIG_CAN is not set | ||
396 | # CONFIG_IRDA is not set | ||
397 | # CONFIG_BT is not set | ||
398 | # CONFIG_AF_RXRPC is not set | ||
399 | # CONFIG_PHONET is not set | ||
400 | CONFIG_FIB_RULES=y | ||
401 | CONFIG_WIRELESS=y | ||
402 | # CONFIG_CFG80211 is not set | ||
403 | CONFIG_WIRELESS_OLD_REGULATORY=y | ||
404 | # CONFIG_WIRELESS_EXT is not set | ||
405 | # CONFIG_LIB80211 is not set | ||
406 | # CONFIG_MAC80211 is not set | ||
407 | # CONFIG_WIMAX is not set | ||
408 | # CONFIG_RFKILL is not set | ||
409 | # CONFIG_NET_9P is not set | ||
410 | |||
411 | # | ||
412 | # Device Drivers | ||
413 | # | ||
414 | |||
415 | # | ||
416 | # Generic Driver Options | ||
417 | # | ||
418 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
419 | CONFIG_STANDALONE=y | ||
420 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
421 | CONFIG_FW_LOADER=y | ||
422 | CONFIG_FIRMWARE_IN_KERNEL=y | ||
423 | CONFIG_EXTRA_FIRMWARE="" | ||
424 | # CONFIG_DEBUG_DRIVER is not set | ||
425 | # CONFIG_DEBUG_DEVRES is not set | ||
426 | # CONFIG_SYS_HYPERVISOR is not set | ||
427 | # CONFIG_CONNECTOR is not set | ||
428 | # CONFIG_MTD is not set | ||
429 | CONFIG_OF_DEVICE=y | ||
430 | CONFIG_OF_I2C=y | ||
431 | # CONFIG_PARPORT is not set | ||
432 | CONFIG_BLK_DEV=y | ||
433 | # CONFIG_BLK_DEV_FD is not set | ||
434 | # CONFIG_BLK_CPQ_DA is not set | ||
435 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
436 | # CONFIG_BLK_DEV_DAC960 is not set | ||
437 | # CONFIG_BLK_DEV_UMEM is not set | ||
438 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
439 | CONFIG_BLK_DEV_LOOP=y | ||
440 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
441 | CONFIG_BLK_DEV_NBD=y | ||
442 | # CONFIG_BLK_DEV_SX8 is not set | ||
443 | # CONFIG_BLK_DEV_UB is not set | ||
444 | CONFIG_BLK_DEV_RAM=y | ||
445 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
446 | CONFIG_BLK_DEV_RAM_SIZE=131072 | ||
447 | # CONFIG_BLK_DEV_XIP is not set | ||
448 | # CONFIG_CDROM_PKTCDVD is not set | ||
449 | # CONFIG_ATA_OVER_ETH is not set | ||
450 | # CONFIG_BLK_DEV_HD is not set | ||
451 | CONFIG_MISC_DEVICES=y | ||
452 | # CONFIG_PHANTOM is not set | ||
453 | # CONFIG_EEPROM_93CX6 is not set | ||
454 | # CONFIG_SGI_IOC4 is not set | ||
455 | # CONFIG_TIFM_CORE is not set | ||
456 | # CONFIG_ICS932S401 is not set | ||
457 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
458 | # CONFIG_HP_ILO is not set | ||
459 | # CONFIG_C2PORT is not set | ||
460 | CONFIG_HAVE_IDE=y | ||
461 | # CONFIG_IDE is not set | ||
462 | |||
463 | # | ||
464 | # SCSI device support | ||
465 | # | ||
466 | # CONFIG_RAID_ATTRS is not set | ||
467 | CONFIG_SCSI=y | ||
468 | CONFIG_SCSI_DMA=y | ||
469 | # CONFIG_SCSI_TGT is not set | ||
470 | # CONFIG_SCSI_NETLINK is not set | ||
471 | CONFIG_SCSI_PROC_FS=y | ||
472 | |||
473 | # | ||
474 | # SCSI support type (disk, tape, CD-ROM) | ||
475 | # | ||
476 | CONFIG_BLK_DEV_SD=y | ||
477 | CONFIG_CHR_DEV_ST=y | ||
478 | # CONFIG_CHR_DEV_OSST is not set | ||
479 | CONFIG_BLK_DEV_SR=y | ||
480 | # CONFIG_BLK_DEV_SR_VENDOR is not set | ||
481 | CONFIG_CHR_DEV_SG=y | ||
482 | # CONFIG_CHR_DEV_SCH is not set | ||
483 | |||
484 | # | ||
485 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
486 | # | ||
487 | CONFIG_SCSI_MULTI_LUN=y | ||
488 | # CONFIG_SCSI_CONSTANTS is not set | ||
489 | CONFIG_SCSI_LOGGING=y | ||
490 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
491 | CONFIG_SCSI_WAIT_SCAN=m | ||
492 | |||
493 | # | ||
494 | # SCSI Transports | ||
495 | # | ||
496 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
497 | # CONFIG_SCSI_FC_ATTRS is not set | ||
498 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
499 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
500 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
501 | CONFIG_SCSI_LOWLEVEL=y | ||
502 | # CONFIG_ISCSI_TCP is not set | ||
503 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
504 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
505 | # CONFIG_SCSI_3W_9XXX is not set | ||
506 | # CONFIG_SCSI_ACARD is not set | ||
507 | # CONFIG_SCSI_AACRAID is not set | ||
508 | # CONFIG_SCSI_AIC7XXX is not set | ||
509 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
510 | # CONFIG_SCSI_AIC79XX is not set | ||
511 | # CONFIG_SCSI_AIC94XX is not set | ||
512 | # CONFIG_SCSI_DPT_I2O is not set | ||
513 | # CONFIG_SCSI_ADVANSYS is not set | ||
514 | # CONFIG_SCSI_ARCMSR is not set | ||
515 | # CONFIG_MEGARAID_NEWGEN is not set | ||
516 | # CONFIG_MEGARAID_LEGACY is not set | ||
517 | # CONFIG_MEGARAID_SAS is not set | ||
518 | # CONFIG_SCSI_HPTIOP is not set | ||
519 | # CONFIG_SCSI_BUSLOGIC is not set | ||
520 | # CONFIG_LIBFC is not set | ||
521 | # CONFIG_FCOE is not set | ||
522 | # CONFIG_SCSI_DMX3191D is not set | ||
523 | # CONFIG_SCSI_EATA is not set | ||
524 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
525 | # CONFIG_SCSI_GDTH is not set | ||
526 | # CONFIG_SCSI_IPS is not set | ||
527 | # CONFIG_SCSI_INITIO is not set | ||
528 | # CONFIG_SCSI_INIA100 is not set | ||
529 | # CONFIG_SCSI_MVSAS is not set | ||
530 | # CONFIG_SCSI_STEX is not set | ||
531 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
532 | # CONFIG_SCSI_IPR is not set | ||
533 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
534 | # CONFIG_SCSI_QLA_FC is not set | ||
535 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
536 | # CONFIG_SCSI_LPFC is not set | ||
537 | # CONFIG_SCSI_DC395x is not set | ||
538 | # CONFIG_SCSI_DC390T is not set | ||
539 | # CONFIG_SCSI_NSP32 is not set | ||
540 | # CONFIG_SCSI_DEBUG is not set | ||
541 | # CONFIG_SCSI_SRP is not set | ||
542 | # CONFIG_SCSI_DH is not set | ||
543 | CONFIG_ATA=y | ||
544 | # CONFIG_ATA_NONSTANDARD is not set | ||
545 | CONFIG_SATA_PMP=y | ||
546 | CONFIG_SATA_AHCI=y | ||
547 | # CONFIG_SATA_SIL24 is not set | ||
548 | # CONFIG_SATA_FSL is not set | ||
549 | CONFIG_ATA_SFF=y | ||
550 | # CONFIG_SATA_SVW is not set | ||
551 | # CONFIG_ATA_PIIX is not set | ||
552 | # CONFIG_SATA_MV is not set | ||
553 | # CONFIG_SATA_NV is not set | ||
554 | # CONFIG_PDC_ADMA is not set | ||
555 | # CONFIG_SATA_QSTOR is not set | ||
556 | # CONFIG_SATA_PROMISE is not set | ||
557 | # CONFIG_SATA_SX4 is not set | ||
558 | # CONFIG_SATA_SIL is not set | ||
559 | # CONFIG_SATA_SIS is not set | ||
560 | # CONFIG_SATA_ULI is not set | ||
561 | # CONFIG_SATA_VIA is not set | ||
562 | # CONFIG_SATA_VITESSE is not set | ||
563 | # CONFIG_SATA_INIC162X is not set | ||
564 | CONFIG_PATA_ALI=y | ||
565 | # CONFIG_PATA_AMD is not set | ||
566 | # CONFIG_PATA_ARTOP is not set | ||
567 | # CONFIG_PATA_ATIIXP is not set | ||
568 | # CONFIG_PATA_CMD640_PCI is not set | ||
569 | # CONFIG_PATA_CMD64X is not set | ||
570 | # CONFIG_PATA_CS5520 is not set | ||
571 | # CONFIG_PATA_CS5530 is not set | ||
572 | # CONFIG_PATA_CYPRESS is not set | ||
573 | # CONFIG_PATA_EFAR is not set | ||
574 | # CONFIG_ATA_GENERIC is not set | ||
575 | # CONFIG_PATA_HPT366 is not set | ||
576 | # CONFIG_PATA_HPT37X is not set | ||
577 | # CONFIG_PATA_HPT3X2N is not set | ||
578 | # CONFIG_PATA_HPT3X3 is not set | ||
579 | # CONFIG_PATA_IT821X is not set | ||
580 | # CONFIG_PATA_IT8213 is not set | ||
581 | # CONFIG_PATA_JMICRON is not set | ||
582 | # CONFIG_PATA_TRIFLEX is not set | ||
583 | # CONFIG_PATA_MARVELL is not set | ||
584 | # CONFIG_PATA_MPIIX is not set | ||
585 | # CONFIG_PATA_OLDPIIX is not set | ||
586 | # CONFIG_PATA_NETCELL is not set | ||
587 | # CONFIG_PATA_NINJA32 is not set | ||
588 | # CONFIG_PATA_NS87410 is not set | ||
589 | # CONFIG_PATA_NS87415 is not set | ||
590 | # CONFIG_PATA_OPTI is not set | ||
591 | # CONFIG_PATA_OPTIDMA is not set | ||
592 | # CONFIG_PATA_PDC_OLD is not set | ||
593 | # CONFIG_PATA_RADISYS is not set | ||
594 | # CONFIG_PATA_RZ1000 is not set | ||
595 | # CONFIG_PATA_SC1200 is not set | ||
596 | # CONFIG_PATA_SERVERWORKS is not set | ||
597 | # CONFIG_PATA_PDC2027X is not set | ||
598 | # CONFIG_PATA_SIL680 is not set | ||
599 | # CONFIG_PATA_SIS is not set | ||
600 | # CONFIG_PATA_VIA is not set | ||
601 | # CONFIG_PATA_WINBOND is not set | ||
602 | # CONFIG_PATA_PLATFORM is not set | ||
603 | # CONFIG_PATA_SCH is not set | ||
604 | # CONFIG_MD is not set | ||
605 | # CONFIG_FUSION is not set | ||
606 | |||
607 | # | ||
608 | # IEEE 1394 (FireWire) support | ||
609 | # | ||
610 | |||
611 | # | ||
612 | # Enable only one of the two stacks, unless you know what you are doing | ||
613 | # | ||
614 | # CONFIG_FIREWIRE is not set | ||
615 | # CONFIG_IEEE1394 is not set | ||
616 | # CONFIG_I2O is not set | ||
617 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
618 | CONFIG_NETDEVICES=y | ||
619 | CONFIG_DUMMY=y | ||
620 | # CONFIG_BONDING is not set | ||
621 | # CONFIG_MACVLAN is not set | ||
622 | # CONFIG_EQUALIZER is not set | ||
623 | # CONFIG_TUN is not set | ||
624 | # CONFIG_VETH is not set | ||
625 | # CONFIG_ARCNET is not set | ||
626 | CONFIG_PHYLIB=y | ||
627 | |||
628 | # | ||
629 | # MII PHY device drivers | ||
630 | # | ||
631 | # CONFIG_MARVELL_PHY is not set | ||
632 | # CONFIG_DAVICOM_PHY is not set | ||
633 | # CONFIG_QSEMI_PHY is not set | ||
634 | # CONFIG_LXT_PHY is not set | ||
635 | # CONFIG_CICADA_PHY is not set | ||
636 | CONFIG_VITESSE_PHY=y | ||
637 | # CONFIG_SMSC_PHY is not set | ||
638 | # CONFIG_BROADCOM_PHY is not set | ||
639 | # CONFIG_ICPLUS_PHY is not set | ||
640 | # CONFIG_REALTEK_PHY is not set | ||
641 | # CONFIG_NATIONAL_PHY is not set | ||
642 | # CONFIG_STE10XP is not set | ||
643 | # CONFIG_LSI_ET1011C_PHY is not set | ||
644 | # CONFIG_FIXED_PHY is not set | ||
645 | # CONFIG_MDIO_BITBANG is not set | ||
646 | CONFIG_NET_ETHERNET=y | ||
647 | CONFIG_MII=y | ||
648 | # CONFIG_HAPPYMEAL is not set | ||
649 | # CONFIG_SUNGEM is not set | ||
650 | # CONFIG_CASSINI is not set | ||
651 | # CONFIG_NET_VENDOR_3COM is not set | ||
652 | # CONFIG_NET_TULIP is not set | ||
653 | # CONFIG_HP100 is not set | ||
654 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
655 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
656 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
657 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
658 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
659 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
660 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
661 | # CONFIG_NET_PCI is not set | ||
662 | # CONFIG_B44 is not set | ||
663 | # CONFIG_ATL2 is not set | ||
664 | CONFIG_NETDEV_1000=y | ||
665 | # CONFIG_ACENIC is not set | ||
666 | # CONFIG_DL2K is not set | ||
667 | # CONFIG_E1000 is not set | ||
668 | # CONFIG_E1000E is not set | ||
669 | # CONFIG_IP1000 is not set | ||
670 | # CONFIG_IGB is not set | ||
671 | # CONFIG_NS83820 is not set | ||
672 | # CONFIG_HAMACHI is not set | ||
673 | # CONFIG_YELLOWFIN is not set | ||
674 | # CONFIG_R8169 is not set | ||
675 | # CONFIG_SIS190 is not set | ||
676 | # CONFIG_SKGE is not set | ||
677 | # CONFIG_SKY2 is not set | ||
678 | # CONFIG_VIA_VELOCITY is not set | ||
679 | # CONFIG_TIGON3 is not set | ||
680 | # CONFIG_BNX2 is not set | ||
681 | CONFIG_GIANFAR=y | ||
682 | # CONFIG_QLA3XXX is not set | ||
683 | # CONFIG_ATL1 is not set | ||
684 | # CONFIG_ATL1E is not set | ||
685 | # CONFIG_JME is not set | ||
686 | CONFIG_NETDEV_10000=y | ||
687 | # CONFIG_CHELSIO_T1 is not set | ||
688 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
689 | # CONFIG_CHELSIO_T3 is not set | ||
690 | # CONFIG_ENIC is not set | ||
691 | # CONFIG_IXGBE is not set | ||
692 | # CONFIG_IXGB is not set | ||
693 | # CONFIG_S2IO is not set | ||
694 | # CONFIG_MYRI10GE is not set | ||
695 | # CONFIG_NETXEN_NIC is not set | ||
696 | # CONFIG_NIU is not set | ||
697 | # CONFIG_MLX4_EN is not set | ||
698 | # CONFIG_MLX4_CORE is not set | ||
699 | # CONFIG_TEHUTI is not set | ||
700 | # CONFIG_BNX2X is not set | ||
701 | # CONFIG_QLGE is not set | ||
702 | # CONFIG_SFC is not set | ||
703 | # CONFIG_TR is not set | ||
704 | |||
705 | # | ||
706 | # Wireless LAN | ||
707 | # | ||
708 | # CONFIG_WLAN_PRE80211 is not set | ||
709 | # CONFIG_WLAN_80211 is not set | ||
710 | # CONFIG_IWLWIFI_LEDS is not set | ||
711 | |||
712 | # | ||
713 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
714 | # | ||
715 | |||
716 | # | ||
717 | # USB Network Adapters | ||
718 | # | ||
719 | # CONFIG_USB_CATC is not set | ||
720 | # CONFIG_USB_KAWETH is not set | ||
721 | # CONFIG_USB_PEGASUS is not set | ||
722 | # CONFIG_USB_RTL8150 is not set | ||
723 | # CONFIG_USB_USBNET is not set | ||
724 | # CONFIG_WAN is not set | ||
725 | # CONFIG_FDDI is not set | ||
726 | # CONFIG_HIPPI is not set | ||
727 | # CONFIG_PPP is not set | ||
728 | # CONFIG_SLIP is not set | ||
729 | # CONFIG_NET_FC is not set | ||
730 | # CONFIG_NETCONSOLE is not set | ||
731 | # CONFIG_NETPOLL is not set | ||
732 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
733 | # CONFIG_ISDN is not set | ||
734 | # CONFIG_PHONE is not set | ||
735 | |||
736 | # | ||
737 | # Input device support | ||
738 | # | ||
739 | CONFIG_INPUT=y | ||
740 | CONFIG_INPUT_FF_MEMLESS=m | ||
741 | # CONFIG_INPUT_POLLDEV is not set | ||
742 | |||
743 | # | ||
744 | # Userland interfaces | ||
745 | # | ||
746 | # CONFIG_INPUT_MOUSEDEV is not set | ||
747 | # CONFIG_INPUT_JOYDEV is not set | ||
748 | # CONFIG_INPUT_EVDEV is not set | ||
749 | # CONFIG_INPUT_EVBUG is not set | ||
750 | |||
751 | # | ||
752 | # Input Device Drivers | ||
753 | # | ||
754 | # CONFIG_INPUT_KEYBOARD is not set | ||
755 | # CONFIG_INPUT_MOUSE is not set | ||
756 | # CONFIG_INPUT_JOYSTICK is not set | ||
757 | # CONFIG_INPUT_TABLET is not set | ||
758 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
759 | # CONFIG_INPUT_MISC is not set | ||
760 | |||
761 | # | ||
762 | # Hardware I/O ports | ||
763 | # | ||
764 | CONFIG_SERIO=y | ||
765 | CONFIG_SERIO_I8042=y | ||
766 | CONFIG_SERIO_SERPORT=y | ||
767 | # CONFIG_SERIO_PCIPS2 is not set | ||
768 | CONFIG_SERIO_LIBPS2=y | ||
769 | # CONFIG_SERIO_RAW is not set | ||
770 | # CONFIG_SERIO_XILINX_XPS_PS2 is not set | ||
771 | # CONFIG_GAMEPORT is not set | ||
772 | |||
773 | # | ||
774 | # Character devices | ||
775 | # | ||
776 | CONFIG_VT=y | ||
777 | CONFIG_CONSOLE_TRANSLATIONS=y | ||
778 | CONFIG_VT_CONSOLE=y | ||
779 | CONFIG_HW_CONSOLE=y | ||
780 | # CONFIG_VT_HW_CONSOLE_BINDING is not set | ||
781 | CONFIG_DEVKMEM=y | ||
782 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
783 | # CONFIG_NOZOMI is not set | ||
784 | |||
785 | # | ||
786 | # Serial drivers | ||
787 | # | ||
788 | CONFIG_SERIAL_8250=y | ||
789 | CONFIG_SERIAL_8250_CONSOLE=y | ||
790 | CONFIG_SERIAL_8250_PCI=y | ||
791 | CONFIG_SERIAL_8250_NR_UARTS=2 | ||
792 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
793 | CONFIG_SERIAL_8250_EXTENDED=y | ||
794 | CONFIG_SERIAL_8250_MANY_PORTS=y | ||
795 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
796 | CONFIG_SERIAL_8250_DETECT_IRQ=y | ||
797 | CONFIG_SERIAL_8250_RSA=y | ||
798 | |||
799 | # | ||
800 | # Non-8250 serial port support | ||
801 | # | ||
802 | # CONFIG_SERIAL_UARTLITE is not set | ||
803 | CONFIG_SERIAL_CORE=y | ||
804 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
805 | # CONFIG_SERIAL_JSM is not set | ||
806 | # CONFIG_SERIAL_OF_PLATFORM is not set | ||
807 | CONFIG_UNIX98_PTYS=y | ||
808 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
809 | CONFIG_LEGACY_PTYS=y | ||
810 | CONFIG_LEGACY_PTY_COUNT=256 | ||
811 | # CONFIG_HVC_UDBG is not set | ||
812 | # CONFIG_IPMI_HANDLER is not set | ||
813 | CONFIG_HW_RANDOM=y | ||
814 | CONFIG_NVRAM=y | ||
815 | # CONFIG_R3964 is not set | ||
816 | # CONFIG_APPLICOM is not set | ||
817 | # CONFIG_RAW_DRIVER is not set | ||
818 | # CONFIG_TCG_TPM is not set | ||
819 | CONFIG_DEVPORT=y | ||
820 | CONFIG_I2C=y | ||
821 | CONFIG_I2C_BOARDINFO=y | ||
822 | # CONFIG_I2C_CHARDEV is not set | ||
823 | CONFIG_I2C_HELPER_AUTO=y | ||
824 | |||
825 | # | ||
826 | # I2C Hardware Bus support | ||
827 | # | ||
828 | |||
829 | # | ||
830 | # PC SMBus host controller drivers | ||
831 | # | ||
832 | # CONFIG_I2C_ALI1535 is not set | ||
833 | # CONFIG_I2C_ALI1563 is not set | ||
834 | # CONFIG_I2C_ALI15X3 is not set | ||
835 | # CONFIG_I2C_AMD756 is not set | ||
836 | # CONFIG_I2C_AMD8111 is not set | ||
837 | # CONFIG_I2C_I801 is not set | ||
838 | # CONFIG_I2C_ISCH is not set | ||
839 | # CONFIG_I2C_PIIX4 is not set | ||
840 | # CONFIG_I2C_NFORCE2 is not set | ||
841 | # CONFIG_I2C_SIS5595 is not set | ||
842 | # CONFIG_I2C_SIS630 is not set | ||
843 | # CONFIG_I2C_SIS96X is not set | ||
844 | # CONFIG_I2C_VIA is not set | ||
845 | # CONFIG_I2C_VIAPRO is not set | ||
846 | |||
847 | # | ||
848 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
849 | # | ||
850 | CONFIG_I2C_MPC=y | ||
851 | # CONFIG_I2C_OCORES is not set | ||
852 | # CONFIG_I2C_SIMTEC is not set | ||
853 | |||
854 | # | ||
855 | # External I2C/SMBus adapter drivers | ||
856 | # | ||
857 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
858 | # CONFIG_I2C_TAOS_EVM is not set | ||
859 | # CONFIG_I2C_TINY_USB is not set | ||
860 | |||
861 | # | ||
862 | # Graphics adapter I2C/DDC channel drivers | ||
863 | # | ||
864 | # CONFIG_I2C_VOODOO3 is not set | ||
865 | |||
866 | # | ||
867 | # Other I2C/SMBus bus drivers | ||
868 | # | ||
869 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
870 | # CONFIG_I2C_STUB is not set | ||
871 | |||
872 | # | ||
873 | # Miscellaneous I2C Chip support | ||
874 | # | ||
875 | # CONFIG_DS1682 is not set | ||
876 | # CONFIG_EEPROM_AT24 is not set | ||
877 | CONFIG_EEPROM_LEGACY=y | ||
878 | # CONFIG_SENSORS_PCF8574 is not set | ||
879 | # CONFIG_PCF8575 is not set | ||
880 | # CONFIG_SENSORS_PCA9539 is not set | ||
881 | # CONFIG_SENSORS_PCF8591 is not set | ||
882 | # CONFIG_SENSORS_MAX6875 is not set | ||
883 | # CONFIG_SENSORS_TSL2550 is not set | ||
884 | # CONFIG_I2C_DEBUG_CORE is not set | ||
885 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
886 | # CONFIG_I2C_DEBUG_BUS is not set | ||
887 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
888 | # CONFIG_SPI is not set | ||
889 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
890 | # CONFIG_GPIOLIB is not set | ||
891 | # CONFIG_W1 is not set | ||
892 | # CONFIG_POWER_SUPPLY is not set | ||
893 | # CONFIG_HWMON is not set | ||
894 | # CONFIG_THERMAL is not set | ||
895 | # CONFIG_THERMAL_HWMON is not set | ||
896 | # CONFIG_WATCHDOG is not set | ||
897 | CONFIG_SSB_POSSIBLE=y | ||
898 | |||
899 | # | ||
900 | # Sonics Silicon Backplane | ||
901 | # | ||
902 | # CONFIG_SSB is not set | ||
903 | |||
904 | # | ||
905 | # Multifunction device drivers | ||
906 | # | ||
907 | # CONFIG_MFD_CORE is not set | ||
908 | # CONFIG_MFD_SM501 is not set | ||
909 | # CONFIG_HTC_PASIC3 is not set | ||
910 | # CONFIG_TWL4030_CORE is not set | ||
911 | # CONFIG_MFD_TMIO is not set | ||
912 | # CONFIG_PMIC_DA903X is not set | ||
913 | # CONFIG_MFD_WM8400 is not set | ||
914 | # CONFIG_MFD_WM8350_I2C is not set | ||
915 | # CONFIG_MFD_PCF50633 is not set | ||
916 | # CONFIG_REGULATOR is not set | ||
917 | |||
918 | # | ||
919 | # Multimedia devices | ||
920 | # | ||
921 | |||
922 | # | ||
923 | # Multimedia core support | ||
924 | # | ||
925 | # CONFIG_VIDEO_DEV is not set | ||
926 | CONFIG_DVB_CORE=m | ||
927 | CONFIG_VIDEO_MEDIA=m | ||
928 | |||
929 | # | ||
930 | # Multimedia drivers | ||
931 | # | ||
932 | # CONFIG_MEDIA_ATTACH is not set | ||
933 | CONFIG_MEDIA_TUNER=m | ||
934 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | ||
935 | CONFIG_MEDIA_TUNER_SIMPLE=m | ||
936 | CONFIG_MEDIA_TUNER_TDA8290=m | ||
937 | CONFIG_MEDIA_TUNER_TDA9887=m | ||
938 | CONFIG_MEDIA_TUNER_TEA5761=m | ||
939 | CONFIG_MEDIA_TUNER_TEA5767=m | ||
940 | CONFIG_MEDIA_TUNER_MT20XX=m | ||
941 | CONFIG_MEDIA_TUNER_XC2028=m | ||
942 | CONFIG_MEDIA_TUNER_XC5000=m | ||
943 | # CONFIG_DVB_DYNAMIC_MINORS is not set | ||
944 | CONFIG_DVB_CAPTURE_DRIVERS=y | ||
945 | |||
946 | # | ||
947 | # Supported SAA7146 based PCI Adapters | ||
948 | # | ||
949 | # CONFIG_TTPCI_EEPROM is not set | ||
950 | # CONFIG_DVB_BUDGET_CORE is not set | ||
951 | |||
952 | # | ||
953 | # Supported USB Adapters | ||
954 | # | ||
955 | # CONFIG_DVB_USB is not set | ||
956 | # CONFIG_DVB_TTUSB_BUDGET is not set | ||
957 | # CONFIG_DVB_TTUSB_DEC is not set | ||
958 | # CONFIG_DVB_SIANO_SMS1XXX is not set | ||
959 | |||
960 | # | ||
961 | # Supported FlexCopII (B2C2) Adapters | ||
962 | # | ||
963 | # CONFIG_DVB_B2C2_FLEXCOP is not set | ||
964 | |||
965 | # | ||
966 | # Supported BT878 Adapters | ||
967 | # | ||
968 | |||
969 | # | ||
970 | # Supported Pluto2 Adapters | ||
971 | # | ||
972 | # CONFIG_DVB_PLUTO2 is not set | ||
973 | |||
974 | # | ||
975 | # Supported SDMC DM1105 Adapters | ||
976 | # | ||
977 | # CONFIG_DVB_DM1105 is not set | ||
978 | |||
979 | # | ||
980 | # Supported DVB Frontends | ||
981 | # | ||
982 | |||
983 | # | ||
984 | # Customise DVB Frontends | ||
985 | # | ||
986 | # CONFIG_DVB_FE_CUSTOMISE is not set | ||
987 | |||
988 | # | ||
989 | # Multistandard (satellite) frontends | ||
990 | # | ||
991 | # CONFIG_DVB_STB0899 is not set | ||
992 | # CONFIG_DVB_STB6100 is not set | ||
993 | |||
994 | # | ||
995 | # DVB-S (satellite) frontends | ||
996 | # | ||
997 | # CONFIG_DVB_CX24110 is not set | ||
998 | # CONFIG_DVB_CX24123 is not set | ||
999 | # CONFIG_DVB_MT312 is not set | ||
1000 | # CONFIG_DVB_S5H1420 is not set | ||
1001 | # CONFIG_DVB_STV0288 is not set | ||
1002 | # CONFIG_DVB_STB6000 is not set | ||
1003 | # CONFIG_DVB_STV0299 is not set | ||
1004 | # CONFIG_DVB_TDA8083 is not set | ||
1005 | # CONFIG_DVB_TDA10086 is not set | ||
1006 | # CONFIG_DVB_TDA8261 is not set | ||
1007 | # CONFIG_DVB_VES1X93 is not set | ||
1008 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
1009 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1010 | # CONFIG_DVB_TDA826X is not set | ||
1011 | # CONFIG_DVB_TUA6100 is not set | ||
1012 | # CONFIG_DVB_CX24116 is not set | ||
1013 | # CONFIG_DVB_SI21XX is not set | ||
1014 | |||
1015 | # | ||
1016 | # DVB-T (terrestrial) frontends | ||
1017 | # | ||
1018 | # CONFIG_DVB_SP8870 is not set | ||
1019 | # CONFIG_DVB_SP887X is not set | ||
1020 | # CONFIG_DVB_CX22700 is not set | ||
1021 | # CONFIG_DVB_CX22702 is not set | ||
1022 | # CONFIG_DVB_DRX397XD is not set | ||
1023 | # CONFIG_DVB_L64781 is not set | ||
1024 | # CONFIG_DVB_TDA1004X is not set | ||
1025 | # CONFIG_DVB_NXT6000 is not set | ||
1026 | # CONFIG_DVB_MT352 is not set | ||
1027 | # CONFIG_DVB_ZL10353 is not set | ||
1028 | # CONFIG_DVB_DIB3000MB is not set | ||
1029 | # CONFIG_DVB_DIB3000MC is not set | ||
1030 | # CONFIG_DVB_DIB7000M is not set | ||
1031 | # CONFIG_DVB_DIB7000P is not set | ||
1032 | # CONFIG_DVB_TDA10048 is not set | ||
1033 | |||
1034 | # | ||
1035 | # DVB-C (cable) frontends | ||
1036 | # | ||
1037 | # CONFIG_DVB_VES1820 is not set | ||
1038 | # CONFIG_DVB_TDA10021 is not set | ||
1039 | # CONFIG_DVB_TDA10023 is not set | ||
1040 | # CONFIG_DVB_STV0297 is not set | ||
1041 | |||
1042 | # | ||
1043 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
1044 | # | ||
1045 | # CONFIG_DVB_NXT200X is not set | ||
1046 | # CONFIG_DVB_OR51211 is not set | ||
1047 | # CONFIG_DVB_OR51132 is not set | ||
1048 | # CONFIG_DVB_BCM3510 is not set | ||
1049 | # CONFIG_DVB_LGDT330X is not set | ||
1050 | # CONFIG_DVB_LGDT3304 is not set | ||
1051 | # CONFIG_DVB_S5H1409 is not set | ||
1052 | # CONFIG_DVB_AU8522 is not set | ||
1053 | # CONFIG_DVB_S5H1411 is not set | ||
1054 | |||
1055 | # | ||
1056 | # ISDB-T (terrestrial) frontends | ||
1057 | # | ||
1058 | # CONFIG_DVB_S921 is not set | ||
1059 | |||
1060 | # | ||
1061 | # Digital terrestrial only tuners/PLL | ||
1062 | # | ||
1063 | # CONFIG_DVB_PLL is not set | ||
1064 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
1065 | |||
1066 | # | ||
1067 | # SEC control devices for DVB-S | ||
1068 | # | ||
1069 | # CONFIG_DVB_LNBP21 is not set | ||
1070 | # CONFIG_DVB_ISL6405 is not set | ||
1071 | # CONFIG_DVB_ISL6421 is not set | ||
1072 | # CONFIG_DVB_LGS8GL5 is not set | ||
1073 | |||
1074 | # | ||
1075 | # Tools to develop new frontends | ||
1076 | # | ||
1077 | # CONFIG_DVB_DUMMY_FE is not set | ||
1078 | # CONFIG_DVB_AF9013 is not set | ||
1079 | CONFIG_DAB=y | ||
1080 | # CONFIG_USB_DABUSB is not set | ||
1081 | |||
1082 | # | ||
1083 | # Graphics support | ||
1084 | # | ||
1085 | # CONFIG_AGP is not set | ||
1086 | # CONFIG_DRM is not set | ||
1087 | # CONFIG_VGASTATE is not set | ||
1088 | CONFIG_VIDEO_OUTPUT_CONTROL=y | ||
1089 | # CONFIG_FB is not set | ||
1090 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
1091 | |||
1092 | # | ||
1093 | # Display device support | ||
1094 | # | ||
1095 | # CONFIG_DISPLAY_SUPPORT is not set | ||
1096 | |||
1097 | # | ||
1098 | # Console display driver support | ||
1099 | # | ||
1100 | CONFIG_VGA_CONSOLE=y | ||
1101 | # CONFIG_VGACON_SOFT_SCROLLBACK is not set | ||
1102 | CONFIG_DUMMY_CONSOLE=y | ||
1103 | CONFIG_SOUND=y | ||
1104 | CONFIG_SOUND_OSS_CORE=y | ||
1105 | CONFIG_SND=y | ||
1106 | CONFIG_SND_TIMER=y | ||
1107 | CONFIG_SND_PCM=y | ||
1108 | # CONFIG_SND_SEQUENCER is not set | ||
1109 | CONFIG_SND_OSSEMUL=y | ||
1110 | CONFIG_SND_MIXER_OSS=y | ||
1111 | CONFIG_SND_PCM_OSS=y | ||
1112 | CONFIG_SND_PCM_OSS_PLUGINS=y | ||
1113 | # CONFIG_SND_HRTIMER is not set | ||
1114 | # CONFIG_SND_DYNAMIC_MINORS is not set | ||
1115 | # CONFIG_SND_SUPPORT_OLD_API is not set | ||
1116 | CONFIG_SND_VERBOSE_PROCFS=y | ||
1117 | # CONFIG_SND_VERBOSE_PRINTK is not set | ||
1118 | # CONFIG_SND_DEBUG is not set | ||
1119 | CONFIG_SND_VMASTER=y | ||
1120 | CONFIG_SND_AC97_CODEC=y | ||
1121 | CONFIG_SND_DRIVERS=y | ||
1122 | # CONFIG_SND_DUMMY is not set | ||
1123 | # CONFIG_SND_MTPAV is not set | ||
1124 | # CONFIG_SND_SERIAL_U16550 is not set | ||
1125 | # CONFIG_SND_MPU401 is not set | ||
1126 | # CONFIG_SND_AC97_POWER_SAVE is not set | ||
1127 | CONFIG_SND_PCI=y | ||
1128 | # CONFIG_SND_AD1889 is not set | ||
1129 | # CONFIG_SND_ALS300 is not set | ||
1130 | # CONFIG_SND_ALS4000 is not set | ||
1131 | # CONFIG_SND_ALI5451 is not set | ||
1132 | # CONFIG_SND_ATIIXP is not set | ||
1133 | # CONFIG_SND_ATIIXP_MODEM is not set | ||
1134 | # CONFIG_SND_AU8810 is not set | ||
1135 | # CONFIG_SND_AU8820 is not set | ||
1136 | # CONFIG_SND_AU8830 is not set | ||
1137 | # CONFIG_SND_AW2 is not set | ||
1138 | # CONFIG_SND_AZT3328 is not set | ||
1139 | # CONFIG_SND_BT87X is not set | ||
1140 | # CONFIG_SND_CA0106 is not set | ||
1141 | # CONFIG_SND_CMIPCI is not set | ||
1142 | # CONFIG_SND_OXYGEN is not set | ||
1143 | # CONFIG_SND_CS4281 is not set | ||
1144 | # CONFIG_SND_CS46XX is not set | ||
1145 | # CONFIG_SND_CS5530 is not set | ||
1146 | # CONFIG_SND_DARLA20 is not set | ||
1147 | # CONFIG_SND_GINA20 is not set | ||
1148 | # CONFIG_SND_LAYLA20 is not set | ||
1149 | # CONFIG_SND_DARLA24 is not set | ||
1150 | # CONFIG_SND_GINA24 is not set | ||
1151 | # CONFIG_SND_LAYLA24 is not set | ||
1152 | # CONFIG_SND_MONA is not set | ||
1153 | # CONFIG_SND_MIA is not set | ||
1154 | # CONFIG_SND_ECHO3G is not set | ||
1155 | # CONFIG_SND_INDIGO is not set | ||
1156 | # CONFIG_SND_INDIGOIO is not set | ||
1157 | # CONFIG_SND_INDIGODJ is not set | ||
1158 | # CONFIG_SND_EMU10K1 is not set | ||
1159 | # CONFIG_SND_EMU10K1X is not set | ||
1160 | # CONFIG_SND_ENS1370 is not set | ||
1161 | # CONFIG_SND_ENS1371 is not set | ||
1162 | # CONFIG_SND_ES1938 is not set | ||
1163 | # CONFIG_SND_ES1968 is not set | ||
1164 | # CONFIG_SND_FM801 is not set | ||
1165 | # CONFIG_SND_HDA_INTEL is not set | ||
1166 | # CONFIG_SND_HDSP is not set | ||
1167 | # CONFIG_SND_HDSPM is not set | ||
1168 | # CONFIG_SND_HIFIER is not set | ||
1169 | # CONFIG_SND_ICE1712 is not set | ||
1170 | # CONFIG_SND_ICE1724 is not set | ||
1171 | CONFIG_SND_INTEL8X0=y | ||
1172 | # CONFIG_SND_INTEL8X0M is not set | ||
1173 | # CONFIG_SND_KORG1212 is not set | ||
1174 | # CONFIG_SND_MAESTRO3 is not set | ||
1175 | # CONFIG_SND_MIXART is not set | ||
1176 | # CONFIG_SND_NM256 is not set | ||
1177 | # CONFIG_SND_PCXHR is not set | ||
1178 | # CONFIG_SND_RIPTIDE is not set | ||
1179 | # CONFIG_SND_RME32 is not set | ||
1180 | # CONFIG_SND_RME96 is not set | ||
1181 | # CONFIG_SND_RME9652 is not set | ||
1182 | # CONFIG_SND_SONICVIBES is not set | ||
1183 | # CONFIG_SND_TRIDENT is not set | ||
1184 | # CONFIG_SND_VIA82XX is not set | ||
1185 | # CONFIG_SND_VIA82XX_MODEM is not set | ||
1186 | # CONFIG_SND_VIRTUOSO is not set | ||
1187 | # CONFIG_SND_VX222 is not set | ||
1188 | # CONFIG_SND_YMFPCI is not set | ||
1189 | CONFIG_SND_PPC=y | ||
1190 | CONFIG_SND_USB=y | ||
1191 | # CONFIG_SND_USB_AUDIO is not set | ||
1192 | # CONFIG_SND_USB_USX2Y is not set | ||
1193 | # CONFIG_SND_USB_CAIAQ is not set | ||
1194 | # CONFIG_SND_SOC is not set | ||
1195 | # CONFIG_SOUND_PRIME is not set | ||
1196 | CONFIG_AC97_BUS=y | ||
1197 | CONFIG_HID_SUPPORT=y | ||
1198 | CONFIG_HID=y | ||
1199 | # CONFIG_HID_DEBUG is not set | ||
1200 | # CONFIG_HIDRAW is not set | ||
1201 | |||
1202 | # | ||
1203 | # USB Input Devices | ||
1204 | # | ||
1205 | CONFIG_USB_HID=y | ||
1206 | # CONFIG_HID_PID is not set | ||
1207 | # CONFIG_USB_HIDDEV is not set | ||
1208 | |||
1209 | # | ||
1210 | # Special HID drivers | ||
1211 | # | ||
1212 | CONFIG_HID_COMPAT=y | ||
1213 | CONFIG_HID_A4TECH=y | ||
1214 | CONFIG_HID_APPLE=y | ||
1215 | CONFIG_HID_BELKIN=y | ||
1216 | CONFIG_HID_CHERRY=y | ||
1217 | CONFIG_HID_CHICONY=y | ||
1218 | CONFIG_HID_CYPRESS=y | ||
1219 | CONFIG_HID_EZKEY=y | ||
1220 | CONFIG_HID_GYRATION=y | ||
1221 | CONFIG_HID_LOGITECH=y | ||
1222 | # CONFIG_LOGITECH_FF is not set | ||
1223 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | ||
1224 | CONFIG_HID_MICROSOFT=y | ||
1225 | CONFIG_HID_MONTEREY=y | ||
1226 | # CONFIG_HID_NTRIG is not set | ||
1227 | CONFIG_HID_PANTHERLORD=y | ||
1228 | # CONFIG_PANTHERLORD_FF is not set | ||
1229 | CONFIG_HID_PETALYNX=y | ||
1230 | CONFIG_HID_SAMSUNG=y | ||
1231 | CONFIG_HID_SONY=y | ||
1232 | CONFIG_HID_SUNPLUS=y | ||
1233 | # CONFIG_GREENASIA_FF is not set | ||
1234 | # CONFIG_HID_TOPSEED is not set | ||
1235 | CONFIG_THRUSTMASTER_FF=m | ||
1236 | CONFIG_ZEROPLUS_FF=m | ||
1237 | CONFIG_USB_SUPPORT=y | ||
1238 | CONFIG_USB_ARCH_HAS_HCD=y | ||
1239 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
1240 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
1241 | CONFIG_USB=y | ||
1242 | # CONFIG_USB_DEBUG is not set | ||
1243 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
1244 | |||
1245 | # | ||
1246 | # Miscellaneous USB options | ||
1247 | # | ||
1248 | CONFIG_USB_DEVICEFS=y | ||
1249 | CONFIG_USB_DEVICE_CLASS=y | ||
1250 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1251 | # CONFIG_USB_OTG is not set | ||
1252 | # CONFIG_USB_OTG_WHITELIST is not set | ||
1253 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
1254 | CONFIG_USB_MON=y | ||
1255 | # CONFIG_USB_WUSB is not set | ||
1256 | # CONFIG_USB_WUSB_CBAF is not set | ||
1257 | |||
1258 | # | ||
1259 | # USB Host Controller Drivers | ||
1260 | # | ||
1261 | # CONFIG_USB_C67X00_HCD is not set | ||
1262 | CONFIG_USB_EHCI_HCD=y | ||
1263 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
1264 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | ||
1265 | # CONFIG_USB_EHCI_FSL is not set | ||
1266 | CONFIG_USB_EHCI_HCD_PPC_OF=y | ||
1267 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1268 | # CONFIG_USB_ISP116X_HCD is not set | ||
1269 | # CONFIG_USB_ISP1760_HCD is not set | ||
1270 | CONFIG_USB_OHCI_HCD=y | ||
1271 | CONFIG_USB_OHCI_HCD_PPC_OF=y | ||
1272 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | ||
1273 | CONFIG_USB_OHCI_HCD_PPC_OF_LE=y | ||
1274 | CONFIG_USB_OHCI_HCD_PCI=y | ||
1275 | CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y | ||
1276 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | ||
1277 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1278 | # CONFIG_USB_UHCI_HCD is not set | ||
1279 | # CONFIG_USB_SL811_HCD is not set | ||
1280 | # CONFIG_USB_R8A66597_HCD is not set | ||
1281 | # CONFIG_USB_WHCI_HCD is not set | ||
1282 | # CONFIG_USB_HWA_HCD is not set | ||
1283 | |||
1284 | # | ||
1285 | # USB Device Class drivers | ||
1286 | # | ||
1287 | # CONFIG_USB_ACM is not set | ||
1288 | # CONFIG_USB_PRINTER is not set | ||
1289 | # CONFIG_USB_WDM is not set | ||
1290 | # CONFIG_USB_TMC is not set | ||
1291 | |||
1292 | # | ||
1293 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | ||
1294 | # | ||
1295 | |||
1296 | # | ||
1297 | # see USB_STORAGE Help for more information | ||
1298 | # | ||
1299 | CONFIG_USB_STORAGE=y | ||
1300 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1301 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1302 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1303 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1304 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1305 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1306 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1307 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1308 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1309 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
1310 | # CONFIG_USB_STORAGE_KARMA is not set | ||
1311 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | ||
1312 | # CONFIG_USB_LIBUSUAL is not set | ||
1313 | |||
1314 | # | ||
1315 | # USB Imaging devices | ||
1316 | # | ||
1317 | # CONFIG_USB_MDC800 is not set | ||
1318 | # CONFIG_USB_MICROTEK is not set | ||
1319 | |||
1320 | # | ||
1321 | # USB port drivers | ||
1322 | # | ||
1323 | # CONFIG_USB_SERIAL is not set | ||
1324 | |||
1325 | # | ||
1326 | # USB Miscellaneous drivers | ||
1327 | # | ||
1328 | # CONFIG_USB_EMI62 is not set | ||
1329 | # CONFIG_USB_EMI26 is not set | ||
1330 | # CONFIG_USB_ADUTUX is not set | ||
1331 | # CONFIG_USB_SEVSEG is not set | ||
1332 | # CONFIG_USB_RIO500 is not set | ||
1333 | # CONFIG_USB_LEGOTOWER is not set | ||
1334 | # CONFIG_USB_LCD is not set | ||
1335 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1336 | # CONFIG_USB_LED is not set | ||
1337 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1338 | # CONFIG_USB_CYTHERM is not set | ||
1339 | # CONFIG_USB_PHIDGET is not set | ||
1340 | # CONFIG_USB_IDMOUSE is not set | ||
1341 | # CONFIG_USB_FTDI_ELAN is not set | ||
1342 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1343 | # CONFIG_USB_SISUSBVGA is not set | ||
1344 | # CONFIG_USB_LD is not set | ||
1345 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1346 | # CONFIG_USB_IOWARRIOR is not set | ||
1347 | # CONFIG_USB_TEST is not set | ||
1348 | # CONFIG_USB_ISIGHTFW is not set | ||
1349 | # CONFIG_USB_VST is not set | ||
1350 | # CONFIG_USB_GADGET is not set | ||
1351 | |||
1352 | # | ||
1353 | # OTG and related infrastructure | ||
1354 | # | ||
1355 | # CONFIG_UWB is not set | ||
1356 | # CONFIG_MMC is not set | ||
1357 | # CONFIG_MEMSTICK is not set | ||
1358 | # CONFIG_NEW_LEDS is not set | ||
1359 | # CONFIG_ACCESSIBILITY is not set | ||
1360 | # CONFIG_INFINIBAND is not set | ||
1361 | # CONFIG_EDAC is not set | ||
1362 | CONFIG_RTC_LIB=y | ||
1363 | CONFIG_RTC_CLASS=y | ||
1364 | CONFIG_RTC_HCTOSYS=y | ||
1365 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
1366 | # CONFIG_RTC_DEBUG is not set | ||
1367 | |||
1368 | # | ||
1369 | # RTC interfaces | ||
1370 | # | ||
1371 | CONFIG_RTC_INTF_SYSFS=y | ||
1372 | CONFIG_RTC_INTF_PROC=y | ||
1373 | CONFIG_RTC_INTF_DEV=y | ||
1374 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
1375 | # CONFIG_RTC_DRV_TEST is not set | ||
1376 | |||
1377 | # | ||
1378 | # I2C RTC drivers | ||
1379 | # | ||
1380 | # CONFIG_RTC_DRV_DS1307 is not set | ||
1381 | # CONFIG_RTC_DRV_DS1374 is not set | ||
1382 | # CONFIG_RTC_DRV_DS1672 is not set | ||
1383 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
1384 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
1385 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
1386 | # CONFIG_RTC_DRV_X1205 is not set | ||
1387 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
1388 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
1389 | # CONFIG_RTC_DRV_M41T80 is not set | ||
1390 | # CONFIG_RTC_DRV_S35390A is not set | ||
1391 | # CONFIG_RTC_DRV_FM3130 is not set | ||
1392 | # CONFIG_RTC_DRV_RX8581 is not set | ||
1393 | |||
1394 | # | ||
1395 | # SPI RTC drivers | ||
1396 | # | ||
1397 | |||
1398 | # | ||
1399 | # Platform RTC drivers | ||
1400 | # | ||
1401 | CONFIG_RTC_DRV_CMOS=y | ||
1402 | # CONFIG_RTC_DRV_DS1286 is not set | ||
1403 | # CONFIG_RTC_DRV_DS1511 is not set | ||
1404 | # CONFIG_RTC_DRV_DS1553 is not set | ||
1405 | # CONFIG_RTC_DRV_DS1742 is not set | ||
1406 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
1407 | # CONFIG_RTC_DRV_M48T86 is not set | ||
1408 | # CONFIG_RTC_DRV_M48T35 is not set | ||
1409 | # CONFIG_RTC_DRV_M48T59 is not set | ||
1410 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
1411 | # CONFIG_RTC_DRV_V3020 is not set | ||
1412 | |||
1413 | # | ||
1414 | # on-CPU RTC drivers | ||
1415 | # | ||
1416 | # CONFIG_RTC_DRV_PPC is not set | ||
1417 | CONFIG_DMADEVICES=y | ||
1418 | |||
1419 | # | ||
1420 | # DMA Devices | ||
1421 | # | ||
1422 | CONFIG_FSL_DMA=y | ||
1423 | CONFIG_DMA_ENGINE=y | ||
1424 | |||
1425 | # | ||
1426 | # DMA Clients | ||
1427 | # | ||
1428 | # CONFIG_NET_DMA is not set | ||
1429 | # CONFIG_DMATEST is not set | ||
1430 | # CONFIG_UIO is not set | ||
1431 | # CONFIG_STAGING is not set | ||
1432 | |||
1433 | # | ||
1434 | # File systems | ||
1435 | # | ||
1436 | CONFIG_EXT2_FS=y | ||
1437 | # CONFIG_EXT2_FS_XATTR is not set | ||
1438 | # CONFIG_EXT2_FS_XIP is not set | ||
1439 | CONFIG_EXT3_FS=y | ||
1440 | CONFIG_EXT3_FS_XATTR=y | ||
1441 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
1442 | # CONFIG_EXT3_FS_SECURITY is not set | ||
1443 | # CONFIG_EXT4_FS is not set | ||
1444 | CONFIG_JBD=y | ||
1445 | CONFIG_FS_MBCACHE=y | ||
1446 | # CONFIG_REISERFS_FS is not set | ||
1447 | # CONFIG_JFS_FS is not set | ||
1448 | # CONFIG_FS_POSIX_ACL is not set | ||
1449 | CONFIG_FILE_LOCKING=y | ||
1450 | # CONFIG_XFS_FS is not set | ||
1451 | # CONFIG_GFS2_FS is not set | ||
1452 | # CONFIG_OCFS2_FS is not set | ||
1453 | # CONFIG_BTRFS_FS is not set | ||
1454 | CONFIG_DNOTIFY=y | ||
1455 | CONFIG_INOTIFY=y | ||
1456 | CONFIG_INOTIFY_USER=y | ||
1457 | # CONFIG_QUOTA is not set | ||
1458 | # CONFIG_AUTOFS_FS is not set | ||
1459 | # CONFIG_AUTOFS4_FS is not set | ||
1460 | # CONFIG_FUSE_FS is not set | ||
1461 | |||
1462 | # | ||
1463 | # CD-ROM/DVD Filesystems | ||
1464 | # | ||
1465 | CONFIG_ISO9660_FS=m | ||
1466 | CONFIG_JOLIET=y | ||
1467 | CONFIG_ZISOFS=y | ||
1468 | CONFIG_UDF_FS=m | ||
1469 | CONFIG_UDF_NLS=y | ||
1470 | |||
1471 | # | ||
1472 | # DOS/FAT/NT Filesystems | ||
1473 | # | ||
1474 | CONFIG_FAT_FS=y | ||
1475 | CONFIG_MSDOS_FS=m | ||
1476 | CONFIG_VFAT_FS=y | ||
1477 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
1478 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
1479 | CONFIG_NTFS_FS=y | ||
1480 | # CONFIG_NTFS_DEBUG is not set | ||
1481 | # CONFIG_NTFS_RW is not set | ||
1482 | |||
1483 | # | ||
1484 | # Pseudo filesystems | ||
1485 | # | ||
1486 | CONFIG_PROC_FS=y | ||
1487 | CONFIG_PROC_KCORE=y | ||
1488 | CONFIG_PROC_SYSCTL=y | ||
1489 | CONFIG_PROC_PAGE_MONITOR=y | ||
1490 | CONFIG_SYSFS=y | ||
1491 | CONFIG_TMPFS=y | ||
1492 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
1493 | # CONFIG_HUGETLB_PAGE is not set | ||
1494 | # CONFIG_CONFIGFS_FS is not set | ||
1495 | CONFIG_MISC_FILESYSTEMS=y | ||
1496 | CONFIG_ADFS_FS=m | ||
1497 | # CONFIG_ADFS_FS_RW is not set | ||
1498 | CONFIG_AFFS_FS=m | ||
1499 | CONFIG_HFS_FS=m | ||
1500 | CONFIG_HFSPLUS_FS=m | ||
1501 | CONFIG_BEFS_FS=m | ||
1502 | # CONFIG_BEFS_DEBUG is not set | ||
1503 | CONFIG_BFS_FS=m | ||
1504 | CONFIG_EFS_FS=m | ||
1505 | CONFIG_CRAMFS=y | ||
1506 | # CONFIG_SQUASHFS is not set | ||
1507 | CONFIG_VXFS_FS=m | ||
1508 | # CONFIG_MINIX_FS is not set | ||
1509 | # CONFIG_OMFS_FS is not set | ||
1510 | CONFIG_HPFS_FS=m | ||
1511 | CONFIG_QNX4FS_FS=m | ||
1512 | # CONFIG_ROMFS_FS is not set | ||
1513 | CONFIG_SYSV_FS=m | ||
1514 | CONFIG_UFS_FS=m | ||
1515 | # CONFIG_UFS_FS_WRITE is not set | ||
1516 | # CONFIG_UFS_DEBUG is not set | ||
1517 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1518 | CONFIG_NFS_FS=y | ||
1519 | CONFIG_NFS_V3=y | ||
1520 | # CONFIG_NFS_V3_ACL is not set | ||
1521 | CONFIG_NFS_V4=y | ||
1522 | CONFIG_ROOT_NFS=y | ||
1523 | CONFIG_NFSD=y | ||
1524 | # CONFIG_NFSD_V3 is not set | ||
1525 | # CONFIG_NFSD_V4 is not set | ||
1526 | CONFIG_LOCKD=y | ||
1527 | CONFIG_LOCKD_V4=y | ||
1528 | CONFIG_EXPORTFS=y | ||
1529 | CONFIG_NFS_COMMON=y | ||
1530 | CONFIG_SUNRPC=y | ||
1531 | CONFIG_SUNRPC_GSS=y | ||
1532 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1533 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1534 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1535 | # CONFIG_SMB_FS is not set | ||
1536 | # CONFIG_CIFS is not set | ||
1537 | # CONFIG_NCP_FS is not set | ||
1538 | # CONFIG_CODA_FS is not set | ||
1539 | # CONFIG_AFS_FS is not set | ||
1540 | |||
1541 | # | ||
1542 | # Partition Types | ||
1543 | # | ||
1544 | CONFIG_PARTITION_ADVANCED=y | ||
1545 | # CONFIG_ACORN_PARTITION is not set | ||
1546 | # CONFIG_OSF_PARTITION is not set | ||
1547 | # CONFIG_AMIGA_PARTITION is not set | ||
1548 | # CONFIG_ATARI_PARTITION is not set | ||
1549 | CONFIG_MAC_PARTITION=y | ||
1550 | CONFIG_MSDOS_PARTITION=y | ||
1551 | # CONFIG_BSD_DISKLABEL is not set | ||
1552 | # CONFIG_MINIX_SUBPARTITION is not set | ||
1553 | # CONFIG_SOLARIS_X86_PARTITION is not set | ||
1554 | # CONFIG_UNIXWARE_DISKLABEL is not set | ||
1555 | # CONFIG_LDM_PARTITION is not set | ||
1556 | # CONFIG_SGI_PARTITION is not set | ||
1557 | # CONFIG_ULTRIX_PARTITION is not set | ||
1558 | # CONFIG_SUN_PARTITION is not set | ||
1559 | # CONFIG_KARMA_PARTITION is not set | ||
1560 | # CONFIG_EFI_PARTITION is not set | ||
1561 | # CONFIG_SYSV68_PARTITION is not set | ||
1562 | CONFIG_NLS=y | ||
1563 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
1564 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
1565 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
1566 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
1567 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
1568 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
1569 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
1570 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
1571 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
1572 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
1573 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
1574 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
1575 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
1576 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
1577 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
1578 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
1579 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
1580 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
1581 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
1582 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
1583 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
1584 | # CONFIG_NLS_ISO8859_8 is not set | ||
1585 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
1586 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
1587 | # CONFIG_NLS_ASCII is not set | ||
1588 | # CONFIG_NLS_ISO8859_1 is not set | ||
1589 | # CONFIG_NLS_ISO8859_2 is not set | ||
1590 | # CONFIG_NLS_ISO8859_3 is not set | ||
1591 | # CONFIG_NLS_ISO8859_4 is not set | ||
1592 | # CONFIG_NLS_ISO8859_5 is not set | ||
1593 | # CONFIG_NLS_ISO8859_6 is not set | ||
1594 | # CONFIG_NLS_ISO8859_7 is not set | ||
1595 | # CONFIG_NLS_ISO8859_9 is not set | ||
1596 | # CONFIG_NLS_ISO8859_13 is not set | ||
1597 | # CONFIG_NLS_ISO8859_14 is not set | ||
1598 | # CONFIG_NLS_ISO8859_15 is not set | ||
1599 | # CONFIG_NLS_KOI8_R is not set | ||
1600 | # CONFIG_NLS_KOI8_U is not set | ||
1601 | CONFIG_NLS_UTF8=m | ||
1602 | # CONFIG_DLM is not set | ||
1603 | |||
1604 | # | ||
1605 | # Library routines | ||
1606 | # | ||
1607 | CONFIG_BITREVERSE=y | ||
1608 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1609 | # CONFIG_CRC_CCITT is not set | ||
1610 | # CONFIG_CRC16 is not set | ||
1611 | CONFIG_CRC_T10DIF=y | ||
1612 | CONFIG_CRC_ITU_T=m | ||
1613 | CONFIG_CRC32=y | ||
1614 | # CONFIG_CRC7 is not set | ||
1615 | CONFIG_LIBCRC32C=m | ||
1616 | CONFIG_ZLIB_INFLATE=y | ||
1617 | CONFIG_PLIST=y | ||
1618 | CONFIG_HAS_IOMEM=y | ||
1619 | CONFIG_HAS_IOPORT=y | ||
1620 | CONFIG_HAS_DMA=y | ||
1621 | CONFIG_HAVE_LMB=y | ||
1622 | |||
1623 | # | ||
1624 | # Kernel hacking | ||
1625 | # | ||
1626 | # CONFIG_PRINTK_TIME is not set | ||
1627 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1628 | CONFIG_ENABLE_MUST_CHECK=y | ||
1629 | CONFIG_FRAME_WARN=1024 | ||
1630 | # CONFIG_MAGIC_SYSRQ is not set | ||
1631 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1632 | # CONFIG_DEBUG_FS is not set | ||
1633 | # CONFIG_HEADERS_CHECK is not set | ||
1634 | CONFIG_DEBUG_KERNEL=y | ||
1635 | # CONFIG_DEBUG_SHIRQ is not set | ||
1636 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1637 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
1638 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
1639 | CONFIG_SCHED_DEBUG=y | ||
1640 | # CONFIG_SCHEDSTATS is not set | ||
1641 | # CONFIG_TIMER_STATS is not set | ||
1642 | # CONFIG_DEBUG_OBJECTS is not set | ||
1643 | # CONFIG_SLUB_DEBUG_ON is not set | ||
1644 | # CONFIG_SLUB_STATS is not set | ||
1645 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1646 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1647 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1648 | # CONFIG_DEBUG_MUTEXES is not set | ||
1649 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1650 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1651 | # CONFIG_DEBUG_KOBJECT is not set | ||
1652 | # CONFIG_DEBUG_HIGHMEM is not set | ||
1653 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1654 | CONFIG_DEBUG_INFO=y | ||
1655 | # CONFIG_DEBUG_VM is not set | ||
1656 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1657 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
1658 | # CONFIG_DEBUG_LIST is not set | ||
1659 | # CONFIG_DEBUG_SG is not set | ||
1660 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1661 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1662 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1663 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
1664 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1665 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
1666 | # CONFIG_FAULT_INJECTION is not set | ||
1667 | # CONFIG_LATENCYTOP is not set | ||
1668 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
1669 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
1670 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1671 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1672 | |||
1673 | # | ||
1674 | # Tracers | ||
1675 | # | ||
1676 | # CONFIG_FUNCTION_TRACER is not set | ||
1677 | # CONFIG_SCHED_TRACER is not set | ||
1678 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
1679 | # CONFIG_BOOT_TRACER is not set | ||
1680 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1681 | # CONFIG_STACK_TRACER is not set | ||
1682 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1683 | # CONFIG_SAMPLES is not set | ||
1684 | CONFIG_HAVE_ARCH_KGDB=y | ||
1685 | # CONFIG_KGDB is not set | ||
1686 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1687 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1688 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1689 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1690 | # CONFIG_CODE_PATCHING_SELFTEST is not set | ||
1691 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
1692 | # CONFIG_MSI_BITMAP_SELFTEST is not set | ||
1693 | # CONFIG_XMON is not set | ||
1694 | # CONFIG_IRQSTACKS is not set | ||
1695 | # CONFIG_BDI_SWITCH is not set | ||
1696 | # CONFIG_PPC_EARLY_DEBUG is not set | ||
1697 | |||
1698 | # | ||
1699 | # Security options | ||
1700 | # | ||
1701 | # CONFIG_KEYS is not set | ||
1702 | # CONFIG_SECURITY is not set | ||
1703 | # CONFIG_SECURITYFS is not set | ||
1704 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1705 | CONFIG_CRYPTO=y | ||
1706 | |||
1707 | # | ||
1708 | # Crypto core or helper | ||
1709 | # | ||
1710 | # CONFIG_CRYPTO_FIPS is not set | ||
1711 | CONFIG_CRYPTO_ALGAPI=y | ||
1712 | CONFIG_CRYPTO_ALGAPI2=y | ||
1713 | CONFIG_CRYPTO_AEAD=y | ||
1714 | CONFIG_CRYPTO_AEAD2=y | ||
1715 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1716 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1717 | CONFIG_CRYPTO_HASH=y | ||
1718 | CONFIG_CRYPTO_HASH2=y | ||
1719 | CONFIG_CRYPTO_RNG2=y | ||
1720 | CONFIG_CRYPTO_MANAGER=y | ||
1721 | CONFIG_CRYPTO_MANAGER2=y | ||
1722 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1723 | # CONFIG_CRYPTO_NULL is not set | ||
1724 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1725 | CONFIG_CRYPTO_AUTHENC=y | ||
1726 | # CONFIG_CRYPTO_TEST is not set | ||
1727 | |||
1728 | # | ||
1729 | # Authenticated Encryption with Associated Data | ||
1730 | # | ||
1731 | # CONFIG_CRYPTO_CCM is not set | ||
1732 | # CONFIG_CRYPTO_GCM is not set | ||
1733 | # CONFIG_CRYPTO_SEQIV is not set | ||
1734 | |||
1735 | # | ||
1736 | # Block modes | ||
1737 | # | ||
1738 | CONFIG_CRYPTO_CBC=y | ||
1739 | # CONFIG_CRYPTO_CTR is not set | ||
1740 | # CONFIG_CRYPTO_CTS is not set | ||
1741 | # CONFIG_CRYPTO_ECB is not set | ||
1742 | # CONFIG_CRYPTO_LRW is not set | ||
1743 | CONFIG_CRYPTO_PCBC=m | ||
1744 | # CONFIG_CRYPTO_XTS is not set | ||
1745 | |||
1746 | # | ||
1747 | # Hash modes | ||
1748 | # | ||
1749 | CONFIG_CRYPTO_HMAC=y | ||
1750 | # CONFIG_CRYPTO_XCBC is not set | ||
1751 | |||
1752 | # | ||
1753 | # Digest | ||
1754 | # | ||
1755 | CONFIG_CRYPTO_CRC32C=m | ||
1756 | # CONFIG_CRYPTO_MD4 is not set | ||
1757 | CONFIG_CRYPTO_MD5=y | ||
1758 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1759 | # CONFIG_CRYPTO_RMD128 is not set | ||
1760 | # CONFIG_CRYPTO_RMD160 is not set | ||
1761 | # CONFIG_CRYPTO_RMD256 is not set | ||
1762 | # CONFIG_CRYPTO_RMD320 is not set | ||
1763 | CONFIG_CRYPTO_SHA1=m | ||
1764 | # CONFIG_CRYPTO_SHA256 is not set | ||
1765 | # CONFIG_CRYPTO_SHA512 is not set | ||
1766 | # CONFIG_CRYPTO_TGR192 is not set | ||
1767 | # CONFIG_CRYPTO_WP512 is not set | ||
1768 | |||
1769 | # | ||
1770 | # Ciphers | ||
1771 | # | ||
1772 | # CONFIG_CRYPTO_AES is not set | ||
1773 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1774 | # CONFIG_CRYPTO_ARC4 is not set | ||
1775 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1776 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1777 | # CONFIG_CRYPTO_CAST5 is not set | ||
1778 | # CONFIG_CRYPTO_CAST6 is not set | ||
1779 | CONFIG_CRYPTO_DES=y | ||
1780 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1781 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1782 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1783 | # CONFIG_CRYPTO_SEED is not set | ||
1784 | # CONFIG_CRYPTO_SERPENT is not set | ||
1785 | # CONFIG_CRYPTO_TEA is not set | ||
1786 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1787 | |||
1788 | # | ||
1789 | # Compression | ||
1790 | # | ||
1791 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1792 | # CONFIG_CRYPTO_LZO is not set | ||
1793 | |||
1794 | # | ||
1795 | # Random Number Generation | ||
1796 | # | ||
1797 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
1798 | CONFIG_CRYPTO_HW=y | ||
1799 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1800 | CONFIG_CRYPTO_DEV_TALITOS=y | ||
1801 | # CONFIG_PPC_CLOCK is not set | ||
1802 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/85xx/mpc8568mds_defconfig b/arch/powerpc/configs/85xx/mpc8568mds_defconfig deleted file mode 100644 index 186c1010a135..000000000000 --- a/arch/powerpc/configs/85xx/mpc8568mds_defconfig +++ /dev/null | |||
@@ -1,1309 +0,0 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.29-rc2 | ||
4 | # Mon Jan 26 15:36:10 2009 | ||
5 | # | ||
6 | # CONFIG_PPC64 is not set | ||
7 | |||
8 | # | ||
9 | # Processor support | ||
10 | # | ||
11 | # CONFIG_6xx is not set | ||
12 | CONFIG_PPC_85xx=y | ||
13 | # CONFIG_PPC_8xx is not set | ||
14 | # CONFIG_40x is not set | ||
15 | # CONFIG_44x is not set | ||
16 | # CONFIG_E200 is not set | ||
17 | CONFIG_E500=y | ||
18 | # CONFIG_PPC_E500MC is not set | ||
19 | CONFIG_BOOKE=y | ||
20 | CONFIG_FSL_BOOKE=y | ||
21 | CONFIG_FSL_EMB_PERFMON=y | ||
22 | # CONFIG_PHYS_64BIT is not set | ||
23 | CONFIG_SPE=y | ||
24 | CONFIG_PPC_MMU_NOHASH=y | ||
25 | # CONFIG_PPC_MM_SLICES is not set | ||
26 | # CONFIG_SMP is not set | ||
27 | CONFIG_PPC32=y | ||
28 | CONFIG_WORD_SIZE=32 | ||
29 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | ||
30 | CONFIG_MMU=y | ||
31 | CONFIG_GENERIC_CMOS_UPDATE=y | ||
32 | CONFIG_GENERIC_TIME=y | ||
33 | CONFIG_GENERIC_TIME_VSYSCALL=y | ||
34 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
35 | CONFIG_GENERIC_HARDIRQS=y | ||
36 | # CONFIG_HAVE_SETUP_PER_CPU_AREA is not set | ||
37 | CONFIG_IRQ_PER_CPU=y | ||
38 | CONFIG_STACKTRACE_SUPPORT=y | ||
39 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
40 | CONFIG_LOCKDEP_SUPPORT=y | ||
41 | CONFIG_RWSEM_XCHGADD_ALGORITHM=y | ||
42 | CONFIG_ARCH_HAS_ILOG2_U32=y | ||
43 | CONFIG_GENERIC_HWEIGHT=y | ||
44 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
45 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
46 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | ||
47 | CONFIG_PPC=y | ||
48 | CONFIG_EARLY_PRINTK=y | ||
49 | CONFIG_GENERIC_NVRAM=y | ||
50 | CONFIG_SCHED_OMIT_FRAME_POINTER=y | ||
51 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | ||
52 | CONFIG_PPC_OF=y | ||
53 | CONFIG_OF=y | ||
54 | CONFIG_PPC_UDBG_16550=y | ||
55 | # CONFIG_GENERIC_TBSYNC is not set | ||
56 | CONFIG_AUDIT_ARCH=y | ||
57 | CONFIG_GENERIC_BUG=y | ||
58 | CONFIG_DEFAULT_UIMAGE=y | ||
59 | # CONFIG_PPC_DCR_NATIVE is not set | ||
60 | # CONFIG_PPC_DCR_MMIO is not set | ||
61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
62 | |||
63 | # | ||
64 | # General setup | ||
65 | # | ||
66 | CONFIG_EXPERIMENTAL=y | ||
67 | CONFIG_BROKEN_ON_SMP=y | ||
68 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
69 | CONFIG_LOCALVERSION="" | ||
70 | CONFIG_LOCALVERSION_AUTO=y | ||
71 | CONFIG_SWAP=y | ||
72 | CONFIG_SYSVIPC=y | ||
73 | CONFIG_SYSVIPC_SYSCTL=y | ||
74 | # CONFIG_POSIX_MQUEUE is not set | ||
75 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
76 | # CONFIG_TASKSTATS is not set | ||
77 | # CONFIG_AUDIT is not set | ||
78 | # CONFIG_IKCONFIG is not set | ||
79 | CONFIG_LOG_BUF_SHIFT=14 | ||
80 | CONFIG_GROUP_SCHED=y | ||
81 | # CONFIG_FAIR_GROUP_SCHED is not set | ||
82 | # CONFIG_RT_GROUP_SCHED is not set | ||
83 | CONFIG_USER_SCHED=y | ||
84 | # CONFIG_CGROUP_SCHED is not set | ||
85 | # CONFIG_CGROUPS is not set | ||
86 | CONFIG_SYSFS_DEPRECATED=y | ||
87 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
88 | # CONFIG_RELAY is not set | ||
89 | # CONFIG_NAMESPACES is not set | ||
90 | CONFIG_BLK_DEV_INITRD=y | ||
91 | CONFIG_INITRAMFS_SOURCE="" | ||
92 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
93 | CONFIG_SYSCTL=y | ||
94 | CONFIG_EMBEDDED=y | ||
95 | CONFIG_SYSCTL_SYSCALL=y | ||
96 | # CONFIG_KALLSYMS is not set | ||
97 | CONFIG_HOTPLUG=y | ||
98 | CONFIG_PRINTK=y | ||
99 | CONFIG_BUG=y | ||
100 | CONFIG_ELF_CORE=y | ||
101 | CONFIG_COMPAT_BRK=y | ||
102 | CONFIG_BASE_FULL=y | ||
103 | CONFIG_FUTEX=y | ||
104 | CONFIG_ANON_INODES=y | ||
105 | # CONFIG_EPOLL is not set | ||
106 | CONFIG_SIGNALFD=y | ||
107 | CONFIG_TIMERFD=y | ||
108 | CONFIG_EVENTFD=y | ||
109 | CONFIG_SHMEM=y | ||
110 | CONFIG_AIO=y | ||
111 | CONFIG_VM_EVENT_COUNTERS=y | ||
112 | CONFIG_PCI_QUIRKS=y | ||
113 | CONFIG_SLUB_DEBUG=y | ||
114 | # CONFIG_SLAB is not set | ||
115 | CONFIG_SLUB=y | ||
116 | # CONFIG_SLOB is not set | ||
117 | # CONFIG_PROFILING is not set | ||
118 | CONFIG_HAVE_OPROFILE=y | ||
119 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | ||
120 | CONFIG_HAVE_IOREMAP_PROT=y | ||
121 | CONFIG_HAVE_KPROBES=y | ||
122 | CONFIG_HAVE_KRETPROBES=y | ||
123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
124 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | ||
125 | CONFIG_SLABINFO=y | ||
126 | CONFIG_RT_MUTEXES=y | ||
127 | CONFIG_BASE_SMALL=0 | ||
128 | CONFIG_MODULES=y | ||
129 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
130 | CONFIG_MODULE_UNLOAD=y | ||
131 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
132 | # CONFIG_MODVERSIONS is not set | ||
133 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
134 | CONFIG_BLOCK=y | ||
135 | # CONFIG_LBD is not set | ||
136 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
137 | # CONFIG_BLK_DEV_BSG is not set | ||
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
139 | |||
140 | # | ||
141 | # IO Schedulers | ||
142 | # | ||
143 | CONFIG_IOSCHED_NOOP=y | ||
144 | CONFIG_IOSCHED_AS=y | ||
145 | CONFIG_IOSCHED_DEADLINE=y | ||
146 | CONFIG_IOSCHED_CFQ=y | ||
147 | CONFIG_DEFAULT_AS=y | ||
148 | # CONFIG_DEFAULT_DEADLINE is not set | ||
149 | # CONFIG_DEFAULT_CFQ is not set | ||
150 | # CONFIG_DEFAULT_NOOP is not set | ||
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
152 | CONFIG_CLASSIC_RCU=y | ||
153 | # CONFIG_TREE_RCU is not set | ||
154 | # CONFIG_PREEMPT_RCU is not set | ||
155 | # CONFIG_TREE_RCU_TRACE is not set | ||
156 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
157 | # CONFIG_FREEZER is not set | ||
158 | |||
159 | # | ||
160 | # Platform support | ||
161 | # | ||
162 | # CONFIG_PPC_CELL is not set | ||
163 | # CONFIG_PPC_CELL_NATIVE is not set | ||
164 | # CONFIG_PQ2ADS is not set | ||
165 | CONFIG_MPC85xx=y | ||
166 | # CONFIG_MPC8540_ADS is not set | ||
167 | # CONFIG_MPC8560_ADS is not set | ||
168 | # CONFIG_MPC85xx_CDS is not set | ||
169 | CONFIG_MPC85xx_MDS=y | ||
170 | # CONFIG_MPC8536_DS is not set | ||
171 | # CONFIG_MPC85xx_DS is not set | ||
172 | # CONFIG_KSI8560 is not set | ||
173 | # CONFIG_STX_GP3 is not set | ||
174 | # CONFIG_TQM8540 is not set | ||
175 | # CONFIG_TQM8541 is not set | ||
176 | # CONFIG_TQM8548 is not set | ||
177 | # CONFIG_TQM8555 is not set | ||
178 | # CONFIG_TQM8560 is not set | ||
179 | # CONFIG_SBC8548 is not set | ||
180 | # CONFIG_SBC8560 is not set | ||
181 | # CONFIG_IPIC is not set | ||
182 | CONFIG_MPIC=y | ||
183 | # CONFIG_MPIC_WEIRD is not set | ||
184 | # CONFIG_PPC_I8259 is not set | ||
185 | # CONFIG_PPC_RTAS is not set | ||
186 | # CONFIG_MMIO_NVRAM is not set | ||
187 | # CONFIG_PPC_MPC106 is not set | ||
188 | # CONFIG_PPC_970_NAP is not set | ||
189 | # CONFIG_PPC_INDIRECT_IO is not set | ||
190 | # CONFIG_GENERIC_IOMAP is not set | ||
191 | # CONFIG_CPU_FREQ is not set | ||
192 | CONFIG_QUICC_ENGINE=y | ||
193 | # CONFIG_QE_GPIO is not set | ||
194 | # CONFIG_CPM2 is not set | ||
195 | # CONFIG_FSL_ULI1575 is not set | ||
196 | # CONFIG_MPC8xxx_GPIO is not set | ||
197 | # CONFIG_SIMPLE_GPIO is not set | ||
198 | |||
199 | # | ||
200 | # Kernel options | ||
201 | # | ||
202 | # CONFIG_HIGHMEM is not set | ||
203 | CONFIG_TICK_ONESHOT=y | ||
204 | CONFIG_NO_HZ=y | ||
205 | CONFIG_HIGH_RES_TIMERS=y | ||
206 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
207 | # CONFIG_HZ_100 is not set | ||
208 | CONFIG_HZ_250=y | ||
209 | # CONFIG_HZ_300 is not set | ||
210 | # CONFIG_HZ_1000 is not set | ||
211 | CONFIG_HZ=250 | ||
212 | CONFIG_SCHED_HRTICK=y | ||
213 | CONFIG_PREEMPT_NONE=y | ||
214 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
215 | # CONFIG_PREEMPT is not set | ||
216 | CONFIG_BINFMT_ELF=y | ||
217 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
218 | # CONFIG_HAVE_AOUT is not set | ||
219 | # CONFIG_BINFMT_MISC is not set | ||
220 | CONFIG_MATH_EMULATION=y | ||
221 | # CONFIG_IOMMU_HELPER is not set | ||
222 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
223 | CONFIG_ARCH_HAS_WALK_MEMORY=y | ||
224 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
225 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
226 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
227 | CONFIG_SELECT_MEMORY_MODEL=y | ||
228 | CONFIG_FLATMEM_MANUAL=y | ||
229 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
230 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
231 | CONFIG_FLATMEM=y | ||
232 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
233 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
234 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
235 | CONFIG_MIGRATION=y | ||
236 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
237 | CONFIG_ZONE_DMA_FLAG=1 | ||
238 | CONFIG_BOUNCE=y | ||
239 | CONFIG_VIRT_TO_BUS=y | ||
240 | CONFIG_UNEVICTABLE_LRU=y | ||
241 | CONFIG_PPC_4K_PAGES=y | ||
242 | # CONFIG_PPC_16K_PAGES is not set | ||
243 | # CONFIG_PPC_64K_PAGES is not set | ||
244 | CONFIG_FORCE_MAX_ZONEORDER=11 | ||
245 | CONFIG_PROC_DEVICETREE=y | ||
246 | # CONFIG_CMDLINE_BOOL is not set | ||
247 | CONFIG_EXTRA_TARGETS="" | ||
248 | # CONFIG_PM is not set | ||
249 | CONFIG_SECCOMP=y | ||
250 | CONFIG_ISA_DMA_API=y | ||
251 | |||
252 | # | ||
253 | # Bus options | ||
254 | # | ||
255 | CONFIG_ZONE_DMA=y | ||
256 | CONFIG_PPC_INDIRECT_PCI=y | ||
257 | CONFIG_FSL_SOC=y | ||
258 | CONFIG_FSL_PCI=y | ||
259 | CONFIG_PPC_PCI_CHOICE=y | ||
260 | CONFIG_PCI=y | ||
261 | CONFIG_PCI_DOMAINS=y | ||
262 | CONFIG_PCI_SYSCALL=y | ||
263 | # CONFIG_PCIEPORTBUS is not set | ||
264 | CONFIG_ARCH_SUPPORTS_MSI=y | ||
265 | # CONFIG_PCI_MSI is not set | ||
266 | # CONFIG_PCI_LEGACY is not set | ||
267 | # CONFIG_PCI_DEBUG is not set | ||
268 | # CONFIG_PCI_STUB is not set | ||
269 | # CONFIG_PCCARD is not set | ||
270 | # CONFIG_HOTPLUG_PCI is not set | ||
271 | # CONFIG_HAS_RAPIDIO is not set | ||
272 | |||
273 | # | ||
274 | # Advanced setup | ||
275 | # | ||
276 | # CONFIG_ADVANCED_OPTIONS is not set | ||
277 | |||
278 | # | ||
279 | # Default settings for advanced configuration options are used | ||
280 | # | ||
281 | CONFIG_LOWMEM_SIZE=0x30000000 | ||
282 | CONFIG_PAGE_OFFSET=0xc0000000 | ||
283 | CONFIG_KERNEL_START=0xc0000000 | ||
284 | CONFIG_PHYSICAL_START=0x00000000 | ||
285 | CONFIG_PHYSICAL_ALIGN=0x10000000 | ||
286 | CONFIG_TASK_SIZE=0xc0000000 | ||
287 | CONFIG_NET=y | ||
288 | |||
289 | # | ||
290 | # Networking options | ||
291 | # | ||
292 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
293 | CONFIG_PACKET=y | ||
294 | # CONFIG_PACKET_MMAP is not set | ||
295 | CONFIG_UNIX=y | ||
296 | CONFIG_XFRM=y | ||
297 | # CONFIG_XFRM_USER is not set | ||
298 | # CONFIG_XFRM_SUB_POLICY is not set | ||
299 | # CONFIG_XFRM_MIGRATE is not set | ||
300 | # CONFIG_XFRM_STATISTICS is not set | ||
301 | # CONFIG_NET_KEY is not set | ||
302 | CONFIG_INET=y | ||
303 | CONFIG_IP_MULTICAST=y | ||
304 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
305 | CONFIG_IP_FIB_HASH=y | ||
306 | CONFIG_IP_PNP=y | ||
307 | CONFIG_IP_PNP_DHCP=y | ||
308 | CONFIG_IP_PNP_BOOTP=y | ||
309 | # CONFIG_IP_PNP_RARP is not set | ||
310 | # CONFIG_NET_IPIP is not set | ||
311 | # CONFIG_NET_IPGRE is not set | ||
312 | # CONFIG_IP_MROUTE is not set | ||
313 | # CONFIG_ARPD is not set | ||
314 | CONFIG_SYN_COOKIES=y | ||
315 | # CONFIG_INET_AH is not set | ||
316 | # CONFIG_INET_ESP is not set | ||
317 | # CONFIG_INET_IPCOMP is not set | ||
318 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
319 | # CONFIG_INET_TUNNEL is not set | ||
320 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
321 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
322 | CONFIG_INET_XFRM_MODE_BEET=y | ||
323 | # CONFIG_INET_LRO is not set | ||
324 | CONFIG_INET_DIAG=y | ||
325 | CONFIG_INET_TCP_DIAG=y | ||
326 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
327 | CONFIG_TCP_CONG_CUBIC=y | ||
328 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
329 | # CONFIG_TCP_MD5SIG is not set | ||
330 | # CONFIG_IPV6 is not set | ||
331 | # CONFIG_NETWORK_SECMARK is not set | ||
332 | # CONFIG_NETFILTER is not set | ||
333 | # CONFIG_IP_DCCP is not set | ||
334 | # CONFIG_IP_SCTP is not set | ||
335 | # CONFIG_TIPC is not set | ||
336 | # CONFIG_ATM is not set | ||
337 | # CONFIG_BRIDGE is not set | ||
338 | # CONFIG_NET_DSA is not set | ||
339 | # CONFIG_VLAN_8021Q is not set | ||
340 | # CONFIG_DECNET is not set | ||
341 | # CONFIG_LLC2 is not set | ||
342 | # CONFIG_IPX is not set | ||
343 | # CONFIG_ATALK is not set | ||
344 | # CONFIG_X25 is not set | ||
345 | # CONFIG_LAPB is not set | ||
346 | # CONFIG_ECONET is not set | ||
347 | # CONFIG_WAN_ROUTER is not set | ||
348 | # CONFIG_NET_SCHED is not set | ||
349 | # CONFIG_DCB is not set | ||
350 | |||
351 | # | ||
352 | # Network testing | ||
353 | # | ||
354 | # CONFIG_NET_PKTGEN is not set | ||
355 | # CONFIG_HAMRADIO is not set | ||
356 | # CONFIG_CAN is not set | ||
357 | # CONFIG_IRDA is not set | ||
358 | # CONFIG_BT is not set | ||
359 | # CONFIG_AF_RXRPC is not set | ||
360 | # CONFIG_PHONET is not set | ||
361 | CONFIG_WIRELESS=y | ||
362 | # CONFIG_CFG80211 is not set | ||
363 | CONFIG_WIRELESS_OLD_REGULATORY=y | ||
364 | # CONFIG_WIRELESS_EXT is not set | ||
365 | # CONFIG_LIB80211 is not set | ||
366 | # CONFIG_MAC80211 is not set | ||
367 | # CONFIG_WIMAX is not set | ||
368 | # CONFIG_RFKILL is not set | ||
369 | # CONFIG_NET_9P is not set | ||
370 | |||
371 | # | ||
372 | # Device Drivers | ||
373 | # | ||
374 | |||
375 | # | ||
376 | # Generic Driver Options | ||
377 | # | ||
378 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
379 | CONFIG_STANDALONE=y | ||
380 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
381 | # CONFIG_FW_LOADER is not set | ||
382 | # CONFIG_DEBUG_DRIVER is not set | ||
383 | # CONFIG_DEBUG_DEVRES is not set | ||
384 | # CONFIG_SYS_HYPERVISOR is not set | ||
385 | # CONFIG_CONNECTOR is not set | ||
386 | # CONFIG_MTD is not set | ||
387 | CONFIG_OF_DEVICE=y | ||
388 | CONFIG_OF_I2C=y | ||
389 | # CONFIG_PARPORT is not set | ||
390 | CONFIG_BLK_DEV=y | ||
391 | # CONFIG_BLK_DEV_FD is not set | ||
392 | # CONFIG_BLK_CPQ_DA is not set | ||
393 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
394 | # CONFIG_BLK_DEV_DAC960 is not set | ||
395 | # CONFIG_BLK_DEV_UMEM is not set | ||
396 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
397 | CONFIG_BLK_DEV_LOOP=y | ||
398 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
399 | # CONFIG_BLK_DEV_NBD is not set | ||
400 | # CONFIG_BLK_DEV_SX8 is not set | ||
401 | CONFIG_BLK_DEV_RAM=y | ||
402 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
403 | CONFIG_BLK_DEV_RAM_SIZE=32768 | ||
404 | # CONFIG_BLK_DEV_XIP is not set | ||
405 | # CONFIG_CDROM_PKTCDVD is not set | ||
406 | # CONFIG_ATA_OVER_ETH is not set | ||
407 | # CONFIG_BLK_DEV_HD is not set | ||
408 | CONFIG_MISC_DEVICES=y | ||
409 | # CONFIG_PHANTOM is not set | ||
410 | # CONFIG_EEPROM_93CX6 is not set | ||
411 | # CONFIG_SGI_IOC4 is not set | ||
412 | # CONFIG_TIFM_CORE is not set | ||
413 | # CONFIG_ICS932S401 is not set | ||
414 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
415 | # CONFIG_HP_ILO is not set | ||
416 | # CONFIG_C2PORT is not set | ||
417 | CONFIG_HAVE_IDE=y | ||
418 | # CONFIG_IDE is not set | ||
419 | |||
420 | # | ||
421 | # SCSI device support | ||
422 | # | ||
423 | # CONFIG_RAID_ATTRS is not set | ||
424 | CONFIG_SCSI=y | ||
425 | CONFIG_SCSI_DMA=y | ||
426 | # CONFIG_SCSI_TGT is not set | ||
427 | # CONFIG_SCSI_NETLINK is not set | ||
428 | CONFIG_SCSI_PROC_FS=y | ||
429 | |||
430 | # | ||
431 | # SCSI support type (disk, tape, CD-ROM) | ||
432 | # | ||
433 | # CONFIG_BLK_DEV_SD is not set | ||
434 | # CONFIG_CHR_DEV_ST is not set | ||
435 | # CONFIG_CHR_DEV_OSST is not set | ||
436 | # CONFIG_BLK_DEV_SR is not set | ||
437 | # CONFIG_CHR_DEV_SG is not set | ||
438 | # CONFIG_CHR_DEV_SCH is not set | ||
439 | |||
440 | # | ||
441 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
442 | # | ||
443 | # CONFIG_SCSI_MULTI_LUN is not set | ||
444 | # CONFIG_SCSI_CONSTANTS is not set | ||
445 | # CONFIG_SCSI_LOGGING is not set | ||
446 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
447 | CONFIG_SCSI_WAIT_SCAN=m | ||
448 | |||
449 | # | ||
450 | # SCSI Transports | ||
451 | # | ||
452 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
453 | # CONFIG_SCSI_FC_ATTRS is not set | ||
454 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
455 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
456 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
457 | CONFIG_SCSI_LOWLEVEL=y | ||
458 | # CONFIG_ISCSI_TCP is not set | ||
459 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
460 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
461 | # CONFIG_SCSI_3W_9XXX is not set | ||
462 | # CONFIG_SCSI_ACARD is not set | ||
463 | # CONFIG_SCSI_AACRAID is not set | ||
464 | # CONFIG_SCSI_AIC7XXX is not set | ||
465 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
466 | # CONFIG_SCSI_AIC79XX is not set | ||
467 | # CONFIG_SCSI_AIC94XX is not set | ||
468 | # CONFIG_SCSI_DPT_I2O is not set | ||
469 | # CONFIG_SCSI_ADVANSYS is not set | ||
470 | # CONFIG_SCSI_ARCMSR is not set | ||
471 | # CONFIG_MEGARAID_NEWGEN is not set | ||
472 | # CONFIG_MEGARAID_LEGACY is not set | ||
473 | # CONFIG_MEGARAID_SAS is not set | ||
474 | # CONFIG_SCSI_HPTIOP is not set | ||
475 | # CONFIG_SCSI_BUSLOGIC is not set | ||
476 | # CONFIG_LIBFC is not set | ||
477 | # CONFIG_FCOE is not set | ||
478 | # CONFIG_SCSI_DMX3191D is not set | ||
479 | # CONFIG_SCSI_EATA is not set | ||
480 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
481 | # CONFIG_SCSI_GDTH is not set | ||
482 | # CONFIG_SCSI_IPS is not set | ||
483 | # CONFIG_SCSI_INITIO is not set | ||
484 | # CONFIG_SCSI_INIA100 is not set | ||
485 | # CONFIG_SCSI_MVSAS is not set | ||
486 | # CONFIG_SCSI_STEX is not set | ||
487 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
488 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
489 | # CONFIG_SCSI_QLA_FC is not set | ||
490 | # CONFIG_SCSI_QLA_ISCSI is not set | ||
491 | # CONFIG_SCSI_LPFC is not set | ||
492 | # CONFIG_SCSI_DC395x is not set | ||
493 | # CONFIG_SCSI_DC390T is not set | ||
494 | # CONFIG_SCSI_NSP32 is not set | ||
495 | # CONFIG_SCSI_DEBUG is not set | ||
496 | # CONFIG_SCSI_SRP is not set | ||
497 | # CONFIG_SCSI_DH is not set | ||
498 | # CONFIG_ATA is not set | ||
499 | # CONFIG_MD is not set | ||
500 | # CONFIG_FUSION is not set | ||
501 | |||
502 | # | ||
503 | # IEEE 1394 (FireWire) support | ||
504 | # | ||
505 | |||
506 | # | ||
507 | # Enable only one of the two stacks, unless you know what you are doing | ||
508 | # | ||
509 | # CONFIG_FIREWIRE is not set | ||
510 | # CONFIG_IEEE1394 is not set | ||
511 | # CONFIG_I2O is not set | ||
512 | # CONFIG_MACINTOSH_DRIVERS is not set | ||
513 | CONFIG_NETDEVICES=y | ||
514 | # CONFIG_DUMMY is not set | ||
515 | # CONFIG_BONDING is not set | ||
516 | # CONFIG_MACVLAN is not set | ||
517 | # CONFIG_EQUALIZER is not set | ||
518 | # CONFIG_TUN is not set | ||
519 | # CONFIG_VETH is not set | ||
520 | # CONFIG_ARCNET is not set | ||
521 | CONFIG_PHYLIB=y | ||
522 | |||
523 | # | ||
524 | # MII PHY device drivers | ||
525 | # | ||
526 | CONFIG_MARVELL_PHY=y | ||
527 | # CONFIG_DAVICOM_PHY is not set | ||
528 | # CONFIG_QSEMI_PHY is not set | ||
529 | # CONFIG_LXT_PHY is not set | ||
530 | # CONFIG_CICADA_PHY is not set | ||
531 | # CONFIG_VITESSE_PHY is not set | ||
532 | # CONFIG_SMSC_PHY is not set | ||
533 | # CONFIG_BROADCOM_PHY is not set | ||
534 | # CONFIG_ICPLUS_PHY is not set | ||
535 | # CONFIG_REALTEK_PHY is not set | ||
536 | # CONFIG_NATIONAL_PHY is not set | ||
537 | # CONFIG_STE10XP is not set | ||
538 | # CONFIG_LSI_ET1011C_PHY is not set | ||
539 | # CONFIG_FIXED_PHY is not set | ||
540 | # CONFIG_MDIO_BITBANG is not set | ||
541 | CONFIG_NET_ETHERNET=y | ||
542 | CONFIG_MII=y | ||
543 | # CONFIG_HAPPYMEAL is not set | ||
544 | # CONFIG_SUNGEM is not set | ||
545 | # CONFIG_CASSINI is not set | ||
546 | # CONFIG_NET_VENDOR_3COM is not set | ||
547 | # CONFIG_NET_TULIP is not set | ||
548 | # CONFIG_HP100 is not set | ||
549 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
550 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
551 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
552 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
553 | # CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set | ||
554 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | ||
555 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | ||
556 | # CONFIG_NET_PCI is not set | ||
557 | # CONFIG_B44 is not set | ||
558 | # CONFIG_ATL2 is not set | ||
559 | CONFIG_NETDEV_1000=y | ||
560 | # CONFIG_ACENIC is not set | ||
561 | # CONFIG_DL2K is not set | ||
562 | # CONFIG_E1000 is not set | ||
563 | # CONFIG_E1000E is not set | ||
564 | # CONFIG_IP1000 is not set | ||
565 | # CONFIG_IGB is not set | ||
566 | # CONFIG_NS83820 is not set | ||
567 | # CONFIG_HAMACHI is not set | ||
568 | # CONFIG_YELLOWFIN is not set | ||
569 | # CONFIG_R8169 is not set | ||
570 | # CONFIG_SIS190 is not set | ||
571 | # CONFIG_SKGE is not set | ||
572 | # CONFIG_SKY2 is not set | ||
573 | # CONFIG_VIA_VELOCITY is not set | ||
574 | # CONFIG_TIGON3 is not set | ||
575 | # CONFIG_BNX2 is not set | ||
576 | CONFIG_GIANFAR=y | ||
577 | # CONFIG_UCC_GETH is not set | ||
578 | # CONFIG_QLA3XXX is not set | ||
579 | # CONFIG_ATL1 is not set | ||
580 | # CONFIG_ATL1E is not set | ||
581 | # CONFIG_JME is not set | ||
582 | CONFIG_NETDEV_10000=y | ||
583 | # CONFIG_CHELSIO_T1 is not set | ||
584 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
585 | # CONFIG_CHELSIO_T3 is not set | ||
586 | # CONFIG_ENIC is not set | ||
587 | # CONFIG_IXGBE is not set | ||
588 | # CONFIG_IXGB is not set | ||
589 | # CONFIG_S2IO is not set | ||
590 | # CONFIG_MYRI10GE is not set | ||
591 | # CONFIG_NETXEN_NIC is not set | ||
592 | # CONFIG_NIU is not set | ||
593 | # CONFIG_MLX4_EN is not set | ||
594 | # CONFIG_MLX4_CORE is not set | ||
595 | # CONFIG_TEHUTI is not set | ||
596 | # CONFIG_BNX2X is not set | ||
597 | # CONFIG_QLGE is not set | ||
598 | # CONFIG_SFC is not set | ||
599 | # CONFIG_TR is not set | ||
600 | |||
601 | # | ||
602 | # Wireless LAN | ||
603 | # | ||
604 | # CONFIG_WLAN_PRE80211 is not set | ||
605 | # CONFIG_WLAN_80211 is not set | ||
606 | # CONFIG_IWLWIFI_LEDS is not set | ||
607 | |||
608 | # | ||
609 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
610 | # | ||
611 | # CONFIG_WAN is not set | ||
612 | # CONFIG_FDDI is not set | ||
613 | # CONFIG_HIPPI is not set | ||
614 | # CONFIG_PPP is not set | ||
615 | # CONFIG_SLIP is not set | ||
616 | # CONFIG_NET_FC is not set | ||
617 | # CONFIG_NETCONSOLE is not set | ||
618 | # CONFIG_NETPOLL is not set | ||
619 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
620 | # CONFIG_ISDN is not set | ||
621 | # CONFIG_PHONE is not set | ||
622 | |||
623 | # | ||
624 | # Input device support | ||
625 | # | ||
626 | CONFIG_INPUT=y | ||
627 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
628 | # CONFIG_INPUT_POLLDEV is not set | ||
629 | |||
630 | # | ||
631 | # Userland interfaces | ||
632 | # | ||
633 | # CONFIG_INPUT_MOUSEDEV is not set | ||
634 | # CONFIG_INPUT_JOYDEV is not set | ||
635 | # CONFIG_INPUT_EVDEV is not set | ||
636 | # CONFIG_INPUT_EVBUG is not set | ||
637 | |||
638 | # | ||
639 | # Input Device Drivers | ||
640 | # | ||
641 | # CONFIG_INPUT_KEYBOARD is not set | ||
642 | # CONFIG_INPUT_MOUSE is not set | ||
643 | # CONFIG_INPUT_JOYSTICK is not set | ||
644 | # CONFIG_INPUT_TABLET is not set | ||
645 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
646 | # CONFIG_INPUT_MISC is not set | ||
647 | |||
648 | # | ||
649 | # Hardware I/O ports | ||
650 | # | ||
651 | # CONFIG_SERIO is not set | ||
652 | # CONFIG_GAMEPORT is not set | ||
653 | |||
654 | # | ||
655 | # Character devices | ||
656 | # | ||
657 | # CONFIG_VT is not set | ||
658 | CONFIG_DEVKMEM=y | ||
659 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
660 | # CONFIG_NOZOMI is not set | ||
661 | |||
662 | # | ||
663 | # Serial drivers | ||
664 | # | ||
665 | CONFIG_SERIAL_8250=y | ||
666 | CONFIG_SERIAL_8250_CONSOLE=y | ||
667 | CONFIG_SERIAL_8250_PCI=y | ||
668 | CONFIG_SERIAL_8250_NR_UARTS=4 | ||
669 | CONFIG_SERIAL_8250_RUNTIME_UARTS=4 | ||
670 | # CONFIG_SERIAL_8250_EXTENDED is not set | ||
671 | CONFIG_SERIAL_8250_SHARE_IRQ=y | ||
672 | |||
673 | # | ||
674 | # Non-8250 serial port support | ||
675 | # | ||
676 | # CONFIG_SERIAL_UARTLITE is not set | ||
677 | CONFIG_SERIAL_CORE=y | ||
678 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
679 | # CONFIG_SERIAL_JSM is not set | ||
680 | # CONFIG_SERIAL_OF_PLATFORM is not set | ||
681 | # CONFIG_SERIAL_QE is not set | ||
682 | CONFIG_UNIX98_PTYS=y | ||
683 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
684 | CONFIG_LEGACY_PTYS=y | ||
685 | CONFIG_LEGACY_PTY_COUNT=256 | ||
686 | # CONFIG_HVC_UDBG is not set | ||
687 | # CONFIG_IPMI_HANDLER is not set | ||
688 | CONFIG_HW_RANDOM=y | ||
689 | # CONFIG_NVRAM is not set | ||
690 | # CONFIG_R3964 is not set | ||
691 | # CONFIG_APPLICOM is not set | ||
692 | # CONFIG_RAW_DRIVER is not set | ||
693 | # CONFIG_TCG_TPM is not set | ||
694 | CONFIG_DEVPORT=y | ||
695 | CONFIG_I2C=y | ||
696 | CONFIG_I2C_BOARDINFO=y | ||
697 | CONFIG_I2C_CHARDEV=y | ||
698 | CONFIG_I2C_HELPER_AUTO=y | ||
699 | |||
700 | # | ||
701 | # I2C Hardware Bus support | ||
702 | # | ||
703 | |||
704 | # | ||
705 | # PC SMBus host controller drivers | ||
706 | # | ||
707 | # CONFIG_I2C_ALI1535 is not set | ||
708 | # CONFIG_I2C_ALI1563 is not set | ||
709 | # CONFIG_I2C_ALI15X3 is not set | ||
710 | # CONFIG_I2C_AMD756 is not set | ||
711 | # CONFIG_I2C_AMD8111 is not set | ||
712 | # CONFIG_I2C_I801 is not set | ||
713 | # CONFIG_I2C_ISCH is not set | ||
714 | # CONFIG_I2C_PIIX4 is not set | ||
715 | # CONFIG_I2C_NFORCE2 is not set | ||
716 | # CONFIG_I2C_SIS5595 is not set | ||
717 | # CONFIG_I2C_SIS630 is not set | ||
718 | # CONFIG_I2C_SIS96X is not set | ||
719 | # CONFIG_I2C_VIA is not set | ||
720 | # CONFIG_I2C_VIAPRO is not set | ||
721 | |||
722 | # | ||
723 | # I2C system bus drivers (mostly embedded / system-on-chip) | ||
724 | # | ||
725 | CONFIG_I2C_MPC=y | ||
726 | # CONFIG_I2C_OCORES is not set | ||
727 | # CONFIG_I2C_SIMTEC is not set | ||
728 | |||
729 | # | ||
730 | # External I2C/SMBus adapter drivers | ||
731 | # | ||
732 | # CONFIG_I2C_PARPORT_LIGHT is not set | ||
733 | # CONFIG_I2C_TAOS_EVM is not set | ||
734 | |||
735 | # | ||
736 | # Graphics adapter I2C/DDC channel drivers | ||
737 | # | ||
738 | # CONFIG_I2C_VOODOO3 is not set | ||
739 | |||
740 | # | ||
741 | # Other I2C/SMBus bus drivers | ||
742 | # | ||
743 | # CONFIG_I2C_PCA_PLATFORM is not set | ||
744 | # CONFIG_I2C_STUB is not set | ||
745 | |||
746 | # | ||
747 | # Miscellaneous I2C Chip support | ||
748 | # | ||
749 | # CONFIG_DS1682 is not set | ||
750 | # CONFIG_EEPROM_AT24 is not set | ||
751 | # CONFIG_EEPROM_LEGACY is not set | ||
752 | # CONFIG_SENSORS_PCF8574 is not set | ||
753 | # CONFIG_PCF8575 is not set | ||
754 | # CONFIG_SENSORS_PCA9539 is not set | ||
755 | # CONFIG_SENSORS_PCF8591 is not set | ||
756 | # CONFIG_SENSORS_MAX6875 is not set | ||
757 | # CONFIG_SENSORS_TSL2550 is not set | ||
758 | # CONFIG_I2C_DEBUG_CORE is not set | ||
759 | # CONFIG_I2C_DEBUG_ALGO is not set | ||
760 | # CONFIG_I2C_DEBUG_BUS is not set | ||
761 | # CONFIG_I2C_DEBUG_CHIP is not set | ||
762 | # CONFIG_SPI is not set | ||
763 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | ||
764 | # CONFIG_GPIOLIB is not set | ||
765 | # CONFIG_W1 is not set | ||
766 | # CONFIG_POWER_SUPPLY is not set | ||
767 | CONFIG_HWMON=y | ||
768 | # CONFIG_HWMON_VID is not set | ||
769 | # CONFIG_SENSORS_AD7414 is not set | ||
770 | # CONFIG_SENSORS_AD7418 is not set | ||
771 | # CONFIG_SENSORS_ADM1021 is not set | ||
772 | # CONFIG_SENSORS_ADM1025 is not set | ||
773 | # CONFIG_SENSORS_ADM1026 is not set | ||
774 | # CONFIG_SENSORS_ADM1029 is not set | ||
775 | # CONFIG_SENSORS_ADM1031 is not set | ||
776 | # CONFIG_SENSORS_ADM9240 is not set | ||
777 | # CONFIG_SENSORS_ADT7462 is not set | ||
778 | # CONFIG_SENSORS_ADT7470 is not set | ||
779 | # CONFIG_SENSORS_ADT7473 is not set | ||
780 | # CONFIG_SENSORS_ADT7475 is not set | ||
781 | # CONFIG_SENSORS_ATXP1 is not set | ||
782 | # CONFIG_SENSORS_DS1621 is not set | ||
783 | # CONFIG_SENSORS_I5K_AMB is not set | ||
784 | # CONFIG_SENSORS_F71805F is not set | ||
785 | # CONFIG_SENSORS_F71882FG is not set | ||
786 | # CONFIG_SENSORS_F75375S is not set | ||
787 | # CONFIG_SENSORS_GL518SM is not set | ||
788 | # CONFIG_SENSORS_GL520SM is not set | ||
789 | # CONFIG_SENSORS_IT87 is not set | ||
790 | # CONFIG_SENSORS_LM63 is not set | ||
791 | # CONFIG_SENSORS_LM75 is not set | ||
792 | # CONFIG_SENSORS_LM77 is not set | ||
793 | # CONFIG_SENSORS_LM78 is not set | ||
794 | # CONFIG_SENSORS_LM80 is not set | ||
795 | # CONFIG_SENSORS_LM83 is not set | ||
796 | # CONFIG_SENSORS_LM85 is not set | ||
797 | # CONFIG_SENSORS_LM87 is not set | ||
798 | # CONFIG_SENSORS_LM90 is not set | ||
799 | # CONFIG_SENSORS_LM92 is not set | ||
800 | # CONFIG_SENSORS_LM93 is not set | ||
801 | # CONFIG_SENSORS_LTC4245 is not set | ||
802 | # CONFIG_SENSORS_MAX1619 is not set | ||
803 | # CONFIG_SENSORS_MAX6650 is not set | ||
804 | # CONFIG_SENSORS_PC87360 is not set | ||
805 | # CONFIG_SENSORS_PC87427 is not set | ||
806 | # CONFIG_SENSORS_SIS5595 is not set | ||
807 | # CONFIG_SENSORS_DME1737 is not set | ||
808 | # CONFIG_SENSORS_SMSC47M1 is not set | ||
809 | # CONFIG_SENSORS_SMSC47M192 is not set | ||
810 | # CONFIG_SENSORS_SMSC47B397 is not set | ||
811 | # CONFIG_SENSORS_ADS7828 is not set | ||
812 | # CONFIG_SENSORS_THMC50 is not set | ||
813 | # CONFIG_SENSORS_VIA686A is not set | ||
814 | # CONFIG_SENSORS_VT1211 is not set | ||
815 | # CONFIG_SENSORS_VT8231 is not set | ||
816 | # CONFIG_SENSORS_W83781D is not set | ||
817 | # CONFIG_SENSORS_W83791D is not set | ||
818 | # CONFIG_SENSORS_W83792D is not set | ||
819 | # CONFIG_SENSORS_W83793 is not set | ||
820 | # CONFIG_SENSORS_W83L785TS is not set | ||
821 | # CONFIG_SENSORS_W83L786NG is not set | ||
822 | # CONFIG_SENSORS_W83627HF is not set | ||
823 | # CONFIG_SENSORS_W83627EHF is not set | ||
824 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
825 | # CONFIG_THERMAL is not set | ||
826 | # CONFIG_THERMAL_HWMON is not set | ||
827 | CONFIG_WATCHDOG=y | ||
828 | # CONFIG_WATCHDOG_NOWAYOUT is not set | ||
829 | |||
830 | # | ||
831 | # Watchdog Device Drivers | ||
832 | # | ||
833 | # CONFIG_SOFT_WATCHDOG is not set | ||
834 | # CONFIG_ALIM7101_WDT is not set | ||
835 | # CONFIG_BOOKE_WDT is not set | ||
836 | |||
837 | # | ||
838 | # PCI-based Watchdog Cards | ||
839 | # | ||
840 | # CONFIG_PCIPCWATCHDOG is not set | ||
841 | # CONFIG_WDTPCI is not set | ||
842 | CONFIG_SSB_POSSIBLE=y | ||
843 | |||
844 | # | ||
845 | # Sonics Silicon Backplane | ||
846 | # | ||
847 | # CONFIG_SSB is not set | ||
848 | |||
849 | # | ||
850 | # Multifunction device drivers | ||
851 | # | ||
852 | # CONFIG_MFD_CORE is not set | ||
853 | # CONFIG_MFD_SM501 is not set | ||
854 | # CONFIG_HTC_PASIC3 is not set | ||
855 | # CONFIG_TWL4030_CORE is not set | ||
856 | # CONFIG_MFD_TMIO is not set | ||
857 | # CONFIG_PMIC_DA903X is not set | ||
858 | # CONFIG_MFD_WM8400 is not set | ||
859 | # CONFIG_MFD_WM8350_I2C is not set | ||
860 | # CONFIG_MFD_PCF50633 is not set | ||
861 | # CONFIG_REGULATOR is not set | ||
862 | |||
863 | # | ||
864 | # Multimedia devices | ||
865 | # | ||
866 | |||
867 | # | ||
868 | # Multimedia core support | ||
869 | # | ||
870 | # CONFIG_VIDEO_DEV is not set | ||
871 | # CONFIG_DVB_CORE is not set | ||
872 | # CONFIG_VIDEO_MEDIA is not set | ||
873 | |||
874 | # | ||
875 | # Multimedia drivers | ||
876 | # | ||
877 | CONFIG_DAB=y | ||
878 | |||
879 | # | ||
880 | # Graphics support | ||
881 | # | ||
882 | # CONFIG_AGP is not set | ||
883 | # CONFIG_DRM is not set | ||
884 | # CONFIG_VGASTATE is not set | ||
885 | CONFIG_VIDEO_OUTPUT_CONTROL=m | ||
886 | # CONFIG_FB is not set | ||
887 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
888 | |||
889 | # | ||
890 | # Display device support | ||
891 | # | ||
892 | # CONFIG_DISPLAY_SUPPORT is not set | ||
893 | # CONFIG_SOUND is not set | ||
894 | CONFIG_HID_SUPPORT=y | ||
895 | CONFIG_HID=y | ||
896 | # CONFIG_HID_DEBUG is not set | ||
897 | # CONFIG_HIDRAW is not set | ||
898 | # CONFIG_HID_PID is not set | ||
899 | |||
900 | # | ||
901 | # Special HID drivers | ||
902 | # | ||
903 | CONFIG_HID_COMPAT=y | ||
904 | CONFIG_USB_SUPPORT=y | ||
905 | CONFIG_USB_ARCH_HAS_HCD=y | ||
906 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
907 | CONFIG_USB_ARCH_HAS_EHCI=y | ||
908 | # CONFIG_USB is not set | ||
909 | # CONFIG_USB_OTG_WHITELIST is not set | ||
910 | # CONFIG_USB_OTG_BLACKLIST_HUB is not set | ||
911 | |||
912 | # | ||
913 | # Enable Host or Gadget support to see Inventra options | ||
914 | # | ||
915 | |||
916 | # | ||
917 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | ||
918 | # | ||
919 | # CONFIG_USB_GADGET is not set | ||
920 | |||
921 | # | ||
922 | # OTG and related infrastructure | ||
923 | # | ||
924 | # CONFIG_UWB is not set | ||
925 | # CONFIG_MMC is not set | ||
926 | # CONFIG_MEMSTICK is not set | ||
927 | # CONFIG_NEW_LEDS is not set | ||
928 | # CONFIG_ACCESSIBILITY is not set | ||
929 | # CONFIG_INFINIBAND is not set | ||
930 | # CONFIG_EDAC is not set | ||
931 | CONFIG_RTC_LIB=y | ||
932 | CONFIG_RTC_CLASS=y | ||
933 | CONFIG_RTC_HCTOSYS=y | ||
934 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
935 | # CONFIG_RTC_DEBUG is not set | ||
936 | |||
937 | # | ||
938 | # RTC interfaces | ||
939 | # | ||
940 | CONFIG_RTC_INTF_SYSFS=y | ||
941 | CONFIG_RTC_INTF_PROC=y | ||
942 | CONFIG_RTC_INTF_DEV=y | ||
943 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
944 | # CONFIG_RTC_DRV_TEST is not set | ||
945 | |||
946 | # | ||
947 | # I2C RTC drivers | ||
948 | # | ||
949 | # CONFIG_RTC_DRV_DS1307 is not set | ||
950 | CONFIG_RTC_DRV_DS1374=y | ||
951 | # CONFIG_RTC_DRV_DS1672 is not set | ||
952 | # CONFIG_RTC_DRV_MAX6900 is not set | ||
953 | # CONFIG_RTC_DRV_RS5C372 is not set | ||
954 | # CONFIG_RTC_DRV_ISL1208 is not set | ||
955 | # CONFIG_RTC_DRV_X1205 is not set | ||
956 | # CONFIG_RTC_DRV_PCF8563 is not set | ||
957 | # CONFIG_RTC_DRV_PCF8583 is not set | ||
958 | # CONFIG_RTC_DRV_M41T80 is not set | ||
959 | # CONFIG_RTC_DRV_S35390A is not set | ||
960 | # CONFIG_RTC_DRV_FM3130 is not set | ||
961 | # CONFIG_RTC_DRV_RX8581 is not set | ||
962 | |||
963 | # | ||
964 | # SPI RTC drivers | ||
965 | # | ||
966 | |||
967 | # | ||
968 | # Platform RTC drivers | ||
969 | # | ||
970 | # CONFIG_RTC_DRV_CMOS is not set | ||
971 | # CONFIG_RTC_DRV_DS1286 is not set | ||
972 | # CONFIG_RTC_DRV_DS1511 is not set | ||
973 | # CONFIG_RTC_DRV_DS1553 is not set | ||
974 | # CONFIG_RTC_DRV_DS1742 is not set | ||
975 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
976 | # CONFIG_RTC_DRV_M48T86 is not set | ||
977 | # CONFIG_RTC_DRV_M48T35 is not set | ||
978 | # CONFIG_RTC_DRV_M48T59 is not set | ||
979 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
980 | # CONFIG_RTC_DRV_V3020 is not set | ||
981 | |||
982 | # | ||
983 | # on-CPU RTC drivers | ||
984 | # | ||
985 | # CONFIG_RTC_DRV_PPC is not set | ||
986 | # CONFIG_DMADEVICES is not set | ||
987 | # CONFIG_UIO is not set | ||
988 | # CONFIG_STAGING is not set | ||
989 | |||
990 | # | ||
991 | # File systems | ||
992 | # | ||
993 | CONFIG_EXT2_FS=y | ||
994 | # CONFIG_EXT2_FS_XATTR is not set | ||
995 | # CONFIG_EXT2_FS_XIP is not set | ||
996 | CONFIG_EXT3_FS=y | ||
997 | CONFIG_EXT3_FS_XATTR=y | ||
998 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
999 | # CONFIG_EXT3_FS_SECURITY is not set | ||
1000 | # CONFIG_EXT4_FS is not set | ||
1001 | CONFIG_JBD=y | ||
1002 | CONFIG_FS_MBCACHE=y | ||
1003 | # CONFIG_REISERFS_FS is not set | ||
1004 | # CONFIG_JFS_FS is not set | ||
1005 | # CONFIG_FS_POSIX_ACL is not set | ||
1006 | CONFIG_FILE_LOCKING=y | ||
1007 | # CONFIG_XFS_FS is not set | ||
1008 | # CONFIG_OCFS2_FS is not set | ||
1009 | # CONFIG_BTRFS_FS is not set | ||
1010 | CONFIG_DNOTIFY=y | ||
1011 | CONFIG_INOTIFY=y | ||
1012 | CONFIG_INOTIFY_USER=y | ||
1013 | # CONFIG_QUOTA is not set | ||
1014 | # CONFIG_AUTOFS_FS is not set | ||
1015 | # CONFIG_AUTOFS4_FS is not set | ||
1016 | # CONFIG_FUSE_FS is not set | ||
1017 | |||
1018 | # | ||
1019 | # CD-ROM/DVD Filesystems | ||
1020 | # | ||
1021 | # CONFIG_ISO9660_FS is not set | ||
1022 | # CONFIG_UDF_FS is not set | ||
1023 | |||
1024 | # | ||
1025 | # DOS/FAT/NT Filesystems | ||
1026 | # | ||
1027 | # CONFIG_MSDOS_FS is not set | ||
1028 | # CONFIG_VFAT_FS is not set | ||
1029 | # CONFIG_NTFS_FS is not set | ||
1030 | |||
1031 | # | ||
1032 | # Pseudo filesystems | ||
1033 | # | ||
1034 | CONFIG_PROC_FS=y | ||
1035 | CONFIG_PROC_KCORE=y | ||
1036 | CONFIG_PROC_SYSCTL=y | ||
1037 | CONFIG_PROC_PAGE_MONITOR=y | ||
1038 | CONFIG_SYSFS=y | ||
1039 | CONFIG_TMPFS=y | ||
1040 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
1041 | # CONFIG_HUGETLB_PAGE is not set | ||
1042 | # CONFIG_CONFIGFS_FS is not set | ||
1043 | CONFIG_MISC_FILESYSTEMS=y | ||
1044 | # CONFIG_ADFS_FS is not set | ||
1045 | # CONFIG_AFFS_FS is not set | ||
1046 | # CONFIG_HFS_FS is not set | ||
1047 | # CONFIG_HFSPLUS_FS is not set | ||
1048 | # CONFIG_BEFS_FS is not set | ||
1049 | # CONFIG_BFS_FS is not set | ||
1050 | # CONFIG_EFS_FS is not set | ||
1051 | # CONFIG_CRAMFS is not set | ||
1052 | # CONFIG_SQUASHFS is not set | ||
1053 | # CONFIG_VXFS_FS is not set | ||
1054 | # CONFIG_MINIX_FS is not set | ||
1055 | # CONFIG_OMFS_FS is not set | ||
1056 | # CONFIG_HPFS_FS is not set | ||
1057 | # CONFIG_QNX4FS_FS is not set | ||
1058 | # CONFIG_ROMFS_FS is not set | ||
1059 | # CONFIG_SYSV_FS is not set | ||
1060 | # CONFIG_UFS_FS is not set | ||
1061 | CONFIG_NETWORK_FILESYSTEMS=y | ||
1062 | CONFIG_NFS_FS=y | ||
1063 | CONFIG_NFS_V3=y | ||
1064 | # CONFIG_NFS_V3_ACL is not set | ||
1065 | CONFIG_NFS_V4=y | ||
1066 | CONFIG_ROOT_NFS=y | ||
1067 | # CONFIG_NFSD is not set | ||
1068 | CONFIG_LOCKD=y | ||
1069 | CONFIG_LOCKD_V4=y | ||
1070 | CONFIG_NFS_COMMON=y | ||
1071 | CONFIG_SUNRPC=y | ||
1072 | CONFIG_SUNRPC_GSS=y | ||
1073 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1074 | CONFIG_RPCSEC_GSS_KRB5=y | ||
1075 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
1076 | # CONFIG_SMB_FS is not set | ||
1077 | # CONFIG_CIFS is not set | ||
1078 | # CONFIG_NCP_FS is not set | ||
1079 | # CONFIG_CODA_FS is not set | ||
1080 | # CONFIG_AFS_FS is not set | ||
1081 | |||
1082 | # | ||
1083 | # Partition Types | ||
1084 | # | ||
1085 | CONFIG_PARTITION_ADVANCED=y | ||
1086 | # CONFIG_ACORN_PARTITION is not set | ||
1087 | # CONFIG_OSF_PARTITION is not set | ||
1088 | # CONFIG_AMIGA_PARTITION is not set | ||
1089 | # CONFIG_ATARI_PARTITION is not set | ||
1090 | # CONFIG_MAC_PARTITION is not set | ||
1091 | # CONFIG_MSDOS_PARTITION is not set | ||
1092 | # CONFIG_LDM_PARTITION is not set | ||
1093 | # CONFIG_SGI_PARTITION is not set | ||
1094 | # CONFIG_ULTRIX_PARTITION is not set | ||
1095 | # CONFIG_SUN_PARTITION is not set | ||
1096 | # CONFIG_KARMA_PARTITION is not set | ||
1097 | # CONFIG_EFI_PARTITION is not set | ||
1098 | # CONFIG_SYSV68_PARTITION is not set | ||
1099 | # CONFIG_NLS is not set | ||
1100 | # CONFIG_DLM is not set | ||
1101 | |||
1102 | # | ||
1103 | # Library routines | ||
1104 | # | ||
1105 | CONFIG_BITREVERSE=y | ||
1106 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1107 | # CONFIG_CRC_CCITT is not set | ||
1108 | # CONFIG_CRC16 is not set | ||
1109 | # CONFIG_CRC_T10DIF is not set | ||
1110 | # CONFIG_CRC_ITU_T is not set | ||
1111 | CONFIG_CRC32=y | ||
1112 | # CONFIG_CRC7 is not set | ||
1113 | # CONFIG_LIBCRC32C is not set | ||
1114 | CONFIG_PLIST=y | ||
1115 | CONFIG_HAS_IOMEM=y | ||
1116 | CONFIG_HAS_IOPORT=y | ||
1117 | CONFIG_HAS_DMA=y | ||
1118 | CONFIG_HAVE_LMB=y | ||
1119 | |||
1120 | # | ||
1121 | # Kernel hacking | ||
1122 | # | ||
1123 | # CONFIG_PRINTK_TIME is not set | ||
1124 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1125 | CONFIG_ENABLE_MUST_CHECK=y | ||
1126 | CONFIG_FRAME_WARN=1024 | ||
1127 | # CONFIG_MAGIC_SYSRQ is not set | ||
1128 | # CONFIG_UNUSED_SYMBOLS is not set | ||
1129 | # CONFIG_DEBUG_FS is not set | ||
1130 | # CONFIG_HEADERS_CHECK is not set | ||
1131 | CONFIG_DEBUG_KERNEL=y | ||
1132 | # CONFIG_DEBUG_SHIRQ is not set | ||
1133 | CONFIG_DETECT_SOFTLOCKUP=y | ||
1134 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | ||
1135 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | ||
1136 | CONFIG_SCHED_DEBUG=y | ||
1137 | # CONFIG_SCHEDSTATS is not set | ||
1138 | # CONFIG_TIMER_STATS is not set | ||
1139 | # CONFIG_DEBUG_OBJECTS is not set | ||
1140 | # CONFIG_SLUB_DEBUG_ON is not set | ||
1141 | # CONFIG_SLUB_STATS is not set | ||
1142 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1143 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1144 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1145 | # CONFIG_DEBUG_MUTEXES is not set | ||
1146 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1147 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1148 | # CONFIG_DEBUG_KOBJECT is not set | ||
1149 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
1150 | # CONFIG_DEBUG_INFO is not set | ||
1151 | # CONFIG_DEBUG_VM is not set | ||
1152 | # CONFIG_DEBUG_WRITECOUNT is not set | ||
1153 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
1154 | # CONFIG_DEBUG_LIST is not set | ||
1155 | # CONFIG_DEBUG_SG is not set | ||
1156 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
1157 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1158 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1159 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
1160 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1161 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | ||
1162 | # CONFIG_FAULT_INJECTION is not set | ||
1163 | # CONFIG_LATENCYTOP is not set | ||
1164 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
1165 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
1166 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
1167 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
1168 | |||
1169 | # | ||
1170 | # Tracers | ||
1171 | # | ||
1172 | # CONFIG_FUNCTION_TRACER is not set | ||
1173 | # CONFIG_SCHED_TRACER is not set | ||
1174 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
1175 | # CONFIG_BOOT_TRACER is not set | ||
1176 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
1177 | # CONFIG_STACK_TRACER is not set | ||
1178 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
1179 | # CONFIG_SAMPLES is not set | ||
1180 | CONFIG_HAVE_ARCH_KGDB=y | ||
1181 | # CONFIG_KGDB is not set | ||
1182 | CONFIG_PRINT_STACK_DEPTH=64 | ||
1183 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1184 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1185 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1186 | # CONFIG_CODE_PATCHING_SELFTEST is not set | ||
1187 | # CONFIG_FTR_FIXUP_SELFTEST is not set | ||
1188 | # CONFIG_MSI_BITMAP_SELFTEST is not set | ||
1189 | # CONFIG_XMON is not set | ||
1190 | # CONFIG_IRQSTACKS is not set | ||
1191 | # CONFIG_BDI_SWITCH is not set | ||
1192 | CONFIG_PPC_EARLY_DEBUG=y | ||
1193 | # CONFIG_PPC_EARLY_DEBUG_LPAR is not set | ||
1194 | # CONFIG_PPC_EARLY_DEBUG_G5 is not set | ||
1195 | # CONFIG_PPC_EARLY_DEBUG_RTAS_PANEL is not set | ||
1196 | # CONFIG_PPC_EARLY_DEBUG_RTAS_CONSOLE is not set | ||
1197 | # CONFIG_PPC_EARLY_DEBUG_MAPLE is not set | ||
1198 | # CONFIG_PPC_EARLY_DEBUG_ISERIES is not set | ||
1199 | # CONFIG_PPC_EARLY_DEBUG_PAS_REALMODE is not set | ||
1200 | # CONFIG_PPC_EARLY_DEBUG_BEAT is not set | ||
1201 | # CONFIG_PPC_EARLY_DEBUG_44x is not set | ||
1202 | # CONFIG_PPC_EARLY_DEBUG_40x is not set | ||
1203 | # CONFIG_PPC_EARLY_DEBUG_CPM is not set | ||
1204 | |||
1205 | # | ||
1206 | # Security options | ||
1207 | # | ||
1208 | # CONFIG_KEYS is not set | ||
1209 | # CONFIG_SECURITY is not set | ||
1210 | # CONFIG_SECURITYFS is not set | ||
1211 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1212 | CONFIG_CRYPTO=y | ||
1213 | |||
1214 | # | ||
1215 | # Crypto core or helper | ||
1216 | # | ||
1217 | # CONFIG_CRYPTO_FIPS is not set | ||
1218 | CONFIG_CRYPTO_ALGAPI=y | ||
1219 | CONFIG_CRYPTO_ALGAPI2=y | ||
1220 | CONFIG_CRYPTO_AEAD2=y | ||
1221 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1222 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
1223 | CONFIG_CRYPTO_HASH=y | ||
1224 | CONFIG_CRYPTO_HASH2=y | ||
1225 | CONFIG_CRYPTO_RNG2=y | ||
1226 | CONFIG_CRYPTO_MANAGER=y | ||
1227 | CONFIG_CRYPTO_MANAGER2=y | ||
1228 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1229 | # CONFIG_CRYPTO_NULL is not set | ||
1230 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1231 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1232 | # CONFIG_CRYPTO_TEST is not set | ||
1233 | |||
1234 | # | ||
1235 | # Authenticated Encryption with Associated Data | ||
1236 | # | ||
1237 | # CONFIG_CRYPTO_CCM is not set | ||
1238 | # CONFIG_CRYPTO_GCM is not set | ||
1239 | # CONFIG_CRYPTO_SEQIV is not set | ||
1240 | |||
1241 | # | ||
1242 | # Block modes | ||
1243 | # | ||
1244 | CONFIG_CRYPTO_CBC=y | ||
1245 | # CONFIG_CRYPTO_CTR is not set | ||
1246 | # CONFIG_CRYPTO_CTS is not set | ||
1247 | CONFIG_CRYPTO_ECB=m | ||
1248 | # CONFIG_CRYPTO_LRW is not set | ||
1249 | CONFIG_CRYPTO_PCBC=m | ||
1250 | # CONFIG_CRYPTO_XTS is not set | ||
1251 | |||
1252 | # | ||
1253 | # Hash modes | ||
1254 | # | ||
1255 | # CONFIG_CRYPTO_HMAC is not set | ||
1256 | # CONFIG_CRYPTO_XCBC is not set | ||
1257 | |||
1258 | # | ||
1259 | # Digest | ||
1260 | # | ||
1261 | # CONFIG_CRYPTO_CRC32C is not set | ||
1262 | # CONFIG_CRYPTO_MD4 is not set | ||
1263 | CONFIG_CRYPTO_MD5=y | ||
1264 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1265 | # CONFIG_CRYPTO_RMD128 is not set | ||
1266 | # CONFIG_CRYPTO_RMD160 is not set | ||
1267 | # CONFIG_CRYPTO_RMD256 is not set | ||
1268 | # CONFIG_CRYPTO_RMD320 is not set | ||
1269 | # CONFIG_CRYPTO_SHA1 is not set | ||
1270 | # CONFIG_CRYPTO_SHA256 is not set | ||
1271 | # CONFIG_CRYPTO_SHA512 is not set | ||
1272 | # CONFIG_CRYPTO_TGR192 is not set | ||
1273 | # CONFIG_CRYPTO_WP512 is not set | ||
1274 | |||
1275 | # | ||
1276 | # Ciphers | ||
1277 | # | ||
1278 | # CONFIG_CRYPTO_AES is not set | ||
1279 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1280 | # CONFIG_CRYPTO_ARC4 is not set | ||
1281 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1282 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1283 | # CONFIG_CRYPTO_CAST5 is not set | ||
1284 | # CONFIG_CRYPTO_CAST6 is not set | ||
1285 | CONFIG_CRYPTO_DES=y | ||
1286 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1287 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1288 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1289 | # CONFIG_CRYPTO_SEED is not set | ||
1290 | # CONFIG_CRYPTO_SERPENT is not set | ||
1291 | # CONFIG_CRYPTO_TEA is not set | ||
1292 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1293 | |||
1294 | # | ||
1295 | # Compression | ||
1296 | # | ||
1297 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1298 | # CONFIG_CRYPTO_LZO is not set | ||
1299 | |||
1300 | # | ||
1301 | # Random Number Generation | ||
1302 | # | ||
1303 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | ||
1304 | CONFIG_CRYPTO_HW=y | ||
1305 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1306 | # CONFIG_CRYPTO_DEV_TALITOS is not set | ||
1307 | # CONFIG_PPC_CLOCK is not set | ||
1308 | CONFIG_PPC_LIB_RHEAP=y | ||
1309 | # CONFIG_VIRTUALIZATION is not set | ||
diff --git a/arch/powerpc/configs/mpc5200_defconfig b/arch/powerpc/configs/mpc5200_defconfig index af0cd55605d0..aaa4416660e9 100644 --- a/arch/powerpc/configs/mpc5200_defconfig +++ b/arch/powerpc/configs/mpc5200_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.29-rc3 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Fri Feb 6 09:48:53 2009 | 4 | # Mon Apr 20 11:06:25 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | # CONFIG_ALTIVEC is not set | 19 | # CONFIG_ALTIVEC is not set |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -39,6 +40,7 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
39 | CONFIG_GENERIC_HWEIGHT=y | 40 | CONFIG_GENERIC_HWEIGHT=y |
40 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 41 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
41 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 42 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
43 | CONFIG_GENERIC_GPIO=y | ||
42 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 44 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
43 | CONFIG_PPC=y | 45 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 46 | CONFIG_EARLY_PRINTK=y |
@@ -55,6 +57,7 @@ CONFIG_DEFAULT_UIMAGE=y | |||
55 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 57 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
56 | # CONFIG_PPC_DCR_NATIVE is not set | 58 | # CONFIG_PPC_DCR_NATIVE is not set |
57 | # CONFIG_PPC_DCR_MMIO is not set | 59 | # CONFIG_PPC_DCR_MMIO is not set |
60 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
58 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
59 | 62 | ||
60 | # | 63 | # |
@@ -91,19 +94,22 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
91 | # CONFIG_NAMESPACES is not set | 94 | # CONFIG_NAMESPACES is not set |
92 | CONFIG_BLK_DEV_INITRD=y | 95 | CONFIG_BLK_DEV_INITRD=y |
93 | CONFIG_INITRAMFS_SOURCE="" | 96 | CONFIG_INITRAMFS_SOURCE="" |
97 | CONFIG_RD_GZIP=y | ||
98 | # CONFIG_RD_BZIP2 is not set | ||
99 | # CONFIG_RD_LZMA is not set | ||
94 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 100 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
95 | CONFIG_SYSCTL=y | 101 | CONFIG_SYSCTL=y |
102 | CONFIG_ANON_INODES=y | ||
96 | CONFIG_EMBEDDED=y | 103 | CONFIG_EMBEDDED=y |
97 | # CONFIG_SYSCTL_SYSCALL is not set | 104 | # CONFIG_SYSCTL_SYSCALL is not set |
98 | # CONFIG_KALLSYMS is not set | 105 | # CONFIG_KALLSYMS is not set |
106 | # CONFIG_STRIP_ASM_SYMS is not set | ||
99 | CONFIG_HOTPLUG=y | 107 | CONFIG_HOTPLUG=y |
100 | CONFIG_PRINTK=y | 108 | CONFIG_PRINTK=y |
101 | CONFIG_BUG=y | 109 | CONFIG_BUG=y |
102 | CONFIG_ELF_CORE=y | 110 | CONFIG_ELF_CORE=y |
103 | CONFIG_COMPAT_BRK=y | ||
104 | CONFIG_BASE_FULL=y | 111 | CONFIG_BASE_FULL=y |
105 | CONFIG_FUTEX=y | 112 | CONFIG_FUTEX=y |
106 | CONFIG_ANON_INODES=y | ||
107 | # CONFIG_EPOLL is not set | 113 | # CONFIG_EPOLL is not set |
108 | CONFIG_SIGNALFD=y | 114 | CONFIG_SIGNALFD=y |
109 | CONFIG_TIMERFD=y | 115 | CONFIG_TIMERFD=y |
@@ -113,10 +119,12 @@ CONFIG_AIO=y | |||
113 | CONFIG_VM_EVENT_COUNTERS=y | 119 | CONFIG_VM_EVENT_COUNTERS=y |
114 | CONFIG_PCI_QUIRKS=y | 120 | CONFIG_PCI_QUIRKS=y |
115 | CONFIG_SLUB_DEBUG=y | 121 | CONFIG_SLUB_DEBUG=y |
122 | CONFIG_COMPAT_BRK=y | ||
116 | # CONFIG_SLAB is not set | 123 | # CONFIG_SLAB is not set |
117 | CONFIG_SLUB=y | 124 | CONFIG_SLUB=y |
118 | # CONFIG_SLOB is not set | 125 | # CONFIG_SLOB is not set |
119 | # CONFIG_PROFILING is not set | 126 | # CONFIG_PROFILING is not set |
127 | # CONFIG_MARKERS is not set | ||
120 | CONFIG_HAVE_OPROFILE=y | 128 | CONFIG_HAVE_OPROFILE=y |
121 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 129 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
122 | CONFIG_HAVE_IOREMAP_PROT=y | 130 | CONFIG_HAVE_IOREMAP_PROT=y |
@@ -124,6 +132,7 @@ CONFIG_HAVE_KPROBES=y | |||
124 | CONFIG_HAVE_KRETPROBES=y | 132 | CONFIG_HAVE_KRETPROBES=y |
125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 133 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
126 | CONFIG_HAVE_CLK=y | 134 | CONFIG_HAVE_CLK=y |
135 | # CONFIG_SLOW_WORK is not set | ||
127 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 136 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
128 | CONFIG_SLABINFO=y | 137 | CONFIG_SLABINFO=y |
129 | CONFIG_RT_MUTEXES=y | 138 | CONFIG_RT_MUTEXES=y |
@@ -136,7 +145,6 @@ CONFIG_MODULE_UNLOAD=y | |||
136 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 145 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
137 | CONFIG_BLOCK=y | 146 | CONFIG_BLOCK=y |
138 | # CONFIG_LBD is not set | 147 | # CONFIG_LBD is not set |
139 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
140 | # CONFIG_BLK_DEV_BSG is not set | 148 | # CONFIG_BLK_DEV_BSG is not set |
141 | # CONFIG_BLK_DEV_INTEGRITY is not set | 149 | # CONFIG_BLK_DEV_INTEGRITY is not set |
142 | 150 | ||
@@ -157,8 +165,6 @@ CONFIG_FREEZER=y | |||
157 | # | 165 | # |
158 | # Platform support | 166 | # Platform support |
159 | # | 167 | # |
160 | CONFIG_PPC_MULTIPLATFORM=y | ||
161 | CONFIG_CLASSIC32=y | ||
162 | # CONFIG_PPC_CHRP is not set | 168 | # CONFIG_PPC_CHRP is not set |
163 | # CONFIG_MPC5121_ADS is not set | 169 | # CONFIG_MPC5121_ADS is not set |
164 | # CONFIG_MPC5121_GENERIC is not set | 170 | # CONFIG_MPC5121_GENERIC is not set |
@@ -166,8 +172,9 @@ CONFIG_PPC_MPC52xx=y | |||
166 | CONFIG_PPC_MPC5200_SIMPLE=y | 172 | CONFIG_PPC_MPC5200_SIMPLE=y |
167 | CONFIG_PPC_EFIKA=y | 173 | CONFIG_PPC_EFIKA=y |
168 | CONFIG_PPC_LITE5200=y | 174 | CONFIG_PPC_LITE5200=y |
175 | CONFIG_PPC_MEDIA5200=y | ||
169 | CONFIG_PPC_MPC5200_BUGFIX=y | 176 | CONFIG_PPC_MPC5200_BUGFIX=y |
170 | # CONFIG_PPC_MPC5200_GPIO is not set | 177 | CONFIG_PPC_MPC5200_GPIO=y |
171 | # CONFIG_PPC_PMAC is not set | 178 | # CONFIG_PPC_PMAC is not set |
172 | # CONFIG_PPC_CELL is not set | 179 | # CONFIG_PPC_CELL is not set |
173 | # CONFIG_PPC_CELL_NATIVE is not set | 180 | # CONFIG_PPC_CELL_NATIVE is not set |
@@ -176,7 +183,9 @@ CONFIG_PPC_MPC5200_BUGFIX=y | |||
176 | # CONFIG_PPC_83xx is not set | 183 | # CONFIG_PPC_83xx is not set |
177 | # CONFIG_PPC_86xx is not set | 184 | # CONFIG_PPC_86xx is not set |
178 | # CONFIG_EMBEDDED6xx is not set | 185 | # CONFIG_EMBEDDED6xx is not set |
186 | # CONFIG_AMIGAONE is not set | ||
179 | CONFIG_PPC_NATIVE=y | 187 | CONFIG_PPC_NATIVE=y |
188 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
180 | # CONFIG_UDBG_RTAS_CONSOLE is not set | 189 | # CONFIG_UDBG_RTAS_CONSOLE is not set |
181 | # CONFIG_IPIC is not set | 190 | # CONFIG_IPIC is not set |
182 | # CONFIG_MPIC is not set | 191 | # CONFIG_MPIC is not set |
@@ -241,9 +250,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
241 | CONFIG_BOUNCE=y | 250 | CONFIG_BOUNCE=y |
242 | CONFIG_VIRT_TO_BUS=y | 251 | CONFIG_VIRT_TO_BUS=y |
243 | CONFIG_UNEVICTABLE_LRU=y | 252 | CONFIG_UNEVICTABLE_LRU=y |
253 | CONFIG_HAVE_MLOCK=y | ||
254 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
244 | CONFIG_PPC_4K_PAGES=y | 255 | CONFIG_PPC_4K_PAGES=y |
245 | # CONFIG_PPC_16K_PAGES is not set | 256 | # CONFIG_PPC_16K_PAGES is not set |
246 | # CONFIG_PPC_64K_PAGES is not set | 257 | # CONFIG_PPC_64K_PAGES is not set |
258 | # CONFIG_PPC_256K_PAGES is not set | ||
247 | CONFIG_FORCE_MAX_ZONEORDER=11 | 259 | CONFIG_FORCE_MAX_ZONEORDER=11 |
248 | CONFIG_PROC_DEVICETREE=y | 260 | CONFIG_PROC_DEVICETREE=y |
249 | # CONFIG_CMDLINE_BOOL is not set | 261 | # CONFIG_CMDLINE_BOOL is not set |
@@ -272,6 +284,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
272 | CONFIG_PCI_LEGACY=y | 284 | CONFIG_PCI_LEGACY=y |
273 | # CONFIG_PCI_DEBUG is not set | 285 | # CONFIG_PCI_DEBUG is not set |
274 | # CONFIG_PCI_STUB is not set | 286 | # CONFIG_PCI_STUB is not set |
287 | # CONFIG_PCI_IOV is not set | ||
275 | # CONFIG_PCCARD is not set | 288 | # CONFIG_PCCARD is not set |
276 | # CONFIG_HOTPLUG_PCI is not set | 289 | # CONFIG_HOTPLUG_PCI is not set |
277 | # CONFIG_HAS_RAPIDIO is not set | 290 | # CONFIG_HAS_RAPIDIO is not set |
@@ -294,7 +307,6 @@ CONFIG_NET=y | |||
294 | # | 307 | # |
295 | # Networking options | 308 | # Networking options |
296 | # | 309 | # |
297 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
298 | CONFIG_PACKET=y | 310 | CONFIG_PACKET=y |
299 | # CONFIG_PACKET_MMAP is not set | 311 | # CONFIG_PACKET_MMAP is not set |
300 | CONFIG_UNIX=y | 312 | CONFIG_UNIX=y |
@@ -350,6 +362,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
350 | # CONFIG_LAPB is not set | 362 | # CONFIG_LAPB is not set |
351 | # CONFIG_ECONET is not set | 363 | # CONFIG_ECONET is not set |
352 | # CONFIG_WAN_ROUTER is not set | 364 | # CONFIG_WAN_ROUTER is not set |
365 | # CONFIG_PHONET is not set | ||
353 | # CONFIG_NET_SCHED is not set | 366 | # CONFIG_NET_SCHED is not set |
354 | # CONFIG_DCB is not set | 367 | # CONFIG_DCB is not set |
355 | 368 | ||
@@ -362,7 +375,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
362 | # CONFIG_IRDA is not set | 375 | # CONFIG_IRDA is not set |
363 | # CONFIG_BT is not set | 376 | # CONFIG_BT is not set |
364 | # CONFIG_AF_RXRPC is not set | 377 | # CONFIG_AF_RXRPC is not set |
365 | # CONFIG_PHONET is not set | ||
366 | # CONFIG_WIRELESS is not set | 378 | # CONFIG_WIRELESS is not set |
367 | # CONFIG_WIMAX is not set | 379 | # CONFIG_WIMAX is not set |
368 | # CONFIG_RFKILL is not set | 380 | # CONFIG_RFKILL is not set |
@@ -388,12 +400,9 @@ CONFIG_MTD=y | |||
388 | CONFIG_MTD_CONCAT=y | 400 | CONFIG_MTD_CONCAT=y |
389 | CONFIG_MTD_PARTITIONS=y | 401 | CONFIG_MTD_PARTITIONS=y |
390 | # CONFIG_MTD_TESTS is not set | 402 | # CONFIG_MTD_TESTS is not set |
391 | CONFIG_MTD_REDBOOT_PARTS=y | 403 | # CONFIG_MTD_REDBOOT_PARTS is not set |
392 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | ||
393 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | ||
394 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | ||
395 | CONFIG_MTD_CMDLINE_PARTS=y | 404 | CONFIG_MTD_CMDLINE_PARTS=y |
396 | # CONFIG_MTD_OF_PARTS is not set | 405 | CONFIG_MTD_OF_PARTS=y |
397 | # CONFIG_MTD_AR7_PARTS is not set | 406 | # CONFIG_MTD_AR7_PARTS is not set |
398 | 407 | ||
399 | # | 408 | # |
@@ -447,6 +456,8 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
447 | # Self-contained MTD device drivers | 456 | # Self-contained MTD device drivers |
448 | # | 457 | # |
449 | # CONFIG_MTD_PMC551 is not set | 458 | # CONFIG_MTD_PMC551 is not set |
459 | # CONFIG_MTD_DATAFLASH is not set | ||
460 | # CONFIG_MTD_M25P80 is not set | ||
450 | # CONFIG_MTD_SLRAM is not set | 461 | # CONFIG_MTD_SLRAM is not set |
451 | # CONFIG_MTD_PHRAM is not set | 462 | # CONFIG_MTD_PHRAM is not set |
452 | # CONFIG_MTD_MTDRAM is not set | 463 | # CONFIG_MTD_MTDRAM is not set |
@@ -465,14 +476,23 @@ CONFIG_MTD_PHYSMAP_OF=y | |||
465 | # LPDDR flash memory drivers | 476 | # LPDDR flash memory drivers |
466 | # | 477 | # |
467 | # CONFIG_MTD_LPDDR is not set | 478 | # CONFIG_MTD_LPDDR is not set |
468 | # CONFIG_MTD_QINFO_PROBE is not set | ||
469 | 479 | ||
470 | # | 480 | # |
471 | # UBI - Unsorted block images | 481 | # UBI - Unsorted block images |
472 | # | 482 | # |
473 | # CONFIG_MTD_UBI is not set | 483 | CONFIG_MTD_UBI=m |
484 | CONFIG_MTD_UBI_WL_THRESHOLD=4096 | ||
485 | CONFIG_MTD_UBI_BEB_RESERVE=1 | ||
486 | # CONFIG_MTD_UBI_GLUEBI is not set | ||
487 | |||
488 | # | ||
489 | # UBI debugging options | ||
490 | # | ||
491 | # CONFIG_MTD_UBI_DEBUG is not set | ||
474 | CONFIG_OF_DEVICE=y | 492 | CONFIG_OF_DEVICE=y |
493 | CONFIG_OF_GPIO=y | ||
475 | CONFIG_OF_I2C=y | 494 | CONFIG_OF_I2C=y |
495 | CONFIG_OF_SPI=y | ||
476 | # CONFIG_PARPORT is not set | 496 | # CONFIG_PARPORT is not set |
477 | CONFIG_BLK_DEV=y | 497 | CONFIG_BLK_DEV=y |
478 | # CONFIG_BLK_DEV_FD is not set | 498 | # CONFIG_BLK_DEV_FD is not set |
@@ -500,12 +520,14 @@ CONFIG_MISC_DEVICES=y | |||
500 | # CONFIG_ICS932S401 is not set | 520 | # CONFIG_ICS932S401 is not set |
501 | # CONFIG_ENCLOSURE_SERVICES is not set | 521 | # CONFIG_ENCLOSURE_SERVICES is not set |
502 | # CONFIG_HP_ILO is not set | 522 | # CONFIG_HP_ILO is not set |
523 | # CONFIG_ISL29003 is not set | ||
503 | # CONFIG_C2PORT is not set | 524 | # CONFIG_C2PORT is not set |
504 | 525 | ||
505 | # | 526 | # |
506 | # EEPROM support | 527 | # EEPROM support |
507 | # | 528 | # |
508 | CONFIG_EEPROM_AT24=y | 529 | CONFIG_EEPROM_AT24=y |
530 | # CONFIG_EEPROM_AT25 is not set | ||
509 | # CONFIG_EEPROM_LEGACY is not set | 531 | # CONFIG_EEPROM_LEGACY is not set |
510 | # CONFIG_EEPROM_93CX6 is not set | 532 | # CONFIG_EEPROM_93CX6 is not set |
511 | CONFIG_HAVE_IDE=y | 533 | CONFIG_HAVE_IDE=y |
@@ -564,9 +586,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
564 | # CONFIG_MEGARAID_NEWGEN is not set | 586 | # CONFIG_MEGARAID_NEWGEN is not set |
565 | # CONFIG_MEGARAID_LEGACY is not set | 587 | # CONFIG_MEGARAID_LEGACY is not set |
566 | # CONFIG_MEGARAID_SAS is not set | 588 | # CONFIG_MEGARAID_SAS is not set |
589 | # CONFIG_SCSI_MPT2SAS is not set | ||
567 | # CONFIG_SCSI_HPTIOP is not set | 590 | # CONFIG_SCSI_HPTIOP is not set |
568 | # CONFIG_SCSI_BUSLOGIC is not set | 591 | # CONFIG_SCSI_BUSLOGIC is not set |
569 | # CONFIG_LIBFC is not set | 592 | # CONFIG_LIBFC is not set |
593 | # CONFIG_LIBFCOE is not set | ||
570 | # CONFIG_FCOE is not set | 594 | # CONFIG_FCOE is not set |
571 | # CONFIG_SCSI_DMX3191D is not set | 595 | # CONFIG_SCSI_DMX3191D is not set |
572 | # CONFIG_SCSI_EATA is not set | 596 | # CONFIG_SCSI_EATA is not set |
@@ -589,6 +613,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
589 | # CONFIG_SCSI_DEBUG is not set | 613 | # CONFIG_SCSI_DEBUG is not set |
590 | # CONFIG_SCSI_SRP is not set | 614 | # CONFIG_SCSI_SRP is not set |
591 | # CONFIG_SCSI_DH is not set | 615 | # CONFIG_SCSI_DH is not set |
616 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
592 | CONFIG_ATA=y | 617 | CONFIG_ATA=y |
593 | # CONFIG_ATA_NONSTANDARD is not set | 618 | # CONFIG_ATA_NONSTANDARD is not set |
594 | CONFIG_SATA_PMP=y | 619 | CONFIG_SATA_PMP=y |
@@ -666,6 +691,7 @@ CONFIG_PATA_PLATFORM=y | |||
666 | # CONFIG_I2O is not set | 691 | # CONFIG_I2O is not set |
667 | # CONFIG_MACINTOSH_DRIVERS is not set | 692 | # CONFIG_MACINTOSH_DRIVERS is not set |
668 | CONFIG_NETDEVICES=y | 693 | CONFIG_NETDEVICES=y |
694 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
669 | # CONFIG_DUMMY is not set | 695 | # CONFIG_DUMMY is not set |
670 | # CONFIG_BONDING is not set | 696 | # CONFIG_BONDING is not set |
671 | # CONFIG_MACVLAN is not set | 697 | # CONFIG_MACVLAN is not set |
@@ -699,6 +725,9 @@ CONFIG_NET_ETHERNET=y | |||
699 | # CONFIG_SUNGEM is not set | 725 | # CONFIG_SUNGEM is not set |
700 | # CONFIG_CASSINI is not set | 726 | # CONFIG_CASSINI is not set |
701 | # CONFIG_NET_VENDOR_3COM is not set | 727 | # CONFIG_NET_VENDOR_3COM is not set |
728 | # CONFIG_ENC28J60 is not set | ||
729 | # CONFIG_ETHOC is not set | ||
730 | # CONFIG_DNET is not set | ||
702 | # CONFIG_NET_TULIP is not set | 731 | # CONFIG_NET_TULIP is not set |
703 | # CONFIG_HP100 is not set | 732 | # CONFIG_HP100 is not set |
704 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 733 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -722,7 +751,6 @@ CONFIG_FEC_MPC52xx_MDIO=y | |||
722 | # | 751 | # |
723 | # CONFIG_WLAN_PRE80211 is not set | 752 | # CONFIG_WLAN_PRE80211 is not set |
724 | # CONFIG_WLAN_80211 is not set | 753 | # CONFIG_WLAN_80211 is not set |
725 | # CONFIG_IWLWIFI_LEDS is not set | ||
726 | 754 | ||
727 | # | 755 | # |
728 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 756 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -802,6 +830,7 @@ CONFIG_DEVKMEM=y | |||
802 | # | 830 | # |
803 | # Non-8250 serial port support | 831 | # Non-8250 serial port support |
804 | # | 832 | # |
833 | # CONFIG_SERIAL_MAX3100 is not set | ||
805 | # CONFIG_SERIAL_UARTLITE is not set | 834 | # CONFIG_SERIAL_UARTLITE is not set |
806 | CONFIG_SERIAL_CORE=y | 835 | CONFIG_SERIAL_CORE=y |
807 | CONFIG_SERIAL_CORE_CONSOLE=y | 836 | CONFIG_SERIAL_CORE_CONSOLE=y |
@@ -854,6 +883,7 @@ CONFIG_I2C_ALGOBIT=y | |||
854 | # | 883 | # |
855 | # I2C system bus drivers (mostly embedded / system-on-chip) | 884 | # I2C system bus drivers (mostly embedded / system-on-chip) |
856 | # | 885 | # |
886 | # CONFIG_I2C_GPIO is not set | ||
857 | CONFIG_I2C_MPC=y | 887 | CONFIG_I2C_MPC=y |
858 | # CONFIG_I2C_OCORES is not set | 888 | # CONFIG_I2C_OCORES is not set |
859 | # CONFIG_I2C_SIMTEC is not set | 889 | # CONFIG_I2C_SIMTEC is not set |
@@ -883,22 +913,63 @@ CONFIG_I2C_MPC=y | |||
883 | # CONFIG_SENSORS_PCF8574 is not set | 913 | # CONFIG_SENSORS_PCF8574 is not set |
884 | # CONFIG_PCF8575 is not set | 914 | # CONFIG_PCF8575 is not set |
885 | # CONFIG_SENSORS_PCA9539 is not set | 915 | # CONFIG_SENSORS_PCA9539 is not set |
886 | # CONFIG_SENSORS_PCF8591 is not set | ||
887 | # CONFIG_SENSORS_MAX6875 is not set | 916 | # CONFIG_SENSORS_MAX6875 is not set |
888 | # CONFIG_SENSORS_TSL2550 is not set | 917 | # CONFIG_SENSORS_TSL2550 is not set |
889 | # CONFIG_I2C_DEBUG_CORE is not set | 918 | # CONFIG_I2C_DEBUG_CORE is not set |
890 | # CONFIG_I2C_DEBUG_ALGO is not set | 919 | # CONFIG_I2C_DEBUG_ALGO is not set |
891 | # CONFIG_I2C_DEBUG_BUS is not set | 920 | # CONFIG_I2C_DEBUG_BUS is not set |
892 | # CONFIG_I2C_DEBUG_CHIP is not set | 921 | # CONFIG_I2C_DEBUG_CHIP is not set |
893 | # CONFIG_SPI is not set | 922 | CONFIG_SPI=y |
923 | # CONFIG_SPI_DEBUG is not set | ||
924 | CONFIG_SPI_MASTER=y | ||
925 | |||
926 | # | ||
927 | # SPI Master Controller Drivers | ||
928 | # | ||
929 | # CONFIG_SPI_BITBANG is not set | ||
930 | # CONFIG_SPI_GPIO is not set | ||
931 | CONFIG_SPI_MPC52xx_PSC=m | ||
932 | |||
933 | # | ||
934 | # SPI Protocol Masters | ||
935 | # | ||
936 | CONFIG_SPI_SPIDEV=m | ||
937 | # CONFIG_SPI_TLE62X0 is not set | ||
894 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 938 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
895 | # CONFIG_GPIOLIB is not set | 939 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
940 | CONFIG_GPIOLIB=y | ||
941 | # CONFIG_DEBUG_GPIO is not set | ||
942 | # CONFIG_GPIO_SYSFS is not set | ||
943 | |||
944 | # | ||
945 | # Memory mapped GPIO expanders: | ||
946 | # | ||
947 | # CONFIG_GPIO_XILINX is not set | ||
948 | |||
949 | # | ||
950 | # I2C GPIO expanders: | ||
951 | # | ||
952 | # CONFIG_GPIO_MAX732X is not set | ||
953 | # CONFIG_GPIO_PCA953X is not set | ||
954 | # CONFIG_GPIO_PCF857X is not set | ||
955 | |||
956 | # | ||
957 | # PCI GPIO expanders: | ||
958 | # | ||
959 | # CONFIG_GPIO_BT8XX is not set | ||
960 | |||
961 | # | ||
962 | # SPI GPIO expanders: | ||
963 | # | ||
964 | # CONFIG_GPIO_MAX7301 is not set | ||
965 | # CONFIG_GPIO_MCP23S08 is not set | ||
896 | # CONFIG_W1 is not set | 966 | # CONFIG_W1 is not set |
897 | # CONFIG_POWER_SUPPLY is not set | 967 | # CONFIG_POWER_SUPPLY is not set |
898 | CONFIG_HWMON=y | 968 | CONFIG_HWMON=y |
899 | # CONFIG_HWMON_VID is not set | 969 | # CONFIG_HWMON_VID is not set |
900 | # CONFIG_SENSORS_AD7414 is not set | 970 | # CONFIG_SENSORS_AD7414 is not set |
901 | # CONFIG_SENSORS_AD7418 is not set | 971 | # CONFIG_SENSORS_AD7418 is not set |
972 | # CONFIG_SENSORS_ADCXX is not set | ||
902 | # CONFIG_SENSORS_ADM1021 is not set | 973 | # CONFIG_SENSORS_ADM1021 is not set |
903 | # CONFIG_SENSORS_ADM1025 is not set | 974 | # CONFIG_SENSORS_ADM1025 is not set |
904 | # CONFIG_SENSORS_ADM1026 is not set | 975 | # CONFIG_SENSORS_ADM1026 is not set |
@@ -915,10 +986,12 @@ CONFIG_HWMON=y | |||
915 | # CONFIG_SENSORS_F71805F is not set | 986 | # CONFIG_SENSORS_F71805F is not set |
916 | # CONFIG_SENSORS_F71882FG is not set | 987 | # CONFIG_SENSORS_F71882FG is not set |
917 | # CONFIG_SENSORS_F75375S is not set | 988 | # CONFIG_SENSORS_F75375S is not set |
989 | # CONFIG_SENSORS_G760A is not set | ||
918 | # CONFIG_SENSORS_GL518SM is not set | 990 | # CONFIG_SENSORS_GL518SM is not set |
919 | # CONFIG_SENSORS_GL520SM is not set | 991 | # CONFIG_SENSORS_GL520SM is not set |
920 | # CONFIG_SENSORS_IT87 is not set | 992 | # CONFIG_SENSORS_IT87 is not set |
921 | # CONFIG_SENSORS_LM63 is not set | 993 | # CONFIG_SENSORS_LM63 is not set |
994 | # CONFIG_SENSORS_LM70 is not set | ||
922 | # CONFIG_SENSORS_LM75 is not set | 995 | # CONFIG_SENSORS_LM75 is not set |
923 | # CONFIG_SENSORS_LM77 is not set | 996 | # CONFIG_SENSORS_LM77 is not set |
924 | # CONFIG_SENSORS_LM78 is not set | 997 | # CONFIG_SENSORS_LM78 is not set |
@@ -929,11 +1002,16 @@ CONFIG_HWMON=y | |||
929 | # CONFIG_SENSORS_LM90 is not set | 1002 | # CONFIG_SENSORS_LM90 is not set |
930 | # CONFIG_SENSORS_LM92 is not set | 1003 | # CONFIG_SENSORS_LM92 is not set |
931 | # CONFIG_SENSORS_LM93 is not set | 1004 | # CONFIG_SENSORS_LM93 is not set |
1005 | # CONFIG_SENSORS_LTC4215 is not set | ||
932 | # CONFIG_SENSORS_LTC4245 is not set | 1006 | # CONFIG_SENSORS_LTC4245 is not set |
1007 | # CONFIG_SENSORS_LM95241 is not set | ||
1008 | # CONFIG_SENSORS_MAX1111 is not set | ||
933 | # CONFIG_SENSORS_MAX1619 is not set | 1009 | # CONFIG_SENSORS_MAX1619 is not set |
934 | # CONFIG_SENSORS_MAX6650 is not set | 1010 | # CONFIG_SENSORS_MAX6650 is not set |
935 | # CONFIG_SENSORS_PC87360 is not set | 1011 | # CONFIG_SENSORS_PC87360 is not set |
936 | # CONFIG_SENSORS_PC87427 is not set | 1012 | # CONFIG_SENSORS_PC87427 is not set |
1013 | # CONFIG_SENSORS_PCF8591 is not set | ||
1014 | # CONFIG_SENSORS_SHT15 is not set | ||
937 | # CONFIG_SENSORS_SIS5595 is not set | 1015 | # CONFIG_SENSORS_SIS5595 is not set |
938 | # CONFIG_SENSORS_DME1737 is not set | 1016 | # CONFIG_SENSORS_DME1737 is not set |
939 | # CONFIG_SENSORS_SMSC47M1 is not set | 1017 | # CONFIG_SENSORS_SMSC47M1 is not set |
@@ -952,6 +1030,7 @@ CONFIG_HWMON=y | |||
952 | # CONFIG_SENSORS_W83L786NG is not set | 1030 | # CONFIG_SENSORS_W83L786NG is not set |
953 | # CONFIG_SENSORS_W83627HF is not set | 1031 | # CONFIG_SENSORS_W83627HF is not set |
954 | # CONFIG_SENSORS_W83627EHF is not set | 1032 | # CONFIG_SENSORS_W83627EHF is not set |
1033 | # CONFIG_SENSORS_LIS3_SPI is not set | ||
955 | # CONFIG_HWMON_DEBUG_CHIP is not set | 1034 | # CONFIG_HWMON_DEBUG_CHIP is not set |
956 | # CONFIG_THERMAL is not set | 1035 | # CONFIG_THERMAL is not set |
957 | # CONFIG_THERMAL_HWMON is not set | 1036 | # CONFIG_THERMAL_HWMON is not set |
@@ -989,6 +1068,7 @@ CONFIG_SSB_POSSIBLE=y | |||
989 | # CONFIG_MFD_CORE is not set | 1068 | # CONFIG_MFD_CORE is not set |
990 | # CONFIG_MFD_SM501 is not set | 1069 | # CONFIG_MFD_SM501 is not set |
991 | # CONFIG_HTC_PASIC3 is not set | 1070 | # CONFIG_HTC_PASIC3 is not set |
1071 | # CONFIG_TPS65010 is not set | ||
992 | # CONFIG_TWL4030_CORE is not set | 1072 | # CONFIG_TWL4030_CORE is not set |
993 | # CONFIG_MFD_TMIO is not set | 1073 | # CONFIG_MFD_TMIO is not set |
994 | # CONFIG_PMIC_DA903X is not set | 1074 | # CONFIG_PMIC_DA903X is not set |
@@ -1084,9 +1164,13 @@ CONFIG_FB_RADEON_BACKLIGHT=y | |||
1084 | # CONFIG_FB_VIRTUAL is not set | 1164 | # CONFIG_FB_VIRTUAL is not set |
1085 | # CONFIG_FB_METRONOME is not set | 1165 | # CONFIG_FB_METRONOME is not set |
1086 | # CONFIG_FB_MB862XX is not set | 1166 | # CONFIG_FB_MB862XX is not set |
1167 | # CONFIG_FB_BROADSHEET is not set | ||
1087 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1168 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
1088 | CONFIG_LCD_CLASS_DEVICE=m | 1169 | CONFIG_LCD_CLASS_DEVICE=m |
1170 | # CONFIG_LCD_LTV350QV is not set | ||
1089 | # CONFIG_LCD_ILI9320 is not set | 1171 | # CONFIG_LCD_ILI9320 is not set |
1172 | # CONFIG_LCD_TDO24M is not set | ||
1173 | # CONFIG_LCD_VGG2432A4 is not set | ||
1090 | # CONFIG_LCD_PLATFORM is not set | 1174 | # CONFIG_LCD_PLATFORM is not set |
1091 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1175 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
1092 | CONFIG_BACKLIGHT_GENERIC=y | 1176 | CONFIG_BACKLIGHT_GENERIC=y |
@@ -1127,15 +1211,17 @@ CONFIG_USB_HID=y | |||
1127 | # | 1211 | # |
1128 | # Special HID drivers | 1212 | # Special HID drivers |
1129 | # | 1213 | # |
1130 | CONFIG_HID_COMPAT=y | ||
1131 | CONFIG_HID_A4TECH=y | 1214 | CONFIG_HID_A4TECH=y |
1132 | # CONFIG_HID_APPLE is not set | 1215 | # CONFIG_HID_APPLE is not set |
1133 | CONFIG_HID_BELKIN=y | 1216 | CONFIG_HID_BELKIN=y |
1134 | CONFIG_HID_CHERRY=y | 1217 | CONFIG_HID_CHERRY=y |
1135 | # CONFIG_HID_CHICONY is not set | 1218 | # CONFIG_HID_CHICONY is not set |
1136 | CONFIG_HID_CYPRESS=y | 1219 | CONFIG_HID_CYPRESS=y |
1220 | # CONFIG_DRAGONRISE_FF is not set | ||
1137 | CONFIG_HID_EZKEY=y | 1221 | CONFIG_HID_EZKEY=y |
1222 | # CONFIG_HID_KYE is not set | ||
1138 | # CONFIG_HID_GYRATION is not set | 1223 | # CONFIG_HID_GYRATION is not set |
1224 | # CONFIG_HID_KENSINGTON is not set | ||
1139 | # CONFIG_HID_LOGITECH is not set | 1225 | # CONFIG_HID_LOGITECH is not set |
1140 | # CONFIG_HID_MICROSOFT is not set | 1226 | # CONFIG_HID_MICROSOFT is not set |
1141 | # CONFIG_HID_MONTEREY is not set | 1227 | # CONFIG_HID_MONTEREY is not set |
@@ -1204,11 +1290,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1204 | # CONFIG_USB_TMC is not set | 1290 | # CONFIG_USB_TMC is not set |
1205 | 1291 | ||
1206 | # | 1292 | # |
1207 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1293 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
1208 | # | 1294 | # |
1209 | 1295 | ||
1210 | # | 1296 | # |
1211 | # see USB_STORAGE Help for more information | 1297 | # also be needed; see USB_STORAGE Help for more info |
1212 | # | 1298 | # |
1213 | CONFIG_USB_STORAGE=y | 1299 | CONFIG_USB_STORAGE=y |
1214 | # CONFIG_USB_STORAGE_DEBUG is not set | 1300 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -1250,7 +1336,6 @@ CONFIG_USB_STORAGE=y | |||
1250 | # CONFIG_USB_LED is not set | 1336 | # CONFIG_USB_LED is not set |
1251 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1337 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1252 | # CONFIG_USB_CYTHERM is not set | 1338 | # CONFIG_USB_CYTHERM is not set |
1253 | # CONFIG_USB_PHIDGET is not set | ||
1254 | # CONFIG_USB_IDMOUSE is not set | 1339 | # CONFIG_USB_IDMOUSE is not set |
1255 | # CONFIG_USB_FTDI_ELAN is not set | 1340 | # CONFIG_USB_FTDI_ELAN is not set |
1256 | # CONFIG_USB_APPLEDISPLAY is not set | 1341 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -1265,6 +1350,8 @@ CONFIG_USB_STORAGE=y | |||
1265 | # | 1350 | # |
1266 | # OTG and related infrastructure | 1351 | # OTG and related infrastructure |
1267 | # | 1352 | # |
1353 | # CONFIG_USB_GPIO_VBUS is not set | ||
1354 | # CONFIG_NOP_USB_XCEIV is not set | ||
1268 | # CONFIG_UWB is not set | 1355 | # CONFIG_UWB is not set |
1269 | # CONFIG_MMC is not set | 1356 | # CONFIG_MMC is not set |
1270 | # CONFIG_MEMSTICK is not set | 1357 | # CONFIG_MEMSTICK is not set |
@@ -1317,6 +1404,13 @@ CONFIG_RTC_DRV_DS1307=y | |||
1317 | # | 1404 | # |
1318 | # SPI RTC drivers | 1405 | # SPI RTC drivers |
1319 | # | 1406 | # |
1407 | # CONFIG_RTC_DRV_M41T94 is not set | ||
1408 | # CONFIG_RTC_DRV_DS1305 is not set | ||
1409 | # CONFIG_RTC_DRV_DS1390 is not set | ||
1410 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1411 | # CONFIG_RTC_DRV_R9701 is not set | ||
1412 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
1413 | # CONFIG_RTC_DRV_DS3234 is not set | ||
1320 | 1414 | ||
1321 | # | 1415 | # |
1322 | # Platform RTC drivers | 1416 | # Platform RTC drivers |
@@ -1336,8 +1430,9 @@ CONFIG_RTC_DRV_DS1307=y | |||
1336 | # | 1430 | # |
1337 | # on-CPU RTC drivers | 1431 | # on-CPU RTC drivers |
1338 | # | 1432 | # |
1339 | # CONFIG_RTC_DRV_PPC is not set | 1433 | # CONFIG_RTC_DRV_GENERIC is not set |
1340 | # CONFIG_DMADEVICES is not set | 1434 | # CONFIG_DMADEVICES is not set |
1435 | # CONFIG_AUXDISPLAY is not set | ||
1341 | # CONFIG_UIO is not set | 1436 | # CONFIG_UIO is not set |
1342 | # CONFIG_STAGING is not set | 1437 | # CONFIG_STAGING is not set |
1343 | 1438 | ||
@@ -1348,6 +1443,7 @@ CONFIG_EXT2_FS=y | |||
1348 | # CONFIG_EXT2_FS_XATTR is not set | 1443 | # CONFIG_EXT2_FS_XATTR is not set |
1349 | # CONFIG_EXT2_FS_XIP is not set | 1444 | # CONFIG_EXT2_FS_XIP is not set |
1350 | CONFIG_EXT3_FS=y | 1445 | CONFIG_EXT3_FS=y |
1446 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1351 | CONFIG_EXT3_FS_XATTR=y | 1447 | CONFIG_EXT3_FS_XATTR=y |
1352 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1448 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1353 | # CONFIG_EXT3_FS_SECURITY is not set | 1449 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1370,6 +1466,11 @@ CONFIG_INOTIFY_USER=y | |||
1370 | # CONFIG_FUSE_FS is not set | 1466 | # CONFIG_FUSE_FS is not set |
1371 | 1467 | ||
1372 | # | 1468 | # |
1469 | # Caches | ||
1470 | # | ||
1471 | # CONFIG_FSCACHE is not set | ||
1472 | |||
1473 | # | ||
1373 | # CD-ROM/DVD Filesystems | 1474 | # CD-ROM/DVD Filesystems |
1374 | # | 1475 | # |
1375 | # CONFIG_ISO9660_FS is not set | 1476 | # CONFIG_ISO9660_FS is not set |
@@ -1416,6 +1517,12 @@ CONFIG_JFFS2_ZLIB=y | |||
1416 | # CONFIG_JFFS2_LZO is not set | 1517 | # CONFIG_JFFS2_LZO is not set |
1417 | CONFIG_JFFS2_RTIME=y | 1518 | CONFIG_JFFS2_RTIME=y |
1418 | # CONFIG_JFFS2_RUBIN is not set | 1519 | # CONFIG_JFFS2_RUBIN is not set |
1520 | CONFIG_UBIFS_FS=m | ||
1521 | # CONFIG_UBIFS_FS_XATTR is not set | ||
1522 | # CONFIG_UBIFS_FS_ADVANCED_COMPR is not set | ||
1523 | CONFIG_UBIFS_FS_LZO=y | ||
1524 | CONFIG_UBIFS_FS_ZLIB=y | ||
1525 | # CONFIG_UBIFS_FS_DEBUG is not set | ||
1419 | CONFIG_CRAMFS=y | 1526 | CONFIG_CRAMFS=y |
1420 | # CONFIG_SQUASHFS is not set | 1527 | # CONFIG_SQUASHFS is not set |
1421 | # CONFIG_VXFS_FS is not set | 1528 | # CONFIG_VXFS_FS is not set |
@@ -1426,6 +1533,7 @@ CONFIG_CRAMFS=y | |||
1426 | # CONFIG_ROMFS_FS is not set | 1533 | # CONFIG_ROMFS_FS is not set |
1427 | # CONFIG_SYSV_FS is not set | 1534 | # CONFIG_SYSV_FS is not set |
1428 | # CONFIG_UFS_FS is not set | 1535 | # CONFIG_UFS_FS is not set |
1536 | # CONFIG_NILFS2_FS is not set | ||
1429 | CONFIG_NETWORK_FILESYSTEMS=y | 1537 | CONFIG_NETWORK_FILESYSTEMS=y |
1430 | CONFIG_NFS_FS=y | 1538 | CONFIG_NFS_FS=y |
1431 | CONFIG_NFS_V3=y | 1539 | CONFIG_NFS_V3=y |
@@ -1438,7 +1546,6 @@ CONFIG_LOCKD_V4=y | |||
1438 | CONFIG_NFS_COMMON=y | 1546 | CONFIG_NFS_COMMON=y |
1439 | CONFIG_SUNRPC=y | 1547 | CONFIG_SUNRPC=y |
1440 | CONFIG_SUNRPC_GSS=y | 1548 | CONFIG_SUNRPC_GSS=y |
1441 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1442 | CONFIG_RPCSEC_GSS_KRB5=y | 1549 | CONFIG_RPCSEC_GSS_KRB5=y |
1443 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1550 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1444 | # CONFIG_SMB_FS is not set | 1551 | # CONFIG_SMB_FS is not set |
@@ -1493,6 +1600,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1493 | # CONFIG_NLS_KOI8_U is not set | 1600 | # CONFIG_NLS_KOI8_U is not set |
1494 | # CONFIG_NLS_UTF8 is not set | 1601 | # CONFIG_NLS_UTF8 is not set |
1495 | # CONFIG_DLM is not set | 1602 | # CONFIG_DLM is not set |
1603 | # CONFIG_BINARY_PRINTF is not set | ||
1496 | 1604 | ||
1497 | # | 1605 | # |
1498 | # Library routines | 1606 | # Library routines |
@@ -1500,7 +1608,7 @@ CONFIG_NLS_ISO8859_1=y | |||
1500 | CONFIG_BITREVERSE=y | 1608 | CONFIG_BITREVERSE=y |
1501 | CONFIG_GENERIC_FIND_LAST_BIT=y | 1609 | CONFIG_GENERIC_FIND_LAST_BIT=y |
1502 | # CONFIG_CRC_CCITT is not set | 1610 | # CONFIG_CRC_CCITT is not set |
1503 | # CONFIG_CRC16 is not set | 1611 | CONFIG_CRC16=m |
1504 | # CONFIG_CRC_T10DIF is not set | 1612 | # CONFIG_CRC_T10DIF is not set |
1505 | # CONFIG_CRC_ITU_T is not set | 1613 | # CONFIG_CRC_ITU_T is not set |
1506 | CONFIG_CRC32=y | 1614 | CONFIG_CRC32=y |
@@ -1508,11 +1616,14 @@ CONFIG_CRC32=y | |||
1508 | # CONFIG_LIBCRC32C is not set | 1616 | # CONFIG_LIBCRC32C is not set |
1509 | CONFIG_ZLIB_INFLATE=y | 1617 | CONFIG_ZLIB_INFLATE=y |
1510 | CONFIG_ZLIB_DEFLATE=y | 1618 | CONFIG_ZLIB_DEFLATE=y |
1511 | CONFIG_PLIST=y | 1619 | CONFIG_LZO_COMPRESS=m |
1620 | CONFIG_LZO_DECOMPRESS=m | ||
1621 | CONFIG_DECOMPRESS_GZIP=y | ||
1512 | CONFIG_HAS_IOMEM=y | 1622 | CONFIG_HAS_IOMEM=y |
1513 | CONFIG_HAS_IOPORT=y | 1623 | CONFIG_HAS_IOPORT=y |
1514 | CONFIG_HAS_DMA=y | 1624 | CONFIG_HAS_DMA=y |
1515 | CONFIG_HAVE_LMB=y | 1625 | CONFIG_HAVE_LMB=y |
1626 | CONFIG_NLATTR=y | ||
1516 | 1627 | ||
1517 | # | 1628 | # |
1518 | # Kernel hacking | 1629 | # Kernel hacking |
@@ -1530,6 +1641,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1530 | CONFIG_DETECT_SOFTLOCKUP=y | 1641 | CONFIG_DETECT_SOFTLOCKUP=y |
1531 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1642 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1532 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1643 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1644 | CONFIG_DETECT_HUNG_TASK=y | ||
1645 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1646 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1533 | CONFIG_SCHED_DEBUG=y | 1647 | CONFIG_SCHED_DEBUG=y |
1534 | # CONFIG_SCHEDSTATS is not set | 1648 | # CONFIG_SCHEDSTATS is not set |
1535 | # CONFIG_TIMER_STATS is not set | 1649 | # CONFIG_TIMER_STATS is not set |
@@ -1558,9 +1672,12 @@ CONFIG_DEBUG_INFO=y | |||
1558 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1672 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1559 | # CONFIG_FAULT_INJECTION is not set | 1673 | # CONFIG_FAULT_INJECTION is not set |
1560 | # CONFIG_LATENCYTOP is not set | 1674 | # CONFIG_LATENCYTOP is not set |
1675 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1561 | CONFIG_HAVE_FUNCTION_TRACER=y | 1676 | CONFIG_HAVE_FUNCTION_TRACER=y |
1677 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1562 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1678 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1563 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1679 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1680 | CONFIG_TRACING_SUPPORT=y | ||
1564 | 1681 | ||
1565 | # | 1682 | # |
1566 | # Tracers | 1683 | # Tracers |
@@ -1568,17 +1685,19 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1568 | # CONFIG_FUNCTION_TRACER is not set | 1685 | # CONFIG_FUNCTION_TRACER is not set |
1569 | # CONFIG_SCHED_TRACER is not set | 1686 | # CONFIG_SCHED_TRACER is not set |
1570 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1687 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1688 | # CONFIG_EVENT_TRACER is not set | ||
1571 | # CONFIG_BOOT_TRACER is not set | 1689 | # CONFIG_BOOT_TRACER is not set |
1572 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1690 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1573 | # CONFIG_STACK_TRACER is not set | 1691 | # CONFIG_STACK_TRACER is not set |
1574 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1692 | # CONFIG_KMEMTRACE is not set |
1693 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1694 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1575 | # CONFIG_SAMPLES is not set | 1695 | # CONFIG_SAMPLES is not set |
1576 | CONFIG_HAVE_ARCH_KGDB=y | 1696 | CONFIG_HAVE_ARCH_KGDB=y |
1577 | # CONFIG_KGDB is not set | 1697 | # CONFIG_KGDB is not set |
1578 | CONFIG_PRINT_STACK_DEPTH=64 | 1698 | CONFIG_PRINT_STACK_DEPTH=64 |
1579 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1699 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1580 | # CONFIG_DEBUG_STACK_USAGE is not set | 1700 | # CONFIG_DEBUG_STACK_USAGE is not set |
1581 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1582 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1701 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1583 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1702 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1584 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1703 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1609,10 +1728,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1609 | CONFIG_CRYPTO_HASH=y | 1728 | CONFIG_CRYPTO_HASH=y |
1610 | CONFIG_CRYPTO_HASH2=y | 1729 | CONFIG_CRYPTO_HASH2=y |
1611 | CONFIG_CRYPTO_RNG2=y | 1730 | CONFIG_CRYPTO_RNG2=y |
1731 | CONFIG_CRYPTO_PCOMP=y | ||
1612 | CONFIG_CRYPTO_MANAGER=y | 1732 | CONFIG_CRYPTO_MANAGER=y |
1613 | CONFIG_CRYPTO_MANAGER2=y | 1733 | CONFIG_CRYPTO_MANAGER2=y |
1614 | # CONFIG_CRYPTO_GF128MUL is not set | 1734 | # CONFIG_CRYPTO_GF128MUL is not set |
1615 | # CONFIG_CRYPTO_NULL is not set | 1735 | # CONFIG_CRYPTO_NULL is not set |
1736 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1616 | # CONFIG_CRYPTO_CRYPTD is not set | 1737 | # CONFIG_CRYPTO_CRYPTD is not set |
1617 | # CONFIG_CRYPTO_AUTHENC is not set | 1738 | # CONFIG_CRYPTO_AUTHENC is not set |
1618 | # CONFIG_CRYPTO_TEST is not set | 1739 | # CONFIG_CRYPTO_TEST is not set |
@@ -1680,8 +1801,9 @@ CONFIG_CRYPTO_DES=y | |||
1680 | # | 1801 | # |
1681 | # Compression | 1802 | # Compression |
1682 | # | 1803 | # |
1683 | # CONFIG_CRYPTO_DEFLATE is not set | 1804 | CONFIG_CRYPTO_DEFLATE=m |
1684 | # CONFIG_CRYPTO_LZO is not set | 1805 | # CONFIG_CRYPTO_ZLIB is not set |
1806 | CONFIG_CRYPTO_LZO=m | ||
1685 | 1807 | ||
1686 | # | 1808 | # |
1687 | # Random Number Generation | 1809 | # Random Number Generation |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index fb08819d7cc4..c162724fed4f 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 15:35:37 2009 | 4 | # Tue Apr 21 15:40:23 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y | |||
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
25 | CONFIG_PPC_BOOK3E_MMU=y | ||
25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
26 | # CONFIG_SMP is not set | 27 | # CONFIG_SMP is not set |
27 | CONFIG_PPC32=y | 28 | CONFIG_PPC32=y |
@@ -59,6 +60,7 @@ CONFIG_GENERIC_BUG=y | |||
59 | CONFIG_DEFAULT_UIMAGE=y | 60 | CONFIG_DEFAULT_UIMAGE=y |
60 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
61 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
63 | 65 | ||
64 | # | 66 | # |
@@ -73,11 +75,21 @@ CONFIG_SWAP=y | |||
73 | CONFIG_SYSVIPC=y | 75 | CONFIG_SYSVIPC=y |
74 | CONFIG_SYSVIPC_SYSCTL=y | 76 | CONFIG_SYSVIPC_SYSCTL=y |
75 | CONFIG_POSIX_MQUEUE=y | 77 | CONFIG_POSIX_MQUEUE=y |
78 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
76 | CONFIG_BSD_PROCESS_ACCT=y | 79 | CONFIG_BSD_PROCESS_ACCT=y |
77 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 80 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
78 | # CONFIG_TASKSTATS is not set | 81 | # CONFIG_TASKSTATS is not set |
79 | CONFIG_AUDIT=y | 82 | CONFIG_AUDIT=y |
80 | # CONFIG_AUDITSYSCALL is not set | 83 | # CONFIG_AUDITSYSCALL is not set |
84 | |||
85 | # | ||
86 | # RCU Subsystem | ||
87 | # | ||
88 | CONFIG_CLASSIC_RCU=y | ||
89 | # CONFIG_TREE_RCU is not set | ||
90 | # CONFIG_PREEMPT_RCU is not set | ||
91 | # CONFIG_TREE_RCU_TRACE is not set | ||
92 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
81 | CONFIG_IKCONFIG=y | 93 | CONFIG_IKCONFIG=y |
82 | CONFIG_IKCONFIG_PROC=y | 94 | CONFIG_IKCONFIG_PROC=y |
83 | CONFIG_LOG_BUF_SHIFT=14 | 95 | CONFIG_LOG_BUF_SHIFT=14 |
@@ -93,22 +105,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
93 | # CONFIG_NAMESPACES is not set | 105 | # CONFIG_NAMESPACES is not set |
94 | CONFIG_BLK_DEV_INITRD=y | 106 | CONFIG_BLK_DEV_INITRD=y |
95 | CONFIG_INITRAMFS_SOURCE="" | 107 | CONFIG_INITRAMFS_SOURCE="" |
108 | CONFIG_RD_GZIP=y | ||
109 | # CONFIG_RD_BZIP2 is not set | ||
110 | # CONFIG_RD_LZMA is not set | ||
96 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 111 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
97 | CONFIG_SYSCTL=y | 112 | CONFIG_SYSCTL=y |
113 | CONFIG_ANON_INODES=y | ||
98 | CONFIG_EMBEDDED=y | 114 | CONFIG_EMBEDDED=y |
99 | CONFIG_SYSCTL_SYSCALL=y | 115 | CONFIG_SYSCTL_SYSCALL=y |
100 | CONFIG_KALLSYMS=y | 116 | CONFIG_KALLSYMS=y |
101 | CONFIG_KALLSYMS_ALL=y | 117 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
103 | CONFIG_KALLSYMS_EXTRA_PASS=y | 118 | CONFIG_KALLSYMS_EXTRA_PASS=y |
119 | # CONFIG_STRIP_ASM_SYMS is not set | ||
104 | CONFIG_HOTPLUG=y | 120 | CONFIG_HOTPLUG=y |
105 | CONFIG_PRINTK=y | 121 | CONFIG_PRINTK=y |
106 | CONFIG_BUG=y | 122 | CONFIG_BUG=y |
107 | CONFIG_ELF_CORE=y | 123 | CONFIG_ELF_CORE=y |
108 | CONFIG_COMPAT_BRK=y | ||
109 | CONFIG_BASE_FULL=y | 124 | CONFIG_BASE_FULL=y |
110 | CONFIG_FUTEX=y | 125 | CONFIG_FUTEX=y |
111 | CONFIG_ANON_INODES=y | ||
112 | CONFIG_EPOLL=y | 126 | CONFIG_EPOLL=y |
113 | CONFIG_SIGNALFD=y | 127 | CONFIG_SIGNALFD=y |
114 | CONFIG_TIMERFD=y | 128 | CONFIG_TIMERFD=y |
@@ -118,10 +132,12 @@ CONFIG_AIO=y | |||
118 | CONFIG_VM_EVENT_COUNTERS=y | 132 | CONFIG_VM_EVENT_COUNTERS=y |
119 | CONFIG_PCI_QUIRKS=y | 133 | CONFIG_PCI_QUIRKS=y |
120 | CONFIG_SLUB_DEBUG=y | 134 | CONFIG_SLUB_DEBUG=y |
135 | CONFIG_COMPAT_BRK=y | ||
121 | # CONFIG_SLAB is not set | 136 | # CONFIG_SLAB is not set |
122 | CONFIG_SLUB=y | 137 | CONFIG_SLUB=y |
123 | # CONFIG_SLOB is not set | 138 | # CONFIG_SLOB is not set |
124 | # CONFIG_PROFILING is not set | 139 | # CONFIG_PROFILING is not set |
140 | # CONFIG_MARKERS is not set | ||
125 | CONFIG_HAVE_OPROFILE=y | 141 | CONFIG_HAVE_OPROFILE=y |
126 | # CONFIG_KPROBES is not set | 142 | # CONFIG_KPROBES is not set |
127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 143 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,6 +146,7 @@ CONFIG_HAVE_KPROBES=y | |||
130 | CONFIG_HAVE_KRETPROBES=y | 146 | CONFIG_HAVE_KRETPROBES=y |
131 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 147 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
132 | CONFIG_HAVE_CLK=y | 148 | CONFIG_HAVE_CLK=y |
149 | # CONFIG_SLOW_WORK is not set | ||
133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 150 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
134 | CONFIG_SLABINFO=y | 151 | CONFIG_SLABINFO=y |
135 | CONFIG_RT_MUTEXES=y | 152 | CONFIG_RT_MUTEXES=y |
@@ -142,7 +159,6 @@ CONFIG_MODVERSIONS=y | |||
142 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 159 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
143 | CONFIG_BLOCK=y | 160 | CONFIG_BLOCK=y |
144 | CONFIG_LBD=y | 161 | CONFIG_LBD=y |
145 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
146 | # CONFIG_BLK_DEV_BSG is not set | 162 | # CONFIG_BLK_DEV_BSG is not set |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 163 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 164 | ||
@@ -158,11 +174,6 @@ CONFIG_IOSCHED_CFQ=y | |||
158 | CONFIG_DEFAULT_CFQ=y | 174 | CONFIG_DEFAULT_CFQ=y |
159 | # CONFIG_DEFAULT_NOOP is not set | 175 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="cfq" | 176 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | CONFIG_CLASSIC_RCU=y | ||
162 | # CONFIG_TREE_RCU is not set | ||
163 | # CONFIG_PREEMPT_RCU is not set | ||
164 | # CONFIG_TREE_RCU_TRACE is not set | ||
165 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
166 | # CONFIG_FREEZER is not set | 177 | # CONFIG_FREEZER is not set |
167 | 178 | ||
168 | # | 179 | # |
@@ -178,8 +189,9 @@ CONFIG_MPC85xx_CDS=y | |||
178 | CONFIG_MPC85xx_MDS=y | 189 | CONFIG_MPC85xx_MDS=y |
179 | CONFIG_MPC8536_DS=y | 190 | CONFIG_MPC8536_DS=y |
180 | CONFIG_MPC85xx_DS=y | 191 | CONFIG_MPC85xx_DS=y |
192 | CONFIG_SOCRATES=y | ||
181 | CONFIG_KSI8560=y | 193 | CONFIG_KSI8560=y |
182 | # CONFIG_STX_GP3 is not set | 194 | CONFIG_STX_GP3=y |
183 | CONFIG_TQM8540=y | 195 | CONFIG_TQM8540=y |
184 | CONFIG_TQM8541=y | 196 | CONFIG_TQM8541=y |
185 | CONFIG_TQM8548=y | 197 | CONFIG_TQM8548=y |
@@ -200,11 +212,11 @@ CONFIG_PPC_I8259=y | |||
200 | # CONFIG_GENERIC_IOMAP is not set | 212 | # CONFIG_GENERIC_IOMAP is not set |
201 | # CONFIG_CPU_FREQ is not set | 213 | # CONFIG_CPU_FREQ is not set |
202 | CONFIG_QUICC_ENGINE=y | 214 | CONFIG_QUICC_ENGINE=y |
203 | # CONFIG_QE_GPIO is not set | 215 | CONFIG_QE_GPIO=y |
204 | CONFIG_CPM2=y | 216 | CONFIG_CPM2=y |
205 | CONFIG_FSL_ULI1575=y | 217 | CONFIG_FSL_ULI1575=y |
206 | CONFIG_CPM=y | 218 | CONFIG_CPM=y |
207 | # CONFIG_MPC8xxx_GPIO is not set | 219 | CONFIG_MPC8xxx_GPIO=y |
208 | # CONFIG_SIMPLE_GPIO is not set | 220 | # CONFIG_SIMPLE_GPIO is not set |
209 | 221 | ||
210 | # | 222 | # |
@@ -249,9 +261,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
249 | CONFIG_BOUNCE=y | 261 | CONFIG_BOUNCE=y |
250 | CONFIG_VIRT_TO_BUS=y | 262 | CONFIG_VIRT_TO_BUS=y |
251 | CONFIG_UNEVICTABLE_LRU=y | 263 | CONFIG_UNEVICTABLE_LRU=y |
264 | CONFIG_HAVE_MLOCK=y | ||
265 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
252 | CONFIG_PPC_4K_PAGES=y | 266 | CONFIG_PPC_4K_PAGES=y |
253 | # CONFIG_PPC_16K_PAGES is not set | 267 | # CONFIG_PPC_16K_PAGES is not set |
254 | # CONFIG_PPC_64K_PAGES is not set | 268 | # CONFIG_PPC_64K_PAGES is not set |
269 | # CONFIG_PPC_256K_PAGES is not set | ||
255 | CONFIG_FORCE_MAX_ZONEORDER=11 | 270 | CONFIG_FORCE_MAX_ZONEORDER=11 |
256 | CONFIG_PROC_DEVICETREE=y | 271 | CONFIG_PROC_DEVICETREE=y |
257 | # CONFIG_CMDLINE_BOOL is not set | 272 | # CONFIG_CMDLINE_BOOL is not set |
@@ -278,6 +293,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
278 | # CONFIG_PCI_LEGACY is not set | 293 | # CONFIG_PCI_LEGACY is not set |
279 | # CONFIG_PCI_DEBUG is not set | 294 | # CONFIG_PCI_DEBUG is not set |
280 | # CONFIG_PCI_STUB is not set | 295 | # CONFIG_PCI_STUB is not set |
296 | # CONFIG_PCI_IOV is not set | ||
281 | # CONFIG_PCCARD is not set | 297 | # CONFIG_PCCARD is not set |
282 | # CONFIG_HOTPLUG_PCI is not set | 298 | # CONFIG_HOTPLUG_PCI is not set |
283 | # CONFIG_HAS_RAPIDIO is not set | 299 | # CONFIG_HAS_RAPIDIO is not set |
@@ -291,17 +307,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
291 | # Default settings for advanced configuration options are used | 307 | # Default settings for advanced configuration options are used |
292 | # | 308 | # |
293 | CONFIG_LOWMEM_SIZE=0x30000000 | 309 | CONFIG_LOWMEM_SIZE=0x30000000 |
310 | CONFIG_LOWMEM_CAM_NUM=3 | ||
294 | CONFIG_PAGE_OFFSET=0xc0000000 | 311 | CONFIG_PAGE_OFFSET=0xc0000000 |
295 | CONFIG_KERNEL_START=0xc0000000 | 312 | CONFIG_KERNEL_START=0xc0000000 |
296 | CONFIG_PHYSICAL_START=0x00000000 | 313 | CONFIG_PHYSICAL_START=0x00000000 |
297 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 314 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
298 | CONFIG_TASK_SIZE=0xc0000000 | 315 | CONFIG_TASK_SIZE=0xc0000000 |
299 | CONFIG_NET=y | 316 | CONFIG_NET=y |
300 | 317 | ||
301 | # | 318 | # |
302 | # Networking options | 319 | # Networking options |
303 | # | 320 | # |
304 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
305 | CONFIG_PACKET=y | 321 | CONFIG_PACKET=y |
306 | # CONFIG_PACKET_MMAP is not set | 322 | # CONFIG_PACKET_MMAP is not set |
307 | CONFIG_UNIX=y | 323 | CONFIG_UNIX=y |
@@ -389,6 +405,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
389 | # CONFIG_LAPB is not set | 405 | # CONFIG_LAPB is not set |
390 | # CONFIG_ECONET is not set | 406 | # CONFIG_ECONET is not set |
391 | # CONFIG_WAN_ROUTER is not set | 407 | # CONFIG_WAN_ROUTER is not set |
408 | # CONFIG_PHONET is not set | ||
392 | # CONFIG_NET_SCHED is not set | 409 | # CONFIG_NET_SCHED is not set |
393 | # CONFIG_DCB is not set | 410 | # CONFIG_DCB is not set |
394 | 411 | ||
@@ -401,7 +418,6 @@ CONFIG_SCTP_HMAC_MD5=y | |||
401 | # CONFIG_IRDA is not set | 418 | # CONFIG_IRDA is not set |
402 | # CONFIG_BT is not set | 419 | # CONFIG_BT is not set |
403 | # CONFIG_AF_RXRPC is not set | 420 | # CONFIG_AF_RXRPC is not set |
404 | # CONFIG_PHONET is not set | ||
405 | CONFIG_FIB_RULES=y | 421 | CONFIG_FIB_RULES=y |
406 | CONFIG_WIRELESS=y | 422 | CONFIG_WIRELESS=y |
407 | # CONFIG_CFG80211 is not set | 423 | # CONFIG_CFG80211 is not set |
@@ -456,13 +472,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
456 | # CONFIG_BLK_DEV_HD is not set | 472 | # CONFIG_BLK_DEV_HD is not set |
457 | CONFIG_MISC_DEVICES=y | 473 | CONFIG_MISC_DEVICES=y |
458 | # CONFIG_PHANTOM is not set | 474 | # CONFIG_PHANTOM is not set |
459 | # CONFIG_EEPROM_93CX6 is not set | ||
460 | # CONFIG_SGI_IOC4 is not set | 475 | # CONFIG_SGI_IOC4 is not set |
461 | # CONFIG_TIFM_CORE is not set | 476 | # CONFIG_TIFM_CORE is not set |
462 | # CONFIG_ICS932S401 is not set | 477 | # CONFIG_ICS932S401 is not set |
463 | # CONFIG_ENCLOSURE_SERVICES is not set | 478 | # CONFIG_ENCLOSURE_SERVICES is not set |
464 | # CONFIG_HP_ILO is not set | 479 | # CONFIG_HP_ILO is not set |
480 | # CONFIG_ISL29003 is not set | ||
465 | # CONFIG_C2PORT is not set | 481 | # CONFIG_C2PORT is not set |
482 | |||
483 | # | ||
484 | # EEPROM support | ||
485 | # | ||
486 | # CONFIG_EEPROM_AT24 is not set | ||
487 | CONFIG_EEPROM_LEGACY=y | ||
488 | # CONFIG_EEPROM_93CX6 is not set | ||
466 | CONFIG_HAVE_IDE=y | 489 | CONFIG_HAVE_IDE=y |
467 | # CONFIG_IDE is not set | 490 | # CONFIG_IDE is not set |
468 | 491 | ||
@@ -521,9 +544,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
521 | # CONFIG_MEGARAID_NEWGEN is not set | 544 | # CONFIG_MEGARAID_NEWGEN is not set |
522 | # CONFIG_MEGARAID_LEGACY is not set | 545 | # CONFIG_MEGARAID_LEGACY is not set |
523 | # CONFIG_MEGARAID_SAS is not set | 546 | # CONFIG_MEGARAID_SAS is not set |
547 | # CONFIG_SCSI_MPT2SAS is not set | ||
524 | # CONFIG_SCSI_HPTIOP is not set | 548 | # CONFIG_SCSI_HPTIOP is not set |
525 | # CONFIG_SCSI_BUSLOGIC is not set | 549 | # CONFIG_SCSI_BUSLOGIC is not set |
526 | # CONFIG_LIBFC is not set | 550 | # CONFIG_LIBFC is not set |
551 | # CONFIG_LIBFCOE is not set | ||
527 | # CONFIG_FCOE is not set | 552 | # CONFIG_FCOE is not set |
528 | # CONFIG_SCSI_DMX3191D is not set | 553 | # CONFIG_SCSI_DMX3191D is not set |
529 | # CONFIG_SCSI_EATA is not set | 554 | # CONFIG_SCSI_EATA is not set |
@@ -546,6 +571,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
546 | # CONFIG_SCSI_DEBUG is not set | 571 | # CONFIG_SCSI_DEBUG is not set |
547 | # CONFIG_SCSI_SRP is not set | 572 | # CONFIG_SCSI_SRP is not set |
548 | # CONFIG_SCSI_DH is not set | 573 | # CONFIG_SCSI_DH is not set |
574 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
549 | CONFIG_ATA=y | 575 | CONFIG_ATA=y |
550 | # CONFIG_ATA_NONSTANDARD is not set | 576 | # CONFIG_ATA_NONSTANDARD is not set |
551 | CONFIG_SATA_PMP=y | 577 | CONFIG_SATA_PMP=y |
@@ -622,6 +648,7 @@ CONFIG_PATA_ALI=y | |||
622 | # CONFIG_I2O is not set | 648 | # CONFIG_I2O is not set |
623 | # CONFIG_MACINTOSH_DRIVERS is not set | 649 | # CONFIG_MACINTOSH_DRIVERS is not set |
624 | CONFIG_NETDEVICES=y | 650 | CONFIG_NETDEVICES=y |
651 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
625 | CONFIG_DUMMY=y | 652 | CONFIG_DUMMY=y |
626 | # CONFIG_BONDING is not set | 653 | # CONFIG_BONDING is not set |
627 | # CONFIG_MACVLAN is not set | 654 | # CONFIG_MACVLAN is not set |
@@ -634,11 +661,11 @@ CONFIG_PHYLIB=y | |||
634 | # | 661 | # |
635 | # MII PHY device drivers | 662 | # MII PHY device drivers |
636 | # | 663 | # |
637 | # CONFIG_MARVELL_PHY is not set | 664 | CONFIG_MARVELL_PHY=y |
638 | # CONFIG_DAVICOM_PHY is not set | 665 | CONFIG_DAVICOM_PHY=y |
639 | # CONFIG_QSEMI_PHY is not set | 666 | # CONFIG_QSEMI_PHY is not set |
640 | # CONFIG_LXT_PHY is not set | 667 | # CONFIG_LXT_PHY is not set |
641 | # CONFIG_CICADA_PHY is not set | 668 | CONFIG_CICADA_PHY=y |
642 | CONFIG_VITESSE_PHY=y | 669 | CONFIG_VITESSE_PHY=y |
643 | # CONFIG_SMSC_PHY is not set | 670 | # CONFIG_SMSC_PHY is not set |
644 | # CONFIG_BROADCOM_PHY is not set | 671 | # CONFIG_BROADCOM_PHY is not set |
@@ -647,7 +674,7 @@ CONFIG_VITESSE_PHY=y | |||
647 | # CONFIG_NATIONAL_PHY is not set | 674 | # CONFIG_NATIONAL_PHY is not set |
648 | # CONFIG_STE10XP is not set | 675 | # CONFIG_STE10XP is not set |
649 | # CONFIG_LSI_ET1011C_PHY is not set | 676 | # CONFIG_LSI_ET1011C_PHY is not set |
650 | # CONFIG_FIXED_PHY is not set | 677 | CONFIG_FIXED_PHY=y |
651 | # CONFIG_MDIO_BITBANG is not set | 678 | # CONFIG_MDIO_BITBANG is not set |
652 | CONFIG_NET_ETHERNET=y | 679 | CONFIG_NET_ETHERNET=y |
653 | CONFIG_MII=y | 680 | CONFIG_MII=y |
@@ -655,6 +682,8 @@ CONFIG_MII=y | |||
655 | # CONFIG_SUNGEM is not set | 682 | # CONFIG_SUNGEM is not set |
656 | # CONFIG_CASSINI is not set | 683 | # CONFIG_CASSINI is not set |
657 | # CONFIG_NET_VENDOR_3COM is not set | 684 | # CONFIG_NET_VENDOR_3COM is not set |
685 | # CONFIG_ETHOC is not set | ||
686 | # CONFIG_DNET is not set | ||
658 | # CONFIG_NET_TULIP is not set | 687 | # CONFIG_NET_TULIP is not set |
659 | # CONFIG_HP100 is not set | 688 | # CONFIG_HP100 is not set |
660 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 689 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -667,7 +696,10 @@ CONFIG_MII=y | |||
667 | # CONFIG_NET_PCI is not set | 696 | # CONFIG_NET_PCI is not set |
668 | # CONFIG_B44 is not set | 697 | # CONFIG_B44 is not set |
669 | # CONFIG_ATL2 is not set | 698 | # CONFIG_ATL2 is not set |
670 | # CONFIG_FS_ENET is not set | 699 | CONFIG_FS_ENET=y |
700 | CONFIG_FS_ENET_HAS_SCC=y | ||
701 | CONFIG_FS_ENET_HAS_FCC=y | ||
702 | # CONFIG_FS_ENET_MDIO_FCC is not set | ||
671 | CONFIG_NETDEV_1000=y | 703 | CONFIG_NETDEV_1000=y |
672 | # CONFIG_ACENIC is not set | 704 | # CONFIG_ACENIC is not set |
673 | # CONFIG_DL2K is not set | 705 | # CONFIG_DL2K is not set |
@@ -675,6 +707,7 @@ CONFIG_NETDEV_1000=y | |||
675 | # CONFIG_E1000E is not set | 707 | # CONFIG_E1000E is not set |
676 | # CONFIG_IP1000 is not set | 708 | # CONFIG_IP1000 is not set |
677 | # CONFIG_IGB is not set | 709 | # CONFIG_IGB is not set |
710 | # CONFIG_IGBVF is not set | ||
678 | # CONFIG_NS83820 is not set | 711 | # CONFIG_NS83820 is not set |
679 | # CONFIG_HAMACHI is not set | 712 | # CONFIG_HAMACHI is not set |
680 | # CONFIG_YELLOWFIN is not set | 713 | # CONFIG_YELLOWFIN is not set |
@@ -685,11 +718,15 @@ CONFIG_NETDEV_1000=y | |||
685 | # CONFIG_VIA_VELOCITY is not set | 718 | # CONFIG_VIA_VELOCITY is not set |
686 | # CONFIG_TIGON3 is not set | 719 | # CONFIG_TIGON3 is not set |
687 | # CONFIG_BNX2 is not set | 720 | # CONFIG_BNX2 is not set |
721 | CONFIG_FSL_PQ_MDIO=y | ||
688 | CONFIG_GIANFAR=y | 722 | CONFIG_GIANFAR=y |
689 | # CONFIG_UCC_GETH is not set | 723 | CONFIG_UCC_GETH=y |
724 | # CONFIG_UGETH_MAGIC_PACKET is not set | ||
725 | # CONFIG_UGETH_TX_ON_DEMAND is not set | ||
690 | # CONFIG_QLA3XXX is not set | 726 | # CONFIG_QLA3XXX is not set |
691 | # CONFIG_ATL1 is not set | 727 | # CONFIG_ATL1 is not set |
692 | # CONFIG_ATL1E is not set | 728 | # CONFIG_ATL1E is not set |
729 | # CONFIG_ATL1C is not set | ||
693 | # CONFIG_JME is not set | 730 | # CONFIG_JME is not set |
694 | CONFIG_NETDEV_10000=y | 731 | CONFIG_NETDEV_10000=y |
695 | # CONFIG_CHELSIO_T1 is not set | 732 | # CONFIG_CHELSIO_T1 is not set |
@@ -699,6 +736,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
699 | # CONFIG_IXGBE is not set | 736 | # CONFIG_IXGBE is not set |
700 | # CONFIG_IXGB is not set | 737 | # CONFIG_IXGB is not set |
701 | # CONFIG_S2IO is not set | 738 | # CONFIG_S2IO is not set |
739 | # CONFIG_VXGE is not set | ||
702 | # CONFIG_MYRI10GE is not set | 740 | # CONFIG_MYRI10GE is not set |
703 | # CONFIG_NETXEN_NIC is not set | 741 | # CONFIG_NETXEN_NIC is not set |
704 | # CONFIG_NIU is not set | 742 | # CONFIG_NIU is not set |
@@ -708,6 +746,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
708 | # CONFIG_BNX2X is not set | 746 | # CONFIG_BNX2X is not set |
709 | # CONFIG_QLGE is not set | 747 | # CONFIG_QLGE is not set |
710 | # CONFIG_SFC is not set | 748 | # CONFIG_SFC is not set |
749 | # CONFIG_BE2NET is not set | ||
711 | # CONFIG_TR is not set | 750 | # CONFIG_TR is not set |
712 | 751 | ||
713 | # | 752 | # |
@@ -715,7 +754,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
715 | # | 754 | # |
716 | # CONFIG_WLAN_PRE80211 is not set | 755 | # CONFIG_WLAN_PRE80211 is not set |
717 | # CONFIG_WLAN_80211 is not set | 756 | # CONFIG_WLAN_80211 is not set |
718 | # CONFIG_IWLWIFI_LEDS is not set | ||
719 | 757 | ||
720 | # | 758 | # |
721 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 759 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -813,14 +851,15 @@ CONFIG_SERIAL_CORE_CONSOLE=y | |||
813 | # CONFIG_SERIAL_CPM is not set | 851 | # CONFIG_SERIAL_CPM is not set |
814 | # CONFIG_SERIAL_JSM is not set | 852 | # CONFIG_SERIAL_JSM is not set |
815 | # CONFIG_SERIAL_OF_PLATFORM is not set | 853 | # CONFIG_SERIAL_OF_PLATFORM is not set |
816 | # CONFIG_SERIAL_QE is not set | 854 | CONFIG_SERIAL_QE=m |
817 | CONFIG_UNIX98_PTYS=y | 855 | CONFIG_UNIX98_PTYS=y |
818 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | 856 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set |
819 | CONFIG_LEGACY_PTYS=y | 857 | CONFIG_LEGACY_PTYS=y |
820 | CONFIG_LEGACY_PTY_COUNT=256 | 858 | CONFIG_LEGACY_PTY_COUNT=256 |
821 | # CONFIG_HVC_UDBG is not set | 859 | # CONFIG_HVC_UDBG is not set |
822 | # CONFIG_IPMI_HANDLER is not set | 860 | # CONFIG_IPMI_HANDLER is not set |
823 | # CONFIG_HW_RANDOM is not set | 861 | CONFIG_HW_RANDOM=y |
862 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
824 | CONFIG_NVRAM=y | 863 | CONFIG_NVRAM=y |
825 | # CONFIG_R3964 is not set | 864 | # CONFIG_R3964 is not set |
826 | # CONFIG_APPLICOM is not set | 865 | # CONFIG_APPLICOM is not set |
@@ -857,7 +896,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
857 | # | 896 | # |
858 | # I2C system bus drivers (mostly embedded / system-on-chip) | 897 | # I2C system bus drivers (mostly embedded / system-on-chip) |
859 | # | 898 | # |
860 | # CONFIG_I2C_CPM is not set | 899 | CONFIG_I2C_CPM=m |
861 | # CONFIG_I2C_GPIO is not set | 900 | # CONFIG_I2C_GPIO is not set |
862 | CONFIG_I2C_MPC=y | 901 | CONFIG_I2C_MPC=y |
863 | # CONFIG_I2C_OCORES is not set | 902 | # CONFIG_I2C_OCORES is not set |
@@ -885,12 +924,9 @@ CONFIG_I2C_MPC=y | |||
885 | # Miscellaneous I2C Chip support | 924 | # Miscellaneous I2C Chip support |
886 | # | 925 | # |
887 | # CONFIG_DS1682 is not set | 926 | # CONFIG_DS1682 is not set |
888 | # CONFIG_EEPROM_AT24 is not set | ||
889 | CONFIG_EEPROM_LEGACY=y | ||
890 | # CONFIG_SENSORS_PCF8574 is not set | 927 | # CONFIG_SENSORS_PCF8574 is not set |
891 | # CONFIG_PCF8575 is not set | 928 | # CONFIG_PCF8575 is not set |
892 | # CONFIG_SENSORS_PCA9539 is not set | 929 | # CONFIG_SENSORS_PCA9539 is not set |
893 | # CONFIG_SENSORS_PCF8591 is not set | ||
894 | # CONFIG_SENSORS_MAX6875 is not set | 930 | # CONFIG_SENSORS_MAX6875 is not set |
895 | # CONFIG_SENSORS_TSL2550 is not set | 931 | # CONFIG_SENSORS_TSL2550 is not set |
896 | # CONFIG_I2C_DEBUG_CORE is not set | 932 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -969,7 +1005,7 @@ CONFIG_VIDEO_MEDIA=m | |||
969 | # | 1005 | # |
970 | # CONFIG_MEDIA_ATTACH is not set | 1006 | # CONFIG_MEDIA_ATTACH is not set |
971 | CONFIG_MEDIA_TUNER=m | 1007 | CONFIG_MEDIA_TUNER=m |
972 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 1008 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
973 | CONFIG_MEDIA_TUNER_SIMPLE=m | 1009 | CONFIG_MEDIA_TUNER_SIMPLE=m |
974 | CONFIG_MEDIA_TUNER_TDA8290=m | 1010 | CONFIG_MEDIA_TUNER_TDA8290=m |
975 | CONFIG_MEDIA_TUNER_TDA9887=m | 1011 | CONFIG_MEDIA_TUNER_TDA9887=m |
@@ -978,6 +1014,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
978 | CONFIG_MEDIA_TUNER_MT20XX=m | 1014 | CONFIG_MEDIA_TUNER_MT20XX=m |
979 | CONFIG_MEDIA_TUNER_XC2028=m | 1015 | CONFIG_MEDIA_TUNER_XC2028=m |
980 | CONFIG_MEDIA_TUNER_XC5000=m | 1016 | CONFIG_MEDIA_TUNER_XC5000=m |
1017 | CONFIG_MEDIA_TUNER_MC44S803=m | ||
981 | # CONFIG_DVB_DYNAMIC_MINORS is not set | 1018 | # CONFIG_DVB_DYNAMIC_MINORS is not set |
982 | CONFIG_DVB_CAPTURE_DRIVERS=y | 1019 | CONFIG_DVB_CAPTURE_DRIVERS=y |
983 | 1020 | ||
@@ -1017,103 +1054,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
1017 | # | 1054 | # |
1018 | # Supported DVB Frontends | 1055 | # Supported DVB Frontends |
1019 | # | 1056 | # |
1020 | |||
1021 | # | ||
1022 | # Customise DVB Frontends | ||
1023 | # | ||
1024 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1057 | # CONFIG_DVB_FE_CUSTOMISE is not set |
1025 | |||
1026 | # | ||
1027 | # Multistandard (satellite) frontends | ||
1028 | # | ||
1029 | # CONFIG_DVB_STB0899 is not set | ||
1030 | # CONFIG_DVB_STB6100 is not set | ||
1031 | |||
1032 | # | ||
1033 | # DVB-S (satellite) frontends | ||
1034 | # | ||
1035 | # CONFIG_DVB_CX24110 is not set | ||
1036 | # CONFIG_DVB_CX24123 is not set | ||
1037 | # CONFIG_DVB_MT312 is not set | ||
1038 | # CONFIG_DVB_S5H1420 is not set | ||
1039 | # CONFIG_DVB_STV0288 is not set | ||
1040 | # CONFIG_DVB_STB6000 is not set | ||
1041 | # CONFIG_DVB_STV0299 is not set | ||
1042 | # CONFIG_DVB_TDA8083 is not set | ||
1043 | # CONFIG_DVB_TDA10086 is not set | ||
1044 | # CONFIG_DVB_TDA8261 is not set | ||
1045 | # CONFIG_DVB_VES1X93 is not set | ||
1046 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
1047 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1048 | # CONFIG_DVB_TDA826X is not set | ||
1049 | # CONFIG_DVB_TUA6100 is not set | ||
1050 | # CONFIG_DVB_CX24116 is not set | ||
1051 | # CONFIG_DVB_SI21XX is not set | ||
1052 | |||
1053 | # | ||
1054 | # DVB-T (terrestrial) frontends | ||
1055 | # | ||
1056 | # CONFIG_DVB_SP8870 is not set | ||
1057 | # CONFIG_DVB_SP887X is not set | ||
1058 | # CONFIG_DVB_CX22700 is not set | ||
1059 | # CONFIG_DVB_CX22702 is not set | ||
1060 | # CONFIG_DVB_DRX397XD is not set | ||
1061 | # CONFIG_DVB_L64781 is not set | ||
1062 | # CONFIG_DVB_TDA1004X is not set | ||
1063 | # CONFIG_DVB_NXT6000 is not set | ||
1064 | # CONFIG_DVB_MT352 is not set | ||
1065 | # CONFIG_DVB_ZL10353 is not set | ||
1066 | # CONFIG_DVB_DIB3000MB is not set | ||
1067 | # CONFIG_DVB_DIB3000MC is not set | ||
1068 | # CONFIG_DVB_DIB7000M is not set | ||
1069 | # CONFIG_DVB_DIB7000P is not set | ||
1070 | # CONFIG_DVB_TDA10048 is not set | ||
1071 | |||
1072 | # | ||
1073 | # DVB-C (cable) frontends | ||
1074 | # | ||
1075 | # CONFIG_DVB_VES1820 is not set | ||
1076 | # CONFIG_DVB_TDA10021 is not set | ||
1077 | # CONFIG_DVB_TDA10023 is not set | ||
1078 | # CONFIG_DVB_STV0297 is not set | ||
1079 | |||
1080 | # | ||
1081 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
1082 | # | ||
1083 | # CONFIG_DVB_NXT200X is not set | ||
1084 | # CONFIG_DVB_OR51211 is not set | ||
1085 | # CONFIG_DVB_OR51132 is not set | ||
1086 | # CONFIG_DVB_BCM3510 is not set | ||
1087 | # CONFIG_DVB_LGDT330X is not set | ||
1088 | # CONFIG_DVB_LGDT3304 is not set | ||
1089 | # CONFIG_DVB_S5H1409 is not set | ||
1090 | # CONFIG_DVB_AU8522 is not set | ||
1091 | # CONFIG_DVB_S5H1411 is not set | ||
1092 | |||
1093 | # | ||
1094 | # ISDB-T (terrestrial) frontends | ||
1095 | # | ||
1096 | # CONFIG_DVB_S921 is not set | ||
1097 | |||
1098 | # | ||
1099 | # Digital terrestrial only tuners/PLL | ||
1100 | # | ||
1101 | # CONFIG_DVB_PLL is not set | ||
1102 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
1103 | |||
1104 | # | ||
1105 | # SEC control devices for DVB-S | ||
1106 | # | ||
1107 | # CONFIG_DVB_LNBP21 is not set | ||
1108 | # CONFIG_DVB_ISL6405 is not set | ||
1109 | # CONFIG_DVB_ISL6421 is not set | ||
1110 | # CONFIG_DVB_LGS8GL5 is not set | ||
1111 | |||
1112 | # | ||
1113 | # Tools to develop new frontends | ||
1114 | # | ||
1115 | # CONFIG_DVB_DUMMY_FE is not set | ||
1116 | # CONFIG_DVB_AF9013 is not set | ||
1117 | CONFIG_DAB=y | 1058 | CONFIG_DAB=y |
1118 | # CONFIG_USB_DABUSB is not set | 1059 | # CONFIG_USB_DABUSB is not set |
1119 | 1060 | ||
@@ -1193,6 +1134,8 @@ CONFIG_SND_PCI=y | |||
1193 | # CONFIG_SND_INDIGO is not set | 1134 | # CONFIG_SND_INDIGO is not set |
1194 | # CONFIG_SND_INDIGOIO is not set | 1135 | # CONFIG_SND_INDIGOIO is not set |
1195 | # CONFIG_SND_INDIGODJ is not set | 1136 | # CONFIG_SND_INDIGODJ is not set |
1137 | # CONFIG_SND_INDIGOIOX is not set | ||
1138 | # CONFIG_SND_INDIGODJX is not set | ||
1196 | # CONFIG_SND_EMU10K1 is not set | 1139 | # CONFIG_SND_EMU10K1 is not set |
1197 | # CONFIG_SND_EMU10K1X is not set | 1140 | # CONFIG_SND_EMU10K1X is not set |
1198 | # CONFIG_SND_ENS1370 is not set | 1141 | # CONFIG_SND_ENS1370 is not set |
@@ -1247,15 +1190,17 @@ CONFIG_USB_HID=y | |||
1247 | # | 1190 | # |
1248 | # Special HID drivers | 1191 | # Special HID drivers |
1249 | # | 1192 | # |
1250 | CONFIG_HID_COMPAT=y | ||
1251 | CONFIG_HID_A4TECH=y | 1193 | CONFIG_HID_A4TECH=y |
1252 | CONFIG_HID_APPLE=y | 1194 | CONFIG_HID_APPLE=y |
1253 | CONFIG_HID_BELKIN=y | 1195 | CONFIG_HID_BELKIN=y |
1254 | CONFIG_HID_CHERRY=y | 1196 | CONFIG_HID_CHERRY=y |
1255 | CONFIG_HID_CHICONY=y | 1197 | CONFIG_HID_CHICONY=y |
1256 | CONFIG_HID_CYPRESS=y | 1198 | CONFIG_HID_CYPRESS=y |
1199 | # CONFIG_DRAGONRISE_FF is not set | ||
1257 | CONFIG_HID_EZKEY=y | 1200 | CONFIG_HID_EZKEY=y |
1201 | # CONFIG_HID_KYE is not set | ||
1258 | CONFIG_HID_GYRATION=y | 1202 | CONFIG_HID_GYRATION=y |
1203 | # CONFIG_HID_KENSINGTON is not set | ||
1259 | CONFIG_HID_LOGITECH=y | 1204 | CONFIG_HID_LOGITECH=y |
1260 | # CONFIG_LOGITECH_FF is not set | 1205 | # CONFIG_LOGITECH_FF is not set |
1261 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1206 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
@@ -1314,6 +1259,7 @@ CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y | |||
1314 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | 1259 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y |
1315 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | 1260 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y |
1316 | # CONFIG_USB_UHCI_HCD is not set | 1261 | # CONFIG_USB_UHCI_HCD is not set |
1262 | # CONFIG_USB_FHCI_HCD is not set | ||
1317 | # CONFIG_USB_SL811_HCD is not set | 1263 | # CONFIG_USB_SL811_HCD is not set |
1318 | # CONFIG_USB_R8A66597_HCD is not set | 1264 | # CONFIG_USB_R8A66597_HCD is not set |
1319 | # CONFIG_USB_WHCI_HCD is not set | 1265 | # CONFIG_USB_WHCI_HCD is not set |
@@ -1329,11 +1275,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1329 | # CONFIG_USB_TMC is not set | 1275 | # CONFIG_USB_TMC is not set |
1330 | 1276 | ||
1331 | # | 1277 | # |
1332 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1278 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
1333 | # | 1279 | # |
1334 | 1280 | ||
1335 | # | 1281 | # |
1336 | # see USB_STORAGE Help for more information | 1282 | # also be needed; see USB_STORAGE Help for more info |
1337 | # | 1283 | # |
1338 | CONFIG_USB_STORAGE=y | 1284 | CONFIG_USB_STORAGE=y |
1339 | # CONFIG_USB_STORAGE_DEBUG is not set | 1285 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -1375,7 +1321,6 @@ CONFIG_USB_STORAGE=y | |||
1375 | # CONFIG_USB_LED is not set | 1321 | # CONFIG_USB_LED is not set |
1376 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1322 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1377 | # CONFIG_USB_CYTHERM is not set | 1323 | # CONFIG_USB_CYTHERM is not set |
1378 | # CONFIG_USB_PHIDGET is not set | ||
1379 | # CONFIG_USB_IDMOUSE is not set | 1324 | # CONFIG_USB_IDMOUSE is not set |
1380 | # CONFIG_USB_FTDI_ELAN is not set | 1325 | # CONFIG_USB_FTDI_ELAN is not set |
1381 | # CONFIG_USB_APPLEDISPLAY is not set | 1326 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -1392,6 +1337,7 @@ CONFIG_USB_STORAGE=y | |||
1392 | # OTG and related infrastructure | 1337 | # OTG and related infrastructure |
1393 | # | 1338 | # |
1394 | # CONFIG_USB_GPIO_VBUS is not set | 1339 | # CONFIG_USB_GPIO_VBUS is not set |
1340 | # CONFIG_NOP_USB_XCEIV is not set | ||
1395 | # CONFIG_UWB is not set | 1341 | # CONFIG_UWB is not set |
1396 | # CONFIG_MMC is not set | 1342 | # CONFIG_MMC is not set |
1397 | # CONFIG_MEMSTICK is not set | 1343 | # CONFIG_MEMSTICK is not set |
@@ -1406,6 +1352,8 @@ CONFIG_EDAC=y | |||
1406 | # CONFIG_EDAC_DEBUG is not set | 1352 | # CONFIG_EDAC_DEBUG is not set |
1407 | CONFIG_EDAC_MM_EDAC=y | 1353 | CONFIG_EDAC_MM_EDAC=y |
1408 | CONFIG_EDAC_MPC85XX=y | 1354 | CONFIG_EDAC_MPC85XX=y |
1355 | # CONFIG_EDAC_AMD8131 is not set | ||
1356 | # CONFIG_EDAC_AMD8111 is not set | ||
1409 | CONFIG_RTC_LIB=y | 1357 | CONFIG_RTC_LIB=y |
1410 | CONFIG_RTC_CLASS=y | 1358 | CONFIG_RTC_CLASS=y |
1411 | CONFIG_RTC_HCTOSYS=y | 1359 | CONFIG_RTC_HCTOSYS=y |
@@ -1460,7 +1408,7 @@ CONFIG_RTC_DRV_CMOS=y | |||
1460 | # | 1408 | # |
1461 | # on-CPU RTC drivers | 1409 | # on-CPU RTC drivers |
1462 | # | 1410 | # |
1463 | # CONFIG_RTC_DRV_PPC is not set | 1411 | # CONFIG_RTC_DRV_GENERIC is not set |
1464 | CONFIG_DMADEVICES=y | 1412 | CONFIG_DMADEVICES=y |
1465 | 1413 | ||
1466 | # | 1414 | # |
@@ -1473,7 +1421,9 @@ CONFIG_DMA_ENGINE=y | |||
1473 | # DMA Clients | 1421 | # DMA Clients |
1474 | # | 1422 | # |
1475 | # CONFIG_NET_DMA is not set | 1423 | # CONFIG_NET_DMA is not set |
1424 | # CONFIG_ASYNC_TX_DMA is not set | ||
1476 | # CONFIG_DMATEST is not set | 1425 | # CONFIG_DMATEST is not set |
1426 | # CONFIG_AUXDISPLAY is not set | ||
1477 | # CONFIG_UIO is not set | 1427 | # CONFIG_UIO is not set |
1478 | # CONFIG_STAGING is not set | 1428 | # CONFIG_STAGING is not set |
1479 | 1429 | ||
@@ -1484,6 +1434,7 @@ CONFIG_EXT2_FS=y | |||
1484 | # CONFIG_EXT2_FS_XATTR is not set | 1434 | # CONFIG_EXT2_FS_XATTR is not set |
1485 | # CONFIG_EXT2_FS_XIP is not set | 1435 | # CONFIG_EXT2_FS_XIP is not set |
1486 | CONFIG_EXT3_FS=y | 1436 | CONFIG_EXT3_FS=y |
1437 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1487 | CONFIG_EXT3_FS_XATTR=y | 1438 | CONFIG_EXT3_FS_XATTR=y |
1488 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1439 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1489 | # CONFIG_EXT3_FS_SECURITY is not set | 1440 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1508,6 +1459,11 @@ CONFIG_INOTIFY_USER=y | |||
1508 | # CONFIG_FUSE_FS is not set | 1459 | # CONFIG_FUSE_FS is not set |
1509 | 1460 | ||
1510 | # | 1461 | # |
1462 | # Caches | ||
1463 | # | ||
1464 | # CONFIG_FSCACHE is not set | ||
1465 | |||
1466 | # | ||
1511 | # CD-ROM/DVD Filesystems | 1467 | # CD-ROM/DVD Filesystems |
1512 | # | 1468 | # |
1513 | CONFIG_ISO9660_FS=m | 1469 | CONFIG_ISO9660_FS=m |
@@ -1562,6 +1518,7 @@ CONFIG_SYSV_FS=m | |||
1562 | CONFIG_UFS_FS=m | 1518 | CONFIG_UFS_FS=m |
1563 | # CONFIG_UFS_FS_WRITE is not set | 1519 | # CONFIG_UFS_FS_WRITE is not set |
1564 | # CONFIG_UFS_DEBUG is not set | 1520 | # CONFIG_UFS_DEBUG is not set |
1521 | # CONFIG_NILFS2_FS is not set | ||
1565 | CONFIG_NETWORK_FILESYSTEMS=y | 1522 | CONFIG_NETWORK_FILESYSTEMS=y |
1566 | CONFIG_NFS_FS=y | 1523 | CONFIG_NFS_FS=y |
1567 | CONFIG_NFS_V3=y | 1524 | CONFIG_NFS_V3=y |
@@ -1577,7 +1534,6 @@ CONFIG_EXPORTFS=y | |||
1577 | CONFIG_NFS_COMMON=y | 1534 | CONFIG_NFS_COMMON=y |
1578 | CONFIG_SUNRPC=y | 1535 | CONFIG_SUNRPC=y |
1579 | CONFIG_SUNRPC_GSS=y | 1536 | CONFIG_SUNRPC_GSS=y |
1580 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1581 | CONFIG_RPCSEC_GSS_KRB5=y | 1537 | CONFIG_RPCSEC_GSS_KRB5=y |
1582 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1538 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1583 | # CONFIG_SMB_FS is not set | 1539 | # CONFIG_SMB_FS is not set |
@@ -1648,6 +1604,10 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1648 | # CONFIG_NLS_KOI8_U is not set | 1604 | # CONFIG_NLS_KOI8_U is not set |
1649 | CONFIG_NLS_UTF8=m | 1605 | CONFIG_NLS_UTF8=m |
1650 | # CONFIG_DLM is not set | 1606 | # CONFIG_DLM is not set |
1607 | CONFIG_UCC_SLOW=y | ||
1608 | CONFIG_UCC_FAST=y | ||
1609 | CONFIG_UCC=y | ||
1610 | # CONFIG_BINARY_PRINTF is not set | ||
1651 | 1611 | ||
1652 | # | 1612 | # |
1653 | # Library routines | 1613 | # Library routines |
@@ -1662,11 +1622,12 @@ CONFIG_CRC32=y | |||
1662 | # CONFIG_CRC7 is not set | 1622 | # CONFIG_CRC7 is not set |
1663 | CONFIG_LIBCRC32C=m | 1623 | CONFIG_LIBCRC32C=m |
1664 | CONFIG_ZLIB_INFLATE=y | 1624 | CONFIG_ZLIB_INFLATE=y |
1665 | CONFIG_PLIST=y | 1625 | CONFIG_DECOMPRESS_GZIP=y |
1666 | CONFIG_HAS_IOMEM=y | 1626 | CONFIG_HAS_IOMEM=y |
1667 | CONFIG_HAS_IOPORT=y | 1627 | CONFIG_HAS_IOPORT=y |
1668 | CONFIG_HAS_DMA=y | 1628 | CONFIG_HAS_DMA=y |
1669 | CONFIG_HAVE_LMB=y | 1629 | CONFIG_HAVE_LMB=y |
1630 | CONFIG_NLATTR=y | ||
1670 | 1631 | ||
1671 | # | 1632 | # |
1672 | # Kernel hacking | 1633 | # Kernel hacking |
@@ -1684,6 +1645,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1684 | CONFIG_DETECT_SOFTLOCKUP=y | 1645 | CONFIG_DETECT_SOFTLOCKUP=y |
1685 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1646 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1686 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1647 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1648 | CONFIG_DETECT_HUNG_TASK=y | ||
1649 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1650 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1687 | CONFIG_SCHED_DEBUG=y | 1651 | CONFIG_SCHED_DEBUG=y |
1688 | # CONFIG_SCHEDSTATS is not set | 1652 | # CONFIG_SCHEDSTATS is not set |
1689 | # CONFIG_TIMER_STATS is not set | 1653 | # CONFIG_TIMER_STATS is not set |
@@ -1714,9 +1678,12 @@ CONFIG_DEBUG_INFO=y | |||
1714 | # CONFIG_FAULT_INJECTION is not set | 1678 | # CONFIG_FAULT_INJECTION is not set |
1715 | # CONFIG_LATENCYTOP is not set | 1679 | # CONFIG_LATENCYTOP is not set |
1716 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1680 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1681 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1717 | CONFIG_HAVE_FUNCTION_TRACER=y | 1682 | CONFIG_HAVE_FUNCTION_TRACER=y |
1683 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1718 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1684 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1719 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1685 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1686 | CONFIG_TRACING_SUPPORT=y | ||
1720 | 1687 | ||
1721 | # | 1688 | # |
1722 | # Tracers | 1689 | # Tracers |
@@ -1724,17 +1691,20 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1724 | # CONFIG_FUNCTION_TRACER is not set | 1691 | # CONFIG_FUNCTION_TRACER is not set |
1725 | # CONFIG_SCHED_TRACER is not set | 1692 | # CONFIG_SCHED_TRACER is not set |
1726 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1693 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1694 | # CONFIG_EVENT_TRACER is not set | ||
1727 | # CONFIG_BOOT_TRACER is not set | 1695 | # CONFIG_BOOT_TRACER is not set |
1728 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1696 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1729 | # CONFIG_STACK_TRACER is not set | 1697 | # CONFIG_STACK_TRACER is not set |
1730 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1698 | # CONFIG_KMEMTRACE is not set |
1699 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1700 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1701 | # CONFIG_DYNAMIC_DEBUG is not set | ||
1731 | # CONFIG_SAMPLES is not set | 1702 | # CONFIG_SAMPLES is not set |
1732 | CONFIG_HAVE_ARCH_KGDB=y | 1703 | CONFIG_HAVE_ARCH_KGDB=y |
1733 | # CONFIG_KGDB is not set | 1704 | # CONFIG_KGDB is not set |
1734 | CONFIG_PRINT_STACK_DEPTH=64 | 1705 | CONFIG_PRINT_STACK_DEPTH=64 |
1735 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1706 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1736 | # CONFIG_DEBUG_STACK_USAGE is not set | 1707 | # CONFIG_DEBUG_STACK_USAGE is not set |
1737 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1738 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1708 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1739 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1709 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1740 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1710 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
@@ -1759,18 +1729,21 @@ CONFIG_CRYPTO=y | |||
1759 | # CONFIG_CRYPTO_FIPS is not set | 1729 | # CONFIG_CRYPTO_FIPS is not set |
1760 | CONFIG_CRYPTO_ALGAPI=y | 1730 | CONFIG_CRYPTO_ALGAPI=y |
1761 | CONFIG_CRYPTO_ALGAPI2=y | 1731 | CONFIG_CRYPTO_ALGAPI2=y |
1732 | CONFIG_CRYPTO_AEAD=y | ||
1762 | CONFIG_CRYPTO_AEAD2=y | 1733 | CONFIG_CRYPTO_AEAD2=y |
1763 | CONFIG_CRYPTO_BLKCIPHER=y | 1734 | CONFIG_CRYPTO_BLKCIPHER=y |
1764 | CONFIG_CRYPTO_BLKCIPHER2=y | 1735 | CONFIG_CRYPTO_BLKCIPHER2=y |
1765 | CONFIG_CRYPTO_HASH=y | 1736 | CONFIG_CRYPTO_HASH=y |
1766 | CONFIG_CRYPTO_HASH2=y | 1737 | CONFIG_CRYPTO_HASH2=y |
1767 | CONFIG_CRYPTO_RNG2=y | 1738 | CONFIG_CRYPTO_RNG2=y |
1739 | CONFIG_CRYPTO_PCOMP=y | ||
1768 | CONFIG_CRYPTO_MANAGER=y | 1740 | CONFIG_CRYPTO_MANAGER=y |
1769 | CONFIG_CRYPTO_MANAGER2=y | 1741 | CONFIG_CRYPTO_MANAGER2=y |
1770 | # CONFIG_CRYPTO_GF128MUL is not set | 1742 | # CONFIG_CRYPTO_GF128MUL is not set |
1771 | # CONFIG_CRYPTO_NULL is not set | 1743 | # CONFIG_CRYPTO_NULL is not set |
1744 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1772 | # CONFIG_CRYPTO_CRYPTD is not set | 1745 | # CONFIG_CRYPTO_CRYPTD is not set |
1773 | # CONFIG_CRYPTO_AUTHENC is not set | 1746 | CONFIG_CRYPTO_AUTHENC=y |
1774 | # CONFIG_CRYPTO_TEST is not set | 1747 | # CONFIG_CRYPTO_TEST is not set |
1775 | 1748 | ||
1776 | # | 1749 | # |
@@ -1837,6 +1810,7 @@ CONFIG_CRYPTO_DES=y | |||
1837 | # Compression | 1810 | # Compression |
1838 | # | 1811 | # |
1839 | # CONFIG_CRYPTO_DEFLATE is not set | 1812 | # CONFIG_CRYPTO_DEFLATE is not set |
1813 | # CONFIG_CRYPTO_ZLIB is not set | ||
1840 | # CONFIG_CRYPTO_LZO is not set | 1814 | # CONFIG_CRYPTO_LZO is not set |
1841 | 1815 | ||
1842 | # | 1816 | # |
@@ -1845,7 +1819,7 @@ CONFIG_CRYPTO_DES=y | |||
1845 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1819 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1846 | CONFIG_CRYPTO_HW=y | 1820 | CONFIG_CRYPTO_HW=y |
1847 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1821 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
1848 | # CONFIG_CRYPTO_DEV_TALITOS is not set | 1822 | CONFIG_CRYPTO_DEV_TALITOS=y |
1849 | CONFIG_PPC_CLOCK=y | 1823 | CONFIG_PPC_CLOCK=y |
1850 | CONFIG_PPC_LIB_RHEAP=y | 1824 | CONFIG_PPC_LIB_RHEAP=y |
1851 | # CONFIG_VIRTUALIZATION is not set | 1825 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig b/arch/powerpc/configs/mpc85xx_smp_defconfig index 813223ae174d..1aa1c508d600 100644 --- a/arch/powerpc/configs/85xx/mpc8572_ds_defconfig +++ b/arch/powerpc/configs/mpc85xx_smp_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.29-rc2 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Mon Jan 26 15:36:12 2009 | 4 | # Tue Apr 21 15:41:18 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -22,9 +22,10 @@ CONFIG_FSL_EMB_PERFMON=y | |||
22 | # CONFIG_PHYS_64BIT is not set | 22 | # CONFIG_PHYS_64BIT is not set |
23 | CONFIG_SPE=y | 23 | CONFIG_SPE=y |
24 | CONFIG_PPC_MMU_NOHASH=y | 24 | CONFIG_PPC_MMU_NOHASH=y |
25 | CONFIG_PPC_BOOK3E_MMU=y | ||
25 | # CONFIG_PPC_MM_SLICES is not set | 26 | # CONFIG_PPC_MM_SLICES is not set |
26 | CONFIG_SMP=y | 27 | CONFIG_SMP=y |
27 | CONFIG_NR_CPUS=2 | 28 | CONFIG_NR_CPUS=8 |
28 | CONFIG_PPC32=y | 29 | CONFIG_PPC32=y |
29 | CONFIG_WORD_SIZE=32 | 30 | CONFIG_WORD_SIZE=32 |
30 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set | 31 | # CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set |
@@ -44,6 +45,7 @@ CONFIG_ARCH_HAS_ILOG2_U32=y | |||
44 | CONFIG_GENERIC_HWEIGHT=y | 45 | CONFIG_GENERIC_HWEIGHT=y |
45 | CONFIG_GENERIC_CALIBRATE_DELAY=y | 46 | CONFIG_GENERIC_CALIBRATE_DELAY=y |
46 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 47 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
48 | CONFIG_GENERIC_GPIO=y | ||
47 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set | 49 | # CONFIG_ARCH_NO_VIRT_TO_BUS is not set |
48 | CONFIG_PPC=y | 50 | CONFIG_PPC=y |
49 | CONFIG_EARLY_PRINTK=y | 51 | CONFIG_EARLY_PRINTK=y |
@@ -59,6 +61,7 @@ CONFIG_GENERIC_BUG=y | |||
59 | CONFIG_DEFAULT_UIMAGE=y | 61 | CONFIG_DEFAULT_UIMAGE=y |
60 | # CONFIG_PPC_DCR_NATIVE is not set | 62 | # CONFIG_PPC_DCR_NATIVE is not set |
61 | # CONFIG_PPC_DCR_MMIO is not set | 63 | # CONFIG_PPC_DCR_MMIO is not set |
64 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
62 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 65 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
63 | 66 | ||
64 | # | 67 | # |
@@ -73,11 +76,21 @@ CONFIG_SWAP=y | |||
73 | CONFIG_SYSVIPC=y | 76 | CONFIG_SYSVIPC=y |
74 | CONFIG_SYSVIPC_SYSCTL=y | 77 | CONFIG_SYSVIPC_SYSCTL=y |
75 | CONFIG_POSIX_MQUEUE=y | 78 | CONFIG_POSIX_MQUEUE=y |
79 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
76 | CONFIG_BSD_PROCESS_ACCT=y | 80 | CONFIG_BSD_PROCESS_ACCT=y |
77 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | 81 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set |
78 | # CONFIG_TASKSTATS is not set | 82 | # CONFIG_TASKSTATS is not set |
79 | CONFIG_AUDIT=y | 83 | CONFIG_AUDIT=y |
80 | # CONFIG_AUDITSYSCALL is not set | 84 | # CONFIG_AUDITSYSCALL is not set |
85 | |||
86 | # | ||
87 | # RCU Subsystem | ||
88 | # | ||
89 | CONFIG_CLASSIC_RCU=y | ||
90 | # CONFIG_TREE_RCU is not set | ||
91 | # CONFIG_PREEMPT_RCU is not set | ||
92 | # CONFIG_TREE_RCU_TRACE is not set | ||
93 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
81 | CONFIG_IKCONFIG=y | 94 | CONFIG_IKCONFIG=y |
82 | CONFIG_IKCONFIG_PROC=y | 95 | CONFIG_IKCONFIG_PROC=y |
83 | CONFIG_LOG_BUF_SHIFT=14 | 96 | CONFIG_LOG_BUF_SHIFT=14 |
@@ -93,22 +106,24 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
93 | # CONFIG_NAMESPACES is not set | 106 | # CONFIG_NAMESPACES is not set |
94 | CONFIG_BLK_DEV_INITRD=y | 107 | CONFIG_BLK_DEV_INITRD=y |
95 | CONFIG_INITRAMFS_SOURCE="" | 108 | CONFIG_INITRAMFS_SOURCE="" |
109 | CONFIG_RD_GZIP=y | ||
110 | # CONFIG_RD_BZIP2 is not set | ||
111 | # CONFIG_RD_LZMA is not set | ||
96 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 112 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
97 | CONFIG_SYSCTL=y | 113 | CONFIG_SYSCTL=y |
114 | CONFIG_ANON_INODES=y | ||
98 | CONFIG_EMBEDDED=y | 115 | CONFIG_EMBEDDED=y |
99 | CONFIG_SYSCTL_SYSCALL=y | 116 | CONFIG_SYSCTL_SYSCALL=y |
100 | CONFIG_KALLSYMS=y | 117 | CONFIG_KALLSYMS=y |
101 | CONFIG_KALLSYMS_ALL=y | 118 | CONFIG_KALLSYMS_ALL=y |
102 | CONFIG_KALLSYMS_STRIP_GENERATED=y | ||
103 | CONFIG_KALLSYMS_EXTRA_PASS=y | 119 | CONFIG_KALLSYMS_EXTRA_PASS=y |
120 | # CONFIG_STRIP_ASM_SYMS is not set | ||
104 | CONFIG_HOTPLUG=y | 121 | CONFIG_HOTPLUG=y |
105 | CONFIG_PRINTK=y | 122 | CONFIG_PRINTK=y |
106 | CONFIG_BUG=y | 123 | CONFIG_BUG=y |
107 | CONFIG_ELF_CORE=y | 124 | CONFIG_ELF_CORE=y |
108 | CONFIG_COMPAT_BRK=y | ||
109 | CONFIG_BASE_FULL=y | 125 | CONFIG_BASE_FULL=y |
110 | CONFIG_FUTEX=y | 126 | CONFIG_FUTEX=y |
111 | CONFIG_ANON_INODES=y | ||
112 | CONFIG_EPOLL=y | 127 | CONFIG_EPOLL=y |
113 | CONFIG_SIGNALFD=y | 128 | CONFIG_SIGNALFD=y |
114 | CONFIG_TIMERFD=y | 129 | CONFIG_TIMERFD=y |
@@ -118,10 +133,12 @@ CONFIG_AIO=y | |||
118 | CONFIG_VM_EVENT_COUNTERS=y | 133 | CONFIG_VM_EVENT_COUNTERS=y |
119 | CONFIG_PCI_QUIRKS=y | 134 | CONFIG_PCI_QUIRKS=y |
120 | CONFIG_SLUB_DEBUG=y | 135 | CONFIG_SLUB_DEBUG=y |
136 | CONFIG_COMPAT_BRK=y | ||
121 | # CONFIG_SLAB is not set | 137 | # CONFIG_SLAB is not set |
122 | CONFIG_SLUB=y | 138 | CONFIG_SLUB=y |
123 | # CONFIG_SLOB is not set | 139 | # CONFIG_SLOB is not set |
124 | # CONFIG_PROFILING is not set | 140 | # CONFIG_PROFILING is not set |
141 | # CONFIG_MARKERS is not set | ||
125 | CONFIG_HAVE_OPROFILE=y | 142 | CONFIG_HAVE_OPROFILE=y |
126 | # CONFIG_KPROBES is not set | 143 | # CONFIG_KPROBES is not set |
127 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y | 144 | CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y |
@@ -130,6 +147,8 @@ CONFIG_HAVE_KPROBES=y | |||
130 | CONFIG_HAVE_KRETPROBES=y | 147 | CONFIG_HAVE_KRETPROBES=y |
131 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 148 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
132 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 149 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
150 | CONFIG_HAVE_CLK=y | ||
151 | # CONFIG_SLOW_WORK is not set | ||
133 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 152 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
134 | CONFIG_SLABINFO=y | 153 | CONFIG_SLABINFO=y |
135 | CONFIG_RT_MUTEXES=y | 154 | CONFIG_RT_MUTEXES=y |
@@ -143,7 +162,6 @@ CONFIG_MODVERSIONS=y | |||
143 | CONFIG_STOP_MACHINE=y | 162 | CONFIG_STOP_MACHINE=y |
144 | CONFIG_BLOCK=y | 163 | CONFIG_BLOCK=y |
145 | CONFIG_LBD=y | 164 | CONFIG_LBD=y |
146 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
147 | # CONFIG_BLK_DEV_BSG is not set | 165 | # CONFIG_BLK_DEV_BSG is not set |
148 | # CONFIG_BLK_DEV_INTEGRITY is not set | 166 | # CONFIG_BLK_DEV_INTEGRITY is not set |
149 | 167 | ||
@@ -159,11 +177,6 @@ CONFIG_IOSCHED_CFQ=y | |||
159 | CONFIG_DEFAULT_CFQ=y | 177 | CONFIG_DEFAULT_CFQ=y |
160 | # CONFIG_DEFAULT_NOOP is not set | 178 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="cfq" | 179 | CONFIG_DEFAULT_IOSCHED="cfq" |
162 | CONFIG_CLASSIC_RCU=y | ||
163 | # CONFIG_TREE_RCU is not set | ||
164 | # CONFIG_PREEMPT_RCU is not set | ||
165 | # CONFIG_TREE_RCU_TRACE is not set | ||
166 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
167 | # CONFIG_FREEZER is not set | 180 | # CONFIG_FREEZER is not set |
168 | 181 | ||
169 | # | 182 | # |
@@ -173,21 +186,23 @@ CONFIG_CLASSIC_RCU=y | |||
173 | # CONFIG_PPC_CELL_NATIVE is not set | 186 | # CONFIG_PPC_CELL_NATIVE is not set |
174 | # CONFIG_PQ2ADS is not set | 187 | # CONFIG_PQ2ADS is not set |
175 | CONFIG_MPC85xx=y | 188 | CONFIG_MPC85xx=y |
176 | # CONFIG_MPC8540_ADS is not set | 189 | CONFIG_MPC8540_ADS=y |
177 | # CONFIG_MPC8560_ADS is not set | 190 | CONFIG_MPC8560_ADS=y |
178 | # CONFIG_MPC85xx_CDS is not set | 191 | CONFIG_MPC85xx_CDS=y |
179 | # CONFIG_MPC85xx_MDS is not set | 192 | CONFIG_MPC85xx_MDS=y |
180 | # CONFIG_MPC8536_DS is not set | 193 | CONFIG_MPC8536_DS=y |
181 | CONFIG_MPC85xx_DS=y | 194 | CONFIG_MPC85xx_DS=y |
182 | # CONFIG_KSI8560 is not set | 195 | CONFIG_SOCRATES=y |
183 | # CONFIG_STX_GP3 is not set | 196 | CONFIG_KSI8560=y |
184 | # CONFIG_TQM8540 is not set | 197 | CONFIG_STX_GP3=y |
185 | # CONFIG_TQM8541 is not set | 198 | CONFIG_TQM8540=y |
186 | # CONFIG_TQM8548 is not set | 199 | CONFIG_TQM8541=y |
187 | # CONFIG_TQM8555 is not set | 200 | CONFIG_TQM8548=y |
188 | # CONFIG_TQM8560 is not set | 201 | CONFIG_TQM8555=y |
189 | # CONFIG_SBC8548 is not set | 202 | CONFIG_TQM8560=y |
203 | CONFIG_SBC8548=y | ||
190 | # CONFIG_SBC8560 is not set | 204 | # CONFIG_SBC8560 is not set |
205 | CONFIG_TQM85xx=y | ||
191 | # CONFIG_IPIC is not set | 206 | # CONFIG_IPIC is not set |
192 | CONFIG_MPIC=y | 207 | CONFIG_MPIC=y |
193 | # CONFIG_MPIC_WEIRD is not set | 208 | # CONFIG_MPIC_WEIRD is not set |
@@ -199,10 +214,12 @@ CONFIG_PPC_I8259=y | |||
199 | # CONFIG_PPC_INDIRECT_IO is not set | 214 | # CONFIG_PPC_INDIRECT_IO is not set |
200 | # CONFIG_GENERIC_IOMAP is not set | 215 | # CONFIG_GENERIC_IOMAP is not set |
201 | # CONFIG_CPU_FREQ is not set | 216 | # CONFIG_CPU_FREQ is not set |
202 | # CONFIG_QUICC_ENGINE is not set | 217 | CONFIG_QUICC_ENGINE=y |
203 | # CONFIG_CPM2 is not set | 218 | CONFIG_QE_GPIO=y |
219 | CONFIG_CPM2=y | ||
204 | CONFIG_FSL_ULI1575=y | 220 | CONFIG_FSL_ULI1575=y |
205 | # CONFIG_MPC8xxx_GPIO is not set | 221 | CONFIG_CPM=y |
222 | CONFIG_MPC8xxx_GPIO=y | ||
206 | # CONFIG_SIMPLE_GPIO is not set | 223 | # CONFIG_SIMPLE_GPIO is not set |
207 | 224 | ||
208 | # | 225 | # |
@@ -248,9 +265,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
248 | CONFIG_BOUNCE=y | 265 | CONFIG_BOUNCE=y |
249 | CONFIG_VIRT_TO_BUS=y | 266 | CONFIG_VIRT_TO_BUS=y |
250 | CONFIG_UNEVICTABLE_LRU=y | 267 | CONFIG_UNEVICTABLE_LRU=y |
268 | CONFIG_HAVE_MLOCK=y | ||
269 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
251 | CONFIG_PPC_4K_PAGES=y | 270 | CONFIG_PPC_4K_PAGES=y |
252 | # CONFIG_PPC_16K_PAGES is not set | 271 | # CONFIG_PPC_16K_PAGES is not set |
253 | # CONFIG_PPC_64K_PAGES is not set | 272 | # CONFIG_PPC_64K_PAGES is not set |
273 | # CONFIG_PPC_256K_PAGES is not set | ||
254 | CONFIG_FORCE_MAX_ZONEORDER=11 | 274 | CONFIG_FORCE_MAX_ZONEORDER=11 |
255 | CONFIG_PROC_DEVICETREE=y | 275 | CONFIG_PROC_DEVICETREE=y |
256 | # CONFIG_CMDLINE_BOOL is not set | 276 | # CONFIG_CMDLINE_BOOL is not set |
@@ -277,6 +297,7 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
277 | # CONFIG_PCI_LEGACY is not set | 297 | # CONFIG_PCI_LEGACY is not set |
278 | # CONFIG_PCI_DEBUG is not set | 298 | # CONFIG_PCI_DEBUG is not set |
279 | # CONFIG_PCI_STUB is not set | 299 | # CONFIG_PCI_STUB is not set |
300 | # CONFIG_PCI_IOV is not set | ||
280 | # CONFIG_PCCARD is not set | 301 | # CONFIG_PCCARD is not set |
281 | # CONFIG_HOTPLUG_PCI is not set | 302 | # CONFIG_HOTPLUG_PCI is not set |
282 | # CONFIG_HAS_RAPIDIO is not set | 303 | # CONFIG_HAS_RAPIDIO is not set |
@@ -290,17 +311,17 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
290 | # Default settings for advanced configuration options are used | 311 | # Default settings for advanced configuration options are used |
291 | # | 312 | # |
292 | CONFIG_LOWMEM_SIZE=0x30000000 | 313 | CONFIG_LOWMEM_SIZE=0x30000000 |
314 | CONFIG_LOWMEM_CAM_NUM=3 | ||
293 | CONFIG_PAGE_OFFSET=0xc0000000 | 315 | CONFIG_PAGE_OFFSET=0xc0000000 |
294 | CONFIG_KERNEL_START=0xc0000000 | 316 | CONFIG_KERNEL_START=0xc0000000 |
295 | CONFIG_PHYSICAL_START=0x00000000 | 317 | CONFIG_PHYSICAL_START=0x00000000 |
296 | CONFIG_PHYSICAL_ALIGN=0x10000000 | 318 | CONFIG_PHYSICAL_ALIGN=0x04000000 |
297 | CONFIG_TASK_SIZE=0xc0000000 | 319 | CONFIG_TASK_SIZE=0xc0000000 |
298 | CONFIG_NET=y | 320 | CONFIG_NET=y |
299 | 321 | ||
300 | # | 322 | # |
301 | # Networking options | 323 | # Networking options |
302 | # | 324 | # |
303 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
304 | CONFIG_PACKET=y | 325 | CONFIG_PACKET=y |
305 | # CONFIG_PACKET_MMAP is not set | 326 | # CONFIG_PACKET_MMAP is not set |
306 | CONFIG_UNIX=y | 327 | CONFIG_UNIX=y |
@@ -388,6 +409,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
388 | # CONFIG_LAPB is not set | 409 | # CONFIG_LAPB is not set |
389 | # CONFIG_ECONET is not set | 410 | # CONFIG_ECONET is not set |
390 | # CONFIG_WAN_ROUTER is not set | 411 | # CONFIG_WAN_ROUTER is not set |
412 | # CONFIG_PHONET is not set | ||
391 | # CONFIG_NET_SCHED is not set | 413 | # CONFIG_NET_SCHED is not set |
392 | # CONFIG_DCB is not set | 414 | # CONFIG_DCB is not set |
393 | 415 | ||
@@ -400,7 +422,6 @@ CONFIG_SCTP_HMAC_MD5=y | |||
400 | # CONFIG_IRDA is not set | 422 | # CONFIG_IRDA is not set |
401 | # CONFIG_BT is not set | 423 | # CONFIG_BT is not set |
402 | # CONFIG_AF_RXRPC is not set | 424 | # CONFIG_AF_RXRPC is not set |
403 | # CONFIG_PHONET is not set | ||
404 | CONFIG_FIB_RULES=y | 425 | CONFIG_FIB_RULES=y |
405 | CONFIG_WIRELESS=y | 426 | CONFIG_WIRELESS=y |
406 | # CONFIG_CFG80211 is not set | 427 | # CONFIG_CFG80211 is not set |
@@ -431,6 +452,7 @@ CONFIG_EXTRA_FIRMWARE="" | |||
431 | # CONFIG_CONNECTOR is not set | 452 | # CONFIG_CONNECTOR is not set |
432 | # CONFIG_MTD is not set | 453 | # CONFIG_MTD is not set |
433 | CONFIG_OF_DEVICE=y | 454 | CONFIG_OF_DEVICE=y |
455 | CONFIG_OF_GPIO=y | ||
434 | CONFIG_OF_I2C=y | 456 | CONFIG_OF_I2C=y |
435 | # CONFIG_PARPORT is not set | 457 | # CONFIG_PARPORT is not set |
436 | CONFIG_BLK_DEV=y | 458 | CONFIG_BLK_DEV=y |
@@ -454,13 +476,20 @@ CONFIG_BLK_DEV_RAM_SIZE=131072 | |||
454 | # CONFIG_BLK_DEV_HD is not set | 476 | # CONFIG_BLK_DEV_HD is not set |
455 | CONFIG_MISC_DEVICES=y | 477 | CONFIG_MISC_DEVICES=y |
456 | # CONFIG_PHANTOM is not set | 478 | # CONFIG_PHANTOM is not set |
457 | # CONFIG_EEPROM_93CX6 is not set | ||
458 | # CONFIG_SGI_IOC4 is not set | 479 | # CONFIG_SGI_IOC4 is not set |
459 | # CONFIG_TIFM_CORE is not set | 480 | # CONFIG_TIFM_CORE is not set |
460 | # CONFIG_ICS932S401 is not set | 481 | # CONFIG_ICS932S401 is not set |
461 | # CONFIG_ENCLOSURE_SERVICES is not set | 482 | # CONFIG_ENCLOSURE_SERVICES is not set |
462 | # CONFIG_HP_ILO is not set | 483 | # CONFIG_HP_ILO is not set |
484 | # CONFIG_ISL29003 is not set | ||
463 | # CONFIG_C2PORT is not set | 485 | # CONFIG_C2PORT is not set |
486 | |||
487 | # | ||
488 | # EEPROM support | ||
489 | # | ||
490 | # CONFIG_EEPROM_AT24 is not set | ||
491 | CONFIG_EEPROM_LEGACY=y | ||
492 | # CONFIG_EEPROM_93CX6 is not set | ||
464 | CONFIG_HAVE_IDE=y | 493 | CONFIG_HAVE_IDE=y |
465 | # CONFIG_IDE is not set | 494 | # CONFIG_IDE is not set |
466 | 495 | ||
@@ -519,9 +548,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
519 | # CONFIG_MEGARAID_NEWGEN is not set | 548 | # CONFIG_MEGARAID_NEWGEN is not set |
520 | # CONFIG_MEGARAID_LEGACY is not set | 549 | # CONFIG_MEGARAID_LEGACY is not set |
521 | # CONFIG_MEGARAID_SAS is not set | 550 | # CONFIG_MEGARAID_SAS is not set |
551 | # CONFIG_SCSI_MPT2SAS is not set | ||
522 | # CONFIG_SCSI_HPTIOP is not set | 552 | # CONFIG_SCSI_HPTIOP is not set |
523 | # CONFIG_SCSI_BUSLOGIC is not set | 553 | # CONFIG_SCSI_BUSLOGIC is not set |
524 | # CONFIG_LIBFC is not set | 554 | # CONFIG_LIBFC is not set |
555 | # CONFIG_LIBFCOE is not set | ||
525 | # CONFIG_FCOE is not set | 556 | # CONFIG_FCOE is not set |
526 | # CONFIG_SCSI_DMX3191D is not set | 557 | # CONFIG_SCSI_DMX3191D is not set |
527 | # CONFIG_SCSI_EATA is not set | 558 | # CONFIG_SCSI_EATA is not set |
@@ -544,12 +575,13 @@ CONFIG_SCSI_LOWLEVEL=y | |||
544 | # CONFIG_SCSI_DEBUG is not set | 575 | # CONFIG_SCSI_DEBUG is not set |
545 | # CONFIG_SCSI_SRP is not set | 576 | # CONFIG_SCSI_SRP is not set |
546 | # CONFIG_SCSI_DH is not set | 577 | # CONFIG_SCSI_DH is not set |
578 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
547 | CONFIG_ATA=y | 579 | CONFIG_ATA=y |
548 | # CONFIG_ATA_NONSTANDARD is not set | 580 | # CONFIG_ATA_NONSTANDARD is not set |
549 | CONFIG_SATA_PMP=y | 581 | CONFIG_SATA_PMP=y |
550 | CONFIG_SATA_AHCI=y | 582 | CONFIG_SATA_AHCI=y |
551 | # CONFIG_SATA_SIL24 is not set | 583 | # CONFIG_SATA_SIL24 is not set |
552 | # CONFIG_SATA_FSL is not set | 584 | CONFIG_SATA_FSL=y |
553 | CONFIG_ATA_SFF=y | 585 | CONFIG_ATA_SFF=y |
554 | # CONFIG_SATA_SVW is not set | 586 | # CONFIG_SATA_SVW is not set |
555 | # CONFIG_ATA_PIIX is not set | 587 | # CONFIG_ATA_PIIX is not set |
@@ -620,6 +652,7 @@ CONFIG_PATA_ALI=y | |||
620 | # CONFIG_I2O is not set | 652 | # CONFIG_I2O is not set |
621 | # CONFIG_MACINTOSH_DRIVERS is not set | 653 | # CONFIG_MACINTOSH_DRIVERS is not set |
622 | CONFIG_NETDEVICES=y | 654 | CONFIG_NETDEVICES=y |
655 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
623 | CONFIG_DUMMY=y | 656 | CONFIG_DUMMY=y |
624 | # CONFIG_BONDING is not set | 657 | # CONFIG_BONDING is not set |
625 | # CONFIG_MACVLAN is not set | 658 | # CONFIG_MACVLAN is not set |
@@ -632,11 +665,11 @@ CONFIG_PHYLIB=y | |||
632 | # | 665 | # |
633 | # MII PHY device drivers | 666 | # MII PHY device drivers |
634 | # | 667 | # |
635 | # CONFIG_MARVELL_PHY is not set | 668 | CONFIG_MARVELL_PHY=y |
636 | # CONFIG_DAVICOM_PHY is not set | 669 | CONFIG_DAVICOM_PHY=y |
637 | # CONFIG_QSEMI_PHY is not set | 670 | # CONFIG_QSEMI_PHY is not set |
638 | # CONFIG_LXT_PHY is not set | 671 | # CONFIG_LXT_PHY is not set |
639 | # CONFIG_CICADA_PHY is not set | 672 | CONFIG_CICADA_PHY=y |
640 | CONFIG_VITESSE_PHY=y | 673 | CONFIG_VITESSE_PHY=y |
641 | # CONFIG_SMSC_PHY is not set | 674 | # CONFIG_SMSC_PHY is not set |
642 | # CONFIG_BROADCOM_PHY is not set | 675 | # CONFIG_BROADCOM_PHY is not set |
@@ -645,7 +678,7 @@ CONFIG_VITESSE_PHY=y | |||
645 | # CONFIG_NATIONAL_PHY is not set | 678 | # CONFIG_NATIONAL_PHY is not set |
646 | # CONFIG_STE10XP is not set | 679 | # CONFIG_STE10XP is not set |
647 | # CONFIG_LSI_ET1011C_PHY is not set | 680 | # CONFIG_LSI_ET1011C_PHY is not set |
648 | # CONFIG_FIXED_PHY is not set | 681 | CONFIG_FIXED_PHY=y |
649 | # CONFIG_MDIO_BITBANG is not set | 682 | # CONFIG_MDIO_BITBANG is not set |
650 | CONFIG_NET_ETHERNET=y | 683 | CONFIG_NET_ETHERNET=y |
651 | CONFIG_MII=y | 684 | CONFIG_MII=y |
@@ -653,6 +686,8 @@ CONFIG_MII=y | |||
653 | # CONFIG_SUNGEM is not set | 686 | # CONFIG_SUNGEM is not set |
654 | # CONFIG_CASSINI is not set | 687 | # CONFIG_CASSINI is not set |
655 | # CONFIG_NET_VENDOR_3COM is not set | 688 | # CONFIG_NET_VENDOR_3COM is not set |
689 | # CONFIG_ETHOC is not set | ||
690 | # CONFIG_DNET is not set | ||
656 | # CONFIG_NET_TULIP is not set | 691 | # CONFIG_NET_TULIP is not set |
657 | # CONFIG_HP100 is not set | 692 | # CONFIG_HP100 is not set |
658 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 693 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -665,6 +700,10 @@ CONFIG_MII=y | |||
665 | # CONFIG_NET_PCI is not set | 700 | # CONFIG_NET_PCI is not set |
666 | # CONFIG_B44 is not set | 701 | # CONFIG_B44 is not set |
667 | # CONFIG_ATL2 is not set | 702 | # CONFIG_ATL2 is not set |
703 | CONFIG_FS_ENET=y | ||
704 | CONFIG_FS_ENET_HAS_SCC=y | ||
705 | CONFIG_FS_ENET_HAS_FCC=y | ||
706 | # CONFIG_FS_ENET_MDIO_FCC is not set | ||
668 | CONFIG_NETDEV_1000=y | 707 | CONFIG_NETDEV_1000=y |
669 | # CONFIG_ACENIC is not set | 708 | # CONFIG_ACENIC is not set |
670 | # CONFIG_DL2K is not set | 709 | # CONFIG_DL2K is not set |
@@ -672,6 +711,7 @@ CONFIG_NETDEV_1000=y | |||
672 | # CONFIG_E1000E is not set | 711 | # CONFIG_E1000E is not set |
673 | # CONFIG_IP1000 is not set | 712 | # CONFIG_IP1000 is not set |
674 | # CONFIG_IGB is not set | 713 | # CONFIG_IGB is not set |
714 | # CONFIG_IGBVF is not set | ||
675 | # CONFIG_NS83820 is not set | 715 | # CONFIG_NS83820 is not set |
676 | # CONFIG_HAMACHI is not set | 716 | # CONFIG_HAMACHI is not set |
677 | # CONFIG_YELLOWFIN is not set | 717 | # CONFIG_YELLOWFIN is not set |
@@ -682,10 +722,15 @@ CONFIG_NETDEV_1000=y | |||
682 | # CONFIG_VIA_VELOCITY is not set | 722 | # CONFIG_VIA_VELOCITY is not set |
683 | # CONFIG_TIGON3 is not set | 723 | # CONFIG_TIGON3 is not set |
684 | # CONFIG_BNX2 is not set | 724 | # CONFIG_BNX2 is not set |
725 | CONFIG_FSL_PQ_MDIO=y | ||
685 | CONFIG_GIANFAR=y | 726 | CONFIG_GIANFAR=y |
727 | CONFIG_UCC_GETH=y | ||
728 | # CONFIG_UGETH_MAGIC_PACKET is not set | ||
729 | # CONFIG_UGETH_TX_ON_DEMAND is not set | ||
686 | # CONFIG_QLA3XXX is not set | 730 | # CONFIG_QLA3XXX is not set |
687 | # CONFIG_ATL1 is not set | 731 | # CONFIG_ATL1 is not set |
688 | # CONFIG_ATL1E is not set | 732 | # CONFIG_ATL1E is not set |
733 | # CONFIG_ATL1C is not set | ||
689 | # CONFIG_JME is not set | 734 | # CONFIG_JME is not set |
690 | CONFIG_NETDEV_10000=y | 735 | CONFIG_NETDEV_10000=y |
691 | # CONFIG_CHELSIO_T1 is not set | 736 | # CONFIG_CHELSIO_T1 is not set |
@@ -695,6 +740,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
695 | # CONFIG_IXGBE is not set | 740 | # CONFIG_IXGBE is not set |
696 | # CONFIG_IXGB is not set | 741 | # CONFIG_IXGB is not set |
697 | # CONFIG_S2IO is not set | 742 | # CONFIG_S2IO is not set |
743 | # CONFIG_VXGE is not set | ||
698 | # CONFIG_MYRI10GE is not set | 744 | # CONFIG_MYRI10GE is not set |
699 | # CONFIG_NETXEN_NIC is not set | 745 | # CONFIG_NETXEN_NIC is not set |
700 | # CONFIG_NIU is not set | 746 | # CONFIG_NIU is not set |
@@ -704,6 +750,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
704 | # CONFIG_BNX2X is not set | 750 | # CONFIG_BNX2X is not set |
705 | # CONFIG_QLGE is not set | 751 | # CONFIG_QLGE is not set |
706 | # CONFIG_SFC is not set | 752 | # CONFIG_SFC is not set |
753 | # CONFIG_BE2NET is not set | ||
707 | # CONFIG_TR is not set | 754 | # CONFIG_TR is not set |
708 | 755 | ||
709 | # | 756 | # |
@@ -711,7 +758,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
711 | # | 758 | # |
712 | # CONFIG_WLAN_PRE80211 is not set | 759 | # CONFIG_WLAN_PRE80211 is not set |
713 | # CONFIG_WLAN_80211 is not set | 760 | # CONFIG_WLAN_80211 is not set |
714 | # CONFIG_IWLWIFI_LEDS is not set | ||
715 | 761 | ||
716 | # | 762 | # |
717 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 763 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -806,8 +852,10 @@ CONFIG_SERIAL_8250_RSA=y | |||
806 | # CONFIG_SERIAL_UARTLITE is not set | 852 | # CONFIG_SERIAL_UARTLITE is not set |
807 | CONFIG_SERIAL_CORE=y | 853 | CONFIG_SERIAL_CORE=y |
808 | CONFIG_SERIAL_CORE_CONSOLE=y | 854 | CONFIG_SERIAL_CORE_CONSOLE=y |
855 | # CONFIG_SERIAL_CPM is not set | ||
809 | # CONFIG_SERIAL_JSM is not set | 856 | # CONFIG_SERIAL_JSM is not set |
810 | # CONFIG_SERIAL_OF_PLATFORM is not set | 857 | # CONFIG_SERIAL_OF_PLATFORM is not set |
858 | CONFIG_SERIAL_QE=m | ||
811 | CONFIG_UNIX98_PTYS=y | 859 | CONFIG_UNIX98_PTYS=y |
812 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | 860 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set |
813 | CONFIG_LEGACY_PTYS=y | 861 | CONFIG_LEGACY_PTYS=y |
@@ -815,6 +863,7 @@ CONFIG_LEGACY_PTY_COUNT=256 | |||
815 | # CONFIG_HVC_UDBG is not set | 863 | # CONFIG_HVC_UDBG is not set |
816 | # CONFIG_IPMI_HANDLER is not set | 864 | # CONFIG_IPMI_HANDLER is not set |
817 | CONFIG_HW_RANDOM=y | 865 | CONFIG_HW_RANDOM=y |
866 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
818 | CONFIG_NVRAM=y | 867 | CONFIG_NVRAM=y |
819 | # CONFIG_R3964 is not set | 868 | # CONFIG_R3964 is not set |
820 | # CONFIG_APPLICOM is not set | 869 | # CONFIG_APPLICOM is not set |
@@ -851,6 +900,8 @@ CONFIG_I2C_HELPER_AUTO=y | |||
851 | # | 900 | # |
852 | # I2C system bus drivers (mostly embedded / system-on-chip) | 901 | # I2C system bus drivers (mostly embedded / system-on-chip) |
853 | # | 902 | # |
903 | CONFIG_I2C_CPM=m | ||
904 | # CONFIG_I2C_GPIO is not set | ||
854 | CONFIG_I2C_MPC=y | 905 | CONFIG_I2C_MPC=y |
855 | # CONFIG_I2C_OCORES is not set | 906 | # CONFIG_I2C_OCORES is not set |
856 | # CONFIG_I2C_SIMTEC is not set | 907 | # CONFIG_I2C_SIMTEC is not set |
@@ -877,12 +928,9 @@ CONFIG_I2C_MPC=y | |||
877 | # Miscellaneous I2C Chip support | 928 | # Miscellaneous I2C Chip support |
878 | # | 929 | # |
879 | # CONFIG_DS1682 is not set | 930 | # CONFIG_DS1682 is not set |
880 | # CONFIG_EEPROM_AT24 is not set | ||
881 | CONFIG_EEPROM_LEGACY=y | ||
882 | # CONFIG_SENSORS_PCF8574 is not set | 931 | # CONFIG_SENSORS_PCF8574 is not set |
883 | # CONFIG_PCF8575 is not set | 932 | # CONFIG_PCF8575 is not set |
884 | # CONFIG_SENSORS_PCA9539 is not set | 933 | # CONFIG_SENSORS_PCA9539 is not set |
885 | # CONFIG_SENSORS_PCF8591 is not set | ||
886 | # CONFIG_SENSORS_MAX6875 is not set | 934 | # CONFIG_SENSORS_MAX6875 is not set |
887 | # CONFIG_SENSORS_TSL2550 is not set | 935 | # CONFIG_SENSORS_TSL2550 is not set |
888 | # CONFIG_I2C_DEBUG_CORE is not set | 936 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -891,7 +939,31 @@ CONFIG_EEPROM_LEGACY=y | |||
891 | # CONFIG_I2C_DEBUG_CHIP is not set | 939 | # CONFIG_I2C_DEBUG_CHIP is not set |
892 | # CONFIG_SPI is not set | 940 | # CONFIG_SPI is not set |
893 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y | 941 | CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y |
894 | # CONFIG_GPIOLIB is not set | 942 | CONFIG_ARCH_REQUIRE_GPIOLIB=y |
943 | CONFIG_GPIOLIB=y | ||
944 | # CONFIG_DEBUG_GPIO is not set | ||
945 | # CONFIG_GPIO_SYSFS is not set | ||
946 | |||
947 | # | ||
948 | # Memory mapped GPIO expanders: | ||
949 | # | ||
950 | # CONFIG_GPIO_XILINX is not set | ||
951 | |||
952 | # | ||
953 | # I2C GPIO expanders: | ||
954 | # | ||
955 | # CONFIG_GPIO_MAX732X is not set | ||
956 | # CONFIG_GPIO_PCA953X is not set | ||
957 | # CONFIG_GPIO_PCF857X is not set | ||
958 | |||
959 | # | ||
960 | # PCI GPIO expanders: | ||
961 | # | ||
962 | # CONFIG_GPIO_BT8XX is not set | ||
963 | |||
964 | # | ||
965 | # SPI GPIO expanders: | ||
966 | # | ||
895 | # CONFIG_W1 is not set | 967 | # CONFIG_W1 is not set |
896 | # CONFIG_POWER_SUPPLY is not set | 968 | # CONFIG_POWER_SUPPLY is not set |
897 | # CONFIG_HWMON is not set | 969 | # CONFIG_HWMON is not set |
@@ -911,6 +983,8 @@ CONFIG_SSB_POSSIBLE=y | |||
911 | # CONFIG_MFD_CORE is not set | 983 | # CONFIG_MFD_CORE is not set |
912 | # CONFIG_MFD_SM501 is not set | 984 | # CONFIG_MFD_SM501 is not set |
913 | # CONFIG_HTC_PASIC3 is not set | 985 | # CONFIG_HTC_PASIC3 is not set |
986 | # CONFIG_UCB1400_CORE is not set | ||
987 | # CONFIG_TPS65010 is not set | ||
914 | # CONFIG_TWL4030_CORE is not set | 988 | # CONFIG_TWL4030_CORE is not set |
915 | # CONFIG_MFD_TMIO is not set | 989 | # CONFIG_MFD_TMIO is not set |
916 | # CONFIG_PMIC_DA903X is not set | 990 | # CONFIG_PMIC_DA903X is not set |
@@ -935,7 +1009,7 @@ CONFIG_VIDEO_MEDIA=m | |||
935 | # | 1009 | # |
936 | # CONFIG_MEDIA_ATTACH is not set | 1010 | # CONFIG_MEDIA_ATTACH is not set |
937 | CONFIG_MEDIA_TUNER=m | 1011 | CONFIG_MEDIA_TUNER=m |
938 | # CONFIG_MEDIA_TUNER_CUSTOMIZE is not set | 1012 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
939 | CONFIG_MEDIA_TUNER_SIMPLE=m | 1013 | CONFIG_MEDIA_TUNER_SIMPLE=m |
940 | CONFIG_MEDIA_TUNER_TDA8290=m | 1014 | CONFIG_MEDIA_TUNER_TDA8290=m |
941 | CONFIG_MEDIA_TUNER_TDA9887=m | 1015 | CONFIG_MEDIA_TUNER_TDA9887=m |
@@ -944,6 +1018,7 @@ CONFIG_MEDIA_TUNER_TEA5767=m | |||
944 | CONFIG_MEDIA_TUNER_MT20XX=m | 1018 | CONFIG_MEDIA_TUNER_MT20XX=m |
945 | CONFIG_MEDIA_TUNER_XC2028=m | 1019 | CONFIG_MEDIA_TUNER_XC2028=m |
946 | CONFIG_MEDIA_TUNER_XC5000=m | 1020 | CONFIG_MEDIA_TUNER_XC5000=m |
1021 | CONFIG_MEDIA_TUNER_MC44S803=m | ||
947 | # CONFIG_DVB_DYNAMIC_MINORS is not set | 1022 | # CONFIG_DVB_DYNAMIC_MINORS is not set |
948 | CONFIG_DVB_CAPTURE_DRIVERS=y | 1023 | CONFIG_DVB_CAPTURE_DRIVERS=y |
949 | 1024 | ||
@@ -983,103 +1058,7 @@ CONFIG_DVB_CAPTURE_DRIVERS=y | |||
983 | # | 1058 | # |
984 | # Supported DVB Frontends | 1059 | # Supported DVB Frontends |
985 | # | 1060 | # |
986 | |||
987 | # | ||
988 | # Customise DVB Frontends | ||
989 | # | ||
990 | # CONFIG_DVB_FE_CUSTOMISE is not set | 1061 | # CONFIG_DVB_FE_CUSTOMISE is not set |
991 | |||
992 | # | ||
993 | # Multistandard (satellite) frontends | ||
994 | # | ||
995 | # CONFIG_DVB_STB0899 is not set | ||
996 | # CONFIG_DVB_STB6100 is not set | ||
997 | |||
998 | # | ||
999 | # DVB-S (satellite) frontends | ||
1000 | # | ||
1001 | # CONFIG_DVB_CX24110 is not set | ||
1002 | # CONFIG_DVB_CX24123 is not set | ||
1003 | # CONFIG_DVB_MT312 is not set | ||
1004 | # CONFIG_DVB_S5H1420 is not set | ||
1005 | # CONFIG_DVB_STV0288 is not set | ||
1006 | # CONFIG_DVB_STB6000 is not set | ||
1007 | # CONFIG_DVB_STV0299 is not set | ||
1008 | # CONFIG_DVB_TDA8083 is not set | ||
1009 | # CONFIG_DVB_TDA10086 is not set | ||
1010 | # CONFIG_DVB_TDA8261 is not set | ||
1011 | # CONFIG_DVB_VES1X93 is not set | ||
1012 | # CONFIG_DVB_TUNER_ITD1000 is not set | ||
1013 | # CONFIG_DVB_TUNER_CX24113 is not set | ||
1014 | # CONFIG_DVB_TDA826X is not set | ||
1015 | # CONFIG_DVB_TUA6100 is not set | ||
1016 | # CONFIG_DVB_CX24116 is not set | ||
1017 | # CONFIG_DVB_SI21XX is not set | ||
1018 | |||
1019 | # | ||
1020 | # DVB-T (terrestrial) frontends | ||
1021 | # | ||
1022 | # CONFIG_DVB_SP8870 is not set | ||
1023 | # CONFIG_DVB_SP887X is not set | ||
1024 | # CONFIG_DVB_CX22700 is not set | ||
1025 | # CONFIG_DVB_CX22702 is not set | ||
1026 | # CONFIG_DVB_DRX397XD is not set | ||
1027 | # CONFIG_DVB_L64781 is not set | ||
1028 | # CONFIG_DVB_TDA1004X is not set | ||
1029 | # CONFIG_DVB_NXT6000 is not set | ||
1030 | # CONFIG_DVB_MT352 is not set | ||
1031 | # CONFIG_DVB_ZL10353 is not set | ||
1032 | # CONFIG_DVB_DIB3000MB is not set | ||
1033 | # CONFIG_DVB_DIB3000MC is not set | ||
1034 | # CONFIG_DVB_DIB7000M is not set | ||
1035 | # CONFIG_DVB_DIB7000P is not set | ||
1036 | # CONFIG_DVB_TDA10048 is not set | ||
1037 | |||
1038 | # | ||
1039 | # DVB-C (cable) frontends | ||
1040 | # | ||
1041 | # CONFIG_DVB_VES1820 is not set | ||
1042 | # CONFIG_DVB_TDA10021 is not set | ||
1043 | # CONFIG_DVB_TDA10023 is not set | ||
1044 | # CONFIG_DVB_STV0297 is not set | ||
1045 | |||
1046 | # | ||
1047 | # ATSC (North American/Korean Terrestrial/Cable DTV) frontends | ||
1048 | # | ||
1049 | # CONFIG_DVB_NXT200X is not set | ||
1050 | # CONFIG_DVB_OR51211 is not set | ||
1051 | # CONFIG_DVB_OR51132 is not set | ||
1052 | # CONFIG_DVB_BCM3510 is not set | ||
1053 | # CONFIG_DVB_LGDT330X is not set | ||
1054 | # CONFIG_DVB_LGDT3304 is not set | ||
1055 | # CONFIG_DVB_S5H1409 is not set | ||
1056 | # CONFIG_DVB_AU8522 is not set | ||
1057 | # CONFIG_DVB_S5H1411 is not set | ||
1058 | |||
1059 | # | ||
1060 | # ISDB-T (terrestrial) frontends | ||
1061 | # | ||
1062 | # CONFIG_DVB_S921 is not set | ||
1063 | |||
1064 | # | ||
1065 | # Digital terrestrial only tuners/PLL | ||
1066 | # | ||
1067 | # CONFIG_DVB_PLL is not set | ||
1068 | # CONFIG_DVB_TUNER_DIB0070 is not set | ||
1069 | |||
1070 | # | ||
1071 | # SEC control devices for DVB-S | ||
1072 | # | ||
1073 | # CONFIG_DVB_LNBP21 is not set | ||
1074 | # CONFIG_DVB_ISL6405 is not set | ||
1075 | # CONFIG_DVB_ISL6421 is not set | ||
1076 | # CONFIG_DVB_LGS8GL5 is not set | ||
1077 | |||
1078 | # | ||
1079 | # Tools to develop new frontends | ||
1080 | # | ||
1081 | # CONFIG_DVB_DUMMY_FE is not set | ||
1082 | # CONFIG_DVB_AF9013 is not set | ||
1083 | CONFIG_DAB=y | 1062 | CONFIG_DAB=y |
1084 | # CONFIG_USB_DABUSB is not set | 1063 | # CONFIG_USB_DABUSB is not set |
1085 | 1064 | ||
@@ -1159,6 +1138,8 @@ CONFIG_SND_PCI=y | |||
1159 | # CONFIG_SND_INDIGO is not set | 1138 | # CONFIG_SND_INDIGO is not set |
1160 | # CONFIG_SND_INDIGOIO is not set | 1139 | # CONFIG_SND_INDIGOIO is not set |
1161 | # CONFIG_SND_INDIGODJ is not set | 1140 | # CONFIG_SND_INDIGODJ is not set |
1141 | # CONFIG_SND_INDIGOIOX is not set | ||
1142 | # CONFIG_SND_INDIGODJX is not set | ||
1162 | # CONFIG_SND_EMU10K1 is not set | 1143 | # CONFIG_SND_EMU10K1 is not set |
1163 | # CONFIG_SND_EMU10K1X is not set | 1144 | # CONFIG_SND_EMU10K1X is not set |
1164 | # CONFIG_SND_ENS1370 is not set | 1145 | # CONFIG_SND_ENS1370 is not set |
@@ -1213,15 +1194,17 @@ CONFIG_USB_HID=y | |||
1213 | # | 1194 | # |
1214 | # Special HID drivers | 1195 | # Special HID drivers |
1215 | # | 1196 | # |
1216 | CONFIG_HID_COMPAT=y | ||
1217 | CONFIG_HID_A4TECH=y | 1197 | CONFIG_HID_A4TECH=y |
1218 | CONFIG_HID_APPLE=y | 1198 | CONFIG_HID_APPLE=y |
1219 | CONFIG_HID_BELKIN=y | 1199 | CONFIG_HID_BELKIN=y |
1220 | CONFIG_HID_CHERRY=y | 1200 | CONFIG_HID_CHERRY=y |
1221 | CONFIG_HID_CHICONY=y | 1201 | CONFIG_HID_CHICONY=y |
1222 | CONFIG_HID_CYPRESS=y | 1202 | CONFIG_HID_CYPRESS=y |
1203 | # CONFIG_DRAGONRISE_FF is not set | ||
1223 | CONFIG_HID_EZKEY=y | 1204 | CONFIG_HID_EZKEY=y |
1205 | # CONFIG_HID_KYE is not set | ||
1224 | CONFIG_HID_GYRATION=y | 1206 | CONFIG_HID_GYRATION=y |
1207 | # CONFIG_HID_KENSINGTON is not set | ||
1225 | CONFIG_HID_LOGITECH=y | 1208 | CONFIG_HID_LOGITECH=y |
1226 | # CONFIG_LOGITECH_FF is not set | 1209 | # CONFIG_LOGITECH_FF is not set |
1227 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1210 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
@@ -1264,9 +1247,9 @@ CONFIG_USB_MON=y | |||
1264 | # | 1247 | # |
1265 | # CONFIG_USB_C67X00_HCD is not set | 1248 | # CONFIG_USB_C67X00_HCD is not set |
1266 | CONFIG_USB_EHCI_HCD=y | 1249 | CONFIG_USB_EHCI_HCD=y |
1267 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1250 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1268 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1251 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1269 | # CONFIG_USB_EHCI_FSL is not set | 1252 | CONFIG_USB_EHCI_FSL=y |
1270 | CONFIG_USB_EHCI_HCD_PPC_OF=y | 1253 | CONFIG_USB_EHCI_HCD_PPC_OF=y |
1271 | # CONFIG_USB_OXU210HP_HCD is not set | 1254 | # CONFIG_USB_OXU210HP_HCD is not set |
1272 | # CONFIG_USB_ISP116X_HCD is not set | 1255 | # CONFIG_USB_ISP116X_HCD is not set |
@@ -1280,10 +1263,12 @@ CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y | |||
1280 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y | 1263 | CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y |
1281 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | 1264 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y |
1282 | # CONFIG_USB_UHCI_HCD is not set | 1265 | # CONFIG_USB_UHCI_HCD is not set |
1266 | # CONFIG_USB_FHCI_HCD is not set | ||
1283 | # CONFIG_USB_SL811_HCD is not set | 1267 | # CONFIG_USB_SL811_HCD is not set |
1284 | # CONFIG_USB_R8A66597_HCD is not set | 1268 | # CONFIG_USB_R8A66597_HCD is not set |
1285 | # CONFIG_USB_WHCI_HCD is not set | 1269 | # CONFIG_USB_WHCI_HCD is not set |
1286 | # CONFIG_USB_HWA_HCD is not set | 1270 | # CONFIG_USB_HWA_HCD is not set |
1271 | # CONFIG_USB_MUSB_HDRC is not set | ||
1287 | 1272 | ||
1288 | # | 1273 | # |
1289 | # USB Device Class drivers | 1274 | # USB Device Class drivers |
@@ -1294,11 +1279,11 @@ CONFIG_USB_OHCI_LITTLE_ENDIAN=y | |||
1294 | # CONFIG_USB_TMC is not set | 1279 | # CONFIG_USB_TMC is not set |
1295 | 1280 | ||
1296 | # | 1281 | # |
1297 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1282 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
1298 | # | 1283 | # |
1299 | 1284 | ||
1300 | # | 1285 | # |
1301 | # see USB_STORAGE Help for more information | 1286 | # also be needed; see USB_STORAGE Help for more info |
1302 | # | 1287 | # |
1303 | CONFIG_USB_STORAGE=y | 1288 | CONFIG_USB_STORAGE=y |
1304 | # CONFIG_USB_STORAGE_DEBUG is not set | 1289 | # CONFIG_USB_STORAGE_DEBUG is not set |
@@ -1340,7 +1325,6 @@ CONFIG_USB_STORAGE=y | |||
1340 | # CONFIG_USB_LED is not set | 1325 | # CONFIG_USB_LED is not set |
1341 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1326 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1342 | # CONFIG_USB_CYTHERM is not set | 1327 | # CONFIG_USB_CYTHERM is not set |
1343 | # CONFIG_USB_PHIDGET is not set | ||
1344 | # CONFIG_USB_IDMOUSE is not set | 1328 | # CONFIG_USB_IDMOUSE is not set |
1345 | # CONFIG_USB_FTDI_ELAN is not set | 1329 | # CONFIG_USB_FTDI_ELAN is not set |
1346 | # CONFIG_USB_APPLEDISPLAY is not set | 1330 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -1356,13 +1340,24 @@ CONFIG_USB_STORAGE=y | |||
1356 | # | 1340 | # |
1357 | # OTG and related infrastructure | 1341 | # OTG and related infrastructure |
1358 | # | 1342 | # |
1343 | # CONFIG_USB_GPIO_VBUS is not set | ||
1344 | # CONFIG_NOP_USB_XCEIV is not set | ||
1359 | # CONFIG_UWB is not set | 1345 | # CONFIG_UWB is not set |
1360 | # CONFIG_MMC is not set | 1346 | # CONFIG_MMC is not set |
1361 | # CONFIG_MEMSTICK is not set | 1347 | # CONFIG_MEMSTICK is not set |
1362 | # CONFIG_NEW_LEDS is not set | 1348 | # CONFIG_NEW_LEDS is not set |
1363 | # CONFIG_ACCESSIBILITY is not set | 1349 | # CONFIG_ACCESSIBILITY is not set |
1364 | # CONFIG_INFINIBAND is not set | 1350 | # CONFIG_INFINIBAND is not set |
1365 | # CONFIG_EDAC is not set | 1351 | CONFIG_EDAC=y |
1352 | |||
1353 | # | ||
1354 | # Reporting subsystems | ||
1355 | # | ||
1356 | # CONFIG_EDAC_DEBUG is not set | ||
1357 | CONFIG_EDAC_MM_EDAC=y | ||
1358 | CONFIG_EDAC_MPC85XX=y | ||
1359 | # CONFIG_EDAC_AMD8131 is not set | ||
1360 | # CONFIG_EDAC_AMD8111 is not set | ||
1366 | CONFIG_RTC_LIB=y | 1361 | CONFIG_RTC_LIB=y |
1367 | CONFIG_RTC_CLASS=y | 1362 | CONFIG_RTC_CLASS=y |
1368 | CONFIG_RTC_HCTOSYS=y | 1363 | CONFIG_RTC_HCTOSYS=y |
@@ -1417,8 +1412,22 @@ CONFIG_RTC_DRV_CMOS=y | |||
1417 | # | 1412 | # |
1418 | # on-CPU RTC drivers | 1413 | # on-CPU RTC drivers |
1419 | # | 1414 | # |
1420 | # CONFIG_RTC_DRV_PPC is not set | 1415 | # CONFIG_RTC_DRV_GENERIC is not set |
1421 | # CONFIG_DMADEVICES is not set | 1416 | CONFIG_DMADEVICES=y |
1417 | |||
1418 | # | ||
1419 | # DMA Devices | ||
1420 | # | ||
1421 | CONFIG_FSL_DMA=y | ||
1422 | CONFIG_DMA_ENGINE=y | ||
1423 | |||
1424 | # | ||
1425 | # DMA Clients | ||
1426 | # | ||
1427 | # CONFIG_NET_DMA is not set | ||
1428 | # CONFIG_ASYNC_TX_DMA is not set | ||
1429 | # CONFIG_DMATEST is not set | ||
1430 | # CONFIG_AUXDISPLAY is not set | ||
1422 | # CONFIG_UIO is not set | 1431 | # CONFIG_UIO is not set |
1423 | # CONFIG_STAGING is not set | 1432 | # CONFIG_STAGING is not set |
1424 | 1433 | ||
@@ -1429,11 +1438,13 @@ CONFIG_EXT2_FS=y | |||
1429 | # CONFIG_EXT2_FS_XATTR is not set | 1438 | # CONFIG_EXT2_FS_XATTR is not set |
1430 | # CONFIG_EXT2_FS_XIP is not set | 1439 | # CONFIG_EXT2_FS_XIP is not set |
1431 | CONFIG_EXT3_FS=y | 1440 | CONFIG_EXT3_FS=y |
1441 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1432 | CONFIG_EXT3_FS_XATTR=y | 1442 | CONFIG_EXT3_FS_XATTR=y |
1433 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1443 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1434 | # CONFIG_EXT3_FS_SECURITY is not set | 1444 | # CONFIG_EXT3_FS_SECURITY is not set |
1435 | # CONFIG_EXT4_FS is not set | 1445 | # CONFIG_EXT4_FS is not set |
1436 | CONFIG_JBD=y | 1446 | CONFIG_JBD=y |
1447 | # CONFIG_JBD_DEBUG is not set | ||
1437 | CONFIG_FS_MBCACHE=y | 1448 | CONFIG_FS_MBCACHE=y |
1438 | # CONFIG_REISERFS_FS is not set | 1449 | # CONFIG_REISERFS_FS is not set |
1439 | # CONFIG_JFS_FS is not set | 1450 | # CONFIG_JFS_FS is not set |
@@ -1452,6 +1463,11 @@ CONFIG_INOTIFY_USER=y | |||
1452 | # CONFIG_FUSE_FS is not set | 1463 | # CONFIG_FUSE_FS is not set |
1453 | 1464 | ||
1454 | # | 1465 | # |
1466 | # Caches | ||
1467 | # | ||
1468 | # CONFIG_FSCACHE is not set | ||
1469 | |||
1470 | # | ||
1455 | # CD-ROM/DVD Filesystems | 1471 | # CD-ROM/DVD Filesystems |
1456 | # | 1472 | # |
1457 | CONFIG_ISO9660_FS=m | 1473 | CONFIG_ISO9660_FS=m |
@@ -1506,6 +1522,7 @@ CONFIG_SYSV_FS=m | |||
1506 | CONFIG_UFS_FS=m | 1522 | CONFIG_UFS_FS=m |
1507 | # CONFIG_UFS_FS_WRITE is not set | 1523 | # CONFIG_UFS_FS_WRITE is not set |
1508 | # CONFIG_UFS_DEBUG is not set | 1524 | # CONFIG_UFS_DEBUG is not set |
1525 | # CONFIG_NILFS2_FS is not set | ||
1509 | CONFIG_NETWORK_FILESYSTEMS=y | 1526 | CONFIG_NETWORK_FILESYSTEMS=y |
1510 | CONFIG_NFS_FS=y | 1527 | CONFIG_NFS_FS=y |
1511 | CONFIG_NFS_V3=y | 1528 | CONFIG_NFS_V3=y |
@@ -1521,7 +1538,6 @@ CONFIG_EXPORTFS=y | |||
1521 | CONFIG_NFS_COMMON=y | 1538 | CONFIG_NFS_COMMON=y |
1522 | CONFIG_SUNRPC=y | 1539 | CONFIG_SUNRPC=y |
1523 | CONFIG_SUNRPC_GSS=y | 1540 | CONFIG_SUNRPC_GSS=y |
1524 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1525 | CONFIG_RPCSEC_GSS_KRB5=y | 1541 | CONFIG_RPCSEC_GSS_KRB5=y |
1526 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1542 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1527 | # CONFIG_SMB_FS is not set | 1543 | # CONFIG_SMB_FS is not set |
@@ -1592,6 +1608,10 @@ CONFIG_NLS_DEFAULT="iso8859-1" | |||
1592 | # CONFIG_NLS_KOI8_U is not set | 1608 | # CONFIG_NLS_KOI8_U is not set |
1593 | CONFIG_NLS_UTF8=m | 1609 | CONFIG_NLS_UTF8=m |
1594 | # CONFIG_DLM is not set | 1610 | # CONFIG_DLM is not set |
1611 | CONFIG_UCC_SLOW=y | ||
1612 | CONFIG_UCC_FAST=y | ||
1613 | CONFIG_UCC=y | ||
1614 | # CONFIG_BINARY_PRINTF is not set | ||
1595 | 1615 | ||
1596 | # | 1616 | # |
1597 | # Library routines | 1617 | # Library routines |
@@ -1606,11 +1626,12 @@ CONFIG_CRC32=y | |||
1606 | # CONFIG_CRC7 is not set | 1626 | # CONFIG_CRC7 is not set |
1607 | CONFIG_LIBCRC32C=m | 1627 | CONFIG_LIBCRC32C=m |
1608 | CONFIG_ZLIB_INFLATE=y | 1628 | CONFIG_ZLIB_INFLATE=y |
1609 | CONFIG_PLIST=y | 1629 | CONFIG_DECOMPRESS_GZIP=y |
1610 | CONFIG_HAS_IOMEM=y | 1630 | CONFIG_HAS_IOMEM=y |
1611 | CONFIG_HAS_IOPORT=y | 1631 | CONFIG_HAS_IOPORT=y |
1612 | CONFIG_HAS_DMA=y | 1632 | CONFIG_HAS_DMA=y |
1613 | CONFIG_HAVE_LMB=y | 1633 | CONFIG_HAVE_LMB=y |
1634 | CONFIG_NLATTR=y | ||
1614 | 1635 | ||
1615 | # | 1636 | # |
1616 | # Kernel hacking | 1637 | # Kernel hacking |
@@ -1621,13 +1642,16 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1621 | CONFIG_FRAME_WARN=1024 | 1642 | CONFIG_FRAME_WARN=1024 |
1622 | # CONFIG_MAGIC_SYSRQ is not set | 1643 | # CONFIG_MAGIC_SYSRQ is not set |
1623 | # CONFIG_UNUSED_SYMBOLS is not set | 1644 | # CONFIG_UNUSED_SYMBOLS is not set |
1624 | # CONFIG_DEBUG_FS is not set | 1645 | CONFIG_DEBUG_FS=y |
1625 | # CONFIG_HEADERS_CHECK is not set | 1646 | # CONFIG_HEADERS_CHECK is not set |
1626 | CONFIG_DEBUG_KERNEL=y | 1647 | CONFIG_DEBUG_KERNEL=y |
1627 | # CONFIG_DEBUG_SHIRQ is not set | 1648 | # CONFIG_DEBUG_SHIRQ is not set |
1628 | CONFIG_DETECT_SOFTLOCKUP=y | 1649 | CONFIG_DETECT_SOFTLOCKUP=y |
1629 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1650 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1630 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1651 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1652 | CONFIG_DETECT_HUNG_TASK=y | ||
1653 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1654 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1631 | CONFIG_SCHED_DEBUG=y | 1655 | CONFIG_SCHED_DEBUG=y |
1632 | # CONFIG_SCHEDSTATS is not set | 1656 | # CONFIG_SCHEDSTATS is not set |
1633 | # CONFIG_TIMER_STATS is not set | 1657 | # CONFIG_TIMER_STATS is not set |
@@ -1658,9 +1682,12 @@ CONFIG_DEBUG_INFO=y | |||
1658 | # CONFIG_FAULT_INJECTION is not set | 1682 | # CONFIG_FAULT_INJECTION is not set |
1659 | # CONFIG_LATENCYTOP is not set | 1683 | # CONFIG_LATENCYTOP is not set |
1660 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1684 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1685 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1661 | CONFIG_HAVE_FUNCTION_TRACER=y | 1686 | CONFIG_HAVE_FUNCTION_TRACER=y |
1687 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
1662 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1688 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1663 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1689 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1690 | CONFIG_TRACING_SUPPORT=y | ||
1664 | 1691 | ||
1665 | # | 1692 | # |
1666 | # Tracers | 1693 | # Tracers |
@@ -1668,22 +1695,26 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1668 | # CONFIG_FUNCTION_TRACER is not set | 1695 | # CONFIG_FUNCTION_TRACER is not set |
1669 | # CONFIG_SCHED_TRACER is not set | 1696 | # CONFIG_SCHED_TRACER is not set |
1670 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1697 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1698 | # CONFIG_EVENT_TRACER is not set | ||
1671 | # CONFIG_BOOT_TRACER is not set | 1699 | # CONFIG_BOOT_TRACER is not set |
1672 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1700 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1673 | # CONFIG_STACK_TRACER is not set | 1701 | # CONFIG_STACK_TRACER is not set |
1674 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1702 | # CONFIG_KMEMTRACE is not set |
1703 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1704 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1705 | # CONFIG_DYNAMIC_DEBUG is not set | ||
1675 | # CONFIG_SAMPLES is not set | 1706 | # CONFIG_SAMPLES is not set |
1676 | CONFIG_HAVE_ARCH_KGDB=y | 1707 | CONFIG_HAVE_ARCH_KGDB=y |
1677 | # CONFIG_KGDB is not set | 1708 | # CONFIG_KGDB is not set |
1678 | CONFIG_PRINT_STACK_DEPTH=64 | 1709 | CONFIG_PRINT_STACK_DEPTH=64 |
1679 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 1710 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
1680 | # CONFIG_DEBUG_STACK_USAGE is not set | 1711 | # CONFIG_DEBUG_STACK_USAGE is not set |
1681 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1682 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 1712 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
1683 | # CONFIG_FTR_FIXUP_SELFTEST is not set | 1713 | # CONFIG_FTR_FIXUP_SELFTEST is not set |
1684 | # CONFIG_MSI_BITMAP_SELFTEST is not set | 1714 | # CONFIG_MSI_BITMAP_SELFTEST is not set |
1685 | # CONFIG_XMON is not set | 1715 | # CONFIG_XMON is not set |
1686 | # CONFIG_IRQSTACKS is not set | 1716 | # CONFIG_IRQSTACKS is not set |
1717 | CONFIG_VIRQ_DEBUG=y | ||
1687 | # CONFIG_BDI_SWITCH is not set | 1718 | # CONFIG_BDI_SWITCH is not set |
1688 | # CONFIG_PPC_EARLY_DEBUG is not set | 1719 | # CONFIG_PPC_EARLY_DEBUG is not set |
1689 | 1720 | ||
@@ -1709,10 +1740,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1709 | CONFIG_CRYPTO_HASH=y | 1740 | CONFIG_CRYPTO_HASH=y |
1710 | CONFIG_CRYPTO_HASH2=y | 1741 | CONFIG_CRYPTO_HASH2=y |
1711 | CONFIG_CRYPTO_RNG2=y | 1742 | CONFIG_CRYPTO_RNG2=y |
1743 | CONFIG_CRYPTO_PCOMP=y | ||
1712 | CONFIG_CRYPTO_MANAGER=y | 1744 | CONFIG_CRYPTO_MANAGER=y |
1713 | CONFIG_CRYPTO_MANAGER2=y | 1745 | CONFIG_CRYPTO_MANAGER2=y |
1714 | # CONFIG_CRYPTO_GF128MUL is not set | 1746 | # CONFIG_CRYPTO_GF128MUL is not set |
1715 | # CONFIG_CRYPTO_NULL is not set | 1747 | # CONFIG_CRYPTO_NULL is not set |
1748 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1716 | # CONFIG_CRYPTO_CRYPTD is not set | 1749 | # CONFIG_CRYPTO_CRYPTD is not set |
1717 | CONFIG_CRYPTO_AUTHENC=y | 1750 | CONFIG_CRYPTO_AUTHENC=y |
1718 | # CONFIG_CRYPTO_TEST is not set | 1751 | # CONFIG_CRYPTO_TEST is not set |
@@ -1781,6 +1814,7 @@ CONFIG_CRYPTO_DES=y | |||
1781 | # Compression | 1814 | # Compression |
1782 | # | 1815 | # |
1783 | # CONFIG_CRYPTO_DEFLATE is not set | 1816 | # CONFIG_CRYPTO_DEFLATE is not set |
1817 | # CONFIG_CRYPTO_ZLIB is not set | ||
1784 | # CONFIG_CRYPTO_LZO is not set | 1818 | # CONFIG_CRYPTO_LZO is not set |
1785 | 1819 | ||
1786 | # | 1820 | # |
@@ -1790,5 +1824,6 @@ CONFIG_CRYPTO_DES=y | |||
1790 | CONFIG_CRYPTO_HW=y | 1824 | CONFIG_CRYPTO_HW=y |
1791 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1825 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
1792 | CONFIG_CRYPTO_DEV_TALITOS=y | 1826 | CONFIG_CRYPTO_DEV_TALITOS=y |
1793 | # CONFIG_PPC_CLOCK is not set | 1827 | CONFIG_PPC_CLOCK=y |
1828 | CONFIG_PPC_LIB_RHEAP=y | ||
1794 | # CONFIG_VIRTUALIZATION is not set | 1829 | # CONFIG_VIRTUALIZATION is not set |
diff --git a/arch/powerpc/include/asm/elf.h b/arch/powerpc/include/asm/elf.h index 1a856b15226e..d6b4a12cdeff 100644 --- a/arch/powerpc/include/asm/elf.h +++ b/arch/powerpc/include/asm/elf.h | |||
@@ -258,7 +258,9 @@ do { \ | |||
258 | # define elf_read_implies_exec(ex, exec_stk) (test_thread_flag(TIF_32BIT) ? \ | 258 | # define elf_read_implies_exec(ex, exec_stk) (test_thread_flag(TIF_32BIT) ? \ |
259 | (exec_stk != EXSTACK_DISABLE_X) : 0) | 259 | (exec_stk != EXSTACK_DISABLE_X) : 0) |
260 | #else | 260 | #else |
261 | # define SET_PERSONALITY(ex) set_personality(PER_LINUX) | 261 | # define SET_PERSONALITY(ex) \ |
262 | set_personality(PER_LINUX | (current->personality & (~PER_MASK))) | ||
263 | # define elf_read_implies_exec(ex, exec_stk) (exec_stk != EXSTACK_DISABLE_X) | ||
262 | #endif /* __powerpc64__ */ | 264 | #endif /* __powerpc64__ */ |
263 | 265 | ||
264 | extern int dcache_bsize; | 266 | extern int dcache_bsize; |
diff --git a/arch/powerpc/include/asm/mmu.h b/arch/powerpc/include/asm/mmu.h index 86d2366ab6a1..cbf154387091 100644 --- a/arch/powerpc/include/asm/mmu.h +++ b/arch/powerpc/include/asm/mmu.h | |||
@@ -52,12 +52,6 @@ | |||
52 | */ | 52 | */ |
53 | #define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000) | 53 | #define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000) |
54 | 54 | ||
55 | /* This indicates that the processor uses the wrong opcode for tlbilx | ||
56 | * instructions. During the ISA 2.06 development the opcode for tlbilx | ||
57 | * changed and some early implementations used to old opcode | ||
58 | */ | ||
59 | #define MMU_FTR_TLBILX_EARLY_OPCODE ASM_CONST(0x00400000) | ||
60 | |||
61 | #ifndef __ASSEMBLY__ | 55 | #ifndef __ASSEMBLY__ |
62 | #include <asm/cputable.h> | 56 | #include <asm/cputable.h> |
63 | 57 | ||
diff --git a/arch/powerpc/include/asm/ppc-opcode.h b/arch/powerpc/include/asm/ppc-opcode.h index ef4da37f3c10..640ccbbc0977 100644 --- a/arch/powerpc/include/asm/ppc-opcode.h +++ b/arch/powerpc/include/asm/ppc-opcode.h | |||
@@ -44,7 +44,6 @@ | |||
44 | #define PPC_INST_STSWI 0x7c0005aa | 44 | #define PPC_INST_STSWI 0x7c0005aa |
45 | #define PPC_INST_STSWX 0x7c00052a | 45 | #define PPC_INST_STSWX 0x7c00052a |
46 | #define PPC_INST_TLBILX 0x7c000024 | 46 | #define PPC_INST_TLBILX 0x7c000024 |
47 | #define PPC_INST_TLBILX_EARLY 0x7c000626 | ||
48 | #define PPC_INST_WAIT 0x7c00007c | 47 | #define PPC_INST_WAIT 0x7c00007c |
49 | 48 | ||
50 | /* macros to insert fields into opcodes */ | 49 | /* macros to insert fields into opcodes */ |
@@ -64,18 +63,10 @@ | |||
64 | #define PPC_RFDI stringify_in_c(.long PPC_INST_RFDI) | 63 | #define PPC_RFDI stringify_in_c(.long PPC_INST_RFDI) |
65 | #define PPC_RFMCI stringify_in_c(.long PPC_INST_RFMCI) | 64 | #define PPC_RFMCI stringify_in_c(.long PPC_INST_RFMCI) |
66 | #define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_INST_TLBILX | \ | 65 | #define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_INST_TLBILX | \ |
67 | __PPC_T_TLB(t) | \ | 66 | __PPC_T_TLB(t) | __PPC_RA(a) | __PPC_RB(b)) |
68 | __PPC_RA(a) | __PPC_RB(b)) | ||
69 | #define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b) | 67 | #define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b) |
70 | #define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b) | 68 | #define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b) |
71 | #define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b) | 69 | #define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b) |
72 | |||
73 | #define PPC_TLBILX_EARLY(t, a, b) stringify_in_c(.long PPC_INST_TLBILX_EARLY | \ | ||
74 | __PPC_T_TLB(t) | \ | ||
75 | __PPC_RA(a) | __PPC_RB(b)) | ||
76 | #define PPC_TLBILX_ALL_EARLY(a, b) PPC_TLBILX_EARLY(0, a, b) | ||
77 | #define PPC_TLBILX_PID_EARLY(a, b) PPC_TLBILX_EARLY(1, a, b) | ||
78 | #define PPC_TLBILX_VA_EARLY(a, b) PPC_TLBILX_EARLY(3, a, b) | ||
79 | #define PPC_WAIT(w) stringify_in_c(.long PPC_INST_WAIT | \ | 70 | #define PPC_WAIT(w) stringify_in_c(.long PPC_INST_WAIT | \ |
80 | __PPC_WC(w)) | 71 | __PPC_WC(w)) |
81 | 72 | ||
diff --git a/arch/powerpc/include/asm/ppc_asm.h b/arch/powerpc/include/asm/ppc_asm.h index f59a66684aed..384d90c9c272 100644 --- a/arch/powerpc/include/asm/ppc_asm.h +++ b/arch/powerpc/include/asm/ppc_asm.h | |||
@@ -4,6 +4,7 @@ | |||
4 | #ifndef _ASM_POWERPC_PPC_ASM_H | 4 | #ifndef _ASM_POWERPC_PPC_ASM_H |
5 | #define _ASM_POWERPC_PPC_ASM_H | 5 | #define _ASM_POWERPC_PPC_ASM_H |
6 | 6 | ||
7 | #include <linux/init.h> | ||
7 | #include <linux/stringify.h> | 8 | #include <linux/stringify.h> |
8 | #include <asm/asm-compat.h> | 9 | #include <asm/asm-compat.h> |
9 | #include <asm/processor.h> | 10 | #include <asm/processor.h> |
@@ -189,7 +190,7 @@ name: \ | |||
189 | GLUE(.,name): | 190 | GLUE(.,name): |
190 | 191 | ||
191 | #define _INIT_GLOBAL(name) \ | 192 | #define _INIT_GLOBAL(name) \ |
192 | .section ".text.init.refok"; \ | 193 | __REF; \ |
193 | .align 2 ; \ | 194 | .align 2 ; \ |
194 | .globl name; \ | 195 | .globl name; \ |
195 | .globl GLUE(.,name); \ | 196 | .globl GLUE(.,name); \ |
@@ -229,7 +230,7 @@ name: \ | |||
229 | GLUE(.,name): | 230 | GLUE(.,name): |
230 | 231 | ||
231 | #define _INIT_STATIC(name) \ | 232 | #define _INIT_STATIC(name) \ |
232 | .section ".text.init.refok"; \ | 233 | __REF; \ |
233 | .align 2 ; \ | 234 | .align 2 ; \ |
234 | .section ".opd","aw"; \ | 235 | .section ".opd","aw"; \ |
235 | name: \ | 236 | name: \ |
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index 57db50f40289..cd1b687544f3 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
@@ -1766,7 +1766,7 @@ static struct cpu_spec __initdata cpu_specs[] = { | |||
1766 | .cpu_features = CPU_FTRS_E500MC, | 1766 | .cpu_features = CPU_FTRS_E500MC, |
1767 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, | 1767 | .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU, |
1768 | .mmu_features = MMU_FTR_TYPE_FSL_E | MMU_FTR_BIG_PHYS | | 1768 | .mmu_features = MMU_FTR_TYPE_FSL_E | MMU_FTR_BIG_PHYS | |
1769 | MMU_FTR_USE_TLBILX | MMU_FTR_TLBILX_EARLY_OPCODE, | 1769 | MMU_FTR_USE_TLBILX, |
1770 | .icache_bsize = 64, | 1770 | .icache_bsize = 64, |
1771 | .dcache_bsize = 64, | 1771 | .dcache_bsize = 64, |
1772 | .num_pmcs = 4, | 1772 | .num_pmcs = 4, |
diff --git a/arch/powerpc/kernel/head_32.S b/arch/powerpc/kernel/head_32.S index 54e68c11ae15..c01467f952d3 100644 --- a/arch/powerpc/kernel/head_32.S +++ b/arch/powerpc/kernel/head_32.S | |||
@@ -21,6 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <linux/init.h> | ||
24 | #include <asm/reg.h> | 25 | #include <asm/reg.h> |
25 | #include <asm/page.h> | 26 | #include <asm/page.h> |
26 | #include <asm/mmu.h> | 27 | #include <asm/mmu.h> |
@@ -50,7 +51,7 @@ | |||
50 | mtspr SPRN_DBAT##n##L,RB; \ | 51 | mtspr SPRN_DBAT##n##L,RB; \ |
51 | 1: | 52 | 1: |
52 | 53 | ||
53 | .section .text.head, "ax" | 54 | __HEAD |
54 | .stabs "arch/powerpc/kernel/",N_SO,0,0,0f | 55 | .stabs "arch/powerpc/kernel/",N_SO,0,0,0f |
55 | .stabs "head_32.S",N_SO,0,0,0f | 56 | .stabs "head_32.S",N_SO,0,0,0f |
56 | 0: | 57 | 0: |
diff --git a/arch/powerpc/kernel/head_40x.S b/arch/powerpc/kernel/head_40x.S index 56d8e5d90c5b..0c96911d4299 100644 --- a/arch/powerpc/kernel/head_40x.S +++ b/arch/powerpc/kernel/head_40x.S | |||
@@ -31,6 +31,7 @@ | |||
31 | * | 31 | * |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include <linux/init.h> | ||
34 | #include <asm/processor.h> | 35 | #include <asm/processor.h> |
35 | #include <asm/page.h> | 36 | #include <asm/page.h> |
36 | #include <asm/mmu.h> | 37 | #include <asm/mmu.h> |
@@ -52,7 +53,7 @@ | |||
52 | * | 53 | * |
53 | * This is all going to change RSN when we add bi_recs....... -- Dan | 54 | * This is all going to change RSN when we add bi_recs....... -- Dan |
54 | */ | 55 | */ |
55 | .section .text.head, "ax" | 56 | __HEAD |
56 | _ENTRY(_stext); | 57 | _ENTRY(_stext); |
57 | _ENTRY(_start); | 58 | _ENTRY(_start); |
58 | 59 | ||
diff --git a/arch/powerpc/kernel/head_44x.S b/arch/powerpc/kernel/head_44x.S index b56fecc93a16..18d8a1677c4d 100644 --- a/arch/powerpc/kernel/head_44x.S +++ b/arch/powerpc/kernel/head_44x.S | |||
@@ -28,6 +28,7 @@ | |||
28 | * option) any later version. | 28 | * option) any later version. |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <linux/init.h> | ||
31 | #include <asm/processor.h> | 32 | #include <asm/processor.h> |
32 | #include <asm/page.h> | 33 | #include <asm/page.h> |
33 | #include <asm/mmu.h> | 34 | #include <asm/mmu.h> |
@@ -50,7 +51,7 @@ | |||
50 | * r7 - End of kernel command line string | 51 | * r7 - End of kernel command line string |
51 | * | 52 | * |
52 | */ | 53 | */ |
53 | .section .text.head, "ax" | 54 | __HEAD |
54 | _ENTRY(_stext); | 55 | _ENTRY(_stext); |
55 | _ENTRY(_start); | 56 | _ENTRY(_start); |
56 | /* | 57 | /* |
diff --git a/arch/powerpc/kernel/head_8xx.S b/arch/powerpc/kernel/head_8xx.S index 3c9452d4308b..52ff8c53b93c 100644 --- a/arch/powerpc/kernel/head_8xx.S +++ b/arch/powerpc/kernel/head_8xx.S | |||
@@ -19,6 +19,7 @@ | |||
19 | * | 19 | * |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <linux/init.h> | ||
22 | #include <asm/processor.h> | 23 | #include <asm/processor.h> |
23 | #include <asm/page.h> | 24 | #include <asm/page.h> |
24 | #include <asm/mmu.h> | 25 | #include <asm/mmu.h> |
@@ -38,7 +39,7 @@ | |||
38 | #else | 39 | #else |
39 | #define DO_8xx_CPU6(val, reg) | 40 | #define DO_8xx_CPU6(val, reg) |
40 | #endif | 41 | #endif |
41 | .section .text.head, "ax" | 42 | __HEAD |
42 | _ENTRY(_stext); | 43 | _ENTRY(_stext); |
43 | _ENTRY(_start); | 44 | _ENTRY(_start); |
44 | 45 | ||
diff --git a/arch/powerpc/kernel/head_fsl_booke.S b/arch/powerpc/kernel/head_fsl_booke.S index 4c22620d009b..5bdcc06d294c 100644 --- a/arch/powerpc/kernel/head_fsl_booke.S +++ b/arch/powerpc/kernel/head_fsl_booke.S | |||
@@ -30,6 +30,7 @@ | |||
30 | * option) any later version. | 30 | * option) any later version. |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #include <linux/init.h> | ||
33 | #include <linux/threads.h> | 34 | #include <linux/threads.h> |
34 | #include <asm/processor.h> | 35 | #include <asm/processor.h> |
35 | #include <asm/page.h> | 36 | #include <asm/page.h> |
@@ -53,7 +54,7 @@ | |||
53 | * r7 - End of kernel command line string | 54 | * r7 - End of kernel command line string |
54 | * | 55 | * |
55 | */ | 56 | */ |
56 | .section .text.head, "ax" | 57 | __HEAD |
57 | _ENTRY(_stext); | 58 | _ENTRY(_stext); |
58 | _ENTRY(_start); | 59 | _ENTRY(_start); |
59 | /* | 60 | /* |
diff --git a/arch/powerpc/kernel/prom_parse.c b/arch/powerpc/kernel/prom_parse.c index 8f0856f312da..8362620c9e6f 100644 --- a/arch/powerpc/kernel/prom_parse.c +++ b/arch/powerpc/kernel/prom_parse.c | |||
@@ -971,7 +971,7 @@ int of_irq_map_one(struct device_node *device, int index, struct of_irq *out_irq | |||
971 | struct device_node *p; | 971 | struct device_node *p; |
972 | const u32 *intspec, *tmp, *addr; | 972 | const u32 *intspec, *tmp, *addr; |
973 | u32 intsize, intlen; | 973 | u32 intsize, intlen; |
974 | int res; | 974 | int res = -EINVAL; |
975 | 975 | ||
976 | DBG("of_irq_map_one: dev=%s, index=%d\n", device->full_name, index); | 976 | DBG("of_irq_map_one: dev=%s, index=%d\n", device->full_name, index); |
977 | 977 | ||
@@ -995,21 +995,20 @@ int of_irq_map_one(struct device_node *device, int index, struct of_irq *out_irq | |||
995 | 995 | ||
996 | /* Get size of interrupt specifier */ | 996 | /* Get size of interrupt specifier */ |
997 | tmp = of_get_property(p, "#interrupt-cells", NULL); | 997 | tmp = of_get_property(p, "#interrupt-cells", NULL); |
998 | if (tmp == NULL) { | 998 | if (tmp == NULL) |
999 | of_node_put(p); | 999 | goto out; |
1000 | return -EINVAL; | ||
1001 | } | ||
1002 | intsize = *tmp; | 1000 | intsize = *tmp; |
1003 | 1001 | ||
1004 | DBG(" intsize=%d intlen=%d\n", intsize, intlen); | 1002 | DBG(" intsize=%d intlen=%d\n", intsize, intlen); |
1005 | 1003 | ||
1006 | /* Check index */ | 1004 | /* Check index */ |
1007 | if ((index + 1) * intsize > intlen) | 1005 | if ((index + 1) * intsize > intlen) |
1008 | return -EINVAL; | 1006 | goto out; |
1009 | 1007 | ||
1010 | /* Get new specifier and map it */ | 1008 | /* Get new specifier and map it */ |
1011 | res = of_irq_map_raw(p, intspec + index * intsize, intsize, | 1009 | res = of_irq_map_raw(p, intspec + index * intsize, intsize, |
1012 | addr, out_irq); | 1010 | addr, out_irq); |
1011 | out: | ||
1013 | of_node_put(p); | 1012 | of_node_put(p); |
1014 | return res; | 1013 | return res; |
1015 | } | 1014 | } |
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c index 926ea864e34f..48571ac56fb7 100644 --- a/arch/powerpc/kernel/time.c +++ b/arch/powerpc/kernel/time.c | |||
@@ -77,7 +77,7 @@ | |||
77 | #include <linux/clockchips.h> | 77 | #include <linux/clockchips.h> |
78 | #include <linux/clocksource.h> | 78 | #include <linux/clocksource.h> |
79 | 79 | ||
80 | static cycle_t rtc_read(void); | 80 | static cycle_t rtc_read(struct clocksource *); |
81 | static struct clocksource clocksource_rtc = { | 81 | static struct clocksource clocksource_rtc = { |
82 | .name = "rtc", | 82 | .name = "rtc", |
83 | .rating = 400, | 83 | .rating = 400, |
@@ -88,7 +88,7 @@ static struct clocksource clocksource_rtc = { | |||
88 | .read = rtc_read, | 88 | .read = rtc_read, |
89 | }; | 89 | }; |
90 | 90 | ||
91 | static cycle_t timebase_read(void); | 91 | static cycle_t timebase_read(struct clocksource *); |
92 | static struct clocksource clocksource_timebase = { | 92 | static struct clocksource clocksource_timebase = { |
93 | .name = "timebase", | 93 | .name = "timebase", |
94 | .rating = 400, | 94 | .rating = 400, |
@@ -766,12 +766,12 @@ unsigned long read_persistent_clock(void) | |||
766 | } | 766 | } |
767 | 767 | ||
768 | /* clocksource code */ | 768 | /* clocksource code */ |
769 | static cycle_t rtc_read(void) | 769 | static cycle_t rtc_read(struct clocksource *cs) |
770 | { | 770 | { |
771 | return (cycle_t)get_rtc(); | 771 | return (cycle_t)get_rtc(); |
772 | } | 772 | } |
773 | 773 | ||
774 | static cycle_t timebase_read(void) | 774 | static cycle_t timebase_read(struct clocksource *cs) |
775 | { | 775 | { |
776 | return (cycle_t)get_tb(); | 776 | return (cycle_t)get_tb(); |
777 | } | 777 | } |
diff --git a/arch/powerpc/kernel/vmlinux.lds.S b/arch/powerpc/kernel/vmlinux.lds.S index b9ef1644a722..a047a6cfca4d 100644 --- a/arch/powerpc/kernel/vmlinux.lds.S +++ b/arch/powerpc/kernel/vmlinux.lds.S | |||
@@ -52,9 +52,10 @@ SECTIONS | |||
52 | /* Text and gots */ | 52 | /* Text and gots */ |
53 | .text : AT(ADDR(.text) - LOAD_OFFSET) { | 53 | .text : AT(ADDR(.text) - LOAD_OFFSET) { |
54 | ALIGN_FUNCTION(); | 54 | ALIGN_FUNCTION(); |
55 | *(.text.head) | 55 | HEAD_TEXT |
56 | _text = .; | 56 | _text = .; |
57 | *(.text .fixup .text.init.refok .exit.text.refok __ftr_alt_*) | 57 | /* careful! __ftr_alt_* sections need to be close to .text */ |
58 | *(.text .fixup __ftr_alt_* .ref.text) | ||
58 | SCHED_TEXT | 59 | SCHED_TEXT |
59 | LOCK_TEXT | 60 | LOCK_TEXT |
60 | KPROBES_TEXT | 61 | KPROBES_TEXT |
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index db556d25c3a7..1ade7eb6ae00 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -753,7 +753,7 @@ void __init early_init_mmu(void) | |||
753 | } | 753 | } |
754 | 754 | ||
755 | #ifdef CONFIG_SMP | 755 | #ifdef CONFIG_SMP |
756 | void __init early_init_mmu_secondary(void) | 756 | void __cpuinit early_init_mmu_secondary(void) |
757 | { | 757 | { |
758 | /* Initialize hash table for that CPU */ | 758 | /* Initialize hash table for that CPU */ |
759 | if (!firmware_has_feature(FW_FEATURE_LPAR)) | 759 | if (!firmware_has_feature(FW_FEATURE_LPAR)) |
diff --git a/arch/powerpc/mm/tlb_nohash_low.S b/arch/powerpc/mm/tlb_nohash_low.S index 45fed3698349..3037911279b1 100644 --- a/arch/powerpc/mm/tlb_nohash_low.S +++ b/arch/powerpc/mm/tlb_nohash_low.S | |||
@@ -138,11 +138,7 @@ BEGIN_MMU_FTR_SECTION | |||
138 | andi. r3,r3,MMUCSR0_TLBFI@l | 138 | andi. r3,r3,MMUCSR0_TLBFI@l |
139 | bne 1b | 139 | bne 1b |
140 | MMU_FTR_SECTION_ELSE | 140 | MMU_FTR_SECTION_ELSE |
141 | BEGIN_MMU_FTR_SECTION_NESTED(96) | 141 | PPC_TLBILX_ALL(0,0) |
142 | PPC_TLBILX_ALL(0,r3) | ||
143 | MMU_FTR_SECTION_ELSE_NESTED(96) | ||
144 | PPC_TLBILX_ALL_EARLY(0,r3) | ||
145 | ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96) | ||
146 | ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX) | 142 | ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX) |
147 | msync | 143 | msync |
148 | isync | 144 | isync |
@@ -155,11 +151,7 @@ BEGIN_MMU_FTR_SECTION | |||
155 | wrteei 0 | 151 | wrteei 0 |
156 | mfspr r4,SPRN_MAS6 /* save MAS6 */ | 152 | mfspr r4,SPRN_MAS6 /* save MAS6 */ |
157 | mtspr SPRN_MAS6,r3 | 153 | mtspr SPRN_MAS6,r3 |
158 | BEGIN_MMU_FTR_SECTION_NESTED(96) | ||
159 | PPC_TLBILX_PID(0,0) | 154 | PPC_TLBILX_PID(0,0) |
160 | MMU_FTR_SECTION_ELSE_NESTED(96) | ||
161 | PPC_TLBILX_PID_EARLY(0,0) | ||
162 | ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96) | ||
163 | mtspr SPRN_MAS6,r4 /* restore MAS6 */ | 155 | mtspr SPRN_MAS6,r4 /* restore MAS6 */ |
164 | wrtee r10 | 156 | wrtee r10 |
165 | MMU_FTR_SECTION_ELSE | 157 | MMU_FTR_SECTION_ELSE |
@@ -193,16 +185,12 @@ BEGIN_MMU_FTR_SECTION | |||
193 | mtspr SPRN_MAS1,r4 | 185 | mtspr SPRN_MAS1,r4 |
194 | tlbwe | 186 | tlbwe |
195 | MMU_FTR_SECTION_ELSE | 187 | MMU_FTR_SECTION_ELSE |
196 | BEGIN_MMU_FTR_SECTION_NESTED(96) | ||
197 | PPC_TLBILX_VA(0,r3) | 188 | PPC_TLBILX_VA(0,r3) |
198 | MMU_FTR_SECTION_ELSE_NESTED(96) | ||
199 | PPC_TLBILX_VA_EARLY(0,r3) | ||
200 | ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96) | ||
201 | ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX) | 189 | ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX) |
202 | msync | 190 | msync |
203 | isync | 191 | isync |
204 | 1: wrtee r10 | 192 | 1: wrtee r10 |
205 | blr | 193 | blr |
206 | #elif | 194 | #else |
207 | #error Unsupported processor type ! | 195 | #error Unsupported processor type ! |
208 | #endif | 196 | #endif |
diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig index 40e24c39ad06..50f17bdd3c16 100644 --- a/arch/powerpc/platforms/cell/Kconfig +++ b/arch/powerpc/platforms/cell/Kconfig | |||
@@ -13,7 +13,6 @@ config PPC_CELL_COMMON | |||
13 | config PPC_CELL_NATIVE | 13 | config PPC_CELL_NATIVE |
14 | bool | 14 | bool |
15 | select PPC_CELL_COMMON | 15 | select PPC_CELL_COMMON |
16 | select PPC_OF_PLATFORM_PCI | ||
17 | select MPIC | 16 | select MPIC |
18 | select IBM_NEW_EMAC_EMAC4 | 17 | select IBM_NEW_EMAC_EMAC4 |
19 | select IBM_NEW_EMAC_RGMII | 18 | select IBM_NEW_EMAC_RGMII |
@@ -25,6 +24,8 @@ config PPC_IBM_CELL_BLADE | |||
25 | bool "IBM Cell Blade" | 24 | bool "IBM Cell Blade" |
26 | depends on PPC64 && PPC_BOOK3S | 25 | depends on PPC64 && PPC_BOOK3S |
27 | select PPC_CELL_NATIVE | 26 | select PPC_CELL_NATIVE |
27 | select PPC_OF_PLATFORM_PCI | ||
28 | select PCI | ||
28 | select MMIO_NVRAM | 29 | select MMIO_NVRAM |
29 | select PPC_UDBG_16550 | 30 | select PPC_UDBG_16550 |
30 | select UDBG_RTAS_CONSOLE | 31 | select UDBG_RTAS_CONSOLE |
@@ -33,6 +34,8 @@ config PPC_CELLEB | |||
33 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" | 34 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" |
34 | depends on PPC64 && PPC_BOOK3S | 35 | depends on PPC64 && PPC_BOOK3S |
35 | select PPC_CELL_NATIVE | 36 | select PPC_CELL_NATIVE |
37 | select PPC_OF_PLATFORM_PCI | ||
38 | select PCI | ||
36 | select HAS_TXX9_SERIAL | 39 | select HAS_TXX9_SERIAL |
37 | select PPC_UDBG_BEAT | 40 | select PPC_UDBG_BEAT |
38 | select USB_OHCI_BIG_ENDIAN_MMIO | 41 | select USB_OHCI_BIG_ENDIAN_MMIO |
diff --git a/arch/powerpc/platforms/fsl_uli1575.c b/arch/powerpc/platforms/fsl_uli1575.c index 1db6b9e037fc..65a35f38e062 100644 --- a/arch/powerpc/platforms/fsl_uli1575.c +++ b/arch/powerpc/platforms/fsl_uli1575.c | |||
@@ -275,11 +275,6 @@ static void __devinit hpcd_quirk_uli5288(struct pci_dev *dev) | |||
275 | if (!machine_is(mpc86xx_hpcd)) | 275 | if (!machine_is(mpc86xx_hpcd)) |
276 | return; | 276 | return; |
277 | 277 | ||
278 | /* Interrupt Disable, Needed when SATA disabled */ | ||
279 | pci_read_config_word(dev, PCI_COMMAND, &temp); | ||
280 | temp |= 1<<10; | ||
281 | pci_write_config_word(dev, PCI_COMMAND, temp); | ||
282 | |||
283 | pci_read_config_byte(dev, 0x83, &c); | 278 | pci_read_config_byte(dev, 0x83, &c); |
284 | c |= 0x80; | 279 | c |= 0x80; |
285 | pci_write_config_byte(dev, 0x83, c); | 280 | pci_write_config_byte(dev, 0x83, c); |
diff --git a/arch/powerpc/platforms/pasemi/setup.c b/arch/powerpc/platforms/pasemi/setup.c index c64fb5bfb37e..153051eb6d93 100644 --- a/arch/powerpc/platforms/pasemi/setup.c +++ b/arch/powerpc/platforms/pasemi/setup.c | |||
@@ -44,10 +44,6 @@ | |||
44 | 44 | ||
45 | #include "pasemi.h" | 45 | #include "pasemi.h" |
46 | 46 | ||
47 | #if !defined(CONFIG_SMP) | ||
48 | static void smp_send_stop(void) {} | ||
49 | #endif | ||
50 | |||
51 | /* SDC reset register, must be pre-mapped at reset time */ | 47 | /* SDC reset register, must be pre-mapped at reset time */ |
52 | static void __iomem *reset_reg; | 48 | static void __iomem *reset_reg; |
53 | 49 | ||
diff --git a/arch/powerpc/platforms/ps3/os-area.c b/arch/powerpc/platforms/ps3/os-area.c index 86e392b1b049..cf1cd0f8c18f 100644 --- a/arch/powerpc/platforms/ps3/os-area.c +++ b/arch/powerpc/platforms/ps3/os-area.c | |||
@@ -578,7 +578,7 @@ static void os_area_db_init(struct os_area_db *db) | |||
578 | * | 578 | * |
579 | */ | 579 | */ |
580 | 580 | ||
581 | static void update_flash_db(void) | 581 | static void __maybe_unused update_flash_db(void) |
582 | { | 582 | { |
583 | int result; | 583 | int result; |
584 | int file; | 584 | int file; |
diff --git a/arch/powerpc/platforms/ps3/setup.c b/arch/powerpc/platforms/ps3/setup.c index 66181821322a..1a7b5ae0c83e 100644 --- a/arch/powerpc/platforms/ps3/setup.c +++ b/arch/powerpc/platforms/ps3/setup.c | |||
@@ -45,10 +45,6 @@ | |||
45 | DEFINE_MUTEX(ps3_gpu_mutex); | 45 | DEFINE_MUTEX(ps3_gpu_mutex); |
46 | EXPORT_SYMBOL_GPL(ps3_gpu_mutex); | 46 | EXPORT_SYMBOL_GPL(ps3_gpu_mutex); |
47 | 47 | ||
48 | #if !defined(CONFIG_SMP) | ||
49 | static void smp_send_stop(void) {} | ||
50 | #endif | ||
51 | |||
52 | static union ps3_firmware_version ps3_firmware_version; | 48 | static union ps3_firmware_version ps3_firmware_version; |
53 | 49 | ||
54 | void ps3_get_firmware_version(union ps3_firmware_version *v) | 50 | void ps3_get_firmware_version(union ps3_firmware_version *v) |
diff --git a/arch/powerpc/sysdev/fsl_rio.c b/arch/powerpc/sysdev/fsl_rio.c index a0fa4ebb39c6..abdb124e1e2f 100644 --- a/arch/powerpc/sysdev/fsl_rio.c +++ b/arch/powerpc/sysdev/fsl_rio.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/types.h> | 18 | #include <linux/types.h> |
19 | #include <linux/dma-mapping.h> | 19 | #include <linux/dma-mapping.h> |
20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
21 | #include <linux/device.h> | ||
21 | #include <linux/rio.h> | 22 | #include <linux/rio.h> |
22 | #include <linux/rio_drv.h> | 23 | #include <linux/rio_drv.h> |
23 | #include <linux/of_platform.h> | 24 | #include <linux/of_platform.h> |
@@ -159,6 +160,7 @@ struct rio_msg_rx_ring { | |||
159 | }; | 160 | }; |
160 | 161 | ||
161 | struct rio_priv { | 162 | struct rio_priv { |
163 | struct device *dev; | ||
162 | void __iomem *regs_win; | 164 | void __iomem *regs_win; |
163 | struct rio_atmu_regs __iomem *atmu_regs; | 165 | struct rio_atmu_regs __iomem *atmu_regs; |
164 | struct rio_atmu_regs __iomem *maint_atmu_regs; | 166 | struct rio_atmu_regs __iomem *maint_atmu_regs; |
@@ -484,13 +486,13 @@ int rio_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entr | |||
484 | 486 | ||
485 | for (i = 0; i < priv->msg_tx_ring.size; i++) { | 487 | for (i = 0; i < priv->msg_tx_ring.size; i++) { |
486 | priv->msg_tx_ring.virt_buffer[i] = | 488 | priv->msg_tx_ring.virt_buffer[i] = |
487 | dma_alloc_coherent(NULL, RIO_MSG_BUFFER_SIZE, | 489 | dma_alloc_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, |
488 | &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL); | 490 | &priv->msg_tx_ring.phys_buffer[i], GFP_KERNEL); |
489 | if (!priv->msg_tx_ring.virt_buffer[i]) { | 491 | if (!priv->msg_tx_ring.virt_buffer[i]) { |
490 | rc = -ENOMEM; | 492 | rc = -ENOMEM; |
491 | for (j = 0; j < priv->msg_tx_ring.size; j++) | 493 | for (j = 0; j < priv->msg_tx_ring.size; j++) |
492 | if (priv->msg_tx_ring.virt_buffer[j]) | 494 | if (priv->msg_tx_ring.virt_buffer[j]) |
493 | dma_free_coherent(NULL, | 495 | dma_free_coherent(priv->dev, |
494 | RIO_MSG_BUFFER_SIZE, | 496 | RIO_MSG_BUFFER_SIZE, |
495 | priv->msg_tx_ring. | 497 | priv->msg_tx_ring. |
496 | virt_buffer[j], | 498 | virt_buffer[j], |
@@ -501,7 +503,7 @@ int rio_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entr | |||
501 | } | 503 | } |
502 | 504 | ||
503 | /* Initialize outbound message descriptor ring */ | 505 | /* Initialize outbound message descriptor ring */ |
504 | priv->msg_tx_ring.virt = dma_alloc_coherent(NULL, | 506 | priv->msg_tx_ring.virt = dma_alloc_coherent(priv->dev, |
505 | priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, | 507 | priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, |
506 | &priv->msg_tx_ring.phys, GFP_KERNEL); | 508 | &priv->msg_tx_ring.phys, GFP_KERNEL); |
507 | if (!priv->msg_tx_ring.virt) { | 509 | if (!priv->msg_tx_ring.virt) { |
@@ -549,12 +551,13 @@ int rio_open_outb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entr | |||
549 | return rc; | 551 | return rc; |
550 | 552 | ||
551 | out_irq: | 553 | out_irq: |
552 | dma_free_coherent(NULL, priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, | 554 | dma_free_coherent(priv->dev, |
555 | priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, | ||
553 | priv->msg_tx_ring.virt, priv->msg_tx_ring.phys); | 556 | priv->msg_tx_ring.virt, priv->msg_tx_ring.phys); |
554 | 557 | ||
555 | out_dma: | 558 | out_dma: |
556 | for (i = 0; i < priv->msg_tx_ring.size; i++) | 559 | for (i = 0; i < priv->msg_tx_ring.size; i++) |
557 | dma_free_coherent(NULL, RIO_MSG_BUFFER_SIZE, | 560 | dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, |
558 | priv->msg_tx_ring.virt_buffer[i], | 561 | priv->msg_tx_ring.virt_buffer[i], |
559 | priv->msg_tx_ring.phys_buffer[i]); | 562 | priv->msg_tx_ring.phys_buffer[i]); |
560 | 563 | ||
@@ -576,7 +579,8 @@ void rio_close_outb_mbox(struct rio_mport *mport, int mbox) | |||
576 | out_be32(&priv->msg_regs->omr, 0); | 579 | out_be32(&priv->msg_regs->omr, 0); |
577 | 580 | ||
578 | /* Free ring */ | 581 | /* Free ring */ |
579 | dma_free_coherent(NULL, priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, | 582 | dma_free_coherent(priv->dev, |
583 | priv->msg_tx_ring.size * RIO_MSG_DESC_SIZE, | ||
580 | priv->msg_tx_ring.virt, priv->msg_tx_ring.phys); | 584 | priv->msg_tx_ring.virt, priv->msg_tx_ring.phys); |
581 | 585 | ||
582 | /* Free interrupt */ | 586 | /* Free interrupt */ |
@@ -654,7 +658,7 @@ int rio_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entri | |||
654 | priv->msg_rx_ring.virt_buffer[i] = NULL; | 658 | priv->msg_rx_ring.virt_buffer[i] = NULL; |
655 | 659 | ||
656 | /* Initialize inbound message ring */ | 660 | /* Initialize inbound message ring */ |
657 | priv->msg_rx_ring.virt = dma_alloc_coherent(NULL, | 661 | priv->msg_rx_ring.virt = dma_alloc_coherent(priv->dev, |
658 | priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE, | 662 | priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE, |
659 | &priv->msg_rx_ring.phys, GFP_KERNEL); | 663 | &priv->msg_rx_ring.phys, GFP_KERNEL); |
660 | if (!priv->msg_rx_ring.virt) { | 664 | if (!priv->msg_rx_ring.virt) { |
@@ -673,7 +677,7 @@ int rio_open_inb_mbox(struct rio_mport *mport, void *dev_id, int mbox, int entri | |||
673 | rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0, | 677 | rc = request_irq(IRQ_RIO_RX(mport), fsl_rio_rx_handler, 0, |
674 | "msg_rx", (void *)mport); | 678 | "msg_rx", (void *)mport); |
675 | if (rc < 0) { | 679 | if (rc < 0) { |
676 | dma_free_coherent(NULL, RIO_MSG_BUFFER_SIZE, | 680 | dma_free_coherent(priv->dev, RIO_MSG_BUFFER_SIZE, |
677 | priv->msg_tx_ring.virt_buffer[i], | 681 | priv->msg_tx_ring.virt_buffer[i], |
678 | priv->msg_tx_ring.phys_buffer[i]); | 682 | priv->msg_tx_ring.phys_buffer[i]); |
679 | goto out; | 683 | goto out; |
@@ -713,7 +717,7 @@ void rio_close_inb_mbox(struct rio_mport *mport, int mbox) | |||
713 | out_be32(&priv->msg_regs->imr, 0); | 717 | out_be32(&priv->msg_regs->imr, 0); |
714 | 718 | ||
715 | /* Free ring */ | 719 | /* Free ring */ |
716 | dma_free_coherent(NULL, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE, | 720 | dma_free_coherent(priv->dev, priv->msg_rx_ring.size * RIO_MAX_MSG_SIZE, |
717 | priv->msg_rx_ring.virt, priv->msg_rx_ring.phys); | 721 | priv->msg_rx_ring.virt, priv->msg_rx_ring.phys); |
718 | 722 | ||
719 | /* Free interrupt */ | 723 | /* Free interrupt */ |
@@ -890,7 +894,7 @@ static int fsl_rio_doorbell_init(struct rio_mport *mport) | |||
890 | } | 894 | } |
891 | 895 | ||
892 | /* Initialize inbound doorbells */ | 896 | /* Initialize inbound doorbells */ |
893 | priv->dbell_ring.virt = dma_alloc_coherent(NULL, 512 * | 897 | priv->dbell_ring.virt = dma_alloc_coherent(priv->dev, 512 * |
894 | DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL); | 898 | DOORBELL_MESSAGE_SIZE, &priv->dbell_ring.phys, GFP_KERNEL); |
895 | if (!priv->dbell_ring.virt) { | 899 | if (!priv->dbell_ring.virt) { |
896 | printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n"); | 900 | printk(KERN_ERR "RIO: unable allocate inbound doorbell ring\n"); |
@@ -911,7 +915,7 @@ static int fsl_rio_doorbell_init(struct rio_mport *mport) | |||
911 | "dbell_rx", (void *)mport); | 915 | "dbell_rx", (void *)mport); |
912 | if (rc < 0) { | 916 | if (rc < 0) { |
913 | iounmap(priv->dbell_win); | 917 | iounmap(priv->dbell_win); |
914 | dma_free_coherent(NULL, 512 * DOORBELL_MESSAGE_SIZE, | 918 | dma_free_coherent(priv->dev, 512 * DOORBELL_MESSAGE_SIZE, |
915 | priv->dbell_ring.virt, priv->dbell_ring.phys); | 919 | priv->dbell_ring.virt, priv->dbell_ring.phys); |
916 | printk(KERN_ERR | 920 | printk(KERN_ERR |
917 | "MPC85xx RIO: unable to request inbound doorbell irq"); | 921 | "MPC85xx RIO: unable to request inbound doorbell irq"); |
@@ -1087,6 +1091,8 @@ int fsl_rio_setup(struct of_device *dev) | |||
1087 | rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0); | 1091 | rio_init_mbox_res(&port->riores[RIO_OUTB_MBOX_RESOURCE], 0, 0); |
1088 | strcpy(port->name, "RIO0 mport"); | 1092 | strcpy(port->name, "RIO0 mport"); |
1089 | 1093 | ||
1094 | priv->dev = &dev->dev; | ||
1095 | |||
1090 | port->ops = ops; | 1096 | port->ops = ops; |
1091 | port->host_deviceid = fsl_rio_get_hdid(port->id); | 1097 | port->host_deviceid = fsl_rio_get_hdid(port->id); |
1092 | 1098 | ||
diff --git a/arch/s390/appldata/appldata_base.c b/arch/s390/appldata/appldata_base.c index aeb3cff95f63..1dfc7100c7ee 100644 --- a/arch/s390/appldata/appldata_base.c +++ b/arch/s390/appldata/appldata_base.c | |||
@@ -98,7 +98,7 @@ static DECLARE_WORK(appldata_work, appldata_work_fn); | |||
98 | /* | 98 | /* |
99 | * Ops list | 99 | * Ops list |
100 | */ | 100 | */ |
101 | static DEFINE_SPINLOCK(appldata_ops_lock); | 101 | static DEFINE_MUTEX(appldata_ops_mutex); |
102 | static LIST_HEAD(appldata_ops_list); | 102 | static LIST_HEAD(appldata_ops_list); |
103 | 103 | ||
104 | 104 | ||
@@ -129,14 +129,14 @@ static void appldata_work_fn(struct work_struct *work) | |||
129 | 129 | ||
130 | i = 0; | 130 | i = 0; |
131 | get_online_cpus(); | 131 | get_online_cpus(); |
132 | spin_lock(&appldata_ops_lock); | 132 | mutex_lock(&appldata_ops_mutex); |
133 | list_for_each(lh, &appldata_ops_list) { | 133 | list_for_each(lh, &appldata_ops_list) { |
134 | ops = list_entry(lh, struct appldata_ops, list); | 134 | ops = list_entry(lh, struct appldata_ops, list); |
135 | if (ops->active == 1) { | 135 | if (ops->active == 1) { |
136 | ops->callback(ops->data); | 136 | ops->callback(ops->data); |
137 | } | 137 | } |
138 | } | 138 | } |
139 | spin_unlock(&appldata_ops_lock); | 139 | mutex_unlock(&appldata_ops_mutex); |
140 | put_online_cpus(); | 140 | put_online_cpus(); |
141 | } | 141 | } |
142 | 142 | ||
@@ -338,7 +338,7 @@ appldata_generic_handler(ctl_table *ctl, int write, struct file *filp, | |||
338 | struct list_head *lh; | 338 | struct list_head *lh; |
339 | 339 | ||
340 | found = 0; | 340 | found = 0; |
341 | spin_lock(&appldata_ops_lock); | 341 | mutex_lock(&appldata_ops_mutex); |
342 | list_for_each(lh, &appldata_ops_list) { | 342 | list_for_each(lh, &appldata_ops_list) { |
343 | tmp_ops = list_entry(lh, struct appldata_ops, list); | 343 | tmp_ops = list_entry(lh, struct appldata_ops, list); |
344 | if (&tmp_ops->ctl_table[2] == ctl) { | 344 | if (&tmp_ops->ctl_table[2] == ctl) { |
@@ -346,15 +346,15 @@ appldata_generic_handler(ctl_table *ctl, int write, struct file *filp, | |||
346 | } | 346 | } |
347 | } | 347 | } |
348 | if (!found) { | 348 | if (!found) { |
349 | spin_unlock(&appldata_ops_lock); | 349 | mutex_unlock(&appldata_ops_mutex); |
350 | return -ENODEV; | 350 | return -ENODEV; |
351 | } | 351 | } |
352 | ops = ctl->data; | 352 | ops = ctl->data; |
353 | if (!try_module_get(ops->owner)) { // protect this function | 353 | if (!try_module_get(ops->owner)) { // protect this function |
354 | spin_unlock(&appldata_ops_lock); | 354 | mutex_unlock(&appldata_ops_mutex); |
355 | return -ENODEV; | 355 | return -ENODEV; |
356 | } | 356 | } |
357 | spin_unlock(&appldata_ops_lock); | 357 | mutex_unlock(&appldata_ops_mutex); |
358 | 358 | ||
359 | if (!*lenp || *ppos) { | 359 | if (!*lenp || *ppos) { |
360 | *lenp = 0; | 360 | *lenp = 0; |
@@ -378,11 +378,11 @@ appldata_generic_handler(ctl_table *ctl, int write, struct file *filp, | |||
378 | return -EFAULT; | 378 | return -EFAULT; |
379 | } | 379 | } |
380 | 380 | ||
381 | spin_lock(&appldata_ops_lock); | 381 | mutex_lock(&appldata_ops_mutex); |
382 | if ((buf[0] == '1') && (ops->active == 0)) { | 382 | if ((buf[0] == '1') && (ops->active == 0)) { |
383 | // protect work queue callback | 383 | // protect work queue callback |
384 | if (!try_module_get(ops->owner)) { | 384 | if (!try_module_get(ops->owner)) { |
385 | spin_unlock(&appldata_ops_lock); | 385 | mutex_unlock(&appldata_ops_mutex); |
386 | module_put(ops->owner); | 386 | module_put(ops->owner); |
387 | return -ENODEV; | 387 | return -ENODEV; |
388 | } | 388 | } |
@@ -407,7 +407,7 @@ appldata_generic_handler(ctl_table *ctl, int write, struct file *filp, | |||
407 | "failed with rc=%d\n", ops->name, rc); | 407 | "failed with rc=%d\n", ops->name, rc); |
408 | module_put(ops->owner); | 408 | module_put(ops->owner); |
409 | } | 409 | } |
410 | spin_unlock(&appldata_ops_lock); | 410 | mutex_unlock(&appldata_ops_mutex); |
411 | out: | 411 | out: |
412 | *lenp = len; | 412 | *lenp = len; |
413 | *ppos += len; | 413 | *ppos += len; |
@@ -433,9 +433,9 @@ int appldata_register_ops(struct appldata_ops *ops) | |||
433 | if (!ops->ctl_table) | 433 | if (!ops->ctl_table) |
434 | return -ENOMEM; | 434 | return -ENOMEM; |
435 | 435 | ||
436 | spin_lock(&appldata_ops_lock); | 436 | mutex_lock(&appldata_ops_mutex); |
437 | list_add(&ops->list, &appldata_ops_list); | 437 | list_add(&ops->list, &appldata_ops_list); |
438 | spin_unlock(&appldata_ops_lock); | 438 | mutex_unlock(&appldata_ops_mutex); |
439 | 439 | ||
440 | ops->ctl_table[0].procname = appldata_proc_name; | 440 | ops->ctl_table[0].procname = appldata_proc_name; |
441 | ops->ctl_table[0].maxlen = 0; | 441 | ops->ctl_table[0].maxlen = 0; |
@@ -452,9 +452,9 @@ int appldata_register_ops(struct appldata_ops *ops) | |||
452 | goto out; | 452 | goto out; |
453 | return 0; | 453 | return 0; |
454 | out: | 454 | out: |
455 | spin_lock(&appldata_ops_lock); | 455 | mutex_lock(&appldata_ops_mutex); |
456 | list_del(&ops->list); | 456 | list_del(&ops->list); |
457 | spin_unlock(&appldata_ops_lock); | 457 | mutex_unlock(&appldata_ops_mutex); |
458 | kfree(ops->ctl_table); | 458 | kfree(ops->ctl_table); |
459 | return -ENOMEM; | 459 | return -ENOMEM; |
460 | } | 460 | } |
@@ -466,9 +466,9 @@ out: | |||
466 | */ | 466 | */ |
467 | void appldata_unregister_ops(struct appldata_ops *ops) | 467 | void appldata_unregister_ops(struct appldata_ops *ops) |
468 | { | 468 | { |
469 | spin_lock(&appldata_ops_lock); | 469 | mutex_lock(&appldata_ops_mutex); |
470 | list_del(&ops->list); | 470 | list_del(&ops->list); |
471 | spin_unlock(&appldata_ops_lock); | 471 | mutex_unlock(&appldata_ops_mutex); |
472 | unregister_sysctl_table(ops->sysctl_header); | 472 | unregister_sysctl_table(ops->sysctl_header); |
473 | kfree(ops->ctl_table); | 473 | kfree(ops->ctl_table); |
474 | } | 474 | } |
diff --git a/arch/s390/appldata/appldata_mem.c b/arch/s390/appldata/appldata_mem.c index 3ed56b7d1b2f..4188cbe63a54 100644 --- a/arch/s390/appldata/appldata_mem.c +++ b/arch/s390/appldata/appldata_mem.c | |||
@@ -78,7 +78,7 @@ static void appldata_get_mem_data(void *data) | |||
78 | { | 78 | { |
79 | /* | 79 | /* |
80 | * don't put large structures on the stack, we are | 80 | * don't put large structures on the stack, we are |
81 | * serialized through the appldata_ops_lock and can use static | 81 | * serialized through the appldata_ops_mutex and can use static |
82 | */ | 82 | */ |
83 | static struct sysinfo val; | 83 | static struct sysinfo val; |
84 | unsigned long ev[NR_VM_EVENT_ITEMS]; | 84 | unsigned long ev[NR_VM_EVENT_ITEMS]; |
diff --git a/arch/s390/defconfig b/arch/s390/defconfig index 31e809c77790..d401d56c255f 100644 --- a/arch/s390/defconfig +++ b/arch/s390/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.29-rc4 | 3 | # Linux kernel version: 2.6.30-rc3 |
4 | # Wed Feb 11 10:07:16 2009 | 4 | # Thu Apr 23 09:29:52 2009 |
5 | # | 5 | # |
6 | CONFIG_SCHED_MC=y | 6 | CONFIG_SCHED_MC=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -22,6 +22,7 @@ CONFIG_NO_DMA=y | |||
22 | CONFIG_GENERIC_LOCKBREAK=y | 22 | CONFIG_GENERIC_LOCKBREAK=y |
23 | CONFIG_PGSTE=y | 23 | CONFIG_PGSTE=y |
24 | CONFIG_VIRT_CPU_ACCOUNTING=y | 24 | CONFIG_VIRT_CPU_ACCOUNTING=y |
25 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
25 | CONFIG_S390=y | 26 | CONFIG_S390=y |
26 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
27 | 28 | ||
@@ -37,6 +38,7 @@ CONFIG_SWAP=y | |||
37 | CONFIG_SYSVIPC=y | 38 | CONFIG_SYSVIPC=y |
38 | CONFIG_SYSVIPC_SYSCTL=y | 39 | CONFIG_SYSVIPC_SYSCTL=y |
39 | CONFIG_POSIX_MQUEUE=y | 40 | CONFIG_POSIX_MQUEUE=y |
41 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
40 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
41 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
42 | CONFIG_AUDIT=y | 44 | CONFIG_AUDIT=y |
@@ -77,21 +79,24 @@ CONFIG_IPC_NS=y | |||
77 | # CONFIG_NET_NS is not set | 79 | # CONFIG_NET_NS is not set |
78 | CONFIG_BLK_DEV_INITRD=y | 80 | CONFIG_BLK_DEV_INITRD=y |
79 | CONFIG_INITRAMFS_SOURCE="" | 81 | CONFIG_INITRAMFS_SOURCE="" |
82 | CONFIG_RD_GZIP=y | ||
83 | CONFIG_RD_BZIP2=y | ||
84 | CONFIG_RD_LZMA=y | ||
80 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 85 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
81 | CONFIG_SYSCTL=y | 86 | CONFIG_SYSCTL=y |
87 | CONFIG_ANON_INODES=y | ||
82 | # CONFIG_EMBEDDED is not set | 88 | # CONFIG_EMBEDDED is not set |
83 | CONFIG_SYSCTL_SYSCALL=y | 89 | CONFIG_SYSCTL_SYSCALL=y |
84 | CONFIG_KALLSYMS=y | 90 | CONFIG_KALLSYMS=y |
85 | # CONFIG_KALLSYMS_ALL is not set | 91 | # CONFIG_KALLSYMS_ALL is not set |
86 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 92 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
93 | # CONFIG_STRIP_ASM_SYMS is not set | ||
87 | CONFIG_HOTPLUG=y | 94 | CONFIG_HOTPLUG=y |
88 | CONFIG_PRINTK=y | 95 | CONFIG_PRINTK=y |
89 | CONFIG_BUG=y | 96 | CONFIG_BUG=y |
90 | CONFIG_ELF_CORE=y | 97 | CONFIG_ELF_CORE=y |
91 | # CONFIG_COMPAT_BRK is not set | ||
92 | CONFIG_BASE_FULL=y | 98 | CONFIG_BASE_FULL=y |
93 | CONFIG_FUTEX=y | 99 | CONFIG_FUTEX=y |
94 | CONFIG_ANON_INODES=y | ||
95 | CONFIG_EPOLL=y | 100 | CONFIG_EPOLL=y |
96 | CONFIG_SIGNALFD=y | 101 | CONFIG_SIGNALFD=y |
97 | CONFIG_TIMERFD=y | 102 | CONFIG_TIMERFD=y |
@@ -99,10 +104,12 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 105 | CONFIG_AIO=y |
101 | CONFIG_VM_EVENT_COUNTERS=y | 106 | CONFIG_VM_EVENT_COUNTERS=y |
107 | # CONFIG_COMPAT_BRK is not set | ||
102 | CONFIG_SLAB=y | 108 | CONFIG_SLAB=y |
103 | # CONFIG_SLUB is not set | 109 | # CONFIG_SLUB is not set |
104 | # CONFIG_SLOB is not set | 110 | # CONFIG_SLOB is not set |
105 | # CONFIG_PROFILING is not set | 111 | # CONFIG_PROFILING is not set |
112 | # CONFIG_MARKERS is not set | ||
106 | CONFIG_HAVE_OPROFILE=y | 113 | CONFIG_HAVE_OPROFILE=y |
107 | CONFIG_KPROBES=y | 114 | CONFIG_KPROBES=y |
108 | CONFIG_HAVE_SYSCALL_WRAPPERS=y | 115 | CONFIG_HAVE_SYSCALL_WRAPPERS=y |
@@ -111,6 +118,8 @@ CONFIG_HAVE_KPROBES=y | |||
111 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
112 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
113 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 120 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
121 | CONFIG_HAVE_DEFAULT_NO_SPIN_MUTEXES=y | ||
122 | # CONFIG_SLOW_WORK is not set | ||
114 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 123 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
115 | CONFIG_SLABINFO=y | 124 | CONFIG_SLABINFO=y |
116 | CONFIG_RT_MUTEXES=y | 125 | CONFIG_RT_MUTEXES=y |
@@ -124,7 +133,6 @@ CONFIG_MODVERSIONS=y | |||
124 | CONFIG_INIT_ALL_POSSIBLE=y | 133 | CONFIG_INIT_ALL_POSSIBLE=y |
125 | CONFIG_STOP_MACHINE=y | 134 | CONFIG_STOP_MACHINE=y |
126 | CONFIG_BLOCK=y | 135 | CONFIG_BLOCK=y |
127 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
128 | CONFIG_BLK_DEV_BSG=y | 136 | CONFIG_BLK_DEV_BSG=y |
129 | # CONFIG_BLK_DEV_INTEGRITY is not set | 137 | # CONFIG_BLK_DEV_INTEGRITY is not set |
130 | CONFIG_BLOCK_COMPAT=y | 138 | CONFIG_BLOCK_COMPAT=y |
@@ -211,11 +219,12 @@ CONFIG_ZONE_DMA_FLAG=1 | |||
211 | CONFIG_BOUNCE=y | 219 | CONFIG_BOUNCE=y |
212 | CONFIG_VIRT_TO_BUS=y | 220 | CONFIG_VIRT_TO_BUS=y |
213 | CONFIG_UNEVICTABLE_LRU=y | 221 | CONFIG_UNEVICTABLE_LRU=y |
222 | CONFIG_HAVE_MLOCK=y | ||
223 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
214 | 224 | ||
215 | # | 225 | # |
216 | # I/O subsystem configuration | 226 | # I/O subsystem configuration |
217 | # | 227 | # |
218 | CONFIG_MACHCHK_WARNING=y | ||
219 | CONFIG_QDIO=y | 228 | CONFIG_QDIO=y |
220 | CONFIG_CHSC_SCH=m | 229 | CONFIG_CHSC_SCH=m |
221 | 230 | ||
@@ -247,12 +256,12 @@ CONFIG_S390_HYPFS_FS=y | |||
247 | CONFIG_KEXEC=y | 256 | CONFIG_KEXEC=y |
248 | # CONFIG_ZFCPDUMP is not set | 257 | # CONFIG_ZFCPDUMP is not set |
249 | CONFIG_S390_GUEST=y | 258 | CONFIG_S390_GUEST=y |
259 | CONFIG_SECCOMP=y | ||
250 | CONFIG_NET=y | 260 | CONFIG_NET=y |
251 | 261 | ||
252 | # | 262 | # |
253 | # Networking options | 263 | # Networking options |
254 | # | 264 | # |
255 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
256 | CONFIG_PACKET=y | 265 | CONFIG_PACKET=y |
257 | # CONFIG_PACKET_MMAP is not set | 266 | # CONFIG_PACKET_MMAP is not set |
258 | CONFIG_UNIX=y | 267 | CONFIG_UNIX=y |
@@ -374,6 +383,7 @@ CONFIG_SCTP_HMAC_MD5=y | |||
374 | # CONFIG_LAPB is not set | 383 | # CONFIG_LAPB is not set |
375 | # CONFIG_ECONET is not set | 384 | # CONFIG_ECONET is not set |
376 | # CONFIG_WAN_ROUTER is not set | 385 | # CONFIG_WAN_ROUTER is not set |
386 | # CONFIG_PHONET is not set | ||
377 | CONFIG_NET_SCHED=y | 387 | CONFIG_NET_SCHED=y |
378 | 388 | ||
379 | # | 389 | # |
@@ -438,7 +448,6 @@ CONFIG_CAN_BCM=m | |||
438 | CONFIG_CAN_VCAN=m | 448 | CONFIG_CAN_VCAN=m |
439 | # CONFIG_CAN_DEBUG_DEVICES is not set | 449 | # CONFIG_CAN_DEBUG_DEVICES is not set |
440 | # CONFIG_AF_RXRPC is not set | 450 | # CONFIG_AF_RXRPC is not set |
441 | # CONFIG_PHONET is not set | ||
442 | # CONFIG_WIMAX is not set | 451 | # CONFIG_WIMAX is not set |
443 | # CONFIG_RFKILL is not set | 452 | # CONFIG_RFKILL is not set |
444 | # CONFIG_NET_9P is not set | 453 | # CONFIG_NET_9P is not set |
@@ -537,6 +546,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
537 | CONFIG_SCSI_LOWLEVEL=y | 546 | CONFIG_SCSI_LOWLEVEL=y |
538 | # CONFIG_ISCSI_TCP is not set | 547 | # CONFIG_ISCSI_TCP is not set |
539 | # CONFIG_LIBFC is not set | 548 | # CONFIG_LIBFC is not set |
549 | # CONFIG_LIBFCOE is not set | ||
540 | # CONFIG_SCSI_DEBUG is not set | 550 | # CONFIG_SCSI_DEBUG is not set |
541 | CONFIG_ZFCP=y | 551 | CONFIG_ZFCP=y |
542 | CONFIG_SCSI_DH=m | 552 | CONFIG_SCSI_DH=m |
@@ -544,6 +554,10 @@ CONFIG_SCSI_DH_RDAC=m | |||
544 | CONFIG_SCSI_DH_HP_SW=m | 554 | CONFIG_SCSI_DH_HP_SW=m |
545 | CONFIG_SCSI_DH_EMC=m | 555 | CONFIG_SCSI_DH_EMC=m |
546 | CONFIG_SCSI_DH_ALUA=m | 556 | CONFIG_SCSI_DH_ALUA=m |
557 | CONFIG_SCSI_OSD_INITIATOR=m | ||
558 | CONFIG_SCSI_OSD_ULD=m | ||
559 | CONFIG_SCSI_OSD_DPRINT_SENSE=1 | ||
560 | # CONFIG_SCSI_OSD_DEBUG is not set | ||
547 | CONFIG_MD=y | 561 | CONFIG_MD=y |
548 | CONFIG_BLK_DEV_MD=y | 562 | CONFIG_BLK_DEV_MD=y |
549 | CONFIG_MD_AUTODETECT=y | 563 | CONFIG_MD_AUTODETECT=y |
@@ -564,6 +578,7 @@ CONFIG_DM_MULTIPATH=m | |||
564 | # CONFIG_DM_DELAY is not set | 578 | # CONFIG_DM_DELAY is not set |
565 | # CONFIG_DM_UEVENT is not set | 579 | # CONFIG_DM_UEVENT is not set |
566 | CONFIG_NETDEVICES=y | 580 | CONFIG_NETDEVICES=y |
581 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
567 | # CONFIG_IFB is not set | 582 | # CONFIG_IFB is not set |
568 | CONFIG_DUMMY=m | 583 | CONFIG_DUMMY=m |
569 | CONFIG_BONDING=m | 584 | CONFIG_BONDING=m |
@@ -667,6 +682,7 @@ CONFIG_S390_VMUR=m | |||
667 | # CONFIG_MEMSTICK is not set | 682 | # CONFIG_MEMSTICK is not set |
668 | # CONFIG_NEW_LEDS is not set | 683 | # CONFIG_NEW_LEDS is not set |
669 | CONFIG_ACCESSIBILITY=y | 684 | CONFIG_ACCESSIBILITY=y |
685 | # CONFIG_AUXDISPLAY is not set | ||
670 | # CONFIG_STAGING is not set | 686 | # CONFIG_STAGING is not set |
671 | 687 | ||
672 | # | 688 | # |
@@ -676,6 +692,7 @@ CONFIG_EXT2_FS=y | |||
676 | # CONFIG_EXT2_FS_XATTR is not set | 692 | # CONFIG_EXT2_FS_XATTR is not set |
677 | # CONFIG_EXT2_FS_XIP is not set | 693 | # CONFIG_EXT2_FS_XIP is not set |
678 | CONFIG_EXT3_FS=y | 694 | CONFIG_EXT3_FS=y |
695 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
679 | CONFIG_EXT3_FS_XATTR=y | 696 | CONFIG_EXT3_FS_XATTR=y |
680 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 697 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
681 | # CONFIG_EXT3_FS_SECURITY is not set | 698 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -701,6 +718,11 @@ CONFIG_INOTIFY_USER=y | |||
701 | CONFIG_GENERIC_ACL=y | 718 | CONFIG_GENERIC_ACL=y |
702 | 719 | ||
703 | # | 720 | # |
721 | # Caches | ||
722 | # | ||
723 | # CONFIG_FSCACHE is not set | ||
724 | |||
725 | # | ||
704 | # CD-ROM/DVD Filesystems | 726 | # CD-ROM/DVD Filesystems |
705 | # | 727 | # |
706 | # CONFIG_ISO9660_FS is not set | 728 | # CONFIG_ISO9660_FS is not set |
@@ -744,6 +766,8 @@ CONFIG_MISC_FILESYSTEMS=y | |||
744 | # CONFIG_ROMFS_FS is not set | 766 | # CONFIG_ROMFS_FS is not set |
745 | # CONFIG_SYSV_FS is not set | 767 | # CONFIG_SYSV_FS is not set |
746 | # CONFIG_UFS_FS is not set | 768 | # CONFIG_UFS_FS is not set |
769 | # CONFIG_EXOFS_FS is not set | ||
770 | # CONFIG_NILFS2_FS is not set | ||
747 | CONFIG_NETWORK_FILESYSTEMS=y | 771 | CONFIG_NETWORK_FILESYSTEMS=y |
748 | CONFIG_NFS_FS=y | 772 | CONFIG_NFS_FS=y |
749 | CONFIG_NFS_V3=y | 773 | CONFIG_NFS_V3=y |
@@ -758,7 +782,6 @@ CONFIG_LOCKD_V4=y | |||
758 | CONFIG_EXPORTFS=y | 782 | CONFIG_EXPORTFS=y |
759 | CONFIG_NFS_COMMON=y | 783 | CONFIG_NFS_COMMON=y |
760 | CONFIG_SUNRPC=y | 784 | CONFIG_SUNRPC=y |
761 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
762 | # CONFIG_RPCSEC_GSS_KRB5 is not set | 785 | # CONFIG_RPCSEC_GSS_KRB5 is not set |
763 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 786 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
764 | # CONFIG_SMB_FS is not set | 787 | # CONFIG_SMB_FS is not set |
@@ -806,6 +829,7 @@ CONFIG_MAGIC_SYSRQ=y | |||
806 | CONFIG_DEBUG_FS=y | 829 | CONFIG_DEBUG_FS=y |
807 | # CONFIG_HEADERS_CHECK is not set | 830 | # CONFIG_HEADERS_CHECK is not set |
808 | CONFIG_DEBUG_KERNEL=y | 831 | CONFIG_DEBUG_KERNEL=y |
832 | # CONFIG_DETECT_HUNG_TASK is not set | ||
809 | # CONFIG_SCHED_DEBUG is not set | 833 | # CONFIG_SCHED_DEBUG is not set |
810 | # CONFIG_SCHEDSTATS is not set | 834 | # CONFIG_SCHEDSTATS is not set |
811 | # CONFIG_TIMER_STATS is not set | 835 | # CONFIG_TIMER_STATS is not set |
@@ -830,7 +854,6 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
830 | # CONFIG_DEBUG_LIST is not set | 854 | # CONFIG_DEBUG_LIST is not set |
831 | # CONFIG_DEBUG_SG is not set | 855 | # CONFIG_DEBUG_SG is not set |
832 | # CONFIG_DEBUG_NOTIFIERS is not set | 856 | # CONFIG_DEBUG_NOTIFIERS is not set |
833 | # CONFIG_FRAME_POINTER is not set | ||
834 | # CONFIG_RCU_TORTURE_TEST is not set | 857 | # CONFIG_RCU_TORTURE_TEST is not set |
835 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 858 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
836 | # CONFIG_KPROBES_SANITY_TEST is not set | 859 | # CONFIG_KPROBES_SANITY_TEST is not set |
@@ -840,7 +863,9 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
840 | # CONFIG_FAULT_INJECTION is not set | 863 | # CONFIG_FAULT_INJECTION is not set |
841 | # CONFIG_LATENCYTOP is not set | 864 | # CONFIG_LATENCYTOP is not set |
842 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 865 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
866 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
843 | CONFIG_HAVE_FUNCTION_TRACER=y | 867 | CONFIG_HAVE_FUNCTION_TRACER=y |
868 | CONFIG_TRACING_SUPPORT=y | ||
844 | 869 | ||
845 | # | 870 | # |
846 | # Tracers | 871 | # Tracers |
@@ -850,14 +875,17 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
850 | # CONFIG_PREEMPT_TRACER is not set | 875 | # CONFIG_PREEMPT_TRACER is not set |
851 | # CONFIG_SCHED_TRACER is not set | 876 | # CONFIG_SCHED_TRACER is not set |
852 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 877 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
878 | # CONFIG_EVENT_TRACER is not set | ||
853 | # CONFIG_BOOT_TRACER is not set | 879 | # CONFIG_BOOT_TRACER is not set |
854 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 880 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
855 | # CONFIG_STACK_TRACER is not set | 881 | # CONFIG_STACK_TRACER is not set |
856 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 882 | # CONFIG_KMEMTRACE is not set |
883 | # CONFIG_WORKQUEUE_TRACER is not set | ||
884 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
885 | # CONFIG_DYNAMIC_DEBUG is not set | ||
857 | CONFIG_SAMPLES=y | 886 | CONFIG_SAMPLES=y |
858 | # CONFIG_SAMPLE_KOBJECT is not set | 887 | # CONFIG_SAMPLE_KOBJECT is not set |
859 | # CONFIG_SAMPLE_KPROBES is not set | 888 | # CONFIG_SAMPLE_KPROBES is not set |
860 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
861 | 889 | ||
862 | # | 890 | # |
863 | # Security options | 891 | # Security options |
@@ -882,10 +910,12 @@ CONFIG_CRYPTO_HASH=m | |||
882 | CONFIG_CRYPTO_HASH2=y | 910 | CONFIG_CRYPTO_HASH2=y |
883 | CONFIG_CRYPTO_RNG=m | 911 | CONFIG_CRYPTO_RNG=m |
884 | CONFIG_CRYPTO_RNG2=y | 912 | CONFIG_CRYPTO_RNG2=y |
913 | CONFIG_CRYPTO_PCOMP=y | ||
885 | CONFIG_CRYPTO_MANAGER=y | 914 | CONFIG_CRYPTO_MANAGER=y |
886 | CONFIG_CRYPTO_MANAGER2=y | 915 | CONFIG_CRYPTO_MANAGER2=y |
887 | CONFIG_CRYPTO_GF128MUL=m | 916 | CONFIG_CRYPTO_GF128MUL=m |
888 | # CONFIG_CRYPTO_NULL is not set | 917 | # CONFIG_CRYPTO_NULL is not set |
918 | CONFIG_CRYPTO_WORKQUEUE=y | ||
889 | # CONFIG_CRYPTO_CRYPTD is not set | 919 | # CONFIG_CRYPTO_CRYPTD is not set |
890 | CONFIG_CRYPTO_AUTHENC=m | 920 | CONFIG_CRYPTO_AUTHENC=m |
891 | # CONFIG_CRYPTO_TEST is not set | 921 | # CONFIG_CRYPTO_TEST is not set |
@@ -954,6 +984,7 @@ CONFIG_CRYPTO_SEED=m | |||
954 | # Compression | 984 | # Compression |
955 | # | 985 | # |
956 | # CONFIG_CRYPTO_DEFLATE is not set | 986 | # CONFIG_CRYPTO_DEFLATE is not set |
987 | CONFIG_CRYPTO_ZLIB=m | ||
957 | CONFIG_CRYPTO_LZO=m | 988 | CONFIG_CRYPTO_LZO=m |
958 | 989 | ||
959 | # | 990 | # |
@@ -969,6 +1000,7 @@ CONFIG_CRYPTO_SHA512_S390=m | |||
969 | # CONFIG_CRYPTO_DES_S390 is not set | 1000 | # CONFIG_CRYPTO_DES_S390 is not set |
970 | # CONFIG_CRYPTO_AES_S390 is not set | 1001 | # CONFIG_CRYPTO_AES_S390 is not set |
971 | CONFIG_S390_PRNG=m | 1002 | CONFIG_S390_PRNG=m |
1003 | # CONFIG_BINARY_PRINTF is not set | ||
972 | 1004 | ||
973 | # | 1005 | # |
974 | # Library routines | 1006 | # Library routines |
@@ -982,9 +1014,14 @@ CONFIG_CRC_T10DIF=y | |||
982 | CONFIG_CRC32=m | 1014 | CONFIG_CRC32=m |
983 | CONFIG_CRC7=m | 1015 | CONFIG_CRC7=m |
984 | CONFIG_LIBCRC32C=m | 1016 | CONFIG_LIBCRC32C=m |
1017 | CONFIG_ZLIB_INFLATE=y | ||
1018 | CONFIG_ZLIB_DEFLATE=m | ||
985 | CONFIG_LZO_COMPRESS=m | 1019 | CONFIG_LZO_COMPRESS=m |
986 | CONFIG_LZO_DECOMPRESS=m | 1020 | CONFIG_LZO_DECOMPRESS=m |
987 | CONFIG_PLIST=y | 1021 | CONFIG_DECOMPRESS_GZIP=y |
1022 | CONFIG_DECOMPRESS_BZIP2=y | ||
1023 | CONFIG_DECOMPRESS_LZMA=y | ||
1024 | CONFIG_NLATTR=y | ||
988 | CONFIG_HAVE_KVM=y | 1025 | CONFIG_HAVE_KVM=y |
989 | CONFIG_VIRTUALIZATION=y | 1026 | CONFIG_VIRTUALIZATION=y |
990 | CONFIG_KVM=m | 1027 | CONFIG_KVM=m |
diff --git a/arch/s390/include/asm/cputime.h b/arch/s390/include/asm/cputime.h index 95b0f7db3c69..941384fbd39c 100644 --- a/arch/s390/include/asm/cputime.h +++ b/arch/s390/include/asm/cputime.h | |||
@@ -174,4 +174,8 @@ cputime64_to_clock_t(cputime64_t cputime) | |||
174 | return __div(cputime, 4096000000ULL / USER_HZ); | 174 | return __div(cputime, 4096000000ULL / USER_HZ); |
175 | } | 175 | } |
176 | 176 | ||
177 | cputime64_t s390_get_idle_time(int cpu); | ||
178 | |||
179 | #define arch_idle_time(cpu) s390_get_idle_time(cpu) | ||
180 | |||
177 | #endif /* _S390_CPUTIME_H */ | 181 | #endif /* _S390_CPUTIME_H */ |
diff --git a/arch/s390/kernel/compat_linux.c b/arch/s390/kernel/compat_linux.c index 6cc87d8c8682..002c70d3cb75 100644 --- a/arch/s390/kernel/compat_linux.c +++ b/arch/s390/kernel/compat_linux.c | |||
@@ -702,20 +702,12 @@ asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename, | |||
702 | struct stat64_emu31 __user* statbuf, int flag) | 702 | struct stat64_emu31 __user* statbuf, int flag) |
703 | { | 703 | { |
704 | struct kstat stat; | 704 | struct kstat stat; |
705 | int error = -EINVAL; | 705 | int error; |
706 | |||
707 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | ||
708 | goto out; | ||
709 | |||
710 | if (flag & AT_SYMLINK_NOFOLLOW) | ||
711 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
712 | else | ||
713 | error = vfs_stat_fd(dfd, filename, &stat); | ||
714 | 706 | ||
715 | if (!error) | 707 | error = vfs_fstatat(dfd, filename, &stat, flag); |
716 | error = cp_stat64(statbuf, &stat); | 708 | if (error) |
717 | out: | 709 | return error; |
718 | return error; | 710 | return cp_stat64(statbuf, &stat); |
719 | } | 711 | } |
720 | 712 | ||
721 | /* | 713 | /* |
diff --git a/arch/s390/kernel/head.S b/arch/s390/kernel/head.S index bba14494ee00..22596d70fc2e 100644 --- a/arch/s390/kernel/head.S +++ b/arch/s390/kernel/head.S | |||
@@ -23,6 +23,7 @@ | |||
23 | * | 23 | * |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <linux/init.h> | ||
26 | #include <asm/setup.h> | 27 | #include <asm/setup.h> |
27 | #include <asm/lowcore.h> | 28 | #include <asm/lowcore.h> |
28 | #include <asm/asm-offsets.h> | 29 | #include <asm/asm-offsets.h> |
@@ -35,7 +36,7 @@ | |||
35 | #define ARCH_OFFSET 0 | 36 | #define ARCH_OFFSET 0 |
36 | #endif | 37 | #endif |
37 | 38 | ||
38 | .section ".text.head","ax" | 39 | __HEAD |
39 | #ifndef CONFIG_IPL | 40 | #ifndef CONFIG_IPL |
40 | .org 0 | 41 | .org 0 |
41 | .long 0x00080000,0x80000000+startup # Just a restart PSW | 42 | .long 0x00080000,0x80000000+startup # Just a restart PSW |
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index 6f3711a0eaaa..b8bf4b140065 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/ebcdic.h> | 23 | #include <asm/ebcdic.h> |
24 | #include <asm/reset.h> | 24 | #include <asm/reset.h> |
25 | #include <asm/sclp.h> | 25 | #include <asm/sclp.h> |
26 | #include <asm/sigp.h> | ||
26 | #include <asm/checksum.h> | 27 | #include <asm/checksum.h> |
27 | 28 | ||
28 | #define IPL_PARM_BLOCK_VERSION 0 | 29 | #define IPL_PARM_BLOCK_VERSION 0 |
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c index 6ded50dfa75a..ef596d020573 100644 --- a/arch/s390/kernel/time.c +++ b/arch/s390/kernel/time.c | |||
@@ -201,7 +201,7 @@ unsigned long read_persistent_clock(void) | |||
201 | return ts.tv_sec; | 201 | return ts.tv_sec; |
202 | } | 202 | } |
203 | 203 | ||
204 | static cycle_t read_tod_clock(void) | 204 | static cycle_t read_tod_clock(struct clocksource *cs) |
205 | { | 205 | { |
206 | return get_clock(); | 206 | return get_clock(); |
207 | } | 207 | } |
diff --git a/arch/s390/kernel/vmlinux.lds.S b/arch/s390/kernel/vmlinux.lds.S index 7a2063eb88f0..89399b8756c2 100644 --- a/arch/s390/kernel/vmlinux.lds.S +++ b/arch/s390/kernel/vmlinux.lds.S | |||
@@ -29,8 +29,8 @@ SECTIONS | |||
29 | . = 0x00000000; | 29 | . = 0x00000000; |
30 | .text : { | 30 | .text : { |
31 | _text = .; /* Text and read-only data */ | 31 | _text = .; /* Text and read-only data */ |
32 | *(.text.head) | 32 | HEAD_TEXT |
33 | TEXT_TEXT | 33 | TEXT_TEXT |
34 | SCHED_TEXT | 34 | SCHED_TEXT |
35 | LOCK_TEXT | 35 | LOCK_TEXT |
36 | KPROBES_TEXT | 36 | KPROBES_TEXT |
diff --git a/arch/s390/kernel/vtime.c b/arch/s390/kernel/vtime.c index 38ea92ff04f9..c87f59bd8246 100644 --- a/arch/s390/kernel/vtime.c +++ b/arch/s390/kernel/vtime.c | |||
@@ -240,6 +240,22 @@ void vtime_stop_cpu(void) | |||
240 | } | 240 | } |
241 | } | 241 | } |
242 | 242 | ||
243 | cputime64_t s390_get_idle_time(int cpu) | ||
244 | { | ||
245 | struct s390_idle_data *idle; | ||
246 | unsigned long long now, idle_time, idle_enter; | ||
247 | |||
248 | idle = &per_cpu(s390_idle, cpu); | ||
249 | spin_lock(&idle->lock); | ||
250 | now = get_clock(); | ||
251 | idle_time = 0; | ||
252 | idle_enter = idle->idle_enter; | ||
253 | if (idle_enter != 0ULL && idle_enter < now) | ||
254 | idle_time = now - idle_enter; | ||
255 | spin_unlock(&idle->lock); | ||
256 | return idle_time; | ||
257 | } | ||
258 | |||
243 | /* | 259 | /* |
244 | * Sorted add to a list. List is linear searched until first bigger | 260 | * Sorted add to a list. List is linear searched until first bigger |
245 | * element is found. | 261 | * element is found. |
diff --git a/arch/sh/configs/sh7785lcr_defconfig b/arch/sh/configs/sh7785lcr_defconfig index 8a42bbef1f50..e4fac2efc055 100644 --- a/arch/sh/configs/sh7785lcr_defconfig +++ b/arch/sh/configs/sh7785lcr_defconfig | |||
@@ -1,10 +1,11 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.29 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Thu Apr 2 19:15:58 2009 | 4 | # Wed Apr 22 19:17:56 2009 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
8 | # CONFIG_SUPERH64 is not set | ||
8 | CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig" | 9 | CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig" |
9 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 10 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
10 | CONFIG_GENERIC_BUG=y | 11 | CONFIG_GENERIC_BUG=y |
@@ -79,6 +80,7 @@ CONFIG_SYSCTL_SYSCALL=y | |||
79 | CONFIG_KALLSYMS=y | 80 | CONFIG_KALLSYMS=y |
80 | # CONFIG_KALLSYMS_ALL is not set | 81 | # CONFIG_KALLSYMS_ALL is not set |
81 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 82 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
83 | # CONFIG_STRIP_ASM_SYMS is not set | ||
82 | CONFIG_HOTPLUG=y | 84 | CONFIG_HOTPLUG=y |
83 | CONFIG_PRINTK=y | 85 | CONFIG_PRINTK=y |
84 | CONFIG_BUG=y | 86 | CONFIG_BUG=y |
@@ -98,6 +100,7 @@ CONFIG_SLAB=y | |||
98 | # CONFIG_SLUB is not set | 100 | # CONFIG_SLUB is not set |
99 | # CONFIG_SLOB is not set | 101 | # CONFIG_SLOB is not set |
100 | CONFIG_PROFILING=y | 102 | CONFIG_PROFILING=y |
103 | # CONFIG_MARKERS is not set | ||
101 | # CONFIG_OPROFILE is not set | 104 | # CONFIG_OPROFILE is not set |
102 | CONFIG_HAVE_OPROFILE=y | 105 | CONFIG_HAVE_OPROFILE=y |
103 | # CONFIG_KPROBES is not set | 106 | # CONFIG_KPROBES is not set |
@@ -106,6 +109,8 @@ CONFIG_HAVE_KPROBES=y | |||
106 | CONFIG_HAVE_KRETPROBES=y | 109 | CONFIG_HAVE_KRETPROBES=y |
107 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 110 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
108 | CONFIG_HAVE_CLK=y | 111 | CONFIG_HAVE_CLK=y |
112 | CONFIG_HAVE_DMA_API_DEBUG=y | ||
113 | # CONFIG_SLOW_WORK is not set | ||
109 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 114 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
110 | CONFIG_SLABINFO=y | 115 | CONFIG_SLABINFO=y |
111 | CONFIG_RT_MUTEXES=y | 116 | CONFIG_RT_MUTEXES=y |
@@ -118,7 +123,6 @@ CONFIG_MODULE_UNLOAD=y | |||
118 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 123 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
119 | CONFIG_BLOCK=y | 124 | CONFIG_BLOCK=y |
120 | # CONFIG_LBD is not set | 125 | # CONFIG_LBD is not set |
121 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
122 | # CONFIG_BLK_DEV_BSG is not set | 126 | # CONFIG_BLK_DEV_BSG is not set |
123 | # CONFIG_BLK_DEV_INTEGRITY is not set | 127 | # CONFIG_BLK_DEV_INTEGRITY is not set |
124 | 128 | ||
@@ -166,6 +170,7 @@ CONFIG_CPU_SHX2=y | |||
166 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | 170 | # CONFIG_CPU_SUBTYPE_SH7760 is not set |
167 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | 171 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set |
168 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | 172 | # CONFIG_CPU_SUBTYPE_SH7723 is not set |
173 | # CONFIG_CPU_SUBTYPE_SH7724 is not set | ||
169 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | 174 | # CONFIG_CPU_SUBTYPE_SH7763 is not set |
170 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 175 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
171 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 176 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
@@ -175,8 +180,6 @@ CONFIG_CPU_SUBTYPE_SH7785=y | |||
175 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 180 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
176 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 181 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
177 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | 182 | # CONFIG_CPU_SUBTYPE_SH7366 is not set |
178 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
179 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
180 | 183 | ||
181 | # | 184 | # |
182 | # Memory management options | 185 | # Memory management options |
@@ -186,38 +189,31 @@ CONFIG_MMU=y | |||
186 | CONFIG_PAGE_OFFSET=0x80000000 | 189 | CONFIG_PAGE_OFFSET=0x80000000 |
187 | CONFIG_MEMORY_START=0x08000000 | 190 | CONFIG_MEMORY_START=0x08000000 |
188 | CONFIG_MEMORY_SIZE=0x08000000 | 191 | CONFIG_MEMORY_SIZE=0x08000000 |
189 | # CONFIG_29BIT is not set | 192 | CONFIG_29BIT=y |
190 | CONFIG_32BIT=y | 193 | # CONFIG_PMB_ENABLE is not set |
191 | CONFIG_PMB_ENABLE=y | ||
192 | # CONFIG_PMB is not set | ||
193 | CONFIG_PMB_FIXED=y | ||
194 | # CONFIG_X2TLB is not set | 194 | # CONFIG_X2TLB is not set |
195 | CONFIG_VSYSCALL=y | 195 | CONFIG_VSYSCALL=y |
196 | # CONFIG_NUMA is not set | 196 | # CONFIG_NUMA is not set |
197 | CONFIG_ARCH_FLATMEM_ENABLE=y | 197 | CONFIG_ARCH_FLATMEM_ENABLE=y |
198 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 198 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
199 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | 199 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y |
200 | CONFIG_MAX_ACTIVE_REGIONS=2 | 200 | CONFIG_MAX_ACTIVE_REGIONS=1 |
201 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 201 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
202 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | 202 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y |
203 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
204 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | ||
205 | CONFIG_PAGE_SIZE_4KB=y | 203 | CONFIG_PAGE_SIZE_4KB=y |
206 | # CONFIG_PAGE_SIZE_8KB is not set | 204 | # CONFIG_PAGE_SIZE_8KB is not set |
207 | # CONFIG_PAGE_SIZE_16KB is not set | 205 | # CONFIG_PAGE_SIZE_16KB is not set |
208 | # CONFIG_PAGE_SIZE_64KB is not set | 206 | # CONFIG_PAGE_SIZE_64KB is not set |
209 | CONFIG_ENTRY_OFFSET=0x00001000 | 207 | CONFIG_ENTRY_OFFSET=0x00001000 |
210 | CONFIG_SELECT_MEMORY_MODEL=y | 208 | CONFIG_SELECT_MEMORY_MODEL=y |
211 | # CONFIG_FLATMEM_MANUAL is not set | 209 | CONFIG_FLATMEM_MANUAL=y |
212 | # CONFIG_DISCONTIGMEM_MANUAL is not set | 210 | # CONFIG_DISCONTIGMEM_MANUAL is not set |
213 | CONFIG_SPARSEMEM_MANUAL=y | 211 | # CONFIG_SPARSEMEM_MANUAL is not set |
214 | CONFIG_SPARSEMEM=y | 212 | CONFIG_FLATMEM=y |
215 | CONFIG_HAVE_MEMORY_PRESENT=y | 213 | CONFIG_FLAT_NODE_MEM_MAP=y |
216 | CONFIG_SPARSEMEM_STATIC=y | 214 | CONFIG_SPARSEMEM_STATIC=y |
217 | # CONFIG_MEMORY_HOTPLUG is not set | ||
218 | CONFIG_PAGEFLAGS_EXTENDED=y | 215 | CONFIG_PAGEFLAGS_EXTENDED=y |
219 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 216 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
220 | CONFIG_MIGRATION=y | ||
221 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 217 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
222 | CONFIG_ZONE_DMA_FLAG=0 | 218 | CONFIG_ZONE_DMA_FLAG=0 |
223 | CONFIG_NR_QUICK=2 | 219 | CONFIG_NR_QUICK=2 |
@@ -249,6 +245,7 @@ CONFIG_CPU_HAS_FPU=y | |||
249 | # | 245 | # |
250 | # CONFIG_SH_HIGHLANDER is not set | 246 | # CONFIG_SH_HIGHLANDER is not set |
251 | CONFIG_SH_SH7785LCR=y | 247 | CONFIG_SH_SH7785LCR=y |
248 | CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS=y | ||
252 | 249 | ||
253 | # | 250 | # |
254 | # Timer and clock configuration | 251 | # Timer and clock configuration |
@@ -672,6 +669,7 @@ CONFIG_NETDEV_1000=y | |||
672 | # CONFIG_E1000E is not set | 669 | # CONFIG_E1000E is not set |
673 | # CONFIG_IP1000 is not set | 670 | # CONFIG_IP1000 is not set |
674 | # CONFIG_IGB is not set | 671 | # CONFIG_IGB is not set |
672 | # CONFIG_IGBVF is not set | ||
675 | # CONFIG_NS83820 is not set | 673 | # CONFIG_NS83820 is not set |
676 | # CONFIG_HAMACHI is not set | 674 | # CONFIG_HAMACHI is not set |
677 | # CONFIG_YELLOWFIN is not set | 675 | # CONFIG_YELLOWFIN is not set |
@@ -1009,15 +1007,17 @@ CONFIG_USB_HID=y | |||
1009 | # | 1007 | # |
1010 | # Special HID drivers | 1008 | # Special HID drivers |
1011 | # | 1009 | # |
1012 | CONFIG_HID_COMPAT=y | ||
1013 | CONFIG_HID_A4TECH=y | 1010 | CONFIG_HID_A4TECH=y |
1014 | CONFIG_HID_APPLE=y | 1011 | CONFIG_HID_APPLE=y |
1015 | CONFIG_HID_BELKIN=y | 1012 | CONFIG_HID_BELKIN=y |
1016 | CONFIG_HID_CHERRY=y | 1013 | CONFIG_HID_CHERRY=y |
1017 | CONFIG_HID_CHICONY=y | 1014 | CONFIG_HID_CHICONY=y |
1018 | CONFIG_HID_CYPRESS=y | 1015 | CONFIG_HID_CYPRESS=y |
1016 | # CONFIG_DRAGONRISE_FF is not set | ||
1019 | CONFIG_HID_EZKEY=y | 1017 | CONFIG_HID_EZKEY=y |
1018 | # CONFIG_HID_KYE is not set | ||
1020 | CONFIG_HID_GYRATION=y | 1019 | CONFIG_HID_GYRATION=y |
1020 | # CONFIG_HID_KENSINGTON is not set | ||
1021 | CONFIG_HID_LOGITECH=y | 1021 | CONFIG_HID_LOGITECH=y |
1022 | # CONFIG_LOGITECH_FF is not set | 1022 | # CONFIG_LOGITECH_FF is not set |
1023 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1023 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
@@ -1218,6 +1218,7 @@ CONFIG_EXT2_FS=y | |||
1218 | # CONFIG_EXT2_FS_XATTR is not set | 1218 | # CONFIG_EXT2_FS_XATTR is not set |
1219 | # CONFIG_EXT2_FS_XIP is not set | 1219 | # CONFIG_EXT2_FS_XIP is not set |
1220 | CONFIG_EXT3_FS=y | 1220 | CONFIG_EXT3_FS=y |
1221 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1221 | CONFIG_EXT3_FS_XATTR=y | 1222 | CONFIG_EXT3_FS_XATTR=y |
1222 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1223 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1223 | # CONFIG_EXT3_FS_SECURITY is not set | 1224 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1240,6 +1241,11 @@ CONFIG_INOTIFY_USER=y | |||
1240 | # CONFIG_FUSE_FS is not set | 1241 | # CONFIG_FUSE_FS is not set |
1241 | 1242 | ||
1242 | # | 1243 | # |
1244 | # Caches | ||
1245 | # | ||
1246 | # CONFIG_FSCACHE is not set | ||
1247 | |||
1248 | # | ||
1243 | # CD-ROM/DVD Filesystems | 1249 | # CD-ROM/DVD Filesystems |
1244 | # | 1250 | # |
1245 | # CONFIG_ISO9660_FS is not set | 1251 | # CONFIG_ISO9660_FS is not set |
@@ -1289,6 +1295,7 @@ CONFIG_MINIX_FS=y | |||
1289 | # CONFIG_ROMFS_FS is not set | 1295 | # CONFIG_ROMFS_FS is not set |
1290 | # CONFIG_SYSV_FS is not set | 1296 | # CONFIG_SYSV_FS is not set |
1291 | # CONFIG_UFS_FS is not set | 1297 | # CONFIG_UFS_FS is not set |
1298 | # CONFIG_NILFS2_FS is not set | ||
1292 | CONFIG_NETWORK_FILESYSTEMS=y | 1299 | CONFIG_NETWORK_FILESYSTEMS=y |
1293 | CONFIG_NFS_FS=y | 1300 | CONFIG_NFS_FS=y |
1294 | CONFIG_NFS_V3=y | 1301 | CONFIG_NFS_V3=y |
@@ -1377,6 +1384,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1377 | CONFIG_DETECT_SOFTLOCKUP=y | 1384 | CONFIG_DETECT_SOFTLOCKUP=y |
1378 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1385 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1379 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1386 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1387 | CONFIG_DETECT_HUNG_TASK=y | ||
1388 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1389 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1380 | CONFIG_SCHED_DEBUG=y | 1390 | CONFIG_SCHED_DEBUG=y |
1381 | # CONFIG_SCHEDSTATS is not set | 1391 | # CONFIG_SCHEDSTATS is not set |
1382 | # CONFIG_TIMER_STATS is not set | 1392 | # CONFIG_TIMER_STATS is not set |
@@ -1413,6 +1423,7 @@ CONFIG_SYSCTL_SYSCALL_CHECK=y | |||
1413 | CONFIG_HAVE_FUNCTION_TRACER=y | 1423 | CONFIG_HAVE_FUNCTION_TRACER=y |
1414 | CONFIG_HAVE_DYNAMIC_FTRACE=y | 1424 | CONFIG_HAVE_DYNAMIC_FTRACE=y |
1415 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | 1425 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y |
1426 | CONFIG_TRACING_SUPPORT=y | ||
1416 | 1427 | ||
1417 | # | 1428 | # |
1418 | # Tracers | 1429 | # Tracers |
@@ -1422,9 +1433,14 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1422 | # CONFIG_PREEMPT_TRACER is not set | 1433 | # CONFIG_PREEMPT_TRACER is not set |
1423 | # CONFIG_SCHED_TRACER is not set | 1434 | # CONFIG_SCHED_TRACER is not set |
1424 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1435 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1436 | # CONFIG_EVENT_TRACER is not set | ||
1425 | # CONFIG_BOOT_TRACER is not set | 1437 | # CONFIG_BOOT_TRACER is not set |
1426 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1438 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1427 | # CONFIG_STACK_TRACER is not set | 1439 | # CONFIG_STACK_TRACER is not set |
1440 | # CONFIG_KMEMTRACE is not set | ||
1441 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1442 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
1443 | # CONFIG_DMA_API_DEBUG is not set | ||
1428 | # CONFIG_SAMPLES is not set | 1444 | # CONFIG_SAMPLES is not set |
1429 | CONFIG_HAVE_ARCH_KGDB=y | 1445 | CONFIG_HAVE_ARCH_KGDB=y |
1430 | # CONFIG_KGDB is not set | 1446 | # CONFIG_KGDB is not set |
@@ -1542,6 +1558,7 @@ CONFIG_CRYPTO_DES=y | |||
1542 | # | 1558 | # |
1543 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1559 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1544 | # CONFIG_CRYPTO_HW is not set | 1560 | # CONFIG_CRYPTO_HW is not set |
1561 | # CONFIG_BINARY_PRINTF is not set | ||
1545 | 1562 | ||
1546 | # | 1563 | # |
1547 | # Library routines | 1564 | # Library routines |
diff --git a/arch/sh/include/asm/ptrace.h b/arch/sh/include/asm/ptrace.h index d3f6caa936b0..68e20ff9aa9b 100644 --- a/arch/sh/include/asm/ptrace.h +++ b/arch/sh/include/asm/ptrace.h | |||
@@ -9,7 +9,7 @@ | |||
9 | struct pt_regs { | 9 | struct pt_regs { |
10 | unsigned long long pc; | 10 | unsigned long long pc; |
11 | unsigned long long sr; | 11 | unsigned long long sr; |
12 | unsigned long long syscall_nr; | 12 | long long syscall_nr; |
13 | unsigned long long regs[63]; | 13 | unsigned long long regs[63]; |
14 | unsigned long long tregs[8]; | 14 | unsigned long long tregs[8]; |
15 | unsigned long long pad[2]; | 15 | unsigned long long pad[2]; |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c index 0e5d204bc792..406747f07dc0 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7722.c | |||
@@ -256,7 +256,6 @@ static int __init sh7722_devices_setup(void) | |||
256 | { | 256 | { |
257 | clk_always_enable("uram0"); /* URAM */ | 257 | clk_always_enable("uram0"); /* URAM */ |
258 | clk_always_enable("xymem0"); /* XYMEM */ | 258 | clk_always_enable("xymem0"); /* XYMEM */ |
259 | clk_always_enable("rtc0"); /* RTC */ | ||
260 | clk_always_enable("veu0"); /* VEU */ | 259 | clk_always_enable("veu0"); /* VEU */ |
261 | clk_always_enable("vpu0"); /* VPU */ | 260 | clk_always_enable("vpu0"); /* VPU */ |
262 | clk_always_enable("jpu0"); /* JPU */ | 261 | clk_always_enable("jpu0"); /* JPU */ |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7723.c b/arch/sh/kernel/cpu/sh4a/setup-sh7723.c index 5338dacbcfba..a800466b938c 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7723.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7723.c | |||
@@ -267,7 +267,6 @@ static struct platform_device *sh7723_devices[] __initdata = { | |||
267 | static int __init sh7723_devices_setup(void) | 267 | static int __init sh7723_devices_setup(void) |
268 | { | 268 | { |
269 | clk_always_enable("meram0"); /* MERAM */ | 269 | clk_always_enable("meram0"); /* MERAM */ |
270 | clk_always_enable("rtc0"); /* RTC */ | ||
271 | clk_always_enable("veu1"); /* VEU2H1 */ | 270 | clk_always_enable("veu1"); /* VEU2H1 */ |
272 | clk_always_enable("veu0"); /* VEU2H0 */ | 271 | clk_always_enable("veu0"); /* VEU2H0 */ |
273 | clk_always_enable("vpu0"); /* VPU */ | 272 | clk_always_enable("vpu0"); /* VPU */ |
diff --git a/arch/sh/kernel/cpu/sh5/entry.S b/arch/sh/kernel/cpu/sh5/entry.S index e640c63d5811..7e49cb812f8b 100644 --- a/arch/sh/kernel/cpu/sh5/entry.S +++ b/arch/sh/kernel/cpu/sh5/entry.S | |||
@@ -10,6 +10,7 @@ | |||
10 | * for more details. | 10 | * for more details. |
11 | */ | 11 | */ |
12 | #include <linux/errno.h> | 12 | #include <linux/errno.h> |
13 | #include <linux/init.h> | ||
13 | #include <linux/sys.h> | 14 | #include <linux/sys.h> |
14 | #include <cpu/registers.h> | 15 | #include <cpu/registers.h> |
15 | #include <asm/processor.h> | 16 | #include <asm/processor.h> |
@@ -2058,10 +2059,10 @@ asm_uaccess_end: | |||
2058 | 2059 | ||
2059 | 2060 | ||
2060 | /* | 2061 | /* |
2061 | * --- .text.init Section | 2062 | * --- .init.text Section |
2062 | */ | 2063 | */ |
2063 | 2064 | ||
2064 | .section .text.init, "ax" | 2065 | __INIT |
2065 | 2066 | ||
2066 | /* | 2067 | /* |
2067 | * void trap_init (void) | 2068 | * void trap_init (void) |
diff --git a/arch/sh/kernel/head_32.S b/arch/sh/kernel/head_32.S index 788605ff7088..a78be74b8d3e 100644 --- a/arch/sh/kernel/head_32.S +++ b/arch/sh/kernel/head_32.S | |||
@@ -10,6 +10,7 @@ | |||
10 | * | 10 | * |
11 | * Head.S contains the SH exception handlers and startup code. | 11 | * Head.S contains the SH exception handlers and startup code. |
12 | */ | 12 | */ |
13 | #include <linux/init.h> | ||
13 | #include <linux/linkage.h> | 14 | #include <linux/linkage.h> |
14 | #include <asm/thread_info.h> | 15 | #include <asm/thread_info.h> |
15 | 16 | ||
@@ -40,7 +41,7 @@ ENTRY(empty_zero_page) | |||
40 | 1: | 41 | 1: |
41 | .skip PAGE_SIZE - empty_zero_page - 1b | 42 | .skip PAGE_SIZE - empty_zero_page - 1b |
42 | 43 | ||
43 | .section .text.head, "ax" | 44 | __HEAD |
44 | 45 | ||
45 | /* | 46 | /* |
46 | * Condition at the entry of _stext: | 47 | * Condition at the entry of _stext: |
diff --git a/arch/sh/kernel/head_64.S b/arch/sh/kernel/head_64.S index 7ccfb995a398..3ea765844c74 100644 --- a/arch/sh/kernel/head_64.S +++ b/arch/sh/kernel/head_64.S | |||
@@ -8,6 +8,9 @@ | |||
8 | * License. See the file "COPYING" in the main directory of this archive | 8 | * License. See the file "COPYING" in the main directory of this archive |
9 | * for more details. | 9 | * for more details. |
10 | */ | 10 | */ |
11 | |||
12 | #include <linux/init.h> | ||
13 | |||
11 | #include <asm/page.h> | 14 | #include <asm/page.h> |
12 | #include <asm/cache.h> | 15 | #include <asm/cache.h> |
13 | #include <asm/tlb.h> | 16 | #include <asm/tlb.h> |
@@ -110,7 +113,7 @@ empty_bad_pte_table: | |||
110 | fpu_in_use: .quad 0 | 113 | fpu_in_use: .quad 0 |
111 | 114 | ||
112 | 115 | ||
113 | .section .text.head, "ax" | 116 | __HEAD |
114 | .balign L1_CACHE_BYTES | 117 | .balign L1_CACHE_BYTES |
115 | /* | 118 | /* |
116 | * Condition at the entry of __stext: | 119 | * Condition at the entry of __stext: |
diff --git a/arch/sh/kernel/sys_sh.c b/arch/sh/kernel/sys_sh.c index 58dfc02c7af1..e3a7e36639ef 100644 --- a/arch/sh/kernel/sys_sh.c +++ b/arch/sh/kernel/sys_sh.c | |||
@@ -63,6 +63,15 @@ asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, | |||
63 | unsigned long prot, unsigned long flags, | 63 | unsigned long prot, unsigned long flags, |
64 | unsigned long fd, unsigned long pgoff) | 64 | unsigned long fd, unsigned long pgoff) |
65 | { | 65 | { |
66 | /* | ||
67 | * The shift for mmap2 is constant, regardless of PAGE_SIZE | ||
68 | * setting. | ||
69 | */ | ||
70 | if (pgoff & ((1 << (PAGE_SHIFT - 12)) - 1)) | ||
71 | return -EINVAL; | ||
72 | |||
73 | pgoff >>= PAGE_SHIFT - 12; | ||
74 | |||
66 | return do_mmap2(addr, len, prot, flags, fd, pgoff); | 75 | return do_mmap2(addr, len, prot, flags, fd, pgoff); |
67 | } | 76 | } |
68 | 77 | ||
diff --git a/arch/sh/kernel/time_32.c b/arch/sh/kernel/time_32.c index c34e1e0f9b02..1700d2465f6c 100644 --- a/arch/sh/kernel/time_32.c +++ b/arch/sh/kernel/time_32.c | |||
@@ -208,7 +208,7 @@ unsigned long long sched_clock(void) | |||
208 | if (!clocksource_sh.rating) | 208 | if (!clocksource_sh.rating) |
209 | return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ); | 209 | return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ); |
210 | 210 | ||
211 | cycles = clocksource_sh.read(); | 211 | cycles = clocksource_sh.read(&clocksource_sh); |
212 | return cyc2ns(&clocksource_sh, cycles); | 212 | return cyc2ns(&clocksource_sh, cycles); |
213 | } | 213 | } |
214 | #endif | 214 | #endif |
diff --git a/arch/sh/kernel/timers/timer-tmu.c b/arch/sh/kernel/timers/timer-tmu.c index c5d3396f5960..fe8d8930ccb6 100644 --- a/arch/sh/kernel/timers/timer-tmu.c +++ b/arch/sh/kernel/timers/timer-tmu.c | |||
@@ -81,7 +81,7 @@ static int tmu_timer_stop(void) | |||
81 | */ | 81 | */ |
82 | static int tmus_are_scaled; | 82 | static int tmus_are_scaled; |
83 | 83 | ||
84 | static cycle_t tmu_timer_read(void) | 84 | static cycle_t tmu_timer_read(struct clocksource *cs) |
85 | { | 85 | { |
86 | return ((cycle_t)(~_tmu_read(TMU1)))<<tmus_are_scaled; | 86 | return ((cycle_t)(~_tmu_read(TMU1)))<<tmus_are_scaled; |
87 | } | 87 | } |
diff --git a/arch/sh/kernel/vmlinux_32.lds.S b/arch/sh/kernel/vmlinux_32.lds.S index d0b2a715cd14..dd9b2ee1312d 100644 --- a/arch/sh/kernel/vmlinux_32.lds.S +++ b/arch/sh/kernel/vmlinux_32.lds.S | |||
@@ -31,7 +31,7 @@ SECTIONS | |||
31 | } = 0 | 31 | } = 0 |
32 | 32 | ||
33 | .text : { | 33 | .text : { |
34 | *(.text.head) | 34 | HEAD_TEXT |
35 | TEXT_TEXT | 35 | TEXT_TEXT |
36 | SCHED_TEXT | 36 | SCHED_TEXT |
37 | LOCK_TEXT | 37 | LOCK_TEXT |
diff --git a/arch/sh/kernel/vmlinux_64.lds.S b/arch/sh/kernel/vmlinux_64.lds.S index 33fa46451406..69664460c688 100644 --- a/arch/sh/kernel/vmlinux_64.lds.S +++ b/arch/sh/kernel/vmlinux_64.lds.S | |||
@@ -42,7 +42,7 @@ SECTIONS | |||
42 | } = 0 | 42 | } = 0 |
43 | 43 | ||
44 | .text : C_PHYS(.text) { | 44 | .text : C_PHYS(.text) { |
45 | *(.text.head) | 45 | HEAD_TEXT |
46 | TEXT_TEXT | 46 | TEXT_TEXT |
47 | *(.text64) | 47 | *(.text64) |
48 | *(.text..SHmedia32) | 48 | *(.text..SHmedia32) |
diff --git a/arch/sparc/configs/sparc32_defconfig b/arch/sparc/configs/sparc32_defconfig index 09ab46e4c59d..8bcd27af724b 100644 --- a/arch/sparc/configs/sparc32_defconfig +++ b/arch/sparc/configs/sparc32_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.28 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Thu Jan 8 16:45:44 2009 | 4 | # Fri Apr 17 04:04:46 2009 |
5 | # | 5 | # |
6 | # CONFIG_64BIT is not set | 6 | # CONFIG_64BIT is not set |
7 | CONFIG_SPARC=y | 7 | CONFIG_SPARC=y |
@@ -30,17 +30,27 @@ CONFIG_SWAP=y | |||
30 | CONFIG_SYSVIPC=y | 30 | CONFIG_SYSVIPC=y |
31 | CONFIG_SYSVIPC_SYSCTL=y | 31 | CONFIG_SYSVIPC_SYSCTL=y |
32 | CONFIG_POSIX_MQUEUE=y | 32 | CONFIG_POSIX_MQUEUE=y |
33 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
33 | # CONFIG_BSD_PROCESS_ACCT is not set | 34 | # CONFIG_BSD_PROCESS_ACCT is not set |
34 | # CONFIG_TASKSTATS is not set | 35 | # CONFIG_TASKSTATS is not set |
35 | # CONFIG_AUDIT is not set | 36 | # CONFIG_AUDIT is not set |
37 | |||
38 | # | ||
39 | # RCU Subsystem | ||
40 | # | ||
41 | CONFIG_CLASSIC_RCU=y | ||
42 | # CONFIG_TREE_RCU is not set | ||
43 | # CONFIG_PREEMPT_RCU is not set | ||
44 | # CONFIG_TREE_RCU_TRACE is not set | ||
45 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
36 | # CONFIG_IKCONFIG is not set | 46 | # CONFIG_IKCONFIG is not set |
37 | CONFIG_LOG_BUF_SHIFT=14 | 47 | CONFIG_LOG_BUF_SHIFT=14 |
38 | # CONFIG_CGROUPS is not set | ||
39 | CONFIG_GROUP_SCHED=y | 48 | CONFIG_GROUP_SCHED=y |
40 | CONFIG_FAIR_GROUP_SCHED=y | 49 | CONFIG_FAIR_GROUP_SCHED=y |
41 | CONFIG_RT_GROUP_SCHED=y | 50 | CONFIG_RT_GROUP_SCHED=y |
42 | CONFIG_USER_SCHED=y | 51 | CONFIG_USER_SCHED=y |
43 | # CONFIG_CGROUP_SCHED is not set | 52 | # CONFIG_CGROUP_SCHED is not set |
53 | # CONFIG_CGROUPS is not set | ||
44 | CONFIG_SYSFS_DEPRECATED=y | 54 | CONFIG_SYSFS_DEPRECATED=y |
45 | CONFIG_SYSFS_DEPRECATED_V2=y | 55 | CONFIG_SYSFS_DEPRECATED_V2=y |
46 | # CONFIG_RELAY is not set | 56 | # CONFIG_RELAY is not set |
@@ -49,24 +59,28 @@ CONFIG_NAMESPACES=y | |||
49 | # CONFIG_IPC_NS is not set | 59 | # CONFIG_IPC_NS is not set |
50 | # CONFIG_USER_NS is not set | 60 | # CONFIG_USER_NS is not set |
51 | # CONFIG_PID_NS is not set | 61 | # CONFIG_PID_NS is not set |
62 | # CONFIG_NET_NS is not set | ||
52 | CONFIG_BLK_DEV_INITRD=y | 63 | CONFIG_BLK_DEV_INITRD=y |
53 | CONFIG_INITRAMFS_SOURCE="" | 64 | CONFIG_INITRAMFS_SOURCE="" |
65 | CONFIG_RD_GZIP=y | ||
66 | CONFIG_RD_BZIP2=y | ||
67 | CONFIG_RD_LZMA=y | ||
54 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 68 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
55 | CONFIG_SYSCTL=y | 69 | CONFIG_SYSCTL=y |
70 | CONFIG_ANON_INODES=y | ||
56 | # CONFIG_EMBEDDED is not set | 71 | # CONFIG_EMBEDDED is not set |
57 | CONFIG_UID16=y | 72 | CONFIG_UID16=y |
58 | CONFIG_SYSCTL_SYSCALL=y | 73 | CONFIG_SYSCTL_SYSCALL=y |
59 | CONFIG_KALLSYMS=y | 74 | CONFIG_KALLSYMS=y |
60 | # CONFIG_KALLSYMS_ALL is not set | 75 | # CONFIG_KALLSYMS_ALL is not set |
61 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 76 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
77 | # CONFIG_STRIP_ASM_SYMS is not set | ||
62 | CONFIG_HOTPLUG=y | 78 | CONFIG_HOTPLUG=y |
63 | CONFIG_PRINTK=y | 79 | CONFIG_PRINTK=y |
64 | CONFIG_BUG=y | 80 | CONFIG_BUG=y |
65 | CONFIG_ELF_CORE=y | 81 | CONFIG_ELF_CORE=y |
66 | CONFIG_COMPAT_BRK=y | ||
67 | CONFIG_BASE_FULL=y | 82 | CONFIG_BASE_FULL=y |
68 | CONFIG_FUTEX=y | 83 | CONFIG_FUTEX=y |
69 | CONFIG_ANON_INODES=y | ||
70 | CONFIG_EPOLL=y | 84 | CONFIG_EPOLL=y |
71 | CONFIG_SIGNALFD=y | 85 | CONFIG_SIGNALFD=y |
72 | CONFIG_TIMERFD=y | 86 | CONFIG_TIMERFD=y |
@@ -75,12 +89,15 @@ CONFIG_SHMEM=y | |||
75 | CONFIG_AIO=y | 89 | CONFIG_AIO=y |
76 | CONFIG_VM_EVENT_COUNTERS=y | 90 | CONFIG_VM_EVENT_COUNTERS=y |
77 | CONFIG_PCI_QUIRKS=y | 91 | CONFIG_PCI_QUIRKS=y |
92 | CONFIG_COMPAT_BRK=y | ||
78 | CONFIG_SLAB=y | 93 | CONFIG_SLAB=y |
79 | # CONFIG_SLUB is not set | 94 | # CONFIG_SLUB is not set |
80 | # CONFIG_SLOB is not set | 95 | # CONFIG_SLOB is not set |
81 | # CONFIG_PROFILING is not set | 96 | # CONFIG_PROFILING is not set |
97 | # CONFIG_MARKERS is not set | ||
82 | CONFIG_HAVE_OPROFILE=y | 98 | CONFIG_HAVE_OPROFILE=y |
83 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 99 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
100 | # CONFIG_SLOW_WORK is not set | ||
84 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 101 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
85 | CONFIG_SLABINFO=y | 102 | CONFIG_SLABINFO=y |
86 | CONFIG_RT_MUTEXES=y | 103 | CONFIG_RT_MUTEXES=y |
@@ -93,7 +110,6 @@ CONFIG_MODULE_UNLOAD=y | |||
93 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 110 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
94 | CONFIG_BLOCK=y | 111 | CONFIG_BLOCK=y |
95 | # CONFIG_LBD is not set | 112 | # CONFIG_LBD is not set |
96 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
97 | # CONFIG_BLK_DEV_BSG is not set | 113 | # CONFIG_BLK_DEV_BSG is not set |
98 | # CONFIG_BLK_DEV_INTEGRITY is not set | 114 | # CONFIG_BLK_DEV_INTEGRITY is not set |
99 | 115 | ||
@@ -109,11 +125,6 @@ CONFIG_IOSCHED_CFQ=y | |||
109 | CONFIG_DEFAULT_CFQ=y | 125 | CONFIG_DEFAULT_CFQ=y |
110 | # CONFIG_DEFAULT_NOOP is not set | 126 | # CONFIG_DEFAULT_NOOP is not set |
111 | CONFIG_DEFAULT_IOSCHED="cfq" | 127 | CONFIG_DEFAULT_IOSCHED="cfq" |
112 | CONFIG_CLASSIC_RCU=y | ||
113 | # CONFIG_TREE_RCU is not set | ||
114 | # CONFIG_PREEMPT_RCU is not set | ||
115 | # CONFIG_TREE_RCU_TRACE is not set | ||
116 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
117 | # CONFIG_FREEZER is not set | 128 | # CONFIG_FREEZER is not set |
118 | 129 | ||
119 | # | 130 | # |
@@ -144,6 +155,8 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
144 | CONFIG_ZONE_DMA_FLAG=1 | 155 | CONFIG_ZONE_DMA_FLAG=1 |
145 | CONFIG_BOUNCE=y | 156 | CONFIG_BOUNCE=y |
146 | CONFIG_UNEVICTABLE_LRU=y | 157 | CONFIG_UNEVICTABLE_LRU=y |
158 | CONFIG_HAVE_MLOCK=y | ||
159 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
147 | CONFIG_SUN_PM=y | 160 | CONFIG_SUN_PM=y |
148 | # CONFIG_SPARC_LED is not set | 161 | # CONFIG_SPARC_LED is not set |
149 | CONFIG_SERIAL_CONSOLE=y | 162 | CONFIG_SERIAL_CONSOLE=y |
@@ -159,6 +172,7 @@ CONFIG_PCI_SYSCALL=y | |||
159 | CONFIG_PCI_LEGACY=y | 172 | CONFIG_PCI_LEGACY=y |
160 | # CONFIG_PCI_DEBUG is not set | 173 | # CONFIG_PCI_DEBUG is not set |
161 | # CONFIG_PCI_STUB is not set | 174 | # CONFIG_PCI_STUB is not set |
175 | # CONFIG_PCI_IOV is not set | ||
162 | # CONFIG_PCCARD is not set | 176 | # CONFIG_PCCARD is not set |
163 | CONFIG_SUN_OPENPROMFS=m | 177 | CONFIG_SUN_OPENPROMFS=m |
164 | CONFIG_SPARC32_PCI=y | 178 | CONFIG_SPARC32_PCI=y |
@@ -175,8 +189,6 @@ CONFIG_NET=y | |||
175 | # | 189 | # |
176 | # Networking options | 190 | # Networking options |
177 | # | 191 | # |
178 | # CONFIG_NET_NS is not set | ||
179 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
180 | CONFIG_PACKET=y | 192 | CONFIG_PACKET=y |
181 | # CONFIG_PACKET_MMAP is not set | 193 | # CONFIG_PACKET_MMAP is not set |
182 | CONFIG_UNIX=y | 194 | CONFIG_UNIX=y |
@@ -251,6 +263,7 @@ CONFIG_IPV6_TUNNEL=m | |||
251 | # CONFIG_LAPB is not set | 263 | # CONFIG_LAPB is not set |
252 | # CONFIG_ECONET is not set | 264 | # CONFIG_ECONET is not set |
253 | # CONFIG_WAN_ROUTER is not set | 265 | # CONFIG_WAN_ROUTER is not set |
266 | # CONFIG_PHONET is not set | ||
254 | # CONFIG_NET_SCHED is not set | 267 | # CONFIG_NET_SCHED is not set |
255 | # CONFIG_DCB is not set | 268 | # CONFIG_DCB is not set |
256 | 269 | ||
@@ -263,7 +276,6 @@ CONFIG_NET_PKTGEN=m | |||
263 | # CONFIG_IRDA is not set | 276 | # CONFIG_IRDA is not set |
264 | # CONFIG_BT is not set | 277 | # CONFIG_BT is not set |
265 | # CONFIG_AF_RXRPC is not set | 278 | # CONFIG_AF_RXRPC is not set |
266 | # CONFIG_PHONET is not set | ||
267 | CONFIG_WIRELESS=y | 279 | CONFIG_WIRELESS=y |
268 | # CONFIG_CFG80211 is not set | 280 | # CONFIG_CFG80211 is not set |
269 | CONFIG_WIRELESS_OLD_REGULATORY=y | 281 | CONFIG_WIRELESS_OLD_REGULATORY=y |
@@ -313,12 +325,16 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
313 | # CONFIG_BLK_DEV_HD is not set | 325 | # CONFIG_BLK_DEV_HD is not set |
314 | CONFIG_MISC_DEVICES=y | 326 | CONFIG_MISC_DEVICES=y |
315 | # CONFIG_PHANTOM is not set | 327 | # CONFIG_PHANTOM is not set |
316 | # CONFIG_EEPROM_93CX6 is not set | ||
317 | # CONFIG_SGI_IOC4 is not set | 328 | # CONFIG_SGI_IOC4 is not set |
318 | # CONFIG_TIFM_CORE is not set | 329 | # CONFIG_TIFM_CORE is not set |
319 | # CONFIG_ENCLOSURE_SERVICES is not set | 330 | # CONFIG_ENCLOSURE_SERVICES is not set |
320 | # CONFIG_HP_ILO is not set | 331 | # CONFIG_HP_ILO is not set |
321 | # CONFIG_C2PORT is not set | 332 | # CONFIG_C2PORT is not set |
333 | |||
334 | # | ||
335 | # EEPROM support | ||
336 | # | ||
337 | # CONFIG_EEPROM_93CX6 is not set | ||
322 | CONFIG_HAVE_IDE=y | 338 | CONFIG_HAVE_IDE=y |
323 | # CONFIG_IDE is not set | 339 | # CONFIG_IDE is not set |
324 | 340 | ||
@@ -375,8 +391,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
375 | # CONFIG_MEGARAID_NEWGEN is not set | 391 | # CONFIG_MEGARAID_NEWGEN is not set |
376 | # CONFIG_MEGARAID_LEGACY is not set | 392 | # CONFIG_MEGARAID_LEGACY is not set |
377 | # CONFIG_MEGARAID_SAS is not set | 393 | # CONFIG_MEGARAID_SAS is not set |
394 | # CONFIG_SCSI_MPT2SAS is not set | ||
378 | # CONFIG_SCSI_HPTIOP is not set | 395 | # CONFIG_SCSI_HPTIOP is not set |
379 | # CONFIG_LIBFC is not set | 396 | # CONFIG_LIBFC is not set |
397 | # CONFIG_LIBFCOE is not set | ||
380 | # CONFIG_FCOE is not set | 398 | # CONFIG_FCOE is not set |
381 | # CONFIG_SCSI_DMX3191D is not set | 399 | # CONFIG_SCSI_DMX3191D is not set |
382 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 400 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -398,6 +416,7 @@ CONFIG_SCSI_QLOGICPTI=m | |||
398 | CONFIG_SCSI_SUNESP=y | 416 | CONFIG_SCSI_SUNESP=y |
399 | # CONFIG_SCSI_SRP is not set | 417 | # CONFIG_SCSI_SRP is not set |
400 | # CONFIG_SCSI_DH is not set | 418 | # CONFIG_SCSI_DH is not set |
419 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
401 | # CONFIG_ATA is not set | 420 | # CONFIG_ATA is not set |
402 | # CONFIG_MD is not set | 421 | # CONFIG_MD is not set |
403 | # CONFIG_FUSION is not set | 422 | # CONFIG_FUSION is not set |
@@ -413,6 +432,7 @@ CONFIG_SCSI_SUNESP=y | |||
413 | # CONFIG_IEEE1394 is not set | 432 | # CONFIG_IEEE1394 is not set |
414 | # CONFIG_I2O is not set | 433 | # CONFIG_I2O is not set |
415 | CONFIG_NETDEVICES=y | 434 | CONFIG_NETDEVICES=y |
435 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
416 | CONFIG_DUMMY=m | 436 | CONFIG_DUMMY=m |
417 | # CONFIG_BONDING is not set | 437 | # CONFIG_BONDING is not set |
418 | # CONFIG_MACVLAN is not set | 438 | # CONFIG_MACVLAN is not set |
@@ -430,6 +450,8 @@ CONFIG_SUNQE=m | |||
430 | # CONFIG_SUNGEM is not set | 450 | # CONFIG_SUNGEM is not set |
431 | # CONFIG_CASSINI is not set | 451 | # CONFIG_CASSINI is not set |
432 | # CONFIG_NET_VENDOR_3COM is not set | 452 | # CONFIG_NET_VENDOR_3COM is not set |
453 | # CONFIG_ETHOC is not set | ||
454 | # CONFIG_DNET is not set | ||
433 | # CONFIG_NET_TULIP is not set | 455 | # CONFIG_NET_TULIP is not set |
434 | # CONFIG_HP100 is not set | 456 | # CONFIG_HP100 is not set |
435 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 457 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -448,6 +470,7 @@ CONFIG_NETDEV_1000=y | |||
448 | # CONFIG_E1000 is not set | 470 | # CONFIG_E1000 is not set |
449 | # CONFIG_IP1000 is not set | 471 | # CONFIG_IP1000 is not set |
450 | # CONFIG_IGB is not set | 472 | # CONFIG_IGB is not set |
473 | # CONFIG_IGBVF is not set | ||
451 | # CONFIG_MYRI_SBUS is not set | 474 | # CONFIG_MYRI_SBUS is not set |
452 | # CONFIG_NS83820 is not set | 475 | # CONFIG_NS83820 is not set |
453 | # CONFIG_HAMACHI is not set | 476 | # CONFIG_HAMACHI is not set |
@@ -462,6 +485,7 @@ CONFIG_NETDEV_1000=y | |||
462 | # CONFIG_QLA3XXX is not set | 485 | # CONFIG_QLA3XXX is not set |
463 | # CONFIG_ATL1 is not set | 486 | # CONFIG_ATL1 is not set |
464 | # CONFIG_ATL1E is not set | 487 | # CONFIG_ATL1E is not set |
488 | # CONFIG_ATL1C is not set | ||
465 | # CONFIG_JME is not set | 489 | # CONFIG_JME is not set |
466 | CONFIG_NETDEV_10000=y | 490 | CONFIG_NETDEV_10000=y |
467 | # CONFIG_CHELSIO_T1 is not set | 491 | # CONFIG_CHELSIO_T1 is not set |
@@ -471,6 +495,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
471 | # CONFIG_IXGBE is not set | 495 | # CONFIG_IXGBE is not set |
472 | # CONFIG_IXGB is not set | 496 | # CONFIG_IXGB is not set |
473 | # CONFIG_S2IO is not set | 497 | # CONFIG_S2IO is not set |
498 | # CONFIG_VXGE is not set | ||
474 | # CONFIG_MYRI10GE is not set | 499 | # CONFIG_MYRI10GE is not set |
475 | # CONFIG_NETXEN_NIC is not set | 500 | # CONFIG_NETXEN_NIC is not set |
476 | # CONFIG_NIU is not set | 501 | # CONFIG_NIU is not set |
@@ -480,6 +505,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
480 | # CONFIG_BNX2X is not set | 505 | # CONFIG_BNX2X is not set |
481 | # CONFIG_QLGE is not set | 506 | # CONFIG_QLGE is not set |
482 | # CONFIG_SFC is not set | 507 | # CONFIG_SFC is not set |
508 | # CONFIG_BE2NET is not set | ||
483 | # CONFIG_TR is not set | 509 | # CONFIG_TR is not set |
484 | 510 | ||
485 | # | 511 | # |
@@ -487,7 +513,6 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
487 | # | 513 | # |
488 | # CONFIG_WLAN_PRE80211 is not set | 514 | # CONFIG_WLAN_PRE80211 is not set |
489 | # CONFIG_WLAN_80211 is not set | 515 | # CONFIG_WLAN_80211 is not set |
490 | # CONFIG_IWLWIFI_LEDS is not set | ||
491 | 516 | ||
492 | # | 517 | # |
493 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 518 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -537,7 +562,6 @@ CONFIG_MOUSE_PS2=m | |||
537 | CONFIG_MOUSE_PS2_ALPS=y | 562 | CONFIG_MOUSE_PS2_ALPS=y |
538 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 563 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
539 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 564 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
540 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
541 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 565 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
542 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 566 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
543 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 567 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -597,6 +621,7 @@ CONFIG_LEGACY_PTYS=y | |||
597 | CONFIG_LEGACY_PTY_COUNT=256 | 621 | CONFIG_LEGACY_PTY_COUNT=256 |
598 | # CONFIG_IPMI_HANDLER is not set | 622 | # CONFIG_IPMI_HANDLER is not set |
599 | CONFIG_HW_RANDOM=m | 623 | CONFIG_HW_RANDOM=m |
624 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
600 | # CONFIG_R3964 is not set | 625 | # CONFIG_R3964 is not set |
601 | # CONFIG_APPLICOM is not set | 626 | # CONFIG_APPLICOM is not set |
602 | # CONFIG_RAW_DRIVER is not set | 627 | # CONFIG_RAW_DRIVER is not set |
@@ -688,7 +713,6 @@ CONFIG_HID=y | |||
688 | # | 713 | # |
689 | # Special HID drivers | 714 | # Special HID drivers |
690 | # | 715 | # |
691 | CONFIG_HID_COMPAT=y | ||
692 | CONFIG_USB_SUPPORT=y | 716 | CONFIG_USB_SUPPORT=y |
693 | CONFIG_USB_ARCH_HAS_HCD=y | 717 | CONFIG_USB_ARCH_HAS_HCD=y |
694 | CONFIG_USB_ARCH_HAS_OHCI=y | 718 | CONFIG_USB_ARCH_HAS_OHCI=y |
@@ -700,7 +724,7 @@ CONFIG_USB_ARCH_HAS_EHCI=y | |||
700 | # | 724 | # |
701 | 725 | ||
702 | # | 726 | # |
703 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 727 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
704 | # | 728 | # |
705 | # CONFIG_USB_GADGET is not set | 729 | # CONFIG_USB_GADGET is not set |
706 | 730 | ||
@@ -750,6 +774,7 @@ CONFIG_RTC_DRV_M48T59=y | |||
750 | # on-CPU RTC drivers | 774 | # on-CPU RTC drivers |
751 | # | 775 | # |
752 | # CONFIG_DMADEVICES is not set | 776 | # CONFIG_DMADEVICES is not set |
777 | # CONFIG_AUXDISPLAY is not set | ||
753 | # CONFIG_UIO is not set | 778 | # CONFIG_UIO is not set |
754 | # CONFIG_STAGING is not set | 779 | # CONFIG_STAGING is not set |
755 | 780 | ||
@@ -777,6 +802,7 @@ CONFIG_FS_POSIX_ACL=y | |||
777 | CONFIG_FILE_LOCKING=y | 802 | CONFIG_FILE_LOCKING=y |
778 | # CONFIG_XFS_FS is not set | 803 | # CONFIG_XFS_FS is not set |
779 | # CONFIG_OCFS2_FS is not set | 804 | # CONFIG_OCFS2_FS is not set |
805 | # CONFIG_BTRFS_FS is not set | ||
780 | CONFIG_DNOTIFY=y | 806 | CONFIG_DNOTIFY=y |
781 | CONFIG_INOTIFY=y | 807 | CONFIG_INOTIFY=y |
782 | CONFIG_INOTIFY_USER=y | 808 | CONFIG_INOTIFY_USER=y |
@@ -786,6 +812,11 @@ CONFIG_AUTOFS4_FS=m | |||
786 | # CONFIG_FUSE_FS is not set | 812 | # CONFIG_FUSE_FS is not set |
787 | 813 | ||
788 | # | 814 | # |
815 | # Caches | ||
816 | # | ||
817 | # CONFIG_FSCACHE is not set | ||
818 | |||
819 | # | ||
789 | # CD-ROM/DVD Filesystems | 820 | # CD-ROM/DVD Filesystems |
790 | # | 821 | # |
791 | CONFIG_ISO9660_FS=m | 822 | CONFIG_ISO9660_FS=m |
@@ -820,14 +851,20 @@ CONFIG_MISC_FILESYSTEMS=y | |||
820 | # CONFIG_BFS_FS is not set | 851 | # CONFIG_BFS_FS is not set |
821 | # CONFIG_EFS_FS is not set | 852 | # CONFIG_EFS_FS is not set |
822 | # CONFIG_CRAMFS is not set | 853 | # CONFIG_CRAMFS is not set |
854 | # CONFIG_SQUASHFS is not set | ||
823 | # CONFIG_VXFS_FS is not set | 855 | # CONFIG_VXFS_FS is not set |
824 | # CONFIG_MINIX_FS is not set | 856 | # CONFIG_MINIX_FS is not set |
825 | # CONFIG_OMFS_FS is not set | 857 | # CONFIG_OMFS_FS is not set |
826 | # CONFIG_HPFS_FS is not set | 858 | # CONFIG_HPFS_FS is not set |
827 | # CONFIG_QNX4FS_FS is not set | 859 | # CONFIG_QNX4FS_FS is not set |
828 | CONFIG_ROMFS_FS=m | 860 | CONFIG_ROMFS_FS=m |
861 | CONFIG_ROMFS_BACKED_BY_BLOCK=y | ||
862 | # CONFIG_ROMFS_BACKED_BY_MTD is not set | ||
863 | # CONFIG_ROMFS_BACKED_BY_BOTH is not set | ||
864 | CONFIG_ROMFS_ON_BLOCK=y | ||
829 | # CONFIG_SYSV_FS is not set | 865 | # CONFIG_SYSV_FS is not set |
830 | # CONFIG_UFS_FS is not set | 866 | # CONFIG_UFS_FS is not set |
867 | # CONFIG_NILFS2_FS is not set | ||
831 | CONFIG_NETWORK_FILESYSTEMS=y | 868 | CONFIG_NETWORK_FILESYSTEMS=y |
832 | CONFIG_NFS_FS=y | 869 | CONFIG_NFS_FS=y |
833 | # CONFIG_NFS_V3 is not set | 870 | # CONFIG_NFS_V3 is not set |
@@ -838,7 +875,6 @@ CONFIG_LOCKD=y | |||
838 | CONFIG_NFS_COMMON=y | 875 | CONFIG_NFS_COMMON=y |
839 | CONFIG_SUNRPC=y | 876 | CONFIG_SUNRPC=y |
840 | CONFIG_SUNRPC_GSS=m | 877 | CONFIG_SUNRPC_GSS=m |
841 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
842 | CONFIG_RPCSEC_GSS_KRB5=m | 878 | CONFIG_RPCSEC_GSS_KRB5=m |
843 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 879 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
844 | # CONFIG_SMB_FS is not set | 880 | # CONFIG_SMB_FS is not set |
@@ -911,6 +947,9 @@ CONFIG_DEBUG_KERNEL=y | |||
911 | CONFIG_DETECT_SOFTLOCKUP=y | 947 | CONFIG_DETECT_SOFTLOCKUP=y |
912 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 948 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
913 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 949 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
950 | CONFIG_DETECT_HUNG_TASK=y | ||
951 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
952 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
914 | # CONFIG_SCHED_DEBUG is not set | 953 | # CONFIG_SCHED_DEBUG is not set |
915 | # CONFIG_SCHEDSTATS is not set | 954 | # CONFIG_SCHEDSTATS is not set |
916 | # CONFIG_TIMER_STATS is not set | 955 | # CONFIG_TIMER_STATS is not set |
@@ -939,15 +978,7 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
939 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 978 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
940 | # CONFIG_FAULT_INJECTION is not set | 979 | # CONFIG_FAULT_INJECTION is not set |
941 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 980 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
942 | 981 | # CONFIG_PAGE_POISONING is not set | |
943 | # | ||
944 | # Tracers | ||
945 | # | ||
946 | # CONFIG_SCHED_TRACER is not set | ||
947 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | ||
948 | # CONFIG_BOOT_TRACER is not set | ||
949 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
950 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
951 | # CONFIG_SAMPLES is not set | 982 | # CONFIG_SAMPLES is not set |
952 | CONFIG_HAVE_ARCH_KGDB=y | 983 | CONFIG_HAVE_ARCH_KGDB=y |
953 | CONFIG_KGDB=y | 984 | CONFIG_KGDB=y |
@@ -979,10 +1010,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
979 | CONFIG_CRYPTO_HASH=y | 1010 | CONFIG_CRYPTO_HASH=y |
980 | CONFIG_CRYPTO_HASH2=y | 1011 | CONFIG_CRYPTO_HASH2=y |
981 | CONFIG_CRYPTO_RNG2=y | 1012 | CONFIG_CRYPTO_RNG2=y |
1013 | CONFIG_CRYPTO_PCOMP=y | ||
982 | CONFIG_CRYPTO_MANAGER=y | 1014 | CONFIG_CRYPTO_MANAGER=y |
983 | CONFIG_CRYPTO_MANAGER2=y | 1015 | CONFIG_CRYPTO_MANAGER2=y |
984 | # CONFIG_CRYPTO_GF128MUL is not set | 1016 | # CONFIG_CRYPTO_GF128MUL is not set |
985 | CONFIG_CRYPTO_NULL=m | 1017 | CONFIG_CRYPTO_NULL=m |
1018 | CONFIG_CRYPTO_WORKQUEUE=y | ||
986 | # CONFIG_CRYPTO_CRYPTD is not set | 1019 | # CONFIG_CRYPTO_CRYPTD is not set |
987 | CONFIG_CRYPTO_AUTHENC=y | 1020 | CONFIG_CRYPTO_AUTHENC=y |
988 | # CONFIG_CRYPTO_TEST is not set | 1021 | # CONFIG_CRYPTO_TEST is not set |
@@ -1052,6 +1085,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1052 | # Compression | 1085 | # Compression |
1053 | # | 1086 | # |
1054 | CONFIG_CRYPTO_DEFLATE=y | 1087 | CONFIG_CRYPTO_DEFLATE=y |
1088 | # CONFIG_CRYPTO_ZLIB is not set | ||
1055 | # CONFIG_CRYPTO_LZO is not set | 1089 | # CONFIG_CRYPTO_LZO is not set |
1056 | 1090 | ||
1057 | # | 1091 | # |
@@ -1059,6 +1093,7 @@ CONFIG_CRYPTO_DEFLATE=y | |||
1059 | # | 1093 | # |
1060 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1094 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1061 | # CONFIG_CRYPTO_HW is not set | 1095 | # CONFIG_CRYPTO_HW is not set |
1096 | # CONFIG_BINARY_PRINTF is not set | ||
1062 | 1097 | ||
1063 | # | 1098 | # |
1064 | # Library routines | 1099 | # Library routines |
@@ -1074,7 +1109,10 @@ CONFIG_CRC32=y | |||
1074 | CONFIG_LIBCRC32C=m | 1109 | CONFIG_LIBCRC32C=m |
1075 | CONFIG_ZLIB_INFLATE=y | 1110 | CONFIG_ZLIB_INFLATE=y |
1076 | CONFIG_ZLIB_DEFLATE=y | 1111 | CONFIG_ZLIB_DEFLATE=y |
1077 | CONFIG_PLIST=y | 1112 | CONFIG_DECOMPRESS_GZIP=y |
1113 | CONFIG_DECOMPRESS_BZIP2=y | ||
1114 | CONFIG_DECOMPRESS_LZMA=y | ||
1078 | CONFIG_HAS_IOMEM=y | 1115 | CONFIG_HAS_IOMEM=y |
1079 | CONFIG_HAS_IOPORT=y | 1116 | CONFIG_HAS_IOPORT=y |
1080 | CONFIG_HAS_DMA=y | 1117 | CONFIG_HAS_DMA=y |
1118 | CONFIG_NLATTR=y | ||
diff --git a/arch/sparc/configs/sparc64_defconfig b/arch/sparc/configs/sparc64_defconfig index ade49941def2..b5d63bd8716e 100644 --- a/arch/sparc/configs/sparc64_defconfig +++ b/arch/sparc/configs/sparc64_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.28 | 3 | # Linux kernel version: 2.6.30-rc2 |
4 | # Fri Jan 2 18:14:26 2009 | 4 | # Fri Apr 17 02:03:07 2009 |
5 | # | 5 | # |
6 | CONFIG_64BIT=y | ||
6 | CONFIG_SPARC=y | 7 | CONFIG_SPARC=y |
8 | # CONFIG_SPARC32 is not set | ||
7 | CONFIG_SPARC64=y | 9 | CONFIG_SPARC64=y |
8 | CONFIG_ARCH_DEFCONFIG="arch/sparc/configs/sparc64_defconfig" | 10 | CONFIG_ARCH_DEFCONFIG="arch/sparc/configs/sparc64_defconfig" |
9 | CONFIG_BITS=64 | 11 | CONFIG_BITS=64 |
10 | CONFIG_64BIT=y | ||
11 | CONFIG_GENERIC_TIME=y | 12 | CONFIG_GENERIC_TIME=y |
12 | CONFIG_GENERIC_CMOS_UPDATE=y | 13 | CONFIG_GENERIC_CMOS_UPDATE=y |
13 | CONFIG_GENERIC_CLOCKEVENTS=y | 14 | CONFIG_GENERIC_CLOCKEVENTS=y |
@@ -22,6 +23,7 @@ CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | |||
22 | CONFIG_MMU=y | 23 | CONFIG_MMU=y |
23 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 24 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
24 | CONFIG_OF=y | 25 | CONFIG_OF=y |
26 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
25 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 27 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
26 | 28 | ||
27 | # | 29 | # |
@@ -36,17 +38,27 @@ CONFIG_SWAP=y | |||
36 | CONFIG_SYSVIPC=y | 38 | CONFIG_SYSVIPC=y |
37 | CONFIG_SYSVIPC_SYSCTL=y | 39 | CONFIG_SYSVIPC_SYSCTL=y |
38 | CONFIG_POSIX_MQUEUE=y | 40 | CONFIG_POSIX_MQUEUE=y |
41 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
39 | # CONFIG_BSD_PROCESS_ACCT is not set | 42 | # CONFIG_BSD_PROCESS_ACCT is not set |
40 | # CONFIG_TASKSTATS is not set | 43 | # CONFIG_TASKSTATS is not set |
41 | # CONFIG_AUDIT is not set | 44 | # CONFIG_AUDIT is not set |
45 | |||
46 | # | ||
47 | # RCU Subsystem | ||
48 | # | ||
49 | CONFIG_CLASSIC_RCU=y | ||
50 | # CONFIG_TREE_RCU is not set | ||
51 | # CONFIG_PREEMPT_RCU is not set | ||
52 | # CONFIG_TREE_RCU_TRACE is not set | ||
53 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
42 | # CONFIG_IKCONFIG is not set | 54 | # CONFIG_IKCONFIG is not set |
43 | CONFIG_LOG_BUF_SHIFT=18 | 55 | CONFIG_LOG_BUF_SHIFT=18 |
44 | # CONFIG_CGROUPS is not set | ||
45 | CONFIG_GROUP_SCHED=y | 56 | CONFIG_GROUP_SCHED=y |
46 | CONFIG_FAIR_GROUP_SCHED=y | 57 | CONFIG_FAIR_GROUP_SCHED=y |
47 | CONFIG_RT_GROUP_SCHED=y | 58 | CONFIG_RT_GROUP_SCHED=y |
48 | CONFIG_USER_SCHED=y | 59 | CONFIG_USER_SCHED=y |
49 | # CONFIG_CGROUP_SCHED is not set | 60 | # CONFIG_CGROUP_SCHED is not set |
61 | # CONFIG_CGROUPS is not set | ||
50 | CONFIG_SYSFS_DEPRECATED=y | 62 | CONFIG_SYSFS_DEPRECATED=y |
51 | CONFIG_SYSFS_DEPRECATED_V2=y | 63 | CONFIG_SYSFS_DEPRECATED_V2=y |
52 | CONFIG_RELAY=y | 64 | CONFIG_RELAY=y |
@@ -55,24 +67,28 @@ CONFIG_NAMESPACES=y | |||
55 | # CONFIG_IPC_NS is not set | 67 | # CONFIG_IPC_NS is not set |
56 | # CONFIG_USER_NS is not set | 68 | # CONFIG_USER_NS is not set |
57 | # CONFIG_PID_NS is not set | 69 | # CONFIG_PID_NS is not set |
70 | # CONFIG_NET_NS is not set | ||
58 | CONFIG_BLK_DEV_INITRD=y | 71 | CONFIG_BLK_DEV_INITRD=y |
59 | CONFIG_INITRAMFS_SOURCE="" | 72 | CONFIG_INITRAMFS_SOURCE="" |
73 | CONFIG_RD_GZIP=y | ||
74 | CONFIG_RD_BZIP2=y | ||
75 | CONFIG_RD_LZMA=y | ||
60 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 76 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
61 | CONFIG_SYSCTL=y | 77 | CONFIG_SYSCTL=y |
78 | CONFIG_ANON_INODES=y | ||
62 | # CONFIG_EMBEDDED is not set | 79 | # CONFIG_EMBEDDED is not set |
63 | CONFIG_UID16=y | 80 | CONFIG_UID16=y |
64 | CONFIG_SYSCTL_SYSCALL=y | 81 | CONFIG_SYSCTL_SYSCALL=y |
65 | CONFIG_KALLSYMS=y | 82 | CONFIG_KALLSYMS=y |
66 | # CONFIG_KALLSYMS_ALL is not set | 83 | # CONFIG_KALLSYMS_ALL is not set |
67 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 84 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
85 | # CONFIG_STRIP_ASM_SYMS is not set | ||
68 | CONFIG_HOTPLUG=y | 86 | CONFIG_HOTPLUG=y |
69 | CONFIG_PRINTK=y | 87 | CONFIG_PRINTK=y |
70 | CONFIG_BUG=y | 88 | CONFIG_BUG=y |
71 | CONFIG_ELF_CORE=y | 89 | CONFIG_ELF_CORE=y |
72 | # CONFIG_COMPAT_BRK is not set | ||
73 | CONFIG_BASE_FULL=y | 90 | CONFIG_BASE_FULL=y |
74 | CONFIG_FUTEX=y | 91 | CONFIG_FUTEX=y |
75 | CONFIG_ANON_INODES=y | ||
76 | CONFIG_EPOLL=y | 92 | CONFIG_EPOLL=y |
77 | CONFIG_SIGNALFD=y | 93 | CONFIG_SIGNALFD=y |
78 | CONFIG_TIMERFD=y | 94 | CONFIG_TIMERFD=y |
@@ -82,6 +98,7 @@ CONFIG_AIO=y | |||
82 | CONFIG_VM_EVENT_COUNTERS=y | 98 | CONFIG_VM_EVENT_COUNTERS=y |
83 | CONFIG_PCI_QUIRKS=y | 99 | CONFIG_PCI_QUIRKS=y |
84 | CONFIG_SLUB_DEBUG=y | 100 | CONFIG_SLUB_DEBUG=y |
101 | # CONFIG_COMPAT_BRK is not set | ||
85 | # CONFIG_SLAB is not set | 102 | # CONFIG_SLAB is not set |
86 | CONFIG_SLUB=y | 103 | CONFIG_SLUB=y |
87 | # CONFIG_SLOB is not set | 104 | # CONFIG_SLOB is not set |
@@ -91,15 +108,16 @@ CONFIG_TRACEPOINTS=y | |||
91 | CONFIG_OPROFILE=m | 108 | CONFIG_OPROFILE=m |
92 | CONFIG_HAVE_OPROFILE=y | 109 | CONFIG_HAVE_OPROFILE=y |
93 | CONFIG_KPROBES=y | 110 | CONFIG_KPROBES=y |
111 | CONFIG_HAVE_SYSCALL_WRAPPERS=y | ||
94 | CONFIG_KRETPROBES=y | 112 | CONFIG_KRETPROBES=y |
95 | CONFIG_HAVE_KPROBES=y | 113 | CONFIG_HAVE_KPROBES=y |
96 | CONFIG_HAVE_KRETPROBES=y | 114 | CONFIG_HAVE_KRETPROBES=y |
97 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 115 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
98 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 116 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
117 | # CONFIG_SLOW_WORK is not set | ||
99 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 118 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
100 | CONFIG_SLABINFO=y | 119 | CONFIG_SLABINFO=y |
101 | CONFIG_RT_MUTEXES=y | 120 | CONFIG_RT_MUTEXES=y |
102 | # CONFIG_TINY_SHMEM is not set | ||
103 | CONFIG_BASE_SMALL=0 | 121 | CONFIG_BASE_SMALL=0 |
104 | CONFIG_MODULES=y | 122 | CONFIG_MODULES=y |
105 | # CONFIG_MODULE_FORCE_LOAD is not set | 123 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -107,10 +125,8 @@ CONFIG_MODULE_UNLOAD=y | |||
107 | CONFIG_MODULE_FORCE_UNLOAD=y | 125 | CONFIG_MODULE_FORCE_UNLOAD=y |
108 | CONFIG_MODVERSIONS=y | 126 | CONFIG_MODVERSIONS=y |
109 | CONFIG_MODULE_SRCVERSION_ALL=y | 127 | CONFIG_MODULE_SRCVERSION_ALL=y |
110 | CONFIG_KMOD=y | ||
111 | CONFIG_STOP_MACHINE=y | 128 | CONFIG_STOP_MACHINE=y |
112 | CONFIG_BLOCK=y | 129 | CONFIG_BLOCK=y |
113 | CONFIG_BLK_DEV_IO_TRACE=y | ||
114 | CONFIG_BLK_DEV_BSG=y | 130 | CONFIG_BLK_DEV_BSG=y |
115 | # CONFIG_BLK_DEV_INTEGRITY is not set | 131 | # CONFIG_BLK_DEV_INTEGRITY is not set |
116 | CONFIG_BLOCK_COMPAT=y | 132 | CONFIG_BLOCK_COMPAT=y |
@@ -127,11 +143,6 @@ CONFIG_DEFAULT_AS=y | |||
127 | # CONFIG_DEFAULT_CFQ is not set | 143 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 144 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 145 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
130 | CONFIG_CLASSIC_RCU=y | ||
131 | # CONFIG_TREE_RCU is not set | ||
132 | # CONFIG_PREEMPT_RCU is not set | ||
133 | # CONFIG_TREE_RCU_TRACE is not set | ||
134 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
135 | # CONFIG_FREEZER is not set | 146 | # CONFIG_FREEZER is not set |
136 | 147 | ||
137 | # | 148 | # |
@@ -185,11 +196,12 @@ CONFIG_SPARSEMEM_VMEMMAP=y | |||
185 | CONFIG_PAGEFLAGS_EXTENDED=y | 196 | CONFIG_PAGEFLAGS_EXTENDED=y |
186 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 197 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
187 | CONFIG_MIGRATION=y | 198 | CONFIG_MIGRATION=y |
188 | CONFIG_RESOURCES_64BIT=y | ||
189 | CONFIG_PHYS_ADDR_T_64BIT=y | 199 | CONFIG_PHYS_ADDR_T_64BIT=y |
190 | CONFIG_ZONE_DMA_FLAG=0 | 200 | CONFIG_ZONE_DMA_FLAG=0 |
191 | CONFIG_NR_QUICK=1 | 201 | CONFIG_NR_QUICK=1 |
192 | CONFIG_UNEVICTABLE_LRU=y | 202 | CONFIG_UNEVICTABLE_LRU=y |
203 | CONFIG_HAVE_MLOCK=y | ||
204 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
193 | CONFIG_SCHED_SMT=y | 205 | CONFIG_SCHED_SMT=y |
194 | CONFIG_SCHED_MC=y | 206 | CONFIG_SCHED_MC=y |
195 | # CONFIG_PREEMPT_NONE is not set | 207 | # CONFIG_PREEMPT_NONE is not set |
@@ -210,6 +222,8 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
210 | CONFIG_PCI_MSI=y | 222 | CONFIG_PCI_MSI=y |
211 | # CONFIG_PCI_LEGACY is not set | 223 | # CONFIG_PCI_LEGACY is not set |
212 | # CONFIG_PCI_DEBUG is not set | 224 | # CONFIG_PCI_DEBUG is not set |
225 | # CONFIG_PCI_STUB is not set | ||
226 | # CONFIG_PCI_IOV is not set | ||
213 | # CONFIG_PCCARD is not set | 227 | # CONFIG_PCCARD is not set |
214 | CONFIG_SUN_OPENPROMFS=m | 228 | CONFIG_SUN_OPENPROMFS=m |
215 | CONFIG_SPARC64_PCI=y | 229 | CONFIG_SPARC64_PCI=y |
@@ -229,8 +243,6 @@ CONFIG_NET=y | |||
229 | # | 243 | # |
230 | # Networking options | 244 | # Networking options |
231 | # | 245 | # |
232 | # CONFIG_NET_NS is not set | ||
233 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
234 | CONFIG_PACKET=y | 246 | CONFIG_PACKET=y |
235 | CONFIG_PACKET_MMAP=y | 247 | CONFIG_PACKET_MMAP=y |
236 | CONFIG_UNIX=y | 248 | CONFIG_UNIX=y |
@@ -292,25 +304,7 @@ CONFIG_IPV6_TUNNEL=m | |||
292 | # CONFIG_IPV6_MROUTE is not set | 304 | # CONFIG_IPV6_MROUTE is not set |
293 | # CONFIG_NETWORK_SECMARK is not set | 305 | # CONFIG_NETWORK_SECMARK is not set |
294 | # CONFIG_NETFILTER is not set | 306 | # CONFIG_NETFILTER is not set |
295 | CONFIG_IP_DCCP=m | 307 | # CONFIG_IP_DCCP is not set |
296 | CONFIG_INET_DCCP_DIAG=m | ||
297 | CONFIG_IP_DCCP_ACKVEC=y | ||
298 | |||
299 | # | ||
300 | # DCCP CCIDs Configuration (EXPERIMENTAL) | ||
301 | # | ||
302 | CONFIG_IP_DCCP_CCID2=m | ||
303 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | ||
304 | CONFIG_IP_DCCP_CCID3=m | ||
305 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | ||
306 | CONFIG_IP_DCCP_CCID3_RTO=100 | ||
307 | CONFIG_IP_DCCP_TFRC_LIB=m | ||
308 | |||
309 | # | ||
310 | # DCCP Kernel Hacking | ||
311 | # | ||
312 | # CONFIG_IP_DCCP_DEBUG is not set | ||
313 | # CONFIG_NET_DCCPPROBE is not set | ||
314 | # CONFIG_IP_SCTP is not set | 308 | # CONFIG_IP_SCTP is not set |
315 | # CONFIG_TIPC is not set | 309 | # CONFIG_TIPC is not set |
316 | # CONFIG_ATM is not set | 310 | # CONFIG_ATM is not set |
@@ -326,6 +320,7 @@ CONFIG_VLAN_8021Q=m | |||
326 | # CONFIG_LAPB is not set | 320 | # CONFIG_LAPB is not set |
327 | # CONFIG_ECONET is not set | 321 | # CONFIG_ECONET is not set |
328 | # CONFIG_WAN_ROUTER is not set | 322 | # CONFIG_WAN_ROUTER is not set |
323 | # CONFIG_PHONET is not set | ||
329 | # CONFIG_NET_SCHED is not set | 324 | # CONFIG_NET_SCHED is not set |
330 | # CONFIG_DCB is not set | 325 | # CONFIG_DCB is not set |
331 | 326 | ||
@@ -334,18 +329,19 @@ CONFIG_VLAN_8021Q=m | |||
334 | # | 329 | # |
335 | CONFIG_NET_PKTGEN=m | 330 | CONFIG_NET_PKTGEN=m |
336 | CONFIG_NET_TCPPROBE=m | 331 | CONFIG_NET_TCPPROBE=m |
332 | # CONFIG_NET_DROP_MONITOR is not set | ||
337 | # CONFIG_HAMRADIO is not set | 333 | # CONFIG_HAMRADIO is not set |
338 | # CONFIG_CAN is not set | 334 | # CONFIG_CAN is not set |
339 | # CONFIG_IRDA is not set | 335 | # CONFIG_IRDA is not set |
340 | # CONFIG_BT is not set | 336 | # CONFIG_BT is not set |
341 | # CONFIG_AF_RXRPC is not set | 337 | # CONFIG_AF_RXRPC is not set |
342 | # CONFIG_PHONET is not set | ||
343 | CONFIG_WIRELESS=y | 338 | CONFIG_WIRELESS=y |
344 | # CONFIG_CFG80211 is not set | 339 | # CONFIG_CFG80211 is not set |
345 | CONFIG_WIRELESS_OLD_REGULATORY=y | 340 | CONFIG_WIRELESS_OLD_REGULATORY=y |
346 | # CONFIG_WIRELESS_EXT is not set | 341 | # CONFIG_WIRELESS_EXT is not set |
347 | # CONFIG_LIB80211 is not set | 342 | # CONFIG_LIB80211 is not set |
348 | # CONFIG_MAC80211 is not set | 343 | # CONFIG_MAC80211 is not set |
344 | # CONFIG_WIMAX is not set | ||
349 | # CONFIG_RFKILL is not set | 345 | # CONFIG_RFKILL is not set |
350 | # CONFIG_NET_9P is not set | 346 | # CONFIG_NET_9P is not set |
351 | 347 | ||
@@ -389,19 +385,27 @@ CONFIG_SUNVDC=m | |||
389 | # CONFIG_BLK_DEV_HD is not set | 385 | # CONFIG_BLK_DEV_HD is not set |
390 | CONFIG_MISC_DEVICES=y | 386 | CONFIG_MISC_DEVICES=y |
391 | # CONFIG_PHANTOM is not set | 387 | # CONFIG_PHANTOM is not set |
392 | # CONFIG_EEPROM_93CX6 is not set | ||
393 | # CONFIG_SGI_IOC4 is not set | 388 | # CONFIG_SGI_IOC4 is not set |
394 | # CONFIG_TIFM_CORE is not set | 389 | # CONFIG_TIFM_CORE is not set |
395 | # CONFIG_ICS932S401 is not set | 390 | # CONFIG_ICS932S401 is not set |
396 | # CONFIG_ENCLOSURE_SERVICES is not set | 391 | # CONFIG_ENCLOSURE_SERVICES is not set |
397 | # CONFIG_HP_ILO is not set | 392 | # CONFIG_HP_ILO is not set |
393 | # CONFIG_ISL29003 is not set | ||
398 | # CONFIG_C2PORT is not set | 394 | # CONFIG_C2PORT is not set |
395 | |||
396 | # | ||
397 | # EEPROM support | ||
398 | # | ||
399 | # CONFIG_EEPROM_AT24 is not set | ||
400 | # CONFIG_EEPROM_LEGACY is not set | ||
401 | # CONFIG_EEPROM_93CX6 is not set | ||
399 | CONFIG_HAVE_IDE=y | 402 | CONFIG_HAVE_IDE=y |
400 | CONFIG_IDE=y | 403 | CONFIG_IDE=y |
401 | 404 | ||
402 | # | 405 | # |
403 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 406 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
404 | # | 407 | # |
408 | CONFIG_IDE_XFER_MODE=y | ||
405 | CONFIG_IDE_TIMINGS=y | 409 | CONFIG_IDE_TIMINGS=y |
406 | CONFIG_IDE_ATAPI=y | 410 | CONFIG_IDE_ATAPI=y |
407 | # CONFIG_BLK_DEV_IDE_SATA is not set | 411 | # CONFIG_BLK_DEV_IDE_SATA is not set |
@@ -439,6 +443,7 @@ CONFIG_BLK_DEV_ALI15X3=y | |||
439 | # CONFIG_BLK_DEV_JMICRON is not set | 443 | # CONFIG_BLK_DEV_JMICRON is not set |
440 | # CONFIG_BLK_DEV_SC1200 is not set | 444 | # CONFIG_BLK_DEV_SC1200 is not set |
441 | # CONFIG_BLK_DEV_PIIX is not set | 445 | # CONFIG_BLK_DEV_PIIX is not set |
446 | # CONFIG_BLK_DEV_IT8172 is not set | ||
442 | # CONFIG_BLK_DEV_IT8213 is not set | 447 | # CONFIG_BLK_DEV_IT8213 is not set |
443 | # CONFIG_BLK_DEV_IT821X is not set | 448 | # CONFIG_BLK_DEV_IT821X is not set |
444 | # CONFIG_BLK_DEV_NS87415 is not set | 449 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -506,8 +511,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
506 | # CONFIG_MEGARAID_NEWGEN is not set | 511 | # CONFIG_MEGARAID_NEWGEN is not set |
507 | # CONFIG_MEGARAID_LEGACY is not set | 512 | # CONFIG_MEGARAID_LEGACY is not set |
508 | # CONFIG_MEGARAID_SAS is not set | 513 | # CONFIG_MEGARAID_SAS is not set |
514 | # CONFIG_SCSI_MPT2SAS is not set | ||
509 | # CONFIG_SCSI_HPTIOP is not set | 515 | # CONFIG_SCSI_HPTIOP is not set |
510 | # CONFIG_LIBFC is not set | 516 | # CONFIG_LIBFC is not set |
517 | # CONFIG_LIBFCOE is not set | ||
511 | # CONFIG_FCOE is not set | 518 | # CONFIG_FCOE is not set |
512 | # CONFIG_SCSI_DMX3191D is not set | 519 | # CONFIG_SCSI_DMX3191D is not set |
513 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 520 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -528,6 +535,7 @@ CONFIG_SCSI_LOWLEVEL=y | |||
528 | # CONFIG_SCSI_SUNESP is not set | 535 | # CONFIG_SCSI_SUNESP is not set |
529 | # CONFIG_SCSI_SRP is not set | 536 | # CONFIG_SCSI_SRP is not set |
530 | # CONFIG_SCSI_DH is not set | 537 | # CONFIG_SCSI_DH is not set |
538 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
531 | # CONFIG_ATA is not set | 539 | # CONFIG_ATA is not set |
532 | CONFIG_MD=y | 540 | CONFIG_MD=y |
533 | CONFIG_BLK_DEV_MD=m | 541 | CONFIG_BLK_DEV_MD=m |
@@ -536,7 +544,7 @@ CONFIG_MD_RAID0=m | |||
536 | CONFIG_MD_RAID1=m | 544 | CONFIG_MD_RAID1=m |
537 | CONFIG_MD_RAID10=m | 545 | CONFIG_MD_RAID10=m |
538 | CONFIG_MD_RAID456=m | 546 | CONFIG_MD_RAID456=m |
539 | # CONFIG_MD_RAID5_RESHAPE is not set | 547 | CONFIG_MD_RAID6_PQ=m |
540 | CONFIG_MD_MULTIPATH=m | 548 | CONFIG_MD_MULTIPATH=m |
541 | # CONFIG_MD_FAULTY is not set | 549 | # CONFIG_MD_FAULTY is not set |
542 | CONFIG_BLK_DEV_DM=m | 550 | CONFIG_BLK_DEV_DM=m |
@@ -561,6 +569,7 @@ CONFIG_DM_ZERO=m | |||
561 | # CONFIG_IEEE1394 is not set | 569 | # CONFIG_IEEE1394 is not set |
562 | # CONFIG_I2O is not set | 570 | # CONFIG_I2O is not set |
563 | CONFIG_NETDEVICES=y | 571 | CONFIG_NETDEVICES=y |
572 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
564 | # CONFIG_DUMMY is not set | 573 | # CONFIG_DUMMY is not set |
565 | # CONFIG_BONDING is not set | 574 | # CONFIG_BONDING is not set |
566 | # CONFIG_MACVLAN is not set | 575 | # CONFIG_MACVLAN is not set |
@@ -589,14 +598,16 @@ CONFIG_PHYLIB=m | |||
589 | # CONFIG_MDIO_BITBANG is not set | 598 | # CONFIG_MDIO_BITBANG is not set |
590 | CONFIG_NET_ETHERNET=y | 599 | CONFIG_NET_ETHERNET=y |
591 | CONFIG_MII=m | 600 | CONFIG_MII=m |
592 | # CONFIG_SUNLANCE is not set | 601 | CONFIG_SUNLANCE=m |
593 | # CONFIG_HAPPYMEAL is not set | 602 | CONFIG_HAPPYMEAL=m |
594 | # CONFIG_SUNBMAC is not set | 603 | # CONFIG_SUNBMAC is not set |
595 | # CONFIG_SUNQE is not set | 604 | # CONFIG_SUNQE is not set |
596 | # CONFIG_SUNGEM is not set | 605 | CONFIG_SUNGEM=m |
597 | CONFIG_CASSINI=m | 606 | # CONFIG_CASSINI is not set |
598 | CONFIG_SUNVNET=m | 607 | CONFIG_SUNVNET=m |
599 | # CONFIG_NET_VENDOR_3COM is not set | 608 | # CONFIG_NET_VENDOR_3COM is not set |
609 | # CONFIG_ETHOC is not set | ||
610 | # CONFIG_DNET is not set | ||
600 | # CONFIG_NET_TULIP is not set | 611 | # CONFIG_NET_TULIP is not set |
601 | # CONFIG_HP100 is not set | 612 | # CONFIG_HP100 is not set |
602 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 613 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -631,9 +642,10 @@ CONFIG_NETDEV_1000=y | |||
631 | # CONFIG_ACENIC is not set | 642 | # CONFIG_ACENIC is not set |
632 | # CONFIG_DL2K is not set | 643 | # CONFIG_DL2K is not set |
633 | CONFIG_E1000=m | 644 | CONFIG_E1000=m |
634 | # CONFIG_E1000E is not set | 645 | CONFIG_E1000E=m |
635 | # CONFIG_IP1000 is not set | 646 | # CONFIG_IP1000 is not set |
636 | # CONFIG_IGB is not set | 647 | # CONFIG_IGB is not set |
648 | # CONFIG_IGBVF is not set | ||
637 | # CONFIG_MYRI_SBUS is not set | 649 | # CONFIG_MYRI_SBUS is not set |
638 | # CONFIG_NS83820 is not set | 650 | # CONFIG_NS83820 is not set |
639 | # CONFIG_HAMACHI is not set | 651 | # CONFIG_HAMACHI is not set |
@@ -648,6 +660,7 @@ CONFIG_BNX2=m | |||
648 | # CONFIG_QLA3XXX is not set | 660 | # CONFIG_QLA3XXX is not set |
649 | # CONFIG_ATL1 is not set | 661 | # CONFIG_ATL1 is not set |
650 | # CONFIG_ATL1E is not set | 662 | # CONFIG_ATL1E is not set |
663 | # CONFIG_ATL1C is not set | ||
651 | # CONFIG_JME is not set | 664 | # CONFIG_JME is not set |
652 | CONFIG_NETDEV_10000=y | 665 | CONFIG_NETDEV_10000=y |
653 | # CONFIG_CHELSIO_T1 is not set | 666 | # CONFIG_CHELSIO_T1 is not set |
@@ -657,6 +670,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
657 | # CONFIG_IXGBE is not set | 670 | # CONFIG_IXGBE is not set |
658 | # CONFIG_IXGB is not set | 671 | # CONFIG_IXGB is not set |
659 | # CONFIG_S2IO is not set | 672 | # CONFIG_S2IO is not set |
673 | # CONFIG_VXGE is not set | ||
660 | # CONFIG_MYRI10GE is not set | 674 | # CONFIG_MYRI10GE is not set |
661 | # CONFIG_NETXEN_NIC is not set | 675 | # CONFIG_NETXEN_NIC is not set |
662 | CONFIG_NIU=m | 676 | CONFIG_NIU=m |
@@ -666,6 +680,7 @@ CONFIG_NIU=m | |||
666 | # CONFIG_BNX2X is not set | 680 | # CONFIG_BNX2X is not set |
667 | # CONFIG_QLGE is not set | 681 | # CONFIG_QLGE is not set |
668 | # CONFIG_SFC is not set | 682 | # CONFIG_SFC is not set |
683 | # CONFIG_BE2NET is not set | ||
669 | # CONFIG_TR is not set | 684 | # CONFIG_TR is not set |
670 | 685 | ||
671 | # | 686 | # |
@@ -673,7 +688,10 @@ CONFIG_NIU=m | |||
673 | # | 688 | # |
674 | # CONFIG_WLAN_PRE80211 is not set | 689 | # CONFIG_WLAN_PRE80211 is not set |
675 | # CONFIG_WLAN_80211 is not set | 690 | # CONFIG_WLAN_80211 is not set |
676 | # CONFIG_IWLWIFI_LEDS is not set | 691 | |
692 | # | ||
693 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
694 | # | ||
677 | 695 | ||
678 | # | 696 | # |
679 | # USB Network Adapters | 697 | # USB Network Adapters |
@@ -738,7 +756,6 @@ CONFIG_MOUSE_PS2=y | |||
738 | CONFIG_MOUSE_PS2_ALPS=y | 756 | CONFIG_MOUSE_PS2_ALPS=y |
739 | CONFIG_MOUSE_PS2_LOGIPS2PP=y | 757 | CONFIG_MOUSE_PS2_LOGIPS2PP=y |
740 | CONFIG_MOUSE_PS2_SYNAPTICS=y | 758 | CONFIG_MOUSE_PS2_SYNAPTICS=y |
741 | CONFIG_MOUSE_PS2_LIFEBOOK=y | ||
742 | CONFIG_MOUSE_PS2_TRACKPOINT=y | 759 | CONFIG_MOUSE_PS2_TRACKPOINT=y |
743 | # CONFIG_MOUSE_PS2_ELANTECH is not set | 760 | # CONFIG_MOUSE_PS2_ELANTECH is not set |
744 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set | 761 | # CONFIG_MOUSE_PS2_TOUCHKIT is not set |
@@ -805,6 +822,7 @@ CONFIG_UNIX98_PTYS=y | |||
805 | # CONFIG_LEGACY_PTYS is not set | 822 | # CONFIG_LEGACY_PTYS is not set |
806 | # CONFIG_IPMI_HANDLER is not set | 823 | # CONFIG_IPMI_HANDLER is not set |
807 | CONFIG_HW_RANDOM=m | 824 | CONFIG_HW_RANDOM=m |
825 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
808 | CONFIG_HW_RANDOM_N2RNG=m | 826 | CONFIG_HW_RANDOM_N2RNG=m |
809 | # CONFIG_R3964 is not set | 827 | # CONFIG_R3964 is not set |
810 | # CONFIG_APPLICOM is not set | 828 | # CONFIG_APPLICOM is not set |
@@ -867,12 +885,9 @@ CONFIG_I2C_ALGOBIT=y | |||
867 | # Miscellaneous I2C Chip support | 885 | # Miscellaneous I2C Chip support |
868 | # | 886 | # |
869 | # CONFIG_DS1682 is not set | 887 | # CONFIG_DS1682 is not set |
870 | # CONFIG_EEPROM_AT24 is not set | ||
871 | # CONFIG_EEPROM_LEGACY is not set | ||
872 | # CONFIG_SENSORS_PCF8574 is not set | 888 | # CONFIG_SENSORS_PCF8574 is not set |
873 | # CONFIG_PCF8575 is not set | 889 | # CONFIG_PCF8575 is not set |
874 | # CONFIG_SENSORS_PCA9539 is not set | 890 | # CONFIG_SENSORS_PCA9539 is not set |
875 | # CONFIG_SENSORS_PCF8591 is not set | ||
876 | # CONFIG_SENSORS_MAX6875 is not set | 891 | # CONFIG_SENSORS_MAX6875 is not set |
877 | # CONFIG_SENSORS_TSL2550 is not set | 892 | # CONFIG_SENSORS_TSL2550 is not set |
878 | # CONFIG_I2C_DEBUG_CORE is not set | 893 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -897,12 +912,14 @@ CONFIG_HWMON=y | |||
897 | # CONFIG_SENSORS_ADT7462 is not set | 912 | # CONFIG_SENSORS_ADT7462 is not set |
898 | # CONFIG_SENSORS_ADT7470 is not set | 913 | # CONFIG_SENSORS_ADT7470 is not set |
899 | # CONFIG_SENSORS_ADT7473 is not set | 914 | # CONFIG_SENSORS_ADT7473 is not set |
915 | # CONFIG_SENSORS_ADT7475 is not set | ||
900 | # CONFIG_SENSORS_ATXP1 is not set | 916 | # CONFIG_SENSORS_ATXP1 is not set |
901 | # CONFIG_SENSORS_DS1621 is not set | 917 | # CONFIG_SENSORS_DS1621 is not set |
902 | # CONFIG_SENSORS_I5K_AMB is not set | 918 | # CONFIG_SENSORS_I5K_AMB is not set |
903 | # CONFIG_SENSORS_F71805F is not set | 919 | # CONFIG_SENSORS_F71805F is not set |
904 | # CONFIG_SENSORS_F71882FG is not set | 920 | # CONFIG_SENSORS_F71882FG is not set |
905 | # CONFIG_SENSORS_F75375S is not set | 921 | # CONFIG_SENSORS_F75375S is not set |
922 | # CONFIG_SENSORS_G760A is not set | ||
906 | # CONFIG_SENSORS_GL518SM is not set | 923 | # CONFIG_SENSORS_GL518SM is not set |
907 | # CONFIG_SENSORS_GL520SM is not set | 924 | # CONFIG_SENSORS_GL520SM is not set |
908 | # CONFIG_SENSORS_IT87 is not set | 925 | # CONFIG_SENSORS_IT87 is not set |
@@ -917,10 +934,14 @@ CONFIG_HWMON=y | |||
917 | # CONFIG_SENSORS_LM90 is not set | 934 | # CONFIG_SENSORS_LM90 is not set |
918 | # CONFIG_SENSORS_LM92 is not set | 935 | # CONFIG_SENSORS_LM92 is not set |
919 | # CONFIG_SENSORS_LM93 is not set | 936 | # CONFIG_SENSORS_LM93 is not set |
937 | # CONFIG_SENSORS_LTC4215 is not set | ||
938 | # CONFIG_SENSORS_LTC4245 is not set | ||
939 | # CONFIG_SENSORS_LM95241 is not set | ||
920 | # CONFIG_SENSORS_MAX1619 is not set | 940 | # CONFIG_SENSORS_MAX1619 is not set |
921 | # CONFIG_SENSORS_MAX6650 is not set | 941 | # CONFIG_SENSORS_MAX6650 is not set |
922 | # CONFIG_SENSORS_PC87360 is not set | 942 | # CONFIG_SENSORS_PC87360 is not set |
923 | # CONFIG_SENSORS_PC87427 is not set | 943 | # CONFIG_SENSORS_PC87427 is not set |
944 | # CONFIG_SENSORS_PCF8591 is not set | ||
924 | # CONFIG_SENSORS_SIS5595 is not set | 945 | # CONFIG_SENSORS_SIS5595 is not set |
925 | # CONFIG_SENSORS_DME1737 is not set | 946 | # CONFIG_SENSORS_DME1737 is not set |
926 | # CONFIG_SENSORS_SMSC47M1 is not set | 947 | # CONFIG_SENSORS_SMSC47M1 is not set |
@@ -957,10 +978,12 @@ CONFIG_SSB_POSSIBLE=y | |||
957 | # CONFIG_MFD_CORE is not set | 978 | # CONFIG_MFD_CORE is not set |
958 | # CONFIG_MFD_SM501 is not set | 979 | # CONFIG_MFD_SM501 is not set |
959 | # CONFIG_HTC_PASIC3 is not set | 980 | # CONFIG_HTC_PASIC3 is not set |
981 | # CONFIG_TWL4030_CORE is not set | ||
960 | # CONFIG_MFD_TMIO is not set | 982 | # CONFIG_MFD_TMIO is not set |
961 | # CONFIG_PMIC_DA903X is not set | 983 | # CONFIG_PMIC_DA903X is not set |
962 | # CONFIG_MFD_WM8400 is not set | 984 | # CONFIG_MFD_WM8400 is not set |
963 | # CONFIG_MFD_WM8350_I2C is not set | 985 | # CONFIG_MFD_WM8350_I2C is not set |
986 | # CONFIG_MFD_PCF50633 is not set | ||
964 | # CONFIG_REGULATOR is not set | 987 | # CONFIG_REGULATOR is not set |
965 | 988 | ||
966 | # | 989 | # |
@@ -1053,6 +1076,7 @@ CONFIG_FB_ATY_GX=y | |||
1053 | # CONFIG_FB_VIRTUAL is not set | 1076 | # CONFIG_FB_VIRTUAL is not set |
1054 | # CONFIG_FB_METRONOME is not set | 1077 | # CONFIG_FB_METRONOME is not set |
1055 | # CONFIG_FB_MB862XX is not set | 1078 | # CONFIG_FB_MB862XX is not set |
1079 | # CONFIG_FB_BROADSHEET is not set | ||
1056 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 1080 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set |
1057 | 1081 | ||
1058 | # | 1082 | # |
@@ -1141,6 +1165,8 @@ CONFIG_SND_ALI5451=m | |||
1141 | # CONFIG_SND_INDIGO is not set | 1165 | # CONFIG_SND_INDIGO is not set |
1142 | # CONFIG_SND_INDIGOIO is not set | 1166 | # CONFIG_SND_INDIGOIO is not set |
1143 | # CONFIG_SND_INDIGODJ is not set | 1167 | # CONFIG_SND_INDIGODJ is not set |
1168 | # CONFIG_SND_INDIGOIOX is not set | ||
1169 | # CONFIG_SND_INDIGODJX is not set | ||
1144 | # CONFIG_SND_EMU10K1 is not set | 1170 | # CONFIG_SND_EMU10K1 is not set |
1145 | # CONFIG_SND_EMU10K1X is not set | 1171 | # CONFIG_SND_EMU10K1X is not set |
1146 | # CONFIG_SND_ENS1370 is not set | 1172 | # CONFIG_SND_ENS1370 is not set |
@@ -1197,28 +1223,31 @@ CONFIG_USB_HIDDEV=y | |||
1197 | # | 1223 | # |
1198 | # Special HID drivers | 1224 | # Special HID drivers |
1199 | # | 1225 | # |
1200 | CONFIG_HID_COMPAT=y | ||
1201 | CONFIG_HID_A4TECH=y | 1226 | CONFIG_HID_A4TECH=y |
1202 | CONFIG_HID_APPLE=y | 1227 | CONFIG_HID_APPLE=y |
1203 | CONFIG_HID_BELKIN=y | 1228 | CONFIG_HID_BELKIN=y |
1204 | CONFIG_HID_BRIGHT=y | ||
1205 | CONFIG_HID_CHERRY=y | 1229 | CONFIG_HID_CHERRY=y |
1206 | CONFIG_HID_CHICONY=y | 1230 | CONFIG_HID_CHICONY=y |
1207 | CONFIG_HID_CYPRESS=y | 1231 | CONFIG_HID_CYPRESS=y |
1208 | CONFIG_HID_DELL=y | 1232 | # CONFIG_DRAGONRISE_FF is not set |
1209 | CONFIG_HID_EZKEY=y | 1233 | CONFIG_HID_EZKEY=y |
1234 | CONFIG_HID_KYE=y | ||
1210 | CONFIG_HID_GYRATION=y | 1235 | CONFIG_HID_GYRATION=y |
1236 | CONFIG_HID_KENSINGTON=y | ||
1211 | CONFIG_HID_LOGITECH=y | 1237 | CONFIG_HID_LOGITECH=y |
1212 | # CONFIG_LOGITECH_FF is not set | 1238 | # CONFIG_LOGITECH_FF is not set |
1213 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1239 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1214 | CONFIG_HID_MICROSOFT=y | 1240 | CONFIG_HID_MICROSOFT=y |
1215 | CONFIG_HID_MONTEREY=y | 1241 | CONFIG_HID_MONTEREY=y |
1242 | CONFIG_HID_NTRIG=y | ||
1216 | CONFIG_HID_PANTHERLORD=y | 1243 | CONFIG_HID_PANTHERLORD=y |
1217 | # CONFIG_PANTHERLORD_FF is not set | 1244 | # CONFIG_PANTHERLORD_FF is not set |
1218 | CONFIG_HID_PETALYNX=y | 1245 | CONFIG_HID_PETALYNX=y |
1219 | CONFIG_HID_SAMSUNG=y | 1246 | CONFIG_HID_SAMSUNG=y |
1220 | CONFIG_HID_SONY=y | 1247 | CONFIG_HID_SONY=y |
1221 | CONFIG_HID_SUNPLUS=y | 1248 | CONFIG_HID_SUNPLUS=y |
1249 | # CONFIG_GREENASIA_FF is not set | ||
1250 | CONFIG_HID_TOPSEED=y | ||
1222 | # CONFIG_THRUSTMASTER_FF is not set | 1251 | # CONFIG_THRUSTMASTER_FF is not set |
1223 | # CONFIG_ZEROPLUS_FF is not set | 1252 | # CONFIG_ZEROPLUS_FF is not set |
1224 | CONFIG_USB_SUPPORT=y | 1253 | CONFIG_USB_SUPPORT=y |
@@ -1247,6 +1276,7 @@ CONFIG_USB_DEVICEFS=y | |||
1247 | CONFIG_USB_EHCI_HCD=m | 1276 | CONFIG_USB_EHCI_HCD=m |
1248 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | 1277 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set |
1249 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1278 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1279 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1250 | # CONFIG_USB_ISP116X_HCD is not set | 1280 | # CONFIG_USB_ISP116X_HCD is not set |
1251 | # CONFIG_USB_ISP1760_HCD is not set | 1281 | # CONFIG_USB_ISP1760_HCD is not set |
1252 | CONFIG_USB_OHCI_HCD=y | 1282 | CONFIG_USB_OHCI_HCD=y |
@@ -1268,18 +1298,17 @@ CONFIG_USB_UHCI_HCD=m | |||
1268 | # CONFIG_USB_TMC is not set | 1298 | # CONFIG_USB_TMC is not set |
1269 | 1299 | ||
1270 | # | 1300 | # |
1271 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; | 1301 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
1272 | # | 1302 | # |
1273 | 1303 | ||
1274 | # | 1304 | # |
1275 | # see USB_STORAGE Help for more information | 1305 | # also be needed; see USB_STORAGE Help for more info |
1276 | # | 1306 | # |
1277 | CONFIG_USB_STORAGE=m | 1307 | CONFIG_USB_STORAGE=m |
1278 | # CONFIG_USB_STORAGE_DEBUG is not set | 1308 | # CONFIG_USB_STORAGE_DEBUG is not set |
1279 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1309 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1280 | # CONFIG_USB_STORAGE_FREECOM is not set | 1310 | # CONFIG_USB_STORAGE_FREECOM is not set |
1281 | # CONFIG_USB_STORAGE_ISD200 is not set | 1311 | # CONFIG_USB_STORAGE_ISD200 is not set |
1282 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1283 | # CONFIG_USB_STORAGE_USBAT is not set | 1312 | # CONFIG_USB_STORAGE_USBAT is not set |
1284 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1313 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1285 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1314 | # CONFIG_USB_STORAGE_SDDR55 is not set |
@@ -1315,7 +1344,6 @@ CONFIG_USB_STORAGE=m | |||
1315 | # CONFIG_USB_LED is not set | 1344 | # CONFIG_USB_LED is not set |
1316 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1345 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1317 | # CONFIG_USB_CYTHERM is not set | 1346 | # CONFIG_USB_CYTHERM is not set |
1318 | # CONFIG_USB_PHIDGET is not set | ||
1319 | # CONFIG_USB_IDMOUSE is not set | 1347 | # CONFIG_USB_IDMOUSE is not set |
1320 | # CONFIG_USB_FTDI_ELAN is not set | 1348 | # CONFIG_USB_FTDI_ELAN is not set |
1321 | # CONFIG_USB_APPLEDISPLAY is not set | 1349 | # CONFIG_USB_APPLEDISPLAY is not set |
@@ -1327,6 +1355,11 @@ CONFIG_USB_STORAGE=m | |||
1327 | # CONFIG_USB_ISIGHTFW is not set | 1355 | # CONFIG_USB_ISIGHTFW is not set |
1328 | # CONFIG_USB_VST is not set | 1356 | # CONFIG_USB_VST is not set |
1329 | # CONFIG_USB_GADGET is not set | 1357 | # CONFIG_USB_GADGET is not set |
1358 | |||
1359 | # | ||
1360 | # OTG and related infrastructure | ||
1361 | # | ||
1362 | # CONFIG_NOP_USB_XCEIV is not set | ||
1330 | # CONFIG_UWB is not set | 1363 | # CONFIG_UWB is not set |
1331 | # CONFIG_MMC is not set | 1364 | # CONFIG_MMC is not set |
1332 | # CONFIG_MEMSTICK is not set | 1365 | # CONFIG_MEMSTICK is not set |
@@ -1390,6 +1423,7 @@ CONFIG_RTC_DRV_BQ4802=y | |||
1390 | CONFIG_RTC_DRV_SUN4V=y | 1423 | CONFIG_RTC_DRV_SUN4V=y |
1391 | CONFIG_RTC_DRV_STARFIRE=y | 1424 | CONFIG_RTC_DRV_STARFIRE=y |
1392 | # CONFIG_DMADEVICES is not set | 1425 | # CONFIG_DMADEVICES is not set |
1426 | # CONFIG_AUXDISPLAY is not set | ||
1393 | # CONFIG_UIO is not set | 1427 | # CONFIG_UIO is not set |
1394 | # CONFIG_STAGING is not set | 1428 | # CONFIG_STAGING is not set |
1395 | 1429 | ||
@@ -1412,6 +1446,7 @@ CONFIG_EXT2_FS_POSIX_ACL=y | |||
1412 | CONFIG_EXT2_FS_SECURITY=y | 1446 | CONFIG_EXT2_FS_SECURITY=y |
1413 | # CONFIG_EXT2_FS_XIP is not set | 1447 | # CONFIG_EXT2_FS_XIP is not set |
1414 | CONFIG_EXT3_FS=y | 1448 | CONFIG_EXT3_FS=y |
1449 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1415 | CONFIG_EXT3_FS_XATTR=y | 1450 | CONFIG_EXT3_FS_XATTR=y |
1416 | CONFIG_EXT3_FS_POSIX_ACL=y | 1451 | CONFIG_EXT3_FS_POSIX_ACL=y |
1417 | CONFIG_EXT3_FS_SECURITY=y | 1452 | CONFIG_EXT3_FS_SECURITY=y |
@@ -1426,6 +1461,7 @@ CONFIG_FILE_LOCKING=y | |||
1426 | # CONFIG_XFS_FS is not set | 1461 | # CONFIG_XFS_FS is not set |
1427 | # CONFIG_GFS2_FS is not set | 1462 | # CONFIG_GFS2_FS is not set |
1428 | # CONFIG_OCFS2_FS is not set | 1463 | # CONFIG_OCFS2_FS is not set |
1464 | # CONFIG_BTRFS_FS is not set | ||
1429 | CONFIG_DNOTIFY=y | 1465 | CONFIG_DNOTIFY=y |
1430 | CONFIG_INOTIFY=y | 1466 | CONFIG_INOTIFY=y |
1431 | CONFIG_INOTIFY_USER=y | 1467 | CONFIG_INOTIFY_USER=y |
@@ -1435,6 +1471,11 @@ CONFIG_INOTIFY_USER=y | |||
1435 | # CONFIG_FUSE_FS is not set | 1471 | # CONFIG_FUSE_FS is not set |
1436 | 1472 | ||
1437 | # | 1473 | # |
1474 | # Caches | ||
1475 | # | ||
1476 | # CONFIG_FSCACHE is not set | ||
1477 | |||
1478 | # | ||
1438 | # CD-ROM/DVD Filesystems | 1479 | # CD-ROM/DVD Filesystems |
1439 | # | 1480 | # |
1440 | # CONFIG_ISO9660_FS is not set | 1481 | # CONFIG_ISO9660_FS is not set |
@@ -1460,10 +1501,7 @@ CONFIG_TMPFS=y | |||
1460 | CONFIG_HUGETLBFS=y | 1501 | CONFIG_HUGETLBFS=y |
1461 | CONFIG_HUGETLB_PAGE=y | 1502 | CONFIG_HUGETLB_PAGE=y |
1462 | # CONFIG_CONFIGFS_FS is not set | 1503 | # CONFIG_CONFIGFS_FS is not set |
1463 | 1504 | CONFIG_MISC_FILESYSTEMS=y | |
1464 | # | ||
1465 | # Miscellaneous filesystems | ||
1466 | # | ||
1467 | # CONFIG_ADFS_FS is not set | 1505 | # CONFIG_ADFS_FS is not set |
1468 | # CONFIG_AFFS_FS is not set | 1506 | # CONFIG_AFFS_FS is not set |
1469 | # CONFIG_ECRYPT_FS is not set | 1507 | # CONFIG_ECRYPT_FS is not set |
@@ -1473,6 +1511,7 @@ CONFIG_HUGETLB_PAGE=y | |||
1473 | # CONFIG_BFS_FS is not set | 1511 | # CONFIG_BFS_FS is not set |
1474 | # CONFIG_EFS_FS is not set | 1512 | # CONFIG_EFS_FS is not set |
1475 | # CONFIG_CRAMFS is not set | 1513 | # CONFIG_CRAMFS is not set |
1514 | # CONFIG_SQUASHFS is not set | ||
1476 | # CONFIG_VXFS_FS is not set | 1515 | # CONFIG_VXFS_FS is not set |
1477 | # CONFIG_MINIX_FS is not set | 1516 | # CONFIG_MINIX_FS is not set |
1478 | # CONFIG_OMFS_FS is not set | 1517 | # CONFIG_OMFS_FS is not set |
@@ -1481,6 +1520,7 @@ CONFIG_HUGETLB_PAGE=y | |||
1481 | # CONFIG_ROMFS_FS is not set | 1520 | # CONFIG_ROMFS_FS is not set |
1482 | # CONFIG_SYSV_FS is not set | 1521 | # CONFIG_SYSV_FS is not set |
1483 | # CONFIG_UFS_FS is not set | 1522 | # CONFIG_UFS_FS is not set |
1523 | # CONFIG_NILFS2_FS is not set | ||
1484 | CONFIG_NETWORK_FILESYSTEMS=y | 1524 | CONFIG_NETWORK_FILESYSTEMS=y |
1485 | # CONFIG_NFS_FS is not set | 1525 | # CONFIG_NFS_FS is not set |
1486 | # CONFIG_NFSD is not set | 1526 | # CONFIG_NFSD is not set |
@@ -1555,6 +1595,9 @@ CONFIG_DEBUG_KERNEL=y | |||
1555 | CONFIG_DETECT_SOFTLOCKUP=y | 1595 | CONFIG_DETECT_SOFTLOCKUP=y |
1556 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 1596 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1557 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 1597 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
1598 | CONFIG_DETECT_HUNG_TASK=y | ||
1599 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
1600 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1558 | # CONFIG_SCHED_DEBUG is not set | 1601 | # CONFIG_SCHED_DEBUG is not set |
1559 | CONFIG_SCHEDSTATS=y | 1602 | CONFIG_SCHEDSTATS=y |
1560 | # CONFIG_TIMER_STATS is not set | 1603 | # CONFIG_TIMER_STATS is not set |
@@ -1590,10 +1633,12 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
1590 | # CONFIG_FAULT_INJECTION is not set | 1633 | # CONFIG_FAULT_INJECTION is not set |
1591 | # CONFIG_LATENCYTOP is not set | 1634 | # CONFIG_LATENCYTOP is not set |
1592 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1635 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1636 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1593 | CONFIG_NOP_TRACER=y | 1637 | CONFIG_NOP_TRACER=y |
1594 | CONFIG_HAVE_FUNCTION_TRACER=y | 1638 | CONFIG_HAVE_FUNCTION_TRACER=y |
1595 | CONFIG_RING_BUFFER=y | 1639 | CONFIG_RING_BUFFER=y |
1596 | CONFIG_TRACING=y | 1640 | CONFIG_TRACING=y |
1641 | CONFIG_TRACING_SUPPORT=y | ||
1597 | 1642 | ||
1598 | # | 1643 | # |
1599 | # Tracers | 1644 | # Tracers |
@@ -1602,18 +1647,21 @@ CONFIG_TRACING=y | |||
1602 | # CONFIG_IRQSOFF_TRACER is not set | 1647 | # CONFIG_IRQSOFF_TRACER is not set |
1603 | # CONFIG_SCHED_TRACER is not set | 1648 | # CONFIG_SCHED_TRACER is not set |
1604 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 1649 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
1650 | # CONFIG_EVENT_TRACER is not set | ||
1605 | # CONFIG_BOOT_TRACER is not set | 1651 | # CONFIG_BOOT_TRACER is not set |
1606 | # CONFIG_TRACE_BRANCH_PROFILING is not set | 1652 | # CONFIG_TRACE_BRANCH_PROFILING is not set |
1607 | # CONFIG_STACK_TRACER is not set | 1653 | # CONFIG_STACK_TRACER is not set |
1654 | # CONFIG_KMEMTRACE is not set | ||
1655 | # CONFIG_WORKQUEUE_TRACER is not set | ||
1656 | CONFIG_BLK_DEV_IO_TRACE=y | ||
1608 | # CONFIG_FTRACE_STARTUP_TEST is not set | 1657 | # CONFIG_FTRACE_STARTUP_TEST is not set |
1609 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 1658 | # CONFIG_DYNAMIC_DEBUG is not set |
1610 | # CONFIG_SAMPLES is not set | 1659 | # CONFIG_SAMPLES is not set |
1611 | CONFIG_HAVE_ARCH_KGDB=y | 1660 | CONFIG_HAVE_ARCH_KGDB=y |
1612 | # CONFIG_KGDB is not set | 1661 | # CONFIG_KGDB is not set |
1613 | # CONFIG_DEBUG_STACK_USAGE is not set | 1662 | # CONFIG_DEBUG_STACK_USAGE is not set |
1614 | # CONFIG_DEBUG_DCFLUSH is not set | 1663 | # CONFIG_DEBUG_DCFLUSH is not set |
1615 | # CONFIG_STACK_DEBUG is not set | 1664 | # CONFIG_STACK_DEBUG is not set |
1616 | # CONFIG_DEBUG_PAGEALLOC is not set | ||
1617 | 1665 | ||
1618 | # | 1666 | # |
1619 | # Security options | 1667 | # Security options |
@@ -1642,10 +1690,12 @@ CONFIG_CRYPTO_BLKCIPHER2=y | |||
1642 | CONFIG_CRYPTO_HASH=y | 1690 | CONFIG_CRYPTO_HASH=y |
1643 | CONFIG_CRYPTO_HASH2=y | 1691 | CONFIG_CRYPTO_HASH2=y |
1644 | CONFIG_CRYPTO_RNG2=y | 1692 | CONFIG_CRYPTO_RNG2=y |
1693 | CONFIG_CRYPTO_PCOMP=y | ||
1645 | CONFIG_CRYPTO_MANAGER=y | 1694 | CONFIG_CRYPTO_MANAGER=y |
1646 | CONFIG_CRYPTO_MANAGER2=y | 1695 | CONFIG_CRYPTO_MANAGER2=y |
1647 | CONFIG_CRYPTO_GF128MUL=m | 1696 | CONFIG_CRYPTO_GF128MUL=m |
1648 | CONFIG_CRYPTO_NULL=m | 1697 | CONFIG_CRYPTO_NULL=m |
1698 | CONFIG_CRYPTO_WORKQUEUE=y | ||
1649 | # CONFIG_CRYPTO_CRYPTD is not set | 1699 | # CONFIG_CRYPTO_CRYPTD is not set |
1650 | CONFIG_CRYPTO_AUTHENC=y | 1700 | CONFIG_CRYPTO_AUTHENC=y |
1651 | CONFIG_CRYPTO_TEST=m | 1701 | CONFIG_CRYPTO_TEST=m |
@@ -1715,6 +1765,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
1715 | # Compression | 1765 | # Compression |
1716 | # | 1766 | # |
1717 | CONFIG_CRYPTO_DEFLATE=y | 1767 | CONFIG_CRYPTO_DEFLATE=y |
1768 | # CONFIG_CRYPTO_ZLIB is not set | ||
1718 | # CONFIG_CRYPTO_LZO is not set | 1769 | # CONFIG_CRYPTO_LZO is not set |
1719 | 1770 | ||
1720 | # | 1771 | # |
@@ -1723,11 +1774,13 @@ CONFIG_CRYPTO_DEFLATE=y | |||
1723 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 1774 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
1724 | CONFIG_CRYPTO_HW=y | 1775 | CONFIG_CRYPTO_HW=y |
1725 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | 1776 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set |
1777 | CONFIG_BINARY_PRINTF=y | ||
1726 | 1778 | ||
1727 | # | 1779 | # |
1728 | # Library routines | 1780 | # Library routines |
1729 | # | 1781 | # |
1730 | CONFIG_BITREVERSE=y | 1782 | CONFIG_BITREVERSE=y |
1783 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1731 | CONFIG_CRC_CCITT=m | 1784 | CONFIG_CRC_CCITT=m |
1732 | CONFIG_CRC16=m | 1785 | CONFIG_CRC16=m |
1733 | # CONFIG_CRC_T10DIF is not set | 1786 | # CONFIG_CRC_T10DIF is not set |
@@ -1737,8 +1790,11 @@ CONFIG_CRC32=y | |||
1737 | CONFIG_LIBCRC32C=m | 1790 | CONFIG_LIBCRC32C=m |
1738 | CONFIG_ZLIB_INFLATE=y | 1791 | CONFIG_ZLIB_INFLATE=y |
1739 | CONFIG_ZLIB_DEFLATE=y | 1792 | CONFIG_ZLIB_DEFLATE=y |
1740 | CONFIG_PLIST=y | 1793 | CONFIG_DECOMPRESS_GZIP=y |
1794 | CONFIG_DECOMPRESS_BZIP2=y | ||
1795 | CONFIG_DECOMPRESS_LZMA=y | ||
1741 | CONFIG_HAS_IOMEM=y | 1796 | CONFIG_HAS_IOMEM=y |
1742 | CONFIG_HAS_IOPORT=y | 1797 | CONFIG_HAS_IOPORT=y |
1743 | CONFIG_HAS_DMA=y | 1798 | CONFIG_HAS_DMA=y |
1744 | CONFIG_HAVE_LMB=y | 1799 | CONFIG_HAVE_LMB=y |
1800 | CONFIG_NLATTR=y | ||
diff --git a/arch/sparc/kernel/head_32.S b/arch/sparc/kernel/head_32.S index f0b4b516304f..6b4d8acc4c83 100644 --- a/arch/sparc/kernel/head_32.S +++ b/arch/sparc/kernel/head_32.S | |||
@@ -72,7 +72,7 @@ sun4e_notsup: | |||
72 | .align 4 | 72 | .align 4 |
73 | 73 | ||
74 | /* The Sparc trap table, bootloader gives us control at _start. */ | 74 | /* The Sparc trap table, bootloader gives us control at _start. */ |
75 | .section .text.head,"ax" | 75 | __HEAD |
76 | .globl start, _stext, _start, __stext | 76 | .globl start, _stext, _start, __stext |
77 | .globl trapbase | 77 | .globl trapbase |
78 | _start: /* danger danger */ | 78 | _start: /* danger danger */ |
@@ -735,7 +735,7 @@ go_to_highmem: | |||
735 | nop | 735 | nop |
736 | 736 | ||
737 | /* The code above should be at beginning and we have to take care about | 737 | /* The code above should be at beginning and we have to take care about |
738 | * short jumps, as branching to .text.init section from .text is usually | 738 | * short jumps, as branching to .init.text section from .text is usually |
739 | * impossible */ | 739 | * impossible */ |
740 | __INIT | 740 | __INIT |
741 | /* Acquire boot time privileged register values, this will help debugging. | 741 | /* Acquire boot time privileged register values, this will help debugging. |
diff --git a/arch/sparc/kernel/head_64.S b/arch/sparc/kernel/head_64.S index 3a1b7bf03cff..91bf4c7f79b9 100644 --- a/arch/sparc/kernel/head_64.S +++ b/arch/sparc/kernel/head_64.S | |||
@@ -467,7 +467,7 @@ jump_to_sun4u_init: | |||
467 | jmpl %g2 + %g0, %g0 | 467 | jmpl %g2 + %g0, %g0 |
468 | nop | 468 | nop |
469 | 469 | ||
470 | .section .text.init.refok | 470 | __REF |
471 | sun4u_init: | 471 | sun4u_init: |
472 | BRANCH_IF_SUN4V(g1, sun4v_init) | 472 | BRANCH_IF_SUN4V(g1, sun4v_init) |
473 | 473 | ||
diff --git a/arch/sparc/kernel/of_device_32.c b/arch/sparc/kernel/of_device_32.c index 0a83bd737654..c8f14c1dc521 100644 --- a/arch/sparc/kernel/of_device_32.c +++ b/arch/sparc/kernel/of_device_32.c | |||
@@ -246,8 +246,25 @@ static unsigned long of_bus_pci_get_flags(const u32 *addr, unsigned long flags) | |||
246 | 246 | ||
247 | static int of_bus_sbus_match(struct device_node *np) | 247 | static int of_bus_sbus_match(struct device_node *np) |
248 | { | 248 | { |
249 | return !strcmp(np->name, "sbus") || | 249 | struct device_node *dp = np; |
250 | !strcmp(np->name, "sbi"); | 250 | |
251 | while (dp) { | ||
252 | if (!strcmp(dp->name, "sbus") || | ||
253 | !strcmp(dp->name, "sbi")) | ||
254 | return 1; | ||
255 | |||
256 | /* Have a look at use_1to1_mapping(). We're trying | ||
257 | * to match SBUS if that's the top-level bus and we | ||
258 | * don't have some intervening real bus that provides | ||
259 | * ranges based translations. | ||
260 | */ | ||
261 | if (of_find_property(dp, "ranges", NULL) != NULL) | ||
262 | break; | ||
263 | |||
264 | dp = dp->parent; | ||
265 | } | ||
266 | |||
267 | return 0; | ||
251 | } | 268 | } |
252 | 269 | ||
253 | static void of_bus_sbus_count_cells(struct device_node *child, | 270 | static void of_bus_sbus_count_cells(struct device_node *child, |
diff --git a/arch/sparc/kernel/of_device_64.c b/arch/sparc/kernel/of_device_64.c index 27381f1baffc..5ac287ac03de 100644 --- a/arch/sparc/kernel/of_device_64.c +++ b/arch/sparc/kernel/of_device_64.c | |||
@@ -300,8 +300,25 @@ static unsigned long of_bus_pci_get_flags(const u32 *addr, unsigned long flags) | |||
300 | 300 | ||
301 | static int of_bus_sbus_match(struct device_node *np) | 301 | static int of_bus_sbus_match(struct device_node *np) |
302 | { | 302 | { |
303 | return !strcmp(np->name, "sbus") || | 303 | struct device_node *dp = np; |
304 | !strcmp(np->name, "sbi"); | 304 | |
305 | while (dp) { | ||
306 | if (!strcmp(dp->name, "sbus") || | ||
307 | !strcmp(dp->name, "sbi")) | ||
308 | return 1; | ||
309 | |||
310 | /* Have a look at use_1to1_mapping(). We're trying | ||
311 | * to match SBUS if that's the top-level bus and we | ||
312 | * don't have some intervening real bus that provides | ||
313 | * ranges based translations. | ||
314 | */ | ||
315 | if (of_find_property(dp, "ranges", NULL) != NULL) | ||
316 | break; | ||
317 | |||
318 | dp = dp->parent; | ||
319 | } | ||
320 | |||
321 | return 0; | ||
305 | } | 322 | } |
306 | 323 | ||
307 | static void of_bus_sbus_count_cells(struct device_node *child, | 324 | static void of_bus_sbus_count_cells(struct device_node *child, |
diff --git a/arch/sparc/kernel/sys_sparc32.c b/arch/sparc/kernel/sys_sparc32.c index e800503879e4..f5000a460c05 100644 --- a/arch/sparc/kernel/sys_sparc32.c +++ b/arch/sparc/kernel/sys_sparc32.c | |||
@@ -206,21 +206,12 @@ asmlinkage long compat_sys_fstatat64(unsigned int dfd, char __user *filename, | |||
206 | struct compat_stat64 __user * statbuf, int flag) | 206 | struct compat_stat64 __user * statbuf, int flag) |
207 | { | 207 | { |
208 | struct kstat stat; | 208 | struct kstat stat; |
209 | int error = -EINVAL; | 209 | int error; |
210 | |||
211 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | ||
212 | goto out; | ||
213 | |||
214 | if (flag & AT_SYMLINK_NOFOLLOW) | ||
215 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
216 | else | ||
217 | error = vfs_stat_fd(dfd, filename, &stat); | ||
218 | |||
219 | if (!error) | ||
220 | error = cp_compat_stat64(&stat, statbuf); | ||
221 | 210 | ||
222 | out: | 211 | error = vfs_fstatat(dfd, filename, &stat, flag); |
223 | return error; | 212 | if (error) |
213 | return error; | ||
214 | return cp_compat_stat64(&stat, statbuf); | ||
224 | } | 215 | } |
225 | 216 | ||
226 | asmlinkage long compat_sys_sysfs(int option, u32 arg1, u32 arg2) | 217 | asmlinkage long compat_sys_sysfs(int option, u32 arg1, u32 arg2) |
diff --git a/arch/sparc/kernel/time_64.c b/arch/sparc/kernel/time_64.c index db310aa00183..5c12e79b4bdf 100644 --- a/arch/sparc/kernel/time_64.c +++ b/arch/sparc/kernel/time_64.c | |||
@@ -814,6 +814,11 @@ void udelay(unsigned long usecs) | |||
814 | } | 814 | } |
815 | EXPORT_SYMBOL(udelay); | 815 | EXPORT_SYMBOL(udelay); |
816 | 816 | ||
817 | static cycle_t clocksource_tick_read(struct clocksource *cs) | ||
818 | { | ||
819 | return tick_ops->get_tick(); | ||
820 | } | ||
821 | |||
817 | void __init time_init(void) | 822 | void __init time_init(void) |
818 | { | 823 | { |
819 | unsigned long freq = sparc64_init_timers(); | 824 | unsigned long freq = sparc64_init_timers(); |
@@ -827,7 +832,7 @@ void __init time_init(void) | |||
827 | clocksource_tick.mult = | 832 | clocksource_tick.mult = |
828 | clocksource_hz2mult(freq, | 833 | clocksource_hz2mult(freq, |
829 | clocksource_tick.shift); | 834 | clocksource_tick.shift); |
830 | clocksource_tick.read = tick_ops->get_tick; | 835 | clocksource_tick.read = clocksource_tick_read; |
831 | 836 | ||
832 | printk("clocksource: mult[%x] shift[%d]\n", | 837 | printk("clocksource: mult[%x] shift[%d]\n", |
833 | clocksource_tick.mult, clocksource_tick.shift); | 838 | clocksource_tick.mult, clocksource_tick.shift); |
diff --git a/arch/sparc/kernel/vmlinux.lds.S b/arch/sparc/kernel/vmlinux.lds.S index 76267085b13b..fcbbd000ec08 100644 --- a/arch/sparc/kernel/vmlinux.lds.S +++ b/arch/sparc/kernel/vmlinux.lds.S | |||
@@ -41,7 +41,7 @@ SECTIONS | |||
41 | .text TEXTSTART : | 41 | .text TEXTSTART : |
42 | { | 42 | { |
43 | _text = .; | 43 | _text = .; |
44 | *(.text.head) | 44 | HEAD_TEXT |
45 | TEXT_TEXT | 45 | TEXT_TEXT |
46 | SCHED_TEXT | 46 | SCHED_TEXT |
47 | LOCK_TEXT | 47 | LOCK_TEXT |
diff --git a/arch/um/Kconfig.rest b/arch/um/Kconfig.rest index 7b5cea75a6c4..0ccad0ff6d6e 100644 --- a/arch/um/Kconfig.rest +++ b/arch/um/Kconfig.rest | |||
@@ -36,7 +36,7 @@ source "drivers/leds/Kconfig" | |||
36 | 36 | ||
37 | #This is just to shut up some Kconfig warnings, so no prompt. | 37 | #This is just to shut up some Kconfig warnings, so no prompt. |
38 | config INPUT | 38 | config INPUT |
39 | bool | 39 | tristate |
40 | default n | 40 | default n |
41 | 41 | ||
42 | source "arch/um/Kconfig.debug" | 42 | source "arch/um/Kconfig.debug" |
diff --git a/arch/um/kernel/time.c b/arch/um/kernel/time.c index b13a87a3ec95..c8b9c469fcd7 100644 --- a/arch/um/kernel/time.c +++ b/arch/um/kernel/time.c | |||
@@ -65,7 +65,7 @@ static irqreturn_t um_timer(int irq, void *dev) | |||
65 | return IRQ_HANDLED; | 65 | return IRQ_HANDLED; |
66 | } | 66 | } |
67 | 67 | ||
68 | static cycle_t itimer_read(void) | 68 | static cycle_t itimer_read(struct clocksource *cs) |
69 | { | 69 | { |
70 | return os_nsecs() / 1000; | 70 | return os_nsecs() / 1000; |
71 | } | 71 | } |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index c9086e6307a5..df9e885eee14 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -277,6 +277,7 @@ config SPARSE_IRQ | |||
277 | config NUMA_MIGRATE_IRQ_DESC | 277 | config NUMA_MIGRATE_IRQ_DESC |
278 | bool "Move irq desc when changing irq smp_affinity" | 278 | bool "Move irq desc when changing irq smp_affinity" |
279 | depends on SPARSE_IRQ && NUMA | 279 | depends on SPARSE_IRQ && NUMA |
280 | depends on BROKEN | ||
280 | default n | 281 | default n |
281 | ---help--- | 282 | ---help--- |
282 | This enables moving irq_desc to cpu/node that irq will use handled. | 283 | This enables moving irq_desc to cpu/node that irq will use handled. |
@@ -664,6 +665,7 @@ config MAXSMP | |||
664 | 665 | ||
665 | config NR_CPUS | 666 | config NR_CPUS |
666 | int "Maximum number of CPUs" if SMP && !MAXSMP | 667 | int "Maximum number of CPUs" if SMP && !MAXSMP |
668 | range 2 8 if SMP && X86_32 && !X86_BIGSMP | ||
667 | range 2 512 if SMP && !MAXSMP | 669 | range 2 512 if SMP && !MAXSMP |
668 | default "1" if !SMP | 670 | default "1" if !SMP |
669 | default "4096" if MAXSMP | 671 | default "4096" if MAXSMP |
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index f05d8c91d9e5..8c86b72afdc2 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -153,7 +153,7 @@ endif | |||
153 | 153 | ||
154 | boot := arch/x86/boot | 154 | boot := arch/x86/boot |
155 | 155 | ||
156 | BOOT_TARGETS = bzlilo bzdisk fdimage fdimage144 fdimage288 isoimage install | 156 | BOOT_TARGETS = bzlilo bzdisk fdimage fdimage144 fdimage288 isoimage |
157 | 157 | ||
158 | PHONY += bzImage $(BOOT_TARGETS) | 158 | PHONY += bzImage $(BOOT_TARGETS) |
159 | 159 | ||
@@ -171,6 +171,10 @@ bzImage: vmlinux | |||
171 | $(BOOT_TARGETS): vmlinux | 171 | $(BOOT_TARGETS): vmlinux |
172 | $(Q)$(MAKE) $(build)=$(boot) $@ | 172 | $(Q)$(MAKE) $(build)=$(boot) $@ |
173 | 173 | ||
174 | PHONY += install | ||
175 | install: | ||
176 | $(Q)$(MAKE) $(build)=$(boot) $@ | ||
177 | |||
174 | PHONY += vdso_install | 178 | PHONY += vdso_install |
175 | vdso_install: | 179 | vdso_install: |
176 | $(Q)$(MAKE) $(build)=arch/x86/vdso $@ | 180 | $(Q)$(MAKE) $(build)=arch/x86/vdso $@ |
diff --git a/arch/x86/ia32/sys_ia32.c b/arch/x86/ia32/sys_ia32.c index efac92fd1efb..085a8c35f149 100644 --- a/arch/x86/ia32/sys_ia32.c +++ b/arch/x86/ia32/sys_ia32.c | |||
@@ -129,21 +129,12 @@ asmlinkage long sys32_fstatat(unsigned int dfd, char __user *filename, | |||
129 | struct stat64 __user *statbuf, int flag) | 129 | struct stat64 __user *statbuf, int flag) |
130 | { | 130 | { |
131 | struct kstat stat; | 131 | struct kstat stat; |
132 | int error = -EINVAL; | 132 | int error; |
133 | 133 | ||
134 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | 134 | error = vfs_fstatat(dfd, filename, &stat, flag); |
135 | goto out; | 135 | if (error) |
136 | 136 | return error; | |
137 | if (flag & AT_SYMLINK_NOFOLLOW) | 137 | return cp_stat64(statbuf, &stat); |
138 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
139 | else | ||
140 | error = vfs_stat_fd(dfd, filename, &stat); | ||
141 | |||
142 | if (!error) | ||
143 | error = cp_stat64(statbuf, &stat); | ||
144 | |||
145 | out: | ||
146 | return error; | ||
147 | } | 138 | } |
148 | 139 | ||
149 | /* | 140 | /* |
diff --git a/arch/x86/include/asm/desc.h b/arch/x86/include/asm/desc.h index 5623c50d67b2..c45f415ce315 100644 --- a/arch/x86/include/asm/desc.h +++ b/arch/x86/include/asm/desc.h | |||
@@ -37,7 +37,7 @@ extern gate_desc idt_table[]; | |||
37 | struct gdt_page { | 37 | struct gdt_page { |
38 | struct desc_struct gdt[GDT_ENTRIES]; | 38 | struct desc_struct gdt[GDT_ENTRIES]; |
39 | } __attribute__((aligned(PAGE_SIZE))); | 39 | } __attribute__((aligned(PAGE_SIZE))); |
40 | DECLARE_PER_CPU(struct gdt_page, gdt_page); | 40 | DECLARE_PER_CPU_PAGE_ALIGNED(struct gdt_page, gdt_page); |
41 | 41 | ||
42 | static inline struct desc_struct *get_cpu_gdt_table(unsigned int cpu) | 42 | static inline struct desc_struct *get_cpu_gdt_table(unsigned int cpu) |
43 | { | 43 | { |
diff --git a/arch/x86/include/asm/hardirq.h b/arch/x86/include/asm/hardirq.h index 039db6aa8e02..37555e52f980 100644 --- a/arch/x86/include/asm/hardirq.h +++ b/arch/x86/include/asm/hardirq.h | |||
@@ -26,7 +26,7 @@ typedef struct { | |||
26 | #endif | 26 | #endif |
27 | } ____cacheline_aligned irq_cpustat_t; | 27 | } ____cacheline_aligned irq_cpustat_t; |
28 | 28 | ||
29 | DECLARE_PER_CPU(irq_cpustat_t, irq_stat); | 29 | DECLARE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat); |
30 | 30 | ||
31 | /* We can have at most NR_VECTORS irqs routed to a cpu at a time */ | 31 | /* We can have at most NR_VECTORS irqs routed to a cpu at a time */ |
32 | #define MAX_HARDIRQS_PER_CPU NR_VECTORS | 32 | #define MAX_HARDIRQS_PER_CPU NR_VECTORS |
diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h index fcf4d92e7e04..c2cceae709c8 100644 --- a/arch/x86/include/asm/processor.h +++ b/arch/x86/include/asm/processor.h | |||
@@ -138,7 +138,7 @@ extern struct tss_struct doublefault_tss; | |||
138 | extern __u32 cleared_cpu_caps[NCAPINTS]; | 138 | extern __u32 cleared_cpu_caps[NCAPINTS]; |
139 | 139 | ||
140 | #ifdef CONFIG_SMP | 140 | #ifdef CONFIG_SMP |
141 | DECLARE_PER_CPU(struct cpuinfo_x86, cpu_info); | 141 | DECLARE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info); |
142 | #define cpu_data(cpu) per_cpu(cpu_info, cpu) | 142 | #define cpu_data(cpu) per_cpu(cpu_info, cpu) |
143 | #define current_cpu_data __get_cpu_var(cpu_info) | 143 | #define current_cpu_data __get_cpu_var(cpu_info) |
144 | #else | 144 | #else |
@@ -270,7 +270,7 @@ struct tss_struct { | |||
270 | 270 | ||
271 | } ____cacheline_aligned; | 271 | } ____cacheline_aligned; |
272 | 272 | ||
273 | DECLARE_PER_CPU(struct tss_struct, init_tss); | 273 | DECLARE_PER_CPU_SHARED_ALIGNED(struct tss_struct, init_tss); |
274 | 274 | ||
275 | /* | 275 | /* |
276 | * Save the original ist values for checking stack pointers during debugging | 276 | * Save the original ist values for checking stack pointers during debugging |
@@ -393,7 +393,7 @@ union irq_stack_union { | |||
393 | }; | 393 | }; |
394 | }; | 394 | }; |
395 | 395 | ||
396 | DECLARE_PER_CPU(union irq_stack_union, irq_stack_union); | 396 | DECLARE_PER_CPU_FIRST(union irq_stack_union, irq_stack_union); |
397 | DECLARE_INIT_PER_CPU(irq_stack_union); | 397 | DECLARE_INIT_PER_CPU(irq_stack_union); |
398 | 398 | ||
399 | DECLARE_PER_CPU(char *, irq_stack_ptr); | 399 | DECLARE_PER_CPU(char *, irq_stack_ptr); |
diff --git a/arch/x86/include/asm/tlbflush.h b/arch/x86/include/asm/tlbflush.h index d3539f998f88..16a5c84b0329 100644 --- a/arch/x86/include/asm/tlbflush.h +++ b/arch/x86/include/asm/tlbflush.h | |||
@@ -152,7 +152,7 @@ struct tlb_state { | |||
152 | struct mm_struct *active_mm; | 152 | struct mm_struct *active_mm; |
153 | int state; | 153 | int state; |
154 | }; | 154 | }; |
155 | DECLARE_PER_CPU(struct tlb_state, cpu_tlbstate); | 155 | DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate); |
156 | 156 | ||
157 | static inline void reset_lazy_tlbstate(void) | 157 | static inline void reset_lazy_tlbstate(void) |
158 | { | 158 | { |
diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h index 892b119dba6f..f44b49abca49 100644 --- a/arch/x86/include/asm/topology.h +++ b/arch/x86/include/asm/topology.h | |||
@@ -200,7 +200,7 @@ static inline void arch_fix_phys_package_id(int num, u32 slot) | |||
200 | } | 200 | } |
201 | 201 | ||
202 | struct pci_bus; | 202 | struct pci_bus; |
203 | void set_pci_bus_resources_arch_default(struct pci_bus *b); | 203 | void x86_pci_root_bus_res_quirks(struct pci_bus *b); |
204 | 204 | ||
205 | #ifdef CONFIG_SMP | 205 | #ifdef CONFIG_SMP |
206 | #define mc_capable() (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids) | 206 | #define mc_capable() (cpumask_weight(cpu_core_mask(0)) != nr_cpu_ids) |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index a2789e42e162..30da617d18e4 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
@@ -3670,12 +3670,14 @@ int arch_setup_hpet_msi(unsigned int irq) | |||
3670 | { | 3670 | { |
3671 | int ret; | 3671 | int ret; |
3672 | struct msi_msg msg; | 3672 | struct msi_msg msg; |
3673 | struct irq_desc *desc = irq_to_desc(irq); | ||
3673 | 3674 | ||
3674 | ret = msi_compose_msg(NULL, irq, &msg); | 3675 | ret = msi_compose_msg(NULL, irq, &msg); |
3675 | if (ret < 0) | 3676 | if (ret < 0) |
3676 | return ret; | 3677 | return ret; |
3677 | 3678 | ||
3678 | hpet_msi_write(irq, &msg); | 3679 | hpet_msi_write(irq, &msg); |
3680 | desc->status |= IRQ_MOVE_PCNTXT; | ||
3679 | set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq, | 3681 | set_irq_chip_and_handler_name(irq, &hpet_msi_type, handle_edge_irq, |
3680 | "edge"); | 3682 | "edge"); |
3681 | 3683 | ||
diff --git a/arch/x86/kernel/apic/nmi.c b/arch/x86/kernel/apic/nmi.c index d6bd62407152..ce4fbfa315a1 100644 --- a/arch/x86/kernel/apic/nmi.c +++ b/arch/x86/kernel/apic/nmi.c | |||
@@ -138,7 +138,7 @@ int __init check_nmi_watchdog(void) | |||
138 | if (!prev_nmi_count) | 138 | if (!prev_nmi_count) |
139 | goto error; | 139 | goto error; |
140 | 140 | ||
141 | alloc_cpumask_var(&backtrace_mask, GFP_KERNEL); | 141 | alloc_cpumask_var(&backtrace_mask, GFP_KERNEL|__GFP_ZERO); |
142 | printk(KERN_INFO "Testing NMI watchdog ... "); | 142 | printk(KERN_INFO "Testing NMI watchdog ... "); |
143 | 143 | ||
144 | #ifdef CONFIG_SMP | 144 | #ifdef CONFIG_SMP |
@@ -414,7 +414,8 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason) | |||
414 | touched = 1; | 414 | touched = 1; |
415 | } | 415 | } |
416 | 416 | ||
417 | if (cpumask_test_cpu(cpu, backtrace_mask)) { | 417 | /* We can be called before check_nmi_watchdog, hence NULL check. */ |
418 | if (backtrace_mask != NULL && cpumask_test_cpu(cpu, backtrace_mask)) { | ||
418 | static DEFINE_SPINLOCK(lock); /* Serialise the printks */ | 419 | static DEFINE_SPINLOCK(lock); /* Serialise the printks */ |
419 | 420 | ||
420 | spin_lock(&lock); | 421 | spin_lock(&lock); |
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index de1a50af807b..2bda69352976 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/timer.h> | 19 | #include <linux/timer.h> |
20 | #include <linux/cpu.h> | 20 | #include <linux/cpu.h> |
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/io.h> | ||
22 | 23 | ||
23 | #include <asm/uv/uv_mmrs.h> | 24 | #include <asm/uv/uv_mmrs.h> |
24 | #include <asm/uv/uv_hub.h> | 25 | #include <asm/uv/uv_hub.h> |
@@ -34,6 +35,17 @@ DEFINE_PER_CPU(int, x2apic_extra_bits); | |||
34 | 35 | ||
35 | static enum uv_system_type uv_system_type; | 36 | static enum uv_system_type uv_system_type; |
36 | 37 | ||
38 | static int early_get_nodeid(void) | ||
39 | { | ||
40 | union uvh_node_id_u node_id; | ||
41 | unsigned long *mmr; | ||
42 | |||
43 | mmr = early_ioremap(UV_LOCAL_MMR_BASE | UVH_NODE_ID, sizeof(*mmr)); | ||
44 | node_id.v = *mmr; | ||
45 | early_iounmap(mmr, sizeof(*mmr)); | ||
46 | return node_id.s.node_id; | ||
47 | } | ||
48 | |||
37 | static int uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id) | 49 | static int uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id) |
38 | { | 50 | { |
39 | if (!strcmp(oem_id, "SGI")) { | 51 | if (!strcmp(oem_id, "SGI")) { |
@@ -42,6 +54,8 @@ static int uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id) | |||
42 | else if (!strcmp(oem_table_id, "UVX")) | 54 | else if (!strcmp(oem_table_id, "UVX")) |
43 | uv_system_type = UV_X2APIC; | 55 | uv_system_type = UV_X2APIC; |
44 | else if (!strcmp(oem_table_id, "UVH")) { | 56 | else if (!strcmp(oem_table_id, "UVH")) { |
57 | __get_cpu_var(x2apic_extra_bits) = | ||
58 | early_get_nodeid() << (UV_APIC_PNODE_SHIFT - 1); | ||
45 | uv_system_type = UV_NON_UNIQUE_APIC; | 59 | uv_system_type = UV_NON_UNIQUE_APIC; |
46 | return 1; | 60 | return 1; |
47 | } | 61 | } |
@@ -638,6 +652,7 @@ void __init uv_system_init(void) | |||
638 | if (uv_node_to_blade[nid] >= 0) | 652 | if (uv_node_to_blade[nid] >= 0) |
639 | continue; | 653 | continue; |
640 | paddr = node_start_pfn(nid) << PAGE_SHIFT; | 654 | paddr = node_start_pfn(nid) << PAGE_SHIFT; |
655 | paddr = uv_soc_phys_ram_to_gpa(paddr); | ||
641 | pnode = (paddr >> m_val) & pnode_mask; | 656 | pnode = (paddr >> m_val) & pnode_mask; |
642 | blade = boot_pnode_to_blade(pnode); | 657 | blade = boot_pnode_to_blade(pnode); |
643 | uv_node_to_blade[nid] = blade; | 658 | uv_node_to_blade[nid] = blade; |
diff --git a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index ecdb682ab516..208ecf6643df 100644 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | |||
@@ -65,14 +65,18 @@ enum { | |||
65 | struct acpi_cpufreq_data { | 65 | struct acpi_cpufreq_data { |
66 | struct acpi_processor_performance *acpi_data; | 66 | struct acpi_processor_performance *acpi_data; |
67 | struct cpufreq_frequency_table *freq_table; | 67 | struct cpufreq_frequency_table *freq_table; |
68 | unsigned int max_freq; | ||
69 | unsigned int resume; | 68 | unsigned int resume; |
70 | unsigned int cpu_feature; | 69 | unsigned int cpu_feature; |
71 | u64 saved_aperf, saved_mperf; | ||
72 | }; | 70 | }; |
73 | 71 | ||
74 | static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data); | 72 | static DEFINE_PER_CPU(struct acpi_cpufreq_data *, drv_data); |
75 | 73 | ||
74 | struct acpi_msr_data { | ||
75 | u64 saved_aperf, saved_mperf; | ||
76 | }; | ||
77 | |||
78 | static DEFINE_PER_CPU(struct acpi_msr_data, msr_data); | ||
79 | |||
76 | DEFINE_TRACE(power_mark); | 80 | DEFINE_TRACE(power_mark); |
77 | 81 | ||
78 | /* acpi_perf_data is a pointer to percpu data. */ | 82 | /* acpi_perf_data is a pointer to percpu data. */ |
@@ -287,11 +291,11 @@ static unsigned int get_measured_perf(struct cpufreq_policy *policy, | |||
287 | return 0; | 291 | return 0; |
288 | 292 | ||
289 | cur.aperf.whole = readin.aperf.whole - | 293 | cur.aperf.whole = readin.aperf.whole - |
290 | per_cpu(drv_data, cpu)->saved_aperf; | 294 | per_cpu(msr_data, cpu).saved_aperf; |
291 | cur.mperf.whole = readin.mperf.whole - | 295 | cur.mperf.whole = readin.mperf.whole - |
292 | per_cpu(drv_data, cpu)->saved_mperf; | 296 | per_cpu(msr_data, cpu).saved_mperf; |
293 | per_cpu(drv_data, cpu)->saved_aperf = readin.aperf.whole; | 297 | per_cpu(msr_data, cpu).saved_aperf = readin.aperf.whole; |
294 | per_cpu(drv_data, cpu)->saved_mperf = readin.mperf.whole; | 298 | per_cpu(msr_data, cpu).saved_mperf = readin.mperf.whole; |
295 | 299 | ||
296 | #ifdef __i386__ | 300 | #ifdef __i386__ |
297 | /* | 301 | /* |
@@ -335,7 +339,7 @@ static unsigned int get_measured_perf(struct cpufreq_policy *policy, | |||
335 | 339 | ||
336 | #endif | 340 | #endif |
337 | 341 | ||
338 | retval = per_cpu(drv_data, policy->cpu)->max_freq * perf_percent / 100; | 342 | retval = (policy->cpuinfo.max_freq * perf_percent) / 100; |
339 | 343 | ||
340 | return retval; | 344 | return retval; |
341 | } | 345 | } |
@@ -688,16 +692,11 @@ static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy) | |||
688 | /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */ | 692 | /* Check for high latency (>20uS) from buggy BIOSes, like on T42 */ |
689 | if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE && | 693 | if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE && |
690 | policy->cpuinfo.transition_latency > 20 * 1000) { | 694 | policy->cpuinfo.transition_latency > 20 * 1000) { |
691 | static int print_once; | ||
692 | policy->cpuinfo.transition_latency = 20 * 1000; | 695 | policy->cpuinfo.transition_latency = 20 * 1000; |
693 | if (!print_once) { | 696 | printk_once(KERN_INFO "Capping off P-state tranision" |
694 | print_once = 1; | 697 | " latency at 20 uS\n"); |
695 | printk(KERN_INFO "Capping off P-state tranision latency" | ||
696 | " at 20 uS\n"); | ||
697 | } | ||
698 | } | 698 | } |
699 | 699 | ||
700 | data->max_freq = perf->states[0].core_frequency * 1000; | ||
701 | /* table init */ | 700 | /* table init */ |
702 | for (i = 0; i < perf->state_count; i++) { | 701 | for (i = 0; i < perf->state_count; i++) { |
703 | if (i > 0 && perf->states[i].core_frequency >= | 702 | if (i > 0 && perf->states[i].core_frequency >= |
@@ -716,6 +715,9 @@ static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy) | |||
716 | if (result) | 715 | if (result) |
717 | goto err_freqfree; | 716 | goto err_freqfree; |
718 | 717 | ||
718 | if (perf->states[0].core_frequency * 1000 != policy->cpuinfo.max_freq) | ||
719 | printk(KERN_WARNING FW_WARN "P-state 0 is not max freq\n"); | ||
720 | |||
719 | switch (perf->control_register.space_id) { | 721 | switch (perf->control_register.space_id) { |
720 | case ACPI_ADR_SPACE_SYSTEM_IO: | 722 | case ACPI_ADR_SPACE_SYSTEM_IO: |
721 | /* Current speed is unknown and not detectable by IO port */ | 723 | /* Current speed is unknown and not detectable by IO port */ |
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index a331ec38af9e..38946c6e8433 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -1410,7 +1410,10 @@ ENTRY(paranoid_exit) | |||
1410 | paranoid_swapgs: | 1410 | paranoid_swapgs: |
1411 | TRACE_IRQS_IRETQ 0 | 1411 | TRACE_IRQS_IRETQ 0 |
1412 | SWAPGS_UNSAFE_STACK | 1412 | SWAPGS_UNSAFE_STACK |
1413 | RESTORE_ALL 8 | ||
1414 | jmp irq_return | ||
1413 | paranoid_restore: | 1415 | paranoid_restore: |
1416 | TRACE_IRQS_IRETQ 0 | ||
1414 | RESTORE_ALL 8 | 1417 | RESTORE_ALL 8 |
1415 | jmp irq_return | 1418 | jmp irq_return |
1416 | paranoid_userspace: | 1419 | paranoid_userspace: |
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 648b3a2a3a44..81408b93f887 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c | |||
@@ -236,6 +236,10 @@ static void hpet_stop_counter(void) | |||
236 | unsigned long cfg = hpet_readl(HPET_CFG); | 236 | unsigned long cfg = hpet_readl(HPET_CFG); |
237 | cfg &= ~HPET_CFG_ENABLE; | 237 | cfg &= ~HPET_CFG_ENABLE; |
238 | hpet_writel(cfg, HPET_CFG); | 238 | hpet_writel(cfg, HPET_CFG); |
239 | } | ||
240 | |||
241 | static void hpet_reset_counter(void) | ||
242 | { | ||
239 | hpet_writel(0, HPET_COUNTER); | 243 | hpet_writel(0, HPET_COUNTER); |
240 | hpet_writel(0, HPET_COUNTER + 4); | 244 | hpet_writel(0, HPET_COUNTER + 4); |
241 | } | 245 | } |
@@ -250,6 +254,7 @@ static void hpet_start_counter(void) | |||
250 | static void hpet_restart_counter(void) | 254 | static void hpet_restart_counter(void) |
251 | { | 255 | { |
252 | hpet_stop_counter(); | 256 | hpet_stop_counter(); |
257 | hpet_reset_counter(); | ||
253 | hpet_start_counter(); | 258 | hpet_start_counter(); |
254 | } | 259 | } |
255 | 260 | ||
@@ -309,7 +314,7 @@ static int hpet_setup_msi_irq(unsigned int irq); | |||
309 | static void hpet_set_mode(enum clock_event_mode mode, | 314 | static void hpet_set_mode(enum clock_event_mode mode, |
310 | struct clock_event_device *evt, int timer) | 315 | struct clock_event_device *evt, int timer) |
311 | { | 316 | { |
312 | unsigned long cfg; | 317 | unsigned long cfg, cmp, now; |
313 | uint64_t delta; | 318 | uint64_t delta; |
314 | 319 | ||
315 | switch (mode) { | 320 | switch (mode) { |
@@ -317,12 +322,23 @@ static void hpet_set_mode(enum clock_event_mode mode, | |||
317 | hpet_stop_counter(); | 322 | hpet_stop_counter(); |
318 | delta = ((uint64_t)(NSEC_PER_SEC/HZ)) * evt->mult; | 323 | delta = ((uint64_t)(NSEC_PER_SEC/HZ)) * evt->mult; |
319 | delta >>= evt->shift; | 324 | delta >>= evt->shift; |
325 | now = hpet_readl(HPET_COUNTER); | ||
326 | cmp = now + (unsigned long) delta; | ||
320 | cfg = hpet_readl(HPET_Tn_CFG(timer)); | 327 | cfg = hpet_readl(HPET_Tn_CFG(timer)); |
321 | /* Make sure we use edge triggered interrupts */ | 328 | /* Make sure we use edge triggered interrupts */ |
322 | cfg &= ~HPET_TN_LEVEL; | 329 | cfg &= ~HPET_TN_LEVEL; |
323 | cfg |= HPET_TN_ENABLE | HPET_TN_PERIODIC | | 330 | cfg |= HPET_TN_ENABLE | HPET_TN_PERIODIC | |
324 | HPET_TN_SETVAL | HPET_TN_32BIT; | 331 | HPET_TN_SETVAL | HPET_TN_32BIT; |
325 | hpet_writel(cfg, HPET_Tn_CFG(timer)); | 332 | hpet_writel(cfg, HPET_Tn_CFG(timer)); |
333 | hpet_writel(cmp, HPET_Tn_CMP(timer)); | ||
334 | udelay(1); | ||
335 | /* | ||
336 | * HPET on AMD 81xx needs a second write (with HPET_TN_SETVAL | ||
337 | * cleared) to T0_CMP to set the period. The HPET_TN_SETVAL | ||
338 | * bit is automatically cleared after the first write. | ||
339 | * (See AMD-8111 HyperTransport I/O Hub Data Sheet, | ||
340 | * Publication # 24674) | ||
341 | */ | ||
326 | hpet_writel((unsigned long) delta, HPET_Tn_CMP(timer)); | 342 | hpet_writel((unsigned long) delta, HPET_Tn_CMP(timer)); |
327 | hpet_start_counter(); | 343 | hpet_start_counter(); |
328 | hpet_print_config(); | 344 | hpet_print_config(); |
@@ -722,7 +738,7 @@ static int hpet_cpuhp_notify(struct notifier_block *n, | |||
722 | /* | 738 | /* |
723 | * Clock source related code | 739 | * Clock source related code |
724 | */ | 740 | */ |
725 | static cycle_t read_hpet(void) | 741 | static cycle_t read_hpet(struct clocksource *cs) |
726 | { | 742 | { |
727 | return (cycle_t)hpet_readl(HPET_COUNTER); | 743 | return (cycle_t)hpet_readl(HPET_COUNTER); |
728 | } | 744 | } |
@@ -756,7 +772,7 @@ static int hpet_clocksource_register(void) | |||
756 | hpet_restart_counter(); | 772 | hpet_restart_counter(); |
757 | 773 | ||
758 | /* Verify whether hpet counter works */ | 774 | /* Verify whether hpet counter works */ |
759 | t1 = read_hpet(); | 775 | t1 = hpet_readl(HPET_COUNTER); |
760 | rdtscll(start); | 776 | rdtscll(start); |
761 | 777 | ||
762 | /* | 778 | /* |
@@ -770,7 +786,7 @@ static int hpet_clocksource_register(void) | |||
770 | rdtscll(now); | 786 | rdtscll(now); |
771 | } while ((now - start) < 200000UL); | 787 | } while ((now - start) < 200000UL); |
772 | 788 | ||
773 | if (t1 == read_hpet()) { | 789 | if (t1 == hpet_readl(HPET_COUNTER)) { |
774 | printk(KERN_WARNING | 790 | printk(KERN_WARNING |
775 | "HPET counter not counting. HPET disabled\n"); | 791 | "HPET counter not counting. HPET disabled\n"); |
776 | return -ENODEV; | 792 | return -ENODEV; |
diff --git a/arch/x86/kernel/i8253.c b/arch/x86/kernel/i8253.c index 3475440baa54..c2e0bb0890d4 100644 --- a/arch/x86/kernel/i8253.c +++ b/arch/x86/kernel/i8253.c | |||
@@ -129,7 +129,7 @@ void __init setup_pit_timer(void) | |||
129 | * to just read by itself. So use jiffies to emulate a free | 129 | * to just read by itself. So use jiffies to emulate a free |
130 | * running counter: | 130 | * running counter: |
131 | */ | 131 | */ |
132 | static cycle_t pit_read(void) | 132 | static cycle_t pit_read(struct clocksource *cs) |
133 | { | 133 | { |
134 | static int old_count; | 134 | static int old_count; |
135 | static u32 old_jifs; | 135 | static u32 old_jifs; |
diff --git a/arch/x86/kernel/kvmclock.c b/arch/x86/kernel/kvmclock.c index 137f2e8132df..223af43f1526 100644 --- a/arch/x86/kernel/kvmclock.c +++ b/arch/x86/kernel/kvmclock.c | |||
@@ -77,6 +77,11 @@ static cycle_t kvm_clock_read(void) | |||
77 | return ret; | 77 | return ret; |
78 | } | 78 | } |
79 | 79 | ||
80 | static cycle_t kvm_clock_get_cycles(struct clocksource *cs) | ||
81 | { | ||
82 | return kvm_clock_read(); | ||
83 | } | ||
84 | |||
80 | /* | 85 | /* |
81 | * If we don't do that, there is the possibility that the guest | 86 | * If we don't do that, there is the possibility that the guest |
82 | * will calibrate under heavy load - thus, getting a lower lpj - | 87 | * will calibrate under heavy load - thus, getting a lower lpj - |
@@ -107,7 +112,7 @@ static void kvm_get_preset_lpj(void) | |||
107 | 112 | ||
108 | static struct clocksource kvm_clock = { | 113 | static struct clocksource kvm_clock = { |
109 | .name = "kvm-clock", | 114 | .name = "kvm-clock", |
110 | .read = kvm_clock_read, | 115 | .read = kvm_clock_get_cycles, |
111 | .rating = 400, | 116 | .rating = 400, |
112 | .mask = CLOCKSOURCE_MASK(64), | 117 | .mask = CLOCKSOURCE_MASK(64), |
113 | .mult = 1 << KVM_SCALE, | 118 | .mult = 1 << KVM_SCALE, |
diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c index e95022e4f5d5..7563b31b4f03 100644 --- a/arch/x86/kernel/quirks.c +++ b/arch/x86/kernel/quirks.c | |||
@@ -261,8 +261,6 @@ static void old_ich_force_enable_hpet_user(struct pci_dev *dev) | |||
261 | { | 261 | { |
262 | if (hpet_force_user) | 262 | if (hpet_force_user) |
263 | old_ich_force_enable_hpet(dev); | 263 | old_ich_force_enable_hpet(dev); |
264 | else | ||
265 | hpet_print_force_info(); | ||
266 | } | 264 | } |
267 | 265 | ||
268 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_1, | 266 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_1, |
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c index 7a567ebe6361..d57de05dc430 100644 --- a/arch/x86/kernel/tsc.c +++ b/arch/x86/kernel/tsc.c | |||
@@ -699,7 +699,7 @@ static struct clocksource clocksource_tsc; | |||
699 | * code, which is necessary to support wrapping clocksources like pm | 699 | * code, which is necessary to support wrapping clocksources like pm |
700 | * timer. | 700 | * timer. |
701 | */ | 701 | */ |
702 | static cycle_t read_tsc(void) | 702 | static cycle_t read_tsc(struct clocksource *cs) |
703 | { | 703 | { |
704 | cycle_t ret = (cycle_t)get_cycles(); | 704 | cycle_t ret = (cycle_t)get_cycles(); |
705 | 705 | ||
diff --git a/arch/x86/kernel/uv_time.c b/arch/x86/kernel/uv_time.c index 2ffb6c53326e..583f11d5c480 100644 --- a/arch/x86/kernel/uv_time.c +++ b/arch/x86/kernel/uv_time.c | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | #define RTC_NAME "sgi_rtc" | 30 | #define RTC_NAME "sgi_rtc" |
31 | 31 | ||
32 | static cycle_t uv_read_rtc(void); | 32 | static cycle_t uv_read_rtc(struct clocksource *cs); |
33 | static int uv_rtc_next_event(unsigned long, struct clock_event_device *); | 33 | static int uv_rtc_next_event(unsigned long, struct clock_event_device *); |
34 | static void uv_rtc_timer_setup(enum clock_event_mode, | 34 | static void uv_rtc_timer_setup(enum clock_event_mode, |
35 | struct clock_event_device *); | 35 | struct clock_event_device *); |
@@ -123,7 +123,7 @@ static int uv_setup_intr(int cpu, u64 expires) | |||
123 | /* Initialize comparator value */ | 123 | /* Initialize comparator value */ |
124 | uv_write_global_mmr64(pnode, UVH_INT_CMPB, expires); | 124 | uv_write_global_mmr64(pnode, UVH_INT_CMPB, expires); |
125 | 125 | ||
126 | return (expires < uv_read_rtc() && !uv_intr_pending(pnode)); | 126 | return (expires < uv_read_rtc(NULL) && !uv_intr_pending(pnode)); |
127 | } | 127 | } |
128 | 128 | ||
129 | /* | 129 | /* |
@@ -256,7 +256,7 @@ static int uv_rtc_unset_timer(int cpu) | |||
256 | 256 | ||
257 | spin_lock_irqsave(&head->lock, flags); | 257 | spin_lock_irqsave(&head->lock, flags); |
258 | 258 | ||
259 | if (head->next_cpu == bcpu && uv_read_rtc() >= *t) | 259 | if (head->next_cpu == bcpu && uv_read_rtc(NULL) >= *t) |
260 | rc = 1; | 260 | rc = 1; |
261 | 261 | ||
262 | *t = ULLONG_MAX; | 262 | *t = ULLONG_MAX; |
@@ -278,7 +278,7 @@ static int uv_rtc_unset_timer(int cpu) | |||
278 | /* | 278 | /* |
279 | * Read the RTC. | 279 | * Read the RTC. |
280 | */ | 280 | */ |
281 | static cycle_t uv_read_rtc(void) | 281 | static cycle_t uv_read_rtc(struct clocksource *cs) |
282 | { | 282 | { |
283 | return (cycle_t)uv_read_local_mmr(UVH_RTC); | 283 | return (cycle_t)uv_read_local_mmr(UVH_RTC); |
284 | } | 284 | } |
@@ -291,7 +291,7 @@ static int uv_rtc_next_event(unsigned long delta, | |||
291 | { | 291 | { |
292 | int ced_cpu = cpumask_first(ced->cpumask); | 292 | int ced_cpu = cpumask_first(ced->cpumask); |
293 | 293 | ||
294 | return uv_rtc_set_timer(ced_cpu, delta + uv_read_rtc()); | 294 | return uv_rtc_set_timer(ced_cpu, delta + uv_read_rtc(NULL)); |
295 | } | 295 | } |
296 | 296 | ||
297 | /* | 297 | /* |
diff --git a/arch/x86/kernel/vmiclock_32.c b/arch/x86/kernel/vmiclock_32.c index d303369a7bad..2b3eb82efeeb 100644 --- a/arch/x86/kernel/vmiclock_32.c +++ b/arch/x86/kernel/vmiclock_32.c | |||
@@ -283,7 +283,7 @@ void __devinit vmi_time_ap_init(void) | |||
283 | /** vmi clocksource */ | 283 | /** vmi clocksource */ |
284 | static struct clocksource clocksource_vmi; | 284 | static struct clocksource clocksource_vmi; |
285 | 285 | ||
286 | static cycle_t read_real_cycles(void) | 286 | static cycle_t read_real_cycles(struct clocksource *cs) |
287 | { | 287 | { |
288 | cycle_t ret = (cycle_t)vmi_timer_ops.get_cycle_counter(VMI_CYCLES_REAL); | 288 | cycle_t ret = (cycle_t)vmi_timer_ops.get_cycle_counter(VMI_CYCLES_REAL); |
289 | return max(ret, clocksource_vmi.cycle_last); | 289 | return max(ret, clocksource_vmi.cycle_last); |
diff --git a/arch/x86/kernel/xsave.c b/arch/x86/kernel/xsave.c index 0a5b04aa98f1..c5ee17e8c6d9 100644 --- a/arch/x86/kernel/xsave.c +++ b/arch/x86/kernel/xsave.c | |||
@@ -89,7 +89,7 @@ int save_i387_xstate(void __user *buf) | |||
89 | 89 | ||
90 | if (!used_math()) | 90 | if (!used_math()) |
91 | return 0; | 91 | return 0; |
92 | clear_used_math(); /* trigger finit */ | 92 | |
93 | if (task_thread_info(tsk)->status & TS_USEDFPU) { | 93 | if (task_thread_info(tsk)->status & TS_USEDFPU) { |
94 | /* | 94 | /* |
95 | * Start with clearing the user buffer. This will present a | 95 | * Start with clearing the user buffer. This will present a |
@@ -114,6 +114,8 @@ int save_i387_xstate(void __user *buf) | |||
114 | return -1; | 114 | return -1; |
115 | } | 115 | } |
116 | 116 | ||
117 | clear_used_math(); /* trigger finit */ | ||
118 | |||
117 | if (task_thread_info(tsk)->status & TS_XSAVE) { | 119 | if (task_thread_info(tsk)->status & TS_XSAVE) { |
118 | struct _fpstate __user *fx = buf; | 120 | struct _fpstate __user *fx = buf; |
119 | struct _xstate __user *x = buf; | 121 | struct _xstate __user *x = buf; |
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 2a36f7f7c4c7..b6caf1329b1b 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -1248,7 +1248,7 @@ static struct kvm_mmu_page *kvm_mmu_get_page(struct kvm_vcpu *vcpu, | |||
1248 | pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word); | 1248 | pgprintk("%s: adding gfn %lx role %x\n", __func__, gfn, role.word); |
1249 | sp->gfn = gfn; | 1249 | sp->gfn = gfn; |
1250 | sp->role = role; | 1250 | sp->role = role; |
1251 | sp->global = role.cr4_pge; | 1251 | sp->global = 0; |
1252 | hlist_add_head(&sp->hash_link, bucket); | 1252 | hlist_add_head(&sp->hash_link, bucket); |
1253 | if (!direct) { | 1253 | if (!direct) { |
1254 | if (rmap_write_protect(vcpu->kvm, gfn)) | 1254 | if (rmap_write_protect(vcpu->kvm, gfn)) |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 8ca100a9ecac..7c1ce5ac6131 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -2775,6 +2775,9 @@ out: | |||
2775 | 2775 | ||
2776 | void kvm_arch_exit(void) | 2776 | void kvm_arch_exit(void) |
2777 | { | 2777 | { |
2778 | if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) | ||
2779 | cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block, | ||
2780 | CPUFREQ_TRANSITION_NOTIFIER); | ||
2778 | kvm_x86_ops = NULL; | 2781 | kvm_x86_ops = NULL; |
2779 | kvm_mmu_module_exit(); | 2782 | kvm_mmu_module_exit(); |
2780 | } | 2783 | } |
@@ -4159,6 +4162,11 @@ EXPORT_SYMBOL_GPL(kvm_put_guest_fpu); | |||
4159 | 4162 | ||
4160 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) | 4163 | void kvm_arch_vcpu_free(struct kvm_vcpu *vcpu) |
4161 | { | 4164 | { |
4165 | if (vcpu->arch.time_page) { | ||
4166 | kvm_release_page_dirty(vcpu->arch.time_page); | ||
4167 | vcpu->arch.time_page = NULL; | ||
4168 | } | ||
4169 | |||
4162 | kvm_x86_ops->vcpu_free(vcpu); | 4170 | kvm_x86_ops->vcpu_free(vcpu); |
4163 | } | 4171 | } |
4164 | 4172 | ||
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index a2085368a3dc..ca7ec44bafc3 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -663,7 +663,7 @@ static unsigned long lguest_tsc_khz(void) | |||
663 | 663 | ||
664 | /* If we can't use the TSC, the kernel falls back to our lower-priority | 664 | /* If we can't use the TSC, the kernel falls back to our lower-priority |
665 | * "lguest_clock", where we read the time value given to us by the Host. */ | 665 | * "lguest_clock", where we read the time value given to us by the Host. */ |
666 | static cycle_t lguest_clock_read(void) | 666 | static cycle_t lguest_clock_read(struct clocksource *cs) |
667 | { | 667 | { |
668 | unsigned long sec, nsec; | 668 | unsigned long sec, nsec; |
669 | 669 | ||
diff --git a/arch/x86/mm/numa_32.c b/arch/x86/mm/numa_32.c index 3daefa04ace5..d2530062fe00 100644 --- a/arch/x86/mm/numa_32.c +++ b/arch/x86/mm/numa_32.c | |||
@@ -257,7 +257,7 @@ void resume_map_numa_kva(pgd_t *pgd_base) | |||
257 | } | 257 | } |
258 | #endif | 258 | #endif |
259 | 259 | ||
260 | static unsigned long calculate_numa_remap_pages(void) | 260 | static __init unsigned long calculate_numa_remap_pages(void) |
261 | { | 261 | { |
262 | int nid; | 262 | int nid; |
263 | unsigned long size, reserve_pages = 0; | 263 | unsigned long size, reserve_pages = 0; |
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index d73aaa892371..2d05a12029dc 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
@@ -188,6 +188,9 @@ void __init setup_node_bootmem(int nodeid, unsigned long start, | |||
188 | const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE); | 188 | const int pgdat_size = roundup(sizeof(pg_data_t), PAGE_SIZE); |
189 | int nid; | 189 | int nid; |
190 | 190 | ||
191 | if (!end) | ||
192 | return; | ||
193 | |||
191 | start = roundup(start, ZONE_ALIGN); | 194 | start = roundup(start, ZONE_ALIGN); |
192 | 195 | ||
193 | printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid, | 196 | printk(KERN_INFO "Bootmem setup node %d %016lx-%016lx\n", nodeid, |
diff --git a/arch/x86/mm/srat_64.c b/arch/x86/mm/srat_64.c index c7d272b8574c..33c5fa57e43d 100644 --- a/arch/x86/mm/srat_64.c +++ b/arch/x86/mm/srat_64.c | |||
@@ -28,6 +28,7 @@ int acpi_numa __initdata; | |||
28 | static struct acpi_table_slit *acpi_slit; | 28 | static struct acpi_table_slit *acpi_slit; |
29 | 29 | ||
30 | static nodemask_t nodes_parsed __initdata; | 30 | static nodemask_t nodes_parsed __initdata; |
31 | static nodemask_t cpu_nodes_parsed __initdata; | ||
31 | static struct bootnode nodes[MAX_NUMNODES] __initdata; | 32 | static struct bootnode nodes[MAX_NUMNODES] __initdata; |
32 | static struct bootnode nodes_add[MAX_NUMNODES]; | 33 | static struct bootnode nodes_add[MAX_NUMNODES]; |
33 | static int found_add_area __initdata; | 34 | static int found_add_area __initdata; |
@@ -141,6 +142,7 @@ acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa) | |||
141 | 142 | ||
142 | apic_id = pa->apic_id; | 143 | apic_id = pa->apic_id; |
143 | apicid_to_node[apic_id] = node; | 144 | apicid_to_node[apic_id] = node; |
145 | node_set(node, cpu_nodes_parsed); | ||
144 | acpi_numa = 1; | 146 | acpi_numa = 1; |
145 | printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n", | 147 | printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n", |
146 | pxm, apic_id, node); | 148 | pxm, apic_id, node); |
@@ -174,6 +176,7 @@ acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) | |||
174 | else | 176 | else |
175 | apic_id = pa->apic_id; | 177 | apic_id = pa->apic_id; |
176 | apicid_to_node[apic_id] = node; | 178 | apicid_to_node[apic_id] = node; |
179 | node_set(node, cpu_nodes_parsed); | ||
177 | acpi_numa = 1; | 180 | acpi_numa = 1; |
178 | printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n", | 181 | printk(KERN_INFO "SRAT: PXM %u -> APIC %u -> Node %u\n", |
179 | pxm, apic_id, node); | 182 | pxm, apic_id, node); |
@@ -402,7 +405,8 @@ int __init acpi_scan_nodes(unsigned long start, unsigned long end) | |||
402 | return -1; | 405 | return -1; |
403 | } | 406 | } |
404 | 407 | ||
405 | node_possible_map = nodes_parsed; | 408 | /* Account for nodes with cpus and no memory */ |
409 | nodes_or(node_possible_map, nodes_parsed, cpu_nodes_parsed); | ||
406 | 410 | ||
407 | /* Finally register nodes */ | 411 | /* Finally register nodes */ |
408 | for_each_node_mask(i, node_possible_map) | 412 | for_each_node_mask(i, node_possible_map) |
diff --git a/arch/x86/pci/amd_bus.c b/arch/x86/pci/amd_bus.c index 9bb09823b362..f893d6a6e803 100644 --- a/arch/x86/pci/amd_bus.c +++ b/arch/x86/pci/amd_bus.c | |||
@@ -94,12 +94,16 @@ struct pci_root_info { | |||
94 | static int pci_root_num; | 94 | static int pci_root_num; |
95 | static struct pci_root_info pci_root_info[PCI_ROOT_NR]; | 95 | static struct pci_root_info pci_root_info[PCI_ROOT_NR]; |
96 | 96 | ||
97 | void set_pci_bus_resources_arch_default(struct pci_bus *b) | 97 | void x86_pci_root_bus_res_quirks(struct pci_bus *b) |
98 | { | 98 | { |
99 | int i; | 99 | int i; |
100 | int j; | 100 | int j; |
101 | struct pci_root_info *info; | 101 | struct pci_root_info *info; |
102 | 102 | ||
103 | /* don't go for it if _CRS is used */ | ||
104 | if (pci_probe & PCI_USE__CRS) | ||
105 | return; | ||
106 | |||
103 | /* if only one root bus, don't need to anything */ | 107 | /* if only one root bus, don't need to anything */ |
104 | if (pci_root_num < 2) | 108 | if (pci_root_num < 2) |
105 | return; | 109 | return; |
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 8c362b96b644..2202b6257b82 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c | |||
@@ -147,10 +147,13 @@ static void __devinit pcibios_fixup_device_resources(struct pci_dev *dev) | |||
147 | * are examined. | 147 | * are examined. |
148 | */ | 148 | */ |
149 | 149 | ||
150 | void __devinit pcibios_fixup_bus(struct pci_bus *b) | 150 | void __devinit pcibios_fixup_bus(struct pci_bus *b) |
151 | { | 151 | { |
152 | struct pci_dev *dev; | 152 | struct pci_dev *dev; |
153 | 153 | ||
154 | /* root bus? */ | ||
155 | if (!b->parent) | ||
156 | x86_pci_root_bus_res_quirks(b); | ||
154 | pci_read_bridge_bases(b); | 157 | pci_read_bridge_bases(b); |
155 | list_for_each_entry(dev, &b->devices, bus_list) | 158 | list_for_each_entry(dev, &b->devices, bus_list) |
156 | pcibios_fixup_device_resources(dev); | 159 | pcibios_fixup_device_resources(dev); |
diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index f1817f71e009..a85bef20a3b9 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c | |||
@@ -238,6 +238,10 @@ void __init pcibios_resource_survey(void) | |||
238 | */ | 238 | */ |
239 | fs_initcall(pcibios_assign_resources); | 239 | fs_initcall(pcibios_assign_resources); |
240 | 240 | ||
241 | void __weak x86_pci_root_bus_res_quirks(struct pci_bus *b) | ||
242 | { | ||
243 | } | ||
244 | |||
241 | /* | 245 | /* |
242 | * If we set up a device for bus mastering, we need to check the latency | 246 | * If we set up a device for bus mastering, we need to check the latency |
243 | * timer as certain crappy BIOSes forget to set it properly. | 247 | * timer as certain crappy BIOSes forget to set it properly. |
diff --git a/arch/x86/pci/mmconfig-shared.c b/arch/x86/pci/mmconfig-shared.c index 905bb526b133..5fa10bb9604f 100644 --- a/arch/x86/pci/mmconfig-shared.c +++ b/arch/x86/pci/mmconfig-shared.c | |||
@@ -375,7 +375,7 @@ static acpi_status __init check_mcfg_resource(struct acpi_resource *res, | |||
375 | if (!fixmem32) | 375 | if (!fixmem32) |
376 | return AE_OK; | 376 | return AE_OK; |
377 | if ((mcfg_res->start >= fixmem32->address) && | 377 | if ((mcfg_res->start >= fixmem32->address) && |
378 | (mcfg_res->end < (fixmem32->address + | 378 | (mcfg_res->end <= (fixmem32->address + |
379 | fixmem32->address_length))) { | 379 | fixmem32->address_length))) { |
380 | mcfg_res->flags = 1; | 380 | mcfg_res->flags = 1; |
381 | return AE_CTRL_TERMINATE; | 381 | return AE_CTRL_TERMINATE; |
@@ -392,7 +392,7 @@ static acpi_status __init check_mcfg_resource(struct acpi_resource *res, | |||
392 | return AE_OK; | 392 | return AE_OK; |
393 | 393 | ||
394 | if ((mcfg_res->start >= address.minimum) && | 394 | if ((mcfg_res->start >= address.minimum) && |
395 | (mcfg_res->end < (address.minimum + address.address_length))) { | 395 | (mcfg_res->end <= (address.minimum + address.address_length))) { |
396 | mcfg_res->flags = 1; | 396 | mcfg_res->flags = 1; |
397 | return AE_CTRL_TERMINATE; | 397 | return AE_CTRL_TERMINATE; |
398 | } | 398 | } |
@@ -439,7 +439,7 @@ static int __init is_mmconf_reserved(check_reserved_t is_reserved, | |||
439 | u64 old_size = size; | 439 | u64 old_size = size; |
440 | int valid = 0; | 440 | int valid = 0; |
441 | 441 | ||
442 | while (!is_reserved(addr, addr + size - 1, E820_RESERVED)) { | 442 | while (!is_reserved(addr, addr + size, E820_RESERVED)) { |
443 | size >>= 1; | 443 | size >>= 1; |
444 | if (size < (16UL<<20)) | 444 | if (size < (16UL<<20)) |
445 | break; | 445 | break; |
diff --git a/arch/x86/xen/time.c b/arch/x86/xen/time.c index 14f240623497..0a5aa44299a5 100644 --- a/arch/x86/xen/time.c +++ b/arch/x86/xen/time.c | |||
@@ -213,6 +213,11 @@ cycle_t xen_clocksource_read(void) | |||
213 | return ret; | 213 | return ret; |
214 | } | 214 | } |
215 | 215 | ||
216 | static cycle_t xen_clocksource_get_cycles(struct clocksource *cs) | ||
217 | { | ||
218 | return xen_clocksource_read(); | ||
219 | } | ||
220 | |||
216 | static void xen_read_wallclock(struct timespec *ts) | 221 | static void xen_read_wallclock(struct timespec *ts) |
217 | { | 222 | { |
218 | struct shared_info *s = HYPERVISOR_shared_info; | 223 | struct shared_info *s = HYPERVISOR_shared_info; |
@@ -241,7 +246,7 @@ int xen_set_wallclock(unsigned long now) | |||
241 | static struct clocksource xen_clocksource __read_mostly = { | 246 | static struct clocksource xen_clocksource __read_mostly = { |
242 | .name = "xen", | 247 | .name = "xen", |
243 | .rating = 400, | 248 | .rating = 400, |
244 | .read = xen_clocksource_read, | 249 | .read = xen_clocksource_get_cycles, |
245 | .mask = ~0, | 250 | .mask = ~0, |
246 | .mult = 1<<XEN_SHIFT, /* time directly in nanoseconds */ | 251 | .mult = 1<<XEN_SHIFT, /* time directly in nanoseconds */ |
247 | .shift = XEN_SHIFT, | 252 | .shift = XEN_SHIFT, |
diff --git a/arch/xtensa/kernel/head.S b/arch/xtensa/kernel/head.S index 0817f9db836e..d9ddc1ba761c 100644 --- a/arch/xtensa/kernel/head.S +++ b/arch/xtensa/kernel/head.S | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <asm/page.h> | 19 | #include <asm/page.h> |
20 | #include <asm/cacheasm.h> | 20 | #include <asm/cacheasm.h> |
21 | 21 | ||
22 | #include <linux/init.h> | ||
22 | #include <linux/linkage.h> | 23 | #include <linux/linkage.h> |
23 | 24 | ||
24 | /* | 25 | /* |
@@ -45,7 +46,7 @@ | |||
45 | * instruction. | 46 | * instruction. |
46 | */ | 47 | */ |
47 | 48 | ||
48 | .section .head.text, "ax" | 49 | __HEAD |
49 | .globl _start | 50 | .globl _start |
50 | _start: _j 2f | 51 | _start: _j 2f |
51 | .align 4 | 52 | .align 4 |
diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S index c1be9a4a740c..5accf51053da 100644 --- a/arch/xtensa/kernel/vmlinux.lds.S +++ b/arch/xtensa/kernel/vmlinux.lds.S | |||
@@ -85,8 +85,8 @@ SECTIONS | |||
85 | 85 | ||
86 | .text : | 86 | .text : |
87 | { | 87 | { |
88 | /* The .head.text section must be the first section! */ | 88 | /* The HEAD_TEXT section must be the first section! */ |
89 | *(.head.text) | 89 | HEAD_TEXT |
90 | *(.literal .text) | 90 | *(.literal .text) |
91 | VMLINUX_SYMBOL(__sched_text_start) = .; | 91 | VMLINUX_SYMBOL(__sched_text_start) = .; |
92 | *(.sched.literal .sched.text) | 92 | *(.sched.literal .sched.text) |
diff --git a/block/blk-core.c b/block/blk-core.c index 07ab75403e1a..2998fe3a2377 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -643,7 +643,7 @@ static inline void blk_free_request(struct request_queue *q, struct request *rq) | |||
643 | } | 643 | } |
644 | 644 | ||
645 | static struct request * | 645 | static struct request * |
646 | blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask) | 646 | blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask) |
647 | { | 647 | { |
648 | struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask); | 648 | struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask); |
649 | 649 | ||
@@ -652,7 +652,7 @@ blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask) | |||
652 | 652 | ||
653 | blk_rq_init(q, rq); | 653 | blk_rq_init(q, rq); |
654 | 654 | ||
655 | rq->cmd_flags = rw | REQ_ALLOCED; | 655 | rq->cmd_flags = flags | REQ_ALLOCED; |
656 | 656 | ||
657 | if (priv) { | 657 | if (priv) { |
658 | if (unlikely(elv_set_request(q, rq, gfp_mask))) { | 658 | if (unlikely(elv_set_request(q, rq, gfp_mask))) { |
@@ -792,6 +792,8 @@ static struct request *get_request(struct request_queue *q, int rw_flags, | |||
792 | if (priv) | 792 | if (priv) |
793 | rl->elvpriv++; | 793 | rl->elvpriv++; |
794 | 794 | ||
795 | if (blk_queue_io_stat(q)) | ||
796 | rw_flags |= REQ_IO_STAT; | ||
795 | spin_unlock_irq(q->queue_lock); | 797 | spin_unlock_irq(q->queue_lock); |
796 | 798 | ||
797 | rq = blk_alloc_request(q, rw_flags, priv, gfp_mask); | 799 | rq = blk_alloc_request(q, rw_flags, priv, gfp_mask); |
diff --git a/block/blk-merge.c b/block/blk-merge.c index 63760ca3da0f..23d2a6fe34a3 100644 --- a/block/blk-merge.c +++ b/block/blk-merge.c | |||
@@ -402,7 +402,10 @@ static int attempt_merge(struct request_queue *q, struct request *req, | |||
402 | 402 | ||
403 | elv_merge_requests(q, req, next); | 403 | elv_merge_requests(q, req, next); |
404 | 404 | ||
405 | blk_account_io_merge(req); | 405 | /* |
406 | * 'next' is going away, so update stats accordingly | ||
407 | */ | ||
408 | blk_account_io_merge(next); | ||
406 | 409 | ||
407 | req->ioprio = ioprio_best(req->ioprio, next->ioprio); | 410 | req->ioprio = ioprio_best(req->ioprio, next->ioprio); |
408 | if (blk_rq_cpu_valid(next)) | 411 | if (blk_rq_cpu_valid(next)) |
diff --git a/block/blk-settings.c b/block/blk-settings.c index 69c42adde52b..57af728d94bb 100644 --- a/block/blk-settings.c +++ b/block/blk-settings.c | |||
@@ -156,26 +156,28 @@ EXPORT_SYMBOL(blk_queue_make_request); | |||
156 | 156 | ||
157 | /** | 157 | /** |
158 | * blk_queue_bounce_limit - set bounce buffer limit for queue | 158 | * blk_queue_bounce_limit - set bounce buffer limit for queue |
159 | * @q: the request queue for the device | 159 | * @q: the request queue for the device |
160 | * @dma_addr: bus address limit | 160 | * @dma_mask: the maximum address the device can handle |
161 | * | 161 | * |
162 | * Description: | 162 | * Description: |
163 | * Different hardware can have different requirements as to what pages | 163 | * Different hardware can have different requirements as to what pages |
164 | * it can do I/O directly to. A low level driver can call | 164 | * it can do I/O directly to. A low level driver can call |
165 | * blk_queue_bounce_limit to have lower memory pages allocated as bounce | 165 | * blk_queue_bounce_limit to have lower memory pages allocated as bounce |
166 | * buffers for doing I/O to pages residing above @dma_addr. | 166 | * buffers for doing I/O to pages residing above @dma_mask. |
167 | **/ | 167 | **/ |
168 | void blk_queue_bounce_limit(struct request_queue *q, u64 dma_addr) | 168 | void blk_queue_bounce_limit(struct request_queue *q, u64 dma_mask) |
169 | { | 169 | { |
170 | unsigned long b_pfn = dma_addr >> PAGE_SHIFT; | 170 | unsigned long b_pfn = dma_mask >> PAGE_SHIFT; |
171 | int dma = 0; | 171 | int dma = 0; |
172 | 172 | ||
173 | q->bounce_gfp = GFP_NOIO; | 173 | q->bounce_gfp = GFP_NOIO; |
174 | #if BITS_PER_LONG == 64 | 174 | #if BITS_PER_LONG == 64 |
175 | /* Assume anything <= 4GB can be handled by IOMMU. | 175 | /* |
176 | Actually some IOMMUs can handle everything, but I don't | 176 | * Assume anything <= 4GB can be handled by IOMMU. Actually |
177 | know of a way to test this here. */ | 177 | * some IOMMUs can handle everything, but I don't know of a |
178 | if (b_pfn < (min_t(u64, 0x100000000UL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT)) | 178 | * way to test this here. |
179 | */ | ||
180 | if (b_pfn < (min_t(u64, 0xffffffffUL, BLK_BOUNCE_HIGH) >> PAGE_SHIFT)) | ||
179 | dma = 1; | 181 | dma = 1; |
180 | q->bounce_pfn = max_low_pfn; | 182 | q->bounce_pfn = max_low_pfn; |
181 | #else | 183 | #else |
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c index cac4e9febe6a..3ff9bba3379a 100644 --- a/block/blk-sysfs.c +++ b/block/blk-sysfs.c | |||
@@ -209,14 +209,10 @@ static ssize_t queue_iostats_store(struct request_queue *q, const char *page, | |||
209 | ssize_t ret = queue_var_store(&stats, page, count); | 209 | ssize_t ret = queue_var_store(&stats, page, count); |
210 | 210 | ||
211 | spin_lock_irq(q->queue_lock); | 211 | spin_lock_irq(q->queue_lock); |
212 | elv_quiesce_start(q); | ||
213 | |||
214 | if (stats) | 212 | if (stats) |
215 | queue_flag_set(QUEUE_FLAG_IO_STAT, q); | 213 | queue_flag_set(QUEUE_FLAG_IO_STAT, q); |
216 | else | 214 | else |
217 | queue_flag_clear(QUEUE_FLAG_IO_STAT, q); | 215 | queue_flag_clear(QUEUE_FLAG_IO_STAT, q); |
218 | |||
219 | elv_quiesce_end(q); | ||
220 | spin_unlock_irq(q->queue_lock); | 216 | spin_unlock_irq(q->queue_lock); |
221 | 217 | ||
222 | return ret; | 218 | return ret; |
diff --git a/block/blk-timeout.c b/block/blk-timeout.c index bbbdc4b8ccf2..1ec0d503cacd 100644 --- a/block/blk-timeout.c +++ b/block/blk-timeout.c | |||
@@ -211,6 +211,12 @@ void blk_abort_queue(struct request_queue *q) | |||
211 | struct request *rq, *tmp; | 211 | struct request *rq, *tmp; |
212 | LIST_HEAD(list); | 212 | LIST_HEAD(list); |
213 | 213 | ||
214 | /* | ||
215 | * Not a request based block device, nothing to abort | ||
216 | */ | ||
217 | if (!q->request_fn) | ||
218 | return; | ||
219 | |||
214 | spin_lock_irqsave(q->queue_lock, flags); | 220 | spin_lock_irqsave(q->queue_lock, flags); |
215 | 221 | ||
216 | elv_abort_queue(q); | 222 | elv_abort_queue(q); |
@@ -224,6 +230,13 @@ void blk_abort_queue(struct request_queue *q) | |||
224 | list_for_each_entry_safe(rq, tmp, &list, timeout_list) | 230 | list_for_each_entry_safe(rq, tmp, &list, timeout_list) |
225 | blk_abort_request(rq); | 231 | blk_abort_request(rq); |
226 | 232 | ||
233 | /* | ||
234 | * Occasionally, blk_abort_request() will return without | ||
235 | * deleting the element from the list. Make sure we add those back | ||
236 | * instead of leaving them on the local stack list. | ||
237 | */ | ||
238 | list_splice(&list, &q->timeout_list); | ||
239 | |||
227 | spin_unlock_irqrestore(q->queue_lock, flags); | 240 | spin_unlock_irqrestore(q->queue_lock, flags); |
228 | 241 | ||
229 | } | 242 | } |
diff --git a/block/blk.h b/block/blk.h index 5dfc41267a08..79c85f7c9ff5 100644 --- a/block/blk.h +++ b/block/blk.h | |||
@@ -114,12 +114,7 @@ static inline int blk_cpu_to_group(int cpu) | |||
114 | 114 | ||
115 | static inline int blk_do_io_stat(struct request *rq) | 115 | static inline int blk_do_io_stat(struct request *rq) |
116 | { | 116 | { |
117 | struct gendisk *disk = rq->rq_disk; | 117 | return rq->rq_disk && blk_rq_io_stat(rq); |
118 | |||
119 | if (!disk || !disk->queue) | ||
120 | return 0; | ||
121 | |||
122 | return blk_queue_io_stat(disk->queue) && (rq->cmd_flags & REQ_ELVPRIV); | ||
123 | } | 118 | } |
124 | 119 | ||
125 | #endif | 120 | #endif |
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index 0d3b70de3d80..a55a9bd75bd1 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c | |||
@@ -154,6 +154,8 @@ struct cfq_queue { | |||
154 | unsigned long rb_key; | 154 | unsigned long rb_key; |
155 | /* prio tree member */ | 155 | /* prio tree member */ |
156 | struct rb_node p_node; | 156 | struct rb_node p_node; |
157 | /* prio tree root we belong to, if any */ | ||
158 | struct rb_root *p_root; | ||
157 | /* sorted list of pending requests */ | 159 | /* sorted list of pending requests */ |
158 | struct rb_root sort_list; | 160 | struct rb_root sort_list; |
159 | /* if fifo isn't expired, next request to serve */ | 161 | /* if fifo isn't expired, next request to serve */ |
@@ -558,10 +560,10 @@ static void cfq_service_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq, | |||
558 | } | 560 | } |
559 | 561 | ||
560 | static struct cfq_queue * | 562 | static struct cfq_queue * |
561 | cfq_prio_tree_lookup(struct cfq_data *cfqd, int ioprio, sector_t sector, | 563 | cfq_prio_tree_lookup(struct cfq_data *cfqd, struct rb_root *root, |
562 | struct rb_node **ret_parent, struct rb_node ***rb_link) | 564 | sector_t sector, struct rb_node **ret_parent, |
565 | struct rb_node ***rb_link) | ||
563 | { | 566 | { |
564 | struct rb_root *root = &cfqd->prio_trees[ioprio]; | ||
565 | struct rb_node **p, *parent; | 567 | struct rb_node **p, *parent; |
566 | struct cfq_queue *cfqq = NULL; | 568 | struct cfq_queue *cfqq = NULL; |
567 | 569 | ||
@@ -584,34 +586,38 @@ cfq_prio_tree_lookup(struct cfq_data *cfqd, int ioprio, sector_t sector, | |||
584 | else | 586 | else |
585 | break; | 587 | break; |
586 | p = n; | 588 | p = n; |
589 | cfqq = NULL; | ||
587 | } | 590 | } |
588 | 591 | ||
589 | *ret_parent = parent; | 592 | *ret_parent = parent; |
590 | if (rb_link) | 593 | if (rb_link) |
591 | *rb_link = p; | 594 | *rb_link = p; |
592 | return NULL; | 595 | return cfqq; |
593 | } | 596 | } |
594 | 597 | ||
595 | static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq) | 598 | static void cfq_prio_tree_add(struct cfq_data *cfqd, struct cfq_queue *cfqq) |
596 | { | 599 | { |
597 | struct rb_root *root = &cfqd->prio_trees[cfqq->ioprio]; | ||
598 | struct rb_node **p, *parent; | 600 | struct rb_node **p, *parent; |
599 | struct cfq_queue *__cfqq; | 601 | struct cfq_queue *__cfqq; |
600 | 602 | ||
601 | if (!RB_EMPTY_NODE(&cfqq->p_node)) | 603 | if (cfqq->p_root) { |
602 | rb_erase_init(&cfqq->p_node, root); | 604 | rb_erase(&cfqq->p_node, cfqq->p_root); |
605 | cfqq->p_root = NULL; | ||
606 | } | ||
603 | 607 | ||
604 | if (cfq_class_idle(cfqq)) | 608 | if (cfq_class_idle(cfqq)) |
605 | return; | 609 | return; |
606 | if (!cfqq->next_rq) | 610 | if (!cfqq->next_rq) |
607 | return; | 611 | return; |
608 | 612 | ||
609 | __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->ioprio, cfqq->next_rq->sector, | 613 | cfqq->p_root = &cfqd->prio_trees[cfqq->org_ioprio]; |
614 | __cfqq = cfq_prio_tree_lookup(cfqd, cfqq->p_root, cfqq->next_rq->sector, | ||
610 | &parent, &p); | 615 | &parent, &p); |
611 | BUG_ON(__cfqq); | 616 | if (!__cfqq) { |
612 | 617 | rb_link_node(&cfqq->p_node, parent, p); | |
613 | rb_link_node(&cfqq->p_node, parent, p); | 618 | rb_insert_color(&cfqq->p_node, cfqq->p_root); |
614 | rb_insert_color(&cfqq->p_node, root); | 619 | } else |
620 | cfqq->p_root = NULL; | ||
615 | } | 621 | } |
616 | 622 | ||
617 | /* | 623 | /* |
@@ -656,8 +662,10 @@ static void cfq_del_cfqq_rr(struct cfq_data *cfqd, struct cfq_queue *cfqq) | |||
656 | 662 | ||
657 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) | 663 | if (!RB_EMPTY_NODE(&cfqq->rb_node)) |
658 | cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree); | 664 | cfq_rb_erase(&cfqq->rb_node, &cfqd->service_tree); |
659 | if (!RB_EMPTY_NODE(&cfqq->p_node)) | 665 | if (cfqq->p_root) { |
660 | rb_erase_init(&cfqq->p_node, &cfqd->prio_trees[cfqq->ioprio]); | 666 | rb_erase(&cfqq->p_node, cfqq->p_root); |
667 | cfqq->p_root = NULL; | ||
668 | } | ||
661 | 669 | ||
662 | BUG_ON(!cfqd->busy_queues); | 670 | BUG_ON(!cfqd->busy_queues); |
663 | cfqd->busy_queues--; | 671 | cfqd->busy_queues--; |
@@ -947,20 +955,24 @@ static inline sector_t cfq_dist_from_last(struct cfq_data *cfqd, | |||
947 | return cfqd->last_position - rq->sector; | 955 | return cfqd->last_position - rq->sector; |
948 | } | 956 | } |
949 | 957 | ||
958 | #define CIC_SEEK_THR 8 * 1024 | ||
959 | #define CIC_SEEKY(cic) ((cic)->seek_mean > CIC_SEEK_THR) | ||
960 | |||
950 | static inline int cfq_rq_close(struct cfq_data *cfqd, struct request *rq) | 961 | static inline int cfq_rq_close(struct cfq_data *cfqd, struct request *rq) |
951 | { | 962 | { |
952 | struct cfq_io_context *cic = cfqd->active_cic; | 963 | struct cfq_io_context *cic = cfqd->active_cic; |
964 | sector_t sdist = cic->seek_mean; | ||
953 | 965 | ||
954 | if (!sample_valid(cic->seek_samples)) | 966 | if (!sample_valid(cic->seek_samples)) |
955 | return 0; | 967 | sdist = CIC_SEEK_THR; |
956 | 968 | ||
957 | return cfq_dist_from_last(cfqd, rq) <= cic->seek_mean; | 969 | return cfq_dist_from_last(cfqd, rq) <= sdist; |
958 | } | 970 | } |
959 | 971 | ||
960 | static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, | 972 | static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, |
961 | struct cfq_queue *cur_cfqq) | 973 | struct cfq_queue *cur_cfqq) |
962 | { | 974 | { |
963 | struct rb_root *root = &cfqd->prio_trees[cur_cfqq->ioprio]; | 975 | struct rb_root *root = &cfqd->prio_trees[cur_cfqq->org_ioprio]; |
964 | struct rb_node *parent, *node; | 976 | struct rb_node *parent, *node; |
965 | struct cfq_queue *__cfqq; | 977 | struct cfq_queue *__cfqq; |
966 | sector_t sector = cfqd->last_position; | 978 | sector_t sector = cfqd->last_position; |
@@ -972,8 +984,7 @@ static struct cfq_queue *cfqq_close(struct cfq_data *cfqd, | |||
972 | * First, if we find a request starting at the end of the last | 984 | * First, if we find a request starting at the end of the last |
973 | * request, choose it. | 985 | * request, choose it. |
974 | */ | 986 | */ |
975 | __cfqq = cfq_prio_tree_lookup(cfqd, cur_cfqq->ioprio, | 987 | __cfqq = cfq_prio_tree_lookup(cfqd, root, sector, &parent, NULL); |
976 | sector, &parent, NULL); | ||
977 | if (__cfqq) | 988 | if (__cfqq) |
978 | return __cfqq; | 989 | return __cfqq; |
979 | 990 | ||
@@ -1039,9 +1050,6 @@ static struct cfq_queue *cfq_close_cooperator(struct cfq_data *cfqd, | |||
1039 | return cfqq; | 1050 | return cfqq; |
1040 | } | 1051 | } |
1041 | 1052 | ||
1042 | |||
1043 | #define CIC_SEEKY(cic) ((cic)->seek_mean > (8 * 1024)) | ||
1044 | |||
1045 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) | 1053 | static void cfq_arm_slice_timer(struct cfq_data *cfqd) |
1046 | { | 1054 | { |
1047 | struct cfq_queue *cfqq = cfqd->active_queue; | 1055 | struct cfq_queue *cfqq = cfqd->active_queue; |
@@ -1908,7 +1916,9 @@ cfq_update_io_seektime(struct cfq_data *cfqd, struct cfq_io_context *cic, | |||
1908 | sector_t sdist; | 1916 | sector_t sdist; |
1909 | u64 total; | 1917 | u64 total; |
1910 | 1918 | ||
1911 | if (cic->last_request_pos < rq->sector) | 1919 | if (!cic->last_request_pos) |
1920 | sdist = 0; | ||
1921 | else if (cic->last_request_pos < rq->sector) | ||
1912 | sdist = rq->sector - cic->last_request_pos; | 1922 | sdist = rq->sector - cic->last_request_pos; |
1913 | else | 1923 | else |
1914 | sdist = cic->last_request_pos - rq->sector; | 1924 | sdist = cic->last_request_pos - rq->sector; |
@@ -2443,12 +2453,22 @@ static void cfq_exit_queue(struct elevator_queue *e) | |||
2443 | static void *cfq_init_queue(struct request_queue *q) | 2453 | static void *cfq_init_queue(struct request_queue *q) |
2444 | { | 2454 | { |
2445 | struct cfq_data *cfqd; | 2455 | struct cfq_data *cfqd; |
2456 | int i; | ||
2446 | 2457 | ||
2447 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node); | 2458 | cfqd = kmalloc_node(sizeof(*cfqd), GFP_KERNEL | __GFP_ZERO, q->node); |
2448 | if (!cfqd) | 2459 | if (!cfqd) |
2449 | return NULL; | 2460 | return NULL; |
2450 | 2461 | ||
2451 | cfqd->service_tree = CFQ_RB_ROOT; | 2462 | cfqd->service_tree = CFQ_RB_ROOT; |
2463 | |||
2464 | /* | ||
2465 | * Not strictly needed (since RB_ROOT just clears the node and we | ||
2466 | * zeroed cfqd on alloc), but better be safe in case someone decides | ||
2467 | * to add magic to the rb code | ||
2468 | */ | ||
2469 | for (i = 0; i < CFQ_PRIO_LISTS; i++) | ||
2470 | cfqd->prio_trees[i] = RB_ROOT; | ||
2471 | |||
2452 | INIT_LIST_HEAD(&cfqd->cic_list); | 2472 | INIT_LIST_HEAD(&cfqd->cic_list); |
2453 | 2473 | ||
2454 | cfqd->queue = q; | 2474 | cfqd->queue = q; |
diff --git a/block/genhd.c b/block/genhd.c index a9ec910974c1..1a4916e01732 100644 --- a/block/genhd.c +++ b/block/genhd.c | |||
@@ -98,7 +98,7 @@ void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk, | |||
98 | 98 | ||
99 | if (flags & DISK_PITER_REVERSE) | 99 | if (flags & DISK_PITER_REVERSE) |
100 | piter->idx = ptbl->len - 1; | 100 | piter->idx = ptbl->len - 1; |
101 | else if (flags & DISK_PITER_INCL_PART0) | 101 | else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0)) |
102 | piter->idx = 0; | 102 | piter->idx = 0; |
103 | else | 103 | else |
104 | piter->idx = 1; | 104 | piter->idx = 1; |
@@ -134,7 +134,8 @@ struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter) | |||
134 | /* determine iteration parameters */ | 134 | /* determine iteration parameters */ |
135 | if (piter->flags & DISK_PITER_REVERSE) { | 135 | if (piter->flags & DISK_PITER_REVERSE) { |
136 | inc = -1; | 136 | inc = -1; |
137 | if (piter->flags & DISK_PITER_INCL_PART0) | 137 | if (piter->flags & (DISK_PITER_INCL_PART0 | |
138 | DISK_PITER_INCL_EMPTY_PART0)) | ||
138 | end = -1; | 139 | end = -1; |
139 | else | 140 | else |
140 | end = 0; | 141 | end = 0; |
@@ -150,7 +151,10 @@ struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter) | |||
150 | part = rcu_dereference(ptbl->part[piter->idx]); | 151 | part = rcu_dereference(ptbl->part[piter->idx]); |
151 | if (!part) | 152 | if (!part) |
152 | continue; | 153 | continue; |
153 | if (!(piter->flags & DISK_PITER_INCL_EMPTY) && !part->nr_sects) | 154 | if (!part->nr_sects && |
155 | !(piter->flags & DISK_PITER_INCL_EMPTY) && | ||
156 | !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 && | ||
157 | piter->idx == 0)) | ||
154 | continue; | 158 | continue; |
155 | 159 | ||
156 | get_device(part_to_dev(part)); | 160 | get_device(part_to_dev(part)); |
@@ -1011,7 +1015,7 @@ static int diskstats_show(struct seq_file *seqf, void *v) | |||
1011 | "\n\n"); | 1015 | "\n\n"); |
1012 | */ | 1016 | */ |
1013 | 1017 | ||
1014 | disk_part_iter_init(&piter, gp, DISK_PITER_INCL_PART0); | 1018 | disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0); |
1015 | while ((hd = disk_part_iter_next(&piter))) { | 1019 | while ((hd = disk_part_iter_next(&piter))) { |
1016 | cpu = part_stat_lock(); | 1020 | cpu = part_stat_lock(); |
1017 | part_round_stats(cpu, hd); | 1021 | part_round_stats(cpu, hd); |
diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c index 84b7f8709f41..82a0ca2f6729 100644 --- a/block/scsi_ioctl.c +++ b/block/scsi_ioctl.c | |||
@@ -290,6 +290,7 @@ static int sg_io(struct request_queue *q, struct gendisk *bd_disk, | |||
290 | 290 | ||
291 | if (hdr->iovec_count) { | 291 | if (hdr->iovec_count) { |
292 | const int size = sizeof(struct sg_iovec) * hdr->iovec_count; | 292 | const int size = sizeof(struct sg_iovec) * hdr->iovec_count; |
293 | size_t iov_data_len; | ||
293 | struct sg_iovec *iov; | 294 | struct sg_iovec *iov; |
294 | 295 | ||
295 | iov = kmalloc(size, GFP_KERNEL); | 296 | iov = kmalloc(size, GFP_KERNEL); |
@@ -304,8 +305,18 @@ static int sg_io(struct request_queue *q, struct gendisk *bd_disk, | |||
304 | goto out; | 305 | goto out; |
305 | } | 306 | } |
306 | 307 | ||
308 | /* SG_IO howto says that the shorter of the two wins */ | ||
309 | iov_data_len = iov_length((struct iovec *)iov, | ||
310 | hdr->iovec_count); | ||
311 | if (hdr->dxfer_len < iov_data_len) { | ||
312 | hdr->iovec_count = iov_shorten((struct iovec *)iov, | ||
313 | hdr->iovec_count, | ||
314 | hdr->dxfer_len); | ||
315 | iov_data_len = hdr->dxfer_len; | ||
316 | } | ||
317 | |||
307 | ret = blk_rq_map_user_iov(q, rq, NULL, iov, hdr->iovec_count, | 318 | ret = blk_rq_map_user_iov(q, rq, NULL, iov, hdr->iovec_count, |
308 | hdr->dxfer_len, GFP_KERNEL); | 319 | iov_data_len, GFP_KERNEL); |
309 | kfree(iov); | 320 | kfree(iov); |
310 | } else if (hdr->dxfer_len) | 321 | } else if (hdr->dxfer_len) |
311 | ret = blk_rq_map_user(q, rq, NULL, hdr->dxferp, hdr->dxfer_len, | 322 | ret = blk_rq_map_user(q, rq, NULL, hdr->dxferp, hdr->dxfer_len, |
diff --git a/drivers/Makefile b/drivers/Makefile index 2618a6169a13..1266ead6ace0 100644 --- a/drivers/Makefile +++ b/drivers/Makefile | |||
@@ -36,7 +36,7 @@ obj-$(CONFIG_FB_INTEL) += video/intelfb/ | |||
36 | 36 | ||
37 | obj-y += serial/ | 37 | obj-y += serial/ |
38 | obj-$(CONFIG_PARPORT) += parport/ | 38 | obj-$(CONFIG_PARPORT) += parport/ |
39 | obj-y += base/ block/ misc/ mfd/ media/ | 39 | obj-y += base/ block/ misc/ mfd/ |
40 | obj-$(CONFIG_NUBUS) += nubus/ | 40 | obj-$(CONFIG_NUBUS) += nubus/ |
41 | obj-y += macintosh/ | 41 | obj-y += macintosh/ |
42 | obj-$(CONFIG_IDE) += ide/ | 42 | obj-$(CONFIG_IDE) += ide/ |
@@ -71,7 +71,7 @@ obj-$(CONFIG_GAMEPORT) += input/gameport/ | |||
71 | obj-$(CONFIG_INPUT) += input/ | 71 | obj-$(CONFIG_INPUT) += input/ |
72 | obj-$(CONFIG_I2O) += message/ | 72 | obj-$(CONFIG_I2O) += message/ |
73 | obj-$(CONFIG_RTC_LIB) += rtc/ | 73 | obj-$(CONFIG_RTC_LIB) += rtc/ |
74 | obj-y += i2c/ | 74 | obj-y += i2c/ media/ |
75 | obj-$(CONFIG_W1) += w1/ | 75 | obj-$(CONFIG_W1) += w1/ |
76 | obj-$(CONFIG_POWER_SUPPLY) += power/ | 76 | obj-$(CONFIG_POWER_SUPPLY) += power/ |
77 | obj-$(CONFIG_HWMON) += hwmon/ | 77 | obj-$(CONFIG_HWMON) += hwmon/ |
diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index baa5fc05e124..db307a356f08 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c | |||
@@ -211,6 +211,12 @@ acpi_status acpi_enter_sleep_state_prep(u8 sleep_state) | |||
211 | 211 | ||
212 | ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep) | 212 | ACPI_EXPORT_SYMBOL(acpi_enter_sleep_state_prep) |
213 | 213 | ||
214 | static unsigned int gts, bfs; | ||
215 | module_param(gts, uint, 0644); | ||
216 | module_param(bfs, uint, 0644); | ||
217 | MODULE_PARM_DESC(gts, "Enable evaluation of _GTS on suspend."); | ||
218 | MODULE_PARM_DESC(bfs, "Enable evaluation of _BFS on resume".); | ||
219 | |||
214 | /******************************************************************************* | 220 | /******************************************************************************* |
215 | * | 221 | * |
216 | * FUNCTION: acpi_enter_sleep_state | 222 | * FUNCTION: acpi_enter_sleep_state |
@@ -278,16 +284,18 @@ acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state) | |||
278 | return_ACPI_STATUS(status); | 284 | return_ACPI_STATUS(status); |
279 | } | 285 | } |
280 | 286 | ||
281 | /* Execute the _GTS method */ | 287 | if (gts) { |
288 | /* Execute the _GTS method */ | ||
282 | 289 | ||
283 | arg_list.count = 1; | 290 | arg_list.count = 1; |
284 | arg_list.pointer = &arg; | 291 | arg_list.pointer = &arg; |
285 | arg.type = ACPI_TYPE_INTEGER; | 292 | arg.type = ACPI_TYPE_INTEGER; |
286 | arg.integer.value = sleep_state; | 293 | arg.integer.value = sleep_state; |
287 | 294 | ||
288 | status = acpi_evaluate_object(NULL, METHOD_NAME__GTS, &arg_list, NULL); | 295 | status = acpi_evaluate_object(NULL, METHOD_NAME__GTS, &arg_list, NULL); |
289 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { | 296 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { |
290 | return_ACPI_STATUS(status); | 297 | return_ACPI_STATUS(status); |
298 | } | ||
291 | } | 299 | } |
292 | 300 | ||
293 | /* Get current value of PM1A control */ | 301 | /* Get current value of PM1A control */ |
@@ -513,18 +521,19 @@ acpi_status acpi_leave_sleep_state_prep(u8 sleep_state) | |||
513 | } | 521 | } |
514 | } | 522 | } |
515 | 523 | ||
516 | /* Execute the _BFS method */ | 524 | if (bfs) { |
525 | /* Execute the _BFS method */ | ||
517 | 526 | ||
518 | arg_list.count = 1; | 527 | arg_list.count = 1; |
519 | arg_list.pointer = &arg; | 528 | arg_list.pointer = &arg; |
520 | arg.type = ACPI_TYPE_INTEGER; | 529 | arg.type = ACPI_TYPE_INTEGER; |
521 | arg.integer.value = sleep_state; | 530 | arg.integer.value = sleep_state; |
522 | 531 | ||
523 | status = acpi_evaluate_object(NULL, METHOD_NAME__BFS, &arg_list, NULL); | 532 | status = acpi_evaluate_object(NULL, METHOD_NAME__BFS, &arg_list, NULL); |
524 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { | 533 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { |
525 | ACPI_EXCEPTION((AE_INFO, status, "During Method _BFS")); | 534 | ACPI_EXCEPTION((AE_INFO, status, "During Method _BFS")); |
535 | } | ||
526 | } | 536 | } |
527 | |||
528 | return_ACPI_STATUS(status); | 537 | return_ACPI_STATUS(status); |
529 | } | 538 | } |
530 | 539 | ||
diff --git a/drivers/acpi/acpica/hwvalid.c b/drivers/acpi/acpica/hwvalid.c index 7737afb157c3..ec33f270c5b7 100644 --- a/drivers/acpi/acpica/hwvalid.c +++ b/drivers/acpi/acpica/hwvalid.c | |||
@@ -90,6 +90,7 @@ static const struct acpi_port_info acpi_protected_ports[] = { | |||
90 | {"PIT2", 0x0048, 0x004B, ACPI_OSI_WIN_XP}, | 90 | {"PIT2", 0x0048, 0x004B, ACPI_OSI_WIN_XP}, |
91 | {"RTC", 0x0070, 0x0071, ACPI_OSI_WIN_XP}, | 91 | {"RTC", 0x0070, 0x0071, ACPI_OSI_WIN_XP}, |
92 | {"CMOS", 0x0074, 0x0076, ACPI_OSI_WIN_XP}, | 92 | {"CMOS", 0x0074, 0x0076, ACPI_OSI_WIN_XP}, |
93 | {"DMA1", 0x0081, 0x0083, ACPI_OSI_WIN_XP}, | ||
93 | {"DMA1L", 0x0087, 0x0087, ACPI_OSI_WIN_XP}, | 94 | {"DMA1L", 0x0087, 0x0087, ACPI_OSI_WIN_XP}, |
94 | {"DMA2", 0x0089, 0x008B, ACPI_OSI_WIN_XP}, | 95 | {"DMA2", 0x0089, 0x008B, ACPI_OSI_WIN_XP}, |
95 | {"DMA2L", 0x008F, 0x008F, ACPI_OSI_WIN_XP}, | 96 | {"DMA2L", 0x008F, 0x008F, ACPI_OSI_WIN_XP}, |
@@ -151,7 +152,7 @@ acpi_hw_validate_io_request(acpi_io_address address, u32 bit_width) | |||
151 | ACPI_ERROR((AE_INFO, | 152 | ACPI_ERROR((AE_INFO, |
152 | "Illegal I/O port address/length above 64K: 0x%p/%X", | 153 | "Illegal I/O port address/length above 64K: 0x%p/%X", |
153 | ACPI_CAST_PTR(void, address), byte_width)); | 154 | ACPI_CAST_PTR(void, address), byte_width)); |
154 | return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS); | 155 | return_ACPI_STATUS(AE_LIMIT); |
155 | } | 156 | } |
156 | 157 | ||
157 | /* Exit if requested address is not within the protected port table */ | 158 | /* Exit if requested address is not within the protected port table */ |
@@ -178,11 +179,12 @@ acpi_hw_validate_io_request(acpi_io_address address, u32 bit_width) | |||
178 | /* Port illegality may depend on the _OSI calls made by the BIOS */ | 179 | /* Port illegality may depend on the _OSI calls made by the BIOS */ |
179 | 180 | ||
180 | if (acpi_gbl_osi_data >= port_info->osi_dependency) { | 181 | if (acpi_gbl_osi_data >= port_info->osi_dependency) { |
181 | ACPI_ERROR((AE_INFO, | 182 | ACPI_DEBUG_PRINT((ACPI_DB_IO, |
182 | "Denied AML access to port 0x%p/%X (%s 0x%.4X-0x%.4X)", | 183 | "Denied AML access to port 0x%p/%X (%s 0x%.4X-0x%.4X)", |
183 | ACPI_CAST_PTR(void, address), | 184 | ACPI_CAST_PTR(void, address), |
184 | byte_width, port_info->name, | 185 | byte_width, port_info->name, |
185 | port_info->start, port_info->end)); | 186 | port_info->start, |
187 | port_info->end)); | ||
186 | 188 | ||
187 | return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS); | 189 | return_ACPI_STATUS(AE_AML_ILLEGAL_ADDRESS); |
188 | } | 190 | } |
@@ -206,7 +208,7 @@ acpi_hw_validate_io_request(acpi_io_address address, u32 bit_width) | |||
206 | * Value Where value is placed | 208 | * Value Where value is placed |
207 | * Width Number of bits | 209 | * Width Number of bits |
208 | * | 210 | * |
209 | * RETURN: Value read from port | 211 | * RETURN: Status and value read from port |
210 | * | 212 | * |
211 | * DESCRIPTION: Read data from an I/O port or register. This is a front-end | 213 | * DESCRIPTION: Read data from an I/O port or register. This is a front-end |
212 | * to acpi_os_read_port that performs validation on both the port | 214 | * to acpi_os_read_port that performs validation on both the port |
@@ -217,14 +219,43 @@ acpi_hw_validate_io_request(acpi_io_address address, u32 bit_width) | |||
217 | acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width) | 219 | acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width) |
218 | { | 220 | { |
219 | acpi_status status; | 221 | acpi_status status; |
222 | u32 one_byte; | ||
223 | u32 i; | ||
224 | |||
225 | /* Validate the entire request and perform the I/O */ | ||
220 | 226 | ||
221 | status = acpi_hw_validate_io_request(address, width); | 227 | status = acpi_hw_validate_io_request(address, width); |
222 | if (ACPI_FAILURE(status)) { | 228 | if (ACPI_SUCCESS(status)) { |
229 | status = acpi_os_read_port(address, value, width); | ||
223 | return status; | 230 | return status; |
224 | } | 231 | } |
225 | 232 | ||
226 | status = acpi_os_read_port(address, value, width); | 233 | if (status != AE_AML_ILLEGAL_ADDRESS) { |
227 | return status; | 234 | return status; |
235 | } | ||
236 | |||
237 | /* | ||
238 | * There has been a protection violation within the request. Fall | ||
239 | * back to byte granularity port I/O and ignore the failing bytes. | ||
240 | * This provides Windows compatibility. | ||
241 | */ | ||
242 | for (i = 0, *value = 0; i < width; i += 8) { | ||
243 | |||
244 | /* Validate and read one byte */ | ||
245 | |||
246 | if (acpi_hw_validate_io_request(address, 8) == AE_OK) { | ||
247 | status = acpi_os_read_port(address, &one_byte, 8); | ||
248 | if (ACPI_FAILURE(status)) { | ||
249 | return status; | ||
250 | } | ||
251 | |||
252 | *value |= (one_byte << i); | ||
253 | } | ||
254 | |||
255 | address++; | ||
256 | } | ||
257 | |||
258 | return AE_OK; | ||
228 | } | 259 | } |
229 | 260 | ||
230 | /****************************************************************************** | 261 | /****************************************************************************** |
@@ -235,7 +266,7 @@ acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width) | |||
235 | * Value Value to write | 266 | * Value Value to write |
236 | * Width Number of bits | 267 | * Width Number of bits |
237 | * | 268 | * |
238 | * RETURN: None | 269 | * RETURN: Status |
239 | * | 270 | * |
240 | * DESCRIPTION: Write data to an I/O port or register. This is a front-end | 271 | * DESCRIPTION: Write data to an I/O port or register. This is a front-end |
241 | * to acpi_os_write_port that performs validation on both the port | 272 | * to acpi_os_write_port that performs validation on both the port |
@@ -246,12 +277,39 @@ acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width) | |||
246 | acpi_status acpi_hw_write_port(acpi_io_address address, u32 value, u32 width) | 277 | acpi_status acpi_hw_write_port(acpi_io_address address, u32 value, u32 width) |
247 | { | 278 | { |
248 | acpi_status status; | 279 | acpi_status status; |
280 | u32 i; | ||
281 | |||
282 | /* Validate the entire request and perform the I/O */ | ||
249 | 283 | ||
250 | status = acpi_hw_validate_io_request(address, width); | 284 | status = acpi_hw_validate_io_request(address, width); |
251 | if (ACPI_FAILURE(status)) { | 285 | if (ACPI_SUCCESS(status)) { |
286 | status = acpi_os_write_port(address, value, width); | ||
252 | return status; | 287 | return status; |
253 | } | 288 | } |
254 | 289 | ||
255 | status = acpi_os_write_port(address, value, width); | 290 | if (status != AE_AML_ILLEGAL_ADDRESS) { |
256 | return status; | 291 | return status; |
292 | } | ||
293 | |||
294 | /* | ||
295 | * There has been a protection violation within the request. Fall | ||
296 | * back to byte granularity port I/O and ignore the failing bytes. | ||
297 | * This provides Windows compatibility. | ||
298 | */ | ||
299 | for (i = 0; i < width; i += 8) { | ||
300 | |||
301 | /* Validate and write one byte */ | ||
302 | |||
303 | if (acpi_hw_validate_io_request(address, 8) == AE_OK) { | ||
304 | status = | ||
305 | acpi_os_write_port(address, (value >> i) & 0xFF, 8); | ||
306 | if (ACPI_FAILURE(status)) { | ||
307 | return status; | ||
308 | } | ||
309 | } | ||
310 | |||
311 | address++; | ||
312 | } | ||
313 | |||
314 | return AE_OK; | ||
257 | } | 315 | } |
diff --git a/drivers/acpi/acpica/rscreate.c b/drivers/acpi/acpica/rscreate.c index 663f692fffcf..a3c23d686d5f 100644 --- a/drivers/acpi/acpica/rscreate.c +++ b/drivers/acpi/acpica/rscreate.c | |||
@@ -191,8 +191,6 @@ acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object, | |||
191 | user_prt = ACPI_CAST_PTR(struct acpi_pci_routing_table, buffer); | 191 | user_prt = ACPI_CAST_PTR(struct acpi_pci_routing_table, buffer); |
192 | 192 | ||
193 | for (index = 0; index < number_of_elements; index++) { | 193 | for (index = 0; index < number_of_elements; index++) { |
194 | int source_name_index = 2; | ||
195 | int source_index_index = 3; | ||
196 | 194 | ||
197 | /* | 195 | /* |
198 | * Point user_prt past this current structure | 196 | * Point user_prt past this current structure |
@@ -261,27 +259,6 @@ acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object, | |||
261 | return_ACPI_STATUS(AE_BAD_DATA); | 259 | return_ACPI_STATUS(AE_BAD_DATA); |
262 | } | 260 | } |
263 | 261 | ||
264 | /* | ||
265 | * If BIOS erroneously reversed the _PRT source_name and source_index, | ||
266 | * then reverse them back. | ||
267 | */ | ||
268 | if ((sub_object_list[3])->common.type != | ||
269 | ACPI_TYPE_INTEGER) { | ||
270 | if (acpi_gbl_enable_interpreter_slack) { | ||
271 | source_name_index = 3; | ||
272 | source_index_index = 2; | ||
273 | printk(KERN_WARNING | ||
274 | "ACPI: Handling Garbled _PRT entry\n"); | ||
275 | } else { | ||
276 | ACPI_ERROR((AE_INFO, | ||
277 | "(PRT[%X].source_index) Need Integer, found %s", | ||
278 | index, | ||
279 | acpi_ut_get_object_type_name | ||
280 | (sub_object_list[3]))); | ||
281 | return_ACPI_STATUS(AE_BAD_DATA); | ||
282 | } | ||
283 | } | ||
284 | |||
285 | user_prt->pin = (u32) obj_desc->integer.value; | 262 | user_prt->pin = (u32) obj_desc->integer.value; |
286 | 263 | ||
287 | /* | 264 | /* |
@@ -304,7 +281,7 @@ acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object, | |||
304 | * 3) Third subobject: Dereference the PRT.source_name | 281 | * 3) Third subobject: Dereference the PRT.source_name |
305 | * The name may be unresolved (slack mode), so allow a null object | 282 | * The name may be unresolved (slack mode), so allow a null object |
306 | */ | 283 | */ |
307 | obj_desc = sub_object_list[source_name_index]; | 284 | obj_desc = sub_object_list[2]; |
308 | if (obj_desc) { | 285 | if (obj_desc) { |
309 | switch (obj_desc->common.type) { | 286 | switch (obj_desc->common.type) { |
310 | case ACPI_TYPE_LOCAL_REFERENCE: | 287 | case ACPI_TYPE_LOCAL_REFERENCE: |
@@ -378,7 +355,7 @@ acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object, | |||
378 | 355 | ||
379 | /* 4) Fourth subobject: Dereference the PRT.source_index */ | 356 | /* 4) Fourth subobject: Dereference the PRT.source_index */ |
380 | 357 | ||
381 | obj_desc = sub_object_list[source_index_index]; | 358 | obj_desc = sub_object_list[3]; |
382 | if (obj_desc->common.type != ACPI_TYPE_INTEGER) { | 359 | if (obj_desc->common.type != ACPI_TYPE_INTEGER) { |
383 | ACPI_ERROR((AE_INFO, | 360 | ACPI_ERROR((AE_INFO, |
384 | "(PRT[%X].SourceIndex) Need Integer, found %s", | 361 | "(PRT[%X].SourceIndex) Need Integer, found %s", |
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index d73c94b8441d..9195deba9d94 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * acpi_button.c - ACPI Button Driver ($Revision: 30 $) | 2 | * button.c - ACPI Button Driver |
3 | * | 3 | * |
4 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> | 4 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
5 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> | 5 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
@@ -41,17 +41,13 @@ | |||
41 | 41 | ||
42 | #define ACPI_BUTTON_SUBCLASS_POWER "power" | 42 | #define ACPI_BUTTON_SUBCLASS_POWER "power" |
43 | #define ACPI_BUTTON_HID_POWER "PNP0C0C" | 43 | #define ACPI_BUTTON_HID_POWER "PNP0C0C" |
44 | #define ACPI_BUTTON_DEVICE_NAME_POWER "Power Button (CM)" | 44 | #define ACPI_BUTTON_DEVICE_NAME_POWER "Power Button" |
45 | #define ACPI_BUTTON_DEVICE_NAME_POWERF "Power Button (FF)" | ||
46 | #define ACPI_BUTTON_TYPE_POWER 0x01 | 45 | #define ACPI_BUTTON_TYPE_POWER 0x01 |
47 | #define ACPI_BUTTON_TYPE_POWERF 0x02 | ||
48 | 46 | ||
49 | #define ACPI_BUTTON_SUBCLASS_SLEEP "sleep" | 47 | #define ACPI_BUTTON_SUBCLASS_SLEEP "sleep" |
50 | #define ACPI_BUTTON_HID_SLEEP "PNP0C0E" | 48 | #define ACPI_BUTTON_HID_SLEEP "PNP0C0E" |
51 | #define ACPI_BUTTON_DEVICE_NAME_SLEEP "Sleep Button (CM)" | 49 | #define ACPI_BUTTON_DEVICE_NAME_SLEEP "Sleep Button" |
52 | #define ACPI_BUTTON_DEVICE_NAME_SLEEPF "Sleep Button (FF)" | ||
53 | #define ACPI_BUTTON_TYPE_SLEEP 0x03 | 50 | #define ACPI_BUTTON_TYPE_SLEEP 0x03 |
54 | #define ACPI_BUTTON_TYPE_SLEEPF 0x04 | ||
55 | 51 | ||
56 | #define ACPI_BUTTON_SUBCLASS_LID "lid" | 52 | #define ACPI_BUTTON_SUBCLASS_LID "lid" |
57 | #define ACPI_BUTTON_HID_LID "PNP0C0D" | 53 | #define ACPI_BUTTON_HID_LID "PNP0C0D" |
@@ -95,7 +91,6 @@ static struct acpi_driver acpi_button_driver = { | |||
95 | }; | 91 | }; |
96 | 92 | ||
97 | struct acpi_button { | 93 | struct acpi_button { |
98 | struct acpi_device *device; /* Fixed button kludge */ | ||
99 | unsigned int type; | 94 | unsigned int type; |
100 | struct input_dev *input; | 95 | struct input_dev *input; |
101 | char phys[32]; /* for input device */ | 96 | char phys[32]; /* for input device */ |
@@ -126,14 +121,10 @@ static struct proc_dir_entry *acpi_button_dir; | |||
126 | 121 | ||
127 | static int acpi_button_info_seq_show(struct seq_file *seq, void *offset) | 122 | static int acpi_button_info_seq_show(struct seq_file *seq, void *offset) |
128 | { | 123 | { |
129 | struct acpi_button *button = seq->private; | 124 | struct acpi_device *device = seq->private; |
130 | |||
131 | if (!button || !button->device) | ||
132 | return 0; | ||
133 | 125 | ||
134 | seq_printf(seq, "type: %s\n", | 126 | seq_printf(seq, "type: %s\n", |
135 | acpi_device_name(button->device)); | 127 | acpi_device_name(device)); |
136 | |||
137 | return 0; | 128 | return 0; |
138 | } | 129 | } |
139 | 130 | ||
@@ -144,14 +135,11 @@ static int acpi_button_info_open_fs(struct inode *inode, struct file *file) | |||
144 | 135 | ||
145 | static int acpi_button_state_seq_show(struct seq_file *seq, void *offset) | 136 | static int acpi_button_state_seq_show(struct seq_file *seq, void *offset) |
146 | { | 137 | { |
147 | struct acpi_button *button = seq->private; | 138 | struct acpi_device *device = seq->private; |
148 | acpi_status status; | 139 | acpi_status status; |
149 | unsigned long long state; | 140 | unsigned long long state; |
150 | 141 | ||
151 | if (!button || !button->device) | 142 | status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state); |
152 | return 0; | ||
153 | |||
154 | status = acpi_evaluate_integer(button->device->handle, "_LID", NULL, &state); | ||
155 | seq_printf(seq, "state: %s\n", | 143 | seq_printf(seq, "state: %s\n", |
156 | ACPI_FAILURE(status) ? "unsupported" : | 144 | ACPI_FAILURE(status) ? "unsupported" : |
157 | (state ? "open" : "closed")); | 145 | (state ? "open" : "closed")); |
@@ -169,24 +157,17 @@ static struct proc_dir_entry *acpi_lid_dir; | |||
169 | 157 | ||
170 | static int acpi_button_add_fs(struct acpi_device *device) | 158 | static int acpi_button_add_fs(struct acpi_device *device) |
171 | { | 159 | { |
160 | struct acpi_button *button = acpi_driver_data(device); | ||
172 | struct proc_dir_entry *entry = NULL; | 161 | struct proc_dir_entry *entry = NULL; |
173 | struct acpi_button *button; | ||
174 | |||
175 | if (!device || !acpi_driver_data(device)) | ||
176 | return -EINVAL; | ||
177 | |||
178 | button = acpi_driver_data(device); | ||
179 | 162 | ||
180 | switch (button->type) { | 163 | switch (button->type) { |
181 | case ACPI_BUTTON_TYPE_POWER: | 164 | case ACPI_BUTTON_TYPE_POWER: |
182 | case ACPI_BUTTON_TYPE_POWERF: | ||
183 | if (!acpi_power_dir) | 165 | if (!acpi_power_dir) |
184 | acpi_power_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_POWER, | 166 | acpi_power_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_POWER, |
185 | acpi_button_dir); | 167 | acpi_button_dir); |
186 | entry = acpi_power_dir; | 168 | entry = acpi_power_dir; |
187 | break; | 169 | break; |
188 | case ACPI_BUTTON_TYPE_SLEEP: | 170 | case ACPI_BUTTON_TYPE_SLEEP: |
189 | case ACPI_BUTTON_TYPE_SLEEPF: | ||
190 | if (!acpi_sleep_dir) | 171 | if (!acpi_sleep_dir) |
191 | acpi_sleep_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_SLEEP, | 172 | acpi_sleep_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_SLEEP, |
192 | acpi_button_dir); | 173 | acpi_button_dir); |
@@ -210,8 +191,7 @@ static int acpi_button_add_fs(struct acpi_device *device) | |||
210 | /* 'info' [R] */ | 191 | /* 'info' [R] */ |
211 | entry = proc_create_data(ACPI_BUTTON_FILE_INFO, | 192 | entry = proc_create_data(ACPI_BUTTON_FILE_INFO, |
212 | S_IRUGO, acpi_device_dir(device), | 193 | S_IRUGO, acpi_device_dir(device), |
213 | &acpi_button_info_fops, | 194 | &acpi_button_info_fops, device); |
214 | acpi_driver_data(device)); | ||
215 | if (!entry) | 195 | if (!entry) |
216 | return -ENODEV; | 196 | return -ENODEV; |
217 | 197 | ||
@@ -219,8 +199,7 @@ static int acpi_button_add_fs(struct acpi_device *device) | |||
219 | if (button->type == ACPI_BUTTON_TYPE_LID) { | 199 | if (button->type == ACPI_BUTTON_TYPE_LID) { |
220 | entry = proc_create_data(ACPI_BUTTON_FILE_STATE, | 200 | entry = proc_create_data(ACPI_BUTTON_FILE_STATE, |
221 | S_IRUGO, acpi_device_dir(device), | 201 | S_IRUGO, acpi_device_dir(device), |
222 | &acpi_button_state_fops, | 202 | &acpi_button_state_fops, device); |
223 | acpi_driver_data(device)); | ||
224 | if (!entry) | 203 | if (!entry) |
225 | return -ENODEV; | 204 | return -ENODEV; |
226 | } | 205 | } |
@@ -250,15 +229,16 @@ static int acpi_button_remove_fs(struct acpi_device *device) | |||
250 | /* -------------------------------------------------------------------------- | 229 | /* -------------------------------------------------------------------------- |
251 | Driver Interface | 230 | Driver Interface |
252 | -------------------------------------------------------------------------- */ | 231 | -------------------------------------------------------------------------- */ |
253 | static int acpi_lid_send_state(struct acpi_button *button) | 232 | static int acpi_lid_send_state(struct acpi_device *device) |
254 | { | 233 | { |
234 | struct acpi_button *button = acpi_driver_data(device); | ||
255 | unsigned long long state; | 235 | unsigned long long state; |
256 | acpi_status status; | 236 | acpi_status status; |
257 | 237 | ||
258 | status = acpi_evaluate_integer(button->device->handle, "_LID", NULL, | 238 | status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state); |
259 | &state); | ||
260 | if (ACPI_FAILURE(status)) | 239 | if (ACPI_FAILURE(status)) |
261 | return -ENODEV; | 240 | return -ENODEV; |
241 | |||
262 | /* input layer checks if event is redundant */ | 242 | /* input layer checks if event is redundant */ |
263 | input_report_switch(button->input, SW_LID, !state); | 243 | input_report_switch(button->input, SW_LID, !state); |
264 | input_sync(button->input); | 244 | input_sync(button->input); |
@@ -270,9 +250,6 @@ static void acpi_button_notify(struct acpi_device *device, u32 event) | |||
270 | struct acpi_button *button = acpi_driver_data(device); | 250 | struct acpi_button *button = acpi_driver_data(device); |
271 | struct input_dev *input; | 251 | struct input_dev *input; |
272 | 252 | ||
273 | if (!button || !button->device) | ||
274 | return; | ||
275 | |||
276 | switch (event) { | 253 | switch (event) { |
277 | case ACPI_FIXED_HARDWARE_EVENT: | 254 | case ACPI_FIXED_HARDWARE_EVENT: |
278 | event = ACPI_BUTTON_NOTIFY_STATUS; | 255 | event = ACPI_BUTTON_NOTIFY_STATUS; |
@@ -280,7 +257,7 @@ static void acpi_button_notify(struct acpi_device *device, u32 event) | |||
280 | case ACPI_BUTTON_NOTIFY_STATUS: | 257 | case ACPI_BUTTON_NOTIFY_STATUS: |
281 | input = button->input; | 258 | input = button->input; |
282 | if (button->type == ACPI_BUTTON_TYPE_LID) { | 259 | if (button->type == ACPI_BUTTON_TYPE_LID) { |
283 | acpi_lid_send_state(button); | 260 | acpi_lid_send_state(device); |
284 | } else { | 261 | } else { |
285 | int keycode = test_bit(KEY_SLEEP, input->keybit) ? | 262 | int keycode = test_bit(KEY_SLEEP, input->keybit) ? |
286 | KEY_SLEEP : KEY_POWER; | 263 | KEY_SLEEP : KEY_POWER; |
@@ -291,43 +268,35 @@ static void acpi_button_notify(struct acpi_device *device, u32 event) | |||
291 | input_sync(input); | 268 | input_sync(input); |
292 | } | 269 | } |
293 | 270 | ||
294 | acpi_bus_generate_proc_event(button->device, event, | 271 | acpi_bus_generate_proc_event(device, event, ++button->pushed); |
295 | ++button->pushed); | ||
296 | break; | 272 | break; |
297 | default: | 273 | default: |
298 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 274 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
299 | "Unsupported event [0x%x]\n", event)); | 275 | "Unsupported event [0x%x]\n", event)); |
300 | break; | 276 | break; |
301 | } | 277 | } |
302 | |||
303 | return; | ||
304 | } | 278 | } |
305 | 279 | ||
306 | static int acpi_button_resume(struct acpi_device *device) | 280 | static int acpi_button_resume(struct acpi_device *device) |
307 | { | 281 | { |
308 | struct acpi_button *button; | 282 | struct acpi_button *button = acpi_driver_data(device); |
309 | if (!device) | 283 | |
310 | return -EINVAL; | 284 | if (button->type == ACPI_BUTTON_TYPE_LID) |
311 | button = acpi_driver_data(device); | 285 | return acpi_lid_send_state(device); |
312 | if (button && button->type == ACPI_BUTTON_TYPE_LID) | ||
313 | return acpi_lid_send_state(button); | ||
314 | return 0; | 286 | return 0; |
315 | } | 287 | } |
316 | 288 | ||
317 | static int acpi_button_add(struct acpi_device *device) | 289 | static int acpi_button_add(struct acpi_device *device) |
318 | { | 290 | { |
319 | int error; | ||
320 | struct acpi_button *button; | 291 | struct acpi_button *button; |
321 | struct input_dev *input; | 292 | struct input_dev *input; |
322 | 293 | char *hid, *name, *class; | |
323 | if (!device) | 294 | int error; |
324 | return -EINVAL; | ||
325 | 295 | ||
326 | button = kzalloc(sizeof(struct acpi_button), GFP_KERNEL); | 296 | button = kzalloc(sizeof(struct acpi_button), GFP_KERNEL); |
327 | if (!button) | 297 | if (!button) |
328 | return -ENOMEM; | 298 | return -ENOMEM; |
329 | 299 | ||
330 | button->device = device; | ||
331 | device->driver_data = button; | 300 | device->driver_data = button; |
332 | 301 | ||
333 | button->input = input = input_allocate_device(); | 302 | button->input = input = input_allocate_device(); |
@@ -336,40 +305,29 @@ static int acpi_button_add(struct acpi_device *device) | |||
336 | goto err_free_button; | 305 | goto err_free_button; |
337 | } | 306 | } |
338 | 307 | ||
339 | /* | 308 | hid = acpi_device_hid(device); |
340 | * Determine the button type (via hid), as fixed-feature buttons | 309 | name = acpi_device_name(device); |
341 | * need to be handled a bit differently than generic-space. | 310 | class = acpi_device_class(device); |
342 | */ | 311 | |
343 | if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_POWER)) { | 312 | if (!strcmp(hid, ACPI_BUTTON_HID_POWER) || |
313 | !strcmp(hid, ACPI_BUTTON_HID_POWERF)) { | ||
344 | button->type = ACPI_BUTTON_TYPE_POWER; | 314 | button->type = ACPI_BUTTON_TYPE_POWER; |
345 | strcpy(acpi_device_name(device), ACPI_BUTTON_DEVICE_NAME_POWER); | 315 | strcpy(name, ACPI_BUTTON_DEVICE_NAME_POWER); |
346 | sprintf(acpi_device_class(device), "%s/%s", | 316 | sprintf(class, "%s/%s", |
347 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER); | ||
348 | } else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_POWERF)) { | ||
349 | button->type = ACPI_BUTTON_TYPE_POWERF; | ||
350 | strcpy(acpi_device_name(device), | ||
351 | ACPI_BUTTON_DEVICE_NAME_POWERF); | ||
352 | sprintf(acpi_device_class(device), "%s/%s", | ||
353 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER); | 317 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER); |
354 | } else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_SLEEP)) { | 318 | } else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEP) || |
319 | !strcmp(hid, ACPI_BUTTON_HID_SLEEPF)) { | ||
355 | button->type = ACPI_BUTTON_TYPE_SLEEP; | 320 | button->type = ACPI_BUTTON_TYPE_SLEEP; |
356 | strcpy(acpi_device_name(device), ACPI_BUTTON_DEVICE_NAME_SLEEP); | 321 | strcpy(name, ACPI_BUTTON_DEVICE_NAME_SLEEP); |
357 | sprintf(acpi_device_class(device), "%s/%s", | 322 | sprintf(class, "%s/%s", |
358 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP); | ||
359 | } else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_SLEEPF)) { | ||
360 | button->type = ACPI_BUTTON_TYPE_SLEEPF; | ||
361 | strcpy(acpi_device_name(device), | ||
362 | ACPI_BUTTON_DEVICE_NAME_SLEEPF); | ||
363 | sprintf(acpi_device_class(device), "%s/%s", | ||
364 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP); | 323 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP); |
365 | } else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_LID)) { | 324 | } else if (!strcmp(hid, ACPI_BUTTON_HID_LID)) { |
366 | button->type = ACPI_BUTTON_TYPE_LID; | 325 | button->type = ACPI_BUTTON_TYPE_LID; |
367 | strcpy(acpi_device_name(device), ACPI_BUTTON_DEVICE_NAME_LID); | 326 | strcpy(name, ACPI_BUTTON_DEVICE_NAME_LID); |
368 | sprintf(acpi_device_class(device), "%s/%s", | 327 | sprintf(class, "%s/%s", |
369 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID); | 328 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID); |
370 | } else { | 329 | } else { |
371 | printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", | 330 | printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", hid); |
372 | acpi_device_hid(device)); | ||
373 | error = -ENODEV; | 331 | error = -ENODEV; |
374 | goto err_free_input; | 332 | goto err_free_input; |
375 | } | 333 | } |
@@ -378,10 +336,9 @@ static int acpi_button_add(struct acpi_device *device) | |||
378 | if (error) | 336 | if (error) |
379 | goto err_free_input; | 337 | goto err_free_input; |
380 | 338 | ||
381 | snprintf(button->phys, sizeof(button->phys), | 339 | snprintf(button->phys, sizeof(button->phys), "%s/button/input0", hid); |
382 | "%s/button/input0", acpi_device_hid(device)); | ||
383 | 340 | ||
384 | input->name = acpi_device_name(device); | 341 | input->name = name; |
385 | input->phys = button->phys; | 342 | input->phys = button->phys; |
386 | input->id.bustype = BUS_HOST; | 343 | input->id.bustype = BUS_HOST; |
387 | input->id.product = button->type; | 344 | input->id.product = button->type; |
@@ -389,13 +346,11 @@ static int acpi_button_add(struct acpi_device *device) | |||
389 | 346 | ||
390 | switch (button->type) { | 347 | switch (button->type) { |
391 | case ACPI_BUTTON_TYPE_POWER: | 348 | case ACPI_BUTTON_TYPE_POWER: |
392 | case ACPI_BUTTON_TYPE_POWERF: | ||
393 | input->evbit[0] = BIT_MASK(EV_KEY); | 349 | input->evbit[0] = BIT_MASK(EV_KEY); |
394 | set_bit(KEY_POWER, input->keybit); | 350 | set_bit(KEY_POWER, input->keybit); |
395 | break; | 351 | break; |
396 | 352 | ||
397 | case ACPI_BUTTON_TYPE_SLEEP: | 353 | case ACPI_BUTTON_TYPE_SLEEP: |
398 | case ACPI_BUTTON_TYPE_SLEEPF: | ||
399 | input->evbit[0] = BIT_MASK(EV_KEY); | 354 | input->evbit[0] = BIT_MASK(EV_KEY); |
400 | set_bit(KEY_SLEEP, input->keybit); | 355 | set_bit(KEY_SLEEP, input->keybit); |
401 | break; | 356 | break; |
@@ -410,7 +365,7 @@ static int acpi_button_add(struct acpi_device *device) | |||
410 | if (error) | 365 | if (error) |
411 | goto err_remove_fs; | 366 | goto err_remove_fs; |
412 | if (button->type == ACPI_BUTTON_TYPE_LID) | 367 | if (button->type == ACPI_BUTTON_TYPE_LID) |
413 | acpi_lid_send_state(button); | 368 | acpi_lid_send_state(device); |
414 | 369 | ||
415 | if (device->wakeup.flags.valid) { | 370 | if (device->wakeup.flags.valid) { |
416 | /* Button's GPE is run-wake GPE */ | 371 | /* Button's GPE is run-wake GPE */ |
@@ -422,9 +377,7 @@ static int acpi_button_add(struct acpi_device *device) | |||
422 | device->wakeup.state.enabled = 1; | 377 | device->wakeup.state.enabled = 1; |
423 | } | 378 | } |
424 | 379 | ||
425 | printk(KERN_INFO PREFIX "%s [%s]\n", | 380 | printk(KERN_INFO PREFIX "%s [%s]\n", name, acpi_device_bid(device)); |
426 | acpi_device_name(device), acpi_device_bid(device)); | ||
427 | |||
428 | return 0; | 381 | return 0; |
429 | 382 | ||
430 | err_remove_fs: | 383 | err_remove_fs: |
@@ -438,17 +391,11 @@ static int acpi_button_add(struct acpi_device *device) | |||
438 | 391 | ||
439 | static int acpi_button_remove(struct acpi_device *device, int type) | 392 | static int acpi_button_remove(struct acpi_device *device, int type) |
440 | { | 393 | { |
441 | struct acpi_button *button; | 394 | struct acpi_button *button = acpi_driver_data(device); |
442 | |||
443 | if (!device || !acpi_driver_data(device)) | ||
444 | return -EINVAL; | ||
445 | |||
446 | button = acpi_driver_data(device); | ||
447 | 395 | ||
448 | acpi_button_remove_fs(device); | 396 | acpi_button_remove_fs(device); |
449 | input_unregister_device(button->input); | 397 | input_unregister_device(button->input); |
450 | kfree(button); | 398 | kfree(button); |
451 | |||
452 | return 0; | 399 | return 0; |
453 | } | 400 | } |
454 | 401 | ||
@@ -459,6 +406,7 @@ static int __init acpi_button_init(void) | |||
459 | acpi_button_dir = proc_mkdir(ACPI_BUTTON_CLASS, acpi_root_dir); | 406 | acpi_button_dir = proc_mkdir(ACPI_BUTTON_CLASS, acpi_root_dir); |
460 | if (!acpi_button_dir) | 407 | if (!acpi_button_dir) |
461 | return -ENODEV; | 408 | return -ENODEV; |
409 | |||
462 | result = acpi_bus_register_driver(&acpi_button_driver); | 410 | result = acpi_bus_register_driver(&acpi_button_driver); |
463 | if (result < 0) { | 411 | if (result < 0) { |
464 | remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir); | 412 | remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir); |
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index 04e90443eff7..391f331674c7 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
@@ -1065,6 +1065,7 @@ static int acpi_ec_resume(struct acpi_device *device) | |||
1065 | struct acpi_ec *ec = acpi_driver_data(device); | 1065 | struct acpi_ec *ec = acpi_driver_data(device); |
1066 | /* Enable use of GPE back */ | 1066 | /* Enable use of GPE back */ |
1067 | clear_bit(EC_FLAGS_NO_GPE, &ec->flags); | 1067 | clear_bit(EC_FLAGS_NO_GPE, &ec->flags); |
1068 | set_bit(EC_FLAGS_GPE_MODE, &ec->flags); | ||
1068 | acpi_enable_gpe(NULL, ec->gpe); | 1069 | acpi_enable_gpe(NULL, ec->gpe); |
1069 | return 0; | 1070 | return 0; |
1070 | } | 1071 | } |
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index d59f08ecaf16..d916bea729f1 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -353,8 +353,10 @@ static irqreturn_t acpi_irq(int irq, void *dev_id) | |||
353 | if (handled) { | 353 | if (handled) { |
354 | acpi_irq_handled++; | 354 | acpi_irq_handled++; |
355 | return IRQ_HANDLED; | 355 | return IRQ_HANDLED; |
356 | } else | 356 | } else { |
357 | acpi_irq_not_handled++; | ||
357 | return IRQ_NONE; | 358 | return IRQ_NONE; |
359 | } | ||
358 | } | 360 | } |
359 | 361 | ||
360 | acpi_status | 362 | acpi_status |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 6fe121434ffb..f7ca8c55956b 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -581,6 +581,11 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) | |||
581 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { | 581 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) { |
582 | struct acpi_processor_cx *cx = &pr->power.states[i]; | 582 | struct acpi_processor_cx *cx = &pr->power.states[i]; |
583 | 583 | ||
584 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86) | ||
585 | /* TSC could halt in idle, so notify users */ | ||
586 | if (tsc_halts_in_c(cx->type)) | ||
587 | mark_tsc_unstable("TSC halts in idle");; | ||
588 | #endif | ||
584 | switch (cx->type) { | 589 | switch (cx->type) { |
585 | case ACPI_STATE_C1: | 590 | case ACPI_STATE_C1: |
586 | cx->valid = 1; | 591 | cx->valid = 1; |
@@ -657,11 +662,9 @@ static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset) | |||
657 | 662 | ||
658 | seq_printf(seq, "active state: C%zd\n" | 663 | seq_printf(seq, "active state: C%zd\n" |
659 | "max_cstate: C%d\n" | 664 | "max_cstate: C%d\n" |
660 | "bus master activity: %08x\n" | ||
661 | "maximum allowed latency: %d usec\n", | 665 | "maximum allowed latency: %d usec\n", |
662 | pr->power.state ? pr->power.state - pr->power.states : 0, | 666 | pr->power.state ? pr->power.state - pr->power.states : 0, |
663 | max_cstate, (unsigned)pr->power.bm_activity, | 667 | max_cstate, pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)); |
664 | pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)); | ||
665 | 668 | ||
666 | seq_puts(seq, "states:\n"); | 669 | seq_puts(seq, "states:\n"); |
667 | 670 | ||
@@ -871,11 +874,6 @@ static int acpi_idle_enter_simple(struct cpuidle_device *dev, | |||
871 | kt2 = ktime_get_real(); | 874 | kt2 = ktime_get_real(); |
872 | idle_time = ktime_to_us(ktime_sub(kt2, kt1)); | 875 | idle_time = ktime_to_us(ktime_sub(kt2, kt1)); |
873 | 876 | ||
874 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86) | ||
875 | /* TSC could halt in idle, so notify users */ | ||
876 | if (tsc_halts_in_c(cx->type)) | ||
877 | mark_tsc_unstable("TSC halts in idle");; | ||
878 | #endif | ||
879 | sleep_ticks = us_to_pm_timer_ticks(idle_time); | 877 | sleep_ticks = us_to_pm_timer_ticks(idle_time); |
880 | 878 | ||
881 | /* Tell the scheduler how much we idled: */ | 879 | /* Tell the scheduler how much we idled: */ |
@@ -955,6 +953,7 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev, | |||
955 | */ | 953 | */ |
956 | acpi_state_timer_broadcast(pr, cx, 1); | 954 | acpi_state_timer_broadcast(pr, cx, 1); |
957 | 955 | ||
956 | kt1 = ktime_get_real(); | ||
958 | /* | 957 | /* |
959 | * disable bus master | 958 | * disable bus master |
960 | * bm_check implies we need ARB_DIS | 959 | * bm_check implies we need ARB_DIS |
@@ -976,10 +975,7 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev, | |||
976 | ACPI_FLUSH_CPU_CACHE(); | 975 | ACPI_FLUSH_CPU_CACHE(); |
977 | } | 976 | } |
978 | 977 | ||
979 | kt1 = ktime_get_real(); | ||
980 | acpi_idle_do_entry(cx); | 978 | acpi_idle_do_entry(cx); |
981 | kt2 = ktime_get_real(); | ||
982 | idle_time = ktime_to_us(ktime_sub(kt2, kt1)); | ||
983 | 979 | ||
984 | /* Re-enable bus master arbitration */ | 980 | /* Re-enable bus master arbitration */ |
985 | if (pr->flags.bm_check && pr->flags.bm_control) { | 981 | if (pr->flags.bm_check && pr->flags.bm_control) { |
@@ -988,12 +984,9 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev, | |||
988 | c3_cpu_count--; | 984 | c3_cpu_count--; |
989 | spin_unlock(&c3_lock); | 985 | spin_unlock(&c3_lock); |
990 | } | 986 | } |
987 | kt2 = ktime_get_real(); | ||
988 | idle_time = ktime_to_us(ktime_sub(kt2, kt1)); | ||
991 | 989 | ||
992 | #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86) | ||
993 | /* TSC could halt in idle, so notify users */ | ||
994 | if (tsc_halts_in_c(ACPI_STATE_C3)) | ||
995 | mark_tsc_unstable("TSC halts in idle"); | ||
996 | #endif | ||
997 | sleep_ticks = us_to_pm_timer_ticks(idle_time); | 990 | sleep_ticks = us_to_pm_timer_ticks(idle_time); |
998 | /* Tell the scheduler how much we idled: */ | 991 | /* Tell the scheduler how much we idled: */ |
999 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); | 992 | sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS); |
@@ -1037,6 +1030,9 @@ static int acpi_processor_setup_cpuidle(struct acpi_processor *pr) | |||
1037 | dev->states[i].desc[0] = '\0'; | 1030 | dev->states[i].desc[0] = '\0'; |
1038 | } | 1031 | } |
1039 | 1032 | ||
1033 | if (max_cstate == 0) | ||
1034 | max_cstate = 1; | ||
1035 | |||
1040 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) { | 1036 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) { |
1041 | cx = &pr->power.states[i]; | 1037 | cx = &pr->power.states[i]; |
1042 | state = &dev->states[count]; | 1038 | state = &dev->states[count]; |
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index d060e6fd7fd5..01574a066534 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -713,6 +713,32 @@ static void acpi_power_off(void) | |||
713 | acpi_enter_sleep_state(ACPI_STATE_S5); | 713 | acpi_enter_sleep_state(ACPI_STATE_S5); |
714 | } | 714 | } |
715 | 715 | ||
716 | /* | ||
717 | * ACPI 2.0 created the optional _GTS and _BFS, | ||
718 | * but industry adoption has been neither rapid nor broad. | ||
719 | * | ||
720 | * Linux gets into trouble when it executes poorly validated | ||
721 | * paths through the BIOS, so disable _GTS and _BFS by default, | ||
722 | * but do speak up and offer the option to enable them. | ||
723 | */ | ||
724 | void __init acpi_gts_bfs_check(void) | ||
725 | { | ||
726 | acpi_handle dummy; | ||
727 | |||
728 | if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_NAME__GTS, &dummy))) | ||
729 | { | ||
730 | printk(KERN_NOTICE PREFIX "BIOS offers _GTS\n"); | ||
731 | printk(KERN_NOTICE PREFIX "If \"acpi.gts=1\" improves suspend, " | ||
732 | "please notify linux-acpi@vger.kernel.org\n"); | ||
733 | } | ||
734 | if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_NAME__BFS, &dummy))) | ||
735 | { | ||
736 | printk(KERN_NOTICE PREFIX "BIOS offers _BFS\n"); | ||
737 | printk(KERN_NOTICE PREFIX "If \"acpi.bfs=1\" improves resume, " | ||
738 | "please notify linux-acpi@vger.kernel.org\n"); | ||
739 | } | ||
740 | } | ||
741 | |||
716 | int __init acpi_sleep_init(void) | 742 | int __init acpi_sleep_init(void) |
717 | { | 743 | { |
718 | acpi_status status; | 744 | acpi_status status; |
@@ -771,5 +797,6 @@ int __init acpi_sleep_init(void) | |||
771 | * object can also be evaluated when the system enters S5. | 797 | * object can also be evaluated when the system enters S5. |
772 | */ | 798 | */ |
773 | register_reboot_notifier(&tts_notifier); | 799 | register_reboot_notifier(&tts_notifier); |
800 | acpi_gts_bfs_check(); | ||
774 | return 0; | 801 | return 0; |
775 | } | 802 | } |
diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c index da51f05ef8d8..0944daec064f 100644 --- a/drivers/acpi/system.c +++ b/drivers/acpi/system.c | |||
@@ -38,6 +38,7 @@ ACPI_MODULE_NAME("system"); | |||
38 | #define ACPI_SYSTEM_DEVICE_NAME "System" | 38 | #define ACPI_SYSTEM_DEVICE_NAME "System" |
39 | 39 | ||
40 | u32 acpi_irq_handled; | 40 | u32 acpi_irq_handled; |
41 | u32 acpi_irq_not_handled; | ||
41 | 42 | ||
42 | /* | 43 | /* |
43 | * Make ACPICA version work as module param | 44 | * Make ACPICA version work as module param |
@@ -214,8 +215,9 @@ err: | |||
214 | 215 | ||
215 | #define COUNT_GPE 0 | 216 | #define COUNT_GPE 0 |
216 | #define COUNT_SCI 1 /* acpi_irq_handled */ | 217 | #define COUNT_SCI 1 /* acpi_irq_handled */ |
217 | #define COUNT_ERROR 2 /* other */ | 218 | #define COUNT_SCI_NOT 2 /* acpi_irq_not_handled */ |
218 | #define NUM_COUNTERS_EXTRA 3 | 219 | #define COUNT_ERROR 3 /* other */ |
220 | #define NUM_COUNTERS_EXTRA 4 | ||
219 | 221 | ||
220 | struct event_counter { | 222 | struct event_counter { |
221 | u32 count; | 223 | u32 count; |
@@ -317,6 +319,8 @@ static ssize_t counter_show(struct kobject *kobj, | |||
317 | 319 | ||
318 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count = | 320 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count = |
319 | acpi_irq_handled; | 321 | acpi_irq_handled; |
322 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT].count = | ||
323 | acpi_irq_not_handled; | ||
320 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count = | 324 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count = |
321 | acpi_gpe_count; | 325 | acpi_gpe_count; |
322 | 326 | ||
@@ -363,6 +367,7 @@ static ssize_t counter_set(struct kobject *kobj, | |||
363 | all_counters[i].count = 0; | 367 | all_counters[i].count = 0; |
364 | acpi_gpe_count = 0; | 368 | acpi_gpe_count = 0; |
365 | acpi_irq_handled = 0; | 369 | acpi_irq_handled = 0; |
370 | acpi_irq_not_handled = 0; | ||
366 | goto end; | 371 | goto end; |
367 | } | 372 | } |
368 | 373 | ||
@@ -456,6 +461,8 @@ void acpi_irq_stats_init(void) | |||
456 | sprintf(buffer, "gpe_all"); | 461 | sprintf(buffer, "gpe_all"); |
457 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) | 462 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) |
458 | sprintf(buffer, "sci"); | 463 | sprintf(buffer, "sci"); |
464 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT) | ||
465 | sprintf(buffer, "sci_not"); | ||
459 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR) | 466 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR) |
460 | sprintf(buffer, "error"); | 467 | sprintf(buffer, "error"); |
461 | else | 468 | else |
diff --git a/drivers/acpi/thermal.c b/drivers/acpi/thermal.c index 9cd15e8c8932..564ea1424288 100644 --- a/drivers/acpi/thermal.c +++ b/drivers/acpi/thermal.c | |||
@@ -909,7 +909,7 @@ static int acpi_thermal_register_thermal_zone(struct acpi_thermal *tz) | |||
909 | thermal_zone_device_register("acpitz", trips, tz, | 909 | thermal_zone_device_register("acpitz", trips, tz, |
910 | &acpi_thermal_zone_ops, | 910 | &acpi_thermal_zone_ops, |
911 | 0, 0, 0, | 911 | 0, 0, 0, |
912 | tz->polling_frequency); | 912 | tz->polling_frequency*100); |
913 | if (IS_ERR(tz->thermal_zone)) | 913 | if (IS_ERR(tz->thermal_zone)) |
914 | return -ENODEV; | 914 | return -ENODEV; |
915 | 915 | ||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index cd4fb7543a90..d7ff61c0d571 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
@@ -770,10 +770,12 @@ acpi_video_init_brightness(struct acpi_video_device *device) | |||
770 | * In this case, the first two elements in _BCL packages | 770 | * In this case, the first two elements in _BCL packages |
771 | * are also supported brightness levels that OS should take care of. | 771 | * are also supported brightness levels that OS should take care of. |
772 | */ | 772 | */ |
773 | for (i = 2; i < count; i++) | 773 | for (i = 2; i < count; i++) { |
774 | if (br->levels[i] == br->levels[0] || | 774 | if (br->levels[i] == br->levels[0]) |
775 | br->levels[i] == br->levels[1]) | ||
776 | level_ac_battery++; | 775 | level_ac_battery++; |
776 | if (br->levels[i] == br->levels[1]) | ||
777 | level_ac_battery++; | ||
778 | } | ||
777 | 779 | ||
778 | if (level_ac_battery < 2) { | 780 | if (level_ac_battery < 2) { |
779 | level_ac_battery = 2 - level_ac_battery; | 781 | level_ac_battery = 2 - level_ac_battery; |
@@ -807,12 +809,19 @@ acpi_video_init_brightness(struct acpi_video_device *device) | |||
807 | br->flags._BCM_use_index = br->flags._BCL_use_index; | 809 | br->flags._BCM_use_index = br->flags._BCL_use_index; |
808 | 810 | ||
809 | /* _BQC uses INDEX while _BCL uses VALUE in some laptops */ | 811 | /* _BQC uses INDEX while _BCL uses VALUE in some laptops */ |
810 | br->curr = max_level; | 812 | br->curr = level_old = max_level; |
813 | |||
814 | if (!device->cap._BQC) | ||
815 | goto set_level; | ||
816 | |||
811 | result = acpi_video_device_lcd_get_level_current(device, &level_old); | 817 | result = acpi_video_device_lcd_get_level_current(device, &level_old); |
812 | if (result) | 818 | if (result) |
813 | goto out_free_levels; | 819 | goto out_free_levels; |
814 | 820 | ||
815 | result = acpi_video_device_lcd_set_level(device, br->curr); | 821 | /* |
822 | * Set the level to maximum and check if _BQC uses indexed value | ||
823 | */ | ||
824 | result = acpi_video_device_lcd_set_level(device, max_level); | ||
816 | if (result) | 825 | if (result) |
817 | goto out_free_levels; | 826 | goto out_free_levels; |
818 | 827 | ||
@@ -820,25 +829,19 @@ acpi_video_init_brightness(struct acpi_video_device *device) | |||
820 | if (result) | 829 | if (result) |
821 | goto out_free_levels; | 830 | goto out_free_levels; |
822 | 831 | ||
823 | if ((level != level_old) && !br->flags._BCM_use_index) { | 832 | br->flags._BQC_use_index = (level == max_level ? 0 : 1); |
824 | /* Note: | 833 | |
825 | * This piece of code does not work correctly if the current | 834 | if (!br->flags._BQC_use_index) |
826 | * brightness levels is 0. | 835 | goto set_level; |
827 | * But I guess boxes that boot with such a dark screen are rare | 836 | |
828 | * and no more code is needed to cover this specifial case. | 837 | if (br->flags._BCL_reversed) |
829 | */ | 838 | level_old = (br->count - 1) - level_old; |
830 | 839 | level_old = br->levels[level_old]; | |
831 | if (level_ac_battery != 2) { | 840 | |
832 | /* | 841 | set_level: |
833 | * For now, we don't support the _BCL like this: | 842 | result = acpi_video_device_lcd_set_level(device, level_old); |
834 | * 16, 15, 0, 1, 2, 3, ..., 14, 15, 16 | 843 | if (result) |
835 | * because we may mess up the index returned by _BQC. | 844 | goto out_free_levels; |
836 | * Plus: we have not got a box like this. | ||
837 | */ | ||
838 | ACPI_ERROR((AE_INFO, "_BCL not supported\n")); | ||
839 | } | ||
840 | br->flags._BQC_use_index = 1; | ||
841 | } | ||
842 | 845 | ||
843 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 846 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
844 | "found %d brightness levels\n", count - 2)); | 847 | "found %d brightness levels\n", count - 2)); |
@@ -2293,7 +2296,7 @@ static int __init acpi_video_init(void) | |||
2293 | return acpi_video_register(); | 2296 | return acpi_video_register(); |
2294 | } | 2297 | } |
2295 | 2298 | ||
2296 | static void __exit acpi_video_exit(void) | 2299 | void __exit acpi_video_exit(void) |
2297 | { | 2300 | { |
2298 | 2301 | ||
2299 | acpi_bus_unregister_driver(&acpi_video_bus); | 2302 | acpi_bus_unregister_driver(&acpi_video_bus); |
@@ -2302,6 +2305,7 @@ static void __exit acpi_video_exit(void) | |||
2302 | 2305 | ||
2303 | return; | 2306 | return; |
2304 | } | 2307 | } |
2308 | EXPORT_SYMBOL(acpi_video_exit); | ||
2305 | 2309 | ||
2306 | module_init(acpi_video_init); | 2310 | module_init(acpi_video_init); |
2307 | module_exit(acpi_video_exit); | 2311 | module_exit(acpi_video_exit); |
diff --git a/drivers/base/dd.c b/drivers/base/dd.c index f17c3266a0e0..742cbe6b042b 100644 --- a/drivers/base/dd.c +++ b/drivers/base/dd.c | |||
@@ -179,6 +179,7 @@ void wait_for_device_probe(void) | |||
179 | wait_event(probe_waitqueue, atomic_read(&probe_count) == 0); | 179 | wait_event(probe_waitqueue, atomic_read(&probe_count) == 0); |
180 | async_synchronize_full(); | 180 | async_synchronize_full(); |
181 | } | 181 | } |
182 | EXPORT_SYMBOL_GPL(wait_for_device_probe); | ||
182 | 183 | ||
183 | /** | 184 | /** |
184 | * driver_probe_device - attempt to bind device & driver together | 185 | * driver_probe_device - attempt to bind device & driver together |
diff --git a/drivers/block/hd.c b/drivers/block/hd.c index 3c11f062a18c..baaa9e486e50 100644 --- a/drivers/block/hd.c +++ b/drivers/block/hd.c | |||
@@ -509,7 +509,6 @@ ok_to_write: | |||
509 | if (i > 0) { | 509 | if (i > 0) { |
510 | SET_HANDLER(&write_intr); | 510 | SET_HANDLER(&write_intr); |
511 | outsw(HD_DATA, req->buffer, 256); | 511 | outsw(HD_DATA, req->buffer, 256); |
512 | local_irq_enable(); | ||
513 | } else { | 512 | } else { |
514 | #if (HD_DELAY > 0) | 513 | #if (HD_DELAY > 0) |
515 | last_req = read_timer(); | 514 | last_req = read_timer(); |
@@ -541,8 +540,7 @@ static void hd_times_out(unsigned long dummy) | |||
541 | if (!CURRENT) | 540 | if (!CURRENT) |
542 | return; | 541 | return; |
543 | 542 | ||
544 | disable_irq(HD_IRQ); | 543 | spin_lock_irq(hd_queue->queue_lock); |
545 | local_irq_enable(); | ||
546 | reset = 1; | 544 | reset = 1; |
547 | name = CURRENT->rq_disk->disk_name; | 545 | name = CURRENT->rq_disk->disk_name; |
548 | printk("%s: timeout\n", name); | 546 | printk("%s: timeout\n", name); |
@@ -552,9 +550,8 @@ static void hd_times_out(unsigned long dummy) | |||
552 | #endif | 550 | #endif |
553 | end_request(CURRENT, 0); | 551 | end_request(CURRENT, 0); |
554 | } | 552 | } |
555 | local_irq_disable(); | ||
556 | hd_request(); | 553 | hd_request(); |
557 | enable_irq(HD_IRQ); | 554 | spin_unlock_irq(hd_queue->queue_lock); |
558 | } | 555 | } |
559 | 556 | ||
560 | static int do_special_op(struct hd_i_struct *disk, struct request *req) | 557 | static int do_special_op(struct hd_i_struct *disk, struct request *req) |
@@ -592,7 +589,6 @@ static void hd_request(void) | |||
592 | return; | 589 | return; |
593 | repeat: | 590 | repeat: |
594 | del_timer(&device_timer); | 591 | del_timer(&device_timer); |
595 | local_irq_enable(); | ||
596 | 592 | ||
597 | req = CURRENT; | 593 | req = CURRENT; |
598 | if (!req) { | 594 | if (!req) { |
@@ -601,7 +597,6 @@ repeat: | |||
601 | } | 597 | } |
602 | 598 | ||
603 | if (reset) { | 599 | if (reset) { |
604 | local_irq_disable(); | ||
605 | reset_hd(); | 600 | reset_hd(); |
606 | return; | 601 | return; |
607 | } | 602 | } |
@@ -660,9 +655,7 @@ repeat: | |||
660 | 655 | ||
661 | static void do_hd_request(struct request_queue *q) | 656 | static void do_hd_request(struct request_queue *q) |
662 | { | 657 | { |
663 | disable_irq(HD_IRQ); | ||
664 | hd_request(); | 658 | hd_request(); |
665 | enable_irq(HD_IRQ); | ||
666 | } | 659 | } |
667 | 660 | ||
668 | static int hd_getgeo(struct block_device *bdev, struct hd_geometry *geo) | 661 | static int hd_getgeo(struct block_device *bdev, struct hd_geometry *geo) |
@@ -684,12 +677,16 @@ static irqreturn_t hd_interrupt(int irq, void *dev_id) | |||
684 | { | 677 | { |
685 | void (*handler)(void) = do_hd; | 678 | void (*handler)(void) = do_hd; |
686 | 679 | ||
680 | spin_lock(hd_queue->queue_lock); | ||
681 | |||
687 | do_hd = NULL; | 682 | do_hd = NULL; |
688 | del_timer(&device_timer); | 683 | del_timer(&device_timer); |
689 | if (!handler) | 684 | if (!handler) |
690 | handler = unexpected_hd_interrupt; | 685 | handler = unexpected_hd_interrupt; |
691 | handler(); | 686 | handler(); |
692 | local_irq_enable(); | 687 | |
688 | spin_unlock(hd_queue->queue_lock); | ||
689 | |||
693 | return IRQ_HANDLED; | 690 | return IRQ_HANDLED; |
694 | } | 691 | } |
695 | 692 | ||
diff --git a/drivers/block/mg_disk.c b/drivers/block/mg_disk.c index fb39d9aa3cdc..f3898353d0a8 100644 --- a/drivers/block/mg_disk.c +++ b/drivers/block/mg_disk.c | |||
@@ -79,7 +79,7 @@ static void mg_dump_status(const char *msg, unsigned int stat, | |||
79 | if (host->breq) { | 79 | if (host->breq) { |
80 | req = elv_next_request(host->breq); | 80 | req = elv_next_request(host->breq); |
81 | if (req) | 81 | if (req) |
82 | printk(", sector=%ld", req->sector); | 82 | printk(", sector=%u", (u32)req->sector); |
83 | } | 83 | } |
84 | 84 | ||
85 | } | 85 | } |
@@ -160,11 +160,16 @@ static irqreturn_t mg_irq(int irq, void *dev_id) | |||
160 | struct mg_host *host = dev_id; | 160 | struct mg_host *host = dev_id; |
161 | void (*handler)(struct mg_host *) = host->mg_do_intr; | 161 | void (*handler)(struct mg_host *) = host->mg_do_intr; |
162 | 162 | ||
163 | host->mg_do_intr = 0; | 163 | spin_lock(&host->lock); |
164 | |||
165 | host->mg_do_intr = NULL; | ||
164 | del_timer(&host->timer); | 166 | del_timer(&host->timer); |
165 | if (!handler) | 167 | if (!handler) |
166 | handler = mg_unexpected_intr; | 168 | handler = mg_unexpected_intr; |
167 | handler(host); | 169 | handler(host); |
170 | |||
171 | spin_unlock(&host->lock); | ||
172 | |||
168 | return IRQ_HANDLED; | 173 | return IRQ_HANDLED; |
169 | } | 174 | } |
170 | 175 | ||
@@ -319,7 +324,7 @@ static void mg_read(struct request *req) | |||
319 | 324 | ||
320 | remains = req->nr_sectors; | 325 | remains = req->nr_sectors; |
321 | 326 | ||
322 | if (mg_out(host, req->sector, req->nr_sectors, MG_CMD_RD, 0) != | 327 | if (mg_out(host, req->sector, req->nr_sectors, MG_CMD_RD, NULL) != |
323 | MG_ERR_NONE) | 328 | MG_ERR_NONE) |
324 | mg_bad_rw_intr(host); | 329 | mg_bad_rw_intr(host); |
325 | 330 | ||
@@ -363,7 +368,7 @@ static void mg_write(struct request *req) | |||
363 | 368 | ||
364 | remains = req->nr_sectors; | 369 | remains = req->nr_sectors; |
365 | 370 | ||
366 | if (mg_out(host, req->sector, req->nr_sectors, MG_CMD_WR, 0) != | 371 | if (mg_out(host, req->sector, req->nr_sectors, MG_CMD_WR, NULL) != |
367 | MG_ERR_NONE) { | 372 | MG_ERR_NONE) { |
368 | mg_bad_rw_intr(host); | 373 | mg_bad_rw_intr(host); |
369 | return; | 374 | return; |
@@ -521,9 +526,11 @@ void mg_times_out(unsigned long data) | |||
521 | char *name; | 526 | char *name; |
522 | struct request *req; | 527 | struct request *req; |
523 | 528 | ||
529 | spin_lock_irq(&host->lock); | ||
530 | |||
524 | req = elv_next_request(host->breq); | 531 | req = elv_next_request(host->breq); |
525 | if (!req) | 532 | if (!req) |
526 | return; | 533 | goto out_unlock; |
527 | 534 | ||
528 | host->mg_do_intr = NULL; | 535 | host->mg_do_intr = NULL; |
529 | 536 | ||
@@ -534,6 +541,8 @@ void mg_times_out(unsigned long data) | |||
534 | mg_bad_rw_intr(host); | 541 | mg_bad_rw_intr(host); |
535 | 542 | ||
536 | mg_request(host->breq); | 543 | mg_request(host->breq); |
544 | out_unlock: | ||
545 | spin_unlock_irq(&host->lock); | ||
537 | } | 546 | } |
538 | 547 | ||
539 | static void mg_request_poll(struct request_queue *q) | 548 | static void mg_request_poll(struct request_queue *q) |
diff --git a/drivers/block/umem.c b/drivers/block/umem.c index 9744d59a69f2..858c34dd032d 100644 --- a/drivers/block/umem.c +++ b/drivers/block/umem.c | |||
@@ -906,6 +906,7 @@ static int __devinit mm_pci_probe(struct pci_dev *dev, | |||
906 | goto failed_alloc; | 906 | goto failed_alloc; |
907 | 907 | ||
908 | blk_queue_make_request(card->queue, mm_make_request); | 908 | blk_queue_make_request(card->queue, mm_make_request); |
909 | card->queue->queue_lock = &card->lock; | ||
909 | card->queue->queuedata = card; | 910 | card->queue->queuedata = card; |
910 | card->queue->unplug_fn = mm_unplug_device; | 911 | card->queue->unplug_fn = mm_unplug_device; |
911 | 912 | ||
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index 50dfa3bc71ce..340ba4f9dc54 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpet.c | |||
@@ -72,7 +72,7 @@ static u32 hpet_nhpet, hpet_max_freq = HPET_USER_FREQ; | |||
72 | #ifdef CONFIG_IA64 | 72 | #ifdef CONFIG_IA64 |
73 | static void __iomem *hpet_mctr; | 73 | static void __iomem *hpet_mctr; |
74 | 74 | ||
75 | static cycle_t read_hpet(void) | 75 | static cycle_t read_hpet(struct clocksource *cs) |
76 | { | 76 | { |
77 | return (cycle_t)read_counter((void __iomem *)hpet_mctr); | 77 | return (cycle_t)read_counter((void __iomem *)hpet_mctr); |
78 | } | 78 | } |
diff --git a/drivers/char/hw_random/virtio-rng.c b/drivers/char/hw_random/virtio-rng.c index d0e563e4fc39..86e83f883139 100644 --- a/drivers/char/hw_random/virtio-rng.c +++ b/drivers/char/hw_random/virtio-rng.c | |||
@@ -37,9 +37,9 @@ static void random_recv_done(struct virtqueue *vq) | |||
37 | { | 37 | { |
38 | int len; | 38 | int len; |
39 | 39 | ||
40 | /* We never get spurious callbacks. */ | 40 | /* We can get spurious callbacks, e.g. shared IRQs + virtio_pci. */ |
41 | if (!vq->vq_ops->get_buf(vq, &len)) | 41 | if (!vq->vq_ops->get_buf(vq, &len)) |
42 | BUG(); | 42 | return; |
43 | 43 | ||
44 | data_left = len / sizeof(random_data[0]); | 44 | data_left = len / sizeof(random_data[0]); |
45 | complete(&have_data); | 45 | complete(&have_data); |
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index e93fc8d22fb2..aa83a0865ec1 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c | |||
@@ -285,6 +285,11 @@ enum ipmi_stat_indexes { | |||
285 | /* Events that were received with the proper format. */ | 285 | /* Events that were received with the proper format. */ |
286 | IPMI_STAT_events, | 286 | IPMI_STAT_events, |
287 | 287 | ||
288 | /* Retransmissions on IPMB that failed. */ | ||
289 | IPMI_STAT_dropped_rexmit_ipmb_commands, | ||
290 | |||
291 | /* Retransmissions on LAN that failed. */ | ||
292 | IPMI_STAT_dropped_rexmit_lan_commands, | ||
288 | 293 | ||
289 | /* This *must* remain last, add new values above this. */ | 294 | /* This *must* remain last, add new values above this. */ |
290 | IPMI_NUM_STATS | 295 | IPMI_NUM_STATS |
@@ -445,6 +450,20 @@ static DEFINE_MUTEX(smi_watchers_mutex); | |||
445 | #define ipmi_get_stat(intf, stat) \ | 450 | #define ipmi_get_stat(intf, stat) \ |
446 | ((unsigned int) atomic_read(&(intf)->stats[IPMI_STAT_ ## stat])) | 451 | ((unsigned int) atomic_read(&(intf)->stats[IPMI_STAT_ ## stat])) |
447 | 452 | ||
453 | static int is_lan_addr(struct ipmi_addr *addr) | ||
454 | { | ||
455 | return addr->addr_type == IPMI_LAN_ADDR_TYPE; | ||
456 | } | ||
457 | |||
458 | static int is_ipmb_addr(struct ipmi_addr *addr) | ||
459 | { | ||
460 | return addr->addr_type == IPMI_IPMB_ADDR_TYPE; | ||
461 | } | ||
462 | |||
463 | static int is_ipmb_bcast_addr(struct ipmi_addr *addr) | ||
464 | { | ||
465 | return addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE; | ||
466 | } | ||
448 | 467 | ||
449 | static void free_recv_msg_list(struct list_head *q) | 468 | static void free_recv_msg_list(struct list_head *q) |
450 | { | 469 | { |
@@ -601,8 +620,7 @@ ipmi_addr_equal(struct ipmi_addr *addr1, struct ipmi_addr *addr2) | |||
601 | return (smi_addr1->lun == smi_addr2->lun); | 620 | return (smi_addr1->lun == smi_addr2->lun); |
602 | } | 621 | } |
603 | 622 | ||
604 | if ((addr1->addr_type == IPMI_IPMB_ADDR_TYPE) | 623 | if (is_ipmb_addr(addr1) || is_ipmb_bcast_addr(addr1)) { |
605 | || (addr1->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)) { | ||
606 | struct ipmi_ipmb_addr *ipmb_addr1 | 624 | struct ipmi_ipmb_addr *ipmb_addr1 |
607 | = (struct ipmi_ipmb_addr *) addr1; | 625 | = (struct ipmi_ipmb_addr *) addr1; |
608 | struct ipmi_ipmb_addr *ipmb_addr2 | 626 | struct ipmi_ipmb_addr *ipmb_addr2 |
@@ -612,7 +630,7 @@ ipmi_addr_equal(struct ipmi_addr *addr1, struct ipmi_addr *addr2) | |||
612 | && (ipmb_addr1->lun == ipmb_addr2->lun)); | 630 | && (ipmb_addr1->lun == ipmb_addr2->lun)); |
613 | } | 631 | } |
614 | 632 | ||
615 | if (addr1->addr_type == IPMI_LAN_ADDR_TYPE) { | 633 | if (is_lan_addr(addr1)) { |
616 | struct ipmi_lan_addr *lan_addr1 | 634 | struct ipmi_lan_addr *lan_addr1 |
617 | = (struct ipmi_lan_addr *) addr1; | 635 | = (struct ipmi_lan_addr *) addr1; |
618 | struct ipmi_lan_addr *lan_addr2 | 636 | struct ipmi_lan_addr *lan_addr2 |
@@ -644,14 +662,13 @@ int ipmi_validate_addr(struct ipmi_addr *addr, int len) | |||
644 | || (addr->channel < 0)) | 662 | || (addr->channel < 0)) |
645 | return -EINVAL; | 663 | return -EINVAL; |
646 | 664 | ||
647 | if ((addr->addr_type == IPMI_IPMB_ADDR_TYPE) | 665 | if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) { |
648 | || (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)) { | ||
649 | if (len < sizeof(struct ipmi_ipmb_addr)) | 666 | if (len < sizeof(struct ipmi_ipmb_addr)) |
650 | return -EINVAL; | 667 | return -EINVAL; |
651 | return 0; | 668 | return 0; |
652 | } | 669 | } |
653 | 670 | ||
654 | if (addr->addr_type == IPMI_LAN_ADDR_TYPE) { | 671 | if (is_lan_addr(addr)) { |
655 | if (len < sizeof(struct ipmi_lan_addr)) | 672 | if (len < sizeof(struct ipmi_lan_addr)) |
656 | return -EINVAL; | 673 | return -EINVAL; |
657 | return 0; | 674 | return 0; |
@@ -1503,8 +1520,7 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1503 | memcpy(&(smi_msg->data[2]), msg->data, msg->data_len); | 1520 | memcpy(&(smi_msg->data[2]), msg->data, msg->data_len); |
1504 | smi_msg->data_size = msg->data_len + 2; | 1521 | smi_msg->data_size = msg->data_len + 2; |
1505 | ipmi_inc_stat(intf, sent_local_commands); | 1522 | ipmi_inc_stat(intf, sent_local_commands); |
1506 | } else if ((addr->addr_type == IPMI_IPMB_ADDR_TYPE) | 1523 | } else if (is_ipmb_addr(addr) || is_ipmb_bcast_addr(addr)) { |
1507 | || (addr->addr_type == IPMI_IPMB_BROADCAST_ADDR_TYPE)) { | ||
1508 | struct ipmi_ipmb_addr *ipmb_addr; | 1524 | struct ipmi_ipmb_addr *ipmb_addr; |
1509 | unsigned char ipmb_seq; | 1525 | unsigned char ipmb_seq; |
1510 | long seqid; | 1526 | long seqid; |
@@ -1583,8 +1599,6 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1583 | 1599 | ||
1584 | spin_lock_irqsave(&(intf->seq_lock), flags); | 1600 | spin_lock_irqsave(&(intf->seq_lock), flags); |
1585 | 1601 | ||
1586 | ipmi_inc_stat(intf, sent_ipmb_commands); | ||
1587 | |||
1588 | /* | 1602 | /* |
1589 | * Create a sequence number with a 1 second | 1603 | * Create a sequence number with a 1 second |
1590 | * timeout and 4 retries. | 1604 | * timeout and 4 retries. |
@@ -1606,6 +1620,8 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1606 | goto out_err; | 1620 | goto out_err; |
1607 | } | 1621 | } |
1608 | 1622 | ||
1623 | ipmi_inc_stat(intf, sent_ipmb_commands); | ||
1624 | |||
1609 | /* | 1625 | /* |
1610 | * Store the sequence number in the message, | 1626 | * Store the sequence number in the message, |
1611 | * so that when the send message response | 1627 | * so that when the send message response |
@@ -1635,7 +1651,7 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1635 | */ | 1651 | */ |
1636 | spin_unlock_irqrestore(&(intf->seq_lock), flags); | 1652 | spin_unlock_irqrestore(&(intf->seq_lock), flags); |
1637 | } | 1653 | } |
1638 | } else if (addr->addr_type == IPMI_LAN_ADDR_TYPE) { | 1654 | } else if (is_lan_addr(addr)) { |
1639 | struct ipmi_lan_addr *lan_addr; | 1655 | struct ipmi_lan_addr *lan_addr; |
1640 | unsigned char ipmb_seq; | 1656 | unsigned char ipmb_seq; |
1641 | long seqid; | 1657 | long seqid; |
@@ -1696,8 +1712,6 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1696 | 1712 | ||
1697 | spin_lock_irqsave(&(intf->seq_lock), flags); | 1713 | spin_lock_irqsave(&(intf->seq_lock), flags); |
1698 | 1714 | ||
1699 | ipmi_inc_stat(intf, sent_lan_commands); | ||
1700 | |||
1701 | /* | 1715 | /* |
1702 | * Create a sequence number with a 1 second | 1716 | * Create a sequence number with a 1 second |
1703 | * timeout and 4 retries. | 1717 | * timeout and 4 retries. |
@@ -1719,6 +1733,8 @@ static int i_ipmi_request(ipmi_user_t user, | |||
1719 | goto out_err; | 1733 | goto out_err; |
1720 | } | 1734 | } |
1721 | 1735 | ||
1736 | ipmi_inc_stat(intf, sent_lan_commands); | ||
1737 | |||
1722 | /* | 1738 | /* |
1723 | * Store the sequence number in the message, | 1739 | * Store the sequence number in the message, |
1724 | * so that when the send message response | 1740 | * so that when the send message response |
@@ -1937,6 +1953,10 @@ static int stat_file_read_proc(char *page, char **start, off_t off, | |||
1937 | ipmi_get_stat(intf, invalid_events)); | 1953 | ipmi_get_stat(intf, invalid_events)); |
1938 | out += sprintf(out, "events: %u\n", | 1954 | out += sprintf(out, "events: %u\n", |
1939 | ipmi_get_stat(intf, events)); | 1955 | ipmi_get_stat(intf, events)); |
1956 | out += sprintf(out, "failed rexmit LAN msgs: %u\n", | ||
1957 | ipmi_get_stat(intf, dropped_rexmit_lan_commands)); | ||
1958 | out += sprintf(out, "failed rexmit IPMB msgs: %u\n", | ||
1959 | ipmi_get_stat(intf, dropped_rexmit_ipmb_commands)); | ||
1940 | 1960 | ||
1941 | return (out - ((char *) page)); | 1961 | return (out - ((char *) page)); |
1942 | } | 1962 | } |
@@ -3264,6 +3284,114 @@ static int handle_lan_get_msg_cmd(ipmi_smi_t intf, | |||
3264 | return rv; | 3284 | return rv; |
3265 | } | 3285 | } |
3266 | 3286 | ||
3287 | /* | ||
3288 | * This routine will handle "Get Message" command responses with | ||
3289 | * channels that use an OEM Medium. The message format belongs to | ||
3290 | * the OEM. See IPMI 2.0 specification, Chapter 6 and | ||
3291 | * Chapter 22, sections 22.6 and 22.24 for more details. | ||
3292 | */ | ||
3293 | static int handle_oem_get_msg_cmd(ipmi_smi_t intf, | ||
3294 | struct ipmi_smi_msg *msg) | ||
3295 | { | ||
3296 | struct cmd_rcvr *rcvr; | ||
3297 | int rv = 0; | ||
3298 | unsigned char netfn; | ||
3299 | unsigned char cmd; | ||
3300 | unsigned char chan; | ||
3301 | ipmi_user_t user = NULL; | ||
3302 | struct ipmi_system_interface_addr *smi_addr; | ||
3303 | struct ipmi_recv_msg *recv_msg; | ||
3304 | |||
3305 | /* | ||
3306 | * We expect the OEM SW to perform error checking | ||
3307 | * so we just do some basic sanity checks | ||
3308 | */ | ||
3309 | if (msg->rsp_size < 4) { | ||
3310 | /* Message not big enough, just ignore it. */ | ||
3311 | ipmi_inc_stat(intf, invalid_commands); | ||
3312 | return 0; | ||
3313 | } | ||
3314 | |||
3315 | if (msg->rsp[2] != 0) { | ||
3316 | /* An error getting the response, just ignore it. */ | ||
3317 | return 0; | ||
3318 | } | ||
3319 | |||
3320 | /* | ||
3321 | * This is an OEM Message so the OEM needs to know how | ||
3322 | * handle the message. We do no interpretation. | ||
3323 | */ | ||
3324 | netfn = msg->rsp[0] >> 2; | ||
3325 | cmd = msg->rsp[1]; | ||
3326 | chan = msg->rsp[3] & 0xf; | ||
3327 | |||
3328 | rcu_read_lock(); | ||
3329 | rcvr = find_cmd_rcvr(intf, netfn, cmd, chan); | ||
3330 | if (rcvr) { | ||
3331 | user = rcvr->user; | ||
3332 | kref_get(&user->refcount); | ||
3333 | } else | ||
3334 | user = NULL; | ||
3335 | rcu_read_unlock(); | ||
3336 | |||
3337 | if (user == NULL) { | ||
3338 | /* We didn't find a user, just give up. */ | ||
3339 | ipmi_inc_stat(intf, unhandled_commands); | ||
3340 | |||
3341 | /* | ||
3342 | * Don't do anything with these messages, just allow | ||
3343 | * them to be freed. | ||
3344 | */ | ||
3345 | |||
3346 | rv = 0; | ||
3347 | } else { | ||
3348 | /* Deliver the message to the user. */ | ||
3349 | ipmi_inc_stat(intf, handled_commands); | ||
3350 | |||
3351 | recv_msg = ipmi_alloc_recv_msg(); | ||
3352 | if (!recv_msg) { | ||
3353 | /* | ||
3354 | * We couldn't allocate memory for the | ||
3355 | * message, so requeue it for handling | ||
3356 | * later. | ||
3357 | */ | ||
3358 | rv = 1; | ||
3359 | kref_put(&user->refcount, free_user); | ||
3360 | } else { | ||
3361 | /* | ||
3362 | * OEM Messages are expected to be delivered via | ||
3363 | * the system interface to SMS software. We might | ||
3364 | * need to visit this again depending on OEM | ||
3365 | * requirements | ||
3366 | */ | ||
3367 | smi_addr = ((struct ipmi_system_interface_addr *) | ||
3368 | &(recv_msg->addr)); | ||
3369 | smi_addr->addr_type = IPMI_SYSTEM_INTERFACE_ADDR_TYPE; | ||
3370 | smi_addr->channel = IPMI_BMC_CHANNEL; | ||
3371 | smi_addr->lun = msg->rsp[0] & 3; | ||
3372 | |||
3373 | recv_msg->user = user; | ||
3374 | recv_msg->user_msg_data = NULL; | ||
3375 | recv_msg->recv_type = IPMI_OEM_RECV_TYPE; | ||
3376 | recv_msg->msg.netfn = msg->rsp[0] >> 2; | ||
3377 | recv_msg->msg.cmd = msg->rsp[1]; | ||
3378 | recv_msg->msg.data = recv_msg->msg_data; | ||
3379 | |||
3380 | /* | ||
3381 | * The message starts at byte 4 which follows the | ||
3382 | * the Channel Byte in the "GET MESSAGE" command | ||
3383 | */ | ||
3384 | recv_msg->msg.data_len = msg->rsp_size - 4; | ||
3385 | memcpy(recv_msg->msg_data, | ||
3386 | &(msg->rsp[4]), | ||
3387 | msg->rsp_size - 4); | ||
3388 | deliver_response(recv_msg); | ||
3389 | } | ||
3390 | } | ||
3391 | |||
3392 | return rv; | ||
3393 | } | ||
3394 | |||
3267 | static void copy_event_into_recv_msg(struct ipmi_recv_msg *recv_msg, | 3395 | static void copy_event_into_recv_msg(struct ipmi_recv_msg *recv_msg, |
3268 | struct ipmi_smi_msg *msg) | 3396 | struct ipmi_smi_msg *msg) |
3269 | { | 3397 | { |
@@ -3519,6 +3647,17 @@ static int handle_new_recv_msg(ipmi_smi_t intf, | |||
3519 | goto out; | 3647 | goto out; |
3520 | } | 3648 | } |
3521 | 3649 | ||
3650 | /* | ||
3651 | ** We need to make sure the channels have been initialized. | ||
3652 | ** The channel_handler routine will set the "curr_channel" | ||
3653 | ** equal to or greater than IPMI_MAX_CHANNELS when all the | ||
3654 | ** channels for this interface have been initialized. | ||
3655 | */ | ||
3656 | if (intf->curr_channel < IPMI_MAX_CHANNELS) { | ||
3657 | requeue = 1; /* Just put the message back for now */ | ||
3658 | goto out; | ||
3659 | } | ||
3660 | |||
3522 | switch (intf->channels[chan].medium) { | 3661 | switch (intf->channels[chan].medium) { |
3523 | case IPMI_CHANNEL_MEDIUM_IPMB: | 3662 | case IPMI_CHANNEL_MEDIUM_IPMB: |
3524 | if (msg->rsp[4] & 0x04) { | 3663 | if (msg->rsp[4] & 0x04) { |
@@ -3554,11 +3693,20 @@ static int handle_new_recv_msg(ipmi_smi_t intf, | |||
3554 | break; | 3693 | break; |
3555 | 3694 | ||
3556 | default: | 3695 | default: |
3557 | /* | 3696 | /* Check for OEM Channels. Clients had better |
3558 | * We don't handle the channel type, so just | 3697 | register for these commands. */ |
3559 | * free the message. | 3698 | if ((intf->channels[chan].medium |
3560 | */ | 3699 | >= IPMI_CHANNEL_MEDIUM_OEM_MIN) |
3561 | requeue = 0; | 3700 | && (intf->channels[chan].medium |
3701 | <= IPMI_CHANNEL_MEDIUM_OEM_MAX)) { | ||
3702 | requeue = handle_oem_get_msg_cmd(intf, msg); | ||
3703 | } else { | ||
3704 | /* | ||
3705 | * We don't handle the channel type, so just | ||
3706 | * free the message. | ||
3707 | */ | ||
3708 | requeue = 0; | ||
3709 | } | ||
3562 | } | 3710 | } |
3563 | 3711 | ||
3564 | } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2)) | 3712 | } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2)) |
@@ -3730,7 +3878,7 @@ static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent, | |||
3730 | list_add_tail(&msg->link, timeouts); | 3878 | list_add_tail(&msg->link, timeouts); |
3731 | if (ent->broadcast) | 3879 | if (ent->broadcast) |
3732 | ipmi_inc_stat(intf, timed_out_ipmb_broadcasts); | 3880 | ipmi_inc_stat(intf, timed_out_ipmb_broadcasts); |
3733 | else if (ent->recv_msg->addr.addr_type == IPMI_LAN_ADDR_TYPE) | 3881 | else if (is_lan_addr(&ent->recv_msg->addr)) |
3734 | ipmi_inc_stat(intf, timed_out_lan_commands); | 3882 | ipmi_inc_stat(intf, timed_out_lan_commands); |
3735 | else | 3883 | else |
3736 | ipmi_inc_stat(intf, timed_out_ipmb_commands); | 3884 | ipmi_inc_stat(intf, timed_out_ipmb_commands); |
@@ -3744,15 +3892,17 @@ static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent, | |||
3744 | */ | 3892 | */ |
3745 | ent->timeout = MAX_MSG_TIMEOUT; | 3893 | ent->timeout = MAX_MSG_TIMEOUT; |
3746 | ent->retries_left--; | 3894 | ent->retries_left--; |
3747 | if (ent->recv_msg->addr.addr_type == IPMI_LAN_ADDR_TYPE) | ||
3748 | ipmi_inc_stat(intf, retransmitted_lan_commands); | ||
3749 | else | ||
3750 | ipmi_inc_stat(intf, retransmitted_ipmb_commands); | ||
3751 | |||
3752 | smi_msg = smi_from_recv_msg(intf, ent->recv_msg, slot, | 3895 | smi_msg = smi_from_recv_msg(intf, ent->recv_msg, slot, |
3753 | ent->seqid); | 3896 | ent->seqid); |
3754 | if (!smi_msg) | 3897 | if (!smi_msg) { |
3898 | if (is_lan_addr(&ent->recv_msg->addr)) | ||
3899 | ipmi_inc_stat(intf, | ||
3900 | dropped_rexmit_lan_commands); | ||
3901 | else | ||
3902 | ipmi_inc_stat(intf, | ||
3903 | dropped_rexmit_ipmb_commands); | ||
3755 | return; | 3904 | return; |
3905 | } | ||
3756 | 3906 | ||
3757 | spin_unlock_irqrestore(&intf->seq_lock, *flags); | 3907 | spin_unlock_irqrestore(&intf->seq_lock, *flags); |
3758 | 3908 | ||
@@ -3764,10 +3914,17 @@ static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent, | |||
3764 | * resent. | 3914 | * resent. |
3765 | */ | 3915 | */ |
3766 | handlers = intf->handlers; | 3916 | handlers = intf->handlers; |
3767 | if (handlers) | 3917 | if (handlers) { |
3918 | if (is_lan_addr(&ent->recv_msg->addr)) | ||
3919 | ipmi_inc_stat(intf, | ||
3920 | retransmitted_lan_commands); | ||
3921 | else | ||
3922 | ipmi_inc_stat(intf, | ||
3923 | retransmitted_ipmb_commands); | ||
3924 | |||
3768 | intf->handlers->sender(intf->send_info, | 3925 | intf->handlers->sender(intf->send_info, |
3769 | smi_msg, 0); | 3926 | smi_msg, 0); |
3770 | else | 3927 | } else |
3771 | ipmi_free_smi_msg(smi_msg); | 3928 | ipmi_free_smi_msg(smi_msg); |
3772 | 3929 | ||
3773 | spin_lock_irqsave(&intf->seq_lock, *flags); | 3930 | spin_lock_irqsave(&intf->seq_lock, *flags); |
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index e58ea4cd55ce..259644646b82 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -82,12 +82,6 @@ | |||
82 | #define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a | 82 | #define SI_SHORT_TIMEOUT_USEC 250 /* .25ms when the SM request a |
83 | short timeout */ | 83 | short timeout */ |
84 | 84 | ||
85 | /* Bit for BMC global enables. */ | ||
86 | #define IPMI_BMC_RCV_MSG_INTR 0x01 | ||
87 | #define IPMI_BMC_EVT_MSG_INTR 0x02 | ||
88 | #define IPMI_BMC_EVT_MSG_BUFF 0x04 | ||
89 | #define IPMI_BMC_SYS_LOG 0x08 | ||
90 | |||
91 | enum si_intf_state { | 85 | enum si_intf_state { |
92 | SI_NORMAL, | 86 | SI_NORMAL, |
93 | SI_GETTING_FLAGS, | 87 | SI_GETTING_FLAGS, |
@@ -220,6 +214,9 @@ struct smi_info { | |||
220 | OEM2_DATA_AVAIL) | 214 | OEM2_DATA_AVAIL) |
221 | unsigned char msg_flags; | 215 | unsigned char msg_flags; |
222 | 216 | ||
217 | /* Does the BMC have an event buffer? */ | ||
218 | char has_event_buffer; | ||
219 | |||
223 | /* | 220 | /* |
224 | * If set to true, this will request events the next time the | 221 | * If set to true, this will request events the next time the |
225 | * state machine is idle. | 222 | * state machine is idle. |
@@ -968,7 +965,8 @@ static void request_events(void *send_info) | |||
968 | { | 965 | { |
969 | struct smi_info *smi_info = send_info; | 966 | struct smi_info *smi_info = send_info; |
970 | 967 | ||
971 | if (atomic_read(&smi_info->stop_operation)) | 968 | if (atomic_read(&smi_info->stop_operation) || |
969 | !smi_info->has_event_buffer) | ||
972 | return; | 970 | return; |
973 | 971 | ||
974 | atomic_set(&smi_info->req_events, 1); | 972 | atomic_set(&smi_info->req_events, 1); |
@@ -2407,26 +2405,9 @@ static struct of_platform_driver ipmi_of_platform_driver = { | |||
2407 | }; | 2405 | }; |
2408 | #endif /* CONFIG_PPC_OF */ | 2406 | #endif /* CONFIG_PPC_OF */ |
2409 | 2407 | ||
2410 | 2408 | static int wait_for_msg_done(struct smi_info *smi_info) | |
2411 | static int try_get_dev_id(struct smi_info *smi_info) | ||
2412 | { | 2409 | { |
2413 | unsigned char msg[2]; | ||
2414 | unsigned char *resp; | ||
2415 | unsigned long resp_len; | ||
2416 | enum si_sm_result smi_result; | 2410 | enum si_sm_result smi_result; |
2417 | int rv = 0; | ||
2418 | |||
2419 | resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL); | ||
2420 | if (!resp) | ||
2421 | return -ENOMEM; | ||
2422 | |||
2423 | /* | ||
2424 | * Do a Get Device ID command, since it comes back with some | ||
2425 | * useful info. | ||
2426 | */ | ||
2427 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; | ||
2428 | msg[1] = IPMI_GET_DEVICE_ID_CMD; | ||
2429 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); | ||
2430 | 2411 | ||
2431 | smi_result = smi_info->handlers->event(smi_info->si_sm, 0); | 2412 | smi_result = smi_info->handlers->event(smi_info->si_sm, 0); |
2432 | for (;;) { | 2413 | for (;;) { |
@@ -2441,16 +2422,39 @@ static int try_get_dev_id(struct smi_info *smi_info) | |||
2441 | } else | 2422 | } else |
2442 | break; | 2423 | break; |
2443 | } | 2424 | } |
2444 | if (smi_result == SI_SM_HOSED) { | 2425 | if (smi_result == SI_SM_HOSED) |
2445 | /* | 2426 | /* |
2446 | * We couldn't get the state machine to run, so whatever's at | 2427 | * We couldn't get the state machine to run, so whatever's at |
2447 | * the port is probably not an IPMI SMI interface. | 2428 | * the port is probably not an IPMI SMI interface. |
2448 | */ | 2429 | */ |
2449 | rv = -ENODEV; | 2430 | return -ENODEV; |
2431 | |||
2432 | return 0; | ||
2433 | } | ||
2434 | |||
2435 | static int try_get_dev_id(struct smi_info *smi_info) | ||
2436 | { | ||
2437 | unsigned char msg[2]; | ||
2438 | unsigned char *resp; | ||
2439 | unsigned long resp_len; | ||
2440 | int rv = 0; | ||
2441 | |||
2442 | resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL); | ||
2443 | if (!resp) | ||
2444 | return -ENOMEM; | ||
2445 | |||
2446 | /* | ||
2447 | * Do a Get Device ID command, since it comes back with some | ||
2448 | * useful info. | ||
2449 | */ | ||
2450 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; | ||
2451 | msg[1] = IPMI_GET_DEVICE_ID_CMD; | ||
2452 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); | ||
2453 | |||
2454 | rv = wait_for_msg_done(smi_info); | ||
2455 | if (rv) | ||
2450 | goto out; | 2456 | goto out; |
2451 | } | ||
2452 | 2457 | ||
2453 | /* Otherwise, we got some data. */ | ||
2454 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, | 2458 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, |
2455 | resp, IPMI_MAX_MSG_LENGTH); | 2459 | resp, IPMI_MAX_MSG_LENGTH); |
2456 | 2460 | ||
@@ -2462,6 +2466,88 @@ static int try_get_dev_id(struct smi_info *smi_info) | |||
2462 | return rv; | 2466 | return rv; |
2463 | } | 2467 | } |
2464 | 2468 | ||
2469 | static int try_enable_event_buffer(struct smi_info *smi_info) | ||
2470 | { | ||
2471 | unsigned char msg[3]; | ||
2472 | unsigned char *resp; | ||
2473 | unsigned long resp_len; | ||
2474 | int rv = 0; | ||
2475 | |||
2476 | resp = kmalloc(IPMI_MAX_MSG_LENGTH, GFP_KERNEL); | ||
2477 | if (!resp) | ||
2478 | return -ENOMEM; | ||
2479 | |||
2480 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; | ||
2481 | msg[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD; | ||
2482 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2); | ||
2483 | |||
2484 | rv = wait_for_msg_done(smi_info); | ||
2485 | if (rv) { | ||
2486 | printk(KERN_WARNING | ||
2487 | "ipmi_si: Error getting response from get global," | ||
2488 | " enables command, the event buffer is not" | ||
2489 | " enabled.\n"); | ||
2490 | goto out; | ||
2491 | } | ||
2492 | |||
2493 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, | ||
2494 | resp, IPMI_MAX_MSG_LENGTH); | ||
2495 | |||
2496 | if (resp_len < 4 || | ||
2497 | resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 || | ||
2498 | resp[1] != IPMI_GET_BMC_GLOBAL_ENABLES_CMD || | ||
2499 | resp[2] != 0) { | ||
2500 | printk(KERN_WARNING | ||
2501 | "ipmi_si: Invalid return from get global" | ||
2502 | " enables command, cannot enable the event" | ||
2503 | " buffer.\n"); | ||
2504 | rv = -EINVAL; | ||
2505 | goto out; | ||
2506 | } | ||
2507 | |||
2508 | if (resp[3] & IPMI_BMC_EVT_MSG_BUFF) | ||
2509 | /* buffer is already enabled, nothing to do. */ | ||
2510 | goto out; | ||
2511 | |||
2512 | msg[0] = IPMI_NETFN_APP_REQUEST << 2; | ||
2513 | msg[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD; | ||
2514 | msg[2] = resp[3] | IPMI_BMC_EVT_MSG_BUFF; | ||
2515 | smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3); | ||
2516 | |||
2517 | rv = wait_for_msg_done(smi_info); | ||
2518 | if (rv) { | ||
2519 | printk(KERN_WARNING | ||
2520 | "ipmi_si: Error getting response from set global," | ||
2521 | " enables command, the event buffer is not" | ||
2522 | " enabled.\n"); | ||
2523 | goto out; | ||
2524 | } | ||
2525 | |||
2526 | resp_len = smi_info->handlers->get_result(smi_info->si_sm, | ||
2527 | resp, IPMI_MAX_MSG_LENGTH); | ||
2528 | |||
2529 | if (resp_len < 3 || | ||
2530 | resp[0] != (IPMI_NETFN_APP_REQUEST | 1) << 2 || | ||
2531 | resp[1] != IPMI_SET_BMC_GLOBAL_ENABLES_CMD) { | ||
2532 | printk(KERN_WARNING | ||
2533 | "ipmi_si: Invalid return from get global," | ||
2534 | "enables command, not enable the event" | ||
2535 | " buffer.\n"); | ||
2536 | rv = -EINVAL; | ||
2537 | goto out; | ||
2538 | } | ||
2539 | |||
2540 | if (resp[2] != 0) | ||
2541 | /* | ||
2542 | * An error when setting the event buffer bit means | ||
2543 | * that the event buffer is not supported. | ||
2544 | */ | ||
2545 | rv = -ENOENT; | ||
2546 | out: | ||
2547 | kfree(resp); | ||
2548 | return rv; | ||
2549 | } | ||
2550 | |||
2465 | static int type_file_read_proc(char *page, char **start, off_t off, | 2551 | static int type_file_read_proc(char *page, char **start, off_t off, |
2466 | int count, int *eof, void *data) | 2552 | int count, int *eof, void *data) |
2467 | { | 2553 | { |
@@ -2847,6 +2933,10 @@ static int try_smi_init(struct smi_info *new_smi) | |||
2847 | new_smi->intf_num = smi_num; | 2933 | new_smi->intf_num = smi_num; |
2848 | smi_num++; | 2934 | smi_num++; |
2849 | 2935 | ||
2936 | rv = try_enable_event_buffer(new_smi); | ||
2937 | if (rv == 0) | ||
2938 | new_smi->has_event_buffer = 1; | ||
2939 | |||
2850 | /* | 2940 | /* |
2851 | * Start clearing the flags before we enable interrupts or the | 2941 | * Start clearing the flags before we enable interrupts or the |
2852 | * timer to avoid racing with the timer. | 2942 | * timer to avoid racing with the timer. |
@@ -2863,7 +2953,7 @@ static int try_smi_init(struct smi_info *new_smi) | |||
2863 | */ | 2953 | */ |
2864 | new_smi->pdev = platform_device_alloc("ipmi_si", | 2954 | new_smi->pdev = platform_device_alloc("ipmi_si", |
2865 | new_smi->intf_num); | 2955 | new_smi->intf_num); |
2866 | if (rv) { | 2956 | if (!new_smi->pdev) { |
2867 | printk(KERN_ERR | 2957 | printk(KERN_ERR |
2868 | "ipmi_si_intf:" | 2958 | "ipmi_si_intf:" |
2869 | " Unable to allocate platform device\n"); | 2959 | " Unable to allocate platform device\n"); |
diff --git a/drivers/clocksource/acpi_pm.c b/drivers/clocksource/acpi_pm.c index ee19b6e8fcb4..40bd8c61c7d7 100644 --- a/drivers/clocksource/acpi_pm.c +++ b/drivers/clocksource/acpi_pm.c | |||
@@ -57,7 +57,7 @@ u32 acpi_pm_read_verified(void) | |||
57 | return v2; | 57 | return v2; |
58 | } | 58 | } |
59 | 59 | ||
60 | static cycle_t acpi_pm_read(void) | 60 | static cycle_t acpi_pm_read(struct clocksource *cs) |
61 | { | 61 | { |
62 | return (cycle_t)read_pmtmr(); | 62 | return (cycle_t)read_pmtmr(); |
63 | } | 63 | } |
@@ -83,7 +83,7 @@ static int __init acpi_pm_good_setup(char *__str) | |||
83 | } | 83 | } |
84 | __setup("acpi_pm_good", acpi_pm_good_setup); | 84 | __setup("acpi_pm_good", acpi_pm_good_setup); |
85 | 85 | ||
86 | static cycle_t acpi_pm_read_slow(void) | 86 | static cycle_t acpi_pm_read_slow(struct clocksource *cs) |
87 | { | 87 | { |
88 | return (cycle_t)acpi_pm_read_verified(); | 88 | return (cycle_t)acpi_pm_read_verified(); |
89 | } | 89 | } |
@@ -156,9 +156,9 @@ static int verify_pmtmr_rate(void) | |||
156 | unsigned long count, delta; | 156 | unsigned long count, delta; |
157 | 157 | ||
158 | mach_prepare_counter(); | 158 | mach_prepare_counter(); |
159 | value1 = clocksource_acpi_pm.read(); | 159 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
160 | mach_countup(&count); | 160 | mach_countup(&count); |
161 | value2 = clocksource_acpi_pm.read(); | 161 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
162 | delta = (value2 - value1) & ACPI_PM_MASK; | 162 | delta = (value2 - value1) & ACPI_PM_MASK; |
163 | 163 | ||
164 | /* Check that the PMTMR delta is within 5% of what we expect */ | 164 | /* Check that the PMTMR delta is within 5% of what we expect */ |
@@ -195,9 +195,9 @@ static int __init init_acpi_pm_clocksource(void) | |||
195 | /* "verify" this timing source: */ | 195 | /* "verify" this timing source: */ |
196 | for (j = 0; j < ACPI_PM_MONOTONICITY_CHECKS; j++) { | 196 | for (j = 0; j < ACPI_PM_MONOTONICITY_CHECKS; j++) { |
197 | udelay(100 * j); | 197 | udelay(100 * j); |
198 | value1 = clocksource_acpi_pm.read(); | 198 | value1 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
199 | for (i = 0; i < ACPI_PM_READ_CHECKS; i++) { | 199 | for (i = 0; i < ACPI_PM_READ_CHECKS; i++) { |
200 | value2 = clocksource_acpi_pm.read(); | 200 | value2 = clocksource_acpi_pm.read(&clocksource_acpi_pm); |
201 | if (value2 == value1) | 201 | if (value2 == value1) |
202 | continue; | 202 | continue; |
203 | if (value2 > value1) | 203 | if (value2 > value1) |
diff --git a/drivers/clocksource/cyclone.c b/drivers/clocksource/cyclone.c index 8615059a8729..64e528e8bfa6 100644 --- a/drivers/clocksource/cyclone.c +++ b/drivers/clocksource/cyclone.c | |||
@@ -19,7 +19,7 @@ | |||
19 | int use_cyclone = 0; | 19 | int use_cyclone = 0; |
20 | static void __iomem *cyclone_ptr; | 20 | static void __iomem *cyclone_ptr; |
21 | 21 | ||
22 | static cycle_t read_cyclone(void) | 22 | static cycle_t read_cyclone(struct clocksource *cs) |
23 | { | 23 | { |
24 | return (cycle_t)readl(cyclone_ptr); | 24 | return (cycle_t)readl(cyclone_ptr); |
25 | } | 25 | } |
diff --git a/drivers/clocksource/scx200_hrt.c b/drivers/clocksource/scx200_hrt.c index b92da677aa5d..27f4d9637b62 100644 --- a/drivers/clocksource/scx200_hrt.c +++ b/drivers/clocksource/scx200_hrt.c | |||
@@ -43,7 +43,7 @@ MODULE_PARM_DESC(ppm, "+-adjust to actual XO freq (ppm)"); | |||
43 | /* The base timer frequency, * 27 if selected */ | 43 | /* The base timer frequency, * 27 if selected */ |
44 | #define HRT_FREQ 1000000 | 44 | #define HRT_FREQ 1000000 |
45 | 45 | ||
46 | static cycle_t read_hrt(void) | 46 | static cycle_t read_hrt(struct clocksource *cs) |
47 | { | 47 | { |
48 | /* Read the timer value */ | 48 | /* Read the timer value */ |
49 | return (cycle_t) inl(scx200_cb_base + SCx200_TIMER_OFFSET); | 49 | return (cycle_t) inl(scx200_cb_base + SCx200_TIMER_OFFSET); |
diff --git a/drivers/clocksource/tcb_clksrc.c b/drivers/clocksource/tcb_clksrc.c index 254f1064d973..01b886e68822 100644 --- a/drivers/clocksource/tcb_clksrc.c +++ b/drivers/clocksource/tcb_clksrc.c | |||
@@ -39,7 +39,7 @@ | |||
39 | 39 | ||
40 | static void __iomem *tcaddr; | 40 | static void __iomem *tcaddr; |
41 | 41 | ||
42 | static cycle_t tc_get_cycles(void) | 42 | static cycle_t tc_get_cycles(struct clocksource *cs) |
43 | { | 43 | { |
44 | unsigned long flags; | 44 | unsigned long flags; |
45 | u32 lower, upper; | 45 | u32 lower, upper; |
diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c index 4637a4a757df..7c8c2d72916f 100644 --- a/drivers/edac/mpc85xx_edac.c +++ b/drivers/edac/mpc85xx_edac.c | |||
@@ -674,7 +674,7 @@ static void mpc85xx_mc_check(struct mem_ctl_info *mci) | |||
674 | int row_index; | 674 | int row_index; |
675 | 675 | ||
676 | err_detect = in_be32(pdata->mc_vbase + MPC85XX_MC_ERR_DETECT); | 676 | err_detect = in_be32(pdata->mc_vbase + MPC85XX_MC_ERR_DETECT); |
677 | if (err_detect) | 677 | if (!err_detect) |
678 | return; | 678 | return; |
679 | 679 | ||
680 | mpc85xx_mc_printk(mci, KERN_ERR, "Err Detect Register: %#8.8x\n", | 680 | mpc85xx_mc_printk(mci, KERN_ERR, "Err Detect Register: %#8.8x\n", |
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index a000cf028826..051134c56aef 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
@@ -713,18 +713,18 @@ static int i915_cmdbuffer(struct drm_device *dev, void *data, | |||
713 | mutex_unlock(&dev->struct_mutex); | 713 | mutex_unlock(&dev->struct_mutex); |
714 | if (ret) { | 714 | if (ret) { |
715 | DRM_ERROR("i915_dispatch_cmdbuffer failed\n"); | 715 | DRM_ERROR("i915_dispatch_cmdbuffer failed\n"); |
716 | goto fail_batch_free; | 716 | goto fail_clip_free; |
717 | } | 717 | } |
718 | 718 | ||
719 | if (sarea_priv) | 719 | if (sarea_priv) |
720 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); | 720 | sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv); |
721 | 721 | ||
722 | fail_batch_free: | ||
723 | drm_free(batch_data, cmdbuf->sz, DRM_MEM_DRIVER); | ||
724 | fail_clip_free: | 722 | fail_clip_free: |
725 | drm_free(cliprects, | 723 | drm_free(cliprects, |
726 | cmdbuf->num_cliprects * sizeof(struct drm_clip_rect), | 724 | cmdbuf->num_cliprects * sizeof(struct drm_clip_rect), |
727 | DRM_MEM_DRIVER); | 725 | DRM_MEM_DRIVER); |
726 | fail_batch_free: | ||
727 | drm_free(batch_data, cmdbuf->sz, DRM_MEM_DRIVER); | ||
728 | 728 | ||
729 | return ret; | 729 | return ret; |
730 | } | 730 | } |
@@ -1232,7 +1232,7 @@ int i915_driver_unload(struct drm_device *dev) | |||
1232 | if (dev_priv->regs != NULL) | 1232 | if (dev_priv->regs != NULL) |
1233 | iounmap(dev_priv->regs); | 1233 | iounmap(dev_priv->regs); |
1234 | 1234 | ||
1235 | intel_opregion_free(dev); | 1235 | intel_opregion_free(dev, 0); |
1236 | 1236 | ||
1237 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { | 1237 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { |
1238 | intel_modeset_cleanup(dev); | 1238 | intel_modeset_cleanup(dev); |
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c index 6503e2210f65..98560e1e899a 100644 --- a/drivers/gpu/drm/i915/i915_drv.c +++ b/drivers/gpu/drm/i915/i915_drv.c | |||
@@ -77,7 +77,7 @@ static int i915_suspend(struct drm_device *dev, pm_message_t state) | |||
77 | drm_irq_uninstall(dev); | 77 | drm_irq_uninstall(dev); |
78 | } | 78 | } |
79 | 79 | ||
80 | intel_opregion_free(dev); | 80 | intel_opregion_free(dev, 1); |
81 | 81 | ||
82 | if (state.event == PM_EVENT_SUSPEND) { | 82 | if (state.event == PM_EVENT_SUSPEND) { |
83 | /* Shut down the device */ | 83 | /* Shut down the device */ |
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 473a8f7fbdb5..25065923b8a8 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h | |||
@@ -674,12 +674,12 @@ extern int i915_restore_state(struct drm_device *dev); | |||
674 | #ifdef CONFIG_ACPI | 674 | #ifdef CONFIG_ACPI |
675 | /* i915_opregion.c */ | 675 | /* i915_opregion.c */ |
676 | extern int intel_opregion_init(struct drm_device *dev, int resume); | 676 | extern int intel_opregion_init(struct drm_device *dev, int resume); |
677 | extern void intel_opregion_free(struct drm_device *dev); | 677 | extern void intel_opregion_free(struct drm_device *dev, int suspend); |
678 | extern void opregion_asle_intr(struct drm_device *dev); | 678 | extern void opregion_asle_intr(struct drm_device *dev); |
679 | extern void opregion_enable_asle(struct drm_device *dev); | 679 | extern void opregion_enable_asle(struct drm_device *dev); |
680 | #else | 680 | #else |
681 | static inline int intel_opregion_init(struct drm_device *dev, int resume) { return 0; } | 681 | static inline int intel_opregion_init(struct drm_device *dev, int resume) { return 0; } |
682 | static inline void intel_opregion_free(struct drm_device *dev) { return; } | 682 | static inline void intel_opregion_free(struct drm_device *dev, int suspend) { return; } |
683 | static inline void opregion_asle_intr(struct drm_device *dev) { return; } | 683 | static inline void opregion_asle_intr(struct drm_device *dev) { return; } |
684 | static inline void opregion_enable_asle(struct drm_device *dev) { return; } | 684 | static inline void opregion_enable_asle(struct drm_device *dev) { return; } |
685 | #endif | 685 | #endif |
@@ -787,7 +787,8 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
787 | (dev)->pci_device == 0x2A42 || \ | 787 | (dev)->pci_device == 0x2A42 || \ |
788 | (dev)->pci_device == 0x2E02 || \ | 788 | (dev)->pci_device == 0x2E02 || \ |
789 | (dev)->pci_device == 0x2E12 || \ | 789 | (dev)->pci_device == 0x2E12 || \ |
790 | (dev)->pci_device == 0x2E22) | 790 | (dev)->pci_device == 0x2E22 || \ |
791 | (dev)->pci_device == 0x2E32) | ||
791 | 792 | ||
792 | #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) | 793 | #define IS_I965GM(dev) ((dev)->pci_device == 0x2A02) |
793 | 794 | ||
@@ -796,6 +797,7 @@ extern int i915_wait_ring(struct drm_device * dev, int n, const char *caller); | |||
796 | #define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \ | 797 | #define IS_G4X(dev) ((dev)->pci_device == 0x2E02 || \ |
797 | (dev)->pci_device == 0x2E12 || \ | 798 | (dev)->pci_device == 0x2E12 || \ |
798 | (dev)->pci_device == 0x2E22 || \ | 799 | (dev)->pci_device == 0x2E22 || \ |
800 | (dev)->pci_device == 0x2E32 || \ | ||
799 | IS_GM45(dev)) | 801 | IS_GM45(dev)) |
800 | 802 | ||
801 | #define IS_IGDG(dev) ((dev)->pci_device == 0xa001) | 803 | #define IS_IGDG(dev) ((dev)->pci_device == 0xa001) |
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 4642115902d6..ee896d91c5bc 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c | |||
@@ -4087,8 +4087,10 @@ i915_gem_entervt_ioctl(struct drm_device *dev, void *data, | |||
4087 | dev_priv->mm.suspended = 0; | 4087 | dev_priv->mm.suspended = 0; |
4088 | 4088 | ||
4089 | ret = i915_gem_init_ringbuffer(dev); | 4089 | ret = i915_gem_init_ringbuffer(dev); |
4090 | if (ret != 0) | 4090 | if (ret != 0) { |
4091 | mutex_unlock(&dev->struct_mutex); | ||
4091 | return ret; | 4092 | return ret; |
4093 | } | ||
4092 | 4094 | ||
4093 | spin_lock(&dev_priv->mm.active_list_lock); | 4095 | spin_lock(&dev_priv->mm.active_list_lock); |
4094 | BUG_ON(!list_empty(&dev_priv->mm.active_list)); | 4096 | BUG_ON(!list_empty(&dev_priv->mm.active_list)); |
diff --git a/drivers/gpu/drm/i915/i915_gem_tiling.c b/drivers/gpu/drm/i915/i915_gem_tiling.c index f27e523c764f..52a059354e83 100644 --- a/drivers/gpu/drm/i915/i915_gem_tiling.c +++ b/drivers/gpu/drm/i915/i915_gem_tiling.c | |||
@@ -283,7 +283,6 @@ i915_gem_set_tiling(struct drm_device *dev, void *data, | |||
283 | mutex_lock(&dev->struct_mutex); | 283 | mutex_lock(&dev->struct_mutex); |
284 | 284 | ||
285 | if (args->tiling_mode == I915_TILING_NONE) { | 285 | if (args->tiling_mode == I915_TILING_NONE) { |
286 | obj_priv->tiling_mode = I915_TILING_NONE; | ||
287 | args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE; | 286 | args->swizzle_mode = I915_BIT_6_SWIZZLE_NONE; |
288 | } else { | 287 | } else { |
289 | if (args->tiling_mode == I915_TILING_X) | 288 | if (args->tiling_mode == I915_TILING_X) |
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index ee7ce7b78cf7..98bb4c878c4e 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c | |||
@@ -406,7 +406,7 @@ int i915_irq_emit(struct drm_device *dev, void *data, | |||
406 | drm_i915_irq_emit_t *emit = data; | 406 | drm_i915_irq_emit_t *emit = data; |
407 | int result; | 407 | int result; |
408 | 408 | ||
409 | if (!dev_priv) { | 409 | if (!dev_priv || !dev_priv->ring.virtual_start) { |
410 | DRM_ERROR("called with no initialization\n"); | 410 | DRM_ERROR("called with no initialization\n"); |
411 | return -EINVAL; | 411 | return -EINVAL; |
412 | } | 412 | } |
diff --git a/drivers/gpu/drm/i915/i915_opregion.c b/drivers/gpu/drm/i915/i915_opregion.c index 69427722d20e..dc425e74a268 100644 --- a/drivers/gpu/drm/i915/i915_opregion.c +++ b/drivers/gpu/drm/i915/i915_opregion.c | |||
@@ -370,11 +370,8 @@ int intel_opregion_init(struct drm_device *dev, int resume) | |||
370 | if (mboxes & MBOX_ACPI) { | 370 | if (mboxes & MBOX_ACPI) { |
371 | DRM_DEBUG("Public ACPI methods supported\n"); | 371 | DRM_DEBUG("Public ACPI methods supported\n"); |
372 | opregion->acpi = base + OPREGION_ACPI_OFFSET; | 372 | opregion->acpi = base + OPREGION_ACPI_OFFSET; |
373 | if (drm_core_check_feature(dev, DRIVER_MODESET)) { | 373 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
374 | intel_didl_outputs(dev); | 374 | intel_didl_outputs(dev); |
375 | if (!resume) | ||
376 | acpi_video_register(); | ||
377 | } | ||
378 | } else { | 375 | } else { |
379 | DRM_DEBUG("Public ACPI methods not supported\n"); | 376 | DRM_DEBUG("Public ACPI methods not supported\n"); |
380 | err = -ENOTSUPP; | 377 | err = -ENOTSUPP; |
@@ -389,8 +386,13 @@ int intel_opregion_init(struct drm_device *dev, int resume) | |||
389 | if (mboxes & MBOX_ASLE) { | 386 | if (mboxes & MBOX_ASLE) { |
390 | DRM_DEBUG("ASLE supported\n"); | 387 | DRM_DEBUG("ASLE supported\n"); |
391 | opregion->asle = base + OPREGION_ASLE_OFFSET; | 388 | opregion->asle = base + OPREGION_ASLE_OFFSET; |
389 | opregion_enable_asle(dev); | ||
392 | } | 390 | } |
393 | 391 | ||
392 | if (!resume) | ||
393 | acpi_video_register(); | ||
394 | |||
395 | |||
394 | /* Notify BIOS we are ready to handle ACPI video ext notifs. | 396 | /* Notify BIOS we are ready to handle ACPI video ext notifs. |
395 | * Right now, all the events are handled by the ACPI video module. | 397 | * Right now, all the events are handled by the ACPI video module. |
396 | * We don't actually need to do anything with them. */ | 398 | * We don't actually need to do anything with them. */ |
@@ -408,7 +410,7 @@ err_out: | |||
408 | return err; | 410 | return err; |
409 | } | 411 | } |
410 | 412 | ||
411 | void intel_opregion_free(struct drm_device *dev) | 413 | void intel_opregion_free(struct drm_device *dev, int suspend) |
412 | { | 414 | { |
413 | struct drm_i915_private *dev_priv = dev->dev_private; | 415 | struct drm_i915_private *dev_priv = dev->dev_private; |
414 | struct intel_opregion *opregion = &dev_priv->opregion; | 416 | struct intel_opregion *opregion = &dev_priv->opregion; |
@@ -416,6 +418,9 @@ void intel_opregion_free(struct drm_device *dev) | |||
416 | if (!opregion->enabled) | 418 | if (!opregion->enabled) |
417 | return; | 419 | return; |
418 | 420 | ||
421 | if (!suspend) | ||
422 | acpi_video_exit(); | ||
423 | |||
419 | opregion->acpi->drdy = 0; | 424 | opregion->acpi->drdy = 0; |
420 | 425 | ||
421 | system_opregion = NULL; | 426 | system_opregion = NULL; |
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index e805b590ae71..521194732266 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h | |||
@@ -1446,6 +1446,7 @@ | |||
1446 | #define DISPPLANE_NO_LINE_DOUBLE 0 | 1446 | #define DISPPLANE_NO_LINE_DOUBLE 0 |
1447 | #define DISPPLANE_STEREO_POLARITY_FIRST 0 | 1447 | #define DISPPLANE_STEREO_POLARITY_FIRST 0 |
1448 | #define DISPPLANE_STEREO_POLARITY_SECOND (1<<18) | 1448 | #define DISPPLANE_STEREO_POLARITY_SECOND (1<<18) |
1449 | #define DISPPLANE_TILED (1<<10) | ||
1449 | #define DSPAADDR 0x70184 | 1450 | #define DSPAADDR 0x70184 |
1450 | #define DSPASTRIDE 0x70188 | 1451 | #define DSPASTRIDE 0x70188 |
1451 | #define DSPAPOS 0x7018C /* reserved */ | 1452 | #define DSPAPOS 0x7018C /* reserved */ |
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index c2c8e95ff14d..bdcda36953b0 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
@@ -657,6 +657,7 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, | |||
657 | int dspbase = (pipe == 0 ? DSPAADDR : DSPBADDR); | 657 | int dspbase = (pipe == 0 ? DSPAADDR : DSPBADDR); |
658 | int dspsurf = (pipe == 0 ? DSPASURF : DSPBSURF); | 658 | int dspsurf = (pipe == 0 ? DSPASURF : DSPBSURF); |
659 | int dspstride = (pipe == 0) ? DSPASTRIDE : DSPBSTRIDE; | 659 | int dspstride = (pipe == 0) ? DSPASTRIDE : DSPBSTRIDE; |
660 | int dsptileoff = (pipe == 0 ? DSPATILEOFF : DSPBTILEOFF); | ||
660 | int dspcntr_reg = (pipe == 0) ? DSPACNTR : DSPBCNTR; | 661 | int dspcntr_reg = (pipe == 0) ? DSPACNTR : DSPBCNTR; |
661 | u32 dspcntr, alignment; | 662 | u32 dspcntr, alignment; |
662 | int ret; | 663 | int ret; |
@@ -733,6 +734,13 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, | |||
733 | mutex_unlock(&dev->struct_mutex); | 734 | mutex_unlock(&dev->struct_mutex); |
734 | return -EINVAL; | 735 | return -EINVAL; |
735 | } | 736 | } |
737 | if (IS_I965G(dev)) { | ||
738 | if (obj_priv->tiling_mode != I915_TILING_NONE) | ||
739 | dspcntr |= DISPPLANE_TILED; | ||
740 | else | ||
741 | dspcntr &= ~DISPPLANE_TILED; | ||
742 | } | ||
743 | |||
736 | I915_WRITE(dspcntr_reg, dspcntr); | 744 | I915_WRITE(dspcntr_reg, dspcntr); |
737 | 745 | ||
738 | Start = obj_priv->gtt_offset; | 746 | Start = obj_priv->gtt_offset; |
@@ -745,6 +753,7 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y, | |||
745 | I915_READ(dspbase); | 753 | I915_READ(dspbase); |
746 | I915_WRITE(dspsurf, Start); | 754 | I915_WRITE(dspsurf, Start); |
747 | I915_READ(dspsurf); | 755 | I915_READ(dspsurf); |
756 | I915_WRITE(dsptileoff, (y << 16) | x); | ||
748 | } else { | 757 | } else { |
749 | I915_WRITE(dspbase, Start + Offset); | 758 | I915_WRITE(dspbase, Start + Offset); |
750 | I915_READ(dspbase); | 759 | I915_READ(dspbase); |
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index 3aec19d1fdfc..3d4e09969763 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c | |||
@@ -609,7 +609,7 @@ static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive) | |||
609 | struct request *rq = hwif->rq; | 609 | struct request *rq = hwif->rq; |
610 | ide_expiry_t *expiry = NULL; | 610 | ide_expiry_t *expiry = NULL; |
611 | int dma_error = 0, dma, thislen, uptodate = 0; | 611 | int dma_error = 0, dma, thislen, uptodate = 0; |
612 | int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc, nsectors; | 612 | int write = (rq_data_dir(rq) == WRITE) ? 1 : 0, rc = 0, nsectors; |
613 | int sense = blk_sense_request(rq); | 613 | int sense = blk_sense_request(rq); |
614 | unsigned int timeout; | 614 | unsigned int timeout; |
615 | u16 len; | 615 | u16 len; |
diff --git a/drivers/ide/ide-gd.c b/drivers/ide/ide-gd.c index 1aebdf1a4f58..4b6b71e2cdf5 100644 --- a/drivers/ide/ide-gd.c +++ b/drivers/ide/ide-gd.c | |||
@@ -7,6 +7,7 @@ | |||
7 | #include <linux/mutex.h> | 7 | #include <linux/mutex.h> |
8 | #include <linux/ide.h> | 8 | #include <linux/ide.h> |
9 | #include <linux/hdreg.h> | 9 | #include <linux/hdreg.h> |
10 | #include <linux/dmi.h> | ||
10 | 11 | ||
11 | #if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT) | 12 | #if !defined(CONFIG_DEBUG_BLOCK_EXT_DEVT) |
12 | #define IDE_DISK_MINORS (1 << PARTN_BITS) | 13 | #define IDE_DISK_MINORS (1 << PARTN_BITS) |
@@ -99,6 +100,19 @@ static void ide_gd_resume(ide_drive_t *drive) | |||
99 | (void)drive->disk_ops->get_capacity(drive); | 100 | (void)drive->disk_ops->get_capacity(drive); |
100 | } | 101 | } |
101 | 102 | ||
103 | static const struct dmi_system_id ide_coldreboot_table[] = { | ||
104 | { | ||
105 | /* Acer TravelMate 66x cuts power during reboot */ | ||
106 | .ident = "Acer TravelMate 660", | ||
107 | .matches = { | ||
108 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), | ||
109 | DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 660"), | ||
110 | }, | ||
111 | }, | ||
112 | |||
113 | { } /* terminate list */ | ||
114 | }; | ||
115 | |||
102 | static void ide_gd_shutdown(ide_drive_t *drive) | 116 | static void ide_gd_shutdown(ide_drive_t *drive) |
103 | { | 117 | { |
104 | #ifdef CONFIG_ALPHA | 118 | #ifdef CONFIG_ALPHA |
@@ -115,7 +129,8 @@ static void ide_gd_shutdown(ide_drive_t *drive) | |||
115 | the disk to expire its write cache. */ | 129 | the disk to expire its write cache. */ |
116 | if (system_state != SYSTEM_POWER_OFF) { | 130 | if (system_state != SYSTEM_POWER_OFF) { |
117 | #else | 131 | #else |
118 | if (system_state == SYSTEM_RESTART) { | 132 | if (system_state == SYSTEM_RESTART && |
133 | !dmi_check_system(ide_coldreboot_table)) { | ||
119 | #endif | 134 | #endif |
120 | drive->disk_ops->flush(drive); | 135 | drive->disk_ops->flush(drive); |
121 | return; | 136 | return; |
diff --git a/drivers/ide/palm_bk3710.c b/drivers/ide/palm_bk3710.c index c7acca0b8733..09d813d313f4 100644 --- a/drivers/ide/palm_bk3710.c +++ b/drivers/ide/palm_bk3710.c | |||
@@ -39,27 +39,12 @@ | |||
39 | /* Primary Control Offset */ | 39 | /* Primary Control Offset */ |
40 | #define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6 | 40 | #define IDE_PALM_ATA_PRI_CTL_OFFSET 0x3F6 |
41 | 41 | ||
42 | /* | ||
43 | * PalmChip 3710 IDE Controller UDMA timing structure Definition | ||
44 | */ | ||
45 | struct palm_bk3710_udmatiming { | ||
46 | unsigned int rptime; /* Ready to pause time */ | ||
47 | unsigned int cycletime; /* Cycle Time */ | ||
48 | }; | ||
49 | |||
50 | #define BK3710_BMICP 0x00 | 42 | #define BK3710_BMICP 0x00 |
51 | #define BK3710_BMISP 0x02 | 43 | #define BK3710_BMISP 0x02 |
52 | #define BK3710_BMIDTP 0x04 | 44 | #define BK3710_BMIDTP 0x04 |
53 | #define BK3710_BMICS 0x08 | ||
54 | #define BK3710_BMISS 0x0A | ||
55 | #define BK3710_BMIDTS 0x0C | ||
56 | #define BK3710_IDETIMP 0x40 | 45 | #define BK3710_IDETIMP 0x40 |
57 | #define BK3710_IDETIMS 0x42 | ||
58 | #define BK3710_SIDETIM 0x44 | ||
59 | #define BK3710_SLEWCTL 0x45 | ||
60 | #define BK3710_IDESTATUS 0x47 | 46 | #define BK3710_IDESTATUS 0x47 |
61 | #define BK3710_UDMACTL 0x48 | 47 | #define BK3710_UDMACTL 0x48 |
62 | #define BK3710_UDMATIM 0x4A | ||
63 | #define BK3710_MISCCTL 0x50 | 48 | #define BK3710_MISCCTL 0x50 |
64 | #define BK3710_REGSTB 0x54 | 49 | #define BK3710_REGSTB 0x54 |
65 | #define BK3710_REGRCVR 0x58 | 50 | #define BK3710_REGRCVR 0x58 |
@@ -71,17 +56,22 @@ struct palm_bk3710_udmatiming { | |||
71 | #define BK3710_UDMATRP 0x70 | 56 | #define BK3710_UDMATRP 0x70 |
72 | #define BK3710_UDMAENV 0x74 | 57 | #define BK3710_UDMAENV 0x74 |
73 | #define BK3710_IORDYTMP 0x78 | 58 | #define BK3710_IORDYTMP 0x78 |
74 | #define BK3710_IORDYTMS 0x7C | ||
75 | 59 | ||
76 | static unsigned ideclk_period; /* in nanoseconds */ | 60 | static unsigned ideclk_period; /* in nanoseconds */ |
77 | 61 | ||
62 | struct palm_bk3710_udmatiming { | ||
63 | unsigned int rptime; /* tRP -- Ready to pause time (nsec) */ | ||
64 | unsigned int cycletime; /* tCYCTYP2/2 -- avg Cycle Time (nsec) */ | ||
65 | /* tENV is always a minimum of 20 nsec */ | ||
66 | }; | ||
67 | |||
78 | static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings[6] = { | 68 | static const struct palm_bk3710_udmatiming palm_bk3710_udmatimings[6] = { |
79 | {160, 240}, /* UDMA Mode 0 */ | 69 | { 160, 240 / 2 }, /* UDMA Mode 0 */ |
80 | {125, 160}, /* UDMA Mode 1 */ | 70 | { 125, 160 / 2 }, /* UDMA Mode 1 */ |
81 | {100, 120}, /* UDMA Mode 2 */ | 71 | { 100, 120 / 2 }, /* UDMA Mode 2 */ |
82 | {100, 90}, /* UDMA Mode 3 */ | 72 | { 100, 90 / 2 }, /* UDMA Mode 3 */ |
83 | {100, 60}, /* UDMA Mode 4 */ | 73 | { 100, 60 / 2 }, /* UDMA Mode 4 */ |
84 | {85, 40}, /* UDMA Mode 5 */ | 74 | { 85, 40 / 2 }, /* UDMA Mode 5 */ |
85 | }; | 75 | }; |
86 | 76 | ||
87 | static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev, | 77 | static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev, |
@@ -98,11 +88,6 @@ static void palm_bk3710_setudmamode(void __iomem *base, unsigned int dev, | |||
98 | trp = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].rptime, | 88 | trp = DIV_ROUND_UP(palm_bk3710_udmatimings[mode].rptime, |
99 | ideclk_period) - 1; | 89 | ideclk_period) - 1; |
100 | 90 | ||
101 | /* udmatim Register */ | ||
102 | val16 = readw(base + BK3710_UDMATIM) & (dev ? 0xFF0F : 0xFFF0); | ||
103 | val16 |= (mode << (dev ? 4 : 0)); | ||
104 | writew(val16, base + BK3710_UDMATIM); | ||
105 | |||
106 | /* udmastb Ultra DMA Access Strobe Width */ | 91 | /* udmastb Ultra DMA Access Strobe Width */ |
107 | val32 = readl(base + BK3710_UDMASTB) & (0xFF << (dev ? 0 : 8)); | 92 | val32 = readl(base + BK3710_UDMASTB) & (0xFF << (dev ? 0 : 8)); |
108 | val32 |= (t0 << (dev ? 8 : 0)); | 93 | val32 |= (t0 << (dev ? 8 : 0)); |
@@ -163,10 +148,11 @@ static void palm_bk3710_setpiomode(void __iomem *base, ide_drive_t *mate, | |||
163 | u32 val32; | 148 | u32 val32; |
164 | struct ide_timing *t; | 149 | struct ide_timing *t; |
165 | 150 | ||
151 | t = ide_timing_find_mode(XFER_PIO_0 + mode); | ||
152 | |||
166 | /* PIO Data Setup */ | 153 | /* PIO Data Setup */ |
167 | t0 = DIV_ROUND_UP(cycletime, ideclk_period); | 154 | t0 = DIV_ROUND_UP(cycletime, ideclk_period); |
168 | t2 = DIV_ROUND_UP(ide_timing_find_mode(XFER_PIO_0 + mode)->active, | 155 | t2 = DIV_ROUND_UP(t->active, ideclk_period); |
169 | ideclk_period); | ||
170 | 156 | ||
171 | t2i = t0 - t2 - 1; | 157 | t2i = t0 - t2 - 1; |
172 | t2 -= 1; | 158 | t2 -= 1; |
@@ -187,7 +173,6 @@ static void palm_bk3710_setpiomode(void __iomem *base, ide_drive_t *mate, | |||
187 | } | 173 | } |
188 | 174 | ||
189 | /* TASKFILE Setup */ | 175 | /* TASKFILE Setup */ |
190 | t = ide_timing_find_mode(XFER_PIO_0 + mode); | ||
191 | t0 = DIV_ROUND_UP(t->cyc8b, ideclk_period); | 176 | t0 = DIV_ROUND_UP(t->cyc8b, ideclk_period); |
192 | t2 = DIV_ROUND_UP(t->act8b, ideclk_period); | 177 | t2 = DIV_ROUND_UP(t->act8b, ideclk_period); |
193 | 178 | ||
@@ -236,42 +221,23 @@ static void palm_bk3710_set_pio_mode(ide_drive_t *drive, u8 pio) | |||
236 | static void __devinit palm_bk3710_chipinit(void __iomem *base) | 221 | static void __devinit palm_bk3710_chipinit(void __iomem *base) |
237 | { | 222 | { |
238 | /* | 223 | /* |
239 | * enable the reset_en of ATA controller so that when ata signals | 224 | * REVISIT: the ATA reset signal needs to be managed through a |
240 | * are brought out, by writing into device config. at that | 225 | * GPIO, which means it should come from platform_data. Until |
241 | * time por_n signal should not be 'Z' and have a stable value. | 226 | * we get and use such information, we have to trust that things |
227 | * have been reset before we get here. | ||
242 | */ | 228 | */ |
243 | writel(0x0300, base + BK3710_MISCCTL); | ||
244 | |||
245 | /* wait for some time and deassert the reset of ATA Device. */ | ||
246 | mdelay(100); | ||
247 | |||
248 | /* Deassert the Reset */ | ||
249 | writel(0x0200, base + BK3710_MISCCTL); | ||
250 | 229 | ||
251 | /* | 230 | /* |
252 | * Program the IDETIMP Register Value based on the following assumptions | 231 | * Program the IDETIMP Register Value based on the following assumptions |
253 | * | 232 | * |
254 | * (ATA_IDETIMP_IDEEN , ENABLE ) | | 233 | * (ATA_IDETIMP_IDEEN , ENABLE ) | |
255 | * (ATA_IDETIMP_SLVTIMEN , DISABLE) | | ||
256 | * (ATA_IDETIMP_RDYSMPL , 70NS) | | ||
257 | * (ATA_IDETIMP_RDYRCVRY , 50NS) | | ||
258 | * (ATA_IDETIMP_DMAFTIM1 , PIOCOMP) | | ||
259 | * (ATA_IDETIMP_PREPOST1 , DISABLE) | | 234 | * (ATA_IDETIMP_PREPOST1 , DISABLE) | |
260 | * (ATA_IDETIMP_RDYSEN1 , DISABLE) | | ||
261 | * (ATA_IDETIMP_PIOFTIM1 , DISABLE) | | ||
262 | * (ATA_IDETIMP_DMAFTIM0 , PIOCOMP) | | ||
263 | * (ATA_IDETIMP_PREPOST0 , DISABLE) | | 235 | * (ATA_IDETIMP_PREPOST0 , DISABLE) | |
264 | * (ATA_IDETIMP_RDYSEN0 , DISABLE) | | 236 | * |
265 | * (ATA_IDETIMP_PIOFTIM0 , DISABLE) | 237 | * DM6446 silicon rev 2.1 and earlier have no observed net benefit |
266 | */ | 238 | * from enabling prefetch/postwrite. |
267 | writew(0xB388, base + BK3710_IDETIMP); | ||
268 | |||
269 | /* | ||
270 | * Configure SIDETIM Register | ||
271 | * (ATA_SIDETIM_RDYSMPS1 ,120NS ) | | ||
272 | * (ATA_SIDETIM_RDYRCYS1 ,120NS ) | ||
273 | */ | 239 | */ |
274 | writeb(0, base + BK3710_SIDETIM); | 240 | writew(BIT(15), base + BK3710_IDETIMP); |
275 | 241 | ||
276 | /* | 242 | /* |
277 | * UDMACTL Ultra-ATA DMA Control | 243 | * UDMACTL Ultra-ATA DMA Control |
@@ -283,11 +249,11 @@ static void __devinit palm_bk3710_chipinit(void __iomem *base) | |||
283 | 249 | ||
284 | /* | 250 | /* |
285 | * MISCCTL Miscellaneous Conrol Register | 251 | * MISCCTL Miscellaneous Conrol Register |
286 | * (ATA_MISCCTL_RSTMODEP , 1) | | 252 | * (ATA_MISCCTL_HWNHLD1P , 1 cycle) |
287 | * (ATA_MISCCTL_RESETP , 0) | | 253 | * (ATA_MISCCTL_HWNHLD0P , 1 cycle) |
288 | * (ATA_MISCCTL_TIMORIDE , 1) | 254 | * (ATA_MISCCTL_TIMORIDE , 1) |
289 | */ | 255 | */ |
290 | writel(0x201, base + BK3710_MISCCTL); | 256 | writel(0x001, base + BK3710_MISCCTL); |
291 | 257 | ||
292 | /* | 258 | /* |
293 | * IORDYTMP IORDY Timer for Primary Register | 259 | * IORDYTMP IORDY Timer for Primary Register |
@@ -357,10 +323,9 @@ static int __init palm_bk3710_probe(struct platform_device *pdev) | |||
357 | 323 | ||
358 | clk_enable(clk); | 324 | clk_enable(clk); |
359 | rate = clk_get_rate(clk); | 325 | rate = clk_get_rate(clk); |
360 | ideclk_period = 1000000000UL / rate; | ||
361 | 326 | ||
362 | /* Register the IDE interface with Linux ATA Interface */ | 327 | /* NOTE: round *down* to meet minimum timings; we count in clocks */ |
363 | memset(&hw, 0, sizeof(hw)); | 328 | ideclk_period = 1000000000UL / rate; |
364 | 329 | ||
365 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 330 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
366 | if (mem == NULL) { | 331 | if (mem == NULL) { |
@@ -390,6 +355,7 @@ static int __init palm_bk3710_probe(struct platform_device *pdev) | |||
390 | /* Configure the Palm Chip controller */ | 355 | /* Configure the Palm Chip controller */ |
391 | palm_bk3710_chipinit(base); | 356 | palm_bk3710_chipinit(base); |
392 | 357 | ||
358 | memset(&hw, 0, sizeof(hw)); | ||
393 | for (i = 0; i < IDE_NR_PORTS - 2; i++) | 359 | for (i = 0; i < IDE_NR_PORTS - 2; i++) |
394 | hw.io_ports_array[i] = (unsigned long) | 360 | hw.io_ports_array[i] = (unsigned long) |
395 | (base + IDE_PALM_ATA_PRI_REG_OFFSET + i); | 361 | (base + IDE_PALM_ATA_PRI_REG_OFFSET + i); |
@@ -402,6 +368,7 @@ static int __init palm_bk3710_probe(struct platform_device *pdev) | |||
402 | palm_bk3710_port_info.udma_mask = rate < 100000000 ? ATA_UDMA4 : | 368 | palm_bk3710_port_info.udma_mask = rate < 100000000 ? ATA_UDMA4 : |
403 | ATA_UDMA5; | 369 | ATA_UDMA5; |
404 | 370 | ||
371 | /* Register the IDE interface with Linux */ | ||
405 | rc = ide_host_add(&palm_bk3710_port_info, hws, NULL); | 372 | rc = ide_host_add(&palm_bk3710_port_info, hws, NULL); |
406 | if (rc) | 373 | if (rc) |
407 | goto out; | 374 | goto out; |
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index fef3f1ae7225..52d7bb0c2a12 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_cm.c +++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c | |||
@@ -1830,6 +1830,10 @@ int iwch_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
1830 | ep->com.rpl_err = 0; | 1830 | ep->com.rpl_err = 0; |
1831 | ep->ird = conn_param->ird; | 1831 | ep->ird = conn_param->ird; |
1832 | ep->ord = conn_param->ord; | 1832 | ep->ord = conn_param->ord; |
1833 | |||
1834 | if (peer2peer && ep->ird == 0) | ||
1835 | ep->ird = 1; | ||
1836 | |||
1833 | PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord); | 1837 | PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord); |
1834 | 1838 | ||
1835 | get_ep(&ep->com); | 1839 | get_ep(&ep->com); |
@@ -1915,6 +1919,10 @@ int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
1915 | conn_param->private_data, ep->plen); | 1919 | conn_param->private_data, ep->plen); |
1916 | ep->ird = conn_param->ird; | 1920 | ep->ird = conn_param->ird; |
1917 | ep->ord = conn_param->ord; | 1921 | ep->ord = conn_param->ord; |
1922 | |||
1923 | if (peer2peer && ep->ord == 0) | ||
1924 | ep->ord = 1; | ||
1925 | |||
1918 | ep->com.tdev = h->rdev.t3cdev_p; | 1926 | ep->com.tdev = h->rdev.t3cdev_p; |
1919 | 1927 | ||
1920 | cm_id->add_ref(cm_id); | 1928 | cm_id->add_ref(cm_id); |
diff --git a/drivers/infiniband/hw/cxgb3/iwch_qp.c b/drivers/infiniband/hw/cxgb3/iwch_qp.c index 2f546a625330..27bbdc8e773a 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_qp.c +++ b/drivers/infiniband/hw/cxgb3/iwch_qp.c | |||
@@ -1069,7 +1069,6 @@ int iwch_modify_qp(struct iwch_dev *rhp, struct iwch_qp *qhp, | |||
1069 | goto out; | 1069 | goto out; |
1070 | } | 1070 | } |
1071 | qhp->attr.state = IWCH_QP_STATE_IDLE; | 1071 | qhp->attr.state = IWCH_QP_STATE_IDLE; |
1072 | memset(&qhp->attr, 0, sizeof(qhp->attr)); | ||
1073 | break; | 1072 | break; |
1074 | case IWCH_QP_STATE_TERMINATE: | 1073 | case IWCH_QP_STATE_TERMINATE: |
1075 | if (!internal) { | 1074 | if (!internal) { |
diff --git a/drivers/infiniband/hw/mthca/mthca_cmd.c b/drivers/infiniband/hw/mthca/mthca_cmd.c index c33e1c53c799..6d55f9d748f6 100644 --- a/drivers/infiniband/hw/mthca/mthca_cmd.c +++ b/drivers/infiniband/hw/mthca/mthca_cmd.c | |||
@@ -157,13 +157,15 @@ enum { | |||
157 | enum { | 157 | enum { |
158 | CMD_TIME_CLASS_A = (HZ + 999) / 1000 + 1, | 158 | CMD_TIME_CLASS_A = (HZ + 999) / 1000 + 1, |
159 | CMD_TIME_CLASS_B = (HZ + 99) / 100 + 1, | 159 | CMD_TIME_CLASS_B = (HZ + 99) / 100 + 1, |
160 | CMD_TIME_CLASS_C = (HZ + 9) / 10 + 1 | 160 | CMD_TIME_CLASS_C = (HZ + 9) / 10 + 1, |
161 | CMD_TIME_CLASS_D = 60 * HZ | ||
161 | }; | 162 | }; |
162 | #else | 163 | #else |
163 | enum { | 164 | enum { |
164 | CMD_TIME_CLASS_A = 60 * HZ, | 165 | CMD_TIME_CLASS_A = 60 * HZ, |
165 | CMD_TIME_CLASS_B = 60 * HZ, | 166 | CMD_TIME_CLASS_B = 60 * HZ, |
166 | CMD_TIME_CLASS_C = 60 * HZ | 167 | CMD_TIME_CLASS_C = 60 * HZ, |
168 | CMD_TIME_CLASS_D = 60 * HZ | ||
167 | }; | 169 | }; |
168 | #endif | 170 | #endif |
169 | 171 | ||
@@ -598,7 +600,7 @@ int mthca_SYS_EN(struct mthca_dev *dev, u8 *status) | |||
598 | u64 out; | 600 | u64 out; |
599 | int ret; | 601 | int ret; |
600 | 602 | ||
601 | ret = mthca_cmd_imm(dev, 0, &out, 0, 0, CMD_SYS_EN, HZ, status); | 603 | ret = mthca_cmd_imm(dev, 0, &out, 0, 0, CMD_SYS_EN, CMD_TIME_CLASS_D, status); |
602 | 604 | ||
603 | if (*status == MTHCA_CMD_STAT_DDR_MEM_ERR) | 605 | if (*status == MTHCA_CMD_STAT_DDR_MEM_ERR) |
604 | mthca_warn(dev, "SYS_EN DDR error: syn=%x, sock=%d, " | 606 | mthca_warn(dev, "SYS_EN DDR error: syn=%x, sock=%d, " |
@@ -611,7 +613,7 @@ int mthca_SYS_EN(struct mthca_dev *dev, u8 *status) | |||
611 | 613 | ||
612 | int mthca_SYS_DIS(struct mthca_dev *dev, u8 *status) | 614 | int mthca_SYS_DIS(struct mthca_dev *dev, u8 *status) |
613 | { | 615 | { |
614 | return mthca_cmd(dev, 0, 0, 0, CMD_SYS_DIS, HZ, status); | 616 | return mthca_cmd(dev, 0, 0, 0, CMD_SYS_DIS, CMD_TIME_CLASS_C, status); |
615 | } | 617 | } |
616 | 618 | ||
617 | static int mthca_map_cmd(struct mthca_dev *dev, u16 op, struct mthca_icm *icm, | 619 | static int mthca_map_cmd(struct mthca_dev *dev, u16 op, struct mthca_icm *icm, |
@@ -1390,7 +1392,7 @@ int mthca_INIT_HCA(struct mthca_dev *dev, | |||
1390 | MTHCA_PUT(inbox, param->uarc_base, INIT_HCA_UAR_CTX_BASE_OFFSET); | 1392 | MTHCA_PUT(inbox, param->uarc_base, INIT_HCA_UAR_CTX_BASE_OFFSET); |
1391 | } | 1393 | } |
1392 | 1394 | ||
1393 | err = mthca_cmd(dev, mailbox->dma, 0, 0, CMD_INIT_HCA, HZ, status); | 1395 | err = mthca_cmd(dev, mailbox->dma, 0, 0, CMD_INIT_HCA, CMD_TIME_CLASS_D, status); |
1394 | 1396 | ||
1395 | mthca_free_mailbox(dev, mailbox); | 1397 | mthca_free_mailbox(dev, mailbox); |
1396 | return err; | 1398 | return err; |
@@ -1450,12 +1452,12 @@ int mthca_INIT_IB(struct mthca_dev *dev, | |||
1450 | 1452 | ||
1451 | int mthca_CLOSE_IB(struct mthca_dev *dev, int port, u8 *status) | 1453 | int mthca_CLOSE_IB(struct mthca_dev *dev, int port, u8 *status) |
1452 | { | 1454 | { |
1453 | return mthca_cmd(dev, 0, port, 0, CMD_CLOSE_IB, HZ, status); | 1455 | return mthca_cmd(dev, 0, port, 0, CMD_CLOSE_IB, CMD_TIME_CLASS_A, status); |
1454 | } | 1456 | } |
1455 | 1457 | ||
1456 | int mthca_CLOSE_HCA(struct mthca_dev *dev, int panic, u8 *status) | 1458 | int mthca_CLOSE_HCA(struct mthca_dev *dev, int panic, u8 *status) |
1457 | { | 1459 | { |
1458 | return mthca_cmd(dev, 0, 0, panic, CMD_CLOSE_HCA, HZ, status); | 1460 | return mthca_cmd(dev, 0, 0, panic, CMD_CLOSE_HCA, CMD_TIME_CLASS_C, status); |
1459 | } | 1461 | } |
1460 | 1462 | ||
1461 | int mthca_SET_IB(struct mthca_dev *dev, struct mthca_set_ib_param *param, | 1463 | int mthca_SET_IB(struct mthca_dev *dev, struct mthca_set_ib_param *param, |
diff --git a/drivers/infiniband/hw/nes/nes.h b/drivers/infiniband/hw/nes/nes.h index 17621de54a9f..bf1720f7f35f 100644 --- a/drivers/infiniband/hw/nes/nes.h +++ b/drivers/infiniband/hw/nes/nes.h | |||
@@ -56,10 +56,8 @@ | |||
56 | 56 | ||
57 | #define QUEUE_DISCONNECTS | 57 | #define QUEUE_DISCONNECTS |
58 | 58 | ||
59 | #define DRV_BUILD "1" | ||
60 | |||
61 | #define DRV_NAME "iw_nes" | 59 | #define DRV_NAME "iw_nes" |
62 | #define DRV_VERSION "1.0 KO Build " DRV_BUILD | 60 | #define DRV_VERSION "1.5.0.0" |
63 | #define PFX DRV_NAME ": " | 61 | #define PFX DRV_NAME ": " |
64 | 62 | ||
65 | /* | 63 | /* |
diff --git a/drivers/infiniband/hw/nes/nes_cm.c b/drivers/infiniband/hw/nes/nes_cm.c index dbd9a75474e3..11c7d6642014 100644 --- a/drivers/infiniband/hw/nes/nes_cm.c +++ b/drivers/infiniband/hw/nes/nes_cm.c | |||
@@ -56,6 +56,7 @@ | |||
56 | #include <net/neighbour.h> | 56 | #include <net/neighbour.h> |
57 | #include <net/route.h> | 57 | #include <net/route.h> |
58 | #include <net/ip_fib.h> | 58 | #include <net/ip_fib.h> |
59 | #include <net/tcp.h> | ||
59 | 60 | ||
60 | #include "nes.h" | 61 | #include "nes.h" |
61 | 62 | ||
@@ -540,6 +541,7 @@ static void nes_cm_timer_tick(unsigned long pass) | |||
540 | struct list_head *list_node; | 541 | struct list_head *list_node; |
541 | struct nes_cm_core *cm_core = g_cm_core; | 542 | struct nes_cm_core *cm_core = g_cm_core; |
542 | u32 settimer = 0; | 543 | u32 settimer = 0; |
544 | unsigned long timetosend; | ||
543 | int ret = NETDEV_TX_OK; | 545 | int ret = NETDEV_TX_OK; |
544 | 546 | ||
545 | struct list_head timer_list; | 547 | struct list_head timer_list; |
@@ -644,8 +646,11 @@ static void nes_cm_timer_tick(unsigned long pass) | |||
644 | send_entry->retrycount); | 646 | send_entry->retrycount); |
645 | if (send_entry->send_retrans) { | 647 | if (send_entry->send_retrans) { |
646 | send_entry->retranscount--; | 648 | send_entry->retranscount--; |
649 | timetosend = (NES_RETRY_TIMEOUT << | ||
650 | (NES_DEFAULT_RETRANS - send_entry->retranscount)); | ||
651 | |||
647 | send_entry->timetosend = jiffies + | 652 | send_entry->timetosend = jiffies + |
648 | NES_RETRY_TIMEOUT; | 653 | min(timetosend, NES_MAX_TIMEOUT); |
649 | if (nexttimeout > send_entry->timetosend || | 654 | if (nexttimeout > send_entry->timetosend || |
650 | !settimer) { | 655 | !settimer) { |
651 | nexttimeout = send_entry->timetosend; | 656 | nexttimeout = send_entry->timetosend; |
@@ -854,7 +859,6 @@ static struct nes_cm_listener *find_listener(struct nes_cm_core *cm_core, | |||
854 | { | 859 | { |
855 | unsigned long flags; | 860 | unsigned long flags; |
856 | struct nes_cm_listener *listen_node; | 861 | struct nes_cm_listener *listen_node; |
857 | __be32 tmp_addr = cpu_to_be32(dst_addr); | ||
858 | 862 | ||
859 | /* walk list and find cm_node associated with this session ID */ | 863 | /* walk list and find cm_node associated with this session ID */ |
860 | spin_lock_irqsave(&cm_core->listen_list_lock, flags); | 864 | spin_lock_irqsave(&cm_core->listen_list_lock, flags); |
@@ -871,9 +875,6 @@ static struct nes_cm_listener *find_listener(struct nes_cm_core *cm_core, | |||
871 | } | 875 | } |
872 | spin_unlock_irqrestore(&cm_core->listen_list_lock, flags); | 876 | spin_unlock_irqrestore(&cm_core->listen_list_lock, flags); |
873 | 877 | ||
874 | nes_debug(NES_DBG_CM, "Unable to find listener for %pI4:%x\n", | ||
875 | &tmp_addr, dst_port); | ||
876 | |||
877 | /* no listener */ | 878 | /* no listener */ |
878 | return NULL; | 879 | return NULL; |
879 | } | 880 | } |
@@ -1325,18 +1326,20 @@ static void handle_fin_pkt(struct nes_cm_node *cm_node) | |||
1325 | nes_debug(NES_DBG_CM, "Received FIN, cm_node = %p, state = %u. " | 1326 | nes_debug(NES_DBG_CM, "Received FIN, cm_node = %p, state = %u. " |
1326 | "refcnt=%d\n", cm_node, cm_node->state, | 1327 | "refcnt=%d\n", cm_node, cm_node->state, |
1327 | atomic_read(&cm_node->ref_count)); | 1328 | atomic_read(&cm_node->ref_count)); |
1328 | cm_node->tcp_cntxt.rcv_nxt++; | ||
1329 | cleanup_retrans_entry(cm_node); | ||
1330 | switch (cm_node->state) { | 1329 | switch (cm_node->state) { |
1331 | case NES_CM_STATE_SYN_RCVD: | 1330 | case NES_CM_STATE_SYN_RCVD: |
1332 | case NES_CM_STATE_SYN_SENT: | 1331 | case NES_CM_STATE_SYN_SENT: |
1333 | case NES_CM_STATE_ESTABLISHED: | 1332 | case NES_CM_STATE_ESTABLISHED: |
1334 | case NES_CM_STATE_MPAREQ_SENT: | 1333 | case NES_CM_STATE_MPAREQ_SENT: |
1335 | case NES_CM_STATE_MPAREJ_RCVD: | 1334 | case NES_CM_STATE_MPAREJ_RCVD: |
1335 | cm_node->tcp_cntxt.rcv_nxt++; | ||
1336 | cleanup_retrans_entry(cm_node); | ||
1336 | cm_node->state = NES_CM_STATE_LAST_ACK; | 1337 | cm_node->state = NES_CM_STATE_LAST_ACK; |
1337 | send_fin(cm_node, NULL); | 1338 | send_fin(cm_node, NULL); |
1338 | break; | 1339 | break; |
1339 | case NES_CM_STATE_FIN_WAIT1: | 1340 | case NES_CM_STATE_FIN_WAIT1: |
1341 | cm_node->tcp_cntxt.rcv_nxt++; | ||
1342 | cleanup_retrans_entry(cm_node); | ||
1340 | cm_node->state = NES_CM_STATE_CLOSING; | 1343 | cm_node->state = NES_CM_STATE_CLOSING; |
1341 | send_ack(cm_node, NULL); | 1344 | send_ack(cm_node, NULL); |
1342 | /* Wait for ACK as this is simultanous close.. | 1345 | /* Wait for ACK as this is simultanous close.. |
@@ -1344,11 +1347,15 @@ static void handle_fin_pkt(struct nes_cm_node *cm_node) | |||
1344 | * Just rm the node.. Done.. */ | 1347 | * Just rm the node.. Done.. */ |
1345 | break; | 1348 | break; |
1346 | case NES_CM_STATE_FIN_WAIT2: | 1349 | case NES_CM_STATE_FIN_WAIT2: |
1350 | cm_node->tcp_cntxt.rcv_nxt++; | ||
1351 | cleanup_retrans_entry(cm_node); | ||
1347 | cm_node->state = NES_CM_STATE_TIME_WAIT; | 1352 | cm_node->state = NES_CM_STATE_TIME_WAIT; |
1348 | send_ack(cm_node, NULL); | 1353 | send_ack(cm_node, NULL); |
1349 | schedule_nes_timer(cm_node, NULL, NES_TIMER_TYPE_CLOSE, 1, 0); | 1354 | schedule_nes_timer(cm_node, NULL, NES_TIMER_TYPE_CLOSE, 1, 0); |
1350 | break; | 1355 | break; |
1351 | case NES_CM_STATE_TIME_WAIT: | 1356 | case NES_CM_STATE_TIME_WAIT: |
1357 | cm_node->tcp_cntxt.rcv_nxt++; | ||
1358 | cleanup_retrans_entry(cm_node); | ||
1352 | cm_node->state = NES_CM_STATE_CLOSED; | 1359 | cm_node->state = NES_CM_STATE_CLOSED; |
1353 | rem_ref_cm_node(cm_node->cm_core, cm_node); | 1360 | rem_ref_cm_node(cm_node->cm_core, cm_node); |
1354 | break; | 1361 | break; |
@@ -1384,7 +1391,6 @@ static void handle_rst_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1384 | passive_state = atomic_add_return(1, &cm_node->passive_state); | 1391 | passive_state = atomic_add_return(1, &cm_node->passive_state); |
1385 | if (passive_state == NES_SEND_RESET_EVENT) | 1392 | if (passive_state == NES_SEND_RESET_EVENT) |
1386 | create_event(cm_node, NES_CM_EVENT_RESET); | 1393 | create_event(cm_node, NES_CM_EVENT_RESET); |
1387 | cleanup_retrans_entry(cm_node); | ||
1388 | cm_node->state = NES_CM_STATE_CLOSED; | 1394 | cm_node->state = NES_CM_STATE_CLOSED; |
1389 | dev_kfree_skb_any(skb); | 1395 | dev_kfree_skb_any(skb); |
1390 | break; | 1396 | break; |
@@ -1398,17 +1404,16 @@ static void handle_rst_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1398 | active_open_err(cm_node, skb, reset); | 1404 | active_open_err(cm_node, skb, reset); |
1399 | break; | 1405 | break; |
1400 | case NES_CM_STATE_CLOSED: | 1406 | case NES_CM_STATE_CLOSED: |
1401 | cleanup_retrans_entry(cm_node); | ||
1402 | drop_packet(skb); | 1407 | drop_packet(skb); |
1403 | break; | 1408 | break; |
1409 | case NES_CM_STATE_LAST_ACK: | ||
1410 | cm_node->cm_id->rem_ref(cm_node->cm_id); | ||
1404 | case NES_CM_STATE_TIME_WAIT: | 1411 | case NES_CM_STATE_TIME_WAIT: |
1405 | cleanup_retrans_entry(cm_node); | ||
1406 | cm_node->state = NES_CM_STATE_CLOSED; | 1412 | cm_node->state = NES_CM_STATE_CLOSED; |
1407 | rem_ref_cm_node(cm_node->cm_core, cm_node); | 1413 | rem_ref_cm_node(cm_node->cm_core, cm_node); |
1408 | drop_packet(skb); | 1414 | drop_packet(skb); |
1409 | break; | 1415 | break; |
1410 | case NES_CM_STATE_FIN_WAIT1: | 1416 | case NES_CM_STATE_FIN_WAIT1: |
1411 | cleanup_retrans_entry(cm_node); | ||
1412 | nes_debug(NES_DBG_CM, "Bad state %s[%u]\n", __func__, __LINE__); | 1417 | nes_debug(NES_DBG_CM, "Bad state %s[%u]\n", __func__, __LINE__); |
1413 | default: | 1418 | default: |
1414 | drop_packet(skb); | 1419 | drop_packet(skb); |
@@ -1455,6 +1460,7 @@ static void handle_rcv_mpa(struct nes_cm_node *cm_node, struct sk_buff *skb) | |||
1455 | NES_PASSIVE_STATE_INDICATED); | 1460 | NES_PASSIVE_STATE_INDICATED); |
1456 | break; | 1461 | break; |
1457 | case NES_CM_STATE_MPAREQ_SENT: | 1462 | case NES_CM_STATE_MPAREQ_SENT: |
1463 | cleanup_retrans_entry(cm_node); | ||
1458 | if (res_type == NES_MPA_REQUEST_REJECT) { | 1464 | if (res_type == NES_MPA_REQUEST_REJECT) { |
1459 | type = NES_CM_EVENT_MPA_REJECT; | 1465 | type = NES_CM_EVENT_MPA_REJECT; |
1460 | cm_node->state = NES_CM_STATE_MPAREJ_RCVD; | 1466 | cm_node->state = NES_CM_STATE_MPAREJ_RCVD; |
@@ -1518,7 +1524,7 @@ static int check_seq(struct nes_cm_node *cm_node, struct tcphdr *tcph, | |||
1518 | rcv_wnd = cm_node->tcp_cntxt.rcv_wnd; | 1524 | rcv_wnd = cm_node->tcp_cntxt.rcv_wnd; |
1519 | if (ack_seq != loc_seq_num) | 1525 | if (ack_seq != loc_seq_num) |
1520 | err = 1; | 1526 | err = 1; |
1521 | else if ((seq + rcv_wnd) < rcv_nxt) | 1527 | else if (!between(seq, rcv_nxt, (rcv_nxt+rcv_wnd))) |
1522 | err = 1; | 1528 | err = 1; |
1523 | if (err) { | 1529 | if (err) { |
1524 | nes_debug(NES_DBG_CM, "%s[%u] create abort for cm_node=%p " | 1530 | nes_debug(NES_DBG_CM, "%s[%u] create abort for cm_node=%p " |
@@ -1652,49 +1658,39 @@ static void handle_synack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1652 | } | 1658 | } |
1653 | } | 1659 | } |
1654 | 1660 | ||
1655 | static void handle_ack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | 1661 | static int handle_ack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, |
1656 | struct tcphdr *tcph) | 1662 | struct tcphdr *tcph) |
1657 | { | 1663 | { |
1658 | int datasize = 0; | 1664 | int datasize = 0; |
1659 | u32 inc_sequence; | 1665 | u32 inc_sequence; |
1660 | u32 rem_seq_ack; | 1666 | u32 rem_seq_ack; |
1661 | u32 rem_seq; | 1667 | u32 rem_seq; |
1662 | int ret; | 1668 | int ret = 0; |
1663 | int optionsize; | 1669 | int optionsize; |
1664 | optionsize = (tcph->doff << 2) - sizeof(struct tcphdr); | 1670 | optionsize = (tcph->doff << 2) - sizeof(struct tcphdr); |
1665 | 1671 | ||
1666 | if (check_seq(cm_node, tcph, skb)) | 1672 | if (check_seq(cm_node, tcph, skb)) |
1667 | return; | 1673 | return -EINVAL; |
1668 | 1674 | ||
1669 | skb_pull(skb, tcph->doff << 2); | 1675 | skb_pull(skb, tcph->doff << 2); |
1670 | inc_sequence = ntohl(tcph->seq); | 1676 | inc_sequence = ntohl(tcph->seq); |
1671 | rem_seq = ntohl(tcph->seq); | 1677 | rem_seq = ntohl(tcph->seq); |
1672 | rem_seq_ack = ntohl(tcph->ack_seq); | 1678 | rem_seq_ack = ntohl(tcph->ack_seq); |
1673 | datasize = skb->len; | 1679 | datasize = skb->len; |
1674 | cleanup_retrans_entry(cm_node); | ||
1675 | switch (cm_node->state) { | 1680 | switch (cm_node->state) { |
1676 | case NES_CM_STATE_SYN_RCVD: | 1681 | case NES_CM_STATE_SYN_RCVD: |
1677 | /* Passive OPEN */ | 1682 | /* Passive OPEN */ |
1683 | cleanup_retrans_entry(cm_node); | ||
1678 | ret = handle_tcp_options(cm_node, tcph, skb, optionsize, 1); | 1684 | ret = handle_tcp_options(cm_node, tcph, skb, optionsize, 1); |
1679 | if (ret) | 1685 | if (ret) |
1680 | break; | 1686 | break; |
1681 | cm_node->tcp_cntxt.rem_ack_num = ntohl(tcph->ack_seq); | 1687 | cm_node->tcp_cntxt.rem_ack_num = ntohl(tcph->ack_seq); |
1682 | if (cm_node->tcp_cntxt.rem_ack_num != | ||
1683 | cm_node->tcp_cntxt.loc_seq_num) { | ||
1684 | nes_debug(NES_DBG_CM, "rem_ack_num != loc_seq_num\n"); | ||
1685 | cleanup_retrans_entry(cm_node); | ||
1686 | send_reset(cm_node, skb); | ||
1687 | return; | ||
1688 | } | ||
1689 | cm_node->state = NES_CM_STATE_ESTABLISHED; | 1688 | cm_node->state = NES_CM_STATE_ESTABLISHED; |
1690 | cleanup_retrans_entry(cm_node); | ||
1691 | if (datasize) { | 1689 | if (datasize) { |
1692 | cm_node->tcp_cntxt.rcv_nxt = inc_sequence + datasize; | 1690 | cm_node->tcp_cntxt.rcv_nxt = inc_sequence + datasize; |
1693 | handle_rcv_mpa(cm_node, skb); | 1691 | handle_rcv_mpa(cm_node, skb); |
1694 | } else { /* rcvd ACK only */ | 1692 | } else /* rcvd ACK only */ |
1695 | dev_kfree_skb_any(skb); | 1693 | dev_kfree_skb_any(skb); |
1696 | cleanup_retrans_entry(cm_node); | ||
1697 | } | ||
1698 | break; | 1694 | break; |
1699 | case NES_CM_STATE_ESTABLISHED: | 1695 | case NES_CM_STATE_ESTABLISHED: |
1700 | /* Passive OPEN */ | 1696 | /* Passive OPEN */ |
@@ -1706,15 +1702,12 @@ static void handle_ack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1706 | drop_packet(skb); | 1702 | drop_packet(skb); |
1707 | break; | 1703 | break; |
1708 | case NES_CM_STATE_MPAREQ_SENT: | 1704 | case NES_CM_STATE_MPAREQ_SENT: |
1709 | cleanup_retrans_entry(cm_node); | ||
1710 | cm_node->tcp_cntxt.rem_ack_num = ntohl(tcph->ack_seq); | 1705 | cm_node->tcp_cntxt.rem_ack_num = ntohl(tcph->ack_seq); |
1711 | if (datasize) { | 1706 | if (datasize) { |
1712 | cm_node->tcp_cntxt.rcv_nxt = inc_sequence + datasize; | 1707 | cm_node->tcp_cntxt.rcv_nxt = inc_sequence + datasize; |
1713 | handle_rcv_mpa(cm_node, skb); | 1708 | handle_rcv_mpa(cm_node, skb); |
1714 | } else { /* Could be just an ack pkt.. */ | 1709 | } else /* Could be just an ack pkt.. */ |
1715 | cleanup_retrans_entry(cm_node); | ||
1716 | dev_kfree_skb_any(skb); | 1710 | dev_kfree_skb_any(skb); |
1717 | } | ||
1718 | break; | 1711 | break; |
1719 | case NES_CM_STATE_LISTENING: | 1712 | case NES_CM_STATE_LISTENING: |
1720 | case NES_CM_STATE_CLOSED: | 1713 | case NES_CM_STATE_CLOSED: |
@@ -1722,11 +1715,10 @@ static void handle_ack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1722 | send_reset(cm_node, skb); | 1715 | send_reset(cm_node, skb); |
1723 | break; | 1716 | break; |
1724 | case NES_CM_STATE_LAST_ACK: | 1717 | case NES_CM_STATE_LAST_ACK: |
1718 | case NES_CM_STATE_CLOSING: | ||
1725 | cleanup_retrans_entry(cm_node); | 1719 | cleanup_retrans_entry(cm_node); |
1726 | cm_node->state = NES_CM_STATE_CLOSED; | 1720 | cm_node->state = NES_CM_STATE_CLOSED; |
1727 | cm_node->cm_id->rem_ref(cm_node->cm_id); | 1721 | cm_node->cm_id->rem_ref(cm_node->cm_id); |
1728 | case NES_CM_STATE_CLOSING: | ||
1729 | cleanup_retrans_entry(cm_node); | ||
1730 | rem_ref_cm_node(cm_node->cm_core, cm_node); | 1722 | rem_ref_cm_node(cm_node->cm_core, cm_node); |
1731 | drop_packet(skb); | 1723 | drop_packet(skb); |
1732 | break; | 1724 | break; |
@@ -1741,9 +1733,11 @@ static void handle_ack_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1741 | case NES_CM_STATE_MPAREQ_RCVD: | 1733 | case NES_CM_STATE_MPAREQ_RCVD: |
1742 | case NES_CM_STATE_UNKNOWN: | 1734 | case NES_CM_STATE_UNKNOWN: |
1743 | default: | 1735 | default: |
1736 | cleanup_retrans_entry(cm_node); | ||
1744 | drop_packet(skb); | 1737 | drop_packet(skb); |
1745 | break; | 1738 | break; |
1746 | } | 1739 | } |
1740 | return ret; | ||
1747 | } | 1741 | } |
1748 | 1742 | ||
1749 | 1743 | ||
@@ -1849,6 +1843,7 @@ static void process_packet(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1849 | enum nes_tcpip_pkt_type pkt_type = NES_PKT_TYPE_UNKNOWN; | 1843 | enum nes_tcpip_pkt_type pkt_type = NES_PKT_TYPE_UNKNOWN; |
1850 | struct tcphdr *tcph = tcp_hdr(skb); | 1844 | struct tcphdr *tcph = tcp_hdr(skb); |
1851 | u32 fin_set = 0; | 1845 | u32 fin_set = 0; |
1846 | int ret = 0; | ||
1852 | skb_pull(skb, ip_hdr(skb)->ihl << 2); | 1847 | skb_pull(skb, ip_hdr(skb)->ihl << 2); |
1853 | 1848 | ||
1854 | nes_debug(NES_DBG_CM, "process_packet: cm_node=%p state =%d syn=%d " | 1849 | nes_debug(NES_DBG_CM, "process_packet: cm_node=%p state =%d syn=%d " |
@@ -1874,17 +1869,17 @@ static void process_packet(struct nes_cm_node *cm_node, struct sk_buff *skb, | |||
1874 | handle_synack_pkt(cm_node, skb, tcph); | 1869 | handle_synack_pkt(cm_node, skb, tcph); |
1875 | break; | 1870 | break; |
1876 | case NES_PKT_TYPE_ACK: | 1871 | case NES_PKT_TYPE_ACK: |
1877 | handle_ack_pkt(cm_node, skb, tcph); | 1872 | ret = handle_ack_pkt(cm_node, skb, tcph); |
1878 | if (fin_set) | 1873 | if (fin_set && !ret) |
1879 | handle_fin_pkt(cm_node); | 1874 | handle_fin_pkt(cm_node); |
1880 | break; | 1875 | break; |
1881 | case NES_PKT_TYPE_RST: | 1876 | case NES_PKT_TYPE_RST: |
1882 | handle_rst_pkt(cm_node, skb, tcph); | 1877 | handle_rst_pkt(cm_node, skb, tcph); |
1883 | break; | 1878 | break; |
1884 | default: | 1879 | default: |
1885 | drop_packet(skb); | 1880 | if ((fin_set) && (!check_seq(cm_node, tcph, skb))) |
1886 | if (fin_set) | ||
1887 | handle_fin_pkt(cm_node); | 1881 | handle_fin_pkt(cm_node); |
1882 | drop_packet(skb); | ||
1888 | break; | 1883 | break; |
1889 | } | 1884 | } |
1890 | } | 1885 | } |
@@ -2710,7 +2705,6 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
2710 | /* associate the node with the QP */ | 2705 | /* associate the node with the QP */ |
2711 | nesqp->cm_node = (void *)cm_node; | 2706 | nesqp->cm_node = (void *)cm_node; |
2712 | cm_node->nesqp = nesqp; | 2707 | cm_node->nesqp = nesqp; |
2713 | nes_add_ref(&nesqp->ibqp); | ||
2714 | 2708 | ||
2715 | nes_debug(NES_DBG_CM, "QP%u, cm_node=%p, jiffies = %lu listener = %p\n", | 2709 | nes_debug(NES_DBG_CM, "QP%u, cm_node=%p, jiffies = %lu listener = %p\n", |
2716 | nesqp->hwqp.qp_id, cm_node, jiffies, cm_node->listener); | 2710 | nesqp->hwqp.qp_id, cm_node, jiffies, cm_node->listener); |
@@ -2763,6 +2757,9 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
2763 | nes_debug(NES_DBG_CM, "Unable to register memory region" | 2757 | nes_debug(NES_DBG_CM, "Unable to register memory region" |
2764 | "for lSMM for cm_node = %p \n", | 2758 | "for lSMM for cm_node = %p \n", |
2765 | cm_node); | 2759 | cm_node); |
2760 | pci_free_consistent(nesdev->pcidev, | ||
2761 | nesqp->private_data_len+sizeof(struct ietf_mpa_frame), | ||
2762 | nesqp->ietf_frame, nesqp->ietf_frame_pbase); | ||
2766 | return -ENOMEM; | 2763 | return -ENOMEM; |
2767 | } | 2764 | } |
2768 | 2765 | ||
@@ -2879,6 +2876,7 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
2879 | 2876 | ||
2880 | /* notify OF layer that accept event was successful */ | 2877 | /* notify OF layer that accept event was successful */ |
2881 | cm_id->add_ref(cm_id); | 2878 | cm_id->add_ref(cm_id); |
2879 | nes_add_ref(&nesqp->ibqp); | ||
2882 | 2880 | ||
2883 | cm_event.event = IW_CM_EVENT_ESTABLISHED; | 2881 | cm_event.event = IW_CM_EVENT_ESTABLISHED; |
2884 | cm_event.status = IW_CM_EVENT_STATUS_ACCEPTED; | 2882 | cm_event.status = IW_CM_EVENT_STATUS_ACCEPTED; |
@@ -2959,6 +2957,7 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
2959 | struct nes_device *nesdev; | 2957 | struct nes_device *nesdev; |
2960 | struct nes_cm_node *cm_node; | 2958 | struct nes_cm_node *cm_node; |
2961 | struct nes_cm_info cm_info; | 2959 | struct nes_cm_info cm_info; |
2960 | int apbvt_set = 0; | ||
2962 | 2961 | ||
2963 | ibqp = nes_get_qp(cm_id->device, conn_param->qpn); | 2962 | ibqp = nes_get_qp(cm_id->device, conn_param->qpn); |
2964 | if (!ibqp) | 2963 | if (!ibqp) |
@@ -2996,9 +2995,11 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
2996 | conn_param->private_data_len); | 2995 | conn_param->private_data_len); |
2997 | 2996 | ||
2998 | if (cm_id->local_addr.sin_addr.s_addr != | 2997 | if (cm_id->local_addr.sin_addr.s_addr != |
2999 | cm_id->remote_addr.sin_addr.s_addr) | 2998 | cm_id->remote_addr.sin_addr.s_addr) { |
3000 | nes_manage_apbvt(nesvnic, ntohs(cm_id->local_addr.sin_port), | 2999 | nes_manage_apbvt(nesvnic, ntohs(cm_id->local_addr.sin_port), |
3001 | PCI_FUNC(nesdev->pcidev->devfn), NES_MANAGE_APBVT_ADD); | 3000 | PCI_FUNC(nesdev->pcidev->devfn), NES_MANAGE_APBVT_ADD); |
3001 | apbvt_set = 1; | ||
3002 | } | ||
3002 | 3003 | ||
3003 | /* set up the connection params for the node */ | 3004 | /* set up the connection params for the node */ |
3004 | cm_info.loc_addr = htonl(cm_id->local_addr.sin_addr.s_addr); | 3005 | cm_info.loc_addr = htonl(cm_id->local_addr.sin_addr.s_addr); |
@@ -3015,8 +3016,7 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
3015 | conn_param->private_data_len, (void *)conn_param->private_data, | 3016 | conn_param->private_data_len, (void *)conn_param->private_data, |
3016 | &cm_info); | 3017 | &cm_info); |
3017 | if (!cm_node) { | 3018 | if (!cm_node) { |
3018 | if (cm_id->local_addr.sin_addr.s_addr != | 3019 | if (apbvt_set) |
3019 | cm_id->remote_addr.sin_addr.s_addr) | ||
3020 | nes_manage_apbvt(nesvnic, ntohs(cm_id->local_addr.sin_port), | 3020 | nes_manage_apbvt(nesvnic, ntohs(cm_id->local_addr.sin_port), |
3021 | PCI_FUNC(nesdev->pcidev->devfn), | 3021 | PCI_FUNC(nesdev->pcidev->devfn), |
3022 | NES_MANAGE_APBVT_DEL); | 3022 | NES_MANAGE_APBVT_DEL); |
@@ -3025,7 +3025,7 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
3025 | return -ENOMEM; | 3025 | return -ENOMEM; |
3026 | } | 3026 | } |
3027 | 3027 | ||
3028 | cm_node->apbvt_set = 1; | 3028 | cm_node->apbvt_set = apbvt_set; |
3029 | nesqp->cm_node = cm_node; | 3029 | nesqp->cm_node = cm_node; |
3030 | cm_node->nesqp = nesqp; | 3030 | cm_node->nesqp = nesqp; |
3031 | nes_add_ref(&nesqp->ibqp); | 3031 | nes_add_ref(&nesqp->ibqp); |
diff --git a/drivers/infiniband/hw/nes/nes_cm.h b/drivers/infiniband/hw/nes/nes_cm.h index 80bba1892571..8b7e7c0e496e 100644 --- a/drivers/infiniband/hw/nes/nes_cm.h +++ b/drivers/infiniband/hw/nes/nes_cm.h | |||
@@ -149,6 +149,7 @@ struct nes_timer_entry { | |||
149 | #endif | 149 | #endif |
150 | #define NES_SHORT_TIME (10) | 150 | #define NES_SHORT_TIME (10) |
151 | #define NES_LONG_TIME (2000*HZ/1000) | 151 | #define NES_LONG_TIME (2000*HZ/1000) |
152 | #define NES_MAX_TIMEOUT ((unsigned long) (12*HZ)) | ||
152 | 153 | ||
153 | #define NES_CM_HASHTABLE_SIZE 1024 | 154 | #define NES_CM_HASHTABLE_SIZE 1024 |
154 | #define NES_CM_TCP_TIMER_INTERVAL 3000 | 155 | #define NES_CM_TCP_TIMER_INTERVAL 3000 |
diff --git a/drivers/infiniband/hw/nes/nes_hw.c b/drivers/infiniband/hw/nes/nes_hw.c index d6fc9ae44062..b832a7b814a2 100644 --- a/drivers/infiniband/hw/nes/nes_hw.c +++ b/drivers/infiniband/hw/nes/nes_hw.c | |||
@@ -550,11 +550,8 @@ struct nes_adapter *nes_init_adapter(struct nes_device *nesdev, u8 hw_rev) { | |||
550 | msleep(1); | 550 | msleep(1); |
551 | } | 551 | } |
552 | if (int_cnt > 1) { | 552 | if (int_cnt > 1) { |
553 | u32 sds; | ||
554 | spin_lock_irqsave(&nesadapter->phy_lock, flags); | 553 | spin_lock_irqsave(&nesadapter->phy_lock, flags); |
555 | sds = nes_read_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1); | 554 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, 0x0000F0C8); |
556 | sds |= 0x00000040; | ||
557 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, sds); | ||
558 | mh_detected++; | 555 | mh_detected++; |
559 | reset_value = nes_read32(nesdev->regs+NES_SOFTWARE_RESET); | 556 | reset_value = nes_read32(nesdev->regs+NES_SOFTWARE_RESET); |
560 | reset_value |= 0x0000003d; | 557 | reset_value |= 0x0000003d; |
@@ -579,7 +576,7 @@ struct nes_adapter *nes_init_adapter(struct nes_device *nesdev, u8 hw_rev) { | |||
579 | if (++ext_cnt > int_cnt) { | 576 | if (++ext_cnt > int_cnt) { |
580 | spin_lock_irqsave(&nesadapter->phy_lock, flags); | 577 | spin_lock_irqsave(&nesadapter->phy_lock, flags); |
581 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, | 578 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, |
582 | 0x0000F0C8); | 579 | 0x0000F088); |
583 | mh_detected++; | 580 | mh_detected++; |
584 | reset_value = nes_read32(nesdev->regs+NES_SOFTWARE_RESET); | 581 | reset_value = nes_read32(nesdev->regs+NES_SOFTWARE_RESET); |
585 | reset_value |= 0x0000003d; | 582 | reset_value |= 0x0000003d; |
@@ -764,6 +761,9 @@ static int nes_init_serdes(struct nes_device *nesdev, u8 hw_rev, u8 port_count, | |||
764 | return 0; | 761 | return 0; |
765 | 762 | ||
766 | /* init serdes 1 */ | 763 | /* init serdes 1 */ |
764 | if (!(OneG_Mode && (nesadapter->phy_type[1] != NES_PHY_TYPE_PUMA_1G))) | ||
765 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_CDR_CONTROL1, 0x000000FF); | ||
766 | |||
767 | switch (nesadapter->phy_type[1]) { | 767 | switch (nesadapter->phy_type[1]) { |
768 | case NES_PHY_TYPE_ARGUS: | 768 | case NES_PHY_TYPE_ARGUS: |
769 | case NES_PHY_TYPE_SFP_D: | 769 | case NES_PHY_TYPE_SFP_D: |
@@ -771,21 +771,20 @@ static int nes_init_serdes(struct nes_device *nesdev, u8 hw_rev, u8 port_count, | |||
771 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_TX_EMP1, 0x00000000); | 771 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_TX_EMP1, 0x00000000); |
772 | break; | 772 | break; |
773 | case NES_PHY_TYPE_CX4: | 773 | case NES_PHY_TYPE_CX4: |
774 | sds = nes_read_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1); | ||
775 | sds &= 0xFFFFFFBF; | ||
776 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, sds); | ||
777 | if (wide_ppm_offset) | 774 | if (wide_ppm_offset) |
778 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_CDR_CONTROL1, 0x000FFFAA); | 775 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_CDR_CONTROL1, 0x000FFFAA); |
779 | else | ||
780 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_CDR_CONTROL1, 0x000000FF); | ||
781 | break; | 776 | break; |
782 | case NES_PHY_TYPE_PUMA_1G: | 777 | case NES_PHY_TYPE_PUMA_1G: |
783 | sds = nes_read_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1); | 778 | sds = nes_read_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1); |
784 | sds |= 0x000000100; | 779 | sds |= 0x000000100; |
785 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, sds); | 780 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, sds); |
786 | } | 781 | } |
787 | if (!OneG_Mode) | 782 | if (!OneG_Mode) { |
788 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_TX_HIGHZ_LANE_MODE1, 0x11110000); | 783 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_TX_HIGHZ_LANE_MODE1, 0x11110000); |
784 | sds = nes_read_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1); | ||
785 | sds &= 0xFFFFFFBF; | ||
786 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL1, sds); | ||
787 | } | ||
789 | } else { | 788 | } else { |
790 | /* init serdes 0 */ | 789 | /* init serdes 0 */ |
791 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL0, 0x00000008); | 790 | nes_write_indexed(nesdev, NES_IDX_ETH_SERDES_COMMON_CONTROL0, 0x00000008); |
@@ -913,6 +912,12 @@ static void nes_init_csr_ne020(struct nes_device *nesdev, u8 hw_rev, u8 port_cou | |||
913 | u32temp &= 0x7fffffff; | 912 | u32temp &= 0x7fffffff; |
914 | u32temp |= 0x7fff0010; | 913 | u32temp |= 0x7fff0010; |
915 | nes_write_indexed(nesdev, 0x000021f8, u32temp); | 914 | nes_write_indexed(nesdev, 0x000021f8, u32temp); |
915 | if (port_count > 1) { | ||
916 | u32temp = nes_read_indexed(nesdev, 0x000023f8); | ||
917 | u32temp &= 0x7fffffff; | ||
918 | u32temp |= 0x7fff0010; | ||
919 | nes_write_indexed(nesdev, 0x000023f8, u32temp); | ||
920 | } | ||
916 | } | 921 | } |
917 | } | 922 | } |
918 | 923 | ||
@@ -1366,13 +1371,14 @@ int nes_init_phy(struct nes_device *nesdev) | |||
1366 | if (phy_type == NES_PHY_TYPE_ARGUS) { | 1371 | if (phy_type == NES_PHY_TYPE_ARGUS) { |
1367 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc302, 0x000C); | 1372 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc302, 0x000C); |
1368 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc319, 0x0008); | 1373 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc319, 0x0008); |
1374 | nes_write_10G_phy_reg(nesdev, phy_index, 0x3, 0x0027, 0x0001); | ||
1369 | } else { | 1375 | } else { |
1370 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc302, 0x0004); | 1376 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc302, 0x0004); |
1371 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc319, 0x0038); | 1377 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc319, 0x0038); |
1378 | nes_write_10G_phy_reg(nesdev, phy_index, 0x3, 0x0027, 0x0013); | ||
1372 | } | 1379 | } |
1373 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc31a, 0x0098); | 1380 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xc31a, 0x0098); |
1374 | nes_write_10G_phy_reg(nesdev, phy_index, 0x3, 0x0026, 0x0E00); | 1381 | nes_write_10G_phy_reg(nesdev, phy_index, 0x3, 0x0026, 0x0E00); |
1375 | nes_write_10G_phy_reg(nesdev, phy_index, 0x3, 0x0027, 0x0001); | ||
1376 | 1382 | ||
1377 | /* setup LEDs */ | 1383 | /* setup LEDs */ |
1378 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xd006, 0x0007); | 1384 | nes_write_10G_phy_reg(nesdev, phy_index, 0x1, 0xd006, 0x0007); |
diff --git a/drivers/infiniband/hw/nes/nes_verbs.c b/drivers/infiniband/hw/nes/nes_verbs.c index 7e5b5ba13a74..64d5cfd8f380 100644 --- a/drivers/infiniband/hw/nes/nes_verbs.c +++ b/drivers/infiniband/hw/nes/nes_verbs.c | |||
@@ -1627,6 +1627,7 @@ static struct ib_cq *nes_create_cq(struct ib_device *ibdev, int entries, | |||
1627 | nescq->hw_cq.cq_number = nes_ucontext->mcrqf & 0xffff; | 1627 | nescq->hw_cq.cq_number = nes_ucontext->mcrqf & 0xffff; |
1628 | else | 1628 | else |
1629 | nescq->hw_cq.cq_number = nesvnic->mcrq_qp_id + nes_ucontext->mcrqf-1; | 1629 | nescq->hw_cq.cq_number = nesvnic->mcrq_qp_id + nes_ucontext->mcrqf-1; |
1630 | nescq->mcrqf = nes_ucontext->mcrqf; | ||
1630 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); | 1631 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); |
1631 | } | 1632 | } |
1632 | nes_debug(NES_DBG_CQ, "CQ Virtual Address = %08lX, size = %u.\n", | 1633 | nes_debug(NES_DBG_CQ, "CQ Virtual Address = %08lX, size = %u.\n", |
@@ -1682,6 +1683,12 @@ static struct ib_cq *nes_create_cq(struct ib_device *ibdev, int entries, | |||
1682 | if (!context) | 1683 | if (!context) |
1683 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, | 1684 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, |
1684 | nescq->hw_cq.cq_pbase); | 1685 | nescq->hw_cq.cq_pbase); |
1686 | else { | ||
1687 | pci_free_consistent(nesdev->pcidev, nespbl->pbl_size, | ||
1688 | nespbl->pbl_vbase, nespbl->pbl_pbase); | ||
1689 | kfree(nespbl); | ||
1690 | } | ||
1691 | |||
1685 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); | 1692 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); |
1686 | kfree(nescq); | 1693 | kfree(nescq); |
1687 | return ERR_PTR(-ENOMEM); | 1694 | return ERR_PTR(-ENOMEM); |
@@ -1705,6 +1712,11 @@ static struct ib_cq *nes_create_cq(struct ib_device *ibdev, int entries, | |||
1705 | if (!context) | 1712 | if (!context) |
1706 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, | 1713 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, |
1707 | nescq->hw_cq.cq_pbase); | 1714 | nescq->hw_cq.cq_pbase); |
1715 | else { | ||
1716 | pci_free_consistent(nesdev->pcidev, nespbl->pbl_size, | ||
1717 | nespbl->pbl_vbase, nespbl->pbl_pbase); | ||
1718 | kfree(nespbl); | ||
1719 | } | ||
1708 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); | 1720 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); |
1709 | kfree(nescq); | 1721 | kfree(nescq); |
1710 | return ERR_PTR(-ENOMEM); | 1722 | return ERR_PTR(-ENOMEM); |
@@ -1722,6 +1734,11 @@ static struct ib_cq *nes_create_cq(struct ib_device *ibdev, int entries, | |||
1722 | if (!context) | 1734 | if (!context) |
1723 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, | 1735 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, |
1724 | nescq->hw_cq.cq_pbase); | 1736 | nescq->hw_cq.cq_pbase); |
1737 | else { | ||
1738 | pci_free_consistent(nesdev->pcidev, nespbl->pbl_size, | ||
1739 | nespbl->pbl_vbase, nespbl->pbl_pbase); | ||
1740 | kfree(nespbl); | ||
1741 | } | ||
1725 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); | 1742 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); |
1726 | kfree(nescq); | 1743 | kfree(nescq); |
1727 | return ERR_PTR(-ENOMEM); | 1744 | return ERR_PTR(-ENOMEM); |
@@ -1774,6 +1791,11 @@ static struct ib_cq *nes_create_cq(struct ib_device *ibdev, int entries, | |||
1774 | if (!context) | 1791 | if (!context) |
1775 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, | 1792 | pci_free_consistent(nesdev->pcidev, nescq->cq_mem_size, mem, |
1776 | nescq->hw_cq.cq_pbase); | 1793 | nescq->hw_cq.cq_pbase); |
1794 | else { | ||
1795 | pci_free_consistent(nesdev->pcidev, nespbl->pbl_size, | ||
1796 | nespbl->pbl_vbase, nespbl->pbl_pbase); | ||
1797 | kfree(nespbl); | ||
1798 | } | ||
1777 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); | 1799 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, cq_num); |
1778 | kfree(nescq); | 1800 | kfree(nescq); |
1779 | return ERR_PTR(-EIO); | 1801 | return ERR_PTR(-EIO); |
@@ -1855,7 +1877,9 @@ static int nes_destroy_cq(struct ib_cq *ib_cq) | |||
1855 | set_wqe_32bit_value(cqp_wqe->wqe_words, NES_CQP_WQE_OPCODE_IDX, opcode); | 1877 | set_wqe_32bit_value(cqp_wqe->wqe_words, NES_CQP_WQE_OPCODE_IDX, opcode); |
1856 | set_wqe_32bit_value(cqp_wqe->wqe_words, NES_CQP_WQE_ID_IDX, | 1878 | set_wqe_32bit_value(cqp_wqe->wqe_words, NES_CQP_WQE_ID_IDX, |
1857 | (nescq->hw_cq.cq_number | ((u32)PCI_FUNC(nesdev->pcidev->devfn) << 16))); | 1879 | (nescq->hw_cq.cq_number | ((u32)PCI_FUNC(nesdev->pcidev->devfn) << 16))); |
1858 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, nescq->hw_cq.cq_number); | 1880 | if (!nescq->mcrqf) |
1881 | nes_free_resource(nesadapter, nesadapter->allocated_cqs, nescq->hw_cq.cq_number); | ||
1882 | |||
1859 | atomic_set(&cqp_request->refcount, 2); | 1883 | atomic_set(&cqp_request->refcount, 2); |
1860 | nes_post_cqp_request(nesdev, cqp_request); | 1884 | nes_post_cqp_request(nesdev, cqp_request); |
1861 | 1885 | ||
@@ -1895,8 +1919,7 @@ static int nes_destroy_cq(struct ib_cq *ib_cq) | |||
1895 | static u32 root_256(struct nes_device *nesdev, | 1919 | static u32 root_256(struct nes_device *nesdev, |
1896 | struct nes_root_vpbl *root_vpbl, | 1920 | struct nes_root_vpbl *root_vpbl, |
1897 | struct nes_root_vpbl *new_root, | 1921 | struct nes_root_vpbl *new_root, |
1898 | u16 pbl_count_4k, | 1922 | u16 pbl_count_4k) |
1899 | u16 pbl_count_256) | ||
1900 | { | 1923 | { |
1901 | u64 leaf_pbl; | 1924 | u64 leaf_pbl; |
1902 | int i, j, k; | 1925 | int i, j, k; |
@@ -1952,7 +1975,7 @@ static int nes_reg_mr(struct nes_device *nesdev, struct nes_pd *nespd, | |||
1952 | int ret; | 1975 | int ret; |
1953 | struct nes_adapter *nesadapter = nesdev->nesadapter; | 1976 | struct nes_adapter *nesadapter = nesdev->nesadapter; |
1954 | uint pg_cnt = 0; | 1977 | uint pg_cnt = 0; |
1955 | u16 pbl_count_256; | 1978 | u16 pbl_count_256 = 0; |
1956 | u16 pbl_count = 0; | 1979 | u16 pbl_count = 0; |
1957 | u8 use_256_pbls = 0; | 1980 | u8 use_256_pbls = 0; |
1958 | u8 use_4k_pbls = 0; | 1981 | u8 use_4k_pbls = 0; |
@@ -2012,7 +2035,7 @@ static int nes_reg_mr(struct nes_device *nesdev, struct nes_pd *nespd, | |||
2012 | } | 2035 | } |
2013 | 2036 | ||
2014 | if (use_256_pbls && use_two_level) { | 2037 | if (use_256_pbls && use_two_level) { |
2015 | if (root_256(nesdev, root_vpbl, &new_root, pbl_count_4k, pbl_count_256) == 1) { | 2038 | if (root_256(nesdev, root_vpbl, &new_root, pbl_count_4k) == 1) { |
2016 | if (new_root.pbl_pbase != 0) | 2039 | if (new_root.pbl_pbase != 0) |
2017 | root_vpbl = &new_root; | 2040 | root_vpbl = &new_root; |
2018 | } else { | 2041 | } else { |
@@ -2122,6 +2145,7 @@ static struct ib_mr *nes_reg_phys_mr(struct ib_pd *ib_pd, | |||
2122 | struct nes_root_vpbl root_vpbl; | 2145 | struct nes_root_vpbl root_vpbl; |
2123 | u32 stag; | 2146 | u32 stag; |
2124 | u32 i; | 2147 | u32 i; |
2148 | unsigned long mask; | ||
2125 | u32 stag_index = 0; | 2149 | u32 stag_index = 0; |
2126 | u32 next_stag_index = 0; | 2150 | u32 next_stag_index = 0; |
2127 | u32 driver_key = 0; | 2151 | u32 driver_key = 0; |
@@ -2150,6 +2174,9 @@ static struct ib_mr *nes_reg_phys_mr(struct ib_pd *ib_pd, | |||
2150 | return ERR_PTR(-E2BIG); | 2174 | return ERR_PTR(-E2BIG); |
2151 | } | 2175 | } |
2152 | 2176 | ||
2177 | if ((buffer_list[0].addr ^ *iova_start) & ~PAGE_MASK) | ||
2178 | return ERR_PTR(-EINVAL); | ||
2179 | |||
2153 | err = nes_alloc_resource(nesadapter, nesadapter->allocated_mrs, nesadapter->max_mr, | 2180 | err = nes_alloc_resource(nesadapter, nesadapter->allocated_mrs, nesadapter->max_mr, |
2154 | &stag_index, &next_stag_index); | 2181 | &stag_index, &next_stag_index); |
2155 | if (err) { | 2182 | if (err) { |
@@ -2215,19 +2242,16 @@ static struct ib_mr *nes_reg_phys_mr(struct ib_pd *ib_pd, | |||
2215 | root_pbl_index++; | 2242 | root_pbl_index++; |
2216 | cur_pbl_index = 0; | 2243 | cur_pbl_index = 0; |
2217 | } | 2244 | } |
2218 | if (buffer_list[i].addr & ~PAGE_MASK) { | ||
2219 | /* TODO: Unwind allocated buffers */ | ||
2220 | nes_free_resource(nesadapter, nesadapter->allocated_mrs, stag_index); | ||
2221 | nes_debug(NES_DBG_MR, "Unaligned Memory Buffer: 0x%x\n", | ||
2222 | (unsigned int) buffer_list[i].addr); | ||
2223 | ibmr = ERR_PTR(-EINVAL); | ||
2224 | kfree(nesmr); | ||
2225 | goto reg_phys_err; | ||
2226 | } | ||
2227 | 2245 | ||
2228 | if (!buffer_list[i].size) { | 2246 | mask = !buffer_list[i].size; |
2247 | if (i != 0) | ||
2248 | mask |= buffer_list[i].addr; | ||
2249 | if (i != num_phys_buf - 1) | ||
2250 | mask |= buffer_list[i].addr + buffer_list[i].size; | ||
2251 | |||
2252 | if (mask & ~PAGE_MASK) { | ||
2229 | nes_free_resource(nesadapter, nesadapter->allocated_mrs, stag_index); | 2253 | nes_free_resource(nesadapter, nesadapter->allocated_mrs, stag_index); |
2230 | nes_debug(NES_DBG_MR, "Invalid Buffer Size\n"); | 2254 | nes_debug(NES_DBG_MR, "Invalid buffer addr or size\n"); |
2231 | ibmr = ERR_PTR(-EINVAL); | 2255 | ibmr = ERR_PTR(-EINVAL); |
2232 | kfree(nesmr); | 2256 | kfree(nesmr); |
2233 | goto reg_phys_err; | 2257 | goto reg_phys_err; |
@@ -2238,7 +2262,7 @@ static struct ib_mr *nes_reg_phys_mr(struct ib_pd *ib_pd, | |||
2238 | if ((buffer_list[i-1].addr+PAGE_SIZE) != buffer_list[i].addr) | 2262 | if ((buffer_list[i-1].addr+PAGE_SIZE) != buffer_list[i].addr) |
2239 | single_page = 0; | 2263 | single_page = 0; |
2240 | } | 2264 | } |
2241 | vpbl.pbl_vbase[cur_pbl_index].pa_low = cpu_to_le32((u32)buffer_list[i].addr); | 2265 | vpbl.pbl_vbase[cur_pbl_index].pa_low = cpu_to_le32((u32)buffer_list[i].addr & PAGE_MASK); |
2242 | vpbl.pbl_vbase[cur_pbl_index++].pa_high = | 2266 | vpbl.pbl_vbase[cur_pbl_index++].pa_high = |
2243 | cpu_to_le32((u32)((((u64)buffer_list[i].addr) >> 32))); | 2267 | cpu_to_le32((u32)((((u64)buffer_list[i].addr) >> 32))); |
2244 | } | 2268 | } |
@@ -2251,8 +2275,6 @@ static struct ib_mr *nes_reg_phys_mr(struct ib_pd *ib_pd, | |||
2251 | " length = 0x%016lX, index = 0x%08X\n", | 2275 | " length = 0x%016lX, index = 0x%08X\n", |
2252 | stag, (unsigned long)*iova_start, (unsigned long)region_length, stag_index); | 2276 | stag, (unsigned long)*iova_start, (unsigned long)region_length, stag_index); |
2253 | 2277 | ||
2254 | region_length -= (*iova_start)&PAGE_MASK; | ||
2255 | |||
2256 | /* Make the leaf PBL the root if only one PBL */ | 2278 | /* Make the leaf PBL the root if only one PBL */ |
2257 | if (root_pbl_index == 1) { | 2279 | if (root_pbl_index == 1) { |
2258 | root_vpbl.pbl_pbase = vpbl.pbl_pbase; | 2280 | root_vpbl.pbl_pbase = vpbl.pbl_pbase; |
@@ -2786,10 +2808,9 @@ static ssize_t show_fw_ver(struct device *dev, struct device_attribute *attr, | |||
2786 | struct nes_vnic *nesvnic = nesibdev->nesvnic; | 2808 | struct nes_vnic *nesvnic = nesibdev->nesvnic; |
2787 | 2809 | ||
2788 | nes_debug(NES_DBG_INIT, "\n"); | 2810 | nes_debug(NES_DBG_INIT, "\n"); |
2789 | return sprintf(buf, "%x.%x.%x\n", | 2811 | return sprintf(buf, "%u.%u\n", |
2790 | (int)(nesvnic->nesdev->nesadapter->fw_ver >> 32), | 2812 | (nesvnic->nesdev->nesadapter->firmware_version >> 16), |
2791 | (int)(nesvnic->nesdev->nesadapter->fw_ver >> 16) & 0xffff, | 2813 | (nesvnic->nesdev->nesadapter->firmware_version & 0x000000ff)); |
2792 | (int)(nesvnic->nesdev->nesadapter->fw_ver & 0xffff)); | ||
2793 | } | 2814 | } |
2794 | 2815 | ||
2795 | 2816 | ||
diff --git a/drivers/infiniband/hw/nes/nes_verbs.h b/drivers/infiniband/hw/nes/nes_verbs.h index 5e48f67fbe8d..41c07f29f7c9 100644 --- a/drivers/infiniband/hw/nes/nes_verbs.h +++ b/drivers/infiniband/hw/nes/nes_verbs.h | |||
@@ -112,6 +112,7 @@ struct nes_cq { | |||
112 | spinlock_t lock; | 112 | spinlock_t lock; |
113 | u8 virtual_cq; | 113 | u8 virtual_cq; |
114 | u8 pad[3]; | 114 | u8 pad[3]; |
115 | u32 mcrqf; | ||
115 | }; | 116 | }; |
116 | 117 | ||
117 | struct nes_wq { | 118 | struct nes_wq { |
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ib.c b/drivers/infiniband/ulp/ipoib/ipoib_ib.c index da6082739839..e7e5adf84e84 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_ib.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_ib.c | |||
@@ -685,7 +685,8 @@ int ipoib_ib_dev_open(struct net_device *dev) | |||
685 | queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, | 685 | queue_delayed_work(ipoib_workqueue, &priv->ah_reap_task, |
686 | round_jiffies_relative(HZ)); | 686 | round_jiffies_relative(HZ)); |
687 | 687 | ||
688 | set_bit(IPOIB_FLAG_INITIALIZED, &priv->flags); | 688 | if (!test_and_set_bit(IPOIB_FLAG_INITIALIZED, &priv->flags)) |
689 | napi_enable(&priv->napi); | ||
689 | 690 | ||
690 | return 0; | 691 | return 0; |
691 | } | 692 | } |
@@ -804,7 +805,8 @@ int ipoib_ib_dev_stop(struct net_device *dev, int flush) | |||
804 | struct ipoib_tx_buf *tx_req; | 805 | struct ipoib_tx_buf *tx_req; |
805 | int i; | 806 | int i; |
806 | 807 | ||
807 | clear_bit(IPOIB_FLAG_INITIALIZED, &priv->flags); | 808 | if (test_and_clear_bit(IPOIB_FLAG_INITIALIZED, &priv->flags)) |
809 | napi_disable(&priv->napi); | ||
808 | 810 | ||
809 | ipoib_cm_dev_stop(dev); | 811 | ipoib_cm_dev_stop(dev); |
810 | 812 | ||
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c index 421a6640c9bd..ab2c192c76bc 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c | |||
@@ -106,8 +106,7 @@ int ipoib_open(struct net_device *dev) | |||
106 | 106 | ||
107 | ipoib_dbg(priv, "bringing up interface\n"); | 107 | ipoib_dbg(priv, "bringing up interface\n"); |
108 | 108 | ||
109 | if (!test_and_set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags)) | 109 | set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags); |
110 | napi_enable(&priv->napi); | ||
111 | 110 | ||
112 | if (ipoib_pkey_dev_delay_open(dev)) | 111 | if (ipoib_pkey_dev_delay_open(dev)) |
113 | return 0; | 112 | return 0; |
@@ -143,7 +142,6 @@ err_stop: | |||
143 | ipoib_ib_dev_stop(dev, 1); | 142 | ipoib_ib_dev_stop(dev, 1); |
144 | 143 | ||
145 | err_disable: | 144 | err_disable: |
146 | napi_disable(&priv->napi); | ||
147 | clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags); | 145 | clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags); |
148 | 146 | ||
149 | return -EINVAL; | 147 | return -EINVAL; |
@@ -156,7 +154,6 @@ static int ipoib_stop(struct net_device *dev) | |||
156 | ipoib_dbg(priv, "stopping interface\n"); | 154 | ipoib_dbg(priv, "stopping interface\n"); |
157 | 155 | ||
158 | clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags); | 156 | clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags); |
159 | napi_disable(&priv->napi); | ||
160 | 157 | ||
161 | netif_stop_queue(dev); | 158 | netif_stop_queue(dev); |
162 | 159 | ||
diff --git a/drivers/input/mouse/maplemouse.c b/drivers/input/mouse/maplemouse.c index d196abfb68bc..5f278176eb9b 100644 --- a/drivers/input/mouse/maplemouse.c +++ b/drivers/input/mouse/maplemouse.c | |||
@@ -2,8 +2,8 @@ | |||
2 | * SEGA Dreamcast mouse driver | 2 | * SEGA Dreamcast mouse driver |
3 | * Based on drivers/usb/usbmouse.c | 3 | * Based on drivers/usb/usbmouse.c |
4 | * | 4 | * |
5 | * Copyright Yaegashi Takeshi, 2001 | 5 | * Copyright (c) Yaegashi Takeshi, 2001 |
6 | * Adrian McMenamin, 2008 | 6 | * Copyright (c) Adrian McMenamin, 2008 - 2009 |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <linux/kernel.h> | 9 | #include <linux/kernel.h> |
@@ -29,7 +29,7 @@ static void dc_mouse_callback(struct mapleq *mq) | |||
29 | struct maple_device *mapledev = mq->dev; | 29 | struct maple_device *mapledev = mq->dev; |
30 | struct dc_mouse *mse = maple_get_drvdata(mapledev); | 30 | struct dc_mouse *mse = maple_get_drvdata(mapledev); |
31 | struct input_dev *dev = mse->dev; | 31 | struct input_dev *dev = mse->dev; |
32 | unsigned char *res = mq->recvbuf; | 32 | unsigned char *res = mq->recvbuf->buf; |
33 | 33 | ||
34 | buttons = ~res[8]; | 34 | buttons = ~res[8]; |
35 | relx = *(unsigned short *)(res + 12) - 512; | 35 | relx = *(unsigned short *)(res + 12) - 512; |
@@ -47,7 +47,7 @@ static void dc_mouse_callback(struct mapleq *mq) | |||
47 | 47 | ||
48 | static int dc_mouse_open(struct input_dev *dev) | 48 | static int dc_mouse_open(struct input_dev *dev) |
49 | { | 49 | { |
50 | struct dc_mouse *mse = dev->dev.platform_data; | 50 | struct dc_mouse *mse = maple_get_drvdata(to_maple_dev(&dev->dev)); |
51 | 51 | ||
52 | maple_getcond_callback(mse->mdev, dc_mouse_callback, HZ/50, | 52 | maple_getcond_callback(mse->mdev, dc_mouse_callback, HZ/50, |
53 | MAPLE_FUNC_MOUSE); | 53 | MAPLE_FUNC_MOUSE); |
@@ -57,29 +57,33 @@ static int dc_mouse_open(struct input_dev *dev) | |||
57 | 57 | ||
58 | static void dc_mouse_close(struct input_dev *dev) | 58 | static void dc_mouse_close(struct input_dev *dev) |
59 | { | 59 | { |
60 | struct dc_mouse *mse = dev->dev.platform_data; | 60 | struct dc_mouse *mse = maple_get_drvdata(to_maple_dev(&dev->dev)); |
61 | 61 | ||
62 | maple_getcond_callback(mse->mdev, dc_mouse_callback, 0, | 62 | maple_getcond_callback(mse->mdev, dc_mouse_callback, 0, |
63 | MAPLE_FUNC_MOUSE); | 63 | MAPLE_FUNC_MOUSE); |
64 | } | 64 | } |
65 | 65 | ||
66 | 66 | /* allow the mouse to be used */ | |
67 | static int __devinit probe_maple_mouse(struct device *dev) | 67 | static int __devinit probe_maple_mouse(struct device *dev) |
68 | { | 68 | { |
69 | struct maple_device *mdev = to_maple_dev(dev); | 69 | struct maple_device *mdev = to_maple_dev(dev); |
70 | struct maple_driver *mdrv = to_maple_driver(dev->driver); | 70 | struct maple_driver *mdrv = to_maple_driver(dev->driver); |
71 | int error; | ||
71 | struct input_dev *input_dev; | 72 | struct input_dev *input_dev; |
72 | struct dc_mouse *mse; | 73 | struct dc_mouse *mse; |
73 | int error; | ||
74 | 74 | ||
75 | mse = kzalloc(sizeof(struct dc_mouse), GFP_KERNEL); | 75 | mse = kzalloc(sizeof(struct dc_mouse), GFP_KERNEL); |
76 | input_dev = input_allocate_device(); | 76 | if (!mse) { |
77 | |||
78 | if (!mse || !input_dev) { | ||
79 | error = -ENOMEM; | 77 | error = -ENOMEM; |
80 | goto fail; | 78 | goto fail; |
81 | } | 79 | } |
82 | 80 | ||
81 | input_dev = input_allocate_device(); | ||
82 | if (!input_dev) { | ||
83 | error = -ENOMEM; | ||
84 | goto fail_nomem; | ||
85 | } | ||
86 | |||
83 | mse->dev = input_dev; | 87 | mse->dev = input_dev; |
84 | mse->mdev = mdev; | 88 | mse->mdev = mdev; |
85 | 89 | ||
@@ -89,25 +93,24 @@ static int __devinit probe_maple_mouse(struct device *dev) | |||
89 | BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE); | 93 | BIT_MASK(BTN_RIGHT) | BIT_MASK(BTN_MIDDLE); |
90 | input_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y) | | 94 | input_dev->relbit[0] = BIT_MASK(REL_X) | BIT_MASK(REL_Y) | |
91 | BIT_MASK(REL_WHEEL); | 95 | BIT_MASK(REL_WHEEL); |
92 | input_dev->name = mdev->product_name; | ||
93 | input_dev->id.bustype = BUS_HOST; | ||
94 | input_dev->open = dc_mouse_open; | 96 | input_dev->open = dc_mouse_open; |
95 | input_dev->close = dc_mouse_close; | 97 | input_dev->close = dc_mouse_close; |
98 | input_dev->name = mdev->product_name; | ||
99 | input_dev->id.bustype = BUS_HOST; | ||
100 | error = input_register_device(input_dev); | ||
101 | if (error) | ||
102 | goto fail_register; | ||
96 | 103 | ||
97 | mdev->driver = mdrv; | 104 | mdev->driver = mdrv; |
98 | maple_set_drvdata(mdev, mse); | 105 | maple_set_drvdata(mdev, mse); |
99 | 106 | ||
100 | error = input_register_device(input_dev); | 107 | return error; |
101 | if (error) | ||
102 | goto fail; | ||
103 | |||
104 | return 0; | ||
105 | 108 | ||
106 | fail: | 109 | fail_register: |
107 | input_free_device(input_dev); | 110 | input_free_device(input_dev); |
108 | maple_set_drvdata(mdev, NULL); | 111 | fail_nomem: |
109 | kfree(mse); | 112 | kfree(mse); |
110 | mdev->driver = NULL; | 113 | fail: |
111 | return error; | 114 | return error; |
112 | } | 115 | } |
113 | 116 | ||
diff --git a/drivers/input/serio/hp_sdc.c b/drivers/input/serio/hp_sdc.c index bfe49243f38b..1c9410d1822c 100644 --- a/drivers/input/serio/hp_sdc.c +++ b/drivers/input/serio/hp_sdc.c | |||
@@ -819,6 +819,7 @@ static const struct parisc_device_id hp_sdc_tbl[] = { | |||
819 | MODULE_DEVICE_TABLE(parisc, hp_sdc_tbl); | 819 | MODULE_DEVICE_TABLE(parisc, hp_sdc_tbl); |
820 | 820 | ||
821 | static int __init hp_sdc_init_hppa(struct parisc_device *d); | 821 | static int __init hp_sdc_init_hppa(struct parisc_device *d); |
822 | static struct delayed_work moduleloader_work; | ||
822 | 823 | ||
823 | static struct parisc_driver hp_sdc_driver = { | 824 | static struct parisc_driver hp_sdc_driver = { |
824 | .name = "hp_sdc", | 825 | .name = "hp_sdc", |
@@ -930,8 +931,15 @@ static int __init hp_sdc_init(void) | |||
930 | 931 | ||
931 | #if defined(__hppa__) | 932 | #if defined(__hppa__) |
932 | 933 | ||
934 | static void request_module_delayed(struct work_struct *work) | ||
935 | { | ||
936 | request_module("hp_sdc_mlc"); | ||
937 | } | ||
938 | |||
933 | static int __init hp_sdc_init_hppa(struct parisc_device *d) | 939 | static int __init hp_sdc_init_hppa(struct parisc_device *d) |
934 | { | 940 | { |
941 | int ret; | ||
942 | |||
935 | if (!d) | 943 | if (!d) |
936 | return 1; | 944 | return 1; |
937 | if (hp_sdc.dev != NULL) | 945 | if (hp_sdc.dev != NULL) |
@@ -944,13 +952,26 @@ static int __init hp_sdc_init_hppa(struct parisc_device *d) | |||
944 | hp_sdc.data_io = d->hpa.start + 0x800; | 952 | hp_sdc.data_io = d->hpa.start + 0x800; |
945 | hp_sdc.status_io = d->hpa.start + 0x801; | 953 | hp_sdc.status_io = d->hpa.start + 0x801; |
946 | 954 | ||
947 | return hp_sdc_init(); | 955 | INIT_DELAYED_WORK(&moduleloader_work, request_module_delayed); |
956 | |||
957 | ret = hp_sdc_init(); | ||
958 | /* after sucessfull initialization give SDC some time to settle | ||
959 | * and then load the hp_sdc_mlc upper layer driver */ | ||
960 | if (!ret) | ||
961 | schedule_delayed_work(&moduleloader_work, | ||
962 | msecs_to_jiffies(2000)); | ||
963 | |||
964 | return ret; | ||
948 | } | 965 | } |
949 | 966 | ||
950 | #endif /* __hppa__ */ | 967 | #endif /* __hppa__ */ |
951 | 968 | ||
952 | static void hp_sdc_exit(void) | 969 | static void hp_sdc_exit(void) |
953 | { | 970 | { |
971 | /* do nothing if we don't have a SDC */ | ||
972 | if (!hp_sdc.dev) | ||
973 | return; | ||
974 | |||
954 | write_lock_irq(&hp_sdc.lock); | 975 | write_lock_irq(&hp_sdc.lock); |
955 | 976 | ||
956 | /* Turn off all maskable "sub-function" irq's. */ | 977 | /* Turn off all maskable "sub-function" irq's. */ |
@@ -969,6 +990,7 @@ static void hp_sdc_exit(void) | |||
969 | tasklet_kill(&hp_sdc.task); | 990 | tasklet_kill(&hp_sdc.task); |
970 | 991 | ||
971 | #if defined(__hppa__) | 992 | #if defined(__hppa__) |
993 | cancel_delayed_work_sync(&moduleloader_work); | ||
972 | if (unregister_parisc_driver(&hp_sdc_driver)) | 994 | if (unregister_parisc_driver(&hp_sdc_driver)) |
973 | printk(KERN_WARNING PREFIX "Error unregistering HP SDC"); | 995 | printk(KERN_WARNING PREFIX "Error unregistering HP SDC"); |
974 | #endif | 996 | #endif |
diff --git a/drivers/isdn/capi/kcapi.c b/drivers/isdn/capi/kcapi.c index 5360c4fd4739..f33170368cd1 100644 --- a/drivers/isdn/capi/kcapi.c +++ b/drivers/isdn/capi/kcapi.c | |||
@@ -270,6 +270,15 @@ static void recv_handler(struct work_struct *work) | |||
270 | mutex_unlock(&ap->recv_mtx); | 270 | mutex_unlock(&ap->recv_mtx); |
271 | } | 271 | } |
272 | 272 | ||
273 | /** | ||
274 | * capi_ctr_handle_message() - handle incoming CAPI message | ||
275 | * @card: controller descriptor structure. | ||
276 | * @appl: application ID. | ||
277 | * @skb: message. | ||
278 | * | ||
279 | * Called by hardware driver to pass a CAPI message to the application. | ||
280 | */ | ||
281 | |||
273 | void capi_ctr_handle_message(struct capi_ctr * card, u16 appl, struct sk_buff *skb) | 282 | void capi_ctr_handle_message(struct capi_ctr * card, u16 appl, struct sk_buff *skb) |
274 | { | 283 | { |
275 | struct capi20_appl *ap; | 284 | struct capi20_appl *ap; |
@@ -348,6 +357,13 @@ error: | |||
348 | 357 | ||
349 | EXPORT_SYMBOL(capi_ctr_handle_message); | 358 | EXPORT_SYMBOL(capi_ctr_handle_message); |
350 | 359 | ||
360 | /** | ||
361 | * capi_ctr_ready() - signal CAPI controller ready | ||
362 | * @card: controller descriptor structure. | ||
363 | * | ||
364 | * Called by hardware driver to signal that the controller is up and running. | ||
365 | */ | ||
366 | |||
351 | void capi_ctr_ready(struct capi_ctr * card) | 367 | void capi_ctr_ready(struct capi_ctr * card) |
352 | { | 368 | { |
353 | card->cardstate = CARD_RUNNING; | 369 | card->cardstate = CARD_RUNNING; |
@@ -360,6 +376,14 @@ void capi_ctr_ready(struct capi_ctr * card) | |||
360 | 376 | ||
361 | EXPORT_SYMBOL(capi_ctr_ready); | 377 | EXPORT_SYMBOL(capi_ctr_ready); |
362 | 378 | ||
379 | /** | ||
380 | * capi_ctr_reseted() - signal CAPI controller reset | ||
381 | * @card: controller descriptor structure. | ||
382 | * | ||
383 | * Called by hardware driver to signal that the controller is down and | ||
384 | * unavailable for use. | ||
385 | */ | ||
386 | |||
363 | void capi_ctr_reseted(struct capi_ctr * card) | 387 | void capi_ctr_reseted(struct capi_ctr * card) |
364 | { | 388 | { |
365 | u16 appl; | 389 | u16 appl; |
@@ -391,6 +415,13 @@ void capi_ctr_reseted(struct capi_ctr * card) | |||
391 | 415 | ||
392 | EXPORT_SYMBOL(capi_ctr_reseted); | 416 | EXPORT_SYMBOL(capi_ctr_reseted); |
393 | 417 | ||
418 | /** | ||
419 | * capi_ctr_suspend_output() - suspend controller | ||
420 | * @card: controller descriptor structure. | ||
421 | * | ||
422 | * Called by hardware driver to stop data flow. | ||
423 | */ | ||
424 | |||
394 | void capi_ctr_suspend_output(struct capi_ctr *card) | 425 | void capi_ctr_suspend_output(struct capi_ctr *card) |
395 | { | 426 | { |
396 | if (!card->blocked) { | 427 | if (!card->blocked) { |
@@ -401,6 +432,13 @@ void capi_ctr_suspend_output(struct capi_ctr *card) | |||
401 | 432 | ||
402 | EXPORT_SYMBOL(capi_ctr_suspend_output); | 433 | EXPORT_SYMBOL(capi_ctr_suspend_output); |
403 | 434 | ||
435 | /** | ||
436 | * capi_ctr_resume_output() - resume controller | ||
437 | * @card: controller descriptor structure. | ||
438 | * | ||
439 | * Called by hardware driver to resume data flow. | ||
440 | */ | ||
441 | |||
404 | void capi_ctr_resume_output(struct capi_ctr *card) | 442 | void capi_ctr_resume_output(struct capi_ctr *card) |
405 | { | 443 | { |
406 | if (card->blocked) { | 444 | if (card->blocked) { |
@@ -413,6 +451,14 @@ EXPORT_SYMBOL(capi_ctr_resume_output); | |||
413 | 451 | ||
414 | /* ------------------------------------------------------------- */ | 452 | /* ------------------------------------------------------------- */ |
415 | 453 | ||
454 | /** | ||
455 | * attach_capi_ctr() - register CAPI controller | ||
456 | * @card: controller descriptor structure. | ||
457 | * | ||
458 | * Called by hardware driver to register a controller with the CAPI subsystem. | ||
459 | * Return value: 0 on success, error code < 0 on error | ||
460 | */ | ||
461 | |||
416 | int | 462 | int |
417 | attach_capi_ctr(struct capi_ctr *card) | 463 | attach_capi_ctr(struct capi_ctr *card) |
418 | { | 464 | { |
@@ -459,6 +505,15 @@ attach_capi_ctr(struct capi_ctr *card) | |||
459 | 505 | ||
460 | EXPORT_SYMBOL(attach_capi_ctr); | 506 | EXPORT_SYMBOL(attach_capi_ctr); |
461 | 507 | ||
508 | /** | ||
509 | * detach_capi_ctr() - unregister CAPI controller | ||
510 | * @card: controller descriptor structure. | ||
511 | * | ||
512 | * Called by hardware driver to remove the registration of a controller | ||
513 | * with the CAPI subsystem. | ||
514 | * Return value: 0 on success, error code < 0 on error | ||
515 | */ | ||
516 | |||
462 | int detach_capi_ctr(struct capi_ctr *card) | 517 | int detach_capi_ctr(struct capi_ctr *card) |
463 | { | 518 | { |
464 | if (card->cardstate != CARD_DETECTED) | 519 | if (card->cardstate != CARD_DETECTED) |
@@ -479,6 +534,13 @@ int detach_capi_ctr(struct capi_ctr *card) | |||
479 | 534 | ||
480 | EXPORT_SYMBOL(detach_capi_ctr); | 535 | EXPORT_SYMBOL(detach_capi_ctr); |
481 | 536 | ||
537 | /** | ||
538 | * register_capi_driver() - register CAPI driver | ||
539 | * @driver: driver descriptor structure. | ||
540 | * | ||
541 | * Called by hardware driver to register itself with the CAPI subsystem. | ||
542 | */ | ||
543 | |||
482 | void register_capi_driver(struct capi_driver *driver) | 544 | void register_capi_driver(struct capi_driver *driver) |
483 | { | 545 | { |
484 | unsigned long flags; | 546 | unsigned long flags; |
@@ -490,6 +552,13 @@ void register_capi_driver(struct capi_driver *driver) | |||
490 | 552 | ||
491 | EXPORT_SYMBOL(register_capi_driver); | 553 | EXPORT_SYMBOL(register_capi_driver); |
492 | 554 | ||
555 | /** | ||
556 | * unregister_capi_driver() - unregister CAPI driver | ||
557 | * @driver: driver descriptor structure. | ||
558 | * | ||
559 | * Called by hardware driver to unregister itself from the CAPI subsystem. | ||
560 | */ | ||
561 | |||
493 | void unregister_capi_driver(struct capi_driver *driver) | 562 | void unregister_capi_driver(struct capi_driver *driver) |
494 | { | 563 | { |
495 | unsigned long flags; | 564 | unsigned long flags; |
@@ -505,6 +574,13 @@ EXPORT_SYMBOL(unregister_capi_driver); | |||
505 | /* -------- CAPI2.0 Interface ---------------------------------- */ | 574 | /* -------- CAPI2.0 Interface ---------------------------------- */ |
506 | /* ------------------------------------------------------------- */ | 575 | /* ------------------------------------------------------------- */ |
507 | 576 | ||
577 | /** | ||
578 | * capi20_isinstalled() - CAPI 2.0 operation CAPI_INSTALLED | ||
579 | * | ||
580 | * Return value: CAPI result code (CAPI_NOERROR if at least one ISDN controller | ||
581 | * is ready for use, CAPI_REGNOTINSTALLED otherwise) | ||
582 | */ | ||
583 | |||
508 | u16 capi20_isinstalled(void) | 584 | u16 capi20_isinstalled(void) |
509 | { | 585 | { |
510 | int i; | 586 | int i; |
@@ -517,6 +593,18 @@ u16 capi20_isinstalled(void) | |||
517 | 593 | ||
518 | EXPORT_SYMBOL(capi20_isinstalled); | 594 | EXPORT_SYMBOL(capi20_isinstalled); |
519 | 595 | ||
596 | /** | ||
597 | * capi20_register() - CAPI 2.0 operation CAPI_REGISTER | ||
598 | * @ap: CAPI application descriptor structure. | ||
599 | * | ||
600 | * Register an application's presence with CAPI. | ||
601 | * A unique application ID is assigned and stored in @ap->applid. | ||
602 | * After this function returns successfully, the message receive | ||
603 | * callback function @ap->recv_message() may be called at any time | ||
604 | * until capi20_release() has been called for the same @ap. | ||
605 | * Return value: CAPI result code | ||
606 | */ | ||
607 | |||
520 | u16 capi20_register(struct capi20_appl *ap) | 608 | u16 capi20_register(struct capi20_appl *ap) |
521 | { | 609 | { |
522 | int i; | 610 | int i; |
@@ -571,6 +659,16 @@ u16 capi20_register(struct capi20_appl *ap) | |||
571 | 659 | ||
572 | EXPORT_SYMBOL(capi20_register); | 660 | EXPORT_SYMBOL(capi20_register); |
573 | 661 | ||
662 | /** | ||
663 | * capi20_release() - CAPI 2.0 operation CAPI_RELEASE | ||
664 | * @ap: CAPI application descriptor structure. | ||
665 | * | ||
666 | * Terminate an application's registration with CAPI. | ||
667 | * After this function returns successfully, the message receive | ||
668 | * callback function @ap->recv_message() will no longer be called. | ||
669 | * Return value: CAPI result code | ||
670 | */ | ||
671 | |||
574 | u16 capi20_release(struct capi20_appl *ap) | 672 | u16 capi20_release(struct capi20_appl *ap) |
575 | { | 673 | { |
576 | int i; | 674 | int i; |
@@ -603,6 +701,15 @@ u16 capi20_release(struct capi20_appl *ap) | |||
603 | 701 | ||
604 | EXPORT_SYMBOL(capi20_release); | 702 | EXPORT_SYMBOL(capi20_release); |
605 | 703 | ||
704 | /** | ||
705 | * capi20_put_message() - CAPI 2.0 operation CAPI_PUT_MESSAGE | ||
706 | * @ap: CAPI application descriptor structure. | ||
707 | * @skb: CAPI message. | ||
708 | * | ||
709 | * Transfer a single message to CAPI. | ||
710 | * Return value: CAPI result code | ||
711 | */ | ||
712 | |||
606 | u16 capi20_put_message(struct capi20_appl *ap, struct sk_buff *skb) | 713 | u16 capi20_put_message(struct capi20_appl *ap, struct sk_buff *skb) |
607 | { | 714 | { |
608 | struct capi_ctr *card; | 715 | struct capi_ctr *card; |
@@ -668,6 +775,16 @@ u16 capi20_put_message(struct capi20_appl *ap, struct sk_buff *skb) | |||
668 | 775 | ||
669 | EXPORT_SYMBOL(capi20_put_message); | 776 | EXPORT_SYMBOL(capi20_put_message); |
670 | 777 | ||
778 | /** | ||
779 | * capi20_get_manufacturer() - CAPI 2.0 operation CAPI_GET_MANUFACTURER | ||
780 | * @contr: controller number. | ||
781 | * @buf: result buffer (64 bytes). | ||
782 | * | ||
783 | * Retrieve information about the manufacturer of the specified ISDN controller | ||
784 | * or (for @contr == 0) the driver itself. | ||
785 | * Return value: CAPI result code | ||
786 | */ | ||
787 | |||
671 | u16 capi20_get_manufacturer(u32 contr, u8 *buf) | 788 | u16 capi20_get_manufacturer(u32 contr, u8 *buf) |
672 | { | 789 | { |
673 | struct capi_ctr *card; | 790 | struct capi_ctr *card; |
@@ -685,6 +802,16 @@ u16 capi20_get_manufacturer(u32 contr, u8 *buf) | |||
685 | 802 | ||
686 | EXPORT_SYMBOL(capi20_get_manufacturer); | 803 | EXPORT_SYMBOL(capi20_get_manufacturer); |
687 | 804 | ||
805 | /** | ||
806 | * capi20_get_version() - CAPI 2.0 operation CAPI_GET_VERSION | ||
807 | * @contr: controller number. | ||
808 | * @verp: result structure. | ||
809 | * | ||
810 | * Retrieve version information for the specified ISDN controller | ||
811 | * or (for @contr == 0) the driver itself. | ||
812 | * Return value: CAPI result code | ||
813 | */ | ||
814 | |||
688 | u16 capi20_get_version(u32 contr, struct capi_version *verp) | 815 | u16 capi20_get_version(u32 contr, struct capi_version *verp) |
689 | { | 816 | { |
690 | struct capi_ctr *card; | 817 | struct capi_ctr *card; |
@@ -703,6 +830,16 @@ u16 capi20_get_version(u32 contr, struct capi_version *verp) | |||
703 | 830 | ||
704 | EXPORT_SYMBOL(capi20_get_version); | 831 | EXPORT_SYMBOL(capi20_get_version); |
705 | 832 | ||
833 | /** | ||
834 | * capi20_get_serial() - CAPI 2.0 operation CAPI_GET_SERIAL_NUMBER | ||
835 | * @contr: controller number. | ||
836 | * @serial: result buffer (8 bytes). | ||
837 | * | ||
838 | * Retrieve the serial number of the specified ISDN controller | ||
839 | * or (for @contr == 0) the driver itself. | ||
840 | * Return value: CAPI result code | ||
841 | */ | ||
842 | |||
706 | u16 capi20_get_serial(u32 contr, u8 *serial) | 843 | u16 capi20_get_serial(u32 contr, u8 *serial) |
707 | { | 844 | { |
708 | struct capi_ctr *card; | 845 | struct capi_ctr *card; |
@@ -721,6 +858,16 @@ u16 capi20_get_serial(u32 contr, u8 *serial) | |||
721 | 858 | ||
722 | EXPORT_SYMBOL(capi20_get_serial); | 859 | EXPORT_SYMBOL(capi20_get_serial); |
723 | 860 | ||
861 | /** | ||
862 | * capi20_get_profile() - CAPI 2.0 operation CAPI_GET_PROFILE | ||
863 | * @contr: controller number. | ||
864 | * @profp: result structure. | ||
865 | * | ||
866 | * Retrieve capability information for the specified ISDN controller | ||
867 | * or (for @contr == 0) the number of installed controllers. | ||
868 | * Return value: CAPI result code | ||
869 | */ | ||
870 | |||
724 | u16 capi20_get_profile(u32 contr, struct capi_profile *profp) | 871 | u16 capi20_get_profile(u32 contr, struct capi_profile *profp) |
725 | { | 872 | { |
726 | struct capi_ctr *card; | 873 | struct capi_ctr *card; |
@@ -903,6 +1050,15 @@ static int old_capi_manufacturer(unsigned int cmd, void __user *data) | |||
903 | } | 1050 | } |
904 | #endif | 1051 | #endif |
905 | 1052 | ||
1053 | /** | ||
1054 | * capi20_manufacturer() - CAPI 2.0 operation CAPI_MANUFACTURER | ||
1055 | * @cmd: command. | ||
1056 | * @data: parameter. | ||
1057 | * | ||
1058 | * Perform manufacturer specific command. | ||
1059 | * Return value: CAPI result code | ||
1060 | */ | ||
1061 | |||
906 | int capi20_manufacturer(unsigned int cmd, void __user *data) | 1062 | int capi20_manufacturer(unsigned int cmd, void __user *data) |
907 | { | 1063 | { |
908 | struct capi_ctr *card; | 1064 | struct capi_ctr *card; |
@@ -981,6 +1137,21 @@ int capi20_manufacturer(unsigned int cmd, void __user *data) | |||
981 | EXPORT_SYMBOL(capi20_manufacturer); | 1137 | EXPORT_SYMBOL(capi20_manufacturer); |
982 | 1138 | ||
983 | /* temporary hack */ | 1139 | /* temporary hack */ |
1140 | |||
1141 | /** | ||
1142 | * capi20_set_callback() - set CAPI application notification callback function | ||
1143 | * @ap: CAPI application descriptor structure. | ||
1144 | * @callback: callback function (NULL to remove). | ||
1145 | * | ||
1146 | * If not NULL, the callback function will be called to notify the | ||
1147 | * application of the addition or removal of a controller. | ||
1148 | * The first argument (cmd) will tell whether the controller was added | ||
1149 | * (KCI_CONTRUP) or removed (KCI_CONTRDOWN). | ||
1150 | * The second argument (contr) will be the controller number. | ||
1151 | * For cmd==KCI_CONTRUP the third argument (data) will be a pointer to the | ||
1152 | * new controller's capability profile structure. | ||
1153 | */ | ||
1154 | |||
984 | void capi20_set_callback(struct capi20_appl *ap, | 1155 | void capi20_set_callback(struct capi20_appl *ap, |
985 | void (*callback) (unsigned int cmd, __u32 contr, void *data)) | 1156 | void (*callback) (unsigned int cmd, __u32 contr, void *data)) |
986 | { | 1157 | { |
diff --git a/drivers/macintosh/Kconfig b/drivers/macintosh/Kconfig index 173cf55c64d0..3d906833948d 100644 --- a/drivers/macintosh/Kconfig +++ b/drivers/macintosh/Kconfig | |||
@@ -123,7 +123,7 @@ config PMAC_APM_EMU | |||
123 | 123 | ||
124 | config PMAC_MEDIABAY | 124 | config PMAC_MEDIABAY |
125 | bool "Support PowerBook hotswap media bay" | 125 | bool "Support PowerBook hotswap media bay" |
126 | depends on PPC_PMAC && PPC32 | 126 | depends on PPC_PMAC && PPC32 && BLOCK |
127 | help | 127 | help |
128 | This option adds support for older PowerBook's hotswap media bay | 128 | This option adds support for older PowerBook's hotswap media bay |
129 | that can contains batteries, floppy drives, or IDE devices. PCI | 129 | that can contains batteries, floppy drives, or IDE devices. PCI |
diff --git a/drivers/macintosh/mediabay.c b/drivers/macintosh/mediabay.c index d7e46d345d9e..029ad8ce8a7e 100644 --- a/drivers/macintosh/mediabay.c +++ b/drivers/macintosh/mediabay.c | |||
@@ -18,7 +18,6 @@ | |||
18 | #include <linux/timer.h> | 18 | #include <linux/timer.h> |
19 | #include <linux/stddef.h> | 19 | #include <linux/stddef.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/ide.h> | ||
22 | #include <linux/kthread.h> | 21 | #include <linux/kthread.h> |
23 | #include <linux/mutex.h> | 22 | #include <linux/mutex.h> |
24 | #include <asm/prom.h> | 23 | #include <asm/prom.h> |
@@ -447,6 +446,7 @@ int check_media_bay_by_base(unsigned long base, int what) | |||
447 | 446 | ||
448 | return -ENODEV; | 447 | return -ENODEV; |
449 | } | 448 | } |
449 | EXPORT_SYMBOL_GPL(check_media_bay_by_base); | ||
450 | 450 | ||
451 | int media_bay_set_ide_infos(struct device_node* which_bay, unsigned long base, | 451 | int media_bay_set_ide_infos(struct device_node* which_bay, unsigned long base, |
452 | int irq, ide_hwif_t *hwif) | 452 | int irq, ide_hwif_t *hwif) |
@@ -486,6 +486,7 @@ int media_bay_set_ide_infos(struct device_node* which_bay, unsigned long base, | |||
486 | 486 | ||
487 | return -ENODEV; | 487 | return -ENODEV; |
488 | } | 488 | } |
489 | EXPORT_SYMBOL_GPL(media_bay_set_ide_infos); | ||
489 | #endif /* CONFIG_BLK_DEV_IDE_PMAC */ | 490 | #endif /* CONFIG_BLK_DEV_IDE_PMAC */ |
490 | 491 | ||
491 | static void media_bay_step(int i) | 492 | static void media_bay_step(int i) |
diff --git a/drivers/media/radio/radio-si470x.c b/drivers/media/radio/radio-si470x.c index 92c297796a9f..bd945d04dc90 100644 --- a/drivers/media/radio/radio-si470x.c +++ b/drivers/media/radio/radio-si470x.c | |||
@@ -1200,7 +1200,7 @@ static int si470x_fops_release(struct file *file) | |||
1200 | video_unregister_device(radio->videodev); | 1200 | video_unregister_device(radio->videodev); |
1201 | kfree(radio->buffer); | 1201 | kfree(radio->buffer); |
1202 | kfree(radio); | 1202 | kfree(radio); |
1203 | goto unlock; | 1203 | goto done; |
1204 | } | 1204 | } |
1205 | 1205 | ||
1206 | /* stop rds reception */ | 1206 | /* stop rds reception */ |
diff --git a/drivers/media/video/au0828/au0828-core.c b/drivers/media/video/au0828/au0828-core.c index 4cee0b92eeee..a1e4c0d769a6 100644 --- a/drivers/media/video/au0828/au0828-core.c +++ b/drivers/media/video/au0828/au0828-core.c | |||
@@ -192,8 +192,6 @@ static int au0828_usb_probe(struct usb_interface *interface, | |||
192 | dev->usbdev = usbdev; | 192 | dev->usbdev = usbdev; |
193 | dev->boardnr = id->driver_info; | 193 | dev->boardnr = id->driver_info; |
194 | 194 | ||
195 | usb_set_intfdata(interface, dev); | ||
196 | |||
197 | /* Create the v4l2_device */ | 195 | /* Create the v4l2_device */ |
198 | retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev); | 196 | retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev); |
199 | if (retval) { | 197 | if (retval) { |
@@ -222,6 +220,10 @@ static int au0828_usb_probe(struct usb_interface *interface, | |||
222 | /* Digital TV */ | 220 | /* Digital TV */ |
223 | au0828_dvb_register(dev); | 221 | au0828_dvb_register(dev); |
224 | 222 | ||
223 | /* Store the pointer to the au0828_dev so it can be accessed in | ||
224 | au0828_usb_disconnect */ | ||
225 | usb_set_intfdata(interface, dev); | ||
226 | |||
225 | printk(KERN_INFO "Registered device AU0828 [%s]\n", | 227 | printk(KERN_INFO "Registered device AU0828 [%s]\n", |
226 | dev->board.name == NULL ? "Unset" : dev->board.name); | 228 | dev->board.name == NULL ? "Unset" : dev->board.name); |
227 | 229 | ||
diff --git a/drivers/media/video/cx18/cx18-audio.c b/drivers/media/video/cx18/cx18-audio.c index 1519e91c677a..7a8ad5963de8 100644 --- a/drivers/media/video/cx18/cx18-audio.c +++ b/drivers/media/video/cx18/cx18-audio.c | |||
@@ -44,7 +44,7 @@ int cx18_audio_set_io(struct cx18 *cx) | |||
44 | 44 | ||
45 | /* handle muxer chips */ | 45 | /* handle muxer chips */ |
46 | v4l2_subdev_call(cx->sd_extmux, audio, s_routing, | 46 | v4l2_subdev_call(cx->sd_extmux, audio, s_routing, |
47 | in->audio_input, 0, 0); | 47 | (u32) in->muxer_input, 0, 0); |
48 | 48 | ||
49 | err = cx18_call_hw_err(cx, cx->card->hw_audio_ctrl, | 49 | err = cx18_call_hw_err(cx, cx->card->hw_audio_ctrl, |
50 | audio, s_routing, in->audio_input, 0, 0); | 50 | audio, s_routing, in->audio_input, 0, 0); |
diff --git a/drivers/media/video/cx18/cx18-i2c.c b/drivers/media/video/cx18/cx18-i2c.c index b9b7064a2be8..8591e4fc359f 100644 --- a/drivers/media/video/cx18/cx18-i2c.c +++ b/drivers/media/video/cx18/cx18-i2c.c | |||
@@ -211,7 +211,7 @@ static struct i2c_algo_bit_data cx18_i2c_algo_template = { | |||
211 | /* init + register i2c algo-bit adapter */ | 211 | /* init + register i2c algo-bit adapter */ |
212 | int init_cx18_i2c(struct cx18 *cx) | 212 | int init_cx18_i2c(struct cx18 *cx) |
213 | { | 213 | { |
214 | int i; | 214 | int i, err; |
215 | CX18_DEBUG_I2C("i2c init\n"); | 215 | CX18_DEBUG_I2C("i2c init\n"); |
216 | 216 | ||
217 | for (i = 0; i < 2; i++) { | 217 | for (i = 0; i < 2; i++) { |
@@ -268,8 +268,18 @@ int init_cx18_i2c(struct cx18 *cx) | |||
268 | cx18_call_hw(cx, CX18_HW_GPIO_RESET_CTRL, | 268 | cx18_call_hw(cx, CX18_HW_GPIO_RESET_CTRL, |
269 | core, reset, (u32) CX18_GPIO_RESET_I2C); | 269 | core, reset, (u32) CX18_GPIO_RESET_I2C); |
270 | 270 | ||
271 | return i2c_bit_add_bus(&cx->i2c_adap[0]) || | 271 | err = i2c_bit_add_bus(&cx->i2c_adap[0]); |
272 | i2c_bit_add_bus(&cx->i2c_adap[1]); | 272 | if (err) |
273 | goto err; | ||
274 | err = i2c_bit_add_bus(&cx->i2c_adap[1]); | ||
275 | if (err) | ||
276 | goto err_del_bus_0; | ||
277 | return 0; | ||
278 | |||
279 | err_del_bus_0: | ||
280 | i2c_del_adapter(&cx->i2c_adap[0]); | ||
281 | err: | ||
282 | return err; | ||
273 | } | 283 | } |
274 | 284 | ||
275 | void exit_cx18_i2c(struct cx18 *cx) | 285 | void exit_cx18_i2c(struct cx18 *cx) |
diff --git a/drivers/media/video/cx231xx/Kconfig b/drivers/media/video/cx231xx/Kconfig index 91156546a07a..477d4ab5e9ac 100644 --- a/drivers/media/video/cx231xx/Kconfig +++ b/drivers/media/video/cx231xx/Kconfig | |||
@@ -1,12 +1,11 @@ | |||
1 | config VIDEO_CX231XX | 1 | config VIDEO_CX231XX |
2 | tristate "Conexant cx231xx USB video capture support" | 2 | tristate "Conexant cx231xx USB video capture support" |
3 | depends on VIDEO_DEV && I2C && INPUT | 3 | depends on VIDEO_DEV && I2C && INPUT |
4 | select VIDEO_TUNER | 4 | select VIDEO_TUNER |
5 | select VIDEO_TVEEPROM | 5 | select VIDEO_TVEEPROM |
6 | select VIDEO_IR | 6 | select VIDEO_IR |
7 | select VIDEOBUF_VMALLOC | 7 | select VIDEOBUF_VMALLOC |
8 | select VIDEO_CX25840 | 8 | select VIDEO_CX25840 |
9 | select VIDEO_CX231XX_ALSA | ||
10 | 9 | ||
11 | ---help--- | 10 | ---help--- |
12 | This is a video4linux driver for Conexant 231xx USB based TV cards. | 11 | This is a video4linux driver for Conexant 231xx USB based TV cards. |
@@ -15,21 +14,22 @@ config VIDEO_CX231XX | |||
15 | module will be called cx231xx | 14 | module will be called cx231xx |
16 | 15 | ||
17 | config VIDEO_CX231XX_ALSA | 16 | config VIDEO_CX231XX_ALSA |
18 | tristate "Conexant Cx231xx ALSA audio module" | 17 | tristate "Conexant Cx231xx ALSA audio module" |
19 | depends on VIDEO_CX231XX && SND | 18 | depends on VIDEO_CX231XX && SND |
20 | select SND_PCM | 19 | select SND_PCM |
21 | 20 | ||
22 | ---help--- | 21 | ---help--- |
23 | This is an ALSA driver for Cx231xx USB based TV cards. | 22 | This is an ALSA driver for Cx231xx USB based TV cards. |
24 | 23 | ||
25 | To compile this driver as a module, choose M here: the | 24 | To compile this driver as a module, choose M here: the |
26 | module will be called cx231xx-alsa | 25 | module will be called cx231xx-alsa |
27 | 26 | ||
28 | config VIDEO_CX231XX_DVB | 27 | config VIDEO_CX231XX_DVB |
29 | tristate "DVB/ATSC Support for Cx231xx based TV cards" | 28 | tristate "DVB/ATSC Support for Cx231xx based TV cards" |
30 | depends on VIDEO_CX231XX && DVB_CORE | 29 | depends on VIDEO_CX231XX && DVB_CORE |
31 | select VIDEOBUF_DVB | 30 | select VIDEOBUF_DVB |
32 | select MEDIA_TUNER_XC5000 if !DVB_FE_CUSTOMISE | 31 | select MEDIA_TUNER_XC5000 if !DVB_FE_CUSTOMISE |
33 | ---help--- | 32 | |
34 | This adds support for DVB cards based on the | 33 | ---help--- |
35 | Conexant cx231xx chips. | 34 | This adds support for DVB cards based on the |
35 | Conexant cx231xx chips. | ||
diff --git a/drivers/media/video/cx23885/cx23885-cards.c b/drivers/media/video/cx23885/cx23885-cards.c index a3c0565be1a9..6d6293f7d428 100644 --- a/drivers/media/video/cx23885/cx23885-cards.c +++ b/drivers/media/video/cx23885/cx23885-cards.c | |||
@@ -441,9 +441,9 @@ int cx23885_tuner_callback(void *priv, int component, int command, int arg) | |||
441 | case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: | 441 | case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: |
442 | /* Two identical tuners on two different i2c buses, | 442 | /* Two identical tuners on two different i2c buses, |
443 | * we need to reset the correct gpio. */ | 443 | * we need to reset the correct gpio. */ |
444 | if (port->nr == 0) | 444 | if (port->nr == 1) |
445 | bitmask = 0x01; | 445 | bitmask = 0x01; |
446 | else if (port->nr == 1) | 446 | else if (port->nr == 2) |
447 | bitmask = 0x04; | 447 | bitmask = 0x04; |
448 | break; | 448 | break; |
449 | } | 449 | } |
diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c index f48454ab3900..0c49a98213c4 100644 --- a/drivers/media/video/cx23885/cx23885-dvb.c +++ b/drivers/media/video/cx23885/cx23885-dvb.c | |||
@@ -314,6 +314,7 @@ static struct zl10353_config dvico_fusionhdtv_xc3028 = { | |||
314 | .demod_address = 0x0f, | 314 | .demod_address = 0x0f, |
315 | .if2 = 45600, | 315 | .if2 = 45600, |
316 | .no_tuner = 1, | 316 | .no_tuner = 1, |
317 | .disable_i2c_gate_ctrl = 1, | ||
317 | }; | 318 | }; |
318 | 319 | ||
319 | static struct stv0900_config netup_stv0900_config = { | 320 | static struct stv0900_config netup_stv0900_config = { |
diff --git a/drivers/media/video/mx3_camera.c b/drivers/media/video/mx3_camera.c index c462b811e994..2d0781118eb0 100644 --- a/drivers/media/video/mx3_camera.c +++ b/drivers/media/video/mx3_camera.c | |||
@@ -1063,10 +1063,6 @@ static struct soc_camera_host_ops mx3_soc_camera_host_ops = { | |||
1063 | .owner = THIS_MODULE, | 1063 | .owner = THIS_MODULE, |
1064 | .add = mx3_camera_add_device, | 1064 | .add = mx3_camera_add_device, |
1065 | .remove = mx3_camera_remove_device, | 1065 | .remove = mx3_camera_remove_device, |
1066 | #ifdef CONFIG_PM | ||
1067 | .suspend = mx3_camera_suspend, | ||
1068 | .resume = mx3_camera_resume, | ||
1069 | #endif | ||
1070 | .set_crop = mx3_camera_set_crop, | 1066 | .set_crop = mx3_camera_set_crop, |
1071 | .set_fmt = mx3_camera_set_fmt, | 1067 | .set_fmt = mx3_camera_set_fmt, |
1072 | .try_fmt = mx3_camera_try_fmt, | 1068 | .try_fmt = mx3_camera_try_fmt, |
diff --git a/drivers/media/video/pwc/pwc-ctrl.c b/drivers/media/video/pwc/pwc-ctrl.c index f9fbe02e0f69..50b415e07eda 100644 --- a/drivers/media/video/pwc/pwc-ctrl.c +++ b/drivers/media/video/pwc/pwc-ctrl.c | |||
@@ -159,35 +159,67 @@ static void pwc_set_image_buffer_size(struct pwc_device *pdev); | |||
159 | 159 | ||
160 | /****************************************************************************/ | 160 | /****************************************************************************/ |
161 | 161 | ||
162 | static int _send_control_msg(struct pwc_device *pdev, | ||
163 | u8 request, u16 value, int index, void *buf, int buflen, int timeout) | ||
164 | { | ||
165 | int rc; | ||
166 | void *kbuf = NULL; | ||
167 | |||
168 | if (buflen) { | ||
169 | kbuf = kmalloc(buflen, GFP_KERNEL); /* not allowed on stack */ | ||
170 | if (kbuf == NULL) | ||
171 | return -ENOMEM; | ||
172 | memcpy(kbuf, buf, buflen); | ||
173 | } | ||
162 | 174 | ||
163 | #define SendControlMsg(request, value, buflen) \ | 175 | rc = usb_control_msg(pdev->udev, usb_sndctrlpipe(pdev->udev, 0), |
164 | usb_control_msg(pdev->udev, usb_sndctrlpipe(pdev->udev, 0), \ | 176 | request, |
165 | request, \ | 177 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, |
166 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, \ | 178 | value, |
167 | value, \ | 179 | index, |
168 | pdev->vcinterface, \ | 180 | kbuf, buflen, timeout); |
169 | &buf, buflen, 500) | ||
170 | 181 | ||
171 | #define RecvControlMsg(request, value, buflen) \ | 182 | kfree(kbuf); |
172 | usb_control_msg(pdev->udev, usb_rcvctrlpipe(pdev->udev, 0), \ | 183 | return rc; |
173 | request, \ | 184 | } |
174 | USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, \ | ||
175 | value, \ | ||
176 | pdev->vcinterface, \ | ||
177 | &buf, buflen, 500) | ||
178 | 185 | ||
186 | static int recv_control_msg(struct pwc_device *pdev, | ||
187 | u8 request, u16 value, void *buf, int buflen) | ||
188 | { | ||
189 | int rc; | ||
190 | void *kbuf = kmalloc(buflen, GFP_KERNEL); /* not allowed on stack */ | ||
191 | |||
192 | if (kbuf == NULL) | ||
193 | return -ENOMEM; | ||
194 | |||
195 | rc = usb_control_msg(pdev->udev, usb_rcvctrlpipe(pdev->udev, 0), | ||
196 | request, | ||
197 | USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, | ||
198 | value, | ||
199 | pdev->vcinterface, | ||
200 | kbuf, buflen, 500); | ||
201 | memcpy(buf, kbuf, buflen); | ||
202 | kfree(kbuf); | ||
203 | return rc; | ||
204 | } | ||
179 | 205 | ||
180 | static int send_video_command(struct usb_device *udev, int index, void *buf, int buflen) | 206 | static inline int send_video_command(struct pwc_device *pdev, |
207 | int index, void *buf, int buflen) | ||
181 | { | 208 | { |
182 | return usb_control_msg(udev, | 209 | return _send_control_msg(pdev, |
183 | usb_sndctrlpipe(udev, 0), | ||
184 | SET_EP_STREAM_CTL, | 210 | SET_EP_STREAM_CTL, |
185 | USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, | ||
186 | VIDEO_OUTPUT_CONTROL_FORMATTER, | 211 | VIDEO_OUTPUT_CONTROL_FORMATTER, |
187 | index, | 212 | index, |
188 | buf, buflen, 1000); | 213 | buf, buflen, 1000); |
189 | } | 214 | } |
190 | 215 | ||
216 | static inline int send_control_msg(struct pwc_device *pdev, | ||
217 | u8 request, u16 value, void *buf, int buflen) | ||
218 | { | ||
219 | return _send_control_msg(pdev, | ||
220 | request, value, pdev->vcinterface, buf, buflen, 500); | ||
221 | } | ||
222 | |||
191 | 223 | ||
192 | 224 | ||
193 | static int set_video_mode_Nala(struct pwc_device *pdev, int size, int frames) | 225 | static int set_video_mode_Nala(struct pwc_device *pdev, int size, int frames) |
@@ -224,7 +256,7 @@ static int set_video_mode_Nala(struct pwc_device *pdev, int size, int frames) | |||
224 | return -EINVAL; | 256 | return -EINVAL; |
225 | 257 | ||
226 | memcpy(buf, pEntry->mode, 3); | 258 | memcpy(buf, pEntry->mode, 3); |
227 | ret = send_video_command(pdev->udev, pdev->vendpoint, buf, 3); | 259 | ret = send_video_command(pdev, pdev->vendpoint, buf, 3); |
228 | if (ret < 0) { | 260 | if (ret < 0) { |
229 | PWC_DEBUG_MODULE("Failed to send video command... %d\n", ret); | 261 | PWC_DEBUG_MODULE("Failed to send video command... %d\n", ret); |
230 | return ret; | 262 | return ret; |
@@ -285,7 +317,7 @@ static int set_video_mode_Timon(struct pwc_device *pdev, int size, int frames, i | |||
285 | memcpy(buf, pChoose->mode, 13); | 317 | memcpy(buf, pChoose->mode, 13); |
286 | if (snapshot) | 318 | if (snapshot) |
287 | buf[0] |= 0x80; | 319 | buf[0] |= 0x80; |
288 | ret = send_video_command(pdev->udev, pdev->vendpoint, buf, 13); | 320 | ret = send_video_command(pdev, pdev->vendpoint, buf, 13); |
289 | if (ret < 0) | 321 | if (ret < 0) |
290 | return ret; | 322 | return ret; |
291 | 323 | ||
@@ -358,7 +390,7 @@ static int set_video_mode_Kiara(struct pwc_device *pdev, int size, int frames, i | |||
358 | buf[0] |= 0x80; | 390 | buf[0] |= 0x80; |
359 | 391 | ||
360 | /* Firmware bug: video endpoint is 5, but commands are sent to endpoint 4 */ | 392 | /* Firmware bug: video endpoint is 5, but commands are sent to endpoint 4 */ |
361 | ret = send_video_command(pdev->udev, 4 /* pdev->vendpoint */, buf, 12); | 393 | ret = send_video_command(pdev, 4 /* pdev->vendpoint */, buf, 12); |
362 | if (ret < 0) | 394 | if (ret < 0) |
363 | return ret; | 395 | return ret; |
364 | 396 | ||
@@ -530,7 +562,8 @@ int pwc_get_brightness(struct pwc_device *pdev) | |||
530 | char buf; | 562 | char buf; |
531 | int ret; | 563 | int ret; |
532 | 564 | ||
533 | ret = RecvControlMsg(GET_LUM_CTL, BRIGHTNESS_FORMATTER, 1); | 565 | ret = recv_control_msg(pdev, |
566 | GET_LUM_CTL, BRIGHTNESS_FORMATTER, &buf, sizeof(buf)); | ||
534 | if (ret < 0) | 567 | if (ret < 0) |
535 | return ret; | 568 | return ret; |
536 | return buf; | 569 | return buf; |
@@ -545,7 +578,8 @@ int pwc_set_brightness(struct pwc_device *pdev, int value) | |||
545 | if (value > 0xffff) | 578 | if (value > 0xffff) |
546 | value = 0xffff; | 579 | value = 0xffff; |
547 | buf = (value >> 9) & 0x7f; | 580 | buf = (value >> 9) & 0x7f; |
548 | return SendControlMsg(SET_LUM_CTL, BRIGHTNESS_FORMATTER, 1); | 581 | return send_control_msg(pdev, |
582 | SET_LUM_CTL, BRIGHTNESS_FORMATTER, &buf, sizeof(buf)); | ||
549 | } | 583 | } |
550 | 584 | ||
551 | /* CONTRAST */ | 585 | /* CONTRAST */ |
@@ -555,7 +589,8 @@ int pwc_get_contrast(struct pwc_device *pdev) | |||
555 | char buf; | 589 | char buf; |
556 | int ret; | 590 | int ret; |
557 | 591 | ||
558 | ret = RecvControlMsg(GET_LUM_CTL, CONTRAST_FORMATTER, 1); | 592 | ret = recv_control_msg(pdev, |
593 | GET_LUM_CTL, CONTRAST_FORMATTER, &buf, sizeof(buf)); | ||
559 | if (ret < 0) | 594 | if (ret < 0) |
560 | return ret; | 595 | return ret; |
561 | return buf; | 596 | return buf; |
@@ -570,7 +605,8 @@ int pwc_set_contrast(struct pwc_device *pdev, int value) | |||
570 | if (value > 0xffff) | 605 | if (value > 0xffff) |
571 | value = 0xffff; | 606 | value = 0xffff; |
572 | buf = (value >> 10) & 0x3f; | 607 | buf = (value >> 10) & 0x3f; |
573 | return SendControlMsg(SET_LUM_CTL, CONTRAST_FORMATTER, 1); | 608 | return send_control_msg(pdev, |
609 | SET_LUM_CTL, CONTRAST_FORMATTER, &buf, sizeof(buf)); | ||
574 | } | 610 | } |
575 | 611 | ||
576 | /* GAMMA */ | 612 | /* GAMMA */ |
@@ -580,7 +616,8 @@ int pwc_get_gamma(struct pwc_device *pdev) | |||
580 | char buf; | 616 | char buf; |
581 | int ret; | 617 | int ret; |
582 | 618 | ||
583 | ret = RecvControlMsg(GET_LUM_CTL, GAMMA_FORMATTER, 1); | 619 | ret = recv_control_msg(pdev, |
620 | GET_LUM_CTL, GAMMA_FORMATTER, &buf, sizeof(buf)); | ||
584 | if (ret < 0) | 621 | if (ret < 0) |
585 | return ret; | 622 | return ret; |
586 | return buf; | 623 | return buf; |
@@ -595,7 +632,8 @@ int pwc_set_gamma(struct pwc_device *pdev, int value) | |||
595 | if (value > 0xffff) | 632 | if (value > 0xffff) |
596 | value = 0xffff; | 633 | value = 0xffff; |
597 | buf = (value >> 11) & 0x1f; | 634 | buf = (value >> 11) & 0x1f; |
598 | return SendControlMsg(SET_LUM_CTL, GAMMA_FORMATTER, 1); | 635 | return send_control_msg(pdev, |
636 | SET_LUM_CTL, GAMMA_FORMATTER, &buf, sizeof(buf)); | ||
599 | } | 637 | } |
600 | 638 | ||
601 | 639 | ||
@@ -613,7 +651,8 @@ int pwc_get_saturation(struct pwc_device *pdev, int *value) | |||
613 | saturation_register = SATURATION_MODE_FORMATTER2; | 651 | saturation_register = SATURATION_MODE_FORMATTER2; |
614 | else | 652 | else |
615 | saturation_register = SATURATION_MODE_FORMATTER1; | 653 | saturation_register = SATURATION_MODE_FORMATTER1; |
616 | ret = RecvControlMsg(GET_CHROM_CTL, saturation_register, 1); | 654 | ret = recv_control_msg(pdev, |
655 | GET_CHROM_CTL, saturation_register, &buf, sizeof(buf)); | ||
617 | if (ret < 0) | 656 | if (ret < 0) |
618 | return ret; | 657 | return ret; |
619 | *value = (signed)buf; | 658 | *value = (signed)buf; |
@@ -636,7 +675,8 @@ int pwc_set_saturation(struct pwc_device *pdev, int value) | |||
636 | saturation_register = SATURATION_MODE_FORMATTER2; | 675 | saturation_register = SATURATION_MODE_FORMATTER2; |
637 | else | 676 | else |
638 | saturation_register = SATURATION_MODE_FORMATTER1; | 677 | saturation_register = SATURATION_MODE_FORMATTER1; |
639 | return SendControlMsg(SET_CHROM_CTL, saturation_register, 1); | 678 | return send_control_msg(pdev, |
679 | SET_CHROM_CTL, saturation_register, &buf, sizeof(buf)); | ||
640 | } | 680 | } |
641 | 681 | ||
642 | /* AGC */ | 682 | /* AGC */ |
@@ -651,7 +691,8 @@ int pwc_set_agc(struct pwc_device *pdev, int mode, int value) | |||
651 | else | 691 | else |
652 | buf = 0xff; /* fixed */ | 692 | buf = 0xff; /* fixed */ |
653 | 693 | ||
654 | ret = SendControlMsg(SET_LUM_CTL, AGC_MODE_FORMATTER, 1); | 694 | ret = send_control_msg(pdev, |
695 | SET_LUM_CTL, AGC_MODE_FORMATTER, &buf, sizeof(buf)); | ||
655 | 696 | ||
656 | if (!mode && ret >= 0) { | 697 | if (!mode && ret >= 0) { |
657 | if (value < 0) | 698 | if (value < 0) |
@@ -659,7 +700,8 @@ int pwc_set_agc(struct pwc_device *pdev, int mode, int value) | |||
659 | if (value > 0xffff) | 700 | if (value > 0xffff) |
660 | value = 0xffff; | 701 | value = 0xffff; |
661 | buf = (value >> 10) & 0x3F; | 702 | buf = (value >> 10) & 0x3F; |
662 | ret = SendControlMsg(SET_LUM_CTL, PRESET_AGC_FORMATTER, 1); | 703 | ret = send_control_msg(pdev, |
704 | SET_LUM_CTL, PRESET_AGC_FORMATTER, &buf, sizeof(buf)); | ||
663 | } | 705 | } |
664 | if (ret < 0) | 706 | if (ret < 0) |
665 | return ret; | 707 | return ret; |
@@ -671,12 +713,14 @@ int pwc_get_agc(struct pwc_device *pdev, int *value) | |||
671 | unsigned char buf; | 713 | unsigned char buf; |
672 | int ret; | 714 | int ret; |
673 | 715 | ||
674 | ret = RecvControlMsg(GET_LUM_CTL, AGC_MODE_FORMATTER, 1); | 716 | ret = recv_control_msg(pdev, |
717 | GET_LUM_CTL, AGC_MODE_FORMATTER, &buf, sizeof(buf)); | ||
675 | if (ret < 0) | 718 | if (ret < 0) |
676 | return ret; | 719 | return ret; |
677 | 720 | ||
678 | if (buf != 0) { /* fixed */ | 721 | if (buf != 0) { /* fixed */ |
679 | ret = RecvControlMsg(GET_LUM_CTL, PRESET_AGC_FORMATTER, 1); | 722 | ret = recv_control_msg(pdev, |
723 | GET_LUM_CTL, PRESET_AGC_FORMATTER, &buf, sizeof(buf)); | ||
680 | if (ret < 0) | 724 | if (ret < 0) |
681 | return ret; | 725 | return ret; |
682 | if (buf > 0x3F) | 726 | if (buf > 0x3F) |
@@ -684,7 +728,8 @@ int pwc_get_agc(struct pwc_device *pdev, int *value) | |||
684 | *value = (buf << 10); | 728 | *value = (buf << 10); |
685 | } | 729 | } |
686 | else { /* auto */ | 730 | else { /* auto */ |
687 | ret = RecvControlMsg(GET_STATUS_CTL, READ_AGC_FORMATTER, 1); | 731 | ret = recv_control_msg(pdev, |
732 | GET_STATUS_CTL, READ_AGC_FORMATTER, &buf, sizeof(buf)); | ||
688 | if (ret < 0) | 733 | if (ret < 0) |
689 | return ret; | 734 | return ret; |
690 | /* Gah... this value ranges from 0x00 ... 0x9F */ | 735 | /* Gah... this value ranges from 0x00 ... 0x9F */ |
@@ -707,7 +752,8 @@ int pwc_set_shutter_speed(struct pwc_device *pdev, int mode, int value) | |||
707 | else | 752 | else |
708 | buf[0] = 0xff; /* fixed */ | 753 | buf[0] = 0xff; /* fixed */ |
709 | 754 | ||
710 | ret = SendControlMsg(SET_LUM_CTL, SHUTTER_MODE_FORMATTER, 1); | 755 | ret = send_control_msg(pdev, |
756 | SET_LUM_CTL, SHUTTER_MODE_FORMATTER, &buf, sizeof(buf)); | ||
711 | 757 | ||
712 | if (!mode && ret >= 0) { | 758 | if (!mode && ret >= 0) { |
713 | if (value < 0) | 759 | if (value < 0) |
@@ -726,7 +772,9 @@ int pwc_set_shutter_speed(struct pwc_device *pdev, int mode, int value) | |||
726 | buf[0] = value >> 8; | 772 | buf[0] = value >> 8; |
727 | } | 773 | } |
728 | 774 | ||
729 | ret = SendControlMsg(SET_LUM_CTL, PRESET_SHUTTER_FORMATTER, 2); | 775 | ret = send_control_msg(pdev, |
776 | SET_LUM_CTL, PRESET_SHUTTER_FORMATTER, | ||
777 | &buf, sizeof(buf)); | ||
730 | } | 778 | } |
731 | return ret; | 779 | return ret; |
732 | } | 780 | } |
@@ -737,7 +785,8 @@ int pwc_get_shutter_speed(struct pwc_device *pdev, int *value) | |||
737 | unsigned char buf[2]; | 785 | unsigned char buf[2]; |
738 | int ret; | 786 | int ret; |
739 | 787 | ||
740 | ret = RecvControlMsg(GET_STATUS_CTL, READ_SHUTTER_FORMATTER, 2); | 788 | ret = recv_control_msg(pdev, |
789 | GET_STATUS_CTL, READ_SHUTTER_FORMATTER, &buf, sizeof(buf)); | ||
741 | if (ret < 0) | 790 | if (ret < 0) |
742 | return ret; | 791 | return ret; |
743 | *value = buf[0] + (buf[1] << 8); | 792 | *value = buf[0] + (buf[1] << 8); |
@@ -764,7 +813,9 @@ int pwc_camera_power(struct pwc_device *pdev, int power) | |||
764 | buf = 0x00; /* active */ | 813 | buf = 0x00; /* active */ |
765 | else | 814 | else |
766 | buf = 0xFF; /* power save */ | 815 | buf = 0xFF; /* power save */ |
767 | return SendControlMsg(SET_STATUS_CTL, SET_POWER_SAVE_MODE_FORMATTER, 1); | 816 | return send_control_msg(pdev, |
817 | SET_STATUS_CTL, SET_POWER_SAVE_MODE_FORMATTER, | ||
818 | &buf, sizeof(buf)); | ||
768 | } | 819 | } |
769 | 820 | ||
770 | 821 | ||
@@ -773,20 +824,20 @@ int pwc_camera_power(struct pwc_device *pdev, int power) | |||
773 | 824 | ||
774 | int pwc_restore_user(struct pwc_device *pdev) | 825 | int pwc_restore_user(struct pwc_device *pdev) |
775 | { | 826 | { |
776 | char buf; /* dummy */ | 827 | return send_control_msg(pdev, |
777 | return SendControlMsg(SET_STATUS_CTL, RESTORE_USER_DEFAULTS_FORMATTER, 0); | 828 | SET_STATUS_CTL, RESTORE_USER_DEFAULTS_FORMATTER, NULL, 0); |
778 | } | 829 | } |
779 | 830 | ||
780 | int pwc_save_user(struct pwc_device *pdev) | 831 | int pwc_save_user(struct pwc_device *pdev) |
781 | { | 832 | { |
782 | char buf; /* dummy */ | 833 | return send_control_msg(pdev, |
783 | return SendControlMsg(SET_STATUS_CTL, SAVE_USER_DEFAULTS_FORMATTER, 0); | 834 | SET_STATUS_CTL, SAVE_USER_DEFAULTS_FORMATTER, NULL, 0); |
784 | } | 835 | } |
785 | 836 | ||
786 | int pwc_restore_factory(struct pwc_device *pdev) | 837 | int pwc_restore_factory(struct pwc_device *pdev) |
787 | { | 838 | { |
788 | char buf; /* dummy */ | 839 | return send_control_msg(pdev, |
789 | return SendControlMsg(SET_STATUS_CTL, RESTORE_FACTORY_DEFAULTS_FORMATTER, 0); | 840 | SET_STATUS_CTL, RESTORE_FACTORY_DEFAULTS_FORMATTER, NULL, 0); |
790 | } | 841 | } |
791 | 842 | ||
792 | /* ************************************************* */ | 843 | /* ************************************************* */ |
@@ -814,7 +865,8 @@ int pwc_set_awb(struct pwc_device *pdev, int mode) | |||
814 | 865 | ||
815 | buf = mode & 0x07; /* just the lowest three bits */ | 866 | buf = mode & 0x07; /* just the lowest three bits */ |
816 | 867 | ||
817 | ret = SendControlMsg(SET_CHROM_CTL, WB_MODE_FORMATTER, 1); | 868 | ret = send_control_msg(pdev, |
869 | SET_CHROM_CTL, WB_MODE_FORMATTER, &buf, sizeof(buf)); | ||
818 | 870 | ||
819 | if (ret < 0) | 871 | if (ret < 0) |
820 | return ret; | 872 | return ret; |
@@ -826,7 +878,8 @@ int pwc_get_awb(struct pwc_device *pdev) | |||
826 | unsigned char buf; | 878 | unsigned char buf; |
827 | int ret; | 879 | int ret; |
828 | 880 | ||
829 | ret = RecvControlMsg(GET_CHROM_CTL, WB_MODE_FORMATTER, 1); | 881 | ret = recv_control_msg(pdev, |
882 | GET_CHROM_CTL, WB_MODE_FORMATTER, &buf, sizeof(buf)); | ||
830 | 883 | ||
831 | if (ret < 0) | 884 | if (ret < 0) |
832 | return ret; | 885 | return ret; |
@@ -843,7 +896,9 @@ int pwc_set_red_gain(struct pwc_device *pdev, int value) | |||
843 | value = 0xffff; | 896 | value = 0xffff; |
844 | /* only the msb is considered */ | 897 | /* only the msb is considered */ |
845 | buf = value >> 8; | 898 | buf = value >> 8; |
846 | return SendControlMsg(SET_CHROM_CTL, PRESET_MANUAL_RED_GAIN_FORMATTER, 1); | 899 | return send_control_msg(pdev, |
900 | SET_CHROM_CTL, PRESET_MANUAL_RED_GAIN_FORMATTER, | ||
901 | &buf, sizeof(buf)); | ||
847 | } | 902 | } |
848 | 903 | ||
849 | int pwc_get_red_gain(struct pwc_device *pdev, int *value) | 904 | int pwc_get_red_gain(struct pwc_device *pdev, int *value) |
@@ -851,7 +906,9 @@ int pwc_get_red_gain(struct pwc_device *pdev, int *value) | |||
851 | unsigned char buf; | 906 | unsigned char buf; |
852 | int ret; | 907 | int ret; |
853 | 908 | ||
854 | ret = RecvControlMsg(GET_CHROM_CTL, PRESET_MANUAL_RED_GAIN_FORMATTER, 1); | 909 | ret = recv_control_msg(pdev, |
910 | GET_CHROM_CTL, PRESET_MANUAL_RED_GAIN_FORMATTER, | ||
911 | &buf, sizeof(buf)); | ||
855 | if (ret < 0) | 912 | if (ret < 0) |
856 | return ret; | 913 | return ret; |
857 | *value = buf << 8; | 914 | *value = buf << 8; |
@@ -869,7 +926,9 @@ int pwc_set_blue_gain(struct pwc_device *pdev, int value) | |||
869 | value = 0xffff; | 926 | value = 0xffff; |
870 | /* only the msb is considered */ | 927 | /* only the msb is considered */ |
871 | buf = value >> 8; | 928 | buf = value >> 8; |
872 | return SendControlMsg(SET_CHROM_CTL, PRESET_MANUAL_BLUE_GAIN_FORMATTER, 1); | 929 | return send_control_msg(pdev, |
930 | SET_CHROM_CTL, PRESET_MANUAL_BLUE_GAIN_FORMATTER, | ||
931 | &buf, sizeof(buf)); | ||
873 | } | 932 | } |
874 | 933 | ||
875 | int pwc_get_blue_gain(struct pwc_device *pdev, int *value) | 934 | int pwc_get_blue_gain(struct pwc_device *pdev, int *value) |
@@ -877,7 +936,9 @@ int pwc_get_blue_gain(struct pwc_device *pdev, int *value) | |||
877 | unsigned char buf; | 936 | unsigned char buf; |
878 | int ret; | 937 | int ret; |
879 | 938 | ||
880 | ret = RecvControlMsg(GET_CHROM_CTL, PRESET_MANUAL_BLUE_GAIN_FORMATTER, 1); | 939 | ret = recv_control_msg(pdev, |
940 | GET_CHROM_CTL, PRESET_MANUAL_BLUE_GAIN_FORMATTER, | ||
941 | &buf, sizeof(buf)); | ||
881 | if (ret < 0) | 942 | if (ret < 0) |
882 | return ret; | 943 | return ret; |
883 | *value = buf << 8; | 944 | *value = buf << 8; |
@@ -894,7 +955,8 @@ static int pwc_read_red_gain(struct pwc_device *pdev, int *value) | |||
894 | unsigned char buf; | 955 | unsigned char buf; |
895 | int ret; | 956 | int ret; |
896 | 957 | ||
897 | ret = RecvControlMsg(GET_STATUS_CTL, READ_RED_GAIN_FORMATTER, 1); | 958 | ret = recv_control_msg(pdev, |
959 | GET_STATUS_CTL, READ_RED_GAIN_FORMATTER, &buf, sizeof(buf)); | ||
898 | if (ret < 0) | 960 | if (ret < 0) |
899 | return ret; | 961 | return ret; |
900 | *value = buf << 8; | 962 | *value = buf << 8; |
@@ -906,7 +968,8 @@ static int pwc_read_blue_gain(struct pwc_device *pdev, int *value) | |||
906 | unsigned char buf; | 968 | unsigned char buf; |
907 | int ret; | 969 | int ret; |
908 | 970 | ||
909 | ret = RecvControlMsg(GET_STATUS_CTL, READ_BLUE_GAIN_FORMATTER, 1); | 971 | ret = recv_control_msg(pdev, |
972 | GET_STATUS_CTL, READ_BLUE_GAIN_FORMATTER, &buf, sizeof(buf)); | ||
910 | if (ret < 0) | 973 | if (ret < 0) |
911 | return ret; | 974 | return ret; |
912 | *value = buf << 8; | 975 | *value = buf << 8; |
@@ -920,7 +983,8 @@ static int pwc_set_wb_speed(struct pwc_device *pdev, int speed) | |||
920 | 983 | ||
921 | /* useful range is 0x01..0x20 */ | 984 | /* useful range is 0x01..0x20 */ |
922 | buf = speed / 0x7f0; | 985 | buf = speed / 0x7f0; |
923 | return SendControlMsg(SET_CHROM_CTL, AWB_CONTROL_SPEED_FORMATTER, 1); | 986 | return send_control_msg(pdev, |
987 | SET_CHROM_CTL, AWB_CONTROL_SPEED_FORMATTER, &buf, sizeof(buf)); | ||
924 | } | 988 | } |
925 | 989 | ||
926 | static int pwc_get_wb_speed(struct pwc_device *pdev, int *value) | 990 | static int pwc_get_wb_speed(struct pwc_device *pdev, int *value) |
@@ -928,7 +992,8 @@ static int pwc_get_wb_speed(struct pwc_device *pdev, int *value) | |||
928 | unsigned char buf; | 992 | unsigned char buf; |
929 | int ret; | 993 | int ret; |
930 | 994 | ||
931 | ret = RecvControlMsg(GET_CHROM_CTL, AWB_CONTROL_SPEED_FORMATTER, 1); | 995 | ret = recv_control_msg(pdev, |
996 | GET_CHROM_CTL, AWB_CONTROL_SPEED_FORMATTER, &buf, sizeof(buf)); | ||
932 | if (ret < 0) | 997 | if (ret < 0) |
933 | return ret; | 998 | return ret; |
934 | *value = buf * 0x7f0; | 999 | *value = buf * 0x7f0; |
@@ -942,7 +1007,8 @@ static int pwc_set_wb_delay(struct pwc_device *pdev, int delay) | |||
942 | 1007 | ||
943 | /* useful range is 0x01..0x3F */ | 1008 | /* useful range is 0x01..0x3F */ |
944 | buf = (delay >> 10); | 1009 | buf = (delay >> 10); |
945 | return SendControlMsg(SET_CHROM_CTL, AWB_CONTROL_DELAY_FORMATTER, 1); | 1010 | return send_control_msg(pdev, |
1011 | SET_CHROM_CTL, AWB_CONTROL_DELAY_FORMATTER, &buf, sizeof(buf)); | ||
946 | } | 1012 | } |
947 | 1013 | ||
948 | static int pwc_get_wb_delay(struct pwc_device *pdev, int *value) | 1014 | static int pwc_get_wb_delay(struct pwc_device *pdev, int *value) |
@@ -950,7 +1016,8 @@ static int pwc_get_wb_delay(struct pwc_device *pdev, int *value) | |||
950 | unsigned char buf; | 1016 | unsigned char buf; |
951 | int ret; | 1017 | int ret; |
952 | 1018 | ||
953 | ret = RecvControlMsg(GET_CHROM_CTL, AWB_CONTROL_DELAY_FORMATTER, 1); | 1019 | ret = recv_control_msg(pdev, |
1020 | GET_CHROM_CTL, AWB_CONTROL_DELAY_FORMATTER, &buf, sizeof(buf)); | ||
954 | if (ret < 0) | 1021 | if (ret < 0) |
955 | return ret; | 1022 | return ret; |
956 | *value = buf << 10; | 1023 | *value = buf << 10; |
@@ -978,7 +1045,8 @@ int pwc_set_leds(struct pwc_device *pdev, int on_value, int off_value) | |||
978 | buf[0] = on_value; | 1045 | buf[0] = on_value; |
979 | buf[1] = off_value; | 1046 | buf[1] = off_value; |
980 | 1047 | ||
981 | return SendControlMsg(SET_STATUS_CTL, LED_FORMATTER, 2); | 1048 | return send_control_msg(pdev, |
1049 | SET_STATUS_CTL, LED_FORMATTER, &buf, sizeof(buf)); | ||
982 | } | 1050 | } |
983 | 1051 | ||
984 | static int pwc_get_leds(struct pwc_device *pdev, int *on_value, int *off_value) | 1052 | static int pwc_get_leds(struct pwc_device *pdev, int *on_value, int *off_value) |
@@ -992,7 +1060,8 @@ static int pwc_get_leds(struct pwc_device *pdev, int *on_value, int *off_value) | |||
992 | return 0; | 1060 | return 0; |
993 | } | 1061 | } |
994 | 1062 | ||
995 | ret = RecvControlMsg(GET_STATUS_CTL, LED_FORMATTER, 2); | 1063 | ret = recv_control_msg(pdev, |
1064 | GET_STATUS_CTL, LED_FORMATTER, &buf, sizeof(buf)); | ||
996 | if (ret < 0) | 1065 | if (ret < 0) |
997 | return ret; | 1066 | return ret; |
998 | *on_value = buf[0] * 100; | 1067 | *on_value = buf[0] * 100; |
@@ -1009,7 +1078,8 @@ int pwc_set_contour(struct pwc_device *pdev, int contour) | |||
1009 | buf = 0xff; /* auto contour on */ | 1078 | buf = 0xff; /* auto contour on */ |
1010 | else | 1079 | else |
1011 | buf = 0x0; /* auto contour off */ | 1080 | buf = 0x0; /* auto contour off */ |
1012 | ret = SendControlMsg(SET_LUM_CTL, AUTO_CONTOUR_FORMATTER, 1); | 1081 | ret = send_control_msg(pdev, |
1082 | SET_LUM_CTL, AUTO_CONTOUR_FORMATTER, &buf, sizeof(buf)); | ||
1013 | if (ret < 0) | 1083 | if (ret < 0) |
1014 | return ret; | 1084 | return ret; |
1015 | 1085 | ||
@@ -1019,7 +1089,8 @@ int pwc_set_contour(struct pwc_device *pdev, int contour) | |||
1019 | contour = 0xffff; | 1089 | contour = 0xffff; |
1020 | 1090 | ||
1021 | buf = (contour >> 10); /* contour preset is [0..3f] */ | 1091 | buf = (contour >> 10); /* contour preset is [0..3f] */ |
1022 | ret = SendControlMsg(SET_LUM_CTL, PRESET_CONTOUR_FORMATTER, 1); | 1092 | ret = send_control_msg(pdev, |
1093 | SET_LUM_CTL, PRESET_CONTOUR_FORMATTER, &buf, sizeof(buf)); | ||
1023 | if (ret < 0) | 1094 | if (ret < 0) |
1024 | return ret; | 1095 | return ret; |
1025 | return 0; | 1096 | return 0; |
@@ -1030,13 +1101,16 @@ int pwc_get_contour(struct pwc_device *pdev, int *contour) | |||
1030 | unsigned char buf; | 1101 | unsigned char buf; |
1031 | int ret; | 1102 | int ret; |
1032 | 1103 | ||
1033 | ret = RecvControlMsg(GET_LUM_CTL, AUTO_CONTOUR_FORMATTER, 1); | 1104 | ret = recv_control_msg(pdev, |
1105 | GET_LUM_CTL, AUTO_CONTOUR_FORMATTER, &buf, sizeof(buf)); | ||
1034 | if (ret < 0) | 1106 | if (ret < 0) |
1035 | return ret; | 1107 | return ret; |
1036 | 1108 | ||
1037 | if (buf == 0) { | 1109 | if (buf == 0) { |
1038 | /* auto mode off, query current preset value */ | 1110 | /* auto mode off, query current preset value */ |
1039 | ret = RecvControlMsg(GET_LUM_CTL, PRESET_CONTOUR_FORMATTER, 1); | 1111 | ret = recv_control_msg(pdev, |
1112 | GET_LUM_CTL, PRESET_CONTOUR_FORMATTER, | ||
1113 | &buf, sizeof(buf)); | ||
1040 | if (ret < 0) | 1114 | if (ret < 0) |
1041 | return ret; | 1115 | return ret; |
1042 | *contour = buf << 10; | 1116 | *contour = buf << 10; |
@@ -1055,7 +1129,9 @@ int pwc_set_backlight(struct pwc_device *pdev, int backlight) | |||
1055 | buf = 0xff; | 1129 | buf = 0xff; |
1056 | else | 1130 | else |
1057 | buf = 0x0; | 1131 | buf = 0x0; |
1058 | return SendControlMsg(SET_LUM_CTL, BACK_LIGHT_COMPENSATION_FORMATTER, 1); | 1132 | return send_control_msg(pdev, |
1133 | SET_LUM_CTL, BACK_LIGHT_COMPENSATION_FORMATTER, | ||
1134 | &buf, sizeof(buf)); | ||
1059 | } | 1135 | } |
1060 | 1136 | ||
1061 | int pwc_get_backlight(struct pwc_device *pdev, int *backlight) | 1137 | int pwc_get_backlight(struct pwc_device *pdev, int *backlight) |
@@ -1063,7 +1139,9 @@ int pwc_get_backlight(struct pwc_device *pdev, int *backlight) | |||
1063 | int ret; | 1139 | int ret; |
1064 | unsigned char buf; | 1140 | unsigned char buf; |
1065 | 1141 | ||
1066 | ret = RecvControlMsg(GET_LUM_CTL, BACK_LIGHT_COMPENSATION_FORMATTER, 1); | 1142 | ret = recv_control_msg(pdev, |
1143 | GET_LUM_CTL, BACK_LIGHT_COMPENSATION_FORMATTER, | ||
1144 | &buf, sizeof(buf)); | ||
1067 | if (ret < 0) | 1145 | if (ret < 0) |
1068 | return ret; | 1146 | return ret; |
1069 | *backlight = !!buf; | 1147 | *backlight = !!buf; |
@@ -1078,7 +1156,8 @@ int pwc_set_colour_mode(struct pwc_device *pdev, int colour) | |||
1078 | buf = 0xff; | 1156 | buf = 0xff; |
1079 | else | 1157 | else |
1080 | buf = 0x0; | 1158 | buf = 0x0; |
1081 | return SendControlMsg(SET_CHROM_CTL, COLOUR_MODE_FORMATTER, 1); | 1159 | return send_control_msg(pdev, |
1160 | SET_CHROM_CTL, COLOUR_MODE_FORMATTER, &buf, sizeof(buf)); | ||
1082 | } | 1161 | } |
1083 | 1162 | ||
1084 | int pwc_get_colour_mode(struct pwc_device *pdev, int *colour) | 1163 | int pwc_get_colour_mode(struct pwc_device *pdev, int *colour) |
@@ -1086,7 +1165,8 @@ int pwc_get_colour_mode(struct pwc_device *pdev, int *colour) | |||
1086 | int ret; | 1165 | int ret; |
1087 | unsigned char buf; | 1166 | unsigned char buf; |
1088 | 1167 | ||
1089 | ret = RecvControlMsg(GET_CHROM_CTL, COLOUR_MODE_FORMATTER, 1); | 1168 | ret = recv_control_msg(pdev, |
1169 | GET_CHROM_CTL, COLOUR_MODE_FORMATTER, &buf, sizeof(buf)); | ||
1090 | if (ret < 0) | 1170 | if (ret < 0) |
1091 | return ret; | 1171 | return ret; |
1092 | *colour = !!buf; | 1172 | *colour = !!buf; |
@@ -1102,7 +1182,8 @@ int pwc_set_flicker(struct pwc_device *pdev, int flicker) | |||
1102 | buf = 0xff; | 1182 | buf = 0xff; |
1103 | else | 1183 | else |
1104 | buf = 0x0; | 1184 | buf = 0x0; |
1105 | return SendControlMsg(SET_LUM_CTL, FLICKERLESS_MODE_FORMATTER, 1); | 1185 | return send_control_msg(pdev, |
1186 | SET_LUM_CTL, FLICKERLESS_MODE_FORMATTER, &buf, sizeof(buf)); | ||
1106 | } | 1187 | } |
1107 | 1188 | ||
1108 | int pwc_get_flicker(struct pwc_device *pdev, int *flicker) | 1189 | int pwc_get_flicker(struct pwc_device *pdev, int *flicker) |
@@ -1110,7 +1191,8 @@ int pwc_get_flicker(struct pwc_device *pdev, int *flicker) | |||
1110 | int ret; | 1191 | int ret; |
1111 | unsigned char buf; | 1192 | unsigned char buf; |
1112 | 1193 | ||
1113 | ret = RecvControlMsg(GET_LUM_CTL, FLICKERLESS_MODE_FORMATTER, 1); | 1194 | ret = recv_control_msg(pdev, |
1195 | GET_LUM_CTL, FLICKERLESS_MODE_FORMATTER, &buf, sizeof(buf)); | ||
1114 | if (ret < 0) | 1196 | if (ret < 0) |
1115 | return ret; | 1197 | return ret; |
1116 | *flicker = !!buf; | 1198 | *flicker = !!buf; |
@@ -1126,7 +1208,9 @@ int pwc_set_dynamic_noise(struct pwc_device *pdev, int noise) | |||
1126 | if (noise > 3) | 1208 | if (noise > 3) |
1127 | noise = 3; | 1209 | noise = 3; |
1128 | buf = noise; | 1210 | buf = noise; |
1129 | return SendControlMsg(SET_LUM_CTL, DYNAMIC_NOISE_CONTROL_FORMATTER, 1); | 1211 | return send_control_msg(pdev, |
1212 | SET_LUM_CTL, DYNAMIC_NOISE_CONTROL_FORMATTER, | ||
1213 | &buf, sizeof(buf)); | ||
1130 | } | 1214 | } |
1131 | 1215 | ||
1132 | int pwc_get_dynamic_noise(struct pwc_device *pdev, int *noise) | 1216 | int pwc_get_dynamic_noise(struct pwc_device *pdev, int *noise) |
@@ -1134,7 +1218,9 @@ int pwc_get_dynamic_noise(struct pwc_device *pdev, int *noise) | |||
1134 | int ret; | 1218 | int ret; |
1135 | unsigned char buf; | 1219 | unsigned char buf; |
1136 | 1220 | ||
1137 | ret = RecvControlMsg(GET_LUM_CTL, DYNAMIC_NOISE_CONTROL_FORMATTER, 1); | 1221 | ret = recv_control_msg(pdev, |
1222 | GET_LUM_CTL, DYNAMIC_NOISE_CONTROL_FORMATTER, | ||
1223 | &buf, sizeof(buf)); | ||
1138 | if (ret < 0) | 1224 | if (ret < 0) |
1139 | return ret; | 1225 | return ret; |
1140 | *noise = buf; | 1226 | *noise = buf; |
@@ -1146,7 +1232,8 @@ static int _pwc_mpt_reset(struct pwc_device *pdev, int flags) | |||
1146 | unsigned char buf; | 1232 | unsigned char buf; |
1147 | 1233 | ||
1148 | buf = flags & 0x03; // only lower two bits are currently used | 1234 | buf = flags & 0x03; // only lower two bits are currently used |
1149 | return SendControlMsg(SET_MPT_CTL, PT_RESET_CONTROL_FORMATTER, 1); | 1235 | return send_control_msg(pdev, |
1236 | SET_MPT_CTL, PT_RESET_CONTROL_FORMATTER, &buf, sizeof(buf)); | ||
1150 | } | 1237 | } |
1151 | 1238 | ||
1152 | int pwc_mpt_reset(struct pwc_device *pdev, int flags) | 1239 | int pwc_mpt_reset(struct pwc_device *pdev, int flags) |
@@ -1175,7 +1262,8 @@ static int _pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt) | |||
1175 | buf[1] = (pan >> 8) & 0xFF; | 1262 | buf[1] = (pan >> 8) & 0xFF; |
1176 | buf[2] = tilt & 0xFF; | 1263 | buf[2] = tilt & 0xFF; |
1177 | buf[3] = (tilt >> 8) & 0xFF; | 1264 | buf[3] = (tilt >> 8) & 0xFF; |
1178 | return SendControlMsg(SET_MPT_CTL, PT_RELATIVE_CONTROL_FORMATTER, 4); | 1265 | return send_control_msg(pdev, |
1266 | SET_MPT_CTL, PT_RELATIVE_CONTROL_FORMATTER, &buf, sizeof(buf)); | ||
1179 | } | 1267 | } |
1180 | 1268 | ||
1181 | int pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt) | 1269 | int pwc_mpt_set_angle(struct pwc_device *pdev, int pan, int tilt) |
@@ -1211,7 +1299,8 @@ static int pwc_mpt_get_status(struct pwc_device *pdev, struct pwc_mpt_status *st | |||
1211 | int ret; | 1299 | int ret; |
1212 | unsigned char buf[5]; | 1300 | unsigned char buf[5]; |
1213 | 1301 | ||
1214 | ret = RecvControlMsg(GET_MPT_CTL, PT_STATUS_FORMATTER, 5); | 1302 | ret = recv_control_msg(pdev, |
1303 | GET_MPT_CTL, PT_STATUS_FORMATTER, &buf, sizeof(buf)); | ||
1215 | if (ret < 0) | 1304 | if (ret < 0) |
1216 | return ret; | 1305 | return ret; |
1217 | status->status = buf[0] & 0x7; // 3 bits are used for reporting | 1306 | status->status = buf[0] & 0x7; // 3 bits are used for reporting |
@@ -1233,7 +1322,8 @@ int pwc_get_cmos_sensor(struct pwc_device *pdev, int *sensor) | |||
1233 | else | 1322 | else |
1234 | request = SENSOR_TYPE_FORMATTER2; | 1323 | request = SENSOR_TYPE_FORMATTER2; |
1235 | 1324 | ||
1236 | ret = RecvControlMsg(GET_STATUS_CTL, request, 1); | 1325 | ret = recv_control_msg(pdev, |
1326 | GET_STATUS_CTL, request, &buf, sizeof(buf)); | ||
1237 | if (ret < 0) | 1327 | if (ret < 0) |
1238 | return ret; | 1328 | return ret; |
1239 | if (pdev->type < 675) | 1329 | if (pdev->type < 675) |
diff --git a/drivers/media/video/s2255drv.c b/drivers/media/video/s2255drv.c index 5202cadb2aae..30f4698be90a 100644 --- a/drivers/media/video/s2255drv.c +++ b/drivers/media/video/s2255drv.c | |||
@@ -1237,6 +1237,7 @@ static int s2255_set_mode(struct s2255_dev *dev, unsigned long chn, | |||
1237 | buffer[1] = (u32) chn_rev; | 1237 | buffer[1] = (u32) chn_rev; |
1238 | buffer[2] = CMD_SET_MODE; | 1238 | buffer[2] = CMD_SET_MODE; |
1239 | memcpy(&buffer[3], &dev->mode[chn], sizeof(struct s2255_mode)); | 1239 | memcpy(&buffer[3], &dev->mode[chn], sizeof(struct s2255_mode)); |
1240 | dev->setmode_ready[chn] = 0; | ||
1240 | res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512); | 1241 | res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512); |
1241 | if (debug) | 1242 | if (debug) |
1242 | dump_verify_mode(dev, mode); | 1243 | dump_verify_mode(dev, mode); |
@@ -1245,7 +1246,6 @@ static int s2255_set_mode(struct s2255_dev *dev, unsigned long chn, | |||
1245 | 1246 | ||
1246 | /* wait at least 3 frames before continuing */ | 1247 | /* wait at least 3 frames before continuing */ |
1247 | if (mode->restart) { | 1248 | if (mode->restart) { |
1248 | dev->setmode_ready[chn] = 0; | ||
1249 | wait_event_timeout(dev->wait_setmode[chn], | 1249 | wait_event_timeout(dev->wait_setmode[chn], |
1250 | (dev->setmode_ready[chn] != 0), | 1250 | (dev->setmode_ready[chn] != 0), |
1251 | msecs_to_jiffies(S2255_SETMODE_TIMEOUT)); | 1251 | msecs_to_jiffies(S2255_SETMODE_TIMEOUT)); |
diff --git a/drivers/media/video/saa5246a.c b/drivers/media/video/saa5246a.c index da47b2f05288..155804b061e9 100644 --- a/drivers/media/video/saa5246a.c +++ b/drivers/media/video/saa5246a.c | |||
@@ -1092,9 +1092,8 @@ static int saa5246a_probe(struct i2c_client *client, | |||
1092 | /* Register it */ | 1092 | /* Register it */ |
1093 | err = video_register_device(t->vdev, VFL_TYPE_VTX, -1); | 1093 | err = video_register_device(t->vdev, VFL_TYPE_VTX, -1); |
1094 | if (err < 0) { | 1094 | if (err < 0) { |
1095 | kfree(t); | ||
1096 | video_device_release(t->vdev); | 1095 | video_device_release(t->vdev); |
1097 | t->vdev = NULL; | 1096 | kfree(t); |
1098 | return err; | 1097 | return err; |
1099 | } | 1098 | } |
1100 | return 0; | 1099 | return 0; |
diff --git a/drivers/media/video/saa5249.c b/drivers/media/video/saa5249.c index 48b27fe48087..271d6e931b75 100644 --- a/drivers/media/video/saa5249.c +++ b/drivers/media/video/saa5249.c | |||
@@ -598,6 +598,7 @@ static int saa5249_probe(struct i2c_client *client, | |||
598 | /* Now create a video4linux device */ | 598 | /* Now create a video4linux device */ |
599 | t->vdev = video_device_alloc(); | 599 | t->vdev = video_device_alloc(); |
600 | if (t->vdev == NULL) { | 600 | if (t->vdev == NULL) { |
601 | kfree(t); | ||
601 | kfree(client); | 602 | kfree(client); |
602 | return -ENOMEM; | 603 | return -ENOMEM; |
603 | } | 604 | } |
@@ -617,9 +618,8 @@ static int saa5249_probe(struct i2c_client *client, | |||
617 | /* Register it */ | 618 | /* Register it */ |
618 | err = video_register_device(t->vdev, VFL_TYPE_VTX, -1); | 619 | err = video_register_device(t->vdev, VFL_TYPE_VTX, -1); |
619 | if (err < 0) { | 620 | if (err < 0) { |
620 | kfree(t); | ||
621 | video_device_release(t->vdev); | 621 | video_device_release(t->vdev); |
622 | t->vdev = NULL; | 622 | kfree(t); |
623 | return err; | 623 | return err; |
624 | } | 624 | } |
625 | return 0; | 625 | return 0; |
diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c index d0d126c69354..5d496a99e034 100644 --- a/drivers/message/fusion/mptbase.c +++ b/drivers/message/fusion/mptbase.c | |||
@@ -5934,7 +5934,7 @@ mpt_config(MPT_ADAPTER *ioc, CONFIGPARMS *pCfg) | |||
5934 | 5934 | ||
5935 | /* Initalize the timer | 5935 | /* Initalize the timer |
5936 | */ | 5936 | */ |
5937 | init_timer(&pCfg->timer); | 5937 | init_timer_on_stack(&pCfg->timer); |
5938 | pCfg->timer.data = (unsigned long) ioc; | 5938 | pCfg->timer.data = (unsigned long) ioc; |
5939 | pCfg->timer.function = mpt_timer_expired; | 5939 | pCfg->timer.function = mpt_timer_expired; |
5940 | pCfg->wait_done = 0; | 5940 | pCfg->wait_done = 0; |
diff --git a/drivers/misc/sgi-gru/grufile.c b/drivers/misc/sgi-gru/grufile.c index 3e6e42d2f01b..bbefe77c67a9 100644 --- a/drivers/misc/sgi-gru/grufile.c +++ b/drivers/misc/sgi-gru/grufile.c | |||
@@ -375,7 +375,7 @@ static int __init gru_init(void) | |||
375 | void *gru_start_vaddr; | 375 | void *gru_start_vaddr; |
376 | 376 | ||
377 | if (!is_uv_system()) | 377 | if (!is_uv_system()) |
378 | return -ENODEV; | 378 | return 0; |
379 | 379 | ||
380 | #if defined CONFIG_IA64 | 380 | #if defined CONFIG_IA64 |
381 | gru_start_paddr = 0xd000000000UL; /* ZZZZZZZZZZZZZZZZZZZ fixme */ | 381 | gru_start_paddr = 0xd000000000UL; /* ZZZZZZZZZZZZZZZZZZZ fixme */ |
diff --git a/drivers/misc/sgi-xp/xp_main.c b/drivers/misc/sgi-xp/xp_main.c index 16f8dcab2da4..7896849b16dc 100644 --- a/drivers/misc/sgi-xp/xp_main.c +++ b/drivers/misc/sgi-xp/xp_main.c | |||
@@ -248,19 +248,19 @@ xp_init(void) | |||
248 | enum xp_retval ret; | 248 | enum xp_retval ret; |
249 | int ch_number; | 249 | int ch_number; |
250 | 250 | ||
251 | /* initialize the connection registration mutex */ | ||
252 | for (ch_number = 0; ch_number < XPC_MAX_NCHANNELS; ch_number++) | ||
253 | mutex_init(&xpc_registrations[ch_number].mutex); | ||
254 | |||
251 | if (is_shub()) | 255 | if (is_shub()) |
252 | ret = xp_init_sn2(); | 256 | ret = xp_init_sn2(); |
253 | else if (is_uv()) | 257 | else if (is_uv()) |
254 | ret = xp_init_uv(); | 258 | ret = xp_init_uv(); |
255 | else | 259 | else |
256 | ret = xpUnsupported; | 260 | ret = 0; |
257 | 261 | ||
258 | if (ret != xpSuccess) | 262 | if (ret != xpSuccess) |
259 | return -ENODEV; | 263 | return ret; |
260 | |||
261 | /* initialize the connection registration mutex */ | ||
262 | for (ch_number = 0; ch_number < XPC_MAX_NCHANNELS; ch_number++) | ||
263 | mutex_init(&xpc_registrations[ch_number].mutex); | ||
264 | 264 | ||
265 | return 0; | 265 | return 0; |
266 | } | 266 | } |
diff --git a/drivers/mtd/nand/cafe_nand.c b/drivers/mtd/nand/cafe_nand.c index 7c5b257ce8e4..29acd06b1c39 100644 --- a/drivers/mtd/nand/cafe_nand.c +++ b/drivers/mtd/nand/cafe_nand.c | |||
@@ -332,7 +332,7 @@ static void cafe_select_chip(struct mtd_info *mtd, int chipnr) | |||
332 | cafe->ctl1 &= ~CTRL1_CHIPSELECT; | 332 | cafe->ctl1 &= ~CTRL1_CHIPSELECT; |
333 | } | 333 | } |
334 | 334 | ||
335 | static int cafe_nand_interrupt(int irq, void *id) | 335 | static irqreturn_t cafe_nand_interrupt(int irq, void *id) |
336 | { | 336 | { |
337 | struct mtd_info *mtd = id; | 337 | struct mtd_info *mtd = id; |
338 | struct cafe_priv *cafe = mtd->priv; | 338 | struct cafe_priv *cafe = mtd->priv; |
diff --git a/drivers/net/8139too.c b/drivers/net/8139too.c index 29df398b7727..1fc45431a620 100644 --- a/drivers/net/8139too.c +++ b/drivers/net/8139too.c | |||
@@ -1383,6 +1383,11 @@ static void rtl8139_hw_start (struct net_device *dev) | |||
1383 | RTL_W32_F (MAC0 + 0, le32_to_cpu (*(__le32 *) (dev->dev_addr + 0))); | 1383 | RTL_W32_F (MAC0 + 0, le32_to_cpu (*(__le32 *) (dev->dev_addr + 0))); |
1384 | RTL_W32_F (MAC0 + 4, le16_to_cpu (*(__le16 *) (dev->dev_addr + 4))); | 1384 | RTL_W32_F (MAC0 + 4, le16_to_cpu (*(__le16 *) (dev->dev_addr + 4))); |
1385 | 1385 | ||
1386 | tp->cur_rx = 0; | ||
1387 | |||
1388 | /* init Rx ring buffer DMA address */ | ||
1389 | RTL_W32_F (RxBuf, tp->rx_ring_dma); | ||
1390 | |||
1386 | /* Must enable Tx/Rx before setting transfer thresholds! */ | 1391 | /* Must enable Tx/Rx before setting transfer thresholds! */ |
1387 | RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb); | 1392 | RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb); |
1388 | 1393 | ||
@@ -1390,8 +1395,6 @@ static void rtl8139_hw_start (struct net_device *dev) | |||
1390 | RTL_W32 (RxConfig, tp->rx_config); | 1395 | RTL_W32 (RxConfig, tp->rx_config); |
1391 | RTL_W32 (TxConfig, rtl8139_tx_config); | 1396 | RTL_W32 (TxConfig, rtl8139_tx_config); |
1392 | 1397 | ||
1393 | tp->cur_rx = 0; | ||
1394 | |||
1395 | rtl_check_media (dev, 1); | 1398 | rtl_check_media (dev, 1); |
1396 | 1399 | ||
1397 | if (tp->chipset >= CH_8139B) { | 1400 | if (tp->chipset >= CH_8139B) { |
@@ -1406,9 +1409,6 @@ static void rtl8139_hw_start (struct net_device *dev) | |||
1406 | /* Lock Config[01234] and BMCR register writes */ | 1409 | /* Lock Config[01234] and BMCR register writes */ |
1407 | RTL_W8 (Cfg9346, Cfg9346_Lock); | 1410 | RTL_W8 (Cfg9346, Cfg9346_Lock); |
1408 | 1411 | ||
1409 | /* init Rx ring buffer DMA address */ | ||
1410 | RTL_W32_F (RxBuf, tp->rx_ring_dma); | ||
1411 | |||
1412 | /* init Tx buffer DMA addresses */ | 1412 | /* init Tx buffer DMA addresses */ |
1413 | for (i = 0; i < NUM_TX_DESC; i++) | 1413 | for (i = 0; i < NUM_TX_DESC; i++) |
1414 | RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - tp->tx_bufs)); | 1414 | RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - tp->tx_bufs)); |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 9e921544ba20..214a92d1ef75 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -28,9 +28,9 @@ if NETDEVICES | |||
28 | 28 | ||
29 | config COMPAT_NET_DEV_OPS | 29 | config COMPAT_NET_DEV_OPS |
30 | default y | 30 | default y |
31 | bool "Enable older network device API compatiablity" | 31 | bool "Enable older network device API compatibility" |
32 | ---help--- | 32 | ---help--- |
33 | This option enables kernel compatiability with older network devices | 33 | This option enables kernel compatibility with older network devices |
34 | that do not use net_device_ops interface. | 34 | that do not use net_device_ops interface. |
35 | 35 | ||
36 | If unsure, say Y. | 36 | If unsure, say Y. |
diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c index ab0e5febef83..7ea48414c6cb 100644 --- a/drivers/net/cxgb3/cxgb3_main.c +++ b/drivers/net/cxgb3/cxgb3_main.c | |||
@@ -1117,8 +1117,8 @@ static void cxgb_down(struct adapter *adapter) | |||
1117 | spin_unlock_irq(&adapter->work_lock); | 1117 | spin_unlock_irq(&adapter->work_lock); |
1118 | 1118 | ||
1119 | free_irq_resources(adapter); | 1119 | free_irq_resources(adapter); |
1120 | flush_workqueue(cxgb3_wq); /* wait for external IRQ handler */ | ||
1121 | quiesce_rx(adapter); | 1120 | quiesce_rx(adapter); |
1121 | flush_workqueue(cxgb3_wq); /* wait for external IRQ handler */ | ||
1122 | } | 1122 | } |
1123 | 1123 | ||
1124 | static void schedule_chk_task(struct adapter *adap) | 1124 | static void schedule_chk_task(struct adapter *adap) |
@@ -1187,6 +1187,9 @@ static int offload_close(struct t3cdev *tdev) | |||
1187 | 1187 | ||
1188 | sysfs_remove_group(&tdev->lldev->dev.kobj, &offload_attr_group); | 1188 | sysfs_remove_group(&tdev->lldev->dev.kobj, &offload_attr_group); |
1189 | 1189 | ||
1190 | /* Flush work scheduled while releasing TIDs */ | ||
1191 | flush_scheduled_work(); | ||
1192 | |||
1190 | tdev->lldev = NULL; | 1193 | tdev->lldev = NULL; |
1191 | cxgb3_set_dummy_ops(tdev); | 1194 | cxgb3_set_dummy_ops(tdev); |
1192 | t3_tp_set_offload_mode(adapter, 0); | 1195 | t3_tp_set_offload_mode(adapter, 0); |
@@ -1232,6 +1235,10 @@ static int cxgb_close(struct net_device *dev) | |||
1232 | struct port_info *pi = netdev_priv(dev); | 1235 | struct port_info *pi = netdev_priv(dev); |
1233 | struct adapter *adapter = pi->adapter; | 1236 | struct adapter *adapter = pi->adapter; |
1234 | 1237 | ||
1238 | |||
1239 | if (!adapter->open_device_map) | ||
1240 | return 0; | ||
1241 | |||
1235 | /* Stop link fault interrupts */ | 1242 | /* Stop link fault interrupts */ |
1236 | t3_xgm_intr_disable(adapter, pi->port_id); | 1243 | t3_xgm_intr_disable(adapter, pi->port_id); |
1237 | t3_read_reg(adapter, A_XGM_INT_STATUS + pi->mac.offset); | 1244 | t3_read_reg(adapter, A_XGM_INT_STATUS + pi->mac.offset); |
@@ -1247,8 +1254,7 @@ static int cxgb_close(struct net_device *dev) | |||
1247 | spin_unlock_irq(&adapter->work_lock); | 1254 | spin_unlock_irq(&adapter->work_lock); |
1248 | 1255 | ||
1249 | if (!(adapter->open_device_map & PORT_MASK)) | 1256 | if (!(adapter->open_device_map & PORT_MASK)) |
1250 | cancel_rearming_delayed_workqueue(cxgb3_wq, | 1257 | cancel_delayed_work_sync(&adapter->adap_check_task); |
1251 | &adapter->adap_check_task); | ||
1252 | 1258 | ||
1253 | if (!adapter->open_device_map) | 1259 | if (!adapter->open_device_map) |
1254 | cxgb_down(adapter); | 1260 | cxgb_down(adapter); |
@@ -2493,6 +2499,7 @@ static void check_link_status(struct adapter *adapter) | |||
2493 | 2499 | ||
2494 | spin_lock_irq(&adapter->work_lock); | 2500 | spin_lock_irq(&adapter->work_lock); |
2495 | if (p->link_fault) { | 2501 | if (p->link_fault) { |
2502 | t3_link_fault(adapter, i); | ||
2496 | spin_unlock_irq(&adapter->work_lock); | 2503 | spin_unlock_irq(&adapter->work_lock); |
2497 | continue; | 2504 | continue; |
2498 | } | 2505 | } |
@@ -2554,9 +2561,7 @@ static void t3_adap_check_task(struct work_struct *work) | |||
2554 | 2561 | ||
2555 | adapter->check_task_cnt++; | 2562 | adapter->check_task_cnt++; |
2556 | 2563 | ||
2557 | /* Check link status for PHYs without interrupts */ | 2564 | check_link_status(adapter); |
2558 | if (p->linkpoll_period) | ||
2559 | check_link_status(adapter); | ||
2560 | 2565 | ||
2561 | /* Accumulate MAC stats if needed */ | 2566 | /* Accumulate MAC stats if needed */ |
2562 | if (!p->linkpoll_period || | 2567 | if (!p->linkpoll_period || |
@@ -2680,21 +2685,6 @@ void t3_os_ext_intr_handler(struct adapter *adapter) | |||
2680 | spin_unlock(&adapter->work_lock); | 2685 | spin_unlock(&adapter->work_lock); |
2681 | } | 2686 | } |
2682 | 2687 | ||
2683 | static void link_fault_task(struct work_struct *work) | ||
2684 | { | ||
2685 | struct adapter *adapter = container_of(work, struct adapter, | ||
2686 | link_fault_handler_task); | ||
2687 | int i; | ||
2688 | |||
2689 | for_each_port(adapter, i) { | ||
2690 | struct net_device *netdev = adapter->port[i]; | ||
2691 | struct port_info *pi = netdev_priv(netdev); | ||
2692 | |||
2693 | if (pi->link_fault) | ||
2694 | t3_link_fault(adapter, i); | ||
2695 | } | ||
2696 | } | ||
2697 | |||
2698 | void t3_os_link_fault_handler(struct adapter *adapter, int port_id) | 2688 | void t3_os_link_fault_handler(struct adapter *adapter, int port_id) |
2699 | { | 2689 | { |
2700 | struct net_device *netdev = adapter->port[port_id]; | 2690 | struct net_device *netdev = adapter->port[port_id]; |
@@ -2702,7 +2692,6 @@ void t3_os_link_fault_handler(struct adapter *adapter, int port_id) | |||
2702 | 2692 | ||
2703 | spin_lock(&adapter->work_lock); | 2693 | spin_lock(&adapter->work_lock); |
2704 | pi->link_fault = 1; | 2694 | pi->link_fault = 1; |
2705 | queue_work(cxgb3_wq, &adapter->link_fault_handler_task); | ||
2706 | spin_unlock(&adapter->work_lock); | 2695 | spin_unlock(&adapter->work_lock); |
2707 | } | 2696 | } |
2708 | 2697 | ||
@@ -2838,6 +2827,9 @@ static pci_ers_result_t t3_io_error_detected(struct pci_dev *pdev, | |||
2838 | struct adapter *adapter = pci_get_drvdata(pdev); | 2827 | struct adapter *adapter = pci_get_drvdata(pdev); |
2839 | int ret; | 2828 | int ret; |
2840 | 2829 | ||
2830 | if (state == pci_channel_io_perm_failure) | ||
2831 | return PCI_ERS_RESULT_DISCONNECT; | ||
2832 | |||
2841 | ret = t3_adapter_error(adapter, 0); | 2833 | ret = t3_adapter_error(adapter, 0); |
2842 | 2834 | ||
2843 | /* Request a slot reset. */ | 2835 | /* Request a slot reset. */ |
@@ -2932,8 +2924,13 @@ static int __devinit cxgb_enable_msix(struct adapter *adap) | |||
2932 | while ((err = pci_enable_msix(adap->pdev, entries, vectors)) > 0) | 2924 | while ((err = pci_enable_msix(adap->pdev, entries, vectors)) > 0) |
2933 | vectors = err; | 2925 | vectors = err; |
2934 | 2926 | ||
2935 | if (!err && vectors < (adap->params.nports + 1)) | 2927 | if (err < 0) |
2928 | pci_disable_msix(adap->pdev); | ||
2929 | |||
2930 | if (!err && vectors < (adap->params.nports + 1)) { | ||
2931 | pci_disable_msix(adap->pdev); | ||
2936 | err = -1; | 2932 | err = -1; |
2933 | } | ||
2937 | 2934 | ||
2938 | if (!err) { | 2935 | if (!err) { |
2939 | for (i = 0; i < vectors; ++i) | 2936 | for (i = 0; i < vectors; ++i) |
@@ -3082,7 +3079,6 @@ static int __devinit init_one(struct pci_dev *pdev, | |||
3082 | 3079 | ||
3083 | INIT_LIST_HEAD(&adapter->adapter_list); | 3080 | INIT_LIST_HEAD(&adapter->adapter_list); |
3084 | INIT_WORK(&adapter->ext_intr_handler_task, ext_intr_task); | 3081 | INIT_WORK(&adapter->ext_intr_handler_task, ext_intr_task); |
3085 | INIT_WORK(&adapter->link_fault_handler_task, link_fault_task); | ||
3086 | INIT_WORK(&adapter->fatal_error_handler_task, fatal_error_task); | 3082 | INIT_WORK(&adapter->fatal_error_handler_task, fatal_error_task); |
3087 | INIT_DELAYED_WORK(&adapter->adap_check_task, t3_adap_check_task); | 3083 | INIT_DELAYED_WORK(&adapter->adap_check_task, t3_adap_check_task); |
3088 | 3084 | ||
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c index 31ed31a3428b..e1bd690ff831 100644 --- a/drivers/net/cxgb3/t3_hw.c +++ b/drivers/net/cxgb3/t3_hw.c | |||
@@ -1202,7 +1202,6 @@ void t3_link_changed(struct adapter *adapter, int port_id) | |||
1202 | struct cphy *phy = &pi->phy; | 1202 | struct cphy *phy = &pi->phy; |
1203 | struct cmac *mac = &pi->mac; | 1203 | struct cmac *mac = &pi->mac; |
1204 | struct link_config *lc = &pi->link_config; | 1204 | struct link_config *lc = &pi->link_config; |
1205 | int force_link_down = 0; | ||
1206 | 1205 | ||
1207 | phy->ops->get_link_status(phy, &link_ok, &speed, &duplex, &fc); | 1206 | phy->ops->get_link_status(phy, &link_ok, &speed, &duplex, &fc); |
1208 | 1207 | ||
@@ -1218,14 +1217,9 @@ void t3_link_changed(struct adapter *adapter, int port_id) | |||
1218 | status = t3_read_reg(adapter, A_XGM_INT_STATUS + mac->offset); | 1217 | status = t3_read_reg(adapter, A_XGM_INT_STATUS + mac->offset); |
1219 | if (status & F_LINKFAULTCHANGE) { | 1218 | if (status & F_LINKFAULTCHANGE) { |
1220 | mac->stats.link_faults++; | 1219 | mac->stats.link_faults++; |
1221 | force_link_down = 1; | 1220 | pi->link_fault = 1; |
1222 | } | 1221 | } |
1223 | t3_open_rx_traffic(mac, rx_cfg, rx_hash_high, rx_hash_low); | 1222 | t3_open_rx_traffic(mac, rx_cfg, rx_hash_high, rx_hash_low); |
1224 | |||
1225 | if (force_link_down) { | ||
1226 | t3_os_link_fault_handler(adapter, port_id); | ||
1227 | return; | ||
1228 | } | ||
1229 | } | 1223 | } |
1230 | 1224 | ||
1231 | if (lc->requested_fc & PAUSE_AUTONEG) | 1225 | if (lc->requested_fc & PAUSE_AUTONEG) |
@@ -1292,9 +1286,6 @@ void t3_link_fault(struct adapter *adapter, int port_id) | |||
1292 | /* Account link faults only when the phy reports a link up */ | 1286 | /* Account link faults only when the phy reports a link up */ |
1293 | if (link_ok) | 1287 | if (link_ok) |
1294 | mac->stats.link_faults++; | 1288 | mac->stats.link_faults++; |
1295 | |||
1296 | msleep(1000); | ||
1297 | t3_os_link_fault_handler(adapter, port_id); | ||
1298 | } else { | 1289 | } else { |
1299 | if (link_ok) | 1290 | if (link_ok) |
1300 | t3_write_reg(adapter, A_XGM_XAUI_ACT_CTRL + mac->offset, | 1291 | t3_write_reg(adapter, A_XGM_XAUI_ACT_CTRL + mac->offset, |
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index 5c0b457c7868..0f9ee1348552 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
@@ -2728,7 +2728,7 @@ static void __devexit e100_remove(struct pci_dev *pdev) | |||
2728 | #define E100_82552_SMARTSPEED 0x14 /* SmartSpeed Ctrl register */ | 2728 | #define E100_82552_SMARTSPEED 0x14 /* SmartSpeed Ctrl register */ |
2729 | #define E100_82552_REV_ANEG 0x0200 /* Reverse auto-negotiation */ | 2729 | #define E100_82552_REV_ANEG 0x0200 /* Reverse auto-negotiation */ |
2730 | #define E100_82552_ANEG_NOW 0x0400 /* Auto-negotiate now */ | 2730 | #define E100_82552_ANEG_NOW 0x0400 /* Auto-negotiate now */ |
2731 | static int e100_suspend(struct pci_dev *pdev, pm_message_t state) | 2731 | static void __e100_shutdown(struct pci_dev *pdev, bool *enable_wake) |
2732 | { | 2732 | { |
2733 | struct net_device *netdev = pci_get_drvdata(pdev); | 2733 | struct net_device *netdev = pci_get_drvdata(pdev); |
2734 | struct nic *nic = netdev_priv(netdev); | 2734 | struct nic *nic = netdev_priv(netdev); |
@@ -2749,19 +2749,32 @@ static int e100_suspend(struct pci_dev *pdev, pm_message_t state) | |||
2749 | E100_82552_SMARTSPEED, smartspeed | | 2749 | E100_82552_SMARTSPEED, smartspeed | |
2750 | E100_82552_REV_ANEG | E100_82552_ANEG_NOW); | 2750 | E100_82552_REV_ANEG | E100_82552_ANEG_NOW); |
2751 | } | 2751 | } |
2752 | if (pci_enable_wake(pdev, PCI_D3cold, true)) | 2752 | *enable_wake = true; |
2753 | pci_enable_wake(pdev, PCI_D3hot, true); | ||
2754 | } else { | 2753 | } else { |
2755 | pci_enable_wake(pdev, PCI_D3hot, false); | 2754 | *enable_wake = false; |
2756 | } | 2755 | } |
2757 | 2756 | ||
2758 | pci_disable_device(pdev); | 2757 | pci_disable_device(pdev); |
2759 | pci_set_power_state(pdev, PCI_D3hot); | 2758 | } |
2760 | 2759 | ||
2761 | return 0; | 2760 | static int __e100_power_off(struct pci_dev *pdev, bool wake) |
2761 | { | ||
2762 | if (wake) { | ||
2763 | return pci_prepare_to_sleep(pdev); | ||
2764 | } else { | ||
2765 | pci_wake_from_d3(pdev, false); | ||
2766 | return pci_set_power_state(pdev, PCI_D3hot); | ||
2767 | } | ||
2762 | } | 2768 | } |
2763 | 2769 | ||
2764 | #ifdef CONFIG_PM | 2770 | #ifdef CONFIG_PM |
2771 | static int e100_suspend(struct pci_dev *pdev, pm_message_t state) | ||
2772 | { | ||
2773 | bool wake; | ||
2774 | __e100_shutdown(pdev, &wake); | ||
2775 | return __e100_power_off(pdev, wake); | ||
2776 | } | ||
2777 | |||
2765 | static int e100_resume(struct pci_dev *pdev) | 2778 | static int e100_resume(struct pci_dev *pdev) |
2766 | { | 2779 | { |
2767 | struct net_device *netdev = pci_get_drvdata(pdev); | 2780 | struct net_device *netdev = pci_get_drvdata(pdev); |
@@ -2792,7 +2805,10 @@ static int e100_resume(struct pci_dev *pdev) | |||
2792 | 2805 | ||
2793 | static void e100_shutdown(struct pci_dev *pdev) | 2806 | static void e100_shutdown(struct pci_dev *pdev) |
2794 | { | 2807 | { |
2795 | e100_suspend(pdev, PMSG_SUSPEND); | 2808 | bool wake; |
2809 | __e100_shutdown(pdev, &wake); | ||
2810 | if (system_state == SYSTEM_POWER_OFF) | ||
2811 | __e100_power_off(pdev, wake); | ||
2796 | } | 2812 | } |
2797 | 2813 | ||
2798 | /* ------------------ PCI Error Recovery infrastructure -------------- */ | 2814 | /* ------------------ PCI Error Recovery infrastructure -------------- */ |
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c index ef12931d302a..6a46ceed9436 100644 --- a/drivers/net/e1000/e1000_main.c +++ b/drivers/net/e1000/e1000_main.c | |||
@@ -3834,7 +3834,6 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter, | |||
3834 | struct e1000_buffer *buffer_info; | 3834 | struct e1000_buffer *buffer_info; |
3835 | unsigned int i, eop; | 3835 | unsigned int i, eop; |
3836 | unsigned int count = 0; | 3836 | unsigned int count = 0; |
3837 | bool cleaned = false; | ||
3838 | unsigned int total_tx_bytes=0, total_tx_packets=0; | 3837 | unsigned int total_tx_bytes=0, total_tx_packets=0; |
3839 | 3838 | ||
3840 | i = tx_ring->next_to_clean; | 3839 | i = tx_ring->next_to_clean; |
@@ -3843,7 +3842,8 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter, | |||
3843 | 3842 | ||
3844 | while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) && | 3843 | while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) && |
3845 | (count < tx_ring->count)) { | 3844 | (count < tx_ring->count)) { |
3846 | for (cleaned = false; !cleaned; count++) { | 3845 | bool cleaned = false; |
3846 | for ( ; !cleaned; count++) { | ||
3847 | tx_desc = E1000_TX_DESC(*tx_ring, i); | 3847 | tx_desc = E1000_TX_DESC(*tx_ring, i); |
3848 | buffer_info = &tx_ring->buffer_info[i]; | 3848 | buffer_info = &tx_ring->buffer_info[i]; |
3849 | cleaned = (i == eop); | 3849 | cleaned = (i == eop); |
@@ -3871,7 +3871,7 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter, | |||
3871 | tx_ring->next_to_clean = i; | 3871 | tx_ring->next_to_clean = i; |
3872 | 3872 | ||
3873 | #define TX_WAKE_THRESHOLD 32 | 3873 | #define TX_WAKE_THRESHOLD 32 |
3874 | if (unlikely(cleaned && netif_carrier_ok(netdev) && | 3874 | if (unlikely(count && netif_carrier_ok(netdev) && |
3875 | E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) { | 3875 | E1000_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD)) { |
3876 | /* Make sure that anybody stopping the queue after this | 3876 | /* Make sure that anybody stopping the queue after this |
3877 | * sees the new next_to_clean. | 3877 | * sees the new next_to_clean. |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 1693ed116b16..ca82f19a7ed1 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
@@ -621,7 +621,6 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter) | |||
621 | struct e1000_buffer *buffer_info; | 621 | struct e1000_buffer *buffer_info; |
622 | unsigned int i, eop; | 622 | unsigned int i, eop; |
623 | unsigned int count = 0; | 623 | unsigned int count = 0; |
624 | bool cleaned = false; | ||
625 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; | 624 | unsigned int total_tx_bytes = 0, total_tx_packets = 0; |
626 | 625 | ||
627 | i = tx_ring->next_to_clean; | 626 | i = tx_ring->next_to_clean; |
@@ -630,7 +629,8 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter) | |||
630 | 629 | ||
631 | while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) && | 630 | while ((eop_desc->upper.data & cpu_to_le32(E1000_TXD_STAT_DD)) && |
632 | (count < tx_ring->count)) { | 631 | (count < tx_ring->count)) { |
633 | for (cleaned = 0; !cleaned; count++) { | 632 | bool cleaned = false; |
633 | for (; !cleaned; count++) { | ||
634 | tx_desc = E1000_TX_DESC(*tx_ring, i); | 634 | tx_desc = E1000_TX_DESC(*tx_ring, i); |
635 | buffer_info = &tx_ring->buffer_info[i]; | 635 | buffer_info = &tx_ring->buffer_info[i]; |
636 | cleaned = (i == eop); | 636 | cleaned = (i == eop); |
@@ -661,8 +661,8 @@ static bool e1000_clean_tx_irq(struct e1000_adapter *adapter) | |||
661 | tx_ring->next_to_clean = i; | 661 | tx_ring->next_to_clean = i; |
662 | 662 | ||
663 | #define TX_WAKE_THRESHOLD 32 | 663 | #define TX_WAKE_THRESHOLD 32 |
664 | if (cleaned && netif_carrier_ok(netdev) && | 664 | if (count && netif_carrier_ok(netdev) && |
665 | e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) { | 665 | e1000_desc_unused(tx_ring) >= TX_WAKE_THRESHOLD) { |
666 | /* Make sure that anybody stopping the queue after this | 666 | /* Make sure that anybody stopping the queue after this |
667 | * sees the new next_to_clean. | 667 | * sees the new next_to_clean. |
668 | */ | 668 | */ |
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index 11d5db16ed9c..f9a846b1b92f 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
@@ -1880,6 +1880,7 @@ static void nv_init_tx(struct net_device *dev) | |||
1880 | np->tx_pkts_in_progress = 0; | 1880 | np->tx_pkts_in_progress = 0; |
1881 | np->tx_change_owner = NULL; | 1881 | np->tx_change_owner = NULL; |
1882 | np->tx_end_flip = NULL; | 1882 | np->tx_end_flip = NULL; |
1883 | np->tx_stop = 0; | ||
1883 | 1884 | ||
1884 | for (i = 0; i < np->tx_ring_size; i++) { | 1885 | for (i = 0; i < np->tx_ring_size; i++) { |
1885 | if (!nv_optimized(np)) { | 1886 | if (!nv_optimized(np)) { |
@@ -2530,6 +2531,8 @@ static void nv_tx_timeout(struct net_device *dev) | |||
2530 | struct fe_priv *np = netdev_priv(dev); | 2531 | struct fe_priv *np = netdev_priv(dev); |
2531 | u8 __iomem *base = get_hwbase(dev); | 2532 | u8 __iomem *base = get_hwbase(dev); |
2532 | u32 status; | 2533 | u32 status; |
2534 | union ring_type put_tx; | ||
2535 | int saved_tx_limit; | ||
2533 | 2536 | ||
2534 | if (np->msi_flags & NV_MSI_X_ENABLED) | 2537 | if (np->msi_flags & NV_MSI_X_ENABLED) |
2535 | status = readl(base + NvRegMSIXIrqStatus) & NVREG_IRQSTAT_MASK; | 2538 | status = readl(base + NvRegMSIXIrqStatus) & NVREG_IRQSTAT_MASK; |
@@ -2589,24 +2592,32 @@ static void nv_tx_timeout(struct net_device *dev) | |||
2589 | /* 1) stop tx engine */ | 2592 | /* 1) stop tx engine */ |
2590 | nv_stop_tx(dev); | 2593 | nv_stop_tx(dev); |
2591 | 2594 | ||
2592 | /* 2) check that the packets were not sent already: */ | 2595 | /* 2) complete any outstanding tx and do not give HW any limited tx pkts */ |
2596 | saved_tx_limit = np->tx_limit; | ||
2597 | np->tx_limit = 0; /* prevent giving HW any limited pkts */ | ||
2598 | np->tx_stop = 0; /* prevent waking tx queue */ | ||
2593 | if (!nv_optimized(np)) | 2599 | if (!nv_optimized(np)) |
2594 | nv_tx_done(dev, np->tx_ring_size); | 2600 | nv_tx_done(dev, np->tx_ring_size); |
2595 | else | 2601 | else |
2596 | nv_tx_done_optimized(dev, np->tx_ring_size); | 2602 | nv_tx_done_optimized(dev, np->tx_ring_size); |
2597 | 2603 | ||
2598 | /* 3) if there are dead entries: clear everything */ | 2604 | /* save current HW postion */ |
2599 | if (np->get_tx_ctx != np->put_tx_ctx) { | 2605 | if (np->tx_change_owner) |
2600 | printk(KERN_DEBUG "%s: tx_timeout: dead entries!\n", dev->name); | 2606 | put_tx.ex = np->tx_change_owner->first_tx_desc; |
2601 | nv_drain_tx(dev); | 2607 | else |
2602 | nv_init_tx(dev); | 2608 | put_tx = np->put_tx; |
2603 | setup_hw_rings(dev, NV_SETUP_TX_RING); | ||
2604 | } | ||
2605 | 2609 | ||
2606 | netif_wake_queue(dev); | 2610 | /* 3) clear all tx state */ |
2611 | nv_drain_tx(dev); | ||
2612 | nv_init_tx(dev); | ||
2613 | |||
2614 | /* 4) restore state to current HW position */ | ||
2615 | np->get_tx = np->put_tx = put_tx; | ||
2616 | np->tx_limit = saved_tx_limit; | ||
2607 | 2617 | ||
2608 | /* 4) restart tx engine */ | 2618 | /* 5) restart tx engine */ |
2609 | nv_start_tx(dev); | 2619 | nv_start_tx(dev); |
2620 | netif_wake_queue(dev); | ||
2610 | spin_unlock_irq(&np->lock); | 2621 | spin_unlock_irq(&np->lock); |
2611 | } | 2622 | } |
2612 | 2623 | ||
diff --git a/drivers/net/ixgbe/ixgbe_common.c b/drivers/net/ixgbe/ixgbe_common.c index 5567519676d5..186a65069b33 100644 --- a/drivers/net/ixgbe/ixgbe_common.c +++ b/drivers/net/ixgbe/ixgbe_common.c | |||
@@ -50,7 +50,6 @@ static u16 ixgbe_calc_eeprom_checksum(struct ixgbe_hw *hw); | |||
50 | static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index); | 50 | static void ixgbe_enable_rar(struct ixgbe_hw *hw, u32 index); |
51 | static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index); | 51 | static void ixgbe_disable_rar(struct ixgbe_hw *hw, u32 index); |
52 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr); | 52 | static s32 ixgbe_mta_vector(struct ixgbe_hw *hw, u8 *mc_addr); |
53 | static void ixgbe_add_mc_addr(struct ixgbe_hw *hw, u8 *mc_addr); | ||
54 | static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq); | 53 | static void ixgbe_add_uc_addr(struct ixgbe_hw *hw, u8 *addr, u32 vmdq); |
55 | 54 | ||
56 | /** | 55 | /** |
@@ -1377,8 +1376,7 @@ s32 ixgbe_update_uc_addr_list_generic(struct ixgbe_hw *hw, u8 *addr_list, | |||
1377 | * Clear accounting of old secondary address list, | 1376 | * Clear accounting of old secondary address list, |
1378 | * don't count RAR[0] | 1377 | * don't count RAR[0] |
1379 | */ | 1378 | */ |
1380 | uc_addr_in_use = hw->addr_ctrl.rar_used_count - | 1379 | uc_addr_in_use = hw->addr_ctrl.rar_used_count - 1; |
1381 | hw->addr_ctrl.mc_addr_in_rar_count - 1; | ||
1382 | hw->addr_ctrl.rar_used_count -= uc_addr_in_use; | 1380 | hw->addr_ctrl.rar_used_count -= uc_addr_in_use; |
1383 | hw->addr_ctrl.overflow_promisc = 0; | 1381 | hw->addr_ctrl.overflow_promisc = 0; |
1384 | 1382 | ||
@@ -1493,40 +1491,6 @@ static void ixgbe_set_mta(struct ixgbe_hw *hw, u8 *mc_addr) | |||
1493 | } | 1491 | } |
1494 | 1492 | ||
1495 | /** | 1493 | /** |
1496 | * ixgbe_add_mc_addr - Adds a multicast address. | ||
1497 | * @hw: pointer to hardware structure | ||
1498 | * @mc_addr: new multicast address | ||
1499 | * | ||
1500 | * Adds it to unused receive address register or to the multicast table. | ||
1501 | **/ | ||
1502 | static void ixgbe_add_mc_addr(struct ixgbe_hw *hw, u8 *mc_addr) | ||
1503 | { | ||
1504 | u32 rar_entries = hw->mac.num_rar_entries; | ||
1505 | u32 rar; | ||
1506 | |||
1507 | hw_dbg(hw, " MC Addr =%.2X %.2X %.2X %.2X %.2X %.2X\n", | ||
1508 | mc_addr[0], mc_addr[1], mc_addr[2], | ||
1509 | mc_addr[3], mc_addr[4], mc_addr[5]); | ||
1510 | |||
1511 | /* | ||
1512 | * Place this multicast address in the RAR if there is room, | ||
1513 | * else put it in the MTA | ||
1514 | */ | ||
1515 | if (hw->addr_ctrl.rar_used_count < rar_entries) { | ||
1516 | /* use RAR from the end up for multicast */ | ||
1517 | rar = rar_entries - hw->addr_ctrl.mc_addr_in_rar_count - 1; | ||
1518 | hw->mac.ops.set_rar(hw, rar, mc_addr, 0, IXGBE_RAH_AV); | ||
1519 | hw_dbg(hw, "Added a multicast address to RAR[%d]\n", rar); | ||
1520 | hw->addr_ctrl.rar_used_count++; | ||
1521 | hw->addr_ctrl.mc_addr_in_rar_count++; | ||
1522 | } else { | ||
1523 | ixgbe_set_mta(hw, mc_addr); | ||
1524 | } | ||
1525 | |||
1526 | hw_dbg(hw, "ixgbe_add_mc_addr Complete\n"); | ||
1527 | } | ||
1528 | |||
1529 | /** | ||
1530 | * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses | 1494 | * ixgbe_update_mc_addr_list_generic - Updates MAC list of multicast addresses |
1531 | * @hw: pointer to hardware structure | 1495 | * @hw: pointer to hardware structure |
1532 | * @mc_addr_list: the list of new multicast addresses | 1496 | * @mc_addr_list: the list of new multicast addresses |
@@ -1542,7 +1506,6 @@ s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, u8 *mc_addr_list, | |||
1542 | u32 mc_addr_count, ixgbe_mc_addr_itr next) | 1506 | u32 mc_addr_count, ixgbe_mc_addr_itr next) |
1543 | { | 1507 | { |
1544 | u32 i; | 1508 | u32 i; |
1545 | u32 rar_entries = hw->mac.num_rar_entries; | ||
1546 | u32 vmdq; | 1509 | u32 vmdq; |
1547 | 1510 | ||
1548 | /* | 1511 | /* |
@@ -1550,18 +1513,8 @@ s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, u8 *mc_addr_list, | |||
1550 | * use. | 1513 | * use. |
1551 | */ | 1514 | */ |
1552 | hw->addr_ctrl.num_mc_addrs = mc_addr_count; | 1515 | hw->addr_ctrl.num_mc_addrs = mc_addr_count; |
1553 | hw->addr_ctrl.rar_used_count -= hw->addr_ctrl.mc_addr_in_rar_count; | ||
1554 | hw->addr_ctrl.mc_addr_in_rar_count = 0; | ||
1555 | hw->addr_ctrl.mta_in_use = 0; | 1516 | hw->addr_ctrl.mta_in_use = 0; |
1556 | 1517 | ||
1557 | /* Zero out the other receive addresses. */ | ||
1558 | hw_dbg(hw, "Clearing RAR[%d-%d]\n", hw->addr_ctrl.rar_used_count, | ||
1559 | rar_entries - 1); | ||
1560 | for (i = hw->addr_ctrl.rar_used_count; i < rar_entries; i++) { | ||
1561 | IXGBE_WRITE_REG(hw, IXGBE_RAL(i), 0); | ||
1562 | IXGBE_WRITE_REG(hw, IXGBE_RAH(i), 0); | ||
1563 | } | ||
1564 | |||
1565 | /* Clear the MTA */ | 1518 | /* Clear the MTA */ |
1566 | hw_dbg(hw, " Clearing MTA\n"); | 1519 | hw_dbg(hw, " Clearing MTA\n"); |
1567 | for (i = 0; i < hw->mac.mcft_size; i++) | 1520 | for (i = 0; i < hw->mac.mcft_size; i++) |
@@ -1570,7 +1523,7 @@ s32 ixgbe_update_mc_addr_list_generic(struct ixgbe_hw *hw, u8 *mc_addr_list, | |||
1570 | /* Add the new addresses */ | 1523 | /* Add the new addresses */ |
1571 | for (i = 0; i < mc_addr_count; i++) { | 1524 | for (i = 0; i < mc_addr_count; i++) { |
1572 | hw_dbg(hw, " Adding the multicast addresses:\n"); | 1525 | hw_dbg(hw, " Adding the multicast addresses:\n"); |
1573 | ixgbe_add_mc_addr(hw, next(hw, &mc_addr_list, &vmdq)); | 1526 | ixgbe_set_mta(hw, next(hw, &mc_addr_list, &vmdq)); |
1574 | } | 1527 | } |
1575 | 1528 | ||
1576 | /* Enable mta */ | 1529 | /* Enable mta */ |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82599.c b/drivers/net/ixgbe/ixgbe_dcb_82599.c index 470b676c1dae..f4417fc3b0fd 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82599.c +++ b/drivers/net/ixgbe/ixgbe_dcb_82599.c | |||
@@ -290,7 +290,7 @@ s32 ixgbe_dcb_config_tx_data_arbiter_82599(struct ixgbe_hw *hw, | |||
290 | s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, | 290 | s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, |
291 | struct ixgbe_dcb_config *dcb_config) | 291 | struct ixgbe_dcb_config *dcb_config) |
292 | { | 292 | { |
293 | u32 i, reg; | 293 | u32 i, reg, rx_pba_size; |
294 | 294 | ||
295 | /* If PFC is disabled globally then fall back to LFC. */ | 295 | /* If PFC is disabled globally then fall back to LFC. */ |
296 | if (!dcb_config->pfc_mode_enable) { | 296 | if (!dcb_config->pfc_mode_enable) { |
@@ -301,17 +301,23 @@ s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, | |||
301 | 301 | ||
302 | /* Configure PFC Tx thresholds per TC */ | 302 | /* Configure PFC Tx thresholds per TC */ |
303 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { | 303 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
304 | /* Config and remember Tx */ | 304 | if (dcb_config->rx_pba_cfg == pba_equal) |
305 | rx_pba_size = IXGBE_RXPBSIZE_64KB; | ||
306 | else | ||
307 | rx_pba_size = (i < 4) ? IXGBE_RXPBSIZE_80KB | ||
308 | : IXGBE_RXPBSIZE_48KB; | ||
309 | |||
310 | reg = ((rx_pba_size >> 5) & 0xFFE0); | ||
305 | if (dcb_config->tc_config[i].dcb_pfc == pfc_enabled_full || | 311 | if (dcb_config->tc_config[i].dcb_pfc == pfc_enabled_full || |
306 | dcb_config->tc_config[i].dcb_pfc == pfc_enabled_tx) { | 312 | dcb_config->tc_config[i].dcb_pfc == pfc_enabled_tx) |
307 | reg = hw->fc.high_water | IXGBE_FCRTH_FCEN; | 313 | reg |= IXGBE_FCRTL_XONE; |
308 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), reg); | 314 | IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), reg); |
309 | reg = hw->fc.low_water | IXGBE_FCRTL_XONE; | 315 | |
310 | IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), reg); | 316 | reg = ((rx_pba_size >> 2) & 0xFFE0); |
311 | } else { | 317 | if (dcb_config->tc_config[i].dcb_pfc == pfc_enabled_full || |
312 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), 0); | 318 | dcb_config->tc_config[i].dcb_pfc == pfc_enabled_tx) |
313 | IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0); | 319 | reg |= IXGBE_FCRTH_FCEN; |
314 | } | 320 | IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), reg); |
315 | } | 321 | } |
316 | 322 | ||
317 | /* Configure pause time (2 TCs per register) */ | 323 | /* Configure pause time (2 TCs per register) */ |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index febde45cf9fa..07e778d3e5d2 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -2841,11 +2841,55 @@ static inline bool ixgbe_cache_ring_dcb(struct ixgbe_adapter *adapter) | |||
2841 | } | 2841 | } |
2842 | ret = true; | 2842 | ret = true; |
2843 | } else if (adapter->hw.mac.type == ixgbe_mac_82599EB) { | 2843 | } else if (adapter->hw.mac.type == ixgbe_mac_82599EB) { |
2844 | for (i = 0; i < dcb_i; i++) { | 2844 | if (dcb_i == 8) { |
2845 | adapter->rx_ring[i].reg_idx = i << 4; | 2845 | /* |
2846 | adapter->tx_ring[i].reg_idx = i << 4; | 2846 | * Tx TC0 starts at: descriptor queue 0 |
2847 | * Tx TC1 starts at: descriptor queue 32 | ||
2848 | * Tx TC2 starts at: descriptor queue 64 | ||
2849 | * Tx TC3 starts at: descriptor queue 80 | ||
2850 | * Tx TC4 starts at: descriptor queue 96 | ||
2851 | * Tx TC5 starts at: descriptor queue 104 | ||
2852 | * Tx TC6 starts at: descriptor queue 112 | ||
2853 | * Tx TC7 starts at: descriptor queue 120 | ||
2854 | * | ||
2855 | * Rx TC0-TC7 are offset by 16 queues each | ||
2856 | */ | ||
2857 | for (i = 0; i < 3; i++) { | ||
2858 | adapter->tx_ring[i].reg_idx = i << 5; | ||
2859 | adapter->rx_ring[i].reg_idx = i << 4; | ||
2860 | } | ||
2861 | for ( ; i < 5; i++) { | ||
2862 | adapter->tx_ring[i].reg_idx = | ||
2863 | ((i + 2) << 4); | ||
2864 | adapter->rx_ring[i].reg_idx = i << 4; | ||
2865 | } | ||
2866 | for ( ; i < dcb_i; i++) { | ||
2867 | adapter->tx_ring[i].reg_idx = | ||
2868 | ((i + 8) << 3); | ||
2869 | adapter->rx_ring[i].reg_idx = i << 4; | ||
2870 | } | ||
2871 | |||
2872 | ret = true; | ||
2873 | } else if (dcb_i == 4) { | ||
2874 | /* | ||
2875 | * Tx TC0 starts at: descriptor queue 0 | ||
2876 | * Tx TC1 starts at: descriptor queue 64 | ||
2877 | * Tx TC2 starts at: descriptor queue 96 | ||
2878 | * Tx TC3 starts at: descriptor queue 112 | ||
2879 | * | ||
2880 | * Rx TC0-TC3 are offset by 32 queues each | ||
2881 | */ | ||
2882 | adapter->tx_ring[0].reg_idx = 0; | ||
2883 | adapter->tx_ring[1].reg_idx = 64; | ||
2884 | adapter->tx_ring[2].reg_idx = 96; | ||
2885 | adapter->tx_ring[3].reg_idx = 112; | ||
2886 | for (i = 0 ; i < dcb_i; i++) | ||
2887 | adapter->rx_ring[i].reg_idx = i << 5; | ||
2888 | |||
2889 | ret = true; | ||
2890 | } else { | ||
2891 | ret = false; | ||
2847 | } | 2892 | } |
2848 | ret = true; | ||
2849 | } else { | 2893 | } else { |
2850 | ret = false; | 2894 | ret = false; |
2851 | } | 2895 | } |
@@ -3602,6 +3646,8 @@ static int ixgbe_resume(struct pci_dev *pdev) | |||
3602 | 3646 | ||
3603 | ixgbe_reset(adapter); | 3647 | ixgbe_reset(adapter); |
3604 | 3648 | ||
3649 | IXGBE_WRITE_REG(&adapter->hw, IXGBE_WUS, ~0); | ||
3650 | |||
3605 | if (netif_running(netdev)) { | 3651 | if (netif_running(netdev)) { |
3606 | err = ixgbe_open(adapter->netdev); | 3652 | err = ixgbe_open(adapter->netdev); |
3607 | if (err) | 3653 | if (err) |
@@ -3946,7 +3992,7 @@ static void ixgbe_sfp_config_module_task(struct work_struct *work) | |||
3946 | } | 3992 | } |
3947 | hw->mac.ops.setup_sfp(hw); | 3993 | hw->mac.ops.setup_sfp(hw); |
3948 | 3994 | ||
3949 | if (!adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK) | 3995 | if (!(adapter->flags & IXGBE_FLAG_IN_SFP_LINK_TASK)) |
3950 | /* This will also work for DA Twinax connections */ | 3996 | /* This will also work for DA Twinax connections */ |
3951 | schedule_work(&adapter->multispeed_fiber_task); | 3997 | schedule_work(&adapter->multispeed_fiber_task); |
3952 | adapter->flags &= ~IXGBE_FLAG_IN_SFP_MOD_TASK; | 3998 | adapter->flags &= ~IXGBE_FLAG_IN_SFP_MOD_TASK; |
@@ -4531,7 +4577,6 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev, | |||
4531 | const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data]; | 4577 | const struct ixgbe_info *ii = ixgbe_info_tbl[ent->driver_data]; |
4532 | static int cards_found; | 4578 | static int cards_found; |
4533 | int i, err, pci_using_dac; | 4579 | int i, err, pci_using_dac; |
4534 | u16 pm_value = 0; | ||
4535 | u32 part_num, eec; | 4580 | u32 part_num, eec; |
4536 | 4581 | ||
4537 | err = pci_enable_device(pdev); | 4582 | err = pci_enable_device(pdev); |
@@ -4719,11 +4764,8 @@ static int __devinit ixgbe_probe(struct pci_dev *pdev, | |||
4719 | 4764 | ||
4720 | switch (pdev->device) { | 4765 | switch (pdev->device) { |
4721 | case IXGBE_DEV_ID_82599_KX4: | 4766 | case IXGBE_DEV_ID_82599_KX4: |
4722 | #define IXGBE_PCIE_PMCSR 0x44 | 4767 | adapter->wol = (IXGBE_WUFC_MAG | IXGBE_WUFC_EX | |
4723 | adapter->wol = IXGBE_WUFC_MAG; | 4768 | IXGBE_WUFC_MC | IXGBE_WUFC_BC); |
4724 | pci_read_config_word(pdev, IXGBE_PCIE_PMCSR, &pm_value); | ||
4725 | pci_write_config_word(pdev, IXGBE_PCIE_PMCSR, | ||
4726 | (pm_value | (1 << 8))); | ||
4727 | break; | 4769 | break; |
4728 | default: | 4770 | default: |
4729 | adapter->wol = 0; | 4771 | adapter->wol = 0; |
diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 46073de290cf..e82aee41d77e 100644 --- a/drivers/net/macb.c +++ b/drivers/net/macb.c | |||
@@ -316,10 +316,11 @@ static void macb_tx(struct macb *bp) | |||
316 | dev_dbg(&bp->pdev->dev, "macb_tx status = %02lx\n", | 316 | dev_dbg(&bp->pdev->dev, "macb_tx status = %02lx\n", |
317 | (unsigned long)status); | 317 | (unsigned long)status); |
318 | 318 | ||
319 | if (status & MACB_BIT(UND)) { | 319 | if (status & (MACB_BIT(UND) | MACB_BIT(TSR_RLE))) { |
320 | int i; | 320 | int i; |
321 | printk(KERN_ERR "%s: TX underrun, resetting buffers\n", | 321 | printk(KERN_ERR "%s: TX %s, resetting buffers\n", |
322 | bp->dev->name); | 322 | bp->dev->name, status & MACB_BIT(UND) ? |
323 | "underrun" : "retry limit exceeded"); | ||
323 | 324 | ||
324 | /* Transfer ongoing, disable transmitter, to avoid confusion */ | 325 | /* Transfer ongoing, disable transmitter, to avoid confusion */ |
325 | if (status & MACB_BIT(TGO)) | 326 | if (status & MACB_BIT(TGO)) |
@@ -520,27 +521,10 @@ static int macb_poll(struct napi_struct *napi, int budget) | |||
520 | macb_writel(bp, RSR, status); | 521 | macb_writel(bp, RSR, status); |
521 | 522 | ||
522 | work_done = 0; | 523 | work_done = 0; |
523 | if (!status) { | ||
524 | /* | ||
525 | * This may happen if an interrupt was pending before | ||
526 | * this function was called last time, and no packets | ||
527 | * have been received since. | ||
528 | */ | ||
529 | napi_complete(napi); | ||
530 | goto out; | ||
531 | } | ||
532 | 524 | ||
533 | dev_dbg(&bp->pdev->dev, "poll: status = %08lx, budget = %d\n", | 525 | dev_dbg(&bp->pdev->dev, "poll: status = %08lx, budget = %d\n", |
534 | (unsigned long)status, budget); | 526 | (unsigned long)status, budget); |
535 | 527 | ||
536 | if (!(status & MACB_BIT(REC))) { | ||
537 | dev_warn(&bp->pdev->dev, | ||
538 | "No RX buffers complete, status = %02lx\n", | ||
539 | (unsigned long)status); | ||
540 | napi_complete(napi); | ||
541 | goto out; | ||
542 | } | ||
543 | |||
544 | work_done = macb_rx(bp, budget); | 528 | work_done = macb_rx(bp, budget); |
545 | if (work_done < budget) | 529 | if (work_done < budget) |
546 | napi_complete(napi); | 530 | napi_complete(napi); |
@@ -549,7 +533,6 @@ static int macb_poll(struct napi_struct *napi, int budget) | |||
549 | * We've done what we can to clean the buffers. Make sure we | 533 | * We've done what we can to clean the buffers. Make sure we |
550 | * get notified when new packets arrive. | 534 | * get notified when new packets arrive. |
551 | */ | 535 | */ |
552 | out: | ||
553 | macb_writel(bp, IER, MACB_RX_INT_FLAGS); | 536 | macb_writel(bp, IER, MACB_RX_INT_FLAGS); |
554 | 537 | ||
555 | /* TODO: Handle errors */ | 538 | /* TODO: Handle errors */ |
@@ -590,7 +573,8 @@ static irqreturn_t macb_interrupt(int irq, void *dev_id) | |||
590 | } | 573 | } |
591 | } | 574 | } |
592 | 575 | ||
593 | if (status & (MACB_BIT(TCOMP) | MACB_BIT(ISR_TUND))) | 576 | if (status & (MACB_BIT(TCOMP) | MACB_BIT(ISR_TUND) | |
577 | MACB_BIT(ISR_RLE))) | ||
594 | macb_tx(bp); | 578 | macb_tx(bp); |
595 | 579 | ||
596 | /* | 580 | /* |
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 70d3ef4a2c5f..214a8cf2b708 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -376,7 +376,8 @@ static u32 macvlan_ethtool_get_rx_csum(struct net_device *dev) | |||
376 | const struct macvlan_dev *vlan = netdev_priv(dev); | 376 | const struct macvlan_dev *vlan = netdev_priv(dev); |
377 | struct net_device *lowerdev = vlan->lowerdev; | 377 | struct net_device *lowerdev = vlan->lowerdev; |
378 | 378 | ||
379 | if (lowerdev->ethtool_ops->get_rx_csum == NULL) | 379 | if (lowerdev->ethtool_ops == NULL || |
380 | lowerdev->ethtool_ops->get_rx_csum == NULL) | ||
380 | return 0; | 381 | return 0; |
381 | return lowerdev->ethtool_ops->get_rx_csum(lowerdev); | 382 | return lowerdev->ethtool_ops->get_rx_csum(lowerdev); |
382 | } | 383 | } |
@@ -387,7 +388,8 @@ static int macvlan_ethtool_get_settings(struct net_device *dev, | |||
387 | const struct macvlan_dev *vlan = netdev_priv(dev); | 388 | const struct macvlan_dev *vlan = netdev_priv(dev); |
388 | struct net_device *lowerdev = vlan->lowerdev; | 389 | struct net_device *lowerdev = vlan->lowerdev; |
389 | 390 | ||
390 | if (!lowerdev->ethtool_ops->get_settings) | 391 | if (!lowerdev->ethtool_ops || |
392 | !lowerdev->ethtool_ops->get_settings) | ||
391 | return -EOPNOTSUPP; | 393 | return -EOPNOTSUPP; |
392 | 394 | ||
393 | return lowerdev->ethtool_ops->get_settings(lowerdev, cmd); | 395 | return lowerdev->ethtool_ops->get_settings(lowerdev, cmd); |
@@ -398,7 +400,8 @@ static u32 macvlan_ethtool_get_flags(struct net_device *dev) | |||
398 | const struct macvlan_dev *vlan = netdev_priv(dev); | 400 | const struct macvlan_dev *vlan = netdev_priv(dev); |
399 | struct net_device *lowerdev = vlan->lowerdev; | 401 | struct net_device *lowerdev = vlan->lowerdev; |
400 | 402 | ||
401 | if (!lowerdev->ethtool_ops->get_flags) | 403 | if (!lowerdev->ethtool_ops || |
404 | !lowerdev->ethtool_ops->get_flags) | ||
402 | return 0; | 405 | return 0; |
403 | return lowerdev->ethtool_ops->get_flags(lowerdev); | 406 | return lowerdev->ethtool_ops->get_flags(lowerdev); |
404 | } | 407 | } |
diff --git a/drivers/net/mlx4/en_main.c b/drivers/net/mlx4/en_main.c index eda72dd2120f..510633fd57f6 100644 --- a/drivers/net/mlx4/en_main.c +++ b/drivers/net/mlx4/en_main.c | |||
@@ -181,7 +181,7 @@ static void *mlx4_en_add(struct mlx4_dev *dev) | |||
181 | mdev->workqueue = create_singlethread_workqueue("mlx4_en"); | 181 | mdev->workqueue = create_singlethread_workqueue("mlx4_en"); |
182 | if (!mdev->workqueue) { | 182 | if (!mdev->workqueue) { |
183 | err = -ENOMEM; | 183 | err = -ENOMEM; |
184 | goto err_close_nic; | 184 | goto err_mr; |
185 | } | 185 | } |
186 | 186 | ||
187 | /* At this stage all non-port specific tasks are complete: | 187 | /* At this stage all non-port specific tasks are complete: |
@@ -214,9 +214,8 @@ err_free_netdev: | |||
214 | flush_workqueue(mdev->workqueue); | 214 | flush_workqueue(mdev->workqueue); |
215 | 215 | ||
216 | /* Stop event queue before we drop down to release shared SW state */ | 216 | /* Stop event queue before we drop down to release shared SW state */ |
217 | |||
218 | err_close_nic: | ||
219 | destroy_workqueue(mdev->workqueue); | 217 | destroy_workqueue(mdev->workqueue); |
218 | |||
220 | err_mr: | 219 | err_mr: |
221 | mlx4_mr_free(dev, &mdev->mr); | 220 | mlx4_mr_free(dev, &mdev->mr); |
222 | err_uar: | 221 | err_uar: |
diff --git a/drivers/net/mlx4/en_netdev.c b/drivers/net/mlx4/en_netdev.c index 303c23de6cac..7bcc49de1637 100644 --- a/drivers/net/mlx4/en_netdev.c +++ b/drivers/net/mlx4/en_netdev.c | |||
@@ -348,11 +348,9 @@ static void mlx4_en_tx_timeout(struct net_device *dev) | |||
348 | if (netif_msg_timer(priv)) | 348 | if (netif_msg_timer(priv)) |
349 | mlx4_warn(mdev, "Tx timeout called on port:%d\n", priv->port); | 349 | mlx4_warn(mdev, "Tx timeout called on port:%d\n", priv->port); |
350 | 350 | ||
351 | if (netif_carrier_ok(dev)) { | 351 | priv->port_stats.tx_timeout++; |
352 | priv->port_stats.tx_timeout++; | 352 | mlx4_dbg(DRV, priv, "Scheduling watchdog\n"); |
353 | mlx4_dbg(DRV, priv, "Scheduling watchdog\n"); | 353 | queue_work(mdev->workqueue, &priv->watchdog_task); |
354 | queue_work(mdev->workqueue, &priv->watchdog_task); | ||
355 | } | ||
356 | } | 354 | } |
357 | 355 | ||
358 | 356 | ||
@@ -585,7 +583,7 @@ int mlx4_en_start_port(struct net_device *dev) | |||
585 | err = mlx4_en_activate_cq(priv, cq); | 583 | err = mlx4_en_activate_cq(priv, cq); |
586 | if (err) { | 584 | if (err) { |
587 | mlx4_err(mdev, "Failed activating Rx CQ\n"); | 585 | mlx4_err(mdev, "Failed activating Rx CQ\n"); |
588 | goto rx_err; | 586 | goto cq_err; |
589 | } | 587 | } |
590 | for (j = 0; j < cq->size; j++) | 588 | for (j = 0; j < cq->size; j++) |
591 | cq->buf[j].owner_sr_opcode = MLX4_CQE_OWNER_MASK; | 589 | cq->buf[j].owner_sr_opcode = MLX4_CQE_OWNER_MASK; |
@@ -761,9 +759,14 @@ static void mlx4_en_restart(struct work_struct *work) | |||
761 | struct net_device *dev = priv->dev; | 759 | struct net_device *dev = priv->dev; |
762 | 760 | ||
763 | mlx4_dbg(DRV, priv, "Watchdog task called for port %d\n", priv->port); | 761 | mlx4_dbg(DRV, priv, "Watchdog task called for port %d\n", priv->port); |
764 | mlx4_en_stop_port(dev); | 762 | |
765 | if (mlx4_en_start_port(dev)) | 763 | mutex_lock(&mdev->state_lock); |
766 | mlx4_err(mdev, "Failed restarting port %d\n", priv->port); | 764 | if (priv->port_up) { |
765 | mlx4_en_stop_port(dev); | ||
766 | if (mlx4_en_start_port(dev)) | ||
767 | mlx4_err(mdev, "Failed restarting port %d\n", priv->port); | ||
768 | } | ||
769 | mutex_unlock(&mdev->state_lock); | ||
767 | } | 770 | } |
768 | 771 | ||
769 | 772 | ||
@@ -1054,7 +1057,7 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port, | |||
1054 | * Set driver features | 1057 | * Set driver features |
1055 | */ | 1058 | */ |
1056 | dev->features |= NETIF_F_SG; | 1059 | dev->features |= NETIF_F_SG; |
1057 | dev->features |= NETIF_F_HW_CSUM; | 1060 | dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM; |
1058 | dev->features |= NETIF_F_HIGHDMA; | 1061 | dev->features |= NETIF_F_HIGHDMA; |
1059 | dev->features |= NETIF_F_HW_VLAN_TX | | 1062 | dev->features |= NETIF_F_HW_VLAN_TX | |
1060 | NETIF_F_HW_VLAN_RX | | 1063 | NETIF_F_HW_VLAN_RX | |
diff --git a/drivers/net/mlx4/en_port.c b/drivers/net/mlx4/en_port.c index c5a4c0389752..a29abe845d2e 100644 --- a/drivers/net/mlx4/en_port.c +++ b/drivers/net/mlx4/en_port.c | |||
@@ -151,6 +151,7 @@ int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset) | |||
151 | struct mlx4_cmd_mailbox *mailbox; | 151 | struct mlx4_cmd_mailbox *mailbox; |
152 | u64 in_mod = reset << 8 | port; | 152 | u64 in_mod = reset << 8 | port; |
153 | int err; | 153 | int err; |
154 | int i; | ||
154 | 155 | ||
155 | mailbox = mlx4_alloc_cmd_mailbox(mdev->dev); | 156 | mailbox = mlx4_alloc_cmd_mailbox(mdev->dev); |
156 | if (IS_ERR(mailbox)) | 157 | if (IS_ERR(mailbox)) |
@@ -165,38 +166,18 @@ int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset) | |||
165 | 166 | ||
166 | spin_lock_bh(&priv->stats_lock); | 167 | spin_lock_bh(&priv->stats_lock); |
167 | 168 | ||
168 | stats->rx_packets = be32_to_cpu(mlx4_en_stats->RTOTFRMS) - | 169 | stats->rx_packets = 0; |
169 | be32_to_cpu(mlx4_en_stats->RDROP); | 170 | stats->rx_bytes = 0; |
170 | stats->tx_packets = be64_to_cpu(mlx4_en_stats->TTOT_prio_0) + | 171 | for (i = 0; i < priv->rx_ring_num; i++) { |
171 | be64_to_cpu(mlx4_en_stats->TTOT_prio_1) + | 172 | stats->rx_packets += priv->rx_ring[i].packets; |
172 | be64_to_cpu(mlx4_en_stats->TTOT_prio_2) + | 173 | stats->rx_bytes += priv->rx_ring[i].bytes; |
173 | be64_to_cpu(mlx4_en_stats->TTOT_prio_3) + | 174 | } |
174 | be64_to_cpu(mlx4_en_stats->TTOT_prio_4) + | 175 | stats->tx_packets = 0; |
175 | be64_to_cpu(mlx4_en_stats->TTOT_prio_5) + | 176 | stats->tx_bytes = 0; |
176 | be64_to_cpu(mlx4_en_stats->TTOT_prio_6) + | 177 | for (i = 0; i <= priv->tx_ring_num; i++) { |
177 | be64_to_cpu(mlx4_en_stats->TTOT_prio_7) + | 178 | stats->tx_packets += priv->tx_ring[i].packets; |
178 | be64_to_cpu(mlx4_en_stats->TTOT_novlan) + | 179 | stats->tx_bytes += priv->tx_ring[i].bytes; |
179 | be64_to_cpu(mlx4_en_stats->TTOT_loopbk); | 180 | } |
180 | stats->rx_bytes = be64_to_cpu(mlx4_en_stats->ROCT_prio_0) + | ||
181 | be64_to_cpu(mlx4_en_stats->ROCT_prio_1) + | ||
182 | be64_to_cpu(mlx4_en_stats->ROCT_prio_2) + | ||
183 | be64_to_cpu(mlx4_en_stats->ROCT_prio_3) + | ||
184 | be64_to_cpu(mlx4_en_stats->ROCT_prio_4) + | ||
185 | be64_to_cpu(mlx4_en_stats->ROCT_prio_5) + | ||
186 | be64_to_cpu(mlx4_en_stats->ROCT_prio_6) + | ||
187 | be64_to_cpu(mlx4_en_stats->ROCT_prio_7) + | ||
188 | be64_to_cpu(mlx4_en_stats->ROCT_novlan); | ||
189 | |||
190 | stats->tx_bytes = be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_0) + | ||
191 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_1) + | ||
192 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_2) + | ||
193 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_3) + | ||
194 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_4) + | ||
195 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_5) + | ||
196 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_6) + | ||
197 | be64_to_cpu(mlx4_en_stats->TTTLOCT_prio_7) + | ||
198 | be64_to_cpu(mlx4_en_stats->TTTLOCT_novlan) + | ||
199 | be64_to_cpu(mlx4_en_stats->TTTLOCT_loopbk); | ||
200 | 181 | ||
201 | stats->rx_errors = be64_to_cpu(mlx4_en_stats->PCS) + | 182 | stats->rx_errors = be64_to_cpu(mlx4_en_stats->PCS) + |
202 | be32_to_cpu(mlx4_en_stats->RdropLength) + | 183 | be32_to_cpu(mlx4_en_stats->RdropLength) + |
diff --git a/drivers/net/mlx4/en_resources.c b/drivers/net/mlx4/en_resources.c index a0545209e507..65ca706c04bb 100644 --- a/drivers/net/mlx4/en_resources.c +++ b/drivers/net/mlx4/en_resources.c | |||
@@ -94,3 +94,9 @@ void mlx4_en_unmap_buffer(struct mlx4_buf *buf) | |||
94 | 94 | ||
95 | vunmap(buf->direct.buf); | 95 | vunmap(buf->direct.buf); |
96 | } | 96 | } |
97 | |||
98 | void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event) | ||
99 | { | ||
100 | return; | ||
101 | } | ||
102 | |||
diff --git a/drivers/net/mlx4/en_rx.c b/drivers/net/mlx4/en_rx.c index 7e40741fb7d8..7942c4d3cd88 100644 --- a/drivers/net/mlx4/en_rx.c +++ b/drivers/net/mlx4/en_rx.c | |||
@@ -436,8 +436,9 @@ int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv) | |||
436 | /* Initialize page allocators */ | 436 | /* Initialize page allocators */ |
437 | err = mlx4_en_init_allocator(priv, ring); | 437 | err = mlx4_en_init_allocator(priv, ring); |
438 | if (err) { | 438 | if (err) { |
439 | mlx4_err(mdev, "Failed initializing ring allocator\n"); | 439 | mlx4_err(mdev, "Failed initializing ring allocator\n"); |
440 | goto err_allocator; | 440 | ring_ind--; |
441 | goto err_allocator; | ||
441 | } | 442 | } |
442 | 443 | ||
443 | /* Fill Rx buffers */ | 444 | /* Fill Rx buffers */ |
@@ -467,6 +468,7 @@ int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv) | |||
467 | ring->wqres.db.dma, &ring->srq); | 468 | ring->wqres.db.dma, &ring->srq); |
468 | if (err){ | 469 | if (err){ |
469 | mlx4_err(mdev, "Failed to allocate srq\n"); | 470 | mlx4_err(mdev, "Failed to allocate srq\n"); |
471 | ring_ind--; | ||
470 | goto err_srq; | 472 | goto err_srq; |
471 | } | 473 | } |
472 | ring->srq.event = mlx4_en_srq_event; | 474 | ring->srq.event = mlx4_en_srq_event; |
@@ -608,6 +610,10 @@ static struct sk_buff *mlx4_en_rx_skb(struct mlx4_en_priv *priv, | |||
608 | used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, skb_frags, | 610 | used_frags = mlx4_en_complete_rx_desc(priv, rx_desc, skb_frags, |
609 | skb_shinfo(skb)->frags, | 611 | skb_shinfo(skb)->frags, |
610 | page_alloc, length); | 612 | page_alloc, length); |
613 | if (unlikely(!used_frags)) { | ||
614 | kfree_skb(skb); | ||
615 | return NULL; | ||
616 | } | ||
611 | skb_shinfo(skb)->nr_frags = used_frags; | 617 | skb_shinfo(skb)->nr_frags = used_frags; |
612 | 618 | ||
613 | /* Copy headers into the skb linear buffer */ | 619 | /* Copy headers into the skb linear buffer */ |
@@ -926,12 +932,6 @@ void mlx4_en_set_default_rss_map(struct mlx4_en_priv *priv, | |||
926 | } | 932 | } |
927 | } | 933 | } |
928 | 934 | ||
929 | static void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event) | ||
930 | { | ||
931 | return; | ||
932 | } | ||
933 | |||
934 | |||
935 | static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, | 935 | static int mlx4_en_config_rss_qp(struct mlx4_en_priv *priv, |
936 | int qpn, int srqn, int cqn, | 936 | int qpn, int srqn, int cqn, |
937 | enum mlx4_qp_state *state, | 937 | enum mlx4_qp_state *state, |
diff --git a/drivers/net/mlx4/en_tx.c b/drivers/net/mlx4/en_tx.c index 4afd5993e31c..ac6fc499b280 100644 --- a/drivers/net/mlx4/en_tx.c +++ b/drivers/net/mlx4/en_tx.c | |||
@@ -112,6 +112,7 @@ int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv, | |||
112 | mlx4_err(mdev, "Failed allocating qp %d\n", ring->qpn); | 112 | mlx4_err(mdev, "Failed allocating qp %d\n", ring->qpn); |
113 | goto err_reserve; | 113 | goto err_reserve; |
114 | } | 114 | } |
115 | ring->qp.event = mlx4_en_sqp_event; | ||
115 | 116 | ||
116 | return 0; | 117 | return 0; |
117 | 118 | ||
diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c index 102bac90a302..30bea9689694 100644 --- a/drivers/net/mlx4/main.c +++ b/drivers/net/mlx4/main.c | |||
@@ -976,7 +976,7 @@ static void mlx4_enable_msi_x(struct mlx4_dev *dev) | |||
976 | nreq = err; | 976 | nreq = err; |
977 | goto retry; | 977 | goto retry; |
978 | } | 978 | } |
979 | 979 | kfree(entries); | |
980 | goto no_msi; | 980 | goto no_msi; |
981 | } | 981 | } |
982 | 982 | ||
diff --git a/drivers/net/mlx4/mlx4_en.h b/drivers/net/mlx4/mlx4_en.h index e9af32d41ca4..ef840abbcd39 100644 --- a/drivers/net/mlx4/mlx4_en.h +++ b/drivers/net/mlx4/mlx4_en.h | |||
@@ -538,6 +538,7 @@ int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget); | |||
538 | void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, | 538 | void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride, |
539 | int is_tx, int rss, int qpn, int cqn, int srqn, | 539 | int is_tx, int rss, int qpn, int cqn, int srqn, |
540 | struct mlx4_qp_context *context); | 540 | struct mlx4_qp_context *context); |
541 | void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event); | ||
541 | int mlx4_en_map_buffer(struct mlx4_buf *buf); | 542 | int mlx4_en_map_buffer(struct mlx4_buf *buf); |
542 | void mlx4_en_unmap_buffer(struct mlx4_buf *buf); | 543 | void mlx4_en_unmap_buffer(struct mlx4_buf *buf); |
543 | 544 | ||
diff --git a/drivers/net/pcmcia/pcnet_cs.c b/drivers/net/pcmcia/pcnet_cs.c index 2fbf9f9ddd37..652a36888361 100644 --- a/drivers/net/pcmcia/pcnet_cs.c +++ b/drivers/net/pcmcia/pcnet_cs.c | |||
@@ -1758,7 +1758,7 @@ static struct pcmcia_device_id pcnet_ids[] = { | |||
1758 | PCMCIA_MFC_DEVICE_CIS_PROD_ID12(0, "DAYNA COMMUNICATIONS", "LAN AND MODEM MULTIFUNCTION", 0x8fdf8f89, 0xdd5ed9e8, "DP83903.cis"), | 1758 | PCMCIA_MFC_DEVICE_CIS_PROD_ID12(0, "DAYNA COMMUNICATIONS", "LAN AND MODEM MULTIFUNCTION", 0x8fdf8f89, 0xdd5ed9e8, "DP83903.cis"), |
1759 | PCMCIA_MFC_DEVICE_CIS_PROD_ID4(0, "NSC MF LAN/Modem", 0x58fc6056, "DP83903.cis"), | 1759 | PCMCIA_MFC_DEVICE_CIS_PROD_ID4(0, "NSC MF LAN/Modem", 0x58fc6056, "DP83903.cis"), |
1760 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0175, 0x0000, "DP83903.cis"), | 1760 | PCMCIA_MFC_DEVICE_CIS_MANF_CARD(0, 0x0175, 0x0000, "DP83903.cis"), |
1761 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "LA-PCM.cis"), | 1761 | PCMCIA_DEVICE_CIS_MANF_CARD(0xc00f, 0x0002, "cis/LA-PCM.cis"), |
1762 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "PE520.cis"), | 1762 | PCMCIA_DEVICE_CIS_PROD_ID12("KTI", "PE520 PLUS", 0xad180345, 0x9d58d392, "PE520.cis"), |
1763 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "NE2K.cis"), | 1763 | PCMCIA_DEVICE_CIS_PROD_ID12("NDC", "Ethernet", 0x01c43ae1, 0x00b2e941, "NE2K.cis"), |
1764 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "PE-200.cis"), | 1764 | PCMCIA_DEVICE_CIS_PROD_ID12("PMX ", "PE-200", 0x34f3f1c8, 0x10b59f8c, "PE-200.cis"), |
diff --git a/drivers/net/ps3_gelic_wireless.c b/drivers/net/ps3_gelic_wireless.c index a5ac2bd58b5b..4f3ada622f9b 100644 --- a/drivers/net/ps3_gelic_wireless.c +++ b/drivers/net/ps3_gelic_wireless.c | |||
@@ -2101,6 +2101,9 @@ static int gelic_wl_associate_bss(struct gelic_wl_info *wl, | |||
2101 | if (ret) { | 2101 | if (ret) { |
2102 | pr_debug("%s: WEP/WPA setup failed %d\n", __func__, | 2102 | pr_debug("%s: WEP/WPA setup failed %d\n", __func__, |
2103 | ret); | 2103 | ret); |
2104 | ret = -EPERM; | ||
2105 | gelic_wl_send_iwap_event(wl, NULL); | ||
2106 | goto out; | ||
2104 | } | 2107 | } |
2105 | 2108 | ||
2106 | /* start association */ | 2109 | /* start association */ |
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 7a837c465960..201be425643a 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -2190,7 +2190,14 @@ static int tg3_nvram_read_using_eeprom(struct tg3 *tp, | |||
2190 | if (!(tmp & EEPROM_ADDR_COMPLETE)) | 2190 | if (!(tmp & EEPROM_ADDR_COMPLETE)) |
2191 | return -EBUSY; | 2191 | return -EBUSY; |
2192 | 2192 | ||
2193 | *val = tr32(GRC_EEPROM_DATA); | 2193 | tmp = tr32(GRC_EEPROM_DATA); |
2194 | |||
2195 | /* | ||
2196 | * The data will always be opposite the native endian | ||
2197 | * format. Perform a blind byteswap to compensate. | ||
2198 | */ | ||
2199 | *val = swab32(tmp); | ||
2200 | |||
2194 | return 0; | 2201 | return 0; |
2195 | } | 2202 | } |
2196 | 2203 | ||
@@ -10663,7 +10670,13 @@ static int tg3_nvram_write_block_using_eeprom(struct tg3 *tp, | |||
10663 | 10670 | ||
10664 | memcpy(&data, buf + i, 4); | 10671 | memcpy(&data, buf + i, 4); |
10665 | 10672 | ||
10666 | tw32(GRC_EEPROM_DATA, be32_to_cpu(data)); | 10673 | /* |
10674 | * The SEEPROM interface expects the data to always be opposite | ||
10675 | * the native endian format. We accomplish this by reversing | ||
10676 | * all the operations that would have been performed on the | ||
10677 | * data from a call to tg3_nvram_read_be32(). | ||
10678 | */ | ||
10679 | tw32(GRC_EEPROM_DATA, swab32(be32_to_cpu(data))); | ||
10667 | 10680 | ||
10668 | val = tr32(GRC_EEPROM_ADDR); | 10681 | val = tr32(GRC_EEPROM_ADDR); |
10669 | tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE); | 10682 | tw32(GRC_EEPROM_ADDR, val | EEPROM_ADDR_COMPLETE); |
@@ -12443,13 +12456,8 @@ static int __devinit tg3_get_device_address(struct tg3 *tp) | |||
12443 | /* Next, try NVRAM. */ | 12456 | /* Next, try NVRAM. */ |
12444 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && | 12457 | if (!tg3_nvram_read_be32(tp, mac_offset + 0, &hi) && |
12445 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { | 12458 | !tg3_nvram_read_be32(tp, mac_offset + 4, &lo)) { |
12446 | dev->dev_addr[0] = ((hi >> 16) & 0xff); | 12459 | memcpy(&dev->dev_addr[0], ((char *)&hi) + 2, 2); |
12447 | dev->dev_addr[1] = ((hi >> 24) & 0xff); | 12460 | memcpy(&dev->dev_addr[2], (char *)&lo, sizeof(lo)); |
12448 | dev->dev_addr[2] = ((lo >> 0) & 0xff); | ||
12449 | dev->dev_addr[3] = ((lo >> 8) & 0xff); | ||
12450 | dev->dev_addr[4] = ((lo >> 16) & 0xff); | ||
12451 | dev->dev_addr[5] = ((lo >> 24) & 0xff); | ||
12452 | |||
12453 | } | 12461 | } |
12454 | /* Finally just fetch it out of the MAC control regs. */ | 12462 | /* Finally just fetch it out of the MAC control regs. */ |
12455 | else { | 12463 | else { |
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 16716aef184c..735bf41c654a 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -93,7 +93,6 @@ struct tun_file { | |||
93 | atomic_t count; | 93 | atomic_t count; |
94 | struct tun_struct *tun; | 94 | struct tun_struct *tun; |
95 | struct net *net; | 95 | struct net *net; |
96 | wait_queue_head_t read_wait; | ||
97 | }; | 96 | }; |
98 | 97 | ||
99 | struct tun_sock; | 98 | struct tun_sock; |
@@ -156,6 +155,7 @@ static int tun_attach(struct tun_struct *tun, struct file *file) | |||
156 | tfile->tun = tun; | 155 | tfile->tun = tun; |
157 | tun->tfile = tfile; | 156 | tun->tfile = tfile; |
158 | dev_hold(tun->dev); | 157 | dev_hold(tun->dev); |
158 | sock_hold(tun->sk); | ||
159 | atomic_inc(&tfile->count); | 159 | atomic_inc(&tfile->count); |
160 | 160 | ||
161 | out: | 161 | out: |
@@ -165,11 +165,8 @@ out: | |||
165 | 165 | ||
166 | static void __tun_detach(struct tun_struct *tun) | 166 | static void __tun_detach(struct tun_struct *tun) |
167 | { | 167 | { |
168 | struct tun_file *tfile = tun->tfile; | ||
169 | |||
170 | /* Detach from net device */ | 168 | /* Detach from net device */ |
171 | netif_tx_lock_bh(tun->dev); | 169 | netif_tx_lock_bh(tun->dev); |
172 | tfile->tun = NULL; | ||
173 | tun->tfile = NULL; | 170 | tun->tfile = NULL; |
174 | netif_tx_unlock_bh(tun->dev); | 171 | netif_tx_unlock_bh(tun->dev); |
175 | 172 | ||
@@ -333,12 +330,19 @@ static void tun_net_uninit(struct net_device *dev) | |||
333 | /* Inform the methods they need to stop using the dev. | 330 | /* Inform the methods they need to stop using the dev. |
334 | */ | 331 | */ |
335 | if (tfile) { | 332 | if (tfile) { |
336 | wake_up_all(&tfile->read_wait); | 333 | wake_up_all(&tun->socket.wait); |
337 | if (atomic_dec_and_test(&tfile->count)) | 334 | if (atomic_dec_and_test(&tfile->count)) |
338 | __tun_detach(tun); | 335 | __tun_detach(tun); |
339 | } | 336 | } |
340 | } | 337 | } |
341 | 338 | ||
339 | static void tun_free_netdev(struct net_device *dev) | ||
340 | { | ||
341 | struct tun_struct *tun = netdev_priv(dev); | ||
342 | |||
343 | sock_put(tun->sk); | ||
344 | } | ||
345 | |||
342 | /* Net device open. */ | 346 | /* Net device open. */ |
343 | static int tun_net_open(struct net_device *dev) | 347 | static int tun_net_open(struct net_device *dev) |
344 | { | 348 | { |
@@ -393,7 +397,7 @@ static int tun_net_xmit(struct sk_buff *skb, struct net_device *dev) | |||
393 | /* Notify and wake up reader process */ | 397 | /* Notify and wake up reader process */ |
394 | if (tun->flags & TUN_FASYNC) | 398 | if (tun->flags & TUN_FASYNC) |
395 | kill_fasync(&tun->fasync, SIGIO, POLL_IN); | 399 | kill_fasync(&tun->fasync, SIGIO, POLL_IN); |
396 | wake_up_interruptible(&tun->tfile->read_wait); | 400 | wake_up_interruptible(&tun->socket.wait); |
397 | return 0; | 401 | return 0; |
398 | 402 | ||
399 | drop: | 403 | drop: |
@@ -490,7 +494,7 @@ static unsigned int tun_chr_poll(struct file *file, poll_table * wait) | |||
490 | 494 | ||
491 | DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name); | 495 | DBG(KERN_INFO "%s: tun_chr_poll\n", tun->dev->name); |
492 | 496 | ||
493 | poll_wait(file, &tfile->read_wait, wait); | 497 | poll_wait(file, &tun->socket.wait, wait); |
494 | 498 | ||
495 | if (!skb_queue_empty(&tun->readq)) | 499 | if (!skb_queue_empty(&tun->readq)) |
496 | mask |= POLLIN | POLLRDNORM; | 500 | mask |= POLLIN | POLLRDNORM; |
@@ -763,7 +767,7 @@ static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv, | |||
763 | goto out; | 767 | goto out; |
764 | } | 768 | } |
765 | 769 | ||
766 | add_wait_queue(&tfile->read_wait, &wait); | 770 | add_wait_queue(&tun->socket.wait, &wait); |
767 | while (len) { | 771 | while (len) { |
768 | current->state = TASK_INTERRUPTIBLE; | 772 | current->state = TASK_INTERRUPTIBLE; |
769 | 773 | ||
@@ -794,7 +798,7 @@ static ssize_t tun_chr_aio_read(struct kiocb *iocb, const struct iovec *iv, | |||
794 | } | 798 | } |
795 | 799 | ||
796 | current->state = TASK_RUNNING; | 800 | current->state = TASK_RUNNING; |
797 | remove_wait_queue(&tfile->read_wait, &wait); | 801 | remove_wait_queue(&tun->socket.wait, &wait); |
798 | 802 | ||
799 | out: | 803 | out: |
800 | tun_put(tun); | 804 | tun_put(tun); |
@@ -811,7 +815,7 @@ static void tun_setup(struct net_device *dev) | |||
811 | tun->group = -1; | 815 | tun->group = -1; |
812 | 816 | ||
813 | dev->ethtool_ops = &tun_ethtool_ops; | 817 | dev->ethtool_ops = &tun_ethtool_ops; |
814 | dev->destructor = free_netdev; | 818 | dev->destructor = tun_free_netdev; |
815 | } | 819 | } |
816 | 820 | ||
817 | /* Trivial set of netlink ops to allow deleting tun or tap | 821 | /* Trivial set of netlink ops to allow deleting tun or tap |
@@ -848,7 +852,7 @@ static void tun_sock_write_space(struct sock *sk) | |||
848 | 852 | ||
849 | static void tun_sock_destruct(struct sock *sk) | 853 | static void tun_sock_destruct(struct sock *sk) |
850 | { | 854 | { |
851 | dev_put(container_of(sk, struct tun_sock, sk)->tun->dev); | 855 | free_netdev(container_of(sk, struct tun_sock, sk)->tun->dev); |
852 | } | 856 | } |
853 | 857 | ||
854 | static struct proto tun_proto = { | 858 | static struct proto tun_proto = { |
@@ -862,7 +866,6 @@ static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) | |||
862 | struct sock *sk; | 866 | struct sock *sk; |
863 | struct tun_struct *tun; | 867 | struct tun_struct *tun; |
864 | struct net_device *dev; | 868 | struct net_device *dev; |
865 | struct tun_file *tfile = file->private_data; | ||
866 | int err; | 869 | int err; |
867 | 870 | ||
868 | dev = __dev_get_by_name(net, ifr->ifr_name); | 871 | dev = __dev_get_by_name(net, ifr->ifr_name); |
@@ -920,13 +923,10 @@ static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) | |||
920 | if (!sk) | 923 | if (!sk) |
921 | goto err_free_dev; | 924 | goto err_free_dev; |
922 | 925 | ||
923 | /* This ref count is for tun->sk. */ | 926 | init_waitqueue_head(&tun->socket.wait); |
924 | dev_hold(dev); | ||
925 | sock_init_data(&tun->socket, sk); | 927 | sock_init_data(&tun->socket, sk); |
926 | sk->sk_write_space = tun_sock_write_space; | 928 | sk->sk_write_space = tun_sock_write_space; |
927 | sk->sk_destruct = tun_sock_destruct; | ||
928 | sk->sk_sndbuf = INT_MAX; | 929 | sk->sk_sndbuf = INT_MAX; |
929 | sk->sk_sleep = &tfile->read_wait; | ||
930 | 930 | ||
931 | tun->sk = sk; | 931 | tun->sk = sk; |
932 | container_of(sk, struct tun_sock, sk)->tun = tun; | 932 | container_of(sk, struct tun_sock, sk)->tun = tun; |
@@ -942,11 +942,13 @@ static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) | |||
942 | err = -EINVAL; | 942 | err = -EINVAL; |
943 | err = register_netdevice(tun->dev); | 943 | err = register_netdevice(tun->dev); |
944 | if (err < 0) | 944 | if (err < 0) |
945 | goto err_free_dev; | 945 | goto err_free_sk; |
946 | |||
947 | sk->sk_destruct = tun_sock_destruct; | ||
946 | 948 | ||
947 | err = tun_attach(tun, file); | 949 | err = tun_attach(tun, file); |
948 | if (err < 0) | 950 | if (err < 0) |
949 | goto err_free_dev; | 951 | goto failed; |
950 | } | 952 | } |
951 | 953 | ||
952 | DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name); | 954 | DBG(KERN_INFO "%s: tun_set_iff\n", tun->dev->name); |
@@ -1266,7 +1268,6 @@ static int tun_chr_open(struct inode *inode, struct file * file) | |||
1266 | atomic_set(&tfile->count, 0); | 1268 | atomic_set(&tfile->count, 0); |
1267 | tfile->tun = NULL; | 1269 | tfile->tun = NULL; |
1268 | tfile->net = get_net(current->nsproxy->net_ns); | 1270 | tfile->net = get_net(current->nsproxy->net_ns); |
1269 | init_waitqueue_head(&tfile->read_wait); | ||
1270 | file->private_data = tfile; | 1271 | file->private_data = tfile; |
1271 | return 0; | 1272 | return 0; |
1272 | } | 1273 | } |
@@ -1284,14 +1285,16 @@ static int tun_chr_close(struct inode *inode, struct file *file) | |||
1284 | __tun_detach(tun); | 1285 | __tun_detach(tun); |
1285 | 1286 | ||
1286 | /* If desireable, unregister the netdevice. */ | 1287 | /* If desireable, unregister the netdevice. */ |
1287 | if (!(tun->flags & TUN_PERSIST)) { | 1288 | if (!(tun->flags & TUN_PERSIST)) |
1288 | sock_put(tun->sk); | ||
1289 | unregister_netdevice(tun->dev); | 1289 | unregister_netdevice(tun->dev); |
1290 | } | ||
1291 | 1290 | ||
1292 | rtnl_unlock(); | 1291 | rtnl_unlock(); |
1293 | } | 1292 | } |
1294 | 1293 | ||
1294 | tun = tfile->tun; | ||
1295 | if (tun) | ||
1296 | sock_put(tun->sk); | ||
1297 | |||
1295 | put_net(tfile->net); | 1298 | put_net(tfile->net); |
1296 | kfree(tfile); | 1299 | kfree(tfile); |
1297 | 1300 | ||
diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index d3f39e86eb95..44f8392da117 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/ucc_geth.c | |||
@@ -1394,7 +1394,8 @@ static int adjust_enet_interface(struct ucc_geth_private *ugeth) | |||
1394 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID) || | 1394 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_RXID) || |
1395 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID) || | 1395 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RGMII_TXID) || |
1396 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) { | 1396 | (ugeth->phy_interface == PHY_INTERFACE_MODE_RTBI)) { |
1397 | upsmr |= UCC_GETH_UPSMR_RPM; | 1397 | if (ugeth->phy_interface != PHY_INTERFACE_MODE_RMII) |
1398 | upsmr |= UCC_GETH_UPSMR_RPM; | ||
1398 | switch (ugeth->max_speed) { | 1399 | switch (ugeth->max_speed) { |
1399 | case SPEED_10: | 1400 | case SPEED_10: |
1400 | upsmr |= UCC_GETH_UPSMR_R10M; | 1401 | upsmr |= UCC_GETH_UPSMR_R10M; |
diff --git a/drivers/net/usb/pegasus.c b/drivers/net/usb/pegasus.c index a8228d87c8cf..2138535f2339 100644 --- a/drivers/net/usb/pegasus.c +++ b/drivers/net/usb/pegasus.c | |||
@@ -899,6 +899,7 @@ static int pegasus_start_xmit(struct sk_buff *skb, struct net_device *net) | |||
899 | /* cleanup should already have been scheduled */ | 899 | /* cleanup should already have been scheduled */ |
900 | break; | 900 | break; |
901 | case -ENODEV: /* disconnect() upcoming */ | 901 | case -ENODEV: /* disconnect() upcoming */ |
902 | case -EPERM: | ||
902 | netif_device_detach(pegasus->net); | 903 | netif_device_detach(pegasus->net); |
903 | break; | 904 | break; |
904 | default: | 905 | default: |
diff --git a/drivers/net/veth.c b/drivers/net/veth.c index 015db1cece72..8e56fcf0a0e3 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c | |||
@@ -210,14 +210,11 @@ rx_drop: | |||
210 | 210 | ||
211 | static struct net_device_stats *veth_get_stats(struct net_device *dev) | 211 | static struct net_device_stats *veth_get_stats(struct net_device *dev) |
212 | { | 212 | { |
213 | struct veth_priv *priv; | 213 | struct veth_priv *priv = netdev_priv(dev); |
214 | struct net_device_stats *dev_stats; | 214 | struct net_device_stats *dev_stats = &dev->stats; |
215 | int cpu; | 215 | unsigned int cpu; |
216 | struct veth_net_stats *stats; | 216 | struct veth_net_stats *stats; |
217 | 217 | ||
218 | priv = netdev_priv(dev); | ||
219 | dev_stats = &dev->stats; | ||
220 | |||
221 | dev_stats->rx_packets = 0; | 218 | dev_stats->rx_packets = 0; |
222 | dev_stats->tx_packets = 0; | 219 | dev_stats->tx_packets = 0; |
223 | dev_stats->rx_bytes = 0; | 220 | dev_stats->rx_bytes = 0; |
@@ -225,16 +222,17 @@ static struct net_device_stats *veth_get_stats(struct net_device *dev) | |||
225 | dev_stats->tx_dropped = 0; | 222 | dev_stats->tx_dropped = 0; |
226 | dev_stats->rx_dropped = 0; | 223 | dev_stats->rx_dropped = 0; |
227 | 224 | ||
228 | for_each_online_cpu(cpu) { | 225 | if (priv->stats) |
229 | stats = per_cpu_ptr(priv->stats, cpu); | 226 | for_each_online_cpu(cpu) { |
227 | stats = per_cpu_ptr(priv->stats, cpu); | ||
230 | 228 | ||
231 | dev_stats->rx_packets += stats->rx_packets; | 229 | dev_stats->rx_packets += stats->rx_packets; |
232 | dev_stats->tx_packets += stats->tx_packets; | 230 | dev_stats->tx_packets += stats->tx_packets; |
233 | dev_stats->rx_bytes += stats->rx_bytes; | 231 | dev_stats->rx_bytes += stats->rx_bytes; |
234 | dev_stats->tx_bytes += stats->tx_bytes; | 232 | dev_stats->tx_bytes += stats->tx_bytes; |
235 | dev_stats->tx_dropped += stats->tx_dropped; | 233 | dev_stats->tx_dropped += stats->tx_dropped; |
236 | dev_stats->rx_dropped += stats->rx_dropped; | 234 | dev_stats->rx_dropped += stats->rx_dropped; |
237 | } | 235 | } |
238 | 236 | ||
239 | return dev_stats; | 237 | return dev_stats; |
240 | } | 238 | } |
@@ -261,6 +259,8 @@ static int veth_close(struct net_device *dev) | |||
261 | netif_carrier_off(dev); | 259 | netif_carrier_off(dev); |
262 | netif_carrier_off(priv->peer); | 260 | netif_carrier_off(priv->peer); |
263 | 261 | ||
262 | free_percpu(priv->stats); | ||
263 | priv->stats = NULL; | ||
264 | return 0; | 264 | return 0; |
265 | } | 265 | } |
266 | 266 | ||
@@ -291,15 +291,6 @@ static int veth_dev_init(struct net_device *dev) | |||
291 | return 0; | 291 | return 0; |
292 | } | 292 | } |
293 | 293 | ||
294 | static void veth_dev_free(struct net_device *dev) | ||
295 | { | ||
296 | struct veth_priv *priv; | ||
297 | |||
298 | priv = netdev_priv(dev); | ||
299 | free_percpu(priv->stats); | ||
300 | free_netdev(dev); | ||
301 | } | ||
302 | |||
303 | static const struct net_device_ops veth_netdev_ops = { | 294 | static const struct net_device_ops veth_netdev_ops = { |
304 | .ndo_init = veth_dev_init, | 295 | .ndo_init = veth_dev_init, |
305 | .ndo_open = veth_open, | 296 | .ndo_open = veth_open, |
@@ -317,7 +308,7 @@ static void veth_setup(struct net_device *dev) | |||
317 | dev->netdev_ops = &veth_netdev_ops; | 308 | dev->netdev_ops = &veth_netdev_ops; |
318 | dev->ethtool_ops = &veth_ethtool_ops; | 309 | dev->ethtool_ops = &veth_ethtool_ops; |
319 | dev->features |= NETIF_F_LLTX; | 310 | dev->features |= NETIF_F_LLTX; |
320 | dev->destructor = veth_dev_free; | 311 | dev->destructor = free_netdev; |
321 | } | 312 | } |
322 | 313 | ||
323 | /* | 314 | /* |
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index f21a6171c691..c36d3a3d655f 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
@@ -6713,11 +6713,11 @@ static int airo_set_auth(struct net_device *dev, | |||
6713 | local->config.authType = AUTH_ENCRYPT; | 6713 | local->config.authType = AUTH_ENCRYPT; |
6714 | } else | 6714 | } else |
6715 | return -EINVAL; | 6715 | return -EINVAL; |
6716 | break; | ||
6717 | 6716 | ||
6718 | /* Commit the changes to flags if needed */ | 6717 | /* Commit the changes to flags if needed */ |
6719 | if (local->config.authType != currentAuthType) | 6718 | if (local->config.authType != currentAuthType) |
6720 | set_bit (FLAG_COMMIT, &local->flags); | 6719 | set_bit (FLAG_COMMIT, &local->flags); |
6720 | break; | ||
6721 | } | 6721 | } |
6722 | 6722 | ||
6723 | case IW_AUTH_WPA_ENABLED: | 6723 | case IW_AUTH_WPA_ENABLED: |
diff --git a/drivers/net/wireless/ar9170/hw.h b/drivers/net/wireless/ar9170/hw.h index 13091bd9d815..53e250a4278f 100644 --- a/drivers/net/wireless/ar9170/hw.h +++ b/drivers/net/wireless/ar9170/hw.h | |||
@@ -310,7 +310,7 @@ struct ar9170_tx_control { | |||
310 | 310 | ||
311 | struct ar9170_rx_head { | 311 | struct ar9170_rx_head { |
312 | u8 plcp[12]; | 312 | u8 plcp[12]; |
313 | }; | 313 | } __packed; |
314 | 314 | ||
315 | struct ar9170_rx_tail { | 315 | struct ar9170_rx_tail { |
316 | union { | 316 | union { |
@@ -318,16 +318,16 @@ struct ar9170_rx_tail { | |||
318 | u8 rssi_ant0, rssi_ant1, rssi_ant2, | 318 | u8 rssi_ant0, rssi_ant1, rssi_ant2, |
319 | rssi_ant0x, rssi_ant1x, rssi_ant2x, | 319 | rssi_ant0x, rssi_ant1x, rssi_ant2x, |
320 | rssi_combined; | 320 | rssi_combined; |
321 | }; | 321 | } __packed; |
322 | u8 rssi[7]; | 322 | u8 rssi[7]; |
323 | }; | 323 | } __packed; |
324 | 324 | ||
325 | u8 evm_stream0[6], evm_stream1[6]; | 325 | u8 evm_stream0[6], evm_stream1[6]; |
326 | u8 phy_err; | 326 | u8 phy_err; |
327 | u8 SAidx, DAidx; | 327 | u8 SAidx, DAidx; |
328 | u8 error; | 328 | u8 error; |
329 | u8 status; | 329 | u8 status; |
330 | }; | 330 | } __packed; |
331 | 331 | ||
332 | #define AR9170_ENC_ALG_NONE 0x0 | 332 | #define AR9170_ENC_ALG_NONE 0x0 |
333 | #define AR9170_ENC_ALG_WEP64 0x1 | 333 | #define AR9170_ENC_ALG_WEP64 0x1 |
diff --git a/drivers/net/wireless/ar9170/usb.c b/drivers/net/wireless/ar9170/usb.c index ad296840893e..fddda477095c 100644 --- a/drivers/net/wireless/ar9170/usb.c +++ b/drivers/net/wireless/ar9170/usb.c | |||
@@ -59,6 +59,8 @@ static struct usb_device_id ar9170_usb_ids[] = { | |||
59 | { USB_DEVICE(0x0cf3, 0x9170) }, | 59 | { USB_DEVICE(0x0cf3, 0x9170) }, |
60 | /* Atheros TG121N */ | 60 | /* Atheros TG121N */ |
61 | { USB_DEVICE(0x0cf3, 0x1001) }, | 61 | { USB_DEVICE(0x0cf3, 0x1001) }, |
62 | /* Cace Airpcap NX */ | ||
63 | { USB_DEVICE(0xcace, 0x0300) }, | ||
62 | /* D-Link DWA 160A */ | 64 | /* D-Link DWA 160A */ |
63 | { USB_DEVICE(0x07d1, 0x3c10) }, | 65 | { USB_DEVICE(0x07d1, 0x3c10) }, |
64 | /* Netgear WNDA3100 */ | 66 | /* Netgear WNDA3100 */ |
@@ -67,6 +69,8 @@ static struct usb_device_id ar9170_usb_ids[] = { | |||
67 | { USB_DEVICE(0x0846, 0x9001) }, | 69 | { USB_DEVICE(0x0846, 0x9001) }, |
68 | /* Zydas ZD1221 */ | 70 | /* Zydas ZD1221 */ |
69 | { USB_DEVICE(0x0ace, 0x1221) }, | 71 | { USB_DEVICE(0x0ace, 0x1221) }, |
72 | /* ZyXEL NWD271N */ | ||
73 | { USB_DEVICE(0x0586, 0x3417) }, | ||
70 | /* Z-Com UB81 BG */ | 74 | /* Z-Com UB81 BG */ |
71 | { USB_DEVICE(0x0cde, 0x0023) }, | 75 | { USB_DEVICE(0x0cde, 0x0023) }, |
72 | /* Z-Com UB82 ABG */ | 76 | /* Z-Com UB82 ABG */ |
@@ -619,6 +623,39 @@ static int ar9170_usb_open(struct ar9170 *ar) | |||
619 | return 0; | 623 | return 0; |
620 | } | 624 | } |
621 | 625 | ||
626 | static int ar9170_usb_init_device(struct ar9170_usb *aru) | ||
627 | { | ||
628 | int err; | ||
629 | |||
630 | err = ar9170_usb_alloc_rx_irq_urb(aru); | ||
631 | if (err) | ||
632 | goto err_out; | ||
633 | |||
634 | err = ar9170_usb_alloc_rx_bulk_urbs(aru); | ||
635 | if (err) | ||
636 | goto err_unrx; | ||
637 | |||
638 | err = ar9170_usb_upload_firmware(aru); | ||
639 | if (err) { | ||
640 | err = ar9170_echo_test(&aru->common, 0x60d43110); | ||
641 | if (err) { | ||
642 | /* force user invention, by disabling the device */ | ||
643 | err = usb_driver_set_configuration(aru->udev, -1); | ||
644 | dev_err(&aru->udev->dev, "device is in a bad state. " | ||
645 | "please reconnect it!\n"); | ||
646 | goto err_unrx; | ||
647 | } | ||
648 | } | ||
649 | |||
650 | return 0; | ||
651 | |||
652 | err_unrx: | ||
653 | ar9170_usb_cancel_urbs(aru); | ||
654 | |||
655 | err_out: | ||
656 | return err; | ||
657 | } | ||
658 | |||
622 | static int ar9170_usb_probe(struct usb_interface *intf, | 659 | static int ar9170_usb_probe(struct usb_interface *intf, |
623 | const struct usb_device_id *id) | 660 | const struct usb_device_id *id) |
624 | { | 661 | { |
@@ -654,32 +691,16 @@ static int ar9170_usb_probe(struct usb_interface *intf, | |||
654 | 691 | ||
655 | err = ar9170_usb_reset(aru); | 692 | err = ar9170_usb_reset(aru); |
656 | if (err) | 693 | if (err) |
657 | goto err_unlock; | 694 | goto err_freehw; |
658 | 695 | ||
659 | err = ar9170_usb_request_firmware(aru); | 696 | err = ar9170_usb_request_firmware(aru); |
660 | if (err) | 697 | if (err) |
661 | goto err_unlock; | 698 | goto err_freehw; |
662 | 699 | ||
663 | err = ar9170_usb_alloc_rx_irq_urb(aru); | 700 | err = ar9170_usb_init_device(aru); |
664 | if (err) | 701 | if (err) |
665 | goto err_freefw; | 702 | goto err_freefw; |
666 | 703 | ||
667 | err = ar9170_usb_alloc_rx_bulk_urbs(aru); | ||
668 | if (err) | ||
669 | goto err_unrx; | ||
670 | |||
671 | err = ar9170_usb_upload_firmware(aru); | ||
672 | if (err) { | ||
673 | err = ar9170_echo_test(&aru->common, 0x60d43110); | ||
674 | if (err) { | ||
675 | /* force user invention, by disabling the device */ | ||
676 | err = usb_driver_set_configuration(aru->udev, -1); | ||
677 | dev_err(&aru->udev->dev, "device is in a bad state. " | ||
678 | "please reconnect it!\n"); | ||
679 | goto err_unrx; | ||
680 | } | ||
681 | } | ||
682 | |||
683 | err = ar9170_usb_open(ar); | 704 | err = ar9170_usb_open(ar); |
684 | if (err) | 705 | if (err) |
685 | goto err_unrx; | 706 | goto err_unrx; |
@@ -699,7 +720,7 @@ err_freefw: | |||
699 | release_firmware(aru->init_values); | 720 | release_firmware(aru->init_values); |
700 | release_firmware(aru->firmware); | 721 | release_firmware(aru->firmware); |
701 | 722 | ||
702 | err_unlock: | 723 | err_freehw: |
703 | usb_set_intfdata(intf, NULL); | 724 | usb_set_intfdata(intf, NULL); |
704 | usb_put_dev(udev); | 725 | usb_put_dev(udev); |
705 | ieee80211_free_hw(ar->hw); | 726 | ieee80211_free_hw(ar->hw); |
@@ -726,12 +747,65 @@ static void ar9170_usb_disconnect(struct usb_interface *intf) | |||
726 | ieee80211_free_hw(aru->common.hw); | 747 | ieee80211_free_hw(aru->common.hw); |
727 | } | 748 | } |
728 | 749 | ||
750 | #ifdef CONFIG_PM | ||
751 | static int ar9170_suspend(struct usb_interface *intf, | ||
752 | pm_message_t message) | ||
753 | { | ||
754 | struct ar9170_usb *aru = usb_get_intfdata(intf); | ||
755 | |||
756 | if (!aru) | ||
757 | return -ENODEV; | ||
758 | |||
759 | aru->common.state = AR9170_IDLE; | ||
760 | ar9170_usb_cancel_urbs(aru); | ||
761 | |||
762 | return 0; | ||
763 | } | ||
764 | |||
765 | static int ar9170_resume(struct usb_interface *intf) | ||
766 | { | ||
767 | struct ar9170_usb *aru = usb_get_intfdata(intf); | ||
768 | int err; | ||
769 | |||
770 | if (!aru) | ||
771 | return -ENODEV; | ||
772 | |||
773 | usb_unpoison_anchored_urbs(&aru->rx_submitted); | ||
774 | usb_unpoison_anchored_urbs(&aru->tx_submitted); | ||
775 | |||
776 | /* | ||
777 | * FIXME: firmware upload will fail on resume. | ||
778 | * but this is better than a hang! | ||
779 | */ | ||
780 | |||
781 | err = ar9170_usb_init_device(aru); | ||
782 | if (err) | ||
783 | goto err_unrx; | ||
784 | |||
785 | err = ar9170_usb_open(&aru->common); | ||
786 | if (err) | ||
787 | goto err_unrx; | ||
788 | |||
789 | return 0; | ||
790 | |||
791 | err_unrx: | ||
792 | aru->common.state = AR9170_IDLE; | ||
793 | ar9170_usb_cancel_urbs(aru); | ||
794 | |||
795 | return err; | ||
796 | } | ||
797 | #endif /* CONFIG_PM */ | ||
798 | |||
729 | static struct usb_driver ar9170_driver = { | 799 | static struct usb_driver ar9170_driver = { |
730 | .name = "ar9170usb", | 800 | .name = "ar9170usb", |
731 | .probe = ar9170_usb_probe, | 801 | .probe = ar9170_usb_probe, |
732 | .disconnect = ar9170_usb_disconnect, | 802 | .disconnect = ar9170_usb_disconnect, |
733 | .id_table = ar9170_usb_ids, | 803 | .id_table = ar9170_usb_ids, |
734 | .soft_unbind = 1, | 804 | .soft_unbind = 1, |
805 | #ifdef CONFIG_PM | ||
806 | .suspend = ar9170_suspend, | ||
807 | .resume = ar9170_resume, | ||
808 | #endif /* CONFIG_PM */ | ||
735 | }; | 809 | }; |
736 | 810 | ||
737 | static int __init ar9170_init(void) | 811 | static int __init ar9170_init(void) |
diff --git a/drivers/net/wireless/at76c50x-usb.c b/drivers/net/wireless/at76c50x-usb.c index 0c02f1c2bd94..744f4f4dd3d1 100644 --- a/drivers/net/wireless/at76c50x-usb.c +++ b/drivers/net/wireless/at76c50x-usb.c | |||
@@ -250,6 +250,8 @@ static struct usb_device_id dev_table[] = { | |||
250 | { USB_DEVICE(0x03eb, 0x7617), USB_DEVICE_DATA(BOARD_505A) }, | 250 | { USB_DEVICE(0x03eb, 0x7617), USB_DEVICE_DATA(BOARD_505A) }, |
251 | /* Siemens Gigaset USB WLAN Adapter 11 */ | 251 | /* Siemens Gigaset USB WLAN Adapter 11 */ |
252 | { USB_DEVICE(0x1690, 0x0701), USB_DEVICE_DATA(BOARD_505A) }, | 252 | { USB_DEVICE(0x1690, 0x0701), USB_DEVICE_DATA(BOARD_505A) }, |
253 | /* OQO Model 01+ Internal Wi-Fi */ | ||
254 | { USB_DEVICE(0x1557, 0x0002), USB_DEVICE_DATA(BOARD_505A) }, | ||
253 | /* | 255 | /* |
254 | * at76c505amx-rfmd | 256 | * at76c505amx-rfmd |
255 | */ | 257 | */ |
diff --git a/drivers/net/wireless/ath9k/recv.c b/drivers/net/wireless/ath9k/recv.c index 71cb18d6757d..dd1f30156740 100644 --- a/drivers/net/wireless/ath9k/recv.c +++ b/drivers/net/wireless/ath9k/recv.c | |||
@@ -493,6 +493,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush) | |||
493 | int hdrlen, padsize, retval; | 493 | int hdrlen, padsize, retval; |
494 | bool decrypt_error = false; | 494 | bool decrypt_error = false; |
495 | u8 keyix; | 495 | u8 keyix; |
496 | __le16 fc; | ||
496 | 497 | ||
497 | spin_lock_bh(&sc->rx.rxbuflock); | 498 | spin_lock_bh(&sc->rx.rxbuflock); |
498 | 499 | ||
@@ -606,6 +607,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush) | |||
606 | /* see if any padding is done by the hw and remove it */ | 607 | /* see if any padding is done by the hw and remove it */ |
607 | hdr = (struct ieee80211_hdr *)skb->data; | 608 | hdr = (struct ieee80211_hdr *)skb->data; |
608 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); | 609 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
610 | fc = hdr->frame_control; | ||
609 | 611 | ||
610 | /* The MAC header is padded to have 32-bit boundary if the | 612 | /* The MAC header is padded to have 32-bit boundary if the |
611 | * packet payload is non-zero. The general calculation for | 613 | * packet payload is non-zero. The general calculation for |
@@ -690,7 +692,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush) | |||
690 | sc->rx.rxotherant = 0; | 692 | sc->rx.rxotherant = 0; |
691 | } | 693 | } |
692 | 694 | ||
693 | if (ieee80211_is_beacon(hdr->frame_control) && | 695 | if (ieee80211_is_beacon(fc) && |
694 | (sc->sc_flags & SC_OP_WAIT_FOR_BEACON)) { | 696 | (sc->sc_flags & SC_OP_WAIT_FOR_BEACON)) { |
695 | sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON; | 697 | sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON; |
696 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP); | 698 | ath9k_hw_setpower(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP); |
diff --git a/drivers/net/wireless/atmel.c b/drivers/net/wireless/atmel.c index 857d84148b1d..27eef8fb7107 100644 --- a/drivers/net/wireless/atmel.c +++ b/drivers/net/wireless/atmel.c | |||
@@ -1502,7 +1502,6 @@ static const struct net_device_ops atmel_netdev_ops = { | |||
1502 | .ndo_set_mac_address = atmel_set_mac_address, | 1502 | .ndo_set_mac_address = atmel_set_mac_address, |
1503 | .ndo_start_xmit = start_tx, | 1503 | .ndo_start_xmit = start_tx, |
1504 | .ndo_do_ioctl = atmel_ioctl, | 1504 | .ndo_do_ioctl = atmel_ioctl, |
1505 | .ndo_change_mtu = eth_change_mtu, | ||
1506 | .ndo_validate_addr = eth_validate_addr, | 1505 | .ndo_validate_addr = eth_validate_addr, |
1507 | }; | 1506 | }; |
1508 | 1507 | ||
diff --git a/drivers/net/wireless/b43/dma.c b/drivers/net/wireless/b43/dma.c index e228c1de6e11..eae680b53052 100644 --- a/drivers/net/wireless/b43/dma.c +++ b/drivers/net/wireless/b43/dma.c | |||
@@ -555,11 +555,32 @@ address_error: | |||
555 | return 1; | 555 | return 1; |
556 | } | 556 | } |
557 | 557 | ||
558 | static bool b43_rx_buffer_is_poisoned(struct b43_dmaring *ring, struct sk_buff *skb) | ||
559 | { | ||
560 | unsigned char *f = skb->data + ring->frameoffset; | ||
561 | |||
562 | return ((f[0] & f[1] & f[2] & f[3] & f[4] & f[5] & f[6] & f[7]) == 0xFF); | ||
563 | } | ||
564 | |||
565 | static void b43_poison_rx_buffer(struct b43_dmaring *ring, struct sk_buff *skb) | ||
566 | { | ||
567 | struct b43_rxhdr_fw4 *rxhdr; | ||
568 | unsigned char *frame; | ||
569 | |||
570 | /* This poisons the RX buffer to detect DMA failures. */ | ||
571 | |||
572 | rxhdr = (struct b43_rxhdr_fw4 *)(skb->data); | ||
573 | rxhdr->frame_len = 0; | ||
574 | |||
575 | B43_WARN_ON(ring->rx_buffersize < ring->frameoffset + sizeof(struct b43_plcp_hdr6) + 2); | ||
576 | frame = skb->data + ring->frameoffset; | ||
577 | memset(frame, 0xFF, sizeof(struct b43_plcp_hdr6) + 2 /* padding */); | ||
578 | } | ||
579 | |||
558 | static int setup_rx_descbuffer(struct b43_dmaring *ring, | 580 | static int setup_rx_descbuffer(struct b43_dmaring *ring, |
559 | struct b43_dmadesc_generic *desc, | 581 | struct b43_dmadesc_generic *desc, |
560 | struct b43_dmadesc_meta *meta, gfp_t gfp_flags) | 582 | struct b43_dmadesc_meta *meta, gfp_t gfp_flags) |
561 | { | 583 | { |
562 | struct b43_rxhdr_fw4 *rxhdr; | ||
563 | dma_addr_t dmaaddr; | 584 | dma_addr_t dmaaddr; |
564 | struct sk_buff *skb; | 585 | struct sk_buff *skb; |
565 | 586 | ||
@@ -568,6 +589,7 @@ static int setup_rx_descbuffer(struct b43_dmaring *ring, | |||
568 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); | 589 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); |
569 | if (unlikely(!skb)) | 590 | if (unlikely(!skb)) |
570 | return -ENOMEM; | 591 | return -ENOMEM; |
592 | b43_poison_rx_buffer(ring, skb); | ||
571 | dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0); | 593 | dmaaddr = map_descbuffer(ring, skb->data, ring->rx_buffersize, 0); |
572 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { | 594 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { |
573 | /* ugh. try to realloc in zone_dma */ | 595 | /* ugh. try to realloc in zone_dma */ |
@@ -578,6 +600,7 @@ static int setup_rx_descbuffer(struct b43_dmaring *ring, | |||
578 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); | 600 | skb = __dev_alloc_skb(ring->rx_buffersize, gfp_flags); |
579 | if (unlikely(!skb)) | 601 | if (unlikely(!skb)) |
580 | return -ENOMEM; | 602 | return -ENOMEM; |
603 | b43_poison_rx_buffer(ring, skb); | ||
581 | dmaaddr = map_descbuffer(ring, skb->data, | 604 | dmaaddr = map_descbuffer(ring, skb->data, |
582 | ring->rx_buffersize, 0); | 605 | ring->rx_buffersize, 0); |
583 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { | 606 | if (b43_dma_mapping_error(ring, dmaaddr, ring->rx_buffersize, 0)) { |
@@ -592,9 +615,6 @@ static int setup_rx_descbuffer(struct b43_dmaring *ring, | |||
592 | ring->ops->fill_descriptor(ring, desc, dmaaddr, | 615 | ring->ops->fill_descriptor(ring, desc, dmaaddr, |
593 | ring->rx_buffersize, 0, 0, 0); | 616 | ring->rx_buffersize, 0, 0, 0); |
594 | 617 | ||
595 | rxhdr = (struct b43_rxhdr_fw4 *)(skb->data); | ||
596 | rxhdr->frame_len = 0; | ||
597 | |||
598 | return 0; | 618 | return 0; |
599 | } | 619 | } |
600 | 620 | ||
@@ -1483,12 +1503,17 @@ static void dma_rx(struct b43_dmaring *ring, int *slot) | |||
1483 | len = le16_to_cpu(rxhdr->frame_len); | 1503 | len = le16_to_cpu(rxhdr->frame_len); |
1484 | } while (len == 0 && i++ < 5); | 1504 | } while (len == 0 && i++ < 5); |
1485 | if (unlikely(len == 0)) { | 1505 | if (unlikely(len == 0)) { |
1486 | /* recycle the descriptor buffer. */ | 1506 | dmaaddr = meta->dmaaddr; |
1487 | sync_descbuffer_for_device(ring, meta->dmaaddr, | 1507 | goto drop_recycle_buffer; |
1488 | ring->rx_buffersize); | ||
1489 | goto drop; | ||
1490 | } | 1508 | } |
1491 | } | 1509 | } |
1510 | if (unlikely(b43_rx_buffer_is_poisoned(ring, skb))) { | ||
1511 | /* Something went wrong with the DMA. | ||
1512 | * The device did not touch the buffer and did not overwrite the poison. */ | ||
1513 | b43dbg(ring->dev->wl, "DMA RX: Dropping poisoned buffer.\n"); | ||
1514 | dmaaddr = meta->dmaaddr; | ||
1515 | goto drop_recycle_buffer; | ||
1516 | } | ||
1492 | if (unlikely(len > ring->rx_buffersize)) { | 1517 | if (unlikely(len > ring->rx_buffersize)) { |
1493 | /* The data did not fit into one descriptor buffer | 1518 | /* The data did not fit into one descriptor buffer |
1494 | * and is split over multiple buffers. | 1519 | * and is split over multiple buffers. |
@@ -1501,6 +1526,7 @@ static void dma_rx(struct b43_dmaring *ring, int *slot) | |||
1501 | while (1) { | 1526 | while (1) { |
1502 | desc = ops->idx2desc(ring, *slot, &meta); | 1527 | desc = ops->idx2desc(ring, *slot, &meta); |
1503 | /* recycle the descriptor buffer. */ | 1528 | /* recycle the descriptor buffer. */ |
1529 | b43_poison_rx_buffer(ring, meta->skb); | ||
1504 | sync_descbuffer_for_device(ring, meta->dmaaddr, | 1530 | sync_descbuffer_for_device(ring, meta->dmaaddr, |
1505 | ring->rx_buffersize); | 1531 | ring->rx_buffersize); |
1506 | *slot = next_slot(ring, *slot); | 1532 | *slot = next_slot(ring, *slot); |
@@ -1519,8 +1545,7 @@ static void dma_rx(struct b43_dmaring *ring, int *slot) | |||
1519 | err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC); | 1545 | err = setup_rx_descbuffer(ring, desc, meta, GFP_ATOMIC); |
1520 | if (unlikely(err)) { | 1546 | if (unlikely(err)) { |
1521 | b43dbg(ring->dev->wl, "DMA RX: setup_rx_descbuffer() failed\n"); | 1547 | b43dbg(ring->dev->wl, "DMA RX: setup_rx_descbuffer() failed\n"); |
1522 | sync_descbuffer_for_device(ring, dmaaddr, ring->rx_buffersize); | 1548 | goto drop_recycle_buffer; |
1523 | goto drop; | ||
1524 | } | 1549 | } |
1525 | 1550 | ||
1526 | unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0); | 1551 | unmap_descbuffer(ring, dmaaddr, ring->rx_buffersize, 0); |
@@ -1530,6 +1555,11 @@ static void dma_rx(struct b43_dmaring *ring, int *slot) | |||
1530 | b43_rx(ring->dev, skb, rxhdr); | 1555 | b43_rx(ring->dev, skb, rxhdr); |
1531 | drop: | 1556 | drop: |
1532 | return; | 1557 | return; |
1558 | |||
1559 | drop_recycle_buffer: | ||
1560 | /* Poison and recycle the RX buffer. */ | ||
1561 | b43_poison_rx_buffer(ring, skb); | ||
1562 | sync_descbuffer_for_device(ring, dmaaddr, ring->rx_buffersize); | ||
1533 | } | 1563 | } |
1534 | 1564 | ||
1535 | void b43_dma_rx(struct b43_dmaring *ring) | 1565 | void b43_dma_rx(struct b43_dmaring *ring) |
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c index 4896e0831114..79b685e300c7 100644 --- a/drivers/net/wireless/b43/main.c +++ b/drivers/net/wireless/b43/main.c | |||
@@ -3974,6 +3974,11 @@ static void setup_struct_phy_for_init(struct b43_wldev *dev, | |||
3974 | phy->next_txpwr_check_time = jiffies; | 3974 | phy->next_txpwr_check_time = jiffies; |
3975 | /* PHY TX errors counter. */ | 3975 | /* PHY TX errors counter. */ |
3976 | atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT); | 3976 | atomic_set(&phy->txerr_cnt, B43_PHY_TX_BADNESS_LIMIT); |
3977 | |||
3978 | #if B43_DEBUG | ||
3979 | phy->phy_locked = 0; | ||
3980 | phy->radio_locked = 0; | ||
3981 | #endif | ||
3977 | } | 3982 | } |
3978 | 3983 | ||
3979 | static void setup_struct_wldev_for_init(struct b43_wldev *dev) | 3984 | static void setup_struct_wldev_for_init(struct b43_wldev *dev) |
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c index 026b61c03fb9..e176b6e0d9cf 100644 --- a/drivers/net/wireless/b43/phy_common.c +++ b/drivers/net/wireless/b43/phy_common.c | |||
@@ -131,12 +131,16 @@ void b43_radio_lock(struct b43_wldev *dev) | |||
131 | { | 131 | { |
132 | u32 macctl; | 132 | u32 macctl; |
133 | 133 | ||
134 | #if B43_DEBUG | ||
135 | B43_WARN_ON(dev->phy.radio_locked); | ||
136 | dev->phy.radio_locked = 1; | ||
137 | #endif | ||
138 | |||
134 | macctl = b43_read32(dev, B43_MMIO_MACCTL); | 139 | macctl = b43_read32(dev, B43_MMIO_MACCTL); |
135 | B43_WARN_ON(macctl & B43_MACCTL_RADIOLOCK); | ||
136 | macctl |= B43_MACCTL_RADIOLOCK; | 140 | macctl |= B43_MACCTL_RADIOLOCK; |
137 | b43_write32(dev, B43_MMIO_MACCTL, macctl); | 141 | b43_write32(dev, B43_MMIO_MACCTL, macctl); |
138 | /* Commit the write and wait for the device | 142 | /* Commit the write and wait for the firmware |
139 | * to exit any radio register access. */ | 143 | * to finish any radio register access. */ |
140 | b43_read32(dev, B43_MMIO_MACCTL); | 144 | b43_read32(dev, B43_MMIO_MACCTL); |
141 | udelay(10); | 145 | udelay(10); |
142 | } | 146 | } |
@@ -145,11 +149,15 @@ void b43_radio_unlock(struct b43_wldev *dev) | |||
145 | { | 149 | { |
146 | u32 macctl; | 150 | u32 macctl; |
147 | 151 | ||
152 | #if B43_DEBUG | ||
153 | B43_WARN_ON(!dev->phy.radio_locked); | ||
154 | dev->phy.radio_locked = 0; | ||
155 | #endif | ||
156 | |||
148 | /* Commit any write */ | 157 | /* Commit any write */ |
149 | b43_read16(dev, B43_MMIO_PHY_VER); | 158 | b43_read16(dev, B43_MMIO_PHY_VER); |
150 | /* unlock */ | 159 | /* unlock */ |
151 | macctl = b43_read32(dev, B43_MMIO_MACCTL); | 160 | macctl = b43_read32(dev, B43_MMIO_MACCTL); |
152 | B43_WARN_ON(!(macctl & B43_MACCTL_RADIOLOCK)); | ||
153 | macctl &= ~B43_MACCTL_RADIOLOCK; | 161 | macctl &= ~B43_MACCTL_RADIOLOCK; |
154 | b43_write32(dev, B43_MMIO_MACCTL, macctl); | 162 | b43_write32(dev, B43_MMIO_MACCTL, macctl); |
155 | } | 163 | } |
diff --git a/drivers/net/wireless/b43/phy_common.h b/drivers/net/wireless/b43/phy_common.h index c9f5430d1d7d..b2d99101947b 100644 --- a/drivers/net/wireless/b43/phy_common.h +++ b/drivers/net/wireless/b43/phy_common.h | |||
@@ -245,8 +245,10 @@ struct b43_phy { | |||
245 | atomic_t txerr_cnt; | 245 | atomic_t txerr_cnt; |
246 | 246 | ||
247 | #ifdef CONFIG_B43_DEBUG | 247 | #ifdef CONFIG_B43_DEBUG |
248 | /* PHY registers locked by b43_phy_lock()? */ | 248 | /* PHY registers locked (w.r.t. firmware) */ |
249 | bool phy_locked; | 249 | bool phy_locked; |
250 | /* Radio registers locked (w.r.t. firmware) */ | ||
251 | bool radio_locked; | ||
250 | #endif /* B43_DEBUG */ | 252 | #endif /* B43_DEBUG */ |
251 | }; | 253 | }; |
252 | 254 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.c b/drivers/net/wireless/iwlwifi/iwl-3945.c index 2399328e8de7..527525cc0919 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.c +++ b/drivers/net/wireless/iwlwifi/iwl-3945.c | |||
@@ -1192,7 +1192,7 @@ int iwl3945_hw_nic_init(struct iwl_priv *priv) | |||
1192 | return -ENOMEM; | 1192 | return -ENOMEM; |
1193 | } | 1193 | } |
1194 | } else | 1194 | } else |
1195 | iwl_rx_queue_reset(priv, rxq); | 1195 | iwl3945_rx_queue_reset(priv, rxq); |
1196 | 1196 | ||
1197 | iwl3945_rx_replenish(priv); | 1197 | iwl3945_rx_replenish(priv); |
1198 | 1198 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945.h b/drivers/net/wireless/iwlwifi/iwl-3945.h index ab7aaf6872c7..55188844657b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945.h | |||
@@ -215,6 +215,7 @@ extern int iwl3945_calc_sig_qual(int rssi_dbm, int noise_dbm); | |||
215 | extern int iwl3945_tx_queue_init(struct iwl_priv *priv, | 215 | extern int iwl3945_tx_queue_init(struct iwl_priv *priv, |
216 | struct iwl_tx_queue *txq, int count, u32 id); | 216 | struct iwl_tx_queue *txq, int count, u32 id); |
217 | extern void iwl3945_rx_replenish(void *data); | 217 | extern void iwl3945_rx_replenish(void *data); |
218 | extern void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq); | ||
218 | extern void iwl3945_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq); | 219 | extern void iwl3945_tx_queue_free(struct iwl_priv *priv, struct iwl_tx_queue *txq); |
219 | extern int iwl3945_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, | 220 | extern int iwl3945_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, |
220 | const void *data); | 221 | const void *data); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 3889158b359c..1ef4192207a5 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -976,11 +976,9 @@ void iwl_rx_handle(struct iwl_priv *priv) | |||
976 | 976 | ||
977 | rxq->queue[i] = NULL; | 977 | rxq->queue[i] = NULL; |
978 | 978 | ||
979 | dma_sync_single_range_for_cpu( | 979 | pci_unmap_single(priv->pci_dev, rxb->real_dma_addr, |
980 | &priv->pci_dev->dev, rxb->real_dma_addr, | 980 | priv->hw_params.rx_buf_size + 256, |
981 | rxb->aligned_dma_addr - rxb->real_dma_addr, | 981 | PCI_DMA_FROMDEVICE); |
982 | priv->hw_params.rx_buf_size, | ||
983 | PCI_DMA_FROMDEVICE); | ||
984 | pkt = (struct iwl_rx_packet *)rxb->skb->data; | 982 | pkt = (struct iwl_rx_packet *)rxb->skb->data; |
985 | 983 | ||
986 | /* Reclaim a command buffer only if this packet is a response | 984 | /* Reclaim a command buffer only if this packet is a response |
@@ -1031,9 +1029,6 @@ void iwl_rx_handle(struct iwl_priv *priv) | |||
1031 | rxb->skb = NULL; | 1029 | rxb->skb = NULL; |
1032 | } | 1030 | } |
1033 | 1031 | ||
1034 | pci_unmap_single(priv->pci_dev, rxb->real_dma_addr, | ||
1035 | priv->hw_params.rx_buf_size + 256, | ||
1036 | PCI_DMA_FROMDEVICE); | ||
1037 | spin_lock_irqsave(&rxq->lock, flags); | 1032 | spin_lock_irqsave(&rxq->lock, flags); |
1038 | list_add_tail(&rxb->list, &priv->rxq.rx_used); | 1033 | list_add_tail(&rxb->list, &priv->rxq.rx_used); |
1039 | spin_unlock_irqrestore(&rxq->lock, flags); | 1034 | spin_unlock_irqrestore(&rxq->lock, flags); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-csr.h b/drivers/net/wireless/iwlwifi/iwl-csr.h index 2f1242447b3b..6e983149b83b 100644 --- a/drivers/net/wireless/iwlwifi/iwl-csr.h +++ b/drivers/net/wireless/iwlwifi/iwl-csr.h | |||
@@ -223,7 +223,7 @@ | |||
223 | #define CSR_EEPROM_REG_MSK_DATA (0xFFFF0000) | 223 | #define CSR_EEPROM_REG_MSK_DATA (0xFFFF0000) |
224 | 224 | ||
225 | /* EEPROM GP */ | 225 | /* EEPROM GP */ |
226 | #define CSR_EEPROM_GP_VALID_MSK (0x00000006) | 226 | #define CSR_EEPROM_GP_VALID_MSK (0x00000007) |
227 | #define CSR_EEPROM_GP_BAD_SIGNATURE (0x00000000) | 227 | #define CSR_EEPROM_GP_BAD_SIGNATURE (0x00000000) |
228 | #define CSR_EEPROM_GP_IF_OWNER_MSK (0x00000180) | 228 | #define CSR_EEPROM_GP_IF_OWNER_MSK (0x00000180) |
229 | 229 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-dev.h b/drivers/net/wireless/iwlwifi/iwl-dev.h index ec9a13846edd..cf7f0db58fcf 100644 --- a/drivers/net/wireless/iwlwifi/iwl-dev.h +++ b/drivers/net/wireless/iwlwifi/iwl-dev.h | |||
@@ -360,12 +360,16 @@ struct iwl_host_cmd { | |||
360 | 360 | ||
361 | /** | 361 | /** |
362 | * struct iwl_rx_queue - Rx queue | 362 | * struct iwl_rx_queue - Rx queue |
363 | * @bd: driver's pointer to buffer of receive buffer descriptors (rbd) | ||
364 | * @dma_addr: bus address of buffer of receive buffer descriptors (rbd) | ||
363 | * @read: Shared index to newest available Rx buffer | 365 | * @read: Shared index to newest available Rx buffer |
364 | * @write: Shared index to oldest written Rx packet | 366 | * @write: Shared index to oldest written Rx packet |
365 | * @free_count: Number of pre-allocated buffers in rx_free | 367 | * @free_count: Number of pre-allocated buffers in rx_free |
366 | * @rx_free: list of free SKBs for use | 368 | * @rx_free: list of free SKBs for use |
367 | * @rx_used: List of Rx buffers with no SKB | 369 | * @rx_used: List of Rx buffers with no SKB |
368 | * @need_update: flag to indicate we need to update read/write index | 370 | * @need_update: flag to indicate we need to update read/write index |
371 | * @rb_stts: driver's pointer to receive buffer status | ||
372 | * @rb_stts_dma: bus address of receive buffer status | ||
369 | * | 373 | * |
370 | * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers | 374 | * NOTE: rx_free and rx_used are used as a FIFO for iwl_rx_mem_buffers |
371 | */ | 375 | */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-tx.c b/drivers/net/wireless/iwlwifi/iwl-tx.c index 1f117a49c569..71d5b8a1a73e 100644 --- a/drivers/net/wireless/iwlwifi/iwl-tx.c +++ b/drivers/net/wireless/iwlwifi/iwl-tx.c | |||
@@ -799,6 +799,22 @@ int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
799 | /* Copy MAC header from skb into command buffer */ | 799 | /* Copy MAC header from skb into command buffer */ |
800 | memcpy(tx_cmd->hdr, hdr, hdr_len); | 800 | memcpy(tx_cmd->hdr, hdr, hdr_len); |
801 | 801 | ||
802 | |||
803 | /* Total # bytes to be transmitted */ | ||
804 | len = (u16)skb->len; | ||
805 | tx_cmd->len = cpu_to_le16(len); | ||
806 | |||
807 | if (info->control.hw_key) | ||
808 | iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id); | ||
809 | |||
810 | /* TODO need this for burst mode later on */ | ||
811 | iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, sta_id); | ||
812 | |||
813 | /* set is_hcca to 0; it probably will never be implemented */ | ||
814 | iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, sta_id, 0); | ||
815 | |||
816 | iwl_update_tx_stats(priv, le16_to_cpu(fc), len); | ||
817 | |||
802 | /* | 818 | /* |
803 | * Use the first empty entry in this queue's command buffer array | 819 | * Use the first empty entry in this queue's command buffer array |
804 | * to contain the Tx command and MAC header concatenated together | 820 | * to contain the Tx command and MAC header concatenated together |
@@ -819,21 +835,30 @@ int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
819 | else | 835 | else |
820 | len_org = 0; | 836 | len_org = 0; |
821 | 837 | ||
838 | /* Tell NIC about any 2-byte padding after MAC header */ | ||
839 | if (len_org) | ||
840 | tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK; | ||
841 | |||
822 | /* Physical address of this Tx command's header (not MAC header!), | 842 | /* Physical address of this Tx command's header (not MAC header!), |
823 | * within command buffer array. */ | 843 | * within command buffer array. */ |
824 | txcmd_phys = pci_map_single(priv->pci_dev, | 844 | txcmd_phys = pci_map_single(priv->pci_dev, |
825 | out_cmd, sizeof(struct iwl_cmd), | 845 | &out_cmd->hdr, len, |
826 | PCI_DMA_BIDIRECTIONAL); | 846 | PCI_DMA_BIDIRECTIONAL); |
827 | pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys); | 847 | pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys); |
828 | pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd)); | 848 | pci_unmap_len_set(&out_cmd->meta, len, len); |
829 | /* Add buffer containing Tx command and MAC(!) header to TFD's | 849 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
830 | * first entry */ | 850 | * first entry */ |
831 | txcmd_phys += offsetof(struct iwl_cmd, hdr); | ||
832 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, | 851 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, |
833 | txcmd_phys, len, 1, 0); | 852 | txcmd_phys, len, 1, 0); |
834 | 853 | ||
835 | if (info->control.hw_key) | 854 | if (!ieee80211_has_morefrags(hdr->frame_control)) { |
836 | iwl_tx_cmd_build_hwcrypto(priv, info, tx_cmd, skb, sta_id); | 855 | txq->need_update = 1; |
856 | if (qc) | ||
857 | priv->stations[sta_id].tid[tid].seq_number = seq_number; | ||
858 | } else { | ||
859 | wait_write_ptr = 1; | ||
860 | txq->need_update = 0; | ||
861 | } | ||
837 | 862 | ||
838 | /* Set up TFD's 2nd entry to point directly to remainder of skb, | 863 | /* Set up TFD's 2nd entry to point directly to remainder of skb, |
839 | * if any (802.11 null frames have no payload). */ | 864 | * if any (802.11 null frames have no payload). */ |
@@ -846,41 +871,29 @@ int iwl_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
846 | 0, 0); | 871 | 0, 0); |
847 | } | 872 | } |
848 | 873 | ||
849 | /* Tell NIC about any 2-byte padding after MAC header */ | ||
850 | if (len_org) | ||
851 | tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK; | ||
852 | |||
853 | /* Total # bytes to be transmitted */ | ||
854 | len = (u16)skb->len; | ||
855 | tx_cmd->len = cpu_to_le16(len); | ||
856 | /* TODO need this for burst mode later on */ | ||
857 | iwl_tx_cmd_build_basic(priv, tx_cmd, info, hdr, sta_id); | ||
858 | |||
859 | /* set is_hcca to 0; it probably will never be implemented */ | ||
860 | iwl_tx_cmd_build_rate(priv, tx_cmd, info, fc, sta_id, 0); | ||
861 | |||
862 | iwl_update_tx_stats(priv, le16_to_cpu(fc), len); | ||
863 | |||
864 | scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) + | 874 | scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) + |
865 | offsetof(struct iwl_tx_cmd, scratch); | 875 | offsetof(struct iwl_tx_cmd, scratch); |
876 | |||
877 | len = sizeof(struct iwl_tx_cmd) + | ||
878 | sizeof(struct iwl_cmd_header) + hdr_len; | ||
879 | /* take back ownership of DMA buffer to enable update */ | ||
880 | pci_dma_sync_single_for_cpu(priv->pci_dev, txcmd_phys, | ||
881 | len, PCI_DMA_BIDIRECTIONAL); | ||
866 | tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); | 882 | tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); |
867 | tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys); | 883 | tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys); |
868 | 884 | ||
869 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | 885 | IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n", |
870 | txq->need_update = 1; | 886 | le16_to_cpu(out_cmd->hdr.sequence)); |
871 | if (qc) | 887 | IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx_cmd->tx_flags)); |
872 | priv->stations[sta_id].tid[tid].seq_number = seq_number; | ||
873 | } else { | ||
874 | wait_write_ptr = 1; | ||
875 | txq->need_update = 0; | ||
876 | } | ||
877 | |||
878 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd)); | 888 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd, sizeof(*tx_cmd)); |
879 | |||
880 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len); | 889 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx_cmd->hdr, hdr_len); |
881 | 890 | ||
882 | /* Set up entry for this TFD in Tx byte-count array */ | 891 | /* Set up entry for this TFD in Tx byte-count array */ |
883 | priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, len); | 892 | priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, |
893 | le16_to_cpu(tx_cmd->len)); | ||
894 | |||
895 | pci_dma_sync_single_for_device(priv->pci_dev, txcmd_phys, | ||
896 | len, PCI_DMA_BIDIRECTIONAL); | ||
884 | 897 | ||
885 | /* Tell device the write index *just past* this latest filled TFD */ | 898 | /* Tell device the write index *just past* this latest filled TFD */ |
886 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); | 899 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
@@ -968,18 +981,9 @@ int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) | |||
968 | INDEX_TO_SEQ(q->write_ptr)); | 981 | INDEX_TO_SEQ(q->write_ptr)); |
969 | if (out_cmd->meta.flags & CMD_SIZE_HUGE) | 982 | if (out_cmd->meta.flags & CMD_SIZE_HUGE) |
970 | out_cmd->hdr.sequence |= SEQ_HUGE_FRAME; | 983 | out_cmd->hdr.sequence |= SEQ_HUGE_FRAME; |
971 | len = (idx == TFD_CMD_SLOTS) ? | 984 | len = sizeof(struct iwl_cmd) - sizeof(struct iwl_cmd_meta); |
972 | IWL_MAX_SCAN_SIZE : sizeof(struct iwl_cmd); | 985 | len += (idx == TFD_CMD_SLOTS) ? IWL_MAX_SCAN_SIZE : 0; |
973 | |||
974 | phys_addr = pci_map_single(priv->pci_dev, out_cmd, | ||
975 | len, PCI_DMA_BIDIRECTIONAL); | ||
976 | pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr); | ||
977 | pci_unmap_len_set(&out_cmd->meta, len, len); | ||
978 | phys_addr += offsetof(struct iwl_cmd, hdr); | ||
979 | 986 | ||
980 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, | ||
981 | phys_addr, fix_size, 1, | ||
982 | U32_PAD(cmd->len)); | ||
983 | 987 | ||
984 | #ifdef CONFIG_IWLWIFI_DEBUG | 988 | #ifdef CONFIG_IWLWIFI_DEBUG |
985 | switch (out_cmd->hdr.cmd) { | 989 | switch (out_cmd->hdr.cmd) { |
@@ -1007,6 +1011,15 @@ int iwl_enqueue_hcmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) | |||
1007 | /* Set up entry in queue's byte count circular buffer */ | 1011 | /* Set up entry in queue's byte count circular buffer */ |
1008 | priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0); | 1012 | priv->cfg->ops->lib->txq_update_byte_cnt_tbl(priv, txq, 0); |
1009 | 1013 | ||
1014 | phys_addr = pci_map_single(priv->pci_dev, &out_cmd->hdr, | ||
1015 | fix_size, PCI_DMA_BIDIRECTIONAL); | ||
1016 | pci_unmap_addr_set(&out_cmd->meta, mapping, phys_addr); | ||
1017 | pci_unmap_len_set(&out_cmd->meta, len, fix_size); | ||
1018 | |||
1019 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, | ||
1020 | phys_addr, fix_size, 1, | ||
1021 | U32_PAD(cmd->len)); | ||
1022 | |||
1010 | /* Increment and update queue's write index */ | 1023 | /* Increment and update queue's write index */ |
1011 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); | 1024 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
1012 | ret = iwl_txq_update_write_ptr(priv, txq); | 1025 | ret = iwl_txq_update_write_ptr(priv, txq); |
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index ce729281ff62..617c4235d971 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -972,7 +972,7 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
972 | dma_addr_t phys_addr; | 972 | dma_addr_t phys_addr; |
973 | dma_addr_t txcmd_phys; | 973 | dma_addr_t txcmd_phys; |
974 | int txq_id = skb_get_queue_mapping(skb); | 974 | int txq_id = skb_get_queue_mapping(skb); |
975 | u16 len, idx, len_org, hdr_len; | 975 | u16 len, idx, len_org, hdr_len; /* TODO: len_org is not used */ |
976 | u8 id; | 976 | u8 id; |
977 | u8 unicast; | 977 | u8 unicast; |
978 | u8 sta_id; | 978 | u8 sta_id; |
@@ -1074,6 +1074,40 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
1074 | /* Copy MAC header from skb into command buffer */ | 1074 | /* Copy MAC header from skb into command buffer */ |
1075 | memcpy(tx->hdr, hdr, hdr_len); | 1075 | memcpy(tx->hdr, hdr, hdr_len); |
1076 | 1076 | ||
1077 | |||
1078 | if (info->control.hw_key) | ||
1079 | iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id); | ||
1080 | |||
1081 | /* TODO need this for burst mode later on */ | ||
1082 | iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id); | ||
1083 | |||
1084 | /* set is_hcca to 0; it probably will never be implemented */ | ||
1085 | iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0); | ||
1086 | |||
1087 | /* Total # bytes to be transmitted */ | ||
1088 | len = (u16)skb->len; | ||
1089 | tx->len = cpu_to_le16(len); | ||
1090 | |||
1091 | |||
1092 | tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK; | ||
1093 | tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK; | ||
1094 | |||
1095 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | ||
1096 | txq->need_update = 1; | ||
1097 | if (qc) | ||
1098 | priv->stations_39[sta_id].tid[tid].seq_number = seq_number; | ||
1099 | } else { | ||
1100 | wait_write_ptr = 1; | ||
1101 | txq->need_update = 0; | ||
1102 | } | ||
1103 | |||
1104 | IWL_DEBUG_TX(priv, "sequence nr = 0X%x \n", | ||
1105 | le16_to_cpu(out_cmd->hdr.sequence)); | ||
1106 | IWL_DEBUG_TX(priv, "tx_flags = 0X%x \n", le32_to_cpu(tx->tx_flags)); | ||
1107 | iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx)); | ||
1108 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr, | ||
1109 | ieee80211_hdrlen(fc)); | ||
1110 | |||
1077 | /* | 1111 | /* |
1078 | * Use the first empty entry in this queue's command buffer array | 1112 | * Use the first empty entry in this queue's command buffer array |
1079 | * to contain the Tx command and MAC header concatenated together | 1113 | * to contain the Tx command and MAC header concatenated together |
@@ -1096,22 +1130,18 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
1096 | 1130 | ||
1097 | /* Physical address of this Tx command's header (not MAC header!), | 1131 | /* Physical address of this Tx command's header (not MAC header!), |
1098 | * within command buffer array. */ | 1132 | * within command buffer array. */ |
1099 | txcmd_phys = pci_map_single(priv->pci_dev, | 1133 | txcmd_phys = pci_map_single(priv->pci_dev, &out_cmd->hdr, |
1100 | out_cmd, sizeof(struct iwl_cmd), | 1134 | len, PCI_DMA_TODEVICE); |
1101 | PCI_DMA_TODEVICE); | 1135 | /* we do not map meta data ... so we can safely access address to |
1136 | * provide to unmap command*/ | ||
1102 | pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys); | 1137 | pci_unmap_addr_set(&out_cmd->meta, mapping, txcmd_phys); |
1103 | pci_unmap_len_set(&out_cmd->meta, len, sizeof(struct iwl_cmd)); | 1138 | pci_unmap_len_set(&out_cmd->meta, len, len); |
1104 | /* Add buffer containing Tx command and MAC(!) header to TFD's | ||
1105 | * first entry */ | ||
1106 | txcmd_phys += offsetof(struct iwl_cmd, hdr); | ||
1107 | 1139 | ||
1108 | /* Add buffer containing Tx command and MAC(!) header to TFD's | 1140 | /* Add buffer containing Tx command and MAC(!) header to TFD's |
1109 | * first entry */ | 1141 | * first entry */ |
1110 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, | 1142 | priv->cfg->ops->lib->txq_attach_buf_to_tfd(priv, txq, |
1111 | txcmd_phys, len, 1, 0); | 1143 | txcmd_phys, len, 1, 0); |
1112 | 1144 | ||
1113 | if (info->control.hw_key) | ||
1114 | iwl3945_build_tx_cmd_hwcrypto(priv, info, out_cmd, skb, sta_id); | ||
1115 | 1145 | ||
1116 | /* Set up TFD's 2nd entry to point directly to remainder of skb, | 1146 | /* Set up TFD's 2nd entry to point directly to remainder of skb, |
1117 | * if any (802.11 null frames have no payload). */ | 1147 | * if any (802.11 null frames have no payload). */ |
@@ -1124,32 +1154,6 @@ static int iwl3945_tx_skb(struct iwl_priv *priv, struct sk_buff *skb) | |||
1124 | 0, U32_PAD(len)); | 1154 | 0, U32_PAD(len)); |
1125 | } | 1155 | } |
1126 | 1156 | ||
1127 | /* Total # bytes to be transmitted */ | ||
1128 | len = (u16)skb->len; | ||
1129 | tx->len = cpu_to_le16(len); | ||
1130 | |||
1131 | /* TODO need this for burst mode later on */ | ||
1132 | iwl3945_build_tx_cmd_basic(priv, out_cmd, info, hdr, sta_id); | ||
1133 | |||
1134 | /* set is_hcca to 0; it probably will never be implemented */ | ||
1135 | iwl3945_hw_build_tx_cmd_rate(priv, out_cmd, info, hdr, sta_id, 0); | ||
1136 | |||
1137 | tx->tx_flags &= ~TX_CMD_FLG_ANT_A_MSK; | ||
1138 | tx->tx_flags &= ~TX_CMD_FLG_ANT_B_MSK; | ||
1139 | |||
1140 | if (!ieee80211_has_morefrags(hdr->frame_control)) { | ||
1141 | txq->need_update = 1; | ||
1142 | if (qc) | ||
1143 | priv->stations_39[sta_id].tid[tid].seq_number = seq_number; | ||
1144 | } else { | ||
1145 | wait_write_ptr = 1; | ||
1146 | txq->need_update = 0; | ||
1147 | } | ||
1148 | |||
1149 | iwl_print_hex_dump(priv, IWL_DL_TX, tx, sizeof(*tx)); | ||
1150 | |||
1151 | iwl_print_hex_dump(priv, IWL_DL_TX, (u8 *)tx->hdr, | ||
1152 | ieee80211_hdrlen(fc)); | ||
1153 | 1157 | ||
1154 | /* Tell device the write index *just past* this latest filled TFD */ | 1158 | /* Tell device the write index *just past* this latest filled TFD */ |
1155 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); | 1159 | q->write_ptr = iwl_queue_inc_wrap(q->write_ptr, q->n_bd); |
@@ -1661,6 +1665,37 @@ static void iwl3945_rx_allocate(struct iwl_priv *priv) | |||
1661 | spin_unlock_irqrestore(&rxq->lock, flags); | 1665 | spin_unlock_irqrestore(&rxq->lock, flags); |
1662 | } | 1666 | } |
1663 | 1667 | ||
1668 | void iwl3945_rx_queue_reset(struct iwl_priv *priv, struct iwl_rx_queue *rxq) | ||
1669 | { | ||
1670 | unsigned long flags; | ||
1671 | int i; | ||
1672 | spin_lock_irqsave(&rxq->lock, flags); | ||
1673 | INIT_LIST_HEAD(&rxq->rx_free); | ||
1674 | INIT_LIST_HEAD(&rxq->rx_used); | ||
1675 | /* Fill the rx_used queue with _all_ of the Rx buffers */ | ||
1676 | for (i = 0; i < RX_FREE_BUFFERS + RX_QUEUE_SIZE; i++) { | ||
1677 | /* In the reset function, these buffers may have been allocated | ||
1678 | * to an SKB, so we need to unmap and free potential storage */ | ||
1679 | if (rxq->pool[i].skb != NULL) { | ||
1680 | pci_unmap_single(priv->pci_dev, | ||
1681 | rxq->pool[i].real_dma_addr, | ||
1682 | priv->hw_params.rx_buf_size, | ||
1683 | PCI_DMA_FROMDEVICE); | ||
1684 | priv->alloc_rxb_skb--; | ||
1685 | dev_kfree_skb(rxq->pool[i].skb); | ||
1686 | rxq->pool[i].skb = NULL; | ||
1687 | } | ||
1688 | list_add_tail(&rxq->pool[i].list, &rxq->rx_used); | ||
1689 | } | ||
1690 | |||
1691 | /* Set us so that we have processed and used all buffers, but have | ||
1692 | * not restocked the Rx queue with fresh buffers */ | ||
1693 | rxq->read = rxq->write = 0; | ||
1694 | rxq->free_count = 0; | ||
1695 | spin_unlock_irqrestore(&rxq->lock, flags); | ||
1696 | } | ||
1697 | EXPORT_SYMBOL(iwl3945_rx_queue_reset); | ||
1698 | |||
1664 | /* | 1699 | /* |
1665 | * this should be called while priv->lock is locked | 1700 | * this should be called while priv->lock is locked |
1666 | */ | 1701 | */ |
@@ -1685,6 +1720,34 @@ void iwl3945_rx_replenish(void *data) | |||
1685 | spin_unlock_irqrestore(&priv->lock, flags); | 1720 | spin_unlock_irqrestore(&priv->lock, flags); |
1686 | } | 1721 | } |
1687 | 1722 | ||
1723 | /* Assumes that the skb field of the buffers in 'pool' is kept accurate. | ||
1724 | * If an SKB has been detached, the POOL needs to have its SKB set to NULL | ||
1725 | * This free routine walks the list of POOL entries and if SKB is set to | ||
1726 | * non NULL it is unmapped and freed | ||
1727 | */ | ||
1728 | static void iwl3945_rx_queue_free(struct iwl_priv *priv, struct iwl_rx_queue *rxq) | ||
1729 | { | ||
1730 | int i; | ||
1731 | for (i = 0; i < RX_QUEUE_SIZE + RX_FREE_BUFFERS; i++) { | ||
1732 | if (rxq->pool[i].skb != NULL) { | ||
1733 | pci_unmap_single(priv->pci_dev, | ||
1734 | rxq->pool[i].real_dma_addr, | ||
1735 | priv->hw_params.rx_buf_size, | ||
1736 | PCI_DMA_FROMDEVICE); | ||
1737 | dev_kfree_skb(rxq->pool[i].skb); | ||
1738 | } | ||
1739 | } | ||
1740 | |||
1741 | pci_free_consistent(priv->pci_dev, 4 * RX_QUEUE_SIZE, rxq->bd, | ||
1742 | rxq->dma_addr); | ||
1743 | pci_free_consistent(priv->pci_dev, sizeof(struct iwl_rb_status), | ||
1744 | rxq->rb_stts, rxq->rb_stts_dma); | ||
1745 | rxq->bd = NULL; | ||
1746 | rxq->rb_stts = NULL; | ||
1747 | } | ||
1748 | EXPORT_SYMBOL(iwl3945_rx_queue_free); | ||
1749 | |||
1750 | |||
1688 | /* Convert linear signal-to-noise ratio into dB */ | 1751 | /* Convert linear signal-to-noise ratio into dB */ |
1689 | static u8 ratio2dB[100] = { | 1752 | static u8 ratio2dB[100] = { |
1690 | /* 0 1 2 3 4 5 6 7 8 9 */ | 1753 | /* 0 1 2 3 4 5 6 7 8 9 */ |
@@ -1802,9 +1865,9 @@ static void iwl3945_rx_handle(struct iwl_priv *priv) | |||
1802 | 1865 | ||
1803 | rxq->queue[i] = NULL; | 1866 | rxq->queue[i] = NULL; |
1804 | 1867 | ||
1805 | pci_dma_sync_single_for_cpu(priv->pci_dev, rxb->real_dma_addr, | 1868 | pci_unmap_single(priv->pci_dev, rxb->real_dma_addr, |
1806 | priv->hw_params.rx_buf_size, | 1869 | priv->hw_params.rx_buf_size, |
1807 | PCI_DMA_FROMDEVICE); | 1870 | PCI_DMA_FROMDEVICE); |
1808 | pkt = (struct iwl_rx_packet *)rxb->skb->data; | 1871 | pkt = (struct iwl_rx_packet *)rxb->skb->data; |
1809 | 1872 | ||
1810 | /* Reclaim a command buffer only if this packet is a response | 1873 | /* Reclaim a command buffer only if this packet is a response |
@@ -1852,9 +1915,6 @@ static void iwl3945_rx_handle(struct iwl_priv *priv) | |||
1852 | rxb->skb = NULL; | 1915 | rxb->skb = NULL; |
1853 | } | 1916 | } |
1854 | 1917 | ||
1855 | pci_unmap_single(priv->pci_dev, rxb->real_dma_addr, | ||
1856 | priv->hw_params.rx_buf_size, | ||
1857 | PCI_DMA_FROMDEVICE); | ||
1858 | spin_lock_irqsave(&rxq->lock, flags); | 1918 | spin_lock_irqsave(&rxq->lock, flags); |
1859 | list_add_tail(&rxb->list, &priv->rxq.rx_used); | 1919 | list_add_tail(&rxb->list, &priv->rxq.rx_used); |
1860 | spin_unlock_irqrestore(&rxq->lock, flags); | 1920 | spin_unlock_irqrestore(&rxq->lock, flags); |
@@ -4075,7 +4135,7 @@ static int iwl3945_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
4075 | if (!static_key) { | 4135 | if (!static_key) { |
4076 | sta_id = iwl3945_hw_find_station(priv, addr); | 4136 | sta_id = iwl3945_hw_find_station(priv, addr); |
4077 | if (sta_id == IWL_INVALID_STATION) { | 4137 | if (sta_id == IWL_INVALID_STATION) { |
4078 | IWL_DEBUG_MAC80211(priv, "leave - %pMnot in station map.\n", | 4138 | IWL_DEBUG_MAC80211(priv, "leave - %pM not in station map.\n", |
4079 | addr); | 4139 | addr); |
4080 | return -EINVAL; | 4140 | return -EINVAL; |
4081 | } | 4141 | } |
@@ -4913,6 +4973,8 @@ static int iwl3945_setup_mac(struct iwl_priv *priv) | |||
4913 | 4973 | ||
4914 | hw->wiphy->custom_regulatory = true; | 4974 | hw->wiphy->custom_regulatory = true; |
4915 | 4975 | ||
4976 | hw->wiphy->max_scan_ssids = 1; /* WILL FIX */ | ||
4977 | |||
4916 | /* Default value; 4 EDCA QOS priorities */ | 4978 | /* Default value; 4 EDCA QOS priorities */ |
4917 | hw->queues = 4; | 4979 | hw->queues = 4; |
4918 | 4980 | ||
@@ -5194,12 +5256,12 @@ static void __devexit iwl3945_pci_remove(struct pci_dev *pdev) | |||
5194 | sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group); | 5256 | sysfs_remove_group(&pdev->dev.kobj, &iwl3945_attribute_group); |
5195 | 5257 | ||
5196 | iwl_rfkill_unregister(priv); | 5258 | iwl_rfkill_unregister(priv); |
5197 | cancel_delayed_work(&priv->rfkill_poll); | 5259 | cancel_delayed_work_sync(&priv->rfkill_poll); |
5198 | 5260 | ||
5199 | iwl3945_dealloc_ucode_pci(priv); | 5261 | iwl3945_dealloc_ucode_pci(priv); |
5200 | 5262 | ||
5201 | if (priv->rxq.bd) | 5263 | if (priv->rxq.bd) |
5202 | iwl_rx_queue_free(priv, &priv->rxq); | 5264 | iwl3945_rx_queue_free(priv, &priv->rxq); |
5203 | iwl3945_hw_txq_ctx_free(priv); | 5265 | iwl3945_hw_txq_ctx_free(priv); |
5204 | 5266 | ||
5205 | iwl3945_unset_hw_params(priv); | 5267 | iwl3945_unset_hw_params(priv); |
diff --git a/drivers/net/wireless/libertas/rx.c b/drivers/net/wireless/libertas/rx.c index 63d7e19ce9bd..8e669775cb5d 100644 --- a/drivers/net/wireless/libertas/rx.c +++ b/drivers/net/wireless/libertas/rx.c | |||
@@ -170,6 +170,7 @@ int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb) | |||
170 | lbs_deb_rx("rx err: frame received with bad length\n"); | 170 | lbs_deb_rx("rx err: frame received with bad length\n"); |
171 | dev->stats.rx_length_errors++; | 171 | dev->stats.rx_length_errors++; |
172 | ret = 0; | 172 | ret = 0; |
173 | dev_kfree_skb(skb); | ||
173 | goto done; | 174 | goto done; |
174 | } | 175 | } |
175 | 176 | ||
@@ -181,6 +182,7 @@ int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *skb) | |||
181 | lbs_pr_alert("rxpd not ok\n"); | 182 | lbs_pr_alert("rxpd not ok\n"); |
182 | dev->stats.rx_errors++; | 183 | dev->stats.rx_errors++; |
183 | ret = 0; | 184 | ret = 0; |
185 | dev_kfree_skb(skb); | ||
184 | goto done; | 186 | goto done; |
185 | } | 187 | } |
186 | 188 | ||
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index 57a0268d1bae..a9a970469c2a 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
@@ -893,8 +893,7 @@ static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index) | |||
893 | rx_desc->next_rx_desc_phys_addr = | 893 | rx_desc->next_rx_desc_phys_addr = |
894 | cpu_to_le32(rxq->rx_desc_dma | 894 | cpu_to_le32(rxq->rx_desc_dma |
895 | + nexti * sizeof(*rx_desc)); | 895 | + nexti * sizeof(*rx_desc)); |
896 | rx_desc->rx_ctrl = | 896 | rx_desc->rx_ctrl = MWL8K_RX_CTRL_OWNED_BY_HOST; |
897 | cpu_to_le32(MWL8K_RX_CTRL_OWNED_BY_HOST); | ||
898 | } | 897 | } |
899 | 898 | ||
900 | return 0; | 899 | return 0; |
@@ -3720,12 +3719,12 @@ err_free_reg: | |||
3720 | return rc; | 3719 | return rc; |
3721 | } | 3720 | } |
3722 | 3721 | ||
3723 | static void __devexit mwl8k_remove(struct pci_dev *pdev) | 3722 | static void __devexit mwl8k_shutdown(struct pci_dev *pdev) |
3724 | { | 3723 | { |
3725 | printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); | 3724 | printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); |
3726 | } | 3725 | } |
3727 | 3726 | ||
3728 | static void __devexit mwl8k_shutdown(struct pci_dev *pdev) | 3727 | static void __devexit mwl8k_remove(struct pci_dev *pdev) |
3729 | { | 3728 | { |
3730 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); | 3729 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); |
3731 | struct mwl8k_priv *priv; | 3730 | struct mwl8k_priv *priv; |
diff --git a/drivers/net/wireless/orinoco/hw.c b/drivers/net/wireless/orinoco/hw.c index 081428d9409e..632fac86a308 100644 --- a/drivers/net/wireless/orinoco/hw.c +++ b/drivers/net/wireless/orinoco/hw.c | |||
@@ -372,15 +372,13 @@ int __orinoco_hw_set_tkip_key(hermes_t *hw, int key_idx, int set_tx, | |||
372 | } | 372 | } |
373 | 373 | ||
374 | /* Wait upto 100ms for tx queue to empty */ | 374 | /* Wait upto 100ms for tx queue to empty */ |
375 | k = 100; | 375 | for (k = 100; k > 0; k--) { |
376 | do { | ||
377 | k--; | ||
378 | udelay(1000); | 376 | udelay(1000); |
379 | ret = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_TXQUEUEEMPTY, | 377 | ret = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_TXQUEUEEMPTY, |
380 | &xmitting); | 378 | &xmitting); |
381 | if (ret) | 379 | if (ret || !xmitting) |
382 | break; | 380 | break; |
383 | } while ((k > 0) && xmitting); | 381 | } |
384 | 382 | ||
385 | if (k == 0) | 383 | if (k == 0) |
386 | ret = -ETIMEDOUT; | 384 | ret = -ETIMEDOUT; |
diff --git a/drivers/net/wireless/p54/p54.h b/drivers/net/wireless/p54/p54.h index 2dda5fe418b6..ecf8b6ed5a47 100644 --- a/drivers/net/wireless/p54/p54.h +++ b/drivers/net/wireless/p54/p54.h | |||
@@ -14,9 +14,9 @@ | |||
14 | * published by the Free Software Foundation. | 14 | * published by the Free Software Foundation. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #ifdef CONFIG_MAC80211_LEDS | 17 | #ifdef CONFIG_P54_LEDS |
18 | #include <linux/leds.h> | 18 | #include <linux/leds.h> |
19 | #endif /* CONFIG_MAC80211_LEDS */ | 19 | #endif /* CONFIG_P54_LEDS */ |
20 | 20 | ||
21 | enum p54_control_frame_types { | 21 | enum p54_control_frame_types { |
22 | P54_CONTROL_TYPE_SETUP = 0, | 22 | P54_CONTROL_TYPE_SETUP = 0, |
@@ -116,7 +116,7 @@ enum fw_state { | |||
116 | FW_STATE_RESETTING, | 116 | FW_STATE_RESETTING, |
117 | }; | 117 | }; |
118 | 118 | ||
119 | #ifdef CONFIG_MAC80211_LEDS | 119 | #ifdef CONFIG_P54_LEDS |
120 | 120 | ||
121 | #define P54_LED_MAX_NAME_LEN 31 | 121 | #define P54_LED_MAX_NAME_LEN 31 |
122 | 122 | ||
@@ -129,7 +129,7 @@ struct p54_led_dev { | |||
129 | unsigned int registered; | 129 | unsigned int registered; |
130 | }; | 130 | }; |
131 | 131 | ||
132 | #endif /* CONFIG_MAC80211_LEDS */ | 132 | #endif /* CONFIG_P54_LEDS */ |
133 | 133 | ||
134 | struct p54_common { | 134 | struct p54_common { |
135 | struct ieee80211_hw *hw; | 135 | struct ieee80211_hw *hw; |
@@ -177,10 +177,10 @@ struct p54_common { | |||
177 | u8 privacy_caps; | 177 | u8 privacy_caps; |
178 | u8 rx_keycache_size; | 178 | u8 rx_keycache_size; |
179 | /* LED management */ | 179 | /* LED management */ |
180 | #ifdef CONFIG_MAC80211_LEDS | 180 | #ifdef CONFIG_P54_LEDS |
181 | struct p54_led_dev assoc_led; | 181 | struct p54_led_dev assoc_led; |
182 | struct p54_led_dev tx_led; | 182 | struct p54_led_dev tx_led; |
183 | #endif /* CONFIG_MAC80211_LEDS */ | 183 | #endif /* CONFIG_P54_LEDS */ |
184 | u16 softled_state; /* bit field of glowing LEDs */ | 184 | u16 softled_state; /* bit field of glowing LEDs */ |
185 | }; | 185 | }; |
186 | 186 | ||
diff --git a/drivers/net/wireless/p54/p54common.c b/drivers/net/wireless/p54/p54common.c index 0c1b0577d4ee..c8f0232ee5e0 100644 --- a/drivers/net/wireless/p54/p54common.c +++ b/drivers/net/wireless/p54/p54common.c | |||
@@ -2543,8 +2543,6 @@ struct ieee80211_hw *p54_init_common(size_t priv_data_len) | |||
2543 | priv->basic_rate_mask = 0x15f; | 2543 | priv->basic_rate_mask = 0x15f; |
2544 | skb_queue_head_init(&priv->tx_queue); | 2544 | skb_queue_head_init(&priv->tx_queue); |
2545 | dev->flags = IEEE80211_HW_RX_INCLUDES_FCS | | 2545 | dev->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
2546 | IEEE80211_HW_SUPPORTS_PS | | ||
2547 | IEEE80211_HW_PS_NULLFUNC_STACK | | ||
2548 | IEEE80211_HW_SIGNAL_DBM | | 2546 | IEEE80211_HW_SIGNAL_DBM | |
2549 | IEEE80211_HW_NOISE_DBM; | 2547 | IEEE80211_HW_NOISE_DBM; |
2550 | 2548 | ||
diff --git a/drivers/net/wireless/p54/p54spi.c b/drivers/net/wireless/p54/p54spi.c index 2b222aaa6f0a..d1fe577de3d4 100644 --- a/drivers/net/wireless/p54/p54spi.c +++ b/drivers/net/wireless/p54/p54spi.c | |||
@@ -457,9 +457,10 @@ static int p54spi_wq_tx(struct p54s_priv *priv) | |||
457 | struct ieee80211_tx_info *info; | 457 | struct ieee80211_tx_info *info; |
458 | struct p54_tx_info *minfo; | 458 | struct p54_tx_info *minfo; |
459 | struct p54s_tx_info *dinfo; | 459 | struct p54s_tx_info *dinfo; |
460 | unsigned long flags; | ||
460 | int ret = 0; | 461 | int ret = 0; |
461 | 462 | ||
462 | spin_lock_bh(&priv->tx_lock); | 463 | spin_lock_irqsave(&priv->tx_lock, flags); |
463 | 464 | ||
464 | while (!list_empty(&priv->tx_pending)) { | 465 | while (!list_empty(&priv->tx_pending)) { |
465 | entry = list_entry(priv->tx_pending.next, | 466 | entry = list_entry(priv->tx_pending.next, |
@@ -467,7 +468,7 @@ static int p54spi_wq_tx(struct p54s_priv *priv) | |||
467 | 468 | ||
468 | list_del_init(&entry->tx_list); | 469 | list_del_init(&entry->tx_list); |
469 | 470 | ||
470 | spin_unlock_bh(&priv->tx_lock); | 471 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
471 | 472 | ||
472 | dinfo = container_of((void *) entry, struct p54s_tx_info, | 473 | dinfo = container_of((void *) entry, struct p54s_tx_info, |
473 | tx_list); | 474 | tx_list); |
@@ -479,16 +480,14 @@ static int p54spi_wq_tx(struct p54s_priv *priv) | |||
479 | 480 | ||
480 | ret = p54spi_tx_frame(priv, skb); | 481 | ret = p54spi_tx_frame(priv, skb); |
481 | 482 | ||
482 | spin_lock_bh(&priv->tx_lock); | ||
483 | |||
484 | if (ret < 0) { | 483 | if (ret < 0) { |
485 | p54_free_skb(priv->hw, skb); | 484 | p54_free_skb(priv->hw, skb); |
486 | goto out; | 485 | return ret; |
487 | } | 486 | } |
488 | } | ||
489 | 487 | ||
490 | out: | 488 | spin_lock_irqsave(&priv->tx_lock, flags); |
491 | spin_unlock_bh(&priv->tx_lock); | 489 | } |
490 | spin_unlock_irqrestore(&priv->tx_lock, flags); | ||
492 | return ret; | 491 | return ret; |
493 | } | 492 | } |
494 | 493 | ||
@@ -498,12 +497,13 @@ static void p54spi_op_tx(struct ieee80211_hw *dev, struct sk_buff *skb) | |||
498 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); | 497 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
499 | struct p54_tx_info *mi = (struct p54_tx_info *) info->rate_driver_data; | 498 | struct p54_tx_info *mi = (struct p54_tx_info *) info->rate_driver_data; |
500 | struct p54s_tx_info *di = (struct p54s_tx_info *) mi->data; | 499 | struct p54s_tx_info *di = (struct p54s_tx_info *) mi->data; |
500 | unsigned long flags; | ||
501 | 501 | ||
502 | BUILD_BUG_ON(sizeof(*di) > sizeof((mi->data))); | 502 | BUILD_BUG_ON(sizeof(*di) > sizeof((mi->data))); |
503 | 503 | ||
504 | spin_lock_bh(&priv->tx_lock); | 504 | spin_lock_irqsave(&priv->tx_lock, flags); |
505 | list_add_tail(&di->tx_list, &priv->tx_pending); | 505 | list_add_tail(&di->tx_list, &priv->tx_pending); |
506 | spin_unlock_bh(&priv->tx_lock); | 506 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
507 | 507 | ||
508 | queue_work(priv->hw->workqueue, &priv->work); | 508 | queue_work(priv->hw->workqueue, &priv->work); |
509 | } | 509 | } |
@@ -604,6 +604,7 @@ out: | |||
604 | static void p54spi_op_stop(struct ieee80211_hw *dev) | 604 | static void p54spi_op_stop(struct ieee80211_hw *dev) |
605 | { | 605 | { |
606 | struct p54s_priv *priv = dev->priv; | 606 | struct p54s_priv *priv = dev->priv; |
607 | unsigned long flags; | ||
607 | 608 | ||
608 | if (mutex_lock_interruptible(&priv->mutex)) { | 609 | if (mutex_lock_interruptible(&priv->mutex)) { |
609 | /* FIXME: how to handle this error? */ | 610 | /* FIXME: how to handle this error? */ |
@@ -615,9 +616,9 @@ static void p54spi_op_stop(struct ieee80211_hw *dev) | |||
615 | cancel_work_sync(&priv->work); | 616 | cancel_work_sync(&priv->work); |
616 | 617 | ||
617 | p54spi_power_off(priv); | 618 | p54spi_power_off(priv); |
618 | spin_lock_bh(&priv->tx_lock); | 619 | spin_lock_irqsave(&priv->tx_lock, flags); |
619 | INIT_LIST_HEAD(&priv->tx_pending); | 620 | INIT_LIST_HEAD(&priv->tx_pending); |
620 | spin_unlock_bh(&priv->tx_lock); | 621 | spin_unlock_irqrestore(&priv->tx_lock, flags); |
621 | 622 | ||
622 | priv->fw_state = FW_STATE_OFF; | 623 | priv->fw_state = FW_STATE_OFF; |
623 | mutex_unlock(&priv->mutex); | 624 | mutex_unlock(&priv->mutex); |
diff --git a/drivers/net/wireless/p54/p54usb.c b/drivers/net/wireless/p54/p54usb.c index da6640afc835..6cc6cbc9234f 100644 --- a/drivers/net/wireless/p54/p54usb.c +++ b/drivers/net/wireless/p54/p54usb.c | |||
@@ -71,6 +71,7 @@ static struct usb_device_id p54u_table[] __devinitdata = { | |||
71 | {USB_DEVICE(0x1260, 0xee22)}, /* SMC 2862W-G version 2 */ | 71 | {USB_DEVICE(0x1260, 0xee22)}, /* SMC 2862W-G version 2 */ |
72 | {USB_DEVICE(0x13b1, 0x000a)}, /* Linksys WUSB54G ver 2 */ | 72 | {USB_DEVICE(0x13b1, 0x000a)}, /* Linksys WUSB54G ver 2 */ |
73 | {USB_DEVICE(0x13B1, 0x000C)}, /* Linksys WUSB54AG */ | 73 | {USB_DEVICE(0x13B1, 0x000C)}, /* Linksys WUSB54AG */ |
74 | {USB_DEVICE(0x1413, 0x5400)}, /* Telsey 802.11g USB2.0 Adapter */ | ||
74 | {USB_DEVICE(0x1435, 0x0427)}, /* Inventel UR054G */ | 75 | {USB_DEVICE(0x1435, 0x0427)}, /* Inventel UR054G */ |
75 | {USB_DEVICE(0x2001, 0x3704)}, /* DLink DWL-G122 rev A2 */ | 76 | {USB_DEVICE(0x2001, 0x3704)}, /* DLink DWL-G122 rev A2 */ |
76 | {USB_DEVICE(0x413c, 0x8102)}, /* Spinnaker DUT */ | 77 | {USB_DEVICE(0x413c, 0x8102)}, /* Spinnaker DUT */ |
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 05f94e21b423..5752aaae906b 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
@@ -646,10 +646,8 @@ static int rt2x00lib_probe_hw(struct rt2x00_dev *rt2x00dev) | |||
646 | * Register HW. | 646 | * Register HW. |
647 | */ | 647 | */ |
648 | status = ieee80211_register_hw(rt2x00dev->hw); | 648 | status = ieee80211_register_hw(rt2x00dev->hw); |
649 | if (status) { | 649 | if (status) |
650 | rt2x00lib_remove_hw(rt2x00dev); | ||
651 | return status; | 650 | return status; |
652 | } | ||
653 | 651 | ||
654 | set_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags); | 652 | set_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags); |
655 | 653 | ||
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c index 43fa0f849003..9730b4f8fd26 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.c +++ b/drivers/net/wireless/rt2x00/rt2x00pci.c | |||
@@ -369,8 +369,6 @@ int rt2x00pci_suspend(struct pci_dev *pci_dev, pm_message_t state) | |||
369 | if (retval) | 369 | if (retval) |
370 | return retval; | 370 | return retval; |
371 | 371 | ||
372 | rt2x00pci_free_reg(rt2x00dev); | ||
373 | |||
374 | pci_save_state(pci_dev); | 372 | pci_save_state(pci_dev); |
375 | pci_disable_device(pci_dev); | 373 | pci_disable_device(pci_dev); |
376 | return pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state)); | 374 | return pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state)); |
@@ -381,7 +379,6 @@ int rt2x00pci_resume(struct pci_dev *pci_dev) | |||
381 | { | 379 | { |
382 | struct ieee80211_hw *hw = pci_get_drvdata(pci_dev); | 380 | struct ieee80211_hw *hw = pci_get_drvdata(pci_dev); |
383 | struct rt2x00_dev *rt2x00dev = hw->priv; | 381 | struct rt2x00_dev *rt2x00dev = hw->priv; |
384 | int retval; | ||
385 | 382 | ||
386 | if (pci_set_power_state(pci_dev, PCI_D0) || | 383 | if (pci_set_power_state(pci_dev, PCI_D0) || |
387 | pci_enable_device(pci_dev) || | 384 | pci_enable_device(pci_dev) || |
@@ -390,20 +387,7 @@ int rt2x00pci_resume(struct pci_dev *pci_dev) | |||
390 | return -EIO; | 387 | return -EIO; |
391 | } | 388 | } |
392 | 389 | ||
393 | retval = rt2x00pci_alloc_reg(rt2x00dev); | 390 | return rt2x00lib_resume(rt2x00dev); |
394 | if (retval) | ||
395 | return retval; | ||
396 | |||
397 | retval = rt2x00lib_resume(rt2x00dev); | ||
398 | if (retval) | ||
399 | goto exit_free_reg; | ||
400 | |||
401 | return 0; | ||
402 | |||
403 | exit_free_reg: | ||
404 | rt2x00pci_free_reg(rt2x00dev); | ||
405 | |||
406 | return retval; | ||
407 | } | 391 | } |
408 | EXPORT_SYMBOL_GPL(rt2x00pci_resume); | 392 | EXPORT_SYMBOL_GPL(rt2x00pci_resume); |
409 | #endif /* CONFIG_PM */ | 393 | #endif /* CONFIG_PM */ |
diff --git a/drivers/net/wireless/rt2x00/rt2x00usb.c b/drivers/net/wireless/rt2x00/rt2x00usb.c index 7d50ca82375e..501544882c2c 100644 --- a/drivers/net/wireless/rt2x00/rt2x00usb.c +++ b/drivers/net/wireless/rt2x00/rt2x00usb.c | |||
@@ -702,8 +702,6 @@ int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state) | |||
702 | if (retval) | 702 | if (retval) |
703 | return retval; | 703 | return retval; |
704 | 704 | ||
705 | rt2x00usb_free_reg(rt2x00dev); | ||
706 | |||
707 | /* | 705 | /* |
708 | * Decrease usbdev refcount. | 706 | * Decrease usbdev refcount. |
709 | */ | 707 | */ |
@@ -717,24 +715,10 @@ int rt2x00usb_resume(struct usb_interface *usb_intf) | |||
717 | { | 715 | { |
718 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); | 716 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); |
719 | struct rt2x00_dev *rt2x00dev = hw->priv; | 717 | struct rt2x00_dev *rt2x00dev = hw->priv; |
720 | int retval; | ||
721 | 718 | ||
722 | usb_get_dev(interface_to_usbdev(usb_intf)); | 719 | usb_get_dev(interface_to_usbdev(usb_intf)); |
723 | 720 | ||
724 | retval = rt2x00usb_alloc_reg(rt2x00dev); | 721 | return rt2x00lib_resume(rt2x00dev); |
725 | if (retval) | ||
726 | return retval; | ||
727 | |||
728 | retval = rt2x00lib_resume(rt2x00dev); | ||
729 | if (retval) | ||
730 | goto exit_free_reg; | ||
731 | |||
732 | return 0; | ||
733 | |||
734 | exit_free_reg: | ||
735 | rt2x00usb_free_reg(rt2x00dev); | ||
736 | |||
737 | return retval; | ||
738 | } | 722 | } |
739 | EXPORT_SYMBOL_GPL(rt2x00usb_resume); | 723 | EXPORT_SYMBOL_GPL(rt2x00usb_resume); |
740 | #endif /* CONFIG_PM */ | 724 | #endif /* CONFIG_PM */ |
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index 420fff42c0dd..853b2b279b64 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -2369,6 +2369,8 @@ static struct usb_device_id rt73usb_device_table[] = { | |||
2369 | /* Buffalo */ | 2369 | /* Buffalo */ |
2370 | { USB_DEVICE(0x0411, 0x00d8), USB_DEVICE_DATA(&rt73usb_ops) }, | 2370 | { USB_DEVICE(0x0411, 0x00d8), USB_DEVICE_DATA(&rt73usb_ops) }, |
2371 | { USB_DEVICE(0x0411, 0x00f4), USB_DEVICE_DATA(&rt73usb_ops) }, | 2371 | { USB_DEVICE(0x0411, 0x00f4), USB_DEVICE_DATA(&rt73usb_ops) }, |
2372 | { USB_DEVICE(0x0411, 0x0116), USB_DEVICE_DATA(&rt73usb_ops) }, | ||
2373 | { USB_DEVICE(0x0411, 0x0119), USB_DEVICE_DATA(&rt73usb_ops) }, | ||
2372 | /* CNet */ | 2374 | /* CNet */ |
2373 | { USB_DEVICE(0x1371, 0x9022), USB_DEVICE_DATA(&rt73usb_ops) }, | 2375 | { USB_DEVICE(0x1371, 0x9022), USB_DEVICE_DATA(&rt73usb_ops) }, |
2374 | { USB_DEVICE(0x1371, 0x9032), USB_DEVICE_DATA(&rt73usb_ops) }, | 2376 | { USB_DEVICE(0x1371, 0x9032), USB_DEVICE_DATA(&rt73usb_ops) }, |
diff --git a/drivers/pci/access.c b/drivers/pci/access.c index 64dd7df90e62..0f3706512686 100644 --- a/drivers/pci/access.c +++ b/drivers/pci/access.c | |||
@@ -87,8 +87,8 @@ EXPORT_SYMBOL(pci_read_vpd); | |||
87 | * pci_write_vpd - Write entry to Vital Product Data | 87 | * pci_write_vpd - Write entry to Vital Product Data |
88 | * @dev: pci device struct | 88 | * @dev: pci device struct |
89 | * @pos: offset in vpd space | 89 | * @pos: offset in vpd space |
90 | * @count: number of bytes to read | 90 | * @count: number of bytes to write |
91 | * @val: value to write | 91 | * @buf: buffer containing write data |
92 | * | 92 | * |
93 | */ | 93 | */ |
94 | ssize_t pci_write_vpd(struct pci_dev *dev, loff_t pos, size_t count, const void *buf) | 94 | ssize_t pci_write_vpd(struct pci_dev *dev, loff_t pos, size_t count, const void *buf) |
diff --git a/drivers/pci/htirq.c b/drivers/pci/htirq.c index bf7d6ce9bbb3..6808d8333ecc 100644 --- a/drivers/pci/htirq.c +++ b/drivers/pci/htirq.c | |||
@@ -158,6 +158,7 @@ int ht_create_irq(struct pci_dev *dev, int idx) | |||
158 | 158 | ||
159 | /** | 159 | /** |
160 | * ht_destroy_irq - destroy an irq created with ht_create_irq | 160 | * ht_destroy_irq - destroy an irq created with ht_create_irq |
161 | * @irq: irq to be destroyed | ||
161 | * | 162 | * |
162 | * This reverses ht_create_irq removing the specified irq from | 163 | * This reverses ht_create_irq removing the specified irq from |
163 | * existence. The irq should be free before this happens. | 164 | * existence. The irq should be free before this happens. |
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c index a7eb1b46a5a8..85ebd02a64a7 100644 --- a/drivers/pci/pci-sysfs.c +++ b/drivers/pci/pci-sysfs.c | |||
@@ -492,6 +492,7 @@ write_vpd_attr(struct kobject *kobj, struct bin_attribute *bin_attr, | |||
492 | /** | 492 | /** |
493 | * pci_read_legacy_io - read byte(s) from legacy I/O port space | 493 | * pci_read_legacy_io - read byte(s) from legacy I/O port space |
494 | * @kobj: kobject corresponding to file to read from | 494 | * @kobj: kobject corresponding to file to read from |
495 | * @bin_attr: struct bin_attribute for this file | ||
495 | * @buf: buffer to store results | 496 | * @buf: buffer to store results |
496 | * @off: offset into legacy I/O port space | 497 | * @off: offset into legacy I/O port space |
497 | * @count: number of bytes to read | 498 | * @count: number of bytes to read |
@@ -517,6 +518,7 @@ pci_read_legacy_io(struct kobject *kobj, struct bin_attribute *bin_attr, | |||
517 | /** | 518 | /** |
518 | * pci_write_legacy_io - write byte(s) to legacy I/O port space | 519 | * pci_write_legacy_io - write byte(s) to legacy I/O port space |
519 | * @kobj: kobject corresponding to file to read from | 520 | * @kobj: kobject corresponding to file to read from |
521 | * @bin_attr: struct bin_attribute for this file | ||
520 | * @buf: buffer containing value to be written | 522 | * @buf: buffer containing value to be written |
521 | * @off: offset into legacy I/O port space | 523 | * @off: offset into legacy I/O port space |
522 | * @count: number of bytes to write | 524 | * @count: number of bytes to write |
@@ -733,9 +735,9 @@ pci_mmap_resource_wc(struct kobject *kobj, struct bin_attribute *attr, | |||
733 | 735 | ||
734 | /** | 736 | /** |
735 | * pci_remove_resource_files - cleanup resource files | 737 | * pci_remove_resource_files - cleanup resource files |
736 | * @dev: dev to cleanup | 738 | * @pdev: dev to cleanup |
737 | * | 739 | * |
738 | * If we created resource files for @dev, remove them from sysfs and | 740 | * If we created resource files for @pdev, remove them from sysfs and |
739 | * free their resources. | 741 | * free their resources. |
740 | */ | 742 | */ |
741 | static void | 743 | static void |
@@ -793,9 +795,9 @@ static int pci_create_attr(struct pci_dev *pdev, int num, int write_combine) | |||
793 | 795 | ||
794 | /** | 796 | /** |
795 | * pci_create_resource_files - create resource files in sysfs for @dev | 797 | * pci_create_resource_files - create resource files in sysfs for @dev |
796 | * @dev: dev in question | 798 | * @pdev: dev in question |
797 | * | 799 | * |
798 | * Walk the resources in @dev creating files for each resource available. | 800 | * Walk the resources in @pdev creating files for each resource available. |
799 | */ | 801 | */ |
800 | static int pci_create_resource_files(struct pci_dev *pdev) | 802 | static int pci_create_resource_files(struct pci_dev *pdev) |
801 | { | 803 | { |
@@ -829,6 +831,7 @@ void __weak pci_remove_resource_files(struct pci_dev *dev) { return; } | |||
829 | /** | 831 | /** |
830 | * pci_write_rom - used to enable access to the PCI ROM display | 832 | * pci_write_rom - used to enable access to the PCI ROM display |
831 | * @kobj: kernel object handle | 833 | * @kobj: kernel object handle |
834 | * @bin_attr: struct bin_attribute for this file | ||
832 | * @buf: user input | 835 | * @buf: user input |
833 | * @off: file offset | 836 | * @off: file offset |
834 | * @count: number of byte in input | 837 | * @count: number of byte in input |
@@ -852,6 +855,7 @@ pci_write_rom(struct kobject *kobj, struct bin_attribute *bin_attr, | |||
852 | /** | 855 | /** |
853 | * pci_read_rom - read a PCI ROM | 856 | * pci_read_rom - read a PCI ROM |
854 | * @kobj: kernel object handle | 857 | * @kobj: kernel object handle |
858 | * @bin_attr: struct bin_attribute for this file | ||
855 | * @buf: where to put the data we read from the ROM | 859 | * @buf: where to put the data we read from the ROM |
856 | * @off: file offset | 860 | * @off: file offset |
857 | * @count: number of bytes to read | 861 | * @count: number of bytes to read |
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 16fd0d4c3166..34bf0fdf5047 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -681,11 +681,34 @@ EXPORT_SYMBOL(pci_choose_state); | |||
681 | 681 | ||
682 | #define PCI_EXP_SAVE_REGS 7 | 682 | #define PCI_EXP_SAVE_REGS 7 |
683 | 683 | ||
684 | #define pcie_cap_has_devctl(type, flags) 1 | ||
685 | #define pcie_cap_has_lnkctl(type, flags) \ | ||
686 | ((flags & PCI_EXP_FLAGS_VERS) > 1 || \ | ||
687 | (type == PCI_EXP_TYPE_ROOT_PORT || \ | ||
688 | type == PCI_EXP_TYPE_ENDPOINT || \ | ||
689 | type == PCI_EXP_TYPE_LEG_END)) | ||
690 | #define pcie_cap_has_sltctl(type, flags) \ | ||
691 | ((flags & PCI_EXP_FLAGS_VERS) > 1 || \ | ||
692 | ((type == PCI_EXP_TYPE_ROOT_PORT) || \ | ||
693 | (type == PCI_EXP_TYPE_DOWNSTREAM && \ | ||
694 | (flags & PCI_EXP_FLAGS_SLOT)))) | ||
695 | #define pcie_cap_has_rtctl(type, flags) \ | ||
696 | ((flags & PCI_EXP_FLAGS_VERS) > 1 || \ | ||
697 | (type == PCI_EXP_TYPE_ROOT_PORT || \ | ||
698 | type == PCI_EXP_TYPE_RC_EC)) | ||
699 | #define pcie_cap_has_devctl2(type, flags) \ | ||
700 | ((flags & PCI_EXP_FLAGS_VERS) > 1) | ||
701 | #define pcie_cap_has_lnkctl2(type, flags) \ | ||
702 | ((flags & PCI_EXP_FLAGS_VERS) > 1) | ||
703 | #define pcie_cap_has_sltctl2(type, flags) \ | ||
704 | ((flags & PCI_EXP_FLAGS_VERS) > 1) | ||
705 | |||
684 | static int pci_save_pcie_state(struct pci_dev *dev) | 706 | static int pci_save_pcie_state(struct pci_dev *dev) |
685 | { | 707 | { |
686 | int pos, i = 0; | 708 | int pos, i = 0; |
687 | struct pci_cap_saved_state *save_state; | 709 | struct pci_cap_saved_state *save_state; |
688 | u16 *cap; | 710 | u16 *cap; |
711 | u16 flags; | ||
689 | 712 | ||
690 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | 713 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); |
691 | if (pos <= 0) | 714 | if (pos <= 0) |
@@ -698,13 +721,22 @@ static int pci_save_pcie_state(struct pci_dev *dev) | |||
698 | } | 721 | } |
699 | cap = (u16 *)&save_state->data[0]; | 722 | cap = (u16 *)&save_state->data[0]; |
700 | 723 | ||
701 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]); | 724 | pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags); |
702 | pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]); | 725 | |
703 | pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]); | 726 | if (pcie_cap_has_devctl(dev->pcie_type, flags)) |
704 | pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]); | 727 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &cap[i++]); |
705 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]); | 728 | if (pcie_cap_has_lnkctl(dev->pcie_type, flags)) |
706 | pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]); | 729 | pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &cap[i++]); |
707 | pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]); | 730 | if (pcie_cap_has_sltctl(dev->pcie_type, flags)) |
731 | pci_read_config_word(dev, pos + PCI_EXP_SLTCTL, &cap[i++]); | ||
732 | if (pcie_cap_has_rtctl(dev->pcie_type, flags)) | ||
733 | pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &cap[i++]); | ||
734 | if (pcie_cap_has_devctl2(dev->pcie_type, flags)) | ||
735 | pci_read_config_word(dev, pos + PCI_EXP_DEVCTL2, &cap[i++]); | ||
736 | if (pcie_cap_has_lnkctl2(dev->pcie_type, flags)) | ||
737 | pci_read_config_word(dev, pos + PCI_EXP_LNKCTL2, &cap[i++]); | ||
738 | if (pcie_cap_has_sltctl2(dev->pcie_type, flags)) | ||
739 | pci_read_config_word(dev, pos + PCI_EXP_SLTCTL2, &cap[i++]); | ||
708 | 740 | ||
709 | return 0; | 741 | return 0; |
710 | } | 742 | } |
@@ -714,6 +746,7 @@ static void pci_restore_pcie_state(struct pci_dev *dev) | |||
714 | int i = 0, pos; | 746 | int i = 0, pos; |
715 | struct pci_cap_saved_state *save_state; | 747 | struct pci_cap_saved_state *save_state; |
716 | u16 *cap; | 748 | u16 *cap; |
749 | u16 flags; | ||
717 | 750 | ||
718 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP); | 751 | save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP); |
719 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); | 752 | pos = pci_find_capability(dev, PCI_CAP_ID_EXP); |
@@ -721,13 +754,22 @@ static void pci_restore_pcie_state(struct pci_dev *dev) | |||
721 | return; | 754 | return; |
722 | cap = (u16 *)&save_state->data[0]; | 755 | cap = (u16 *)&save_state->data[0]; |
723 | 756 | ||
724 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]); | 757 | pci_read_config_word(dev, pos + PCI_EXP_FLAGS, &flags); |
725 | pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]); | 758 | |
726 | pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]); | 759 | if (pcie_cap_has_devctl(dev->pcie_type, flags)) |
727 | pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]); | 760 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, cap[i++]); |
728 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]); | 761 | if (pcie_cap_has_lnkctl(dev->pcie_type, flags)) |
729 | pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]); | 762 | pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, cap[i++]); |
730 | pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]); | 763 | if (pcie_cap_has_sltctl(dev->pcie_type, flags)) |
764 | pci_write_config_word(dev, pos + PCI_EXP_SLTCTL, cap[i++]); | ||
765 | if (pcie_cap_has_rtctl(dev->pcie_type, flags)) | ||
766 | pci_write_config_word(dev, pos + PCI_EXP_RTCTL, cap[i++]); | ||
767 | if (pcie_cap_has_devctl2(dev->pcie_type, flags)) | ||
768 | pci_write_config_word(dev, pos + PCI_EXP_DEVCTL2, cap[i++]); | ||
769 | if (pcie_cap_has_lnkctl2(dev->pcie_type, flags)) | ||
770 | pci_write_config_word(dev, pos + PCI_EXP_LNKCTL2, cap[i++]); | ||
771 | if (pcie_cap_has_sltctl2(dev->pcie_type, flags)) | ||
772 | pci_write_config_word(dev, pos + PCI_EXP_SLTCTL2, cap[i++]); | ||
731 | } | 773 | } |
732 | 774 | ||
733 | 775 | ||
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 8eb50dffb78a..e3c3e081b834 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
@@ -1118,10 +1118,6 @@ unsigned int __devinit pci_scan_child_bus(struct pci_bus *bus) | |||
1118 | return max; | 1118 | return max; |
1119 | } | 1119 | } |
1120 | 1120 | ||
1121 | void __attribute__((weak)) set_pci_bus_resources_arch_default(struct pci_bus *b) | ||
1122 | { | ||
1123 | } | ||
1124 | |||
1125 | struct pci_bus * pci_create_bus(struct device *parent, | 1121 | struct pci_bus * pci_create_bus(struct device *parent, |
1126 | int bus, struct pci_ops *ops, void *sysdata) | 1122 | int bus, struct pci_ops *ops, void *sysdata) |
1127 | { | 1123 | { |
@@ -1180,8 +1176,6 @@ struct pci_bus * pci_create_bus(struct device *parent, | |||
1180 | b->resource[0] = &ioport_resource; | 1176 | b->resource[0] = &ioport_resource; |
1181 | b->resource[1] = &iomem_resource; | 1177 | b->resource[1] = &iomem_resource; |
1182 | 1178 | ||
1183 | set_pci_bus_resources_arch_default(b); | ||
1184 | |||
1185 | return b; | 1179 | return b; |
1186 | 1180 | ||
1187 | dev_create_file_err: | 1181 | dev_create_file_err: |
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 0254741bece0..3067673d54f6 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c | |||
@@ -2033,6 +2033,7 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS400_200, quirk_di | |||
2033 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS480, quirk_disable_all_msi); | 2033 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS480, quirk_disable_all_msi); |
2034 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT3336, quirk_disable_all_msi); | 2034 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT3336, quirk_disable_all_msi); |
2035 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT3351, quirk_disable_all_msi); | 2035 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT3351, quirk_disable_all_msi); |
2036 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VT3364, quirk_disable_all_msi); | ||
2036 | 2037 | ||
2037 | /* Disable MSI on chipsets that are known to not support it */ | 2038 | /* Disable MSI on chipsets that are known to not support it */ |
2038 | static void __devinit quirk_disable_msi(struct pci_dev *dev) | 2039 | static void __devinit quirk_disable_msi(struct pci_dev *dev) |
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index 8d9da9d30a61..a00f85471b6e 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c | |||
@@ -536,11 +536,13 @@ static void pci_bus_dump_res(struct pci_bus *bus) | |||
536 | 536 | ||
537 | for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) { | 537 | for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) { |
538 | struct resource *res = bus->resource[i]; | 538 | struct resource *res = bus->resource[i]; |
539 | if (!res) | 539 | if (!res || !res->end) |
540 | continue; | 540 | continue; |
541 | 541 | ||
542 | dev_printk(KERN_DEBUG, &bus->dev, "resource %d %s %pR\n", i, | 542 | dev_printk(KERN_DEBUG, &bus->dev, "resource %d %s %pR\n", i, |
543 | (res->flags & IORESOURCE_IO) ? "io: " : "mem:", res); | 543 | (res->flags & IORESOURCE_IO) ? "io: " : |
544 | ((res->flags & IORESOURCE_PREFETCH)? "pref mem":"mem:"), | ||
545 | res); | ||
544 | } | 546 | } |
545 | } | 547 | } |
546 | 548 | ||
diff --git a/drivers/pci/slot.c b/drivers/pci/slot.c index 21189447e545..fe95ce20bcbd 100644 --- a/drivers/pci/slot.c +++ b/drivers/pci/slot.c | |||
@@ -264,8 +264,8 @@ EXPORT_SYMBOL_GPL(pci_create_slot); | |||
264 | 264 | ||
265 | /** | 265 | /** |
266 | * pci_renumber_slot - update %struct pci_slot -> number | 266 | * pci_renumber_slot - update %struct pci_slot -> number |
267 | * @slot - %struct pci_slot to update | 267 | * @slot: &struct pci_slot to update |
268 | * @slot_nr - new number for slot | 268 | * @slot_nr: new number for slot |
269 | * | 269 | * |
270 | * The primary purpose of this interface is to allow callers who earlier | 270 | * The primary purpose of this interface is to allow callers who earlier |
271 | * created a placeholder slot in pci_create_slot() by passing a -1 as | 271 | * created a placeholder slot in pci_create_slot() by passing a -1 as |
diff --git a/drivers/pcmcia/pxa2xx_sharpsl.c b/drivers/pcmcia/pxa2xx_sharpsl.c index 1cd02f5a23a0..bc43f78f6f0b 100644 --- a/drivers/pcmcia/pxa2xx_sharpsl.c +++ b/drivers/pcmcia/pxa2xx_sharpsl.c | |||
@@ -255,6 +255,9 @@ static int __init sharpsl_pcmcia_init(void) | |||
255 | { | 255 | { |
256 | int ret; | 256 | int ret; |
257 | 257 | ||
258 | if (!platform_scoop_config) | ||
259 | return -ENODEV; | ||
260 | |||
258 | sharpsl_pcmcia_ops.nr = platform_scoop_config->num_devs; | 261 | sharpsl_pcmcia_ops.nr = platform_scoop_config->num_devs; |
259 | sharpsl_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1); | 262 | sharpsl_pcmcia_device = platform_device_alloc("pxa2xx-pcmcia", -1); |
260 | 263 | ||
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index d3c92d777bde..552958545f94 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c | |||
@@ -317,7 +317,8 @@ static void sony_laptop_report_input_event(u8 event) | |||
317 | struct input_dev *key_dev = sony_laptop_input.key_dev; | 317 | struct input_dev *key_dev = sony_laptop_input.key_dev; |
318 | struct sony_laptop_keypress kp = { NULL }; | 318 | struct sony_laptop_keypress kp = { NULL }; |
319 | 319 | ||
320 | if (event == SONYPI_EVENT_FNKEY_RELEASED) { | 320 | if (event == SONYPI_EVENT_FNKEY_RELEASED || |
321 | event == SONYPI_EVENT_ANYBUTTON_RELEASED) { | ||
321 | /* Nothing, not all VAIOs generate this event */ | 322 | /* Nothing, not all VAIOs generate this event */ |
322 | return; | 323 | return; |
323 | } | 324 | } |
@@ -905,7 +906,6 @@ static struct sony_nc_event sony_127_events[] = { | |||
905 | { 0x05, SONYPI_EVENT_ANYBUTTON_RELEASED }, | 906 | { 0x05, SONYPI_EVENT_ANYBUTTON_RELEASED }, |
906 | { 0x86, SONYPI_EVENT_PKEY_P5 }, | 907 | { 0x86, SONYPI_EVENT_PKEY_P5 }, |
907 | { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED }, | 908 | { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED }, |
908 | { 0x06, SONYPI_EVENT_ANYBUTTON_RELEASED }, | ||
909 | { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED }, | 909 | { 0x87, SONYPI_EVENT_SETTINGKEY_PRESSED }, |
910 | { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED }, | 910 | { 0x07, SONYPI_EVENT_ANYBUTTON_RELEASED }, |
911 | { 0, 0 }, | 911 | { 0, 0 }, |
@@ -1004,6 +1004,7 @@ static int sony_nc_function_setup(struct acpi_device *device) | |||
1004 | sony_call_snc_handle(0x0100, 0, &result); | 1004 | sony_call_snc_handle(0x0100, 0, &result); |
1005 | sony_call_snc_handle(0x0101, 0, &result); | 1005 | sony_call_snc_handle(0x0101, 0, &result); |
1006 | sony_call_snc_handle(0x0102, 0x100, &result); | 1006 | sony_call_snc_handle(0x0102, 0x100, &result); |
1007 | sony_call_snc_handle(0x0127, 0, &result); | ||
1007 | 1008 | ||
1008 | return 0; | 1009 | return 0; |
1009 | } | 1010 | } |
@@ -1040,7 +1041,7 @@ static int sony_nc_resume(struct acpi_device *device) | |||
1040 | 1041 | ||
1041 | /* set the last requested brightness level */ | 1042 | /* set the last requested brightness level */ |
1042 | if (sony_backlight_device && | 1043 | if (sony_backlight_device && |
1043 | !sony_backlight_update_status(sony_backlight_device)) | 1044 | sony_backlight_update_status(sony_backlight_device) < 0) |
1044 | printk(KERN_WARNING DRV_PFX "unable to restore brightness level\n"); | 1045 | printk(KERN_WARNING DRV_PFX "unable to restore brightness level\n"); |
1045 | 1046 | ||
1046 | return 0; | 1047 | return 0; |
@@ -1102,8 +1103,11 @@ static int sony_nc_setup_wifi_rfkill(struct acpi_device *device) | |||
1102 | err = rfkill_register(sony_wifi_rfkill); | 1103 | err = rfkill_register(sony_wifi_rfkill); |
1103 | if (err) | 1104 | if (err) |
1104 | rfkill_free(sony_wifi_rfkill); | 1105 | rfkill_free(sony_wifi_rfkill); |
1105 | else | 1106 | else { |
1106 | sony_rfkill_devices[SONY_WIFI] = sony_wifi_rfkill; | 1107 | sony_rfkill_devices[SONY_WIFI] = sony_wifi_rfkill; |
1108 | sony_nc_rfkill_set(sony_wifi_rfkill->data, | ||
1109 | RFKILL_STATE_UNBLOCKED); | ||
1110 | } | ||
1107 | return err; | 1111 | return err; |
1108 | } | 1112 | } |
1109 | 1113 | ||
@@ -1124,8 +1128,11 @@ static int sony_nc_setup_bluetooth_rfkill(struct acpi_device *device) | |||
1124 | err = rfkill_register(sony_bluetooth_rfkill); | 1128 | err = rfkill_register(sony_bluetooth_rfkill); |
1125 | if (err) | 1129 | if (err) |
1126 | rfkill_free(sony_bluetooth_rfkill); | 1130 | rfkill_free(sony_bluetooth_rfkill); |
1127 | else | 1131 | else { |
1128 | sony_rfkill_devices[SONY_BLUETOOTH] = sony_bluetooth_rfkill; | 1132 | sony_rfkill_devices[SONY_BLUETOOTH] = sony_bluetooth_rfkill; |
1133 | sony_nc_rfkill_set(sony_bluetooth_rfkill->data, | ||
1134 | RFKILL_STATE_UNBLOCKED); | ||
1135 | } | ||
1129 | return err; | 1136 | return err; |
1130 | } | 1137 | } |
1131 | 1138 | ||
@@ -1145,8 +1152,11 @@ static int sony_nc_setup_wwan_rfkill(struct acpi_device *device) | |||
1145 | err = rfkill_register(sony_wwan_rfkill); | 1152 | err = rfkill_register(sony_wwan_rfkill); |
1146 | if (err) | 1153 | if (err) |
1147 | rfkill_free(sony_wwan_rfkill); | 1154 | rfkill_free(sony_wwan_rfkill); |
1148 | else | 1155 | else { |
1149 | sony_rfkill_devices[SONY_WWAN] = sony_wwan_rfkill; | 1156 | sony_rfkill_devices[SONY_WWAN] = sony_wwan_rfkill; |
1157 | sony_nc_rfkill_set(sony_wwan_rfkill->data, | ||
1158 | RFKILL_STATE_UNBLOCKED); | ||
1159 | } | ||
1150 | return err; | 1160 | return err; |
1151 | } | 1161 | } |
1152 | 1162 | ||
@@ -1166,8 +1176,11 @@ static int sony_nc_setup_wimax_rfkill(struct acpi_device *device) | |||
1166 | err = rfkill_register(sony_wimax_rfkill); | 1176 | err = rfkill_register(sony_wimax_rfkill); |
1167 | if (err) | 1177 | if (err) |
1168 | rfkill_free(sony_wimax_rfkill); | 1178 | rfkill_free(sony_wimax_rfkill); |
1169 | else | 1179 | else { |
1170 | sony_rfkill_devices[SONY_WIMAX] = sony_wimax_rfkill; | 1180 | sony_rfkill_devices[SONY_WIMAX] = sony_wimax_rfkill; |
1181 | sony_nc_rfkill_set(sony_wimax_rfkill->data, | ||
1182 | RFKILL_STATE_UNBLOCKED); | ||
1183 | } | ||
1171 | return err; | 1184 | return err; |
1172 | } | 1185 | } |
1173 | 1186 | ||
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index a40b075743d9..912be65b6261 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * 02110-1301, USA. | 21 | * 02110-1301, USA. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #define TPACPI_VERSION "0.22" | 24 | #define TPACPI_VERSION "0.23" |
25 | #define TPACPI_SYSFS_VERSION 0x020300 | 25 | #define TPACPI_SYSFS_VERSION 0x020300 |
26 | 26 | ||
27 | /* | 27 | /* |
@@ -303,11 +303,17 @@ static u32 dbg_level; | |||
303 | 303 | ||
304 | static struct workqueue_struct *tpacpi_wq; | 304 | static struct workqueue_struct *tpacpi_wq; |
305 | 305 | ||
306 | enum led_status_t { | ||
307 | TPACPI_LED_OFF = 0, | ||
308 | TPACPI_LED_ON, | ||
309 | TPACPI_LED_BLINK, | ||
310 | }; | ||
311 | |||
306 | /* Special LED class that can defer work */ | 312 | /* Special LED class that can defer work */ |
307 | struct tpacpi_led_classdev { | 313 | struct tpacpi_led_classdev { |
308 | struct led_classdev led_classdev; | 314 | struct led_classdev led_classdev; |
309 | struct work_struct work; | 315 | struct work_struct work; |
310 | enum led_brightness new_brightness; | 316 | enum led_status_t new_state; |
311 | unsigned int led; | 317 | unsigned int led; |
312 | }; | 318 | }; |
313 | 319 | ||
@@ -2946,12 +2952,18 @@ static int hotkey_read(char *p) | |||
2946 | return len; | 2952 | return len; |
2947 | } | 2953 | } |
2948 | 2954 | ||
2949 | static void hotkey_enabledisable_warn(void) | 2955 | static void hotkey_enabledisable_warn(bool enable) |
2950 | { | 2956 | { |
2951 | tpacpi_log_usertask("procfs hotkey enable/disable"); | 2957 | tpacpi_log_usertask("procfs hotkey enable/disable"); |
2952 | WARN(1, TPACPI_WARN | 2958 | if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable), |
2953 | "hotkey enable/disable functionality has been " | 2959 | TPACPI_WARN |
2954 | "removed from the driver. Hotkeys are always enabled.\n"); | 2960 | "hotkey enable/disable functionality has been " |
2961 | "removed from the driver. Hotkeys are always " | ||
2962 | "enabled\n")) | ||
2963 | printk(TPACPI_ERR | ||
2964 | "Please remove the hotkey=enable module " | ||
2965 | "parameter, it is deprecated. Hotkeys are always " | ||
2966 | "enabled\n"); | ||
2955 | } | 2967 | } |
2956 | 2968 | ||
2957 | static int hotkey_write(char *buf) | 2969 | static int hotkey_write(char *buf) |
@@ -2971,9 +2983,9 @@ static int hotkey_write(char *buf) | |||
2971 | res = 0; | 2983 | res = 0; |
2972 | while ((cmd = next_cmd(&buf))) { | 2984 | while ((cmd = next_cmd(&buf))) { |
2973 | if (strlencmp(cmd, "enable") == 0) { | 2985 | if (strlencmp(cmd, "enable") == 0) { |
2974 | hotkey_enabledisable_warn(); | 2986 | hotkey_enabledisable_warn(1); |
2975 | } else if (strlencmp(cmd, "disable") == 0) { | 2987 | } else if (strlencmp(cmd, "disable") == 0) { |
2976 | hotkey_enabledisable_warn(); | 2988 | hotkey_enabledisable_warn(0); |
2977 | res = -EPERM; | 2989 | res = -EPERM; |
2978 | } else if (strlencmp(cmd, "reset") == 0) { | 2990 | } else if (strlencmp(cmd, "reset") == 0) { |
2979 | mask = hotkey_orig_mask; | 2991 | mask = hotkey_orig_mask; |
@@ -4207,7 +4219,7 @@ static void light_set_status_worker(struct work_struct *work) | |||
4207 | container_of(work, struct tpacpi_led_classdev, work); | 4219 | container_of(work, struct tpacpi_led_classdev, work); |
4208 | 4220 | ||
4209 | if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING)) | 4221 | if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING)) |
4210 | light_set_status((data->new_brightness != LED_OFF)); | 4222 | light_set_status((data->new_state != TPACPI_LED_OFF)); |
4211 | } | 4223 | } |
4212 | 4224 | ||
4213 | static void light_sysfs_set(struct led_classdev *led_cdev, | 4225 | static void light_sysfs_set(struct led_classdev *led_cdev, |
@@ -4217,7 +4229,8 @@ static void light_sysfs_set(struct led_classdev *led_cdev, | |||
4217 | container_of(led_cdev, | 4229 | container_of(led_cdev, |
4218 | struct tpacpi_led_classdev, | 4230 | struct tpacpi_led_classdev, |
4219 | led_classdev); | 4231 | led_classdev); |
4220 | data->new_brightness = brightness; | 4232 | data->new_state = (brightness != LED_OFF) ? |
4233 | TPACPI_LED_ON : TPACPI_LED_OFF; | ||
4221 | queue_work(tpacpi_wq, &data->work); | 4234 | queue_work(tpacpi_wq, &data->work); |
4222 | } | 4235 | } |
4223 | 4236 | ||
@@ -4724,12 +4737,6 @@ enum { /* For TPACPI_LED_OLD */ | |||
4724 | TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */ | 4737 | TPACPI_LED_EC_HLMS = 0x0e, /* EC reg to select led to command */ |
4725 | }; | 4738 | }; |
4726 | 4739 | ||
4727 | enum led_status_t { | ||
4728 | TPACPI_LED_OFF = 0, | ||
4729 | TPACPI_LED_ON, | ||
4730 | TPACPI_LED_BLINK, | ||
4731 | }; | ||
4732 | |||
4733 | static enum led_access_mode led_supported; | 4740 | static enum led_access_mode led_supported; |
4734 | 4741 | ||
4735 | TPACPI_HANDLE(led, ec, "SLED", /* 570 */ | 4742 | TPACPI_HANDLE(led, ec, "SLED", /* 570 */ |
@@ -4841,23 +4848,13 @@ static int led_set_status(const unsigned int led, | |||
4841 | return rc; | 4848 | return rc; |
4842 | } | 4849 | } |
4843 | 4850 | ||
4844 | static void led_sysfs_set_status(unsigned int led, | ||
4845 | enum led_brightness brightness) | ||
4846 | { | ||
4847 | led_set_status(led, | ||
4848 | (brightness == LED_OFF) ? | ||
4849 | TPACPI_LED_OFF : | ||
4850 | (tpacpi_led_state_cache[led] == TPACPI_LED_BLINK) ? | ||
4851 | TPACPI_LED_BLINK : TPACPI_LED_ON); | ||
4852 | } | ||
4853 | |||
4854 | static void led_set_status_worker(struct work_struct *work) | 4851 | static void led_set_status_worker(struct work_struct *work) |
4855 | { | 4852 | { |
4856 | struct tpacpi_led_classdev *data = | 4853 | struct tpacpi_led_classdev *data = |
4857 | container_of(work, struct tpacpi_led_classdev, work); | 4854 | container_of(work, struct tpacpi_led_classdev, work); |
4858 | 4855 | ||
4859 | if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING)) | 4856 | if (likely(tpacpi_lifecycle == TPACPI_LIFE_RUNNING)) |
4860 | led_sysfs_set_status(data->led, data->new_brightness); | 4857 | led_set_status(data->led, data->new_state); |
4861 | } | 4858 | } |
4862 | 4859 | ||
4863 | static void led_sysfs_set(struct led_classdev *led_cdev, | 4860 | static void led_sysfs_set(struct led_classdev *led_cdev, |
@@ -4866,7 +4863,13 @@ static void led_sysfs_set(struct led_classdev *led_cdev, | |||
4866 | struct tpacpi_led_classdev *data = container_of(led_cdev, | 4863 | struct tpacpi_led_classdev *data = container_of(led_cdev, |
4867 | struct tpacpi_led_classdev, led_classdev); | 4864 | struct tpacpi_led_classdev, led_classdev); |
4868 | 4865 | ||
4869 | data->new_brightness = brightness; | 4866 | if (brightness == LED_OFF) |
4867 | data->new_state = TPACPI_LED_OFF; | ||
4868 | else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK) | ||
4869 | data->new_state = TPACPI_LED_ON; | ||
4870 | else | ||
4871 | data->new_state = TPACPI_LED_BLINK; | ||
4872 | |||
4870 | queue_work(tpacpi_wq, &data->work); | 4873 | queue_work(tpacpi_wq, &data->work); |
4871 | } | 4874 | } |
4872 | 4875 | ||
@@ -4884,7 +4887,7 @@ static int led_sysfs_blink_set(struct led_classdev *led_cdev, | |||
4884 | } else if ((*delay_on != 500) || (*delay_off != 500)) | 4887 | } else if ((*delay_on != 500) || (*delay_off != 500)) |
4885 | return -EINVAL; | 4888 | return -EINVAL; |
4886 | 4889 | ||
4887 | data->new_brightness = TPACPI_LED_BLINK; | 4890 | data->new_state = TPACPI_LED_BLINK; |
4888 | queue_work(tpacpi_wq, &data->work); | 4891 | queue_work(tpacpi_wq, &data->work); |
4889 | 4892 | ||
4890 | return 0; | 4893 | return 0; |
@@ -7858,6 +7861,15 @@ static int __init thinkpad_acpi_module_init(void) | |||
7858 | MODULE_ALIAS(TPACPI_DRVR_SHORTNAME); | 7861 | MODULE_ALIAS(TPACPI_DRVR_SHORTNAME); |
7859 | 7862 | ||
7860 | /* | 7863 | /* |
7864 | * This will autoload the driver in almost every ThinkPad | ||
7865 | * in widespread use. | ||
7866 | * | ||
7867 | * Only _VERY_ old models, like the 240, 240x and 570 lack | ||
7868 | * the HKEY event interface. | ||
7869 | */ | ||
7870 | MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids); | ||
7871 | |||
7872 | /* | ||
7861 | * DMI matching for module autoloading | 7873 | * DMI matching for module autoloading |
7862 | * | 7874 | * |
7863 | * See http://thinkwiki.org/wiki/List_of_DMI_IDs | 7875 | * See http://thinkwiki.org/wiki/List_of_DMI_IDs |
@@ -7869,18 +7881,13 @@ MODULE_ALIAS(TPACPI_DRVR_SHORTNAME); | |||
7869 | #define IBM_BIOS_MODULE_ALIAS(__type) \ | 7881 | #define IBM_BIOS_MODULE_ALIAS(__type) \ |
7870 | MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*") | 7882 | MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*") |
7871 | 7883 | ||
7872 | /* Non-ancient thinkpads */ | ||
7873 | MODULE_ALIAS("dmi:bvnIBM:*:svnIBM:*:pvrThinkPad*:rvnIBM:*"); | ||
7874 | MODULE_ALIAS("dmi:bvnLENOVO:*:svnLENOVO:*:pvrThinkPad*:rvnLENOVO:*"); | ||
7875 | |||
7876 | /* Ancient thinkpad BIOSes have to be identified by | 7884 | /* Ancient thinkpad BIOSes have to be identified by |
7877 | * BIOS type or model number, and there are far less | 7885 | * BIOS type or model number, and there are far less |
7878 | * BIOS types than model numbers... */ | 7886 | * BIOS types than model numbers... */ |
7879 | IBM_BIOS_MODULE_ALIAS("I[BDHIMNOTWVYZ]"); | 7887 | IBM_BIOS_MODULE_ALIAS("I[MU]"); /* 570, 570e */ |
7880 | IBM_BIOS_MODULE_ALIAS("1[0368A-GIKM-PST]"); | ||
7881 | IBM_BIOS_MODULE_ALIAS("K[UX-Z]"); | ||
7882 | 7888 | ||
7883 | MODULE_AUTHOR("Borislav Deianov, Henrique de Moraes Holschuh"); | 7889 | MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>"); |
7890 | MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>"); | ||
7884 | MODULE_DESCRIPTION(TPACPI_DESC); | 7891 | MODULE_DESCRIPTION(TPACPI_DESC); |
7885 | MODULE_VERSION(TPACPI_VERSION); | 7892 | MODULE_VERSION(TPACPI_VERSION); |
7886 | MODULE_LICENSE("GPL"); | 7893 | MODULE_LICENSE("GPL"); |
diff --git a/drivers/regulator/bq24022.c b/drivers/regulator/bq24022.c index 7ecb820ceebc..d08cd9b66c6d 100644 --- a/drivers/regulator/bq24022.c +++ b/drivers/regulator/bq24022.c | |||
@@ -61,8 +61,7 @@ static int bq24022_disable(struct regulator_dev *rdev) | |||
61 | 61 | ||
62 | static int bq24022_is_enabled(struct regulator_dev *rdev) | 62 | static int bq24022_is_enabled(struct regulator_dev *rdev) |
63 | { | 63 | { |
64 | struct platform_device *pdev = rdev_get_drvdata(rdev); | 64 | struct bq24022_mach_info *pdata = rdev_get_drvdata(rdev); |
65 | struct bq24022_mach_info *pdata = pdev->dev.platform_data; | ||
66 | 65 | ||
67 | return !gpio_get_value(pdata->gpio_nce); | 66 | return !gpio_get_value(pdata->gpio_nce); |
68 | } | 67 | } |
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 01f7702a805d..98c3a74e9949 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
@@ -540,8 +540,8 @@ static void drms_uA_update(struct regulator_dev *rdev) | |||
540 | 540 | ||
541 | err = regulator_check_drms(rdev); | 541 | err = regulator_check_drms(rdev); |
542 | if (err < 0 || !rdev->desc->ops->get_optimum_mode || | 542 | if (err < 0 || !rdev->desc->ops->get_optimum_mode || |
543 | !rdev->desc->ops->get_voltage || !rdev->desc->ops->set_mode); | 543 | !rdev->desc->ops->get_voltage || !rdev->desc->ops->set_mode) |
544 | return; | 544 | return; |
545 | 545 | ||
546 | /* get output voltage */ | 546 | /* get output voltage */ |
547 | output_uV = rdev->desc->ops->get_voltage(rdev); | 547 | output_uV = rdev->desc->ops->get_voltage(rdev); |
@@ -703,10 +703,13 @@ static int set_machine_constraints(struct regulator_dev *rdev, | |||
703 | int cmin = constraints->min_uV; | 703 | int cmin = constraints->min_uV; |
704 | int cmax = constraints->max_uV; | 704 | int cmax = constraints->max_uV; |
705 | 705 | ||
706 | /* it's safe to autoconfigure fixed-voltage supplies */ | 706 | /* it's safe to autoconfigure fixed-voltage supplies |
707 | and the constraints are used by list_voltage. */ | ||
707 | if (count == 1 && !cmin) { | 708 | if (count == 1 && !cmin) { |
708 | cmin = INT_MIN; | 709 | cmin = 1; |
709 | cmax = INT_MAX; | 710 | cmax = INT_MAX; |
711 | constraints->min_uV = cmin; | ||
712 | constraints->max_uV = cmax; | ||
710 | } | 713 | } |
711 | 714 | ||
712 | /* voltage constraints are optional */ | 715 | /* voltage constraints are optional */ |
@@ -2001,8 +2004,8 @@ struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc, | |||
2001 | if (regulator_desc->name == NULL || regulator_desc->ops == NULL) | 2004 | if (regulator_desc->name == NULL || regulator_desc->ops == NULL) |
2002 | return ERR_PTR(-EINVAL); | 2005 | return ERR_PTR(-EINVAL); |
2003 | 2006 | ||
2004 | if (!regulator_desc->type == REGULATOR_VOLTAGE && | 2007 | if (regulator_desc->type != REGULATOR_VOLTAGE && |
2005 | !regulator_desc->type == REGULATOR_CURRENT) | 2008 | regulator_desc->type != REGULATOR_CURRENT) |
2006 | return ERR_PTR(-EINVAL); | 2009 | return ERR_PTR(-EINVAL); |
2007 | 2010 | ||
2008 | if (!init_data) | 2011 | if (!init_data) |
@@ -2080,6 +2083,10 @@ out: | |||
2080 | 2083 | ||
2081 | scrub: | 2084 | scrub: |
2082 | device_unregister(&rdev->dev); | 2085 | device_unregister(&rdev->dev); |
2086 | /* device core frees rdev */ | ||
2087 | rdev = ERR_PTR(ret); | ||
2088 | goto out; | ||
2089 | |||
2083 | clean: | 2090 | clean: |
2084 | kfree(rdev); | 2091 | kfree(rdev); |
2085 | rdev = ERR_PTR(ret); | 2092 | rdev = ERR_PTR(ret); |
diff --git a/drivers/regulator/virtual.c b/drivers/regulator/virtual.c index 3d08348584e1..71403fa3ffa1 100644 --- a/drivers/regulator/virtual.c +++ b/drivers/regulator/virtual.c | |||
@@ -230,13 +230,13 @@ static ssize_t set_mode(struct device *dev, struct device_attribute *attr, | |||
230 | * sysfs_streq() doesn't need the \n's, but we add them so the strings | 230 | * sysfs_streq() doesn't need the \n's, but we add them so the strings |
231 | * will be shared with show_mode(), above. | 231 | * will be shared with show_mode(), above. |
232 | */ | 232 | */ |
233 | if (sysfs_streq(buf, "fast\n") == 0) | 233 | if (sysfs_streq(buf, "fast\n")) |
234 | mode = REGULATOR_MODE_FAST; | 234 | mode = REGULATOR_MODE_FAST; |
235 | else if (sysfs_streq(buf, "normal\n") == 0) | 235 | else if (sysfs_streq(buf, "normal\n")) |
236 | mode = REGULATOR_MODE_NORMAL; | 236 | mode = REGULATOR_MODE_NORMAL; |
237 | else if (sysfs_streq(buf, "idle\n") == 0) | 237 | else if (sysfs_streq(buf, "idle\n")) |
238 | mode = REGULATOR_MODE_IDLE; | 238 | mode = REGULATOR_MODE_IDLE; |
239 | else if (sysfs_streq(buf, "standby\n") == 0) | 239 | else if (sysfs_streq(buf, "standby\n")) |
240 | mode = REGULATOR_MODE_STANDBY; | 240 | mode = REGULATOR_MODE_STANDBY; |
241 | else { | 241 | else { |
242 | dev_err(dev, "Configuring invalid mode\n"); | 242 | dev_err(dev, "Configuring invalid mode\n"); |
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index ffe34a12f446..4e9851fc1746 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
@@ -573,7 +573,7 @@ config RTC_DRV_SA1100 | |||
573 | 573 | ||
574 | config RTC_DRV_SH | 574 | config RTC_DRV_SH |
575 | tristate "SuperH On-Chip RTC" | 575 | tristate "SuperH On-Chip RTC" |
576 | depends on RTC_CLASS && SUPERH | 576 | depends on RTC_CLASS && SUPERH && HAVE_CLK |
577 | help | 577 | help |
578 | Say Y here to enable support for the on-chip RTC found in | 578 | Say Y here to enable support for the on-chip RTC found in |
579 | most SuperH processors. | 579 | most SuperH processors. |
diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c index b6d35f50e404..23e10b6263d6 100644 --- a/drivers/rtc/rtc-cmos.c +++ b/drivers/rtc/rtc-cmos.c | |||
@@ -797,17 +797,15 @@ cmos_do_probe(struct device *dev, struct resource *ports, int rtc_irq) | |||
797 | goto cleanup2; | 797 | goto cleanup2; |
798 | } | 798 | } |
799 | 799 | ||
800 | pr_info("%s: alarms up to one %s%s, %zd bytes nvram%s\n", | 800 | pr_info("%s: %s%s, %zd bytes nvram%s\n", |
801 | dev_name(&cmos_rtc.rtc->dev), | 801 | dev_name(&cmos_rtc.rtc->dev), |
802 | is_valid_irq(rtc_irq) | 802 | !is_valid_irq(rtc_irq) ? "no alarms" : |
803 | ? (cmos_rtc.mon_alrm | 803 | cmos_rtc.mon_alrm ? "alarms up to one year" : |
804 | ? "year" | 804 | cmos_rtc.day_alrm ? "alarms up to one month" : |
805 | : (cmos_rtc.day_alrm | 805 | "alarms up to one day", |
806 | ? "month" : "day")) | 806 | cmos_rtc.century ? ", y3k" : "", |
807 | : "no", | 807 | nvram.size, |
808 | cmos_rtc.century ? ", y3k" : "", | 808 | is_hpet_enabled() ? ", hpet irqs" : ""); |
809 | nvram.size, | ||
810 | is_hpet_enabled() ? ", hpet irqs" : ""); | ||
811 | 809 | ||
812 | return 0; | 810 | return 0; |
813 | 811 | ||
diff --git a/drivers/rtc/rtc-sh.c b/drivers/rtc/rtc-sh.c index 9b1ff12bf947..d7310adb7152 100644 --- a/drivers/rtc/rtc-sh.c +++ b/drivers/rtc/rtc-sh.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * SuperH On-Chip RTC Support | 2 | * SuperH On-Chip RTC Support |
3 | * | 3 | * |
4 | * Copyright (C) 2006, 2007, 2008 Paul Mundt | 4 | * Copyright (C) 2006 - 2009 Paul Mundt |
5 | * Copyright (C) 2006 Jamie Lenehan | 5 | * Copyright (C) 2006 Jamie Lenehan |
6 | * Copyright (C) 2008 Angelo Castello | 6 | * Copyright (C) 2008 Angelo Castello |
7 | * | 7 | * |
@@ -25,10 +25,11 @@ | |||
25 | #include <linux/spinlock.h> | 25 | #include <linux/spinlock.h> |
26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
27 | #include <linux/log2.h> | 27 | #include <linux/log2.h> |
28 | #include <linux/clk.h> | ||
28 | #include <asm/rtc.h> | 29 | #include <asm/rtc.h> |
29 | 30 | ||
30 | #define DRV_NAME "sh-rtc" | 31 | #define DRV_NAME "sh-rtc" |
31 | #define DRV_VERSION "0.2.1" | 32 | #define DRV_VERSION "0.2.2" |
32 | 33 | ||
33 | #define RTC_REG(r) ((r) * rtc_reg_size) | 34 | #define RTC_REG(r) ((r) * rtc_reg_size) |
34 | 35 | ||
@@ -87,16 +88,17 @@ | |||
87 | #define RCR2_START 0x01 /* Start bit */ | 88 | #define RCR2_START 0x01 /* Start bit */ |
88 | 89 | ||
89 | struct sh_rtc { | 90 | struct sh_rtc { |
90 | void __iomem *regbase; | 91 | void __iomem *regbase; |
91 | unsigned long regsize; | 92 | unsigned long regsize; |
92 | struct resource *res; | 93 | struct resource *res; |
93 | int alarm_irq; | 94 | int alarm_irq; |
94 | int periodic_irq; | 95 | int periodic_irq; |
95 | int carry_irq; | 96 | int carry_irq; |
96 | struct rtc_device *rtc_dev; | 97 | struct clk *clk; |
97 | spinlock_t lock; | 98 | struct rtc_device *rtc_dev; |
98 | unsigned long capabilities; /* See asm-sh/rtc.h for cap bits */ | 99 | spinlock_t lock; |
99 | unsigned short periodic_freq; | 100 | unsigned long capabilities; /* See asm/rtc.h for cap bits */ |
101 | unsigned short periodic_freq; | ||
100 | }; | 102 | }; |
101 | 103 | ||
102 | static int __sh_rtc_interrupt(struct sh_rtc *rtc) | 104 | static int __sh_rtc_interrupt(struct sh_rtc *rtc) |
@@ -294,10 +296,10 @@ static inline void sh_rtc_setaie(struct device *dev, unsigned int enable) | |||
294 | 296 | ||
295 | tmp = readb(rtc->regbase + RCR1); | 297 | tmp = readb(rtc->regbase + RCR1); |
296 | 298 | ||
297 | if (!enable) | 299 | if (enable) |
298 | tmp &= ~RCR1_AIE; | ||
299 | else | ||
300 | tmp |= RCR1_AIE; | 300 | tmp |= RCR1_AIE; |
301 | else | ||
302 | tmp &= ~RCR1_AIE; | ||
301 | 303 | ||
302 | writeb(tmp, rtc->regbase + RCR1); | 304 | writeb(tmp, rtc->regbase + RCR1); |
303 | 305 | ||
@@ -618,6 +620,7 @@ static int sh_rtc_irq_set_freq(struct device *dev, int freq) | |||
618 | { | 620 | { |
619 | if (!is_power_of_2(freq)) | 621 | if (!is_power_of_2(freq)) |
620 | return -EINVAL; | 622 | return -EINVAL; |
623 | |||
621 | return sh_rtc_ioctl(dev, RTC_IRQP_SET, freq); | 624 | return sh_rtc_ioctl(dev, RTC_IRQP_SET, freq); |
622 | } | 625 | } |
623 | 626 | ||
@@ -637,7 +640,8 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
637 | struct sh_rtc *rtc; | 640 | struct sh_rtc *rtc; |
638 | struct resource *res; | 641 | struct resource *res; |
639 | struct rtc_time r; | 642 | struct rtc_time r; |
640 | int ret; | 643 | char clk_name[6]; |
644 | int clk_id, ret; | ||
641 | 645 | ||
642 | rtc = kzalloc(sizeof(struct sh_rtc), GFP_KERNEL); | 646 | rtc = kzalloc(sizeof(struct sh_rtc), GFP_KERNEL); |
643 | if (unlikely(!rtc)) | 647 | if (unlikely(!rtc)) |
@@ -652,6 +656,7 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
652 | dev_err(&pdev->dev, "No IRQ resource\n"); | 656 | dev_err(&pdev->dev, "No IRQ resource\n"); |
653 | goto err_badres; | 657 | goto err_badres; |
654 | } | 658 | } |
659 | |||
655 | rtc->periodic_irq = ret; | 660 | rtc->periodic_irq = ret; |
656 | rtc->carry_irq = platform_get_irq(pdev, 1); | 661 | rtc->carry_irq = platform_get_irq(pdev, 1); |
657 | rtc->alarm_irq = platform_get_irq(pdev, 2); | 662 | rtc->alarm_irq = platform_get_irq(pdev, 2); |
@@ -663,7 +668,7 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
663 | goto err_badres; | 668 | goto err_badres; |
664 | } | 669 | } |
665 | 670 | ||
666 | rtc->regsize = res->end - res->start + 1; | 671 | rtc->regsize = resource_size(res); |
667 | 672 | ||
668 | rtc->res = request_mem_region(res->start, rtc->regsize, pdev->name); | 673 | rtc->res = request_mem_region(res->start, rtc->regsize, pdev->name); |
669 | if (unlikely(!rtc->res)) { | 674 | if (unlikely(!rtc->res)) { |
@@ -677,6 +682,26 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
677 | goto err_badmap; | 682 | goto err_badmap; |
678 | } | 683 | } |
679 | 684 | ||
685 | clk_id = pdev->id; | ||
686 | /* With a single device, the clock id is still "rtc0" */ | ||
687 | if (clk_id < 0) | ||
688 | clk_id = 0; | ||
689 | |||
690 | snprintf(clk_name, sizeof(clk_name), "rtc%d", clk_id); | ||
691 | |||
692 | rtc->clk = clk_get(&pdev->dev, clk_name); | ||
693 | if (IS_ERR(rtc->clk)) { | ||
694 | /* | ||
695 | * No error handling for rtc->clk intentionally, not all | ||
696 | * platforms will have a unique clock for the RTC, and | ||
697 | * the clk API can handle the struct clk pointer being | ||
698 | * NULL. | ||
699 | */ | ||
700 | rtc->clk = NULL; | ||
701 | } | ||
702 | |||
703 | clk_enable(rtc->clk); | ||
704 | |||
680 | rtc->rtc_dev = rtc_device_register("sh", &pdev->dev, | 705 | rtc->rtc_dev = rtc_device_register("sh", &pdev->dev, |
681 | &sh_rtc_ops, THIS_MODULE); | 706 | &sh_rtc_ops, THIS_MODULE); |
682 | if (IS_ERR(rtc->rtc_dev)) { | 707 | if (IS_ERR(rtc->rtc_dev)) { |
@@ -759,6 +784,8 @@ static int __devinit sh_rtc_probe(struct platform_device *pdev) | |||
759 | return 0; | 784 | return 0; |
760 | 785 | ||
761 | err_unmap: | 786 | err_unmap: |
787 | clk_disable(rtc->clk); | ||
788 | clk_put(rtc->clk); | ||
762 | iounmap(rtc->regbase); | 789 | iounmap(rtc->regbase); |
763 | err_badmap: | 790 | err_badmap: |
764 | release_resource(rtc->res); | 791 | release_resource(rtc->res); |
@@ -780,6 +807,7 @@ static int __devexit sh_rtc_remove(struct platform_device *pdev) | |||
780 | sh_rtc_setcie(&pdev->dev, 0); | 807 | sh_rtc_setcie(&pdev->dev, 0); |
781 | 808 | ||
782 | free_irq(rtc->periodic_irq, rtc); | 809 | free_irq(rtc->periodic_irq, rtc); |
810 | |||
783 | if (rtc->carry_irq > 0) { | 811 | if (rtc->carry_irq > 0) { |
784 | free_irq(rtc->carry_irq, rtc); | 812 | free_irq(rtc->carry_irq, rtc); |
785 | free_irq(rtc->alarm_irq, rtc); | 813 | free_irq(rtc->alarm_irq, rtc); |
@@ -789,6 +817,9 @@ static int __devexit sh_rtc_remove(struct platform_device *pdev) | |||
789 | 817 | ||
790 | iounmap(rtc->regbase); | 818 | iounmap(rtc->regbase); |
791 | 819 | ||
820 | clk_disable(rtc->clk); | ||
821 | clk_put(rtc->clk); | ||
822 | |||
792 | platform_set_drvdata(pdev, NULL); | 823 | platform_set_drvdata(pdev, NULL); |
793 | 824 | ||
794 | kfree(rtc); | 825 | kfree(rtc); |
@@ -802,11 +833,11 @@ static void sh_rtc_set_irq_wake(struct device *dev, int enabled) | |||
802 | struct sh_rtc *rtc = platform_get_drvdata(pdev); | 833 | struct sh_rtc *rtc = platform_get_drvdata(pdev); |
803 | 834 | ||
804 | set_irq_wake(rtc->periodic_irq, enabled); | 835 | set_irq_wake(rtc->periodic_irq, enabled); |
836 | |||
805 | if (rtc->carry_irq > 0) { | 837 | if (rtc->carry_irq > 0) { |
806 | set_irq_wake(rtc->carry_irq, enabled); | 838 | set_irq_wake(rtc->carry_irq, enabled); |
807 | set_irq_wake(rtc->alarm_irq, enabled); | 839 | set_irq_wake(rtc->alarm_irq, enabled); |
808 | } | 840 | } |
809 | |||
810 | } | 841 | } |
811 | 842 | ||
812 | static int sh_rtc_suspend(struct device *dev) | 843 | static int sh_rtc_suspend(struct device *dev) |
diff --git a/drivers/s390/char/tape.h b/drivers/s390/char/tape.h index c07809c8016a..5469e099597e 100644 --- a/drivers/s390/char/tape.h +++ b/drivers/s390/char/tape.h | |||
@@ -285,7 +285,7 @@ extern int tape_mtop(struct tape_device *, int, int); | |||
285 | extern void tape_state_set(struct tape_device *, enum tape_state); | 285 | extern void tape_state_set(struct tape_device *, enum tape_state); |
286 | 286 | ||
287 | extern int tape_generic_online(struct tape_device *, struct tape_discipline *); | 287 | extern int tape_generic_online(struct tape_device *, struct tape_discipline *); |
288 | extern int tape_generic_offline(struct tape_device *device); | 288 | extern int tape_generic_offline(struct ccw_device *); |
289 | 289 | ||
290 | /* Externals from tape_devmap.c */ | 290 | /* Externals from tape_devmap.c */ |
291 | extern int tape_generic_probe(struct ccw_device *); | 291 | extern int tape_generic_probe(struct ccw_device *); |
diff --git a/drivers/s390/char/tape_34xx.c b/drivers/s390/char/tape_34xx.c index 807ded5eb049..5f8e8ef43dd3 100644 --- a/drivers/s390/char/tape_34xx.c +++ b/drivers/s390/char/tape_34xx.c | |||
@@ -1294,12 +1294,6 @@ tape_34xx_online(struct ccw_device *cdev) | |||
1294 | ); | 1294 | ); |
1295 | } | 1295 | } |
1296 | 1296 | ||
1297 | static int | ||
1298 | tape_34xx_offline(struct ccw_device *cdev) | ||
1299 | { | ||
1300 | return tape_generic_offline(cdev->dev.driver_data); | ||
1301 | } | ||
1302 | |||
1303 | static struct ccw_driver tape_34xx_driver = { | 1297 | static struct ccw_driver tape_34xx_driver = { |
1304 | .name = "tape_34xx", | 1298 | .name = "tape_34xx", |
1305 | .owner = THIS_MODULE, | 1299 | .owner = THIS_MODULE, |
@@ -1307,7 +1301,7 @@ static struct ccw_driver tape_34xx_driver = { | |||
1307 | .probe = tape_generic_probe, | 1301 | .probe = tape_generic_probe, |
1308 | .remove = tape_generic_remove, | 1302 | .remove = tape_generic_remove, |
1309 | .set_online = tape_34xx_online, | 1303 | .set_online = tape_34xx_online, |
1310 | .set_offline = tape_34xx_offline, | 1304 | .set_offline = tape_generic_offline, |
1311 | }; | 1305 | }; |
1312 | 1306 | ||
1313 | static int | 1307 | static int |
diff --git a/drivers/s390/char/tape_3590.c b/drivers/s390/char/tape_3590.c index fc1d91294143..823b05bd0dd7 100644 --- a/drivers/s390/char/tape_3590.c +++ b/drivers/s390/char/tape_3590.c | |||
@@ -1707,19 +1707,13 @@ tape_3590_online(struct ccw_device *cdev) | |||
1707 | &tape_discipline_3590); | 1707 | &tape_discipline_3590); |
1708 | } | 1708 | } |
1709 | 1709 | ||
1710 | static int | ||
1711 | tape_3590_offline(struct ccw_device *cdev) | ||
1712 | { | ||
1713 | return tape_generic_offline(cdev->dev.driver_data); | ||
1714 | } | ||
1715 | |||
1716 | static struct ccw_driver tape_3590_driver = { | 1710 | static struct ccw_driver tape_3590_driver = { |
1717 | .name = "tape_3590", | 1711 | .name = "tape_3590", |
1718 | .owner = THIS_MODULE, | 1712 | .owner = THIS_MODULE, |
1719 | .ids = tape_3590_ids, | 1713 | .ids = tape_3590_ids, |
1720 | .probe = tape_generic_probe, | 1714 | .probe = tape_generic_probe, |
1721 | .remove = tape_generic_remove, | 1715 | .remove = tape_generic_remove, |
1722 | .set_offline = tape_3590_offline, | 1716 | .set_offline = tape_generic_offline, |
1723 | .set_online = tape_3590_online, | 1717 | .set_online = tape_3590_online, |
1724 | }; | 1718 | }; |
1725 | 1719 | ||
diff --git a/drivers/s390/char/tape_core.c b/drivers/s390/char/tape_core.c index 08c09d3503cf..8a109f3b69c6 100644 --- a/drivers/s390/char/tape_core.c +++ b/drivers/s390/char/tape_core.c | |||
@@ -387,8 +387,11 @@ tape_cleanup_device(struct tape_device *device) | |||
387 | * Manual offline is only allowed while the drive is not in use. | 387 | * Manual offline is only allowed while the drive is not in use. |
388 | */ | 388 | */ |
389 | int | 389 | int |
390 | tape_generic_offline(struct tape_device *device) | 390 | tape_generic_offline(struct ccw_device *cdev) |
391 | { | 391 | { |
392 | struct tape_device *device; | ||
393 | |||
394 | device = cdev->dev.driver_data; | ||
392 | if (!device) { | 395 | if (!device) { |
393 | return -ENODEV; | 396 | return -ENODEV; |
394 | } | 397 | } |
diff --git a/drivers/scsi/a4000t.c b/drivers/scsi/a4000t.c index 61af3d91ac8a..e3519fa5a3ba 100644 --- a/drivers/scsi/a4000t.c +++ b/drivers/scsi/a4000t.c | |||
@@ -129,7 +129,7 @@ static int __init a4000t_scsi_init(void) | |||
129 | a4000t_scsi_device = platform_device_register_simple("a4000t-scsi", | 129 | a4000t_scsi_device = platform_device_register_simple("a4000t-scsi", |
130 | -1, NULL, 0); | 130 | -1, NULL, 0); |
131 | if (IS_ERR(a4000t_scsi_device)) { | 131 | if (IS_ERR(a4000t_scsi_device)) { |
132 | platform_driver_register(&a4000t_scsi_driver); | 132 | platform_driver_unregister(&a4000t_scsi_driver); |
133 | return PTR_ERR(a4000t_scsi_device); | 133 | return PTR_ERR(a4000t_scsi_device); |
134 | } | 134 | } |
135 | 135 | ||
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index a14d245a66b8..6f51ca485f35 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
@@ -180,8 +180,6 @@ int scsi_complete_async_scans(void) | |||
180 | spin_unlock(&async_scan_lock); | 180 | spin_unlock(&async_scan_lock); |
181 | 181 | ||
182 | kfree(data); | 182 | kfree(data); |
183 | /* Synchronize async operations globally */ | ||
184 | async_synchronize_full(); | ||
185 | return 0; | 183 | return 0; |
186 | } | 184 | } |
187 | 185 | ||
diff --git a/drivers/scsi/scsi_wait_scan.c b/drivers/scsi/scsi_wait_scan.c index 2f21af21269a..74708fcaf82f 100644 --- a/drivers/scsi/scsi_wait_scan.c +++ b/drivers/scsi/scsi_wait_scan.c | |||
@@ -11,10 +11,21 @@ | |||
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/device.h> | ||
14 | #include <scsi/scsi_scan.h> | 15 | #include <scsi/scsi_scan.h> |
15 | 16 | ||
16 | static int __init wait_scan_init(void) | 17 | static int __init wait_scan_init(void) |
17 | { | 18 | { |
19 | /* | ||
20 | * First we need to wait for device probing to finish; | ||
21 | * the drivers we just loaded might just still be probing | ||
22 | * and might not yet have reached the scsi async scanning | ||
23 | */ | ||
24 | wait_for_device_probe(); | ||
25 | /* | ||
26 | * and then we wait for the actual asynchronous scsi scan | ||
27 | * to finish. | ||
28 | */ | ||
18 | scsi_complete_async_scans(); | 29 | scsi_complete_async_scans(); |
19 | return 0; | 30 | return 0; |
20 | } | 31 | } |
diff --git a/drivers/serial/8250_pci.c b/drivers/serial/8250_pci.c index 7ddff3f55087..938bc1b6c3fa 100644 --- a/drivers/serial/8250_pci.c +++ b/drivers/serial/8250_pci.c | |||
@@ -771,8 +771,6 @@ static int pci_netmos_init(struct pci_dev *dev) | |||
771 | } | 771 | } |
772 | 772 | ||
773 | /* | 773 | /* |
774 | * ITE support by Niels de Vos <niels.devos@wincor-nixdorf.com> | ||
775 | * | ||
776 | * These chips are available with optionally one parallel port and up to | 774 | * These chips are available with optionally one parallel port and up to |
777 | * two serial ports. Unfortunately they all have the same product id. | 775 | * two serial ports. Unfortunately they all have the same product id. |
778 | * | 776 | * |
diff --git a/drivers/serial/bfin_5xx.c b/drivers/serial/bfin_5xx.c index 18ba812a4f84..d86123e03391 100644 --- a/drivers/serial/bfin_5xx.c +++ b/drivers/serial/bfin_5xx.c | |||
@@ -166,7 +166,7 @@ static void bfin_serial_start_tx(struct uart_port *port) | |||
166 | struct tty_struct *tty = uart->port.info->port.tty; | 166 | struct tty_struct *tty = uart->port.info->port.tty; |
167 | 167 | ||
168 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 168 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
169 | if (uart->scts && (!bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { | 169 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port) & TIOCM_CTS)) { |
170 | uart->scts = 0; | 170 | uart->scts = 0; |
171 | uart_handle_cts_change(&uart->port, uart->scts); | 171 | uart_handle_cts_change(&uart->port, uart->scts); |
172 | } | 172 | } |
@@ -368,7 +368,7 @@ static irqreturn_t bfin_serial_tx_int(int irq, void *dev_id) | |||
368 | struct bfin_serial_port *uart = dev_id; | 368 | struct bfin_serial_port *uart = dev_id; |
369 | 369 | ||
370 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 370 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
371 | if (uart->scts && (!bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { | 371 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port) & TIOCM_CTS)) { |
372 | uart->scts = 0; | 372 | uart->scts = 0; |
373 | uart_handle_cts_change(&uart->port, uart->scts); | 373 | uart_handle_cts_change(&uart->port, uart->scts); |
374 | } | 374 | } |
@@ -504,7 +504,7 @@ static irqreturn_t bfin_serial_dma_tx_int(int irq, void *dev_id) | |||
504 | struct circ_buf *xmit = &uart->port.info->xmit; | 504 | struct circ_buf *xmit = &uart->port.info->xmit; |
505 | 505 | ||
506 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS | 506 | #ifdef CONFIG_SERIAL_BFIN_HARD_CTSRTS |
507 | if (uart->scts && (!bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { | 507 | if (uart->scts && !(bfin_serial_get_mctrl(&uart->port)&TIOCM_CTS)) { |
508 | uart->scts = 0; | 508 | uart->scts = 0; |
509 | uart_handle_cts_change(&uart->port, uart->scts); | 509 | uart_handle_cts_change(&uart->port, uart->scts); |
510 | } | 510 | } |
diff --git a/drivers/spi/pxa2xx_spi.c b/drivers/spi/pxa2xx_spi.c index c76feea5fe25..885194a07418 100644 --- a/drivers/spi/pxa2xx_spi.c +++ b/drivers/spi/pxa2xx_spi.c | |||
@@ -213,7 +213,7 @@ static int flush(struct driver_data *drv_data) | |||
213 | while (read_SSSR(reg) & SSSR_RNE) { | 213 | while (read_SSSR(reg) & SSSR_RNE) { |
214 | read_SSDR(reg); | 214 | read_SSDR(reg); |
215 | } | 215 | } |
216 | } while ((read_SSSR(reg) & SSSR_BSY) && limit--); | 216 | } while ((read_SSSR(reg) & SSSR_BSY) && --limit); |
217 | write_SSSR(SSSR_ROR, reg); | 217 | write_SSSR(SSSR_ROR, reg); |
218 | 218 | ||
219 | return limit; | 219 | return limit; |
@@ -484,7 +484,7 @@ static int wait_ssp_rx_stall(void const __iomem *ioaddr) | |||
484 | { | 484 | { |
485 | unsigned long limit = loops_per_jiffy << 1; | 485 | unsigned long limit = loops_per_jiffy << 1; |
486 | 486 | ||
487 | while ((read_SSSR(ioaddr) & SSSR_BSY) && limit--) | 487 | while ((read_SSSR(ioaddr) & SSSR_BSY) && --limit) |
488 | cpu_relax(); | 488 | cpu_relax(); |
489 | 489 | ||
490 | return limit; | 490 | return limit; |
@@ -494,7 +494,7 @@ static int wait_dma_channel_stop(int channel) | |||
494 | { | 494 | { |
495 | unsigned long limit = loops_per_jiffy << 1; | 495 | unsigned long limit = loops_per_jiffy << 1; |
496 | 496 | ||
497 | while (!(DCSR(channel) & DCSR_STOPSTATE) && limit--) | 497 | while (!(DCSR(channel) & DCSR_STOPSTATE) && --limit) |
498 | cpu_relax(); | 498 | cpu_relax(); |
499 | 499 | ||
500 | return limit; | 500 | return limit; |
@@ -1700,6 +1700,13 @@ static int pxa2xx_spi_resume(struct platform_device *pdev) | |||
1700 | struct ssp_device *ssp = drv_data->ssp; | 1700 | struct ssp_device *ssp = drv_data->ssp; |
1701 | int status = 0; | 1701 | int status = 0; |
1702 | 1702 | ||
1703 | if (drv_data->rx_channel != -1) | ||
1704 | DRCMR(drv_data->ssp->drcmr_rx) = | ||
1705 | DRCMR_MAPVLD | drv_data->rx_channel; | ||
1706 | if (drv_data->tx_channel != -1) | ||
1707 | DRCMR(drv_data->ssp->drcmr_tx) = | ||
1708 | DRCMR_MAPVLD | drv_data->tx_channel; | ||
1709 | |||
1703 | /* Enable the SSP clock */ | 1710 | /* Enable the SSP clock */ |
1704 | clk_enable(ssp->clk); | 1711 | clk_enable(ssp->clk); |
1705 | 1712 | ||
diff --git a/drivers/staging/go7007/go7007-driver.c b/drivers/staging/go7007/go7007-driver.c index f47c0ce2849a..77b1e769ac92 100644 --- a/drivers/staging/go7007/go7007-driver.c +++ b/drivers/staging/go7007/go7007-driver.c | |||
@@ -191,8 +191,10 @@ int go7007_reset_encoder(struct go7007 *go) | |||
191 | /* | 191 | /* |
192 | * Attempt to instantiate an I2C client by ID, probably loading a module. | 192 | * Attempt to instantiate an I2C client by ID, probably loading a module. |
193 | */ | 193 | */ |
194 | static int init_i2c_module(struct i2c_adapter *adapter, int id, int addr) | 194 | static int init_i2c_module(struct i2c_adapter *adapter, const char *type, |
195 | int id, int addr) | ||
195 | { | 196 | { |
197 | struct i2c_board_info info; | ||
196 | char *modname; | 198 | char *modname; |
197 | 199 | ||
198 | switch (id) { | 200 | switch (id) { |
@@ -226,7 +228,11 @@ static int init_i2c_module(struct i2c_adapter *adapter, int id, int addr) | |||
226 | } | 228 | } |
227 | if (modname != NULL) | 229 | if (modname != NULL) |
228 | request_module(modname); | 230 | request_module(modname); |
229 | if (wis_i2c_probe_device(adapter, id, addr) == 1) | 231 | |
232 | memset(&info, 0, sizeof(struct i2c_board_info)); | ||
233 | info.addr = addr; | ||
234 | strlcpy(info.type, type, I2C_NAME_SIZE); | ||
235 | if (!i2c_new_device(adapter, &info)) | ||
230 | return 0; | 236 | return 0; |
231 | if (modname != NULL) | 237 | if (modname != NULL) |
232 | printk(KERN_INFO | 238 | printk(KERN_INFO |
@@ -266,6 +272,7 @@ int go7007_register_encoder(struct go7007 *go) | |||
266 | if (go->i2c_adapter_online) { | 272 | if (go->i2c_adapter_online) { |
267 | for (i = 0; i < go->board_info->num_i2c_devs; ++i) | 273 | for (i = 0; i < go->board_info->num_i2c_devs; ++i) |
268 | init_i2c_module(&go->i2c_adapter, | 274 | init_i2c_module(&go->i2c_adapter, |
275 | go->board_info->i2c_devs[i].type, | ||
269 | go->board_info->i2c_devs[i].id, | 276 | go->board_info->i2c_devs[i].id, |
270 | go->board_info->i2c_devs[i].addr); | 277 | go->board_info->i2c_devs[i].addr); |
271 | if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) | 278 | if (go->board_id == GO7007_BOARDID_ADLINK_MPG24) |
diff --git a/drivers/staging/go7007/go7007-i2c.c b/drivers/staging/go7007/go7007-i2c.c index cd55b76eabc7..c82867fdd28d 100644 --- a/drivers/staging/go7007/go7007-i2c.c +++ b/drivers/staging/go7007/go7007-i2c.c | |||
@@ -31,87 +31,6 @@ | |||
31 | #include "go7007-priv.h" | 31 | #include "go7007-priv.h" |
32 | #include "wis-i2c.h" | 32 | #include "wis-i2c.h" |
33 | 33 | ||
34 | /************** Registration interface for I2C client drivers **************/ | ||
35 | |||
36 | /* Since there's no way to auto-probe the I2C devices connected to the I2C | ||
37 | * bus on the go7007, we have this silly little registration system that | ||
38 | * client drivers can use to register their I2C driver ID and their | ||
39 | * detect_client function (the one that's normally passed to i2c_probe). | ||
40 | * | ||
41 | * When a new go7007 device is connected, we can look up in a board info | ||
42 | * table by the USB or PCI vendor/product/revision ID to determine | ||
43 | * which I2C client module to load. The client driver module will register | ||
44 | * itself here, and then we can call the registered detect_client function | ||
45 | * to force-load a new client at the address listed in the board info table. | ||
46 | * | ||
47 | * Really the I2C subsystem should have a way to force-load I2C client | ||
48 | * drivers when we have a priori knowledge of what's on the bus, especially | ||
49 | * since the existing I2C auto-probe mechanism is so hokey, but we'll use | ||
50 | * our own mechanism for the time being. */ | ||
51 | |||
52 | struct wis_i2c_client_driver { | ||
53 | unsigned int id; | ||
54 | found_proc found_proc; | ||
55 | struct list_head list; | ||
56 | }; | ||
57 | |||
58 | static LIST_HEAD(i2c_client_drivers); | ||
59 | static DECLARE_MUTEX(i2c_client_driver_list_lock); | ||
60 | |||
61 | /* Client drivers register here by their I2C driver ID */ | ||
62 | int wis_i2c_add_driver(unsigned int id, found_proc found_proc) | ||
63 | { | ||
64 | struct wis_i2c_client_driver *driver; | ||
65 | |||
66 | driver = kmalloc(sizeof(struct wis_i2c_client_driver), GFP_KERNEL); | ||
67 | if (driver == NULL) | ||
68 | return -ENOMEM; | ||
69 | driver->id = id; | ||
70 | driver->found_proc = found_proc; | ||
71 | |||
72 | down(&i2c_client_driver_list_lock); | ||
73 | list_add_tail(&driver->list, &i2c_client_drivers); | ||
74 | up(&i2c_client_driver_list_lock); | ||
75 | |||
76 | return 0; | ||
77 | } | ||
78 | EXPORT_SYMBOL(wis_i2c_add_driver); | ||
79 | |||
80 | void wis_i2c_del_driver(found_proc found_proc) | ||
81 | { | ||
82 | struct wis_i2c_client_driver *driver, *next; | ||
83 | |||
84 | down(&i2c_client_driver_list_lock); | ||
85 | list_for_each_entry_safe(driver, next, &i2c_client_drivers, list) | ||
86 | if (driver->found_proc == found_proc) { | ||
87 | list_del(&driver->list); | ||
88 | kfree(driver); | ||
89 | } | ||
90 | up(&i2c_client_driver_list_lock); | ||
91 | } | ||
92 | EXPORT_SYMBOL(wis_i2c_del_driver); | ||
93 | |||
94 | /* The main go7007 driver calls this to instantiate a client by driver | ||
95 | * ID and bus address, which are both stored in the board info table */ | ||
96 | int wis_i2c_probe_device(struct i2c_adapter *adapter, | ||
97 | unsigned int id, int addr) | ||
98 | { | ||
99 | struct wis_i2c_client_driver *driver; | ||
100 | int found = 0; | ||
101 | |||
102 | if (addr < 0 || addr > 0x7f) | ||
103 | return -1; | ||
104 | down(&i2c_client_driver_list_lock); | ||
105 | list_for_each_entry(driver, &i2c_client_drivers, list) | ||
106 | if (driver->id == id) { | ||
107 | if (driver->found_proc(adapter, addr, 0) == 0) | ||
108 | found = 1; | ||
109 | break; | ||
110 | } | ||
111 | up(&i2c_client_driver_list_lock); | ||
112 | return found; | ||
113 | } | ||
114 | |||
115 | /********************* Driver for on-board I2C adapter *********************/ | 34 | /********************* Driver for on-board I2C adapter *********************/ |
116 | 35 | ||
117 | /* #define GO7007_I2C_DEBUG */ | 36 | /* #define GO7007_I2C_DEBUG */ |
@@ -287,9 +206,7 @@ static struct i2c_algorithm go7007_algo = { | |||
287 | 206 | ||
288 | static struct i2c_adapter go7007_adap_templ = { | 207 | static struct i2c_adapter go7007_adap_templ = { |
289 | .owner = THIS_MODULE, | 208 | .owner = THIS_MODULE, |
290 | .class = I2C_CLASS_TV_ANALOG, | ||
291 | .name = "WIS GO7007SB", | 209 | .name = "WIS GO7007SB", |
292 | .id = I2C_ALGO_GO7007, | ||
293 | .algo = &go7007_algo, | 210 | .algo = &go7007_algo, |
294 | }; | 211 | }; |
295 | 212 | ||
diff --git a/drivers/staging/go7007/go7007-priv.h b/drivers/staging/go7007/go7007-priv.h index 372f1f1c09b2..178d18119faa 100644 --- a/drivers/staging/go7007/go7007-priv.h +++ b/drivers/staging/go7007/go7007-priv.h | |||
@@ -87,6 +87,7 @@ struct go7007_board_info { | |||
87 | int audio_main_div; | 87 | int audio_main_div; |
88 | int num_i2c_devs; | 88 | int num_i2c_devs; |
89 | struct { | 89 | struct { |
90 | const char *type; | ||
90 | int id; | 91 | int id; |
91 | int addr; | 92 | int addr; |
92 | } i2c_devs[4]; | 93 | } i2c_devs[4]; |
diff --git a/drivers/staging/go7007/go7007-usb.c b/drivers/staging/go7007/go7007-usb.c index 83eec920c7d3..aa4a9e0b9954 100644 --- a/drivers/staging/go7007/go7007-usb.c +++ b/drivers/staging/go7007/go7007-usb.c | |||
@@ -91,6 +91,7 @@ static struct go7007_usb_board board_matrix_ii = { | |||
91 | .num_i2c_devs = 1, | 91 | .num_i2c_devs = 1, |
92 | .i2c_devs = { | 92 | .i2c_devs = { |
93 | { | 93 | { |
94 | .type = "wis_saa7115", | ||
94 | .id = I2C_DRIVERID_WIS_SAA7115, | 95 | .id = I2C_DRIVERID_WIS_SAA7115, |
95 | .addr = 0x20, | 96 | .addr = 0x20, |
96 | }, | 97 | }, |
@@ -127,6 +128,7 @@ static struct go7007_usb_board board_matrix_reload = { | |||
127 | .num_i2c_devs = 1, | 128 | .num_i2c_devs = 1, |
128 | .i2c_devs = { | 129 | .i2c_devs = { |
129 | { | 130 | { |
131 | .type = "wis_saa7113", | ||
130 | .id = I2C_DRIVERID_WIS_SAA7113, | 132 | .id = I2C_DRIVERID_WIS_SAA7113, |
131 | .addr = 0x25, | 133 | .addr = 0x25, |
132 | }, | 134 | }, |
@@ -164,6 +166,7 @@ static struct go7007_usb_board board_star_trek = { | |||
164 | .num_i2c_devs = 1, | 166 | .num_i2c_devs = 1, |
165 | .i2c_devs = { | 167 | .i2c_devs = { |
166 | { | 168 | { |
169 | .type = "wis_saa7115", | ||
167 | .id = I2C_DRIVERID_WIS_SAA7115, | 170 | .id = I2C_DRIVERID_WIS_SAA7115, |
168 | .addr = 0x20, | 171 | .addr = 0x20, |
169 | }, | 172 | }, |
@@ -209,14 +212,17 @@ static struct go7007_usb_board board_px_tv402u = { | |||
209 | .num_i2c_devs = 3, | 212 | .num_i2c_devs = 3, |
210 | .i2c_devs = { | 213 | .i2c_devs = { |
211 | { | 214 | { |
215 | .type = "wis_saa7115", | ||
212 | .id = I2C_DRIVERID_WIS_SAA7115, | 216 | .id = I2C_DRIVERID_WIS_SAA7115, |
213 | .addr = 0x20, | 217 | .addr = 0x20, |
214 | }, | 218 | }, |
215 | { | 219 | { |
220 | .type = "wis_uda1342", | ||
216 | .id = I2C_DRIVERID_WIS_UDA1342, | 221 | .id = I2C_DRIVERID_WIS_UDA1342, |
217 | .addr = 0x1a, | 222 | .addr = 0x1a, |
218 | }, | 223 | }, |
219 | { | 224 | { |
225 | .type = "wis_sony_tuner", | ||
220 | .id = I2C_DRIVERID_WIS_SONY_TUNER, | 226 | .id = I2C_DRIVERID_WIS_SONY_TUNER, |
221 | .addr = 0x60, | 227 | .addr = 0x60, |
222 | }, | 228 | }, |
@@ -264,6 +270,7 @@ static struct go7007_usb_board board_xmen = { | |||
264 | .num_i2c_devs = 1, | 270 | .num_i2c_devs = 1, |
265 | .i2c_devs = { | 271 | .i2c_devs = { |
266 | { | 272 | { |
273 | .type = "wis_ov7640", | ||
267 | .id = I2C_DRIVERID_WIS_OV7640, | 274 | .id = I2C_DRIVERID_WIS_OV7640, |
268 | .addr = 0x21, | 275 | .addr = 0x21, |
269 | }, | 276 | }, |
@@ -296,6 +303,7 @@ static struct go7007_usb_board board_matrix_revolution = { | |||
296 | .num_i2c_devs = 1, | 303 | .num_i2c_devs = 1, |
297 | .i2c_devs = { | 304 | .i2c_devs = { |
298 | { | 305 | { |
306 | .type = "wis_tw9903", | ||
299 | .id = I2C_DRIVERID_WIS_TW9903, | 307 | .id = I2C_DRIVERID_WIS_TW9903, |
300 | .addr = 0x44, | 308 | .addr = 0x44, |
301 | }, | 309 | }, |
@@ -385,6 +393,7 @@ static struct go7007_usb_board board_adlink_mpg24 = { | |||
385 | .num_i2c_devs = 1, | 393 | .num_i2c_devs = 1, |
386 | .i2c_devs = { | 394 | .i2c_devs = { |
387 | { | 395 | { |
396 | .type = "wis_twTW2804", | ||
388 | .id = I2C_DRIVERID_WIS_TW2804, | 397 | .id = I2C_DRIVERID_WIS_TW2804, |
389 | .addr = 0x00, /* yes, really */ | 398 | .addr = 0x00, /* yes, really */ |
390 | }, | 399 | }, |
@@ -415,8 +424,9 @@ static struct go7007_usb_board board_sensoray_2250 = { | |||
415 | .num_i2c_devs = 1, | 424 | .num_i2c_devs = 1, |
416 | .i2c_devs = { | 425 | .i2c_devs = { |
417 | { | 426 | { |
427 | .type = "s2250_board", | ||
418 | .id = I2C_DRIVERID_S2250, | 428 | .id = I2C_DRIVERID_S2250, |
419 | .addr = 0x34, | 429 | .addr = 0x43, |
420 | }, | 430 | }, |
421 | }, | 431 | }, |
422 | .num_inputs = 2, | 432 | .num_inputs = 2, |
@@ -943,9 +953,7 @@ static struct i2c_algorithm go7007_usb_algo = { | |||
943 | 953 | ||
944 | static struct i2c_adapter go7007_usb_adap_templ = { | 954 | static struct i2c_adapter go7007_usb_adap_templ = { |
945 | .owner = THIS_MODULE, | 955 | .owner = THIS_MODULE, |
946 | .class = I2C_CLASS_TV_ANALOG, | ||
947 | .name = "WIS GO7007SB EZ-USB", | 956 | .name = "WIS GO7007SB EZ-USB", |
948 | .id = I2C_ALGO_GO7007_USB, | ||
949 | .algo = &go7007_usb_algo, | 957 | .algo = &go7007_usb_algo, |
950 | }; | 958 | }; |
951 | 959 | ||
diff --git a/drivers/staging/go7007/s2250-board.c b/drivers/staging/go7007/s2250-board.c index d333ea2cd774..1706fbf06847 100644 --- a/drivers/staging/go7007/s2250-board.c +++ b/drivers/staging/go7007/s2250-board.c | |||
@@ -28,7 +28,6 @@ extern int s2250loader_init(void); | |||
28 | extern void s2250loader_cleanup(void); | 28 | extern void s2250loader_cleanup(void); |
29 | 29 | ||
30 | #define TLV320_ADDRESS 0x34 | 30 | #define TLV320_ADDRESS 0x34 |
31 | #define S2250_VIDDEC 0x86 | ||
32 | #define VPX322_ADDR_ANALOGCONTROL1 0x02 | 31 | #define VPX322_ADDR_ANALOGCONTROL1 0x02 |
33 | #define VPX322_ADDR_BRIGHTNESS0 0x0127 | 32 | #define VPX322_ADDR_BRIGHTNESS0 0x0127 |
34 | #define VPX322_ADDR_BRIGHTNESS1 0x0131 | 33 | #define VPX322_ADDR_BRIGHTNESS1 0x0131 |
@@ -123,6 +122,7 @@ struct s2250 { | |||
123 | int hue; | 122 | int hue; |
124 | int reg12b_val; | 123 | int reg12b_val; |
125 | int audio_input; | 124 | int audio_input; |
125 | struct i2c_client *audio; | ||
126 | }; | 126 | }; |
127 | 127 | ||
128 | /* from go7007-usb.c which is Copyright (C) 2005-2006 Micronas USA Inc.*/ | 128 | /* from go7007-usb.c which is Copyright (C) 2005-2006 Micronas USA Inc.*/ |
@@ -452,16 +452,15 @@ static int s2250_command(struct i2c_client *client, | |||
452 | { | 452 | { |
453 | struct v4l2_audio *audio = arg; | 453 | struct v4l2_audio *audio = arg; |
454 | 454 | ||
455 | client->addr = TLV320_ADDRESS; | ||
456 | switch (audio->index) { | 455 | switch (audio->index) { |
457 | case 0: | 456 | case 0: |
458 | write_reg(client, 0x08, 0x02); /* Line In */ | 457 | write_reg(dec->audio, 0x08, 0x02); /* Line In */ |
459 | break; | 458 | break; |
460 | case 1: | 459 | case 1: |
461 | write_reg(client, 0x08, 0x04); /* Mic */ | 460 | write_reg(dec->audio, 0x08, 0x04); /* Mic */ |
462 | break; | 461 | break; |
463 | case 2: | 462 | case 2: |
464 | write_reg(client, 0x08, 0x05); /* Mic Boost */ | 463 | write_reg(dec->audio, 0x08, 0x05); /* Mic Boost */ |
465 | break; | 464 | break; |
466 | default: | 465 | default: |
467 | return -EINVAL; | 466 | return -EINVAL; |
@@ -477,31 +476,23 @@ static int s2250_command(struct i2c_client *client, | |||
477 | return 0; | 476 | return 0; |
478 | } | 477 | } |
479 | 478 | ||
480 | static struct i2c_driver s2250_driver; | 479 | static int s2250_probe(struct i2c_client *client, |
481 | 480 | const struct i2c_device_id *id) | |
482 | static struct i2c_client s2250_client_templ = { | ||
483 | .name = "Sensoray 2250", | ||
484 | .driver = &s2250_driver, | ||
485 | }; | ||
486 | |||
487 | static int s2250_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
488 | { | 481 | { |
489 | struct i2c_client *client; | 482 | struct i2c_client *audio; |
483 | struct i2c_adapter *adapter = client->adapter; | ||
490 | struct s2250 *dec; | 484 | struct s2250 *dec; |
491 | u8 *data; | 485 | u8 *data; |
492 | struct go7007 *go = i2c_get_adapdata(adapter); | 486 | struct go7007 *go = i2c_get_adapdata(adapter); |
493 | struct go7007_usb *usb = go->hpi_context; | 487 | struct go7007_usb *usb = go->hpi_context; |
494 | 488 | ||
495 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | 489 | audio = i2c_new_dummy(adapter, TLV320_ADDRESS >> 1); |
496 | if (client == NULL) | 490 | if (audio == NULL) |
497 | return -ENOMEM; | 491 | return -ENOMEM; |
498 | memcpy(client, &s2250_client_templ, | ||
499 | sizeof(s2250_client_templ)); | ||
500 | client->adapter = adapter; | ||
501 | 492 | ||
502 | dec = kmalloc(sizeof(struct s2250), GFP_KERNEL); | 493 | dec = kmalloc(sizeof(struct s2250), GFP_KERNEL); |
503 | if (dec == NULL) { | 494 | if (dec == NULL) { |
504 | kfree(client); | 495 | i2c_unregister_device(audio); |
505 | return -ENOMEM; | 496 | return -ENOMEM; |
506 | } | 497 | } |
507 | 498 | ||
@@ -510,7 +501,7 @@ static int s2250_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
510 | dec->contrast = 50; | 501 | dec->contrast = 50; |
511 | dec->saturation = 50; | 502 | dec->saturation = 50; |
512 | dec->hue = 0; | 503 | dec->hue = 0; |
513 | client->addr = TLV320_ADDRESS; | 504 | dec->audio = audio; |
514 | i2c_set_clientdata(client, dec); | 505 | i2c_set_clientdata(client, dec); |
515 | 506 | ||
516 | printk(KERN_DEBUG | 507 | printk(KERN_DEBUG |
@@ -518,28 +509,25 @@ static int s2250_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
518 | adapter->name); | 509 | adapter->name); |
519 | 510 | ||
520 | /* initialize the audio */ | 511 | /* initialize the audio */ |
521 | client->addr = TLV320_ADDRESS; | 512 | if (write_regs(audio, aud_regs) < 0) { |
522 | if (write_regs(client, aud_regs) < 0) { | ||
523 | printk(KERN_ERR | 513 | printk(KERN_ERR |
524 | "s2250: error initializing audio\n"); | 514 | "s2250: error initializing audio\n"); |
525 | kfree(client); | 515 | i2c_unregister_device(audio); |
526 | kfree(dec); | 516 | kfree(dec); |
527 | return 0; | 517 | return 0; |
528 | } | 518 | } |
529 | client->addr = S2250_VIDDEC; | ||
530 | i2c_set_clientdata(client, dec); | ||
531 | 519 | ||
532 | if (write_regs(client, vid_regs) < 0) { | 520 | if (write_regs(client, vid_regs) < 0) { |
533 | printk(KERN_ERR | 521 | printk(KERN_ERR |
534 | "s2250: error initializing decoder\n"); | 522 | "s2250: error initializing decoder\n"); |
535 | kfree(client); | 523 | i2c_unregister_device(audio); |
536 | kfree(dec); | 524 | kfree(dec); |
537 | return 0; | 525 | return 0; |
538 | } | 526 | } |
539 | if (write_regs_fp(client, vid_regs_fp) < 0) { | 527 | if (write_regs_fp(client, vid_regs_fp) < 0) { |
540 | printk(KERN_ERR | 528 | printk(KERN_ERR |
541 | "s2250: error initializing decoder\n"); | 529 | "s2250: error initializing decoder\n"); |
542 | kfree(client); | 530 | i2c_unregister_device(audio); |
543 | kfree(dec); | 531 | kfree(dec); |
544 | return 0; | 532 | return 0; |
545 | } | 533 | } |
@@ -575,32 +563,33 @@ static int s2250_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
575 | up(&usb->i2c_lock); | 563 | up(&usb->i2c_lock); |
576 | } | 564 | } |
577 | 565 | ||
578 | i2c_attach_client(client); | ||
579 | printk("s2250: initialized successfully\n"); | 566 | printk("s2250: initialized successfully\n"); |
580 | return 0; | 567 | return 0; |
581 | } | 568 | } |
582 | 569 | ||
583 | static int s2250_detach(struct i2c_client *client) | 570 | static int s2250_remove(struct i2c_client *client) |
584 | { | 571 | { |
585 | struct s2250 *dec = i2c_get_clientdata(client); | 572 | struct s2250 *dec = i2c_get_clientdata(client); |
586 | int r; | ||
587 | |||
588 | r = i2c_detach_client(client); | ||
589 | if (r < 0) | ||
590 | return r; | ||
591 | 573 | ||
592 | kfree(client); | 574 | i2c_set_clientdata(client, NULL); |
575 | i2c_unregister_device(dec->audio); | ||
593 | kfree(dec); | 576 | kfree(dec); |
594 | return 0; | 577 | return 0; |
595 | } | 578 | } |
596 | 579 | ||
580 | static struct i2c_device_id s2250_id[] = { | ||
581 | { "s2250_board", 0 }, | ||
582 | { } | ||
583 | }; | ||
584 | |||
597 | static struct i2c_driver s2250_driver = { | 585 | static struct i2c_driver s2250_driver = { |
598 | .driver = { | 586 | .driver = { |
599 | .name = "Sensoray 2250 board driver", | 587 | .name = "Sensoray 2250 board driver", |
600 | }, | 588 | }, |
601 | .id = I2C_DRIVERID_S2250, | 589 | .probe = s2250_probe, |
602 | .detach_client = s2250_detach, | 590 | .remove = s2250_remove, |
603 | .command = s2250_command, | 591 | .command = s2250_command, |
592 | .id_table = s2250_id, | ||
604 | }; | 593 | }; |
605 | 594 | ||
606 | static int __init s2250_init(void) | 595 | static int __init s2250_init(void) |
@@ -613,13 +602,13 @@ static int __init s2250_init(void) | |||
613 | 602 | ||
614 | r = i2c_add_driver(&s2250_driver); | 603 | r = i2c_add_driver(&s2250_driver); |
615 | if (r < 0) | 604 | if (r < 0) |
616 | return r; | 605 | s2250loader_cleanup(); |
617 | return wis_i2c_add_driver(s2250_driver.id, s2250_detect); | 606 | |
607 | return r; | ||
618 | } | 608 | } |
619 | 609 | ||
620 | static void __exit s2250_cleanup(void) | 610 | static void __exit s2250_cleanup(void) |
621 | { | 611 | { |
622 | wis_i2c_del_driver(s2250_detect); | ||
623 | i2c_del_driver(&s2250_driver); | 612 | i2c_del_driver(&s2250_driver); |
624 | 613 | ||
625 | s2250loader_cleanup(); | 614 | s2250loader_cleanup(); |
diff --git a/drivers/staging/go7007/wis-i2c.h b/drivers/staging/go7007/wis-i2c.h index 431f41dd3966..3c2b9be455df 100644 --- a/drivers/staging/go7007/wis-i2c.h +++ b/drivers/staging/go7007/wis-i2c.h | |||
@@ -24,21 +24,12 @@ | |||
24 | #define I2C_DRIVERID_WIS_OV7640 0xf0f5 | 24 | #define I2C_DRIVERID_WIS_OV7640 0xf0f5 |
25 | #define I2C_DRIVERID_WIS_TW2804 0xf0f6 | 25 | #define I2C_DRIVERID_WIS_TW2804 0xf0f6 |
26 | #define I2C_DRIVERID_S2250 0xf0f7 | 26 | #define I2C_DRIVERID_S2250 0xf0f7 |
27 | #define I2C_ALGO_GO7007 0xf00000 | ||
28 | #define I2C_ALGO_GO7007_USB 0xf10000 | ||
29 | 27 | ||
30 | /* Flag to indicate that the client needs to be accessed with SCCB semantics */ | 28 | /* Flag to indicate that the client needs to be accessed with SCCB semantics */ |
31 | /* We re-use the I2C_M_TEN value so the flag passes through the masks in the | 29 | /* We re-use the I2C_M_TEN value so the flag passes through the masks in the |
32 | * core I2C code. Major kludge, but the I2C layer ain't exactly flexible. */ | 30 | * core I2C code. Major kludge, but the I2C layer ain't exactly flexible. */ |
33 | #define I2C_CLIENT_SCCB 0x10 | 31 | #define I2C_CLIENT_SCCB 0x10 |
34 | 32 | ||
35 | typedef int (*found_proc) (struct i2c_adapter *, int, int); | ||
36 | int wis_i2c_add_driver(unsigned int id, found_proc found_proc); | ||
37 | void wis_i2c_del_driver(found_proc found_proc); | ||
38 | |||
39 | int wis_i2c_probe_device(struct i2c_adapter *adapter, | ||
40 | unsigned int id, int addr); | ||
41 | |||
42 | /* Definitions for new video decoder commands */ | 33 | /* Definitions for new video decoder commands */ |
43 | 34 | ||
44 | struct video_decoder_resolution { | 35 | struct video_decoder_resolution { |
diff --git a/drivers/staging/go7007/wis-ov7640.c b/drivers/staging/go7007/wis-ov7640.c index 2f9efca04606..04d6d3a498a3 100644 --- a/drivers/staging/go7007/wis-ov7640.c +++ b/drivers/staging/go7007/wis-ov7640.c | |||
@@ -50,76 +50,54 @@ static int write_regs(struct i2c_client *client, u8 *regs) | |||
50 | return 0; | 50 | return 0; |
51 | } | 51 | } |
52 | 52 | ||
53 | static struct i2c_driver wis_ov7640_driver; | 53 | static int wis_ov7640_probe(struct i2c_client *client, |
54 | 54 | const struct i2c_device_id *id) | |
55 | static struct i2c_client wis_ov7640_client_templ = { | ||
56 | .name = "OV7640 (WIS)", | ||
57 | .driver = &wis_ov7640_driver, | ||
58 | }; | ||
59 | |||
60 | static int wis_ov7640_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
61 | { | 55 | { |
62 | struct i2c_client *client; | 56 | struct i2c_adapter *adapter = client->adapter; |
63 | 57 | ||
64 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 58 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
65 | return 0; | 59 | return -ENODEV; |
66 | 60 | ||
67 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
68 | if (client == NULL) | ||
69 | return -ENOMEM; | ||
70 | memcpy(client, &wis_ov7640_client_templ, | ||
71 | sizeof(wis_ov7640_client_templ)); | ||
72 | client->adapter = adapter; | ||
73 | client->addr = addr; | ||
74 | client->flags = I2C_CLIENT_SCCB; | 61 | client->flags = I2C_CLIENT_SCCB; |
75 | 62 | ||
76 | printk(KERN_DEBUG | 63 | printk(KERN_DEBUG |
77 | "wis-ov7640: initializing OV7640 at address %d on %s\n", | 64 | "wis-ov7640: initializing OV7640 at address %d on %s\n", |
78 | addr, adapter->name); | 65 | client->addr, adapter->name); |
79 | 66 | ||
80 | if (write_regs(client, initial_registers) < 0) { | 67 | if (write_regs(client, initial_registers) < 0) { |
81 | printk(KERN_ERR "wis-ov7640: error initializing OV7640\n"); | 68 | printk(KERN_ERR "wis-ov7640: error initializing OV7640\n"); |
82 | kfree(client); | 69 | return -ENODEV; |
83 | return 0; | ||
84 | } | 70 | } |
85 | 71 | ||
86 | i2c_attach_client(client); | ||
87 | return 0; | 72 | return 0; |
88 | } | 73 | } |
89 | 74 | ||
90 | static int wis_ov7640_detach(struct i2c_client *client) | 75 | static int wis_ov7640_remove(struct i2c_client *client) |
91 | { | 76 | { |
92 | int r; | ||
93 | |||
94 | r = i2c_detach_client(client); | ||
95 | if (r < 0) | ||
96 | return r; | ||
97 | |||
98 | kfree(client); | ||
99 | return 0; | 77 | return 0; |
100 | } | 78 | } |
101 | 79 | ||
80 | static struct i2c_device_id wis_ov7640_id[] = { | ||
81 | { "wis_ov7640", 0 }, | ||
82 | { } | ||
83 | }; | ||
84 | |||
102 | static struct i2c_driver wis_ov7640_driver = { | 85 | static struct i2c_driver wis_ov7640_driver = { |
103 | .driver = { | 86 | .driver = { |
104 | .name = "WIS OV7640 I2C driver", | 87 | .name = "WIS OV7640 I2C driver", |
105 | }, | 88 | }, |
106 | .id = I2C_DRIVERID_WIS_OV7640, | 89 | .probe = wis_ov7640_probe, |
107 | .detach_client = wis_ov7640_detach, | 90 | .remove = wis_ov7640_remove, |
91 | .id_table = wis_ov7640_id, | ||
108 | }; | 92 | }; |
109 | 93 | ||
110 | static int __init wis_ov7640_init(void) | 94 | static int __init wis_ov7640_init(void) |
111 | { | 95 | { |
112 | int r; | 96 | return i2c_add_driver(&wis_ov7640_driver); |
113 | |||
114 | r = i2c_add_driver(&wis_ov7640_driver); | ||
115 | if (r < 0) | ||
116 | return r; | ||
117 | return wis_i2c_add_driver(wis_ov7640_driver.id, wis_ov7640_detect); | ||
118 | } | 97 | } |
119 | 98 | ||
120 | static void __exit wis_ov7640_cleanup(void) | 99 | static void __exit wis_ov7640_cleanup(void) |
121 | { | 100 | { |
122 | wis_i2c_del_driver(wis_ov7640_detect); | ||
123 | i2c_del_driver(&wis_ov7640_driver); | 101 | i2c_del_driver(&wis_ov7640_driver); |
124 | } | 102 | } |
125 | 103 | ||
diff --git a/drivers/staging/go7007/wis-saa7113.c b/drivers/staging/go7007/wis-saa7113.c index 11689723945e..9ab893bd204e 100644 --- a/drivers/staging/go7007/wis-saa7113.c +++ b/drivers/staging/go7007/wis-saa7113.c | |||
@@ -261,34 +261,19 @@ static int wis_saa7113_command(struct i2c_client *client, | |||
261 | return 0; | 261 | return 0; |
262 | } | 262 | } |
263 | 263 | ||
264 | static struct i2c_driver wis_saa7113_driver; | 264 | static int wis_saa7113_probe(struct i2c_client *client, |
265 | 265 | const struct i2c_device_id *id) | |
266 | static struct i2c_client wis_saa7113_client_templ = { | ||
267 | .name = "SAA7113 (WIS)", | ||
268 | .driver = &wis_saa7113_driver, | ||
269 | }; | ||
270 | |||
271 | static int wis_saa7113_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
272 | { | 266 | { |
273 | struct i2c_client *client; | 267 | struct i2c_adapter *adapter = client->adapter; |
274 | struct wis_saa7113 *dec; | 268 | struct wis_saa7113 *dec; |
275 | 269 | ||
276 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 270 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
277 | return 0; | 271 | return -ENODEV; |
278 | |||
279 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
280 | if (client == NULL) | ||
281 | return -ENOMEM; | ||
282 | memcpy(client, &wis_saa7113_client_templ, | ||
283 | sizeof(wis_saa7113_client_templ)); | ||
284 | client->adapter = adapter; | ||
285 | client->addr = addr; | ||
286 | 272 | ||
287 | dec = kmalloc(sizeof(struct wis_saa7113), GFP_KERNEL); | 273 | dec = kmalloc(sizeof(struct wis_saa7113), GFP_KERNEL); |
288 | if (dec == NULL) { | 274 | if (dec == NULL) |
289 | kfree(client); | ||
290 | return -ENOMEM; | 275 | return -ENOMEM; |
291 | } | 276 | |
292 | dec->norm = V4L2_STD_NTSC; | 277 | dec->norm = V4L2_STD_NTSC; |
293 | dec->brightness = 128; | 278 | dec->brightness = 128; |
294 | dec->contrast = 71; | 279 | dec->contrast = 71; |
@@ -298,56 +283,49 @@ static int wis_saa7113_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
298 | 283 | ||
299 | printk(KERN_DEBUG | 284 | printk(KERN_DEBUG |
300 | "wis-saa7113: initializing SAA7113 at address %d on %s\n", | 285 | "wis-saa7113: initializing SAA7113 at address %d on %s\n", |
301 | addr, adapter->name); | 286 | client->addr, adapter->name); |
302 | 287 | ||
303 | if (write_regs(client, initial_registers) < 0) { | 288 | if (write_regs(client, initial_registers) < 0) { |
304 | printk(KERN_ERR | 289 | printk(KERN_ERR |
305 | "wis-saa7113: error initializing SAA7113\n"); | 290 | "wis-saa7113: error initializing SAA7113\n"); |
306 | kfree(client); | ||
307 | kfree(dec); | 291 | kfree(dec); |
308 | return 0; | 292 | return -ENODEV; |
309 | } | 293 | } |
310 | 294 | ||
311 | i2c_attach_client(client); | ||
312 | return 0; | 295 | return 0; |
313 | } | 296 | } |
314 | 297 | ||
315 | static int wis_saa7113_detach(struct i2c_client *client) | 298 | static int wis_saa7113_remove(struct i2c_client *client) |
316 | { | 299 | { |
317 | struct wis_saa7113 *dec = i2c_get_clientdata(client); | 300 | struct wis_saa7113 *dec = i2c_get_clientdata(client); |
318 | int r; | ||
319 | |||
320 | r = i2c_detach_client(client); | ||
321 | if (r < 0) | ||
322 | return r; | ||
323 | 301 | ||
324 | kfree(client); | 302 | i2c_set_clientdata(client, NULL); |
325 | kfree(dec); | 303 | kfree(dec); |
326 | return 0; | 304 | return 0; |
327 | } | 305 | } |
328 | 306 | ||
307 | static struct i2c_device_id wis_saa7113_id[] = { | ||
308 | { "wis_saa7113", 0 }, | ||
309 | { } | ||
310 | }; | ||
311 | |||
329 | static struct i2c_driver wis_saa7113_driver = { | 312 | static struct i2c_driver wis_saa7113_driver = { |
330 | .driver = { | 313 | .driver = { |
331 | .name = "WIS SAA7113 I2C driver", | 314 | .name = "WIS SAA7113 I2C driver", |
332 | }, | 315 | }, |
333 | .id = I2C_DRIVERID_WIS_SAA7113, | 316 | .probe = wis_saa7113_probe, |
334 | .detach_client = wis_saa7113_detach, | 317 | .remove = wis_saa7113_remove, |
335 | .command = wis_saa7113_command, | 318 | .command = wis_saa7113_command, |
319 | .id_table = wis_saa7113_id, | ||
336 | }; | 320 | }; |
337 | 321 | ||
338 | static int __init wis_saa7113_init(void) | 322 | static int __init wis_saa7113_init(void) |
339 | { | 323 | { |
340 | int r; | 324 | return i2c_add_driver(&wis_saa7113_driver); |
341 | |||
342 | r = i2c_add_driver(&wis_saa7113_driver); | ||
343 | if (r < 0) | ||
344 | return r; | ||
345 | return wis_i2c_add_driver(wis_saa7113_driver.id, wis_saa7113_detect); | ||
346 | } | 325 | } |
347 | 326 | ||
348 | static void __exit wis_saa7113_cleanup(void) | 327 | static void __exit wis_saa7113_cleanup(void) |
349 | { | 328 | { |
350 | wis_i2c_del_driver(wis_saa7113_detect); | ||
351 | i2c_del_driver(&wis_saa7113_driver); | 329 | i2c_del_driver(&wis_saa7113_driver); |
352 | } | 330 | } |
353 | 331 | ||
diff --git a/drivers/staging/go7007/wis-saa7115.c b/drivers/staging/go7007/wis-saa7115.c index 59417a7174d7..8687ad2de761 100644 --- a/drivers/staging/go7007/wis-saa7115.c +++ b/drivers/staging/go7007/wis-saa7115.c | |||
@@ -394,34 +394,19 @@ static int wis_saa7115_command(struct i2c_client *client, | |||
394 | return 0; | 394 | return 0; |
395 | } | 395 | } |
396 | 396 | ||
397 | static struct i2c_driver wis_saa7115_driver; | 397 | static int wis_saa7115_probe(struct i2c_client *client, |
398 | 398 | const struct i2c_device_id *id) | |
399 | static struct i2c_client wis_saa7115_client_templ = { | ||
400 | .name = "SAA7115 (WIS)", | ||
401 | .driver = &wis_saa7115_driver, | ||
402 | }; | ||
403 | |||
404 | static int wis_saa7115_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
405 | { | 399 | { |
406 | struct i2c_client *client; | 400 | struct i2c_adapter *adapter = client->adapter; |
407 | struct wis_saa7115 *dec; | 401 | struct wis_saa7115 *dec; |
408 | 402 | ||
409 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 403 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
410 | return 0; | 404 | return -ENODEV; |
411 | |||
412 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
413 | if (client == NULL) | ||
414 | return -ENOMEM; | ||
415 | memcpy(client, &wis_saa7115_client_templ, | ||
416 | sizeof(wis_saa7115_client_templ)); | ||
417 | client->adapter = adapter; | ||
418 | client->addr = addr; | ||
419 | 405 | ||
420 | dec = kmalloc(sizeof(struct wis_saa7115), GFP_KERNEL); | 406 | dec = kmalloc(sizeof(struct wis_saa7115), GFP_KERNEL); |
421 | if (dec == NULL) { | 407 | if (dec == NULL) |
422 | kfree(client); | ||
423 | return -ENOMEM; | 408 | return -ENOMEM; |
424 | } | 409 | |
425 | dec->norm = V4L2_STD_NTSC; | 410 | dec->norm = V4L2_STD_NTSC; |
426 | dec->brightness = 128; | 411 | dec->brightness = 128; |
427 | dec->contrast = 64; | 412 | dec->contrast = 64; |
@@ -431,56 +416,49 @@ static int wis_saa7115_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
431 | 416 | ||
432 | printk(KERN_DEBUG | 417 | printk(KERN_DEBUG |
433 | "wis-saa7115: initializing SAA7115 at address %d on %s\n", | 418 | "wis-saa7115: initializing SAA7115 at address %d on %s\n", |
434 | addr, adapter->name); | 419 | client->addr, adapter->name); |
435 | 420 | ||
436 | if (write_regs(client, initial_registers) < 0) { | 421 | if (write_regs(client, initial_registers) < 0) { |
437 | printk(KERN_ERR | 422 | printk(KERN_ERR |
438 | "wis-saa7115: error initializing SAA7115\n"); | 423 | "wis-saa7115: error initializing SAA7115\n"); |
439 | kfree(client); | ||
440 | kfree(dec); | 424 | kfree(dec); |
441 | return 0; | 425 | return -ENODEV; |
442 | } | 426 | } |
443 | 427 | ||
444 | i2c_attach_client(client); | ||
445 | return 0; | 428 | return 0; |
446 | } | 429 | } |
447 | 430 | ||
448 | static int wis_saa7115_detach(struct i2c_client *client) | 431 | static int wis_saa7115_remove(struct i2c_client *client) |
449 | { | 432 | { |
450 | struct wis_saa7115 *dec = i2c_get_clientdata(client); | 433 | struct wis_saa7115 *dec = i2c_get_clientdata(client); |
451 | int r; | ||
452 | |||
453 | r = i2c_detach_client(client); | ||
454 | if (r < 0) | ||
455 | return r; | ||
456 | 434 | ||
457 | kfree(client); | 435 | i2c_set_clientdata(client, NULL); |
458 | kfree(dec); | 436 | kfree(dec); |
459 | return 0; | 437 | return 0; |
460 | } | 438 | } |
461 | 439 | ||
440 | static struct i2c_device_id wis_saa7115_id[] = { | ||
441 | { "wis_saa7115", 0 }, | ||
442 | { } | ||
443 | }; | ||
444 | |||
462 | static struct i2c_driver wis_saa7115_driver = { | 445 | static struct i2c_driver wis_saa7115_driver = { |
463 | .driver = { | 446 | .driver = { |
464 | .name = "WIS SAA7115 I2C driver", | 447 | .name = "WIS SAA7115 I2C driver", |
465 | }, | 448 | }, |
466 | .id = I2C_DRIVERID_WIS_SAA7115, | 449 | .probe = wis_saa7115_probe, |
467 | .detach_client = wis_saa7115_detach, | 450 | .remove = wis_saa7115_remove, |
468 | .command = wis_saa7115_command, | 451 | .command = wis_saa7115_command, |
452 | .id_table = wis_saa7115_id, | ||
469 | }; | 453 | }; |
470 | 454 | ||
471 | static int __init wis_saa7115_init(void) | 455 | static int __init wis_saa7115_init(void) |
472 | { | 456 | { |
473 | int r; | 457 | return i2c_add_driver(&wis_saa7115_driver); |
474 | |||
475 | r = i2c_add_driver(&wis_saa7115_driver); | ||
476 | if (r < 0) | ||
477 | return r; | ||
478 | return wis_i2c_add_driver(wis_saa7115_driver.id, wis_saa7115_detect); | ||
479 | } | 458 | } |
480 | 459 | ||
481 | static void __exit wis_saa7115_cleanup(void) | 460 | static void __exit wis_saa7115_cleanup(void) |
482 | { | 461 | { |
483 | wis_i2c_del_driver(wis_saa7115_detect); | ||
484 | i2c_del_driver(&wis_saa7115_driver); | 462 | i2c_del_driver(&wis_saa7115_driver); |
485 | } | 463 | } |
486 | 464 | ||
diff --git a/drivers/staging/go7007/wis-sony-tuner.c b/drivers/staging/go7007/wis-sony-tuner.c index 0a7eeef7c008..c965c601ac90 100644 --- a/drivers/staging/go7007/wis-sony-tuner.c +++ b/drivers/staging/go7007/wis-sony-tuner.c | |||
@@ -653,35 +653,19 @@ static int tuner_command(struct i2c_client *client, unsigned int cmd, void *arg) | |||
653 | return 0; | 653 | return 0; |
654 | } | 654 | } |
655 | 655 | ||
656 | static struct i2c_driver wis_sony_tuner_driver; | 656 | static int wis_sony_tuner_probe(struct i2c_client *client, |
657 | 657 | const struct i2c_device_id *id) | |
658 | static struct i2c_client wis_sony_tuner_client_templ = { | ||
659 | .name = "Sony TV Tuner (WIS)", | ||
660 | .driver = &wis_sony_tuner_driver, | ||
661 | }; | ||
662 | |||
663 | static int wis_sony_tuner_detect(struct i2c_adapter *adapter, | ||
664 | int addr, int kind) | ||
665 | { | 658 | { |
666 | struct i2c_client *client; | 659 | struct i2c_adapter *adapter = client->adapter; |
667 | struct wis_sony_tuner *t; | 660 | struct wis_sony_tuner *t; |
668 | 661 | ||
669 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) | 662 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) |
670 | return 0; | 663 | return -ENODEV; |
671 | |||
672 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
673 | if (client == NULL) | ||
674 | return -ENOMEM; | ||
675 | memcpy(client, &wis_sony_tuner_client_templ, | ||
676 | sizeof(wis_sony_tuner_client_templ)); | ||
677 | client->adapter = adapter; | ||
678 | client->addr = addr; | ||
679 | 664 | ||
680 | t = kmalloc(sizeof(struct wis_sony_tuner), GFP_KERNEL); | 665 | t = kmalloc(sizeof(struct wis_sony_tuner), GFP_KERNEL); |
681 | if (t == NULL) { | 666 | if (t == NULL) |
682 | kfree(client); | ||
683 | return -ENOMEM; | 667 | return -ENOMEM; |
684 | } | 668 | |
685 | t->type = -1; | 669 | t->type = -1; |
686 | t->freq = 0; | 670 | t->freq = 0; |
687 | t->mpxmode = 0; | 671 | t->mpxmode = 0; |
@@ -690,50 +674,42 @@ static int wis_sony_tuner_detect(struct i2c_adapter *adapter, | |||
690 | 674 | ||
691 | printk(KERN_DEBUG | 675 | printk(KERN_DEBUG |
692 | "wis-sony-tuner: initializing tuner at address %d on %s\n", | 676 | "wis-sony-tuner: initializing tuner at address %d on %s\n", |
693 | addr, adapter->name); | 677 | client->addr, adapter->name); |
694 | |||
695 | i2c_attach_client(client); | ||
696 | 678 | ||
697 | return 0; | 679 | return 0; |
698 | } | 680 | } |
699 | 681 | ||
700 | static int wis_sony_tuner_detach(struct i2c_client *client) | 682 | static int wis_sony_tuner_remove(struct i2c_client *client) |
701 | { | 683 | { |
702 | struct wis_sony_tuner *t = i2c_get_clientdata(client); | 684 | struct wis_sony_tuner *t = i2c_get_clientdata(client); |
703 | int r; | ||
704 | |||
705 | r = i2c_detach_client(client); | ||
706 | if (r < 0) | ||
707 | return r; | ||
708 | 685 | ||
686 | i2c_set_clientdata(client, NULL); | ||
709 | kfree(t); | 687 | kfree(t); |
710 | kfree(client); | ||
711 | return 0; | 688 | return 0; |
712 | } | 689 | } |
713 | 690 | ||
691 | static struct i2c_device_id wis_sony_tuner_id[] = { | ||
692 | { "wis_sony_tuner", 0 }, | ||
693 | { } | ||
694 | }; | ||
695 | |||
714 | static struct i2c_driver wis_sony_tuner_driver = { | 696 | static struct i2c_driver wis_sony_tuner_driver = { |
715 | .driver = { | 697 | .driver = { |
716 | .name = "WIS Sony TV Tuner I2C driver", | 698 | .name = "WIS Sony TV Tuner I2C driver", |
717 | }, | 699 | }, |
718 | .id = I2C_DRIVERID_WIS_SONY_TUNER, | 700 | .probe = wis_sony_tuner_probe, |
719 | .detach_client = wis_sony_tuner_detach, | 701 | .remove = wis_sony_tuner_remove, |
720 | .command = tuner_command, | 702 | .command = tuner_command, |
703 | .id_table = wis_sony_tuner_id, | ||
721 | }; | 704 | }; |
722 | 705 | ||
723 | static int __init wis_sony_tuner_init(void) | 706 | static int __init wis_sony_tuner_init(void) |
724 | { | 707 | { |
725 | int r; | 708 | return i2c_add_driver(&wis_sony_tuner_driver); |
726 | |||
727 | r = i2c_add_driver(&wis_sony_tuner_driver); | ||
728 | if (r < 0) | ||
729 | return r; | ||
730 | return wis_i2c_add_driver(wis_sony_tuner_driver.id, | ||
731 | wis_sony_tuner_detect); | ||
732 | } | 709 | } |
733 | 710 | ||
734 | static void __exit wis_sony_tuner_cleanup(void) | 711 | static void __exit wis_sony_tuner_cleanup(void) |
735 | { | 712 | { |
736 | wis_i2c_del_driver(wis_sony_tuner_detect); | ||
737 | i2c_del_driver(&wis_sony_tuner_driver); | 713 | i2c_del_driver(&wis_sony_tuner_driver); |
738 | } | 714 | } |
739 | 715 | ||
diff --git a/drivers/staging/go7007/wis-tw2804.c b/drivers/staging/go7007/wis-tw2804.c index 57b8f2b1caa3..e15794a2a0ae 100644 --- a/drivers/staging/go7007/wis-tw2804.c +++ b/drivers/staging/go7007/wis-tw2804.c | |||
@@ -291,34 +291,19 @@ static int wis_tw2804_command(struct i2c_client *client, | |||
291 | return 0; | 291 | return 0; |
292 | } | 292 | } |
293 | 293 | ||
294 | static struct i2c_driver wis_tw2804_driver; | 294 | static int wis_tw2804_probe(struct i2c_client *client, |
295 | 295 | const struct i2c_device_id *id) | |
296 | static struct i2c_client wis_tw2804_client_templ = { | ||
297 | .name = "TW2804 (WIS)", | ||
298 | .driver = &wis_tw2804_driver, | ||
299 | }; | ||
300 | |||
301 | static int wis_tw2804_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
302 | { | 296 | { |
303 | struct i2c_client *client; | 297 | struct i2c_adapter *adapter = client->adapter; |
304 | struct wis_tw2804 *dec; | 298 | struct wis_tw2804 *dec; |
305 | 299 | ||
306 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 300 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
307 | return 0; | 301 | return -ENODEV; |
308 | |||
309 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
310 | if (client == NULL) | ||
311 | return -ENOMEM; | ||
312 | memcpy(client, &wis_tw2804_client_templ, | ||
313 | sizeof(wis_tw2804_client_templ)); | ||
314 | client->adapter = adapter; | ||
315 | client->addr = addr; | ||
316 | 302 | ||
317 | dec = kmalloc(sizeof(struct wis_tw2804), GFP_KERNEL); | 303 | dec = kmalloc(sizeof(struct wis_tw2804), GFP_KERNEL); |
318 | if (dec == NULL) { | 304 | if (dec == NULL) |
319 | kfree(client); | ||
320 | return -ENOMEM; | 305 | return -ENOMEM; |
321 | } | 306 | |
322 | dec->channel = -1; | 307 | dec->channel = -1; |
323 | dec->norm = V4L2_STD_NTSC; | 308 | dec->norm = V4L2_STD_NTSC; |
324 | dec->brightness = 128; | 309 | dec->brightness = 128; |
@@ -328,48 +313,42 @@ static int wis_tw2804_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
328 | i2c_set_clientdata(client, dec); | 313 | i2c_set_clientdata(client, dec); |
329 | 314 | ||
330 | printk(KERN_DEBUG "wis-tw2804: creating TW2804 at address %d on %s\n", | 315 | printk(KERN_DEBUG "wis-tw2804: creating TW2804 at address %d on %s\n", |
331 | addr, adapter->name); | 316 | client->addr, adapter->name); |
332 | 317 | ||
333 | i2c_attach_client(client); | ||
334 | return 0; | 318 | return 0; |
335 | } | 319 | } |
336 | 320 | ||
337 | static int wis_tw2804_detach(struct i2c_client *client) | 321 | static int wis_tw2804_remove(struct i2c_client *client) |
338 | { | 322 | { |
339 | struct wis_tw2804 *dec = i2c_get_clientdata(client); | 323 | struct wis_tw2804 *dec = i2c_get_clientdata(client); |
340 | int r; | ||
341 | |||
342 | r = i2c_detach_client(client); | ||
343 | if (r < 0) | ||
344 | return r; | ||
345 | 324 | ||
346 | kfree(client); | 325 | i2c_set_clientdata(client, NULL); |
347 | kfree(dec); | 326 | kfree(dec); |
348 | return 0; | 327 | return 0; |
349 | } | 328 | } |
350 | 329 | ||
330 | static struct i2c_device_id wis_tw2804_id[] = { | ||
331 | { "wis_tw2804", 0 }, | ||
332 | { } | ||
333 | }; | ||
334 | |||
351 | static struct i2c_driver wis_tw2804_driver = { | 335 | static struct i2c_driver wis_tw2804_driver = { |
352 | .driver = { | 336 | .driver = { |
353 | .name = "WIS TW2804 I2C driver", | 337 | .name = "WIS TW2804 I2C driver", |
354 | }, | 338 | }, |
355 | .id = I2C_DRIVERID_WIS_TW2804, | 339 | .probe = wis_tw2804_probe, |
356 | .detach_client = wis_tw2804_detach, | 340 | .remove = wis_tw2804_remove, |
357 | .command = wis_tw2804_command, | 341 | .command = wis_tw2804_command, |
342 | .id_table = wis_tw2804_id, | ||
358 | }; | 343 | }; |
359 | 344 | ||
360 | static int __init wis_tw2804_init(void) | 345 | static int __init wis_tw2804_init(void) |
361 | { | 346 | { |
362 | int r; | 347 | return i2c_add_driver(&wis_tw2804_driver); |
363 | |||
364 | r = i2c_add_driver(&wis_tw2804_driver); | ||
365 | if (r < 0) | ||
366 | return r; | ||
367 | return wis_i2c_add_driver(wis_tw2804_driver.id, wis_tw2804_detect); | ||
368 | } | 348 | } |
369 | 349 | ||
370 | static void __exit wis_tw2804_cleanup(void) | 350 | static void __exit wis_tw2804_cleanup(void) |
371 | { | 351 | { |
372 | wis_i2c_del_driver(wis_tw2804_detect); | ||
373 | i2c_del_driver(&wis_tw2804_driver); | 352 | i2c_del_driver(&wis_tw2804_driver); |
374 | } | 353 | } |
375 | 354 | ||
diff --git a/drivers/staging/go7007/wis-tw9903.c b/drivers/staging/go7007/wis-tw9903.c index 40627b282cb4..6c3427bb6f4c 100644 --- a/drivers/staging/go7007/wis-tw9903.c +++ b/drivers/staging/go7007/wis-tw9903.c | |||
@@ -267,34 +267,19 @@ static int wis_tw9903_command(struct i2c_client *client, | |||
267 | return 0; | 267 | return 0; |
268 | } | 268 | } |
269 | 269 | ||
270 | static struct i2c_driver wis_tw9903_driver; | 270 | static int wis_tw9903_probe(struct i2c_client *client, |
271 | 271 | const struct i2c_device_id *id) | |
272 | static struct i2c_client wis_tw9903_client_templ = { | ||
273 | .name = "TW9903 (WIS)", | ||
274 | .driver = &wis_tw9903_driver, | ||
275 | }; | ||
276 | |||
277 | static int wis_tw9903_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
278 | { | 272 | { |
279 | struct i2c_client *client; | 273 | struct i2c_adapter *adapter = client->adapter; |
280 | struct wis_tw9903 *dec; | 274 | struct wis_tw9903 *dec; |
281 | 275 | ||
282 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 276 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
283 | return 0; | 277 | return -ENODEV; |
284 | |||
285 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
286 | if (client == NULL) | ||
287 | return -ENOMEM; | ||
288 | memcpy(client, &wis_tw9903_client_templ, | ||
289 | sizeof(wis_tw9903_client_templ)); | ||
290 | client->adapter = adapter; | ||
291 | client->addr = addr; | ||
292 | 278 | ||
293 | dec = kmalloc(sizeof(struct wis_tw9903), GFP_KERNEL); | 279 | dec = kmalloc(sizeof(struct wis_tw9903), GFP_KERNEL); |
294 | if (dec == NULL) { | 280 | if (dec == NULL) |
295 | kfree(client); | ||
296 | return -ENOMEM; | 281 | return -ENOMEM; |
297 | } | 282 | |
298 | dec->norm = V4L2_STD_NTSC; | 283 | dec->norm = V4L2_STD_NTSC; |
299 | dec->brightness = 0; | 284 | dec->brightness = 0; |
300 | dec->contrast = 0x60; | 285 | dec->contrast = 0x60; |
@@ -303,55 +288,48 @@ static int wis_tw9903_detect(struct i2c_adapter *adapter, int addr, int kind) | |||
303 | 288 | ||
304 | printk(KERN_DEBUG | 289 | printk(KERN_DEBUG |
305 | "wis-tw9903: initializing TW9903 at address %d on %s\n", | 290 | "wis-tw9903: initializing TW9903 at address %d on %s\n", |
306 | addr, adapter->name); | 291 | client->addr, adapter->name); |
307 | 292 | ||
308 | if (write_regs(client, initial_registers) < 0) { | 293 | if (write_regs(client, initial_registers) < 0) { |
309 | printk(KERN_ERR "wis-tw9903: error initializing TW9903\n"); | 294 | printk(KERN_ERR "wis-tw9903: error initializing TW9903\n"); |
310 | kfree(client); | ||
311 | kfree(dec); | 295 | kfree(dec); |
312 | return 0; | 296 | return -ENODEV; |
313 | } | 297 | } |
314 | 298 | ||
315 | i2c_attach_client(client); | ||
316 | return 0; | 299 | return 0; |
317 | } | 300 | } |
318 | 301 | ||
319 | static int wis_tw9903_detach(struct i2c_client *client) | 302 | static int wis_tw9903_remove(struct i2c_client *client) |
320 | { | 303 | { |
321 | struct wis_tw9903 *dec = i2c_get_clientdata(client); | 304 | struct wis_tw9903 *dec = i2c_get_clientdata(client); |
322 | int r; | ||
323 | |||
324 | r = i2c_detach_client(client); | ||
325 | if (r < 0) | ||
326 | return r; | ||
327 | 305 | ||
328 | kfree(client); | 306 | i2c_set_clientdata(client, NULL); |
329 | kfree(dec); | 307 | kfree(dec); |
330 | return 0; | 308 | return 0; |
331 | } | 309 | } |
332 | 310 | ||
311 | static struct i2c_device_id wis_tw9903_id[] = { | ||
312 | { "wis_tw9903", 0 }, | ||
313 | { } | ||
314 | }; | ||
315 | |||
333 | static struct i2c_driver wis_tw9903_driver = { | 316 | static struct i2c_driver wis_tw9903_driver = { |
334 | .driver = { | 317 | .driver = { |
335 | .name = "WIS TW9903 I2C driver", | 318 | .name = "WIS TW9903 I2C driver", |
336 | }, | 319 | }, |
337 | .id = I2C_DRIVERID_WIS_TW9903, | 320 | .probe = wis_tw9903_probe, |
338 | .detach_client = wis_tw9903_detach, | 321 | .remove = wis_tw9903_remove, |
339 | .command = wis_tw9903_command, | 322 | .command = wis_tw9903_command, |
323 | .id_table = wis_tw9903_id, | ||
340 | }; | 324 | }; |
341 | 325 | ||
342 | static int __init wis_tw9903_init(void) | 326 | static int __init wis_tw9903_init(void) |
343 | { | 327 | { |
344 | int r; | 328 | return i2c_add_driver(&wis_tw9903_driver); |
345 | |||
346 | r = i2c_add_driver(&wis_tw9903_driver); | ||
347 | if (r < 0) | ||
348 | return r; | ||
349 | return wis_i2c_add_driver(wis_tw9903_driver.id, wis_tw9903_detect); | ||
350 | } | 329 | } |
351 | 330 | ||
352 | static void __exit wis_tw9903_cleanup(void) | 331 | static void __exit wis_tw9903_cleanup(void) |
353 | { | 332 | { |
354 | wis_i2c_del_driver(wis_tw9903_detect); | ||
355 | i2c_del_driver(&wis_tw9903_driver); | 333 | i2c_del_driver(&wis_tw9903_driver); |
356 | } | 334 | } |
357 | 335 | ||
diff --git a/drivers/staging/go7007/wis-uda1342.c b/drivers/staging/go7007/wis-uda1342.c index 555645c0cc1a..739c7ae8913f 100644 --- a/drivers/staging/go7007/wis-uda1342.c +++ b/drivers/staging/go7007/wis-uda1342.c | |||
@@ -59,73 +59,51 @@ static int wis_uda1342_command(struct i2c_client *client, | |||
59 | return 0; | 59 | return 0; |
60 | } | 60 | } |
61 | 61 | ||
62 | static struct i2c_driver wis_uda1342_driver; | 62 | static int wis_uda1342_probe(struct i2c_client *client, |
63 | 63 | const struct i2c_device_id *id) | |
64 | static struct i2c_client wis_uda1342_client_templ = { | ||
65 | .name = "UDA1342 (WIS)", | ||
66 | .driver = &wis_uda1342_driver, | ||
67 | }; | ||
68 | |||
69 | static int wis_uda1342_detect(struct i2c_adapter *adapter, int addr, int kind) | ||
70 | { | 64 | { |
71 | struct i2c_client *client; | 65 | struct i2c_adapter *adapter = client->adapter; |
72 | 66 | ||
73 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) | 67 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA)) |
74 | return 0; | 68 | return -ENODEV; |
75 | |||
76 | client = kmalloc(sizeof(struct i2c_client), GFP_KERNEL); | ||
77 | if (client == NULL) | ||
78 | return -ENOMEM; | ||
79 | memcpy(client, &wis_uda1342_client_templ, | ||
80 | sizeof(wis_uda1342_client_templ)); | ||
81 | client->adapter = adapter; | ||
82 | client->addr = addr; | ||
83 | 69 | ||
84 | printk(KERN_DEBUG | 70 | printk(KERN_DEBUG |
85 | "wis-uda1342: initializing UDA1342 at address %d on %s\n", | 71 | "wis-uda1342: initializing UDA1342 at address %d on %s\n", |
86 | addr, adapter->name); | 72 | client->addr, adapter->name); |
87 | 73 | ||
88 | write_reg(client, 0x00, 0x8000); /* reset registers */ | 74 | write_reg(client, 0x00, 0x8000); /* reset registers */ |
89 | write_reg(client, 0x00, 0x1241); /* select input 1 */ | 75 | write_reg(client, 0x00, 0x1241); /* select input 1 */ |
90 | 76 | ||
91 | i2c_attach_client(client); | ||
92 | return 0; | 77 | return 0; |
93 | } | 78 | } |
94 | 79 | ||
95 | static int wis_uda1342_detach(struct i2c_client *client) | 80 | static int wis_uda1342_remove(struct i2c_client *client) |
96 | { | 81 | { |
97 | int r; | ||
98 | |||
99 | r = i2c_detach_client(client); | ||
100 | if (r < 0) | ||
101 | return r; | ||
102 | |||
103 | kfree(client); | ||
104 | return 0; | 82 | return 0; |
105 | } | 83 | } |
106 | 84 | ||
85 | static struct i2c_device_id wis_uda1342_id[] = { | ||
86 | { "wis_uda1342", 0 }, | ||
87 | { } | ||
88 | }; | ||
89 | |||
107 | static struct i2c_driver wis_uda1342_driver = { | 90 | static struct i2c_driver wis_uda1342_driver = { |
108 | .driver = { | 91 | .driver = { |
109 | .name = "WIS UDA1342 I2C driver", | 92 | .name = "WIS UDA1342 I2C driver", |
110 | }, | 93 | }, |
111 | .id = I2C_DRIVERID_WIS_UDA1342, | 94 | .probe = wis_uda1342_probe, |
112 | .detach_client = wis_uda1342_detach, | 95 | .remove = wis_uda1342_remove, |
113 | .command = wis_uda1342_command, | 96 | .command = wis_uda1342_command, |
97 | .id_table = wis_uda1342_id, | ||
114 | }; | 98 | }; |
115 | 99 | ||
116 | static int __init wis_uda1342_init(void) | 100 | static int __init wis_uda1342_init(void) |
117 | { | 101 | { |
118 | int r; | 102 | return i2c_add_driver(&wis_uda1342_driver); |
119 | |||
120 | r = i2c_add_driver(&wis_uda1342_driver); | ||
121 | if (r < 0) | ||
122 | return r; | ||
123 | return wis_i2c_add_driver(wis_uda1342_driver.id, wis_uda1342_detect); | ||
124 | } | 103 | } |
125 | 104 | ||
126 | static void __exit wis_uda1342_cleanup(void) | 105 | static void __exit wis_uda1342_cleanup(void) |
127 | { | 106 | { |
128 | wis_i2c_del_driver(wis_uda1342_detect); | ||
129 | i2c_del_driver(&wis_uda1342_driver); | 107 | i2c_del_driver(&wis_uda1342_driver); |
130 | } | 108 | } |
131 | 109 | ||
diff --git a/drivers/usb/class/cdc-wdm.c b/drivers/usb/class/cdc-wdm.c index 34e6108e1d42..0fe434505ac4 100644 --- a/drivers/usb/class/cdc-wdm.c +++ b/drivers/usb/class/cdc-wdm.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * This driver supports USB CDC WCM Device Management. | 4 | * This driver supports USB CDC WCM Device Management. |
5 | * | 5 | * |
6 | * Copyright (c) 2007-2008 Oliver Neukum | 6 | * Copyright (c) 2007-2009 Oliver Neukum |
7 | * | 7 | * |
8 | * Some code taken from cdc-acm.c | 8 | * Some code taken from cdc-acm.c |
9 | * | 9 | * |
@@ -610,7 +610,7 @@ static int wdm_probe(struct usb_interface *intf, const struct usb_device_id *id) | |||
610 | if (!buffer) | 610 | if (!buffer) |
611 | goto out; | 611 | goto out; |
612 | 612 | ||
613 | while (buflen > 0) { | 613 | while (buflen > 2) { |
614 | if (buffer [1] != USB_DT_CS_INTERFACE) { | 614 | if (buffer [1] != USB_DT_CS_INTERFACE) { |
615 | dev_err(&intf->dev, "skipping garbage\n"); | 615 | dev_err(&intf->dev, "skipping garbage\n"); |
616 | goto next_desc; | 616 | goto next_desc; |
@@ -646,16 +646,18 @@ next_desc: | |||
646 | spin_lock_init(&desc->iuspin); | 646 | spin_lock_init(&desc->iuspin); |
647 | init_waitqueue_head(&desc->wait); | 647 | init_waitqueue_head(&desc->wait); |
648 | desc->wMaxCommand = maxcom; | 648 | desc->wMaxCommand = maxcom; |
649 | /* this will be expanded and needed in hardware endianness */ | ||
649 | desc->inum = cpu_to_le16((u16)intf->cur_altsetting->desc.bInterfaceNumber); | 650 | desc->inum = cpu_to_le16((u16)intf->cur_altsetting->desc.bInterfaceNumber); |
650 | desc->intf = intf; | 651 | desc->intf = intf; |
651 | INIT_WORK(&desc->rxwork, wdm_rxwork); | 652 | INIT_WORK(&desc->rxwork, wdm_rxwork); |
652 | 653 | ||
653 | iface = &intf->altsetting[0]; | 654 | rv = -EINVAL; |
655 | iface = intf->cur_altsetting; | ||
656 | if (iface->desc.bNumEndpoints != 1) | ||
657 | goto err; | ||
654 | ep = &iface->endpoint[0].desc; | 658 | ep = &iface->endpoint[0].desc; |
655 | if (!ep || !usb_endpoint_is_int_in(ep)) { | 659 | if (!ep || !usb_endpoint_is_int_in(ep)) |
656 | rv = -EINVAL; | ||
657 | goto err; | 660 | goto err; |
658 | } | ||
659 | 661 | ||
660 | desc->wMaxPacketSize = le16_to_cpu(ep->wMaxPacketSize); | 662 | desc->wMaxPacketSize = le16_to_cpu(ep->wMaxPacketSize); |
661 | desc->bMaxPacketSize0 = udev->descriptor.bMaxPacketSize0; | 663 | desc->bMaxPacketSize0 = udev->descriptor.bMaxPacketSize0; |
@@ -711,12 +713,19 @@ next_desc: | |||
711 | 713 | ||
712 | usb_set_intfdata(intf, desc); | 714 | usb_set_intfdata(intf, desc); |
713 | rv = usb_register_dev(intf, &wdm_class); | 715 | rv = usb_register_dev(intf, &wdm_class); |
714 | dev_info(&intf->dev, "cdc-wdm%d: USB WDM device\n", | ||
715 | intf->minor - WDM_MINOR_BASE); | ||
716 | if (rv < 0) | 716 | if (rv < 0) |
717 | goto err; | 717 | goto err3; |
718 | else | ||
719 | dev_info(&intf->dev, "cdc-wdm%d: USB WDM device\n", | ||
720 | intf->minor - WDM_MINOR_BASE); | ||
718 | out: | 721 | out: |
719 | return rv; | 722 | return rv; |
723 | err3: | ||
724 | usb_set_intfdata(intf, NULL); | ||
725 | usb_buffer_free(interface_to_usbdev(desc->intf), | ||
726 | desc->bMaxPacketSize0, | ||
727 | desc->inbuf, | ||
728 | desc->response->transfer_dma); | ||
720 | err2: | 729 | err2: |
721 | usb_buffer_free(interface_to_usbdev(desc->intf), | 730 | usb_buffer_free(interface_to_usbdev(desc->intf), |
722 | desc->wMaxPacketSize, | 731 | desc->wMaxPacketSize, |
diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c index cadb2dc1d28a..3ba2fff71490 100644 --- a/drivers/usb/core/buffer.c +++ b/drivers/usb/core/buffer.c | |||
@@ -119,7 +119,7 @@ void *hcd_buffer_alloc( | |||
119 | if (size <= pool_max [i]) | 119 | if (size <= pool_max [i]) |
120 | return dma_pool_alloc(hcd->pool [i], mem_flags, dma); | 120 | return dma_pool_alloc(hcd->pool [i], mem_flags, dma); |
121 | } | 121 | } |
122 | return dma_alloc_coherent(hcd->self.controller, size, dma, 0); | 122 | return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); |
123 | } | 123 | } |
124 | 124 | ||
125 | void hcd_buffer_free( | 125 | void hcd_buffer_free( |
diff --git a/drivers/usb/gadget/ci13xxx_udc.c b/drivers/usb/gadget/ci13xxx_udc.c index 22c65960c429..38e531ecae4d 100644 --- a/drivers/usb/gadget/ci13xxx_udc.c +++ b/drivers/usb/gadget/ci13xxx_udc.c | |||
@@ -51,6 +51,7 @@ | |||
51 | * - Gadget API (majority of optional features) | 51 | * - Gadget API (majority of optional features) |
52 | * - Suspend & Remote Wakeup | 52 | * - Suspend & Remote Wakeup |
53 | */ | 53 | */ |
54 | #include <linux/delay.h> | ||
54 | #include <linux/device.h> | 55 | #include <linux/device.h> |
55 | #include <linux/dmapool.h> | 56 | #include <linux/dmapool.h> |
56 | #include <linux/dma-mapping.h> | 57 | #include <linux/dma-mapping.h> |
@@ -142,7 +143,7 @@ static struct { | |||
142 | #define CAP_DEVICEADDR (0x014UL) | 143 | #define CAP_DEVICEADDR (0x014UL) |
143 | #define CAP_ENDPTLISTADDR (0x018UL) | 144 | #define CAP_ENDPTLISTADDR (0x018UL) |
144 | #define CAP_PORTSC (0x044UL) | 145 | #define CAP_PORTSC (0x044UL) |
145 | #define CAP_DEVLC (0x0B4UL) | 146 | #define CAP_DEVLC (0x084UL) |
146 | #define CAP_USBMODE (hw_bank.lpm ? 0x0C8UL : 0x068UL) | 147 | #define CAP_USBMODE (hw_bank.lpm ? 0x0C8UL : 0x068UL) |
147 | #define CAP_ENDPTSETUPSTAT (hw_bank.lpm ? 0x0D8UL : 0x06CUL) | 148 | #define CAP_ENDPTSETUPSTAT (hw_bank.lpm ? 0x0D8UL : 0x06CUL) |
148 | #define CAP_ENDPTPRIME (hw_bank.lpm ? 0x0DCUL : 0x070UL) | 149 | #define CAP_ENDPTPRIME (hw_bank.lpm ? 0x0DCUL : 0x070UL) |
@@ -1986,6 +1987,8 @@ static int ep_enable(struct usb_ep *ep, | |||
1986 | do { | 1987 | do { |
1987 | dbg_event(_usb_addr(mEp), "ENABLE", 0); | 1988 | dbg_event(_usb_addr(mEp), "ENABLE", 0); |
1988 | 1989 | ||
1990 | mEp->qh[mEp->dir].ptr->cap = 0; | ||
1991 | |||
1989 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) | 1992 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) |
1990 | mEp->qh[mEp->dir].ptr->cap |= QH_IOS; | 1993 | mEp->qh[mEp->dir].ptr->cap |= QH_IOS; |
1991 | else if (mEp->type == USB_ENDPOINT_XFER_ISOC) | 1994 | else if (mEp->type == USB_ENDPOINT_XFER_ISOC) |
diff --git a/drivers/usb/gadget/file_storage.c b/drivers/usb/gadget/file_storage.c index 5c030b080d4c..381a53b3e11c 100644 --- a/drivers/usb/gadget/file_storage.c +++ b/drivers/usb/gadget/file_storage.c | |||
@@ -738,7 +738,6 @@ static struct fsg_dev *the_fsg; | |||
738 | static struct usb_gadget_driver fsg_driver; | 738 | static struct usb_gadget_driver fsg_driver; |
739 | 739 | ||
740 | static void close_backing_file(struct lun *curlun); | 740 | static void close_backing_file(struct lun *curlun); |
741 | static void close_all_backing_files(struct fsg_dev *fsg); | ||
742 | 741 | ||
743 | 742 | ||
744 | /*-------------------------------------------------------------------------*/ | 743 | /*-------------------------------------------------------------------------*/ |
@@ -3593,12 +3592,10 @@ static int fsg_main_thread(void *fsg_) | |||
3593 | fsg->thread_task = NULL; | 3592 | fsg->thread_task = NULL; |
3594 | spin_unlock_irq(&fsg->lock); | 3593 | spin_unlock_irq(&fsg->lock); |
3595 | 3594 | ||
3596 | /* In case we are exiting because of a signal, unregister the | 3595 | /* If we are exiting because of a signal, unregister the |
3597 | * gadget driver and close the backing file. */ | 3596 | * gadget driver. */ |
3598 | if (test_and_clear_bit(REGISTERED, &fsg->atomic_bitflags)) { | 3597 | if (test_and_clear_bit(REGISTERED, &fsg->atomic_bitflags)) |
3599 | usb_gadget_unregister_driver(&fsg_driver); | 3598 | usb_gadget_unregister_driver(&fsg_driver); |
3600 | close_all_backing_files(fsg); | ||
3601 | } | ||
3602 | 3599 | ||
3603 | /* Let the unbind and cleanup routines know the thread has exited */ | 3600 | /* Let the unbind and cleanup routines know the thread has exited */ |
3604 | complete_and_exit(&fsg->thread_notifier, 0); | 3601 | complete_and_exit(&fsg->thread_notifier, 0); |
@@ -3703,14 +3700,6 @@ static void close_backing_file(struct lun *curlun) | |||
3703 | } | 3700 | } |
3704 | } | 3701 | } |
3705 | 3702 | ||
3706 | static void close_all_backing_files(struct fsg_dev *fsg) | ||
3707 | { | ||
3708 | int i; | ||
3709 | |||
3710 | for (i = 0; i < fsg->nluns; ++i) | ||
3711 | close_backing_file(&fsg->luns[i]); | ||
3712 | } | ||
3713 | |||
3714 | 3703 | ||
3715 | static ssize_t show_ro(struct device *dev, struct device_attribute *attr, char *buf) | 3704 | static ssize_t show_ro(struct device *dev, struct device_attribute *attr, char *buf) |
3716 | { | 3705 | { |
@@ -3845,6 +3834,7 @@ static void /* __init_or_exit */ fsg_unbind(struct usb_gadget *gadget) | |||
3845 | if (curlun->registered) { | 3834 | if (curlun->registered) { |
3846 | device_remove_file(&curlun->dev, &dev_attr_ro); | 3835 | device_remove_file(&curlun->dev, &dev_attr_ro); |
3847 | device_remove_file(&curlun->dev, &dev_attr_file); | 3836 | device_remove_file(&curlun->dev, &dev_attr_file); |
3837 | close_backing_file(curlun); | ||
3848 | device_unregister(&curlun->dev); | 3838 | device_unregister(&curlun->dev); |
3849 | curlun->registered = 0; | 3839 | curlun->registered = 0; |
3850 | } | 3840 | } |
@@ -4190,7 +4180,6 @@ autoconf_fail: | |||
4190 | out: | 4180 | out: |
4191 | fsg->state = FSG_STATE_TERMINATED; // The thread is dead | 4181 | fsg->state = FSG_STATE_TERMINATED; // The thread is dead |
4192 | fsg_unbind(gadget); | 4182 | fsg_unbind(gadget); |
4193 | close_all_backing_files(fsg); | ||
4194 | complete(&fsg->thread_notifier); | 4183 | complete(&fsg->thread_notifier); |
4195 | return rc; | 4184 | return rc; |
4196 | } | 4185 | } |
@@ -4284,7 +4273,6 @@ static void __exit fsg_cleanup(void) | |||
4284 | /* Wait for the thread to finish up */ | 4273 | /* Wait for the thread to finish up */ |
4285 | wait_for_completion(&fsg->thread_notifier); | 4274 | wait_for_completion(&fsg->thread_notifier); |
4286 | 4275 | ||
4287 | close_all_backing_files(fsg); | ||
4288 | kref_put(&fsg->ref, fsg_release); | 4276 | kref_put(&fsg->ref, fsg_release); |
4289 | } | 4277 | } |
4290 | module_exit(fsg_cleanup); | 4278 | module_exit(fsg_cleanup); |
diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c index 57d9641c6bf8..a2db0e174f2c 100644 --- a/drivers/usb/gadget/omap_udc.c +++ b/drivers/usb/gadget/omap_udc.c | |||
@@ -3104,7 +3104,6 @@ static int omap_udc_resume(struct platform_device *dev) | |||
3104 | /*-------------------------------------------------------------------------*/ | 3104 | /*-------------------------------------------------------------------------*/ |
3105 | 3105 | ||
3106 | static struct platform_driver udc_driver = { | 3106 | static struct platform_driver udc_driver = { |
3107 | .probe = omap_udc_probe, | ||
3108 | .remove = __exit_p(omap_udc_remove), | 3107 | .remove = __exit_p(omap_udc_remove), |
3109 | .suspend = omap_udc_suspend, | 3108 | .suspend = omap_udc_suspend, |
3110 | .resume = omap_udc_resume, | 3109 | .resume = omap_udc_resume, |
@@ -3122,7 +3121,7 @@ static int __init udc_init(void) | |||
3122 | #endif | 3121 | #endif |
3123 | "%s\n", driver_desc, | 3122 | "%s\n", driver_desc, |
3124 | use_dma ? " (dma)" : ""); | 3123 | use_dma ? " (dma)" : ""); |
3125 | return platform_driver_register(&udc_driver); | 3124 | return platform_driver_probe(&udc_driver, omap_udc_probe); |
3126 | } | 3125 | } |
3127 | module_init(udc_init); | 3126 | module_init(udc_init); |
3128 | 3127 | ||
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index ada5d2ba297b..556d0ec0c1f8 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c | |||
@@ -323,7 +323,7 @@ static int tt_available ( | |||
323 | * already scheduled transactions | 323 | * already scheduled transactions |
324 | */ | 324 | */ |
325 | if (125 < usecs) { | 325 | if (125 < usecs) { |
326 | int ufs = (usecs / 125) - 1; | 326 | int ufs = (usecs / 125); |
327 | int i; | 327 | int i; |
328 | for (i = uframe; i < (uframe + ufs) && i < 8; i++) | 328 | for (i = uframe; i < (uframe + ufs) && i < 8; i++) |
329 | if (0 < tt_usecs[i]) { | 329 | if (0 < tt_usecs[i]) { |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 0112353ec97d..4000cf6d1e81 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
@@ -2191,7 +2191,7 @@ static int musb_resume_early(struct platform_device *pdev) | |||
2191 | 2191 | ||
2192 | #else | 2192 | #else |
2193 | #define musb_suspend NULL | 2193 | #define musb_suspend NULL |
2194 | #define musb_resume NULL | 2194 | #define musb_resume_early NULL |
2195 | #endif | 2195 | #endif |
2196 | 2196 | ||
2197 | static struct platform_driver musb_driver = { | 2197 | static struct platform_driver musb_driver = { |
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 901dffdf23b1..60924ce08493 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c | |||
@@ -3,7 +3,6 @@ | |||
3 | * Some code has been taken from tusb6010.c | 3 | * Some code has been taken from tusb6010.c |
4 | * Copyrights for that are attributable to: | 4 | * Copyrights for that are attributable to: |
5 | * Copyright (C) 2006 Nokia Corporation | 5 | * Copyright (C) 2006 Nokia Corporation |
6 | * Jarkko Nikula <jarkko.nikula@nokia.com> | ||
7 | * Tony Lindgren <tony@atomide.com> | 6 | * Tony Lindgren <tony@atomide.com> |
8 | * | 7 | * |
9 | * This file is part of the Inventra Controller Driver for Linux. | 8 | * This file is part of the Inventra Controller Driver for Linux. |
diff --git a/drivers/usb/musb/tusb6010.c b/drivers/usb/musb/tusb6010.c index 9e20fd070d71..4ac1477d3569 100644 --- a/drivers/usb/musb/tusb6010.c +++ b/drivers/usb/musb/tusb6010.c | |||
@@ -2,7 +2,6 @@ | |||
2 | * TUSB6010 USB 2.0 OTG Dual Role controller | 2 | * TUSB6010 USB 2.0 OTG Dual Role controller |
3 | * | 3 | * |
4 | * Copyright (C) 2006 Nokia Corporation | 4 | * Copyright (C) 2006 Nokia Corporation |
5 | * Jarkko Nikula <jarkko.nikula@nokia.com> | ||
6 | * Tony Lindgren <tony@atomide.com> | 5 | * Tony Lindgren <tony@atomide.com> |
7 | * | 6 | * |
8 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
diff --git a/drivers/usb/musb/tusb6010.h b/drivers/usb/musb/tusb6010.h index ab8c96286ce6..35c933a5d991 100644 --- a/drivers/usb/musb/tusb6010.h +++ b/drivers/usb/musb/tusb6010.h | |||
@@ -2,7 +2,6 @@ | |||
2 | * Definitions for TUSB6010 USB 2.0 OTG Dual Role controller | 2 | * Definitions for TUSB6010 USB 2.0 OTG Dual Role controller |
3 | * | 3 | * |
4 | * Copyright (C) 2006 Nokia Corporation | 4 | * Copyright (C) 2006 Nokia Corporation |
5 | * Jarkko Nikula <jarkko.nikula@nokia.com> | ||
6 | * Tony Lindgren <tony@atomide.com> | 5 | * Tony Lindgren <tony@atomide.com> |
7 | * | 6 | * |
8 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
diff --git a/drivers/usb/otg/otg.c b/drivers/usb/otg/otg.c index ff318fae7d4d..0a43a7db750f 100644 --- a/drivers/usb/otg/otg.c +++ b/drivers/usb/otg/otg.c | |||
@@ -43,7 +43,8 @@ EXPORT_SYMBOL(otg_get_transceiver); | |||
43 | */ | 43 | */ |
44 | void otg_put_transceiver(struct otg_transceiver *x) | 44 | void otg_put_transceiver(struct otg_transceiver *x) |
45 | { | 45 | { |
46 | put_device(x->dev); | 46 | if (x) |
47 | put_device(x->dev); | ||
47 | } | 48 | } |
48 | EXPORT_SYMBOL(otg_put_transceiver); | 49 | EXPORT_SYMBOL(otg_put_transceiver); |
49 | 50 | ||
diff --git a/drivers/usb/serial/cyberjack.c b/drivers/usb/serial/cyberjack.c index 858bdd038fbc..dd501bb63ed6 100644 --- a/drivers/usb/serial/cyberjack.c +++ b/drivers/usb/serial/cyberjack.c | |||
@@ -175,13 +175,6 @@ static int cyberjack_open(struct tty_struct *tty, | |||
175 | dbg("%s - usb_clear_halt", __func__); | 175 | dbg("%s - usb_clear_halt", __func__); |
176 | usb_clear_halt(port->serial->dev, port->write_urb->pipe); | 176 | usb_clear_halt(port->serial->dev, port->write_urb->pipe); |
177 | 177 | ||
178 | /* force low_latency on so that our tty_push actually forces | ||
179 | * the data through, otherwise it is scheduled, and with high | ||
180 | * data rates (like with OHCI) data can get lost. | ||
181 | */ | ||
182 | if (tty) | ||
183 | tty->low_latency = 1; | ||
184 | |||
185 | priv = usb_get_serial_port_data(port); | 178 | priv = usb_get_serial_port_data(port); |
186 | spin_lock_irqsave(&priv->lock, flags); | 179 | spin_lock_irqsave(&priv->lock, flags); |
187 | priv->rdtodo = 0; | 180 | priv->rdtodo = 0; |
diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index eae4740d448c..e568710b263f 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c | |||
@@ -656,10 +656,6 @@ static int cypress_open(struct tty_struct *tty, | |||
656 | priv->rx_flags = 0; | 656 | priv->rx_flags = 0; |
657 | spin_unlock_irqrestore(&priv->lock, flags); | 657 | spin_unlock_irqrestore(&priv->lock, flags); |
658 | 658 | ||
659 | /* setting to zero could cause data loss */ | ||
660 | if (tty) | ||
661 | tty->low_latency = 1; | ||
662 | |||
663 | /* raise both lines and set termios */ | 659 | /* raise both lines and set termios */ |
664 | spin_lock_irqsave(&priv->lock, flags); | 660 | spin_lock_irqsave(&priv->lock, flags); |
665 | priv->line_control = CONTROL_DTR | CONTROL_RTS; | 661 | priv->line_control = CONTROL_DTR | CONTROL_RTS; |
diff --git a/drivers/usb/serial/empeg.c b/drivers/usb/serial/empeg.c index 8a69cce40b6d..c709ec474a80 100644 --- a/drivers/usb/serial/empeg.c +++ b/drivers/usb/serial/empeg.c | |||
@@ -478,12 +478,6 @@ static void empeg_set_termios(struct tty_struct *tty, | |||
478 | termios->c_cflag | 478 | termios->c_cflag |
479 | |= CS8; /* character size 8 bits */ | 479 | |= CS8; /* character size 8 bits */ |
480 | 480 | ||
481 | /* | ||
482 | * Force low_latency on; otherwise the pushes are scheduled; | ||
483 | * this is bad as it opens up the possibility of dropping bytes | ||
484 | * on the floor. We don't want to drop bytes on the floor. :) | ||
485 | */ | ||
486 | tty->low_latency = 1; | ||
487 | tty_encode_baud_rate(tty, 115200, 115200); | 481 | tty_encode_baud_rate(tty, 115200, 115200); |
488 | } | 482 | } |
489 | 483 | ||
diff --git a/drivers/usb/serial/garmin_gps.c b/drivers/usb/serial/garmin_gps.c index a26a0e2cdb4a..586d30ff450b 100644 --- a/drivers/usb/serial/garmin_gps.c +++ b/drivers/usb/serial/garmin_gps.c | |||
@@ -973,14 +973,6 @@ static int garmin_open(struct tty_struct *tty, | |||
973 | 973 | ||
974 | dbg("%s - port %d", __func__, port->number); | 974 | dbg("%s - port %d", __func__, port->number); |
975 | 975 | ||
976 | /* | ||
977 | * Force low_latency on so that our tty_push actually forces the data | ||
978 | * through, otherwise it is scheduled, and with high data rates (like | ||
979 | * with OHCI) data can get lost. | ||
980 | */ | ||
981 | if (tty) | ||
982 | tty->low_latency = 1; | ||
983 | |||
984 | spin_lock_irqsave(&garmin_data_p->lock, flags); | 976 | spin_lock_irqsave(&garmin_data_p->lock, flags); |
985 | garmin_data_p->mode = initial_mode; | 977 | garmin_data_p->mode = initial_mode; |
986 | garmin_data_p->count = 0; | 978 | garmin_data_p->count = 0; |
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index 9d57cace3731..4cec9906ccf3 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
@@ -122,12 +122,6 @@ int usb_serial_generic_open(struct tty_struct *tty, | |||
122 | 122 | ||
123 | dbg("%s - port %d", __func__, port->number); | 123 | dbg("%s - port %d", __func__, port->number); |
124 | 124 | ||
125 | /* force low_latency on so that our tty_push actually forces the data | ||
126 | through, otherwise it is scheduled, and with high data rates (like | ||
127 | with OHCI) data can get lost. */ | ||
128 | if (tty) | ||
129 | tty->low_latency = 1; | ||
130 | |||
131 | /* clear the throttle flags */ | 125 | /* clear the throttle flags */ |
132 | spin_lock_irqsave(&port->lock, flags); | 126 | spin_lock_irqsave(&port->lock, flags); |
133 | port->throttled = 0; | 127 | port->throttled = 0; |
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index e85c8c0d1ad9..fb4a73d090f6 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c | |||
@@ -193,8 +193,6 @@ static const struct divisor_table_entry divisor_table[] = { | |||
193 | /* local variables */ | 193 | /* local variables */ |
194 | static int debug; | 194 | static int debug; |
195 | 195 | ||
196 | static int low_latency = 1; /* tty low latency flag, on by default */ | ||
197 | |||
198 | static atomic_t CmdUrbs; /* Number of outstanding Command Write Urbs */ | 196 | static atomic_t CmdUrbs; /* Number of outstanding Command Write Urbs */ |
199 | 197 | ||
200 | 198 | ||
@@ -867,9 +865,6 @@ static int edge_open(struct tty_struct *tty, | |||
867 | if (edge_port == NULL) | 865 | if (edge_port == NULL) |
868 | return -ENODEV; | 866 | return -ENODEV; |
869 | 867 | ||
870 | if (tty) | ||
871 | tty->low_latency = low_latency; | ||
872 | |||
873 | /* see if we've set up our endpoint info yet (can't set it up | 868 | /* see if we've set up our endpoint info yet (can't set it up |
874 | in edge_startup as the structures were not set up at that time.) */ | 869 | in edge_startup as the structures were not set up at that time.) */ |
875 | serial = port->serial; | 870 | serial = port->serial; |
@@ -3299,6 +3294,3 @@ MODULE_FIRMWARE("edgeport/down2.fw"); | |||
3299 | 3294 | ||
3300 | module_param(debug, bool, S_IRUGO | S_IWUSR); | 3295 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
3301 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | 3296 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
3302 | |||
3303 | module_param(low_latency, bool, S_IRUGO | S_IWUSR); | ||
3304 | MODULE_PARM_DESC(low_latency, "Low latency enabled or not"); | ||
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index c3cdd00ddc41..513b25e044c1 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c | |||
@@ -76,7 +76,6 @@ struct edgeport_uart_buf_desc { | |||
76 | #define EDGE_READ_URB_STOPPING 1 | 76 | #define EDGE_READ_URB_STOPPING 1 |
77 | #define EDGE_READ_URB_STOPPED 2 | 77 | #define EDGE_READ_URB_STOPPED 2 |
78 | 78 | ||
79 | #define EDGE_LOW_LATENCY 1 | ||
80 | #define EDGE_CLOSING_WAIT 4000 /* in .01 sec */ | 79 | #define EDGE_CLOSING_WAIT 4000 /* in .01 sec */ |
81 | 80 | ||
82 | #define EDGE_OUT_BUF_SIZE 1024 | 81 | #define EDGE_OUT_BUF_SIZE 1024 |
@@ -232,7 +231,6 @@ static unsigned short OperationalBuildNumber; | |||
232 | 231 | ||
233 | static int debug; | 232 | static int debug; |
234 | 233 | ||
235 | static int low_latency = EDGE_LOW_LATENCY; | ||
236 | static int closing_wait = EDGE_CLOSING_WAIT; | 234 | static int closing_wait = EDGE_CLOSING_WAIT; |
237 | static int ignore_cpu_rev; | 235 | static int ignore_cpu_rev; |
238 | static int default_uart_mode; /* RS232 */ | 236 | static int default_uart_mode; /* RS232 */ |
@@ -1850,9 +1848,6 @@ static int edge_open(struct tty_struct *tty, | |||
1850 | if (edge_port == NULL) | 1848 | if (edge_port == NULL) |
1851 | return -ENODEV; | 1849 | return -ENODEV; |
1852 | 1850 | ||
1853 | if (tty) | ||
1854 | tty->low_latency = low_latency; | ||
1855 | |||
1856 | port_number = port->number - port->serial->minor; | 1851 | port_number = port->number - port->serial->minor; |
1857 | switch (port_number) { | 1852 | switch (port_number) { |
1858 | case 0: | 1853 | case 0: |
@@ -3008,9 +3003,6 @@ MODULE_FIRMWARE("edgeport/down3.bin"); | |||
3008 | module_param(debug, bool, S_IRUGO | S_IWUSR); | 3003 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
3009 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | 3004 | MODULE_PARM_DESC(debug, "Debug enabled or not"); |
3010 | 3005 | ||
3011 | module_param(low_latency, bool, S_IRUGO | S_IWUSR); | ||
3012 | MODULE_PARM_DESC(low_latency, "Low latency enabled or not"); | ||
3013 | |||
3014 | module_param(closing_wait, int, S_IRUGO | S_IWUSR); | 3006 | module_param(closing_wait, int, S_IRUGO | S_IWUSR); |
3015 | MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs"); | 3007 | MODULE_PARM_DESC(closing_wait, "Maximum wait for data to drain, in .01 secs"); |
3016 | 3008 | ||
diff --git a/drivers/usb/serial/ipaq.c b/drivers/usb/serial/ipaq.c index ef92095b0732..cd62825a9ac3 100644 --- a/drivers/usb/serial/ipaq.c +++ b/drivers/usb/serial/ipaq.c | |||
@@ -631,13 +631,7 @@ static int ipaq_open(struct tty_struct *tty, | |||
631 | priv->free_len += PACKET_SIZE; | 631 | priv->free_len += PACKET_SIZE; |
632 | } | 632 | } |
633 | 633 | ||
634 | /* | ||
635 | * Force low latency on. This will immediately push data to the line | ||
636 | * discipline instead of queueing. | ||
637 | */ | ||
638 | |||
639 | if (tty) { | 634 | if (tty) { |
640 | tty->low_latency = 1; | ||
641 | /* FIXME: These two are bogus */ | 635 | /* FIXME: These two are bogus */ |
642 | tty->raw = 1; | 636 | tty->raw = 1; |
643 | tty->real_raw = 1; | 637 | tty->real_raw = 1; |
diff --git a/drivers/usb/serial/ipw.c b/drivers/usb/serial/ipw.c index f530032ed93d..da2a2b46644a 100644 --- a/drivers/usb/serial/ipw.c +++ b/drivers/usb/serial/ipw.c | |||
@@ -207,9 +207,6 @@ static int ipw_open(struct tty_struct *tty, | |||
207 | if (!buf_flow_init) | 207 | if (!buf_flow_init) |
208 | return -ENOMEM; | 208 | return -ENOMEM; |
209 | 209 | ||
210 | if (tty) | ||
211 | tty->low_latency = 1; | ||
212 | |||
213 | /* --1: Tell the modem to initialize (we think) From sniffs this is | 210 | /* --1: Tell the modem to initialize (we think) From sniffs this is |
214 | * always the first thing that gets sent to the modem during | 211 | * always the first thing that gets sent to the modem during |
215 | * opening of the device */ | 212 | * opening of the device */ |
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c index 2314c6ae4fc2..4473d442b2aa 100644 --- a/drivers/usb/serial/iuu_phoenix.c +++ b/drivers/usb/serial/iuu_phoenix.c | |||
@@ -1051,7 +1051,6 @@ static int iuu_open(struct tty_struct *tty, | |||
1051 | tty->termios->c_oflag = 0; | 1051 | tty->termios->c_oflag = 0; |
1052 | tty->termios->c_iflag = 0; | 1052 | tty->termios->c_iflag = 0; |
1053 | priv->termios_initialized = 1; | 1053 | priv->termios_initialized = 1; |
1054 | tty->low_latency = 1; | ||
1055 | priv->poll = 0; | 1054 | priv->poll = 0; |
1056 | } | 1055 | } |
1057 | spin_unlock_irqrestore(&priv->lock, flags); | 1056 | spin_unlock_irqrestore(&priv->lock, flags); |
diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index 6286baad9392..c148544953b3 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c | |||
@@ -231,13 +231,7 @@ static int kobil_open(struct tty_struct *tty, | |||
231 | /* someone sets the dev to 0 if the close method has been called */ | 231 | /* someone sets the dev to 0 if the close method has been called */ |
232 | port->interrupt_in_urb->dev = port->serial->dev; | 232 | port->interrupt_in_urb->dev = port->serial->dev; |
233 | 233 | ||
234 | |||
235 | /* force low_latency on so that our tty_push actually forces | ||
236 | * the data through, otherwise it is scheduled, and with high | ||
237 | * data rates (like with OHCI) data can get lost. | ||
238 | */ | ||
239 | if (tty) { | 234 | if (tty) { |
240 | tty->low_latency = 1; | ||
241 | 235 | ||
242 | /* Default to echo off and other sane device settings */ | 236 | /* Default to echo off and other sane device settings */ |
243 | tty->termios->c_lflag = 0; | 237 | tty->termios->c_lflag = 0; |
diff --git a/drivers/usb/serial/mos7720.c b/drivers/usb/serial/mos7720.c index e772cc0a97fd..24e3b5d4b4d4 100644 --- a/drivers/usb/serial/mos7720.c +++ b/drivers/usb/serial/mos7720.c | |||
@@ -446,13 +446,6 @@ static int mos7720_open(struct tty_struct *tty, | |||
446 | data = 0x0c; | 446 | data = 0x0c; |
447 | send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data); | 447 | send_mos_cmd(serial, MOS_WRITE, port_number, 0x01, &data); |
448 | 448 | ||
449 | /* force low_latency on so that our tty_push actually forces * | ||
450 | * the data through,otherwise it is scheduled, and with * | ||
451 | * high data rates (like with OHCI) data can get lost. */ | ||
452 | |||
453 | if (tty) | ||
454 | tty->low_latency = 1; | ||
455 | |||
456 | /* see if we've set up our endpoint info yet * | 449 | /* see if we've set up our endpoint info yet * |
457 | * (can't set it up in mos7720_startup as the * | 450 | * (can't set it up in mos7720_startup as the * |
458 | * structures were not set up at that time.) */ | 451 | * structures were not set up at that time.) */ |
diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index 2c20e88a91b3..84fb1dcd30dc 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c | |||
@@ -38,7 +38,7 @@ | |||
38 | /* | 38 | /* |
39 | * Version Information | 39 | * Version Information |
40 | */ | 40 | */ |
41 | #define DRIVER_VERSION "1.3.1" | 41 | #define DRIVER_VERSION "1.3.2" |
42 | #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver" | 42 | #define DRIVER_DESC "Moschip 7840/7820 USB Serial Driver" |
43 | 43 | ||
44 | /* | 44 | /* |
@@ -123,6 +123,11 @@ | |||
123 | #define BANDB_DEVICE_ID_USOPTL4_4 0xAC44 | 123 | #define BANDB_DEVICE_ID_USOPTL4_4 0xAC44 |
124 | #define BANDB_DEVICE_ID_USOPTL4_2 0xAC42 | 124 | #define BANDB_DEVICE_ID_USOPTL4_2 0xAC42 |
125 | 125 | ||
126 | /* This driver also supports the ATEN UC2324 device since it is mos7840 based | ||
127 | * - if I knew the device id it would also support the ATEN UC2322 */ | ||
128 | #define USB_VENDOR_ID_ATENINTL 0x0557 | ||
129 | #define ATENINTL_DEVICE_ID_UC2324 0x2011 | ||
130 | |||
126 | /* Interrupt Routine Defines */ | 131 | /* Interrupt Routine Defines */ |
127 | 132 | ||
128 | #define SERIAL_IIR_RLS 0x06 | 133 | #define SERIAL_IIR_RLS 0x06 |
@@ -170,6 +175,7 @@ static struct usb_device_id moschip_port_id_table[] = { | |||
170 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)}, | 175 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)}, |
171 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)}, | 176 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)}, |
172 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)}, | 177 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)}, |
178 | {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)}, | ||
173 | {} /* terminating entry */ | 179 | {} /* terminating entry */ |
174 | }; | 180 | }; |
175 | 181 | ||
@@ -178,6 +184,7 @@ static __devinitdata struct usb_device_id moschip_id_table_combined[] = { | |||
178 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)}, | 184 | {USB_DEVICE(USB_VENDOR_ID_MOSCHIP, MOSCHIP_DEVICE_ID_7820)}, |
179 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)}, | 185 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_4)}, |
180 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)}, | 186 | {USB_DEVICE(USB_VENDOR_ID_BANDB, BANDB_DEVICE_ID_USOPTL4_2)}, |
187 | {USB_DEVICE(USB_VENDOR_ID_ATENINTL, ATENINTL_DEVICE_ID_UC2324)}, | ||
181 | {} /* terminating entry */ | 188 | {} /* terminating entry */ |
182 | }; | 189 | }; |
183 | 190 | ||
@@ -1000,12 +1007,6 @@ static int mos7840_open(struct tty_struct *tty, | |||
1000 | status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset, | 1007 | status = mos7840_set_reg_sync(port, mos7840_port->ControlRegOffset, |
1001 | Data); | 1008 | Data); |
1002 | 1009 | ||
1003 | /* force low_latency on so that our tty_push actually forces * | ||
1004 | * the data through,otherwise it is scheduled, and with * | ||
1005 | * high data rates (like with OHCI) data can get lost. */ | ||
1006 | if (tty) | ||
1007 | tty->low_latency = 1; | ||
1008 | |||
1009 | /* Check to see if we've set up our endpoint info yet * | 1010 | /* Check to see if we've set up our endpoint info yet * |
1010 | * (can't set it up in mos7840_startup as the structures * | 1011 | * (can't set it up in mos7840_startup as the structures * |
1011 | * were not set up at that time.) */ | 1012 | * were not set up at that time.) */ |
@@ -2477,9 +2478,14 @@ static int mos7840_startup(struct usb_serial *serial) | |||
2477 | mos7840_set_port_private(serial->port[i], mos7840_port); | 2478 | mos7840_set_port_private(serial->port[i], mos7840_port); |
2478 | spin_lock_init(&mos7840_port->pool_lock); | 2479 | spin_lock_init(&mos7840_port->pool_lock); |
2479 | 2480 | ||
2480 | mos7840_port->port_num = ((serial->port[i]->number - | 2481 | /* minor is not initialised until later by |
2481 | (serial->port[i]->serial->minor)) + | 2482 | * usb-serial.c:get_free_serial() and cannot therefore be used |
2482 | 1); | 2483 | * to index device instances */ |
2484 | mos7840_port->port_num = i + 1; | ||
2485 | dbg ("serial->port[i]->number = %d", serial->port[i]->number); | ||
2486 | dbg ("serial->port[i]->serial->minor = %d", serial->port[i]->serial->minor); | ||
2487 | dbg ("mos7840_port->port_num = %d", mos7840_port->port_num); | ||
2488 | dbg ("serial->minor = %d", serial->minor); | ||
2483 | 2489 | ||
2484 | if (mos7840_port->port_num == 1) { | 2490 | if (mos7840_port->port_num == 1) { |
2485 | mos7840_port->SpRegOffset = 0x0; | 2491 | mos7840_port->SpRegOffset = 0x0; |
@@ -2690,13 +2696,16 @@ static void mos7840_shutdown(struct usb_serial *serial) | |||
2690 | 2696 | ||
2691 | for (i = 0; i < serial->num_ports; ++i) { | 2697 | for (i = 0; i < serial->num_ports; ++i) { |
2692 | mos7840_port = mos7840_get_port_private(serial->port[i]); | 2698 | mos7840_port = mos7840_get_port_private(serial->port[i]); |
2693 | spin_lock_irqsave(&mos7840_port->pool_lock, flags); | 2699 | dbg ("mos7840_port %d = %p", i, mos7840_port); |
2694 | mos7840_port->zombie = 1; | 2700 | if (mos7840_port) { |
2695 | spin_unlock_irqrestore(&mos7840_port->pool_lock, flags); | 2701 | spin_lock_irqsave(&mos7840_port->pool_lock, flags); |
2696 | usb_kill_urb(mos7840_port->control_urb); | 2702 | mos7840_port->zombie = 1; |
2697 | kfree(mos7840_port->ctrl_buf); | 2703 | spin_unlock_irqrestore(&mos7840_port->pool_lock, flags); |
2698 | kfree(mos7840_port->dr); | 2704 | usb_kill_urb(mos7840_port->control_urb); |
2699 | kfree(mos7840_port); | 2705 | kfree(mos7840_port->ctrl_buf); |
2706 | kfree(mos7840_port->dr); | ||
2707 | kfree(mos7840_port); | ||
2708 | } | ||
2700 | mos7840_set_port_private(serial->port[i], NULL); | 2709 | mos7840_set_port_private(serial->port[i], NULL); |
2701 | } | 2710 | } |
2702 | 2711 | ||
diff --git a/drivers/usb/serial/opticon.c b/drivers/usb/serial/opticon.c index 839583dc8b6a..b500ad10b758 100644 --- a/drivers/usb/serial/opticon.c +++ b/drivers/usb/serial/opticon.c | |||
@@ -159,14 +159,6 @@ static int opticon_open(struct tty_struct *tty, struct usb_serial_port *port, | |||
159 | priv->port = port; | 159 | priv->port = port; |
160 | spin_unlock_irqrestore(&priv->lock, flags); | 160 | spin_unlock_irqrestore(&priv->lock, flags); |
161 | 161 | ||
162 | /* | ||
163 | * Force low_latency on so that our tty_push actually forces the data | ||
164 | * through, otherwise it is scheduled, and with high data rates (like | ||
165 | * with OHCI) data can get lost. | ||
166 | */ | ||
167 | if (tty) | ||
168 | tty->low_latency = 1; | ||
169 | |||
170 | /* Start reading from the device */ | 162 | /* Start reading from the device */ |
171 | usb_fill_bulk_urb(priv->bulk_read_urb, priv->udev, | 163 | usb_fill_bulk_urb(priv->bulk_read_urb, priv->udev, |
172 | usb_rcvbulkpipe(priv->udev, | 164 | usb_rcvbulkpipe(priv->udev, |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 47bd070f24b7..7817b82889ca 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
@@ -936,9 +936,6 @@ static int option_open(struct tty_struct *tty, | |||
936 | usb_pipeout(urb->pipe), 0); */ | 936 | usb_pipeout(urb->pipe), 0); */ |
937 | } | 937 | } |
938 | 938 | ||
939 | if (tty) | ||
940 | tty->low_latency = 1; | ||
941 | |||
942 | option_send_setup(tty, port); | 939 | option_send_setup(tty, port); |
943 | 940 | ||
944 | return 0; | 941 | return 0; |
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index d9bf9a5c20ec..913225c61610 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -14,7 +14,7 @@ | |||
14 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> | 14 | Whom based his on the Keyspan driver by Hugh Blemings <hugh@blemings.org> |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #define DRIVER_VERSION "v.1.3.2" | 17 | #define DRIVER_VERSION "v.1.3.3" |
18 | #define DRIVER_AUTHOR "Kevin Lloyd <klloyd@sierrawireless.com>" | 18 | #define DRIVER_AUTHOR "Kevin Lloyd <klloyd@sierrawireless.com>" |
19 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" | 19 | #define DRIVER_DESC "USB Driver for Sierra Wireless USB modems" |
20 | 20 | ||
@@ -259,9 +259,21 @@ static int sierra_send_setup(struct tty_struct *tty, | |||
259 | val |= 0x02; | 259 | val |= 0x02; |
260 | 260 | ||
261 | /* If composite device then properly report interface */ | 261 | /* If composite device then properly report interface */ |
262 | if (serial->num_ports == 1) | 262 | if (serial->num_ports == 1) { |
263 | interface = sierra_calc_interface(serial); | 263 | interface = sierra_calc_interface(serial); |
264 | 264 | ||
265 | /* Control message is sent only to interfaces with | ||
266 | * interrupt_in endpoints | ||
267 | */ | ||
268 | if (port->interrupt_in_urb) { | ||
269 | /* send control message */ | ||
270 | return usb_control_msg(serial->dev, | ||
271 | usb_rcvctrlpipe(serial->dev, 0), | ||
272 | 0x22, 0x21, val, interface, | ||
273 | NULL, 0, USB_CTRL_SET_TIMEOUT); | ||
274 | } | ||
275 | } | ||
276 | |||
265 | /* Otherwise the need to do non-composite mapping */ | 277 | /* Otherwise the need to do non-composite mapping */ |
266 | else { | 278 | else { |
267 | if (port->bulk_out_endpointAddress == 2) | 279 | if (port->bulk_out_endpointAddress == 2) |
@@ -270,12 +282,13 @@ static int sierra_send_setup(struct tty_struct *tty, | |||
270 | interface = 1; | 282 | interface = 1; |
271 | else if (port->bulk_out_endpointAddress == 5) | 283 | else if (port->bulk_out_endpointAddress == 5) |
272 | interface = 2; | 284 | interface = 2; |
273 | } | ||
274 | 285 | ||
275 | return usb_control_msg(serial->dev, | 286 | return usb_control_msg(serial->dev, |
276 | usb_rcvctrlpipe(serial->dev, 0), | 287 | usb_rcvctrlpipe(serial->dev, 0), |
277 | 0x22, 0x21, val, interface, | 288 | 0x22, 0x21, val, interface, |
278 | NULL, 0, USB_CTRL_SET_TIMEOUT); | 289 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
290 | |||
291 | } | ||
279 | } | 292 | } |
280 | 293 | ||
281 | return 0; | 294 | return 0; |
@@ -585,9 +598,6 @@ static int sierra_open(struct tty_struct *tty, | |||
585 | } | 598 | } |
586 | } | 599 | } |
587 | 600 | ||
588 | if (tty) | ||
589 | tty->low_latency = 1; | ||
590 | |||
591 | sierra_send_setup(tty, port); | 601 | sierra_send_setup(tty, port); |
592 | 602 | ||
593 | /* start up the interrupt endpoint if we have one */ | 603 | /* start up the interrupt endpoint if we have one */ |
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index 9c4c700c7cc6..0a64bac306ee 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c | |||
@@ -50,11 +50,10 @@ | |||
50 | 50 | ||
51 | #define TI_TRANSFER_TIMEOUT 2 | 51 | #define TI_TRANSFER_TIMEOUT 2 |
52 | 52 | ||
53 | #define TI_DEFAULT_LOW_LATENCY 0 | ||
54 | #define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */ | 53 | #define TI_DEFAULT_CLOSING_WAIT 4000 /* in .01 secs */ |
55 | 54 | ||
56 | /* supported setserial flags */ | 55 | /* supported setserial flags */ |
57 | #define TI_SET_SERIAL_FLAGS (ASYNC_LOW_LATENCY) | 56 | #define TI_SET_SERIAL_FLAGS 0 |
58 | 57 | ||
59 | /* read urb states */ | 58 | /* read urb states */ |
60 | #define TI_READ_URB_RUNNING 0 | 59 | #define TI_READ_URB_RUNNING 0 |
@@ -161,7 +160,6 @@ static int ti_buf_get(struct circ_buf *cb, char *buf, int count); | |||
161 | 160 | ||
162 | /* module parameters */ | 161 | /* module parameters */ |
163 | static int debug; | 162 | static int debug; |
164 | static int low_latency = TI_DEFAULT_LOW_LATENCY; | ||
165 | static int closing_wait = TI_DEFAULT_CLOSING_WAIT; | 163 | static int closing_wait = TI_DEFAULT_CLOSING_WAIT; |
166 | static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT]; | 164 | static ushort vendor_3410[TI_EXTRA_VID_PID_COUNT]; |
167 | static unsigned int vendor_3410_count; | 165 | static unsigned int vendor_3410_count; |
@@ -296,10 +294,6 @@ MODULE_FIRMWARE("mts_edge.fw"); | |||
296 | module_param(debug, bool, S_IRUGO | S_IWUSR); | 294 | module_param(debug, bool, S_IRUGO | S_IWUSR); |
297 | MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes"); | 295 | MODULE_PARM_DESC(debug, "Enable debugging, 0=no, 1=yes"); |
298 | 296 | ||
299 | module_param(low_latency, bool, S_IRUGO | S_IWUSR); | ||
300 | MODULE_PARM_DESC(low_latency, | ||
301 | "TTY low_latency flag, 0=off, 1=on, default is off"); | ||
302 | |||
303 | module_param(closing_wait, int, S_IRUGO | S_IWUSR); | 297 | module_param(closing_wait, int, S_IRUGO | S_IWUSR); |
304 | MODULE_PARM_DESC(closing_wait, | 298 | MODULE_PARM_DESC(closing_wait, |
305 | "Maximum wait for data to drain in close, in .01 secs, default is 4000"); | 299 | "Maximum wait for data to drain in close, in .01 secs, default is 4000"); |
@@ -448,7 +442,6 @@ static int ti_startup(struct usb_serial *serial) | |||
448 | spin_lock_init(&tport->tp_lock); | 442 | spin_lock_init(&tport->tp_lock); |
449 | tport->tp_uart_base_addr = (i == 0 ? | 443 | tport->tp_uart_base_addr = (i == 0 ? |
450 | TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR); | 444 | TI_UART1_BASE_ADDR : TI_UART2_BASE_ADDR); |
451 | tport->tp_flags = low_latency ? ASYNC_LOW_LATENCY : 0; | ||
452 | tport->tp_closing_wait = closing_wait; | 445 | tport->tp_closing_wait = closing_wait; |
453 | init_waitqueue_head(&tport->tp_msr_wait); | 446 | init_waitqueue_head(&tport->tp_msr_wait); |
454 | init_waitqueue_head(&tport->tp_write_wait); | 447 | init_waitqueue_head(&tport->tp_write_wait); |
@@ -528,10 +521,6 @@ static int ti_open(struct tty_struct *tty, | |||
528 | if (mutex_lock_interruptible(&tdev->td_open_close_lock)) | 521 | if (mutex_lock_interruptible(&tdev->td_open_close_lock)) |
529 | return -ERESTARTSYS; | 522 | return -ERESTARTSYS; |
530 | 523 | ||
531 | if (tty) | ||
532 | tty->low_latency = | ||
533 | (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0; | ||
534 | |||
535 | port_number = port->number - port->serial->minor; | 524 | port_number = port->number - port->serial->minor; |
536 | 525 | ||
537 | memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount)); | 526 | memset(&(tport->tp_icount), 0x00, sizeof(tport->tp_icount)); |
@@ -1454,7 +1443,6 @@ static int ti_set_serial_info(struct tty_struct *tty, struct ti_port *tport, | |||
1454 | return -EFAULT; | 1443 | return -EFAULT; |
1455 | 1444 | ||
1456 | tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS; | 1445 | tport->tp_flags = new_serial.flags & TI_SET_SERIAL_FLAGS; |
1457 | tty->low_latency = (tport->tp_flags & ASYNC_LOW_LATENCY) ? 1 : 0; | ||
1458 | tport->tp_closing_wait = new_serial.closing_wait; | 1446 | tport->tp_closing_wait = new_serial.closing_wait; |
1459 | 1447 | ||
1460 | return 0; | 1448 | return 0; |
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index 2a70563bbee1..0a566eea49c0 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c | |||
@@ -137,22 +137,10 @@ static void destroy_serial(struct kref *kref) | |||
137 | 137 | ||
138 | dbg("%s - %s", __func__, serial->type->description); | 138 | dbg("%s - %s", __func__, serial->type->description); |
139 | 139 | ||
140 | serial->type->shutdown(serial); | ||
141 | |||
142 | /* return the minor range that this device had */ | 140 | /* return the minor range that this device had */ |
143 | if (serial->minor != SERIAL_TTY_NO_MINOR) | 141 | if (serial->minor != SERIAL_TTY_NO_MINOR) |
144 | return_serial(serial); | 142 | return_serial(serial); |
145 | 143 | ||
146 | for (i = 0; i < serial->num_ports; ++i) | ||
147 | serial->port[i]->port.count = 0; | ||
148 | |||
149 | /* the ports are cleaned up and released in port_release() */ | ||
150 | for (i = 0; i < serial->num_ports; ++i) | ||
151 | if (serial->port[i]->dev.parent != NULL) { | ||
152 | device_unregister(&serial->port[i]->dev); | ||
153 | serial->port[i] = NULL; | ||
154 | } | ||
155 | |||
156 | /* If this is a "fake" port, we have to clean it up here, as it will | 144 | /* If this is a "fake" port, we have to clean it up here, as it will |
157 | * not get cleaned up in port_release() as it was never registered with | 145 | * not get cleaned up in port_release() as it was never registered with |
158 | * the driver core */ | 146 | * the driver core */ |
@@ -187,7 +175,7 @@ static int serial_open (struct tty_struct *tty, struct file *filp) | |||
187 | struct usb_serial *serial; | 175 | struct usb_serial *serial; |
188 | struct usb_serial_port *port; | 176 | struct usb_serial_port *port; |
189 | unsigned int portNumber; | 177 | unsigned int portNumber; |
190 | int retval; | 178 | int retval = 0; |
191 | 179 | ||
192 | dbg("%s", __func__); | 180 | dbg("%s", __func__); |
193 | 181 | ||
@@ -198,21 +186,24 @@ static int serial_open (struct tty_struct *tty, struct file *filp) | |||
198 | return -ENODEV; | 186 | return -ENODEV; |
199 | } | 187 | } |
200 | 188 | ||
189 | mutex_lock(&serial->disc_mutex); | ||
201 | portNumber = tty->index - serial->minor; | 190 | portNumber = tty->index - serial->minor; |
202 | port = serial->port[portNumber]; | 191 | port = serial->port[portNumber]; |
203 | if (!port) { | 192 | if (!port || serial->disconnected) |
204 | retval = -ENODEV; | ||
205 | goto bailout_kref_put; | ||
206 | } | ||
207 | |||
208 | if (port->serial->disconnected) { | ||
209 | retval = -ENODEV; | 193 | retval = -ENODEV; |
210 | goto bailout_kref_put; | 194 | else |
211 | } | 195 | get_device(&port->dev); |
196 | /* | ||
197 | * Note: Our locking order requirement does not allow port->mutex | ||
198 | * to be acquired while serial->disc_mutex is held. | ||
199 | */ | ||
200 | mutex_unlock(&serial->disc_mutex); | ||
201 | if (retval) | ||
202 | goto bailout_serial_put; | ||
212 | 203 | ||
213 | if (mutex_lock_interruptible(&port->mutex)) { | 204 | if (mutex_lock_interruptible(&port->mutex)) { |
214 | retval = -ERESTARTSYS; | 205 | retval = -ERESTARTSYS; |
215 | goto bailout_kref_put; | 206 | goto bailout_port_put; |
216 | } | 207 | } |
217 | 208 | ||
218 | ++port->port.count; | 209 | ++port->port.count; |
@@ -232,14 +223,20 @@ static int serial_open (struct tty_struct *tty, struct file *filp) | |||
232 | goto bailout_mutex_unlock; | 223 | goto bailout_mutex_unlock; |
233 | } | 224 | } |
234 | 225 | ||
235 | retval = usb_autopm_get_interface(serial->interface); | 226 | mutex_lock(&serial->disc_mutex); |
227 | if (serial->disconnected) | ||
228 | retval = -ENODEV; | ||
229 | else | ||
230 | retval = usb_autopm_get_interface(serial->interface); | ||
236 | if (retval) | 231 | if (retval) |
237 | goto bailout_module_put; | 232 | goto bailout_module_put; |
233 | |||
238 | /* only call the device specific open if this | 234 | /* only call the device specific open if this |
239 | * is the first time the port is opened */ | 235 | * is the first time the port is opened */ |
240 | retval = serial->type->open(tty, port, filp); | 236 | retval = serial->type->open(tty, port, filp); |
241 | if (retval) | 237 | if (retval) |
242 | goto bailout_interface_put; | 238 | goto bailout_interface_put; |
239 | mutex_unlock(&serial->disc_mutex); | ||
243 | } | 240 | } |
244 | 241 | ||
245 | mutex_unlock(&port->mutex); | 242 | mutex_unlock(&port->mutex); |
@@ -248,13 +245,16 @@ static int serial_open (struct tty_struct *tty, struct file *filp) | |||
248 | bailout_interface_put: | 245 | bailout_interface_put: |
249 | usb_autopm_put_interface(serial->interface); | 246 | usb_autopm_put_interface(serial->interface); |
250 | bailout_module_put: | 247 | bailout_module_put: |
248 | mutex_unlock(&serial->disc_mutex); | ||
251 | module_put(serial->type->driver.owner); | 249 | module_put(serial->type->driver.owner); |
252 | bailout_mutex_unlock: | 250 | bailout_mutex_unlock: |
253 | port->port.count = 0; | 251 | port->port.count = 0; |
254 | tty->driver_data = NULL; | 252 | tty->driver_data = NULL; |
255 | tty_port_tty_set(&port->port, NULL); | 253 | tty_port_tty_set(&port->port, NULL); |
256 | mutex_unlock(&port->mutex); | 254 | mutex_unlock(&port->mutex); |
257 | bailout_kref_put: | 255 | bailout_port_put: |
256 | put_device(&port->dev); | ||
257 | bailout_serial_put: | ||
258 | usb_serial_put(serial); | 258 | usb_serial_put(serial); |
259 | return retval; | 259 | return retval; |
260 | } | 260 | } |
@@ -262,6 +262,9 @@ bailout_kref_put: | |||
262 | static void serial_close(struct tty_struct *tty, struct file *filp) | 262 | static void serial_close(struct tty_struct *tty, struct file *filp) |
263 | { | 263 | { |
264 | struct usb_serial_port *port = tty->driver_data; | 264 | struct usb_serial_port *port = tty->driver_data; |
265 | struct usb_serial *serial; | ||
266 | struct module *owner; | ||
267 | int count; | ||
265 | 268 | ||
266 | if (!port) | 269 | if (!port) |
267 | return; | 270 | return; |
@@ -269,6 +272,8 @@ static void serial_close(struct tty_struct *tty, struct file *filp) | |||
269 | dbg("%s - port %d", __func__, port->number); | 272 | dbg("%s - port %d", __func__, port->number); |
270 | 273 | ||
271 | mutex_lock(&port->mutex); | 274 | mutex_lock(&port->mutex); |
275 | serial = port->serial; | ||
276 | owner = serial->type->driver.owner; | ||
272 | 277 | ||
273 | if (port->port.count == 0) { | 278 | if (port->port.count == 0) { |
274 | mutex_unlock(&port->mutex); | 279 | mutex_unlock(&port->mutex); |
@@ -281,7 +286,7 @@ static void serial_close(struct tty_struct *tty, struct file *filp) | |||
281 | * this before we drop the port count. The call is protected | 286 | * this before we drop the port count. The call is protected |
282 | * by the port mutex | 287 | * by the port mutex |
283 | */ | 288 | */ |
284 | port->serial->type->close(tty, port, filp); | 289 | serial->type->close(tty, port, filp); |
285 | 290 | ||
286 | if (port->port.count == (port->console ? 2 : 1)) { | 291 | if (port->port.count == (port->console ? 2 : 1)) { |
287 | struct tty_struct *tty = tty_port_tty_get(&port->port); | 292 | struct tty_struct *tty = tty_port_tty_get(&port->port); |
@@ -295,17 +300,23 @@ static void serial_close(struct tty_struct *tty, struct file *filp) | |||
295 | } | 300 | } |
296 | } | 301 | } |
297 | 302 | ||
298 | if (port->port.count == 1) { | ||
299 | mutex_lock(&port->serial->disc_mutex); | ||
300 | if (!port->serial->disconnected) | ||
301 | usb_autopm_put_interface(port->serial->interface); | ||
302 | mutex_unlock(&port->serial->disc_mutex); | ||
303 | module_put(port->serial->type->driver.owner); | ||
304 | } | ||
305 | --port->port.count; | 303 | --port->port.count; |
306 | 304 | count = port->port.count; | |
307 | mutex_unlock(&port->mutex); | 305 | mutex_unlock(&port->mutex); |
308 | usb_serial_put(port->serial); | 306 | put_device(&port->dev); |
307 | |||
308 | /* Mustn't dereference port any more */ | ||
309 | if (count == 0) { | ||
310 | mutex_lock(&serial->disc_mutex); | ||
311 | if (!serial->disconnected) | ||
312 | usb_autopm_put_interface(serial->interface); | ||
313 | mutex_unlock(&serial->disc_mutex); | ||
314 | } | ||
315 | usb_serial_put(serial); | ||
316 | |||
317 | /* Mustn't dereference serial any more */ | ||
318 | if (count == 0) | ||
319 | module_put(owner); | ||
309 | } | 320 | } |
310 | 321 | ||
311 | static int serial_write(struct tty_struct *tty, const unsigned char *buf, | 322 | static int serial_write(struct tty_struct *tty, const unsigned char *buf, |
@@ -549,7 +560,13 @@ static void kill_traffic(struct usb_serial_port *port) | |||
549 | 560 | ||
550 | static void port_free(struct usb_serial_port *port) | 561 | static void port_free(struct usb_serial_port *port) |
551 | { | 562 | { |
563 | /* | ||
564 | * Stop all the traffic before cancelling the work, so that | ||
565 | * nobody will restart it by calling usb_serial_port_softint. | ||
566 | */ | ||
552 | kill_traffic(port); | 567 | kill_traffic(port); |
568 | cancel_work_sync(&port->work); | ||
569 | |||
553 | usb_free_urb(port->read_urb); | 570 | usb_free_urb(port->read_urb); |
554 | usb_free_urb(port->write_urb); | 571 | usb_free_urb(port->write_urb); |
555 | usb_free_urb(port->interrupt_in_urb); | 572 | usb_free_urb(port->interrupt_in_urb); |
@@ -558,7 +575,6 @@ static void port_free(struct usb_serial_port *port) | |||
558 | kfree(port->bulk_out_buffer); | 575 | kfree(port->bulk_out_buffer); |
559 | kfree(port->interrupt_in_buffer); | 576 | kfree(port->interrupt_in_buffer); |
560 | kfree(port->interrupt_out_buffer); | 577 | kfree(port->interrupt_out_buffer); |
561 | flush_scheduled_work(); /* port->work */ | ||
562 | kfree(port); | 578 | kfree(port); |
563 | } | 579 | } |
564 | 580 | ||
@@ -1043,6 +1059,12 @@ void usb_serial_disconnect(struct usb_interface *interface) | |||
1043 | usb_set_intfdata(interface, NULL); | 1059 | usb_set_intfdata(interface, NULL); |
1044 | /* must set a flag, to signal subdrivers */ | 1060 | /* must set a flag, to signal subdrivers */ |
1045 | serial->disconnected = 1; | 1061 | serial->disconnected = 1; |
1062 | mutex_unlock(&serial->disc_mutex); | ||
1063 | |||
1064 | /* Unfortunately, many of the sub-drivers expect the port structures | ||
1065 | * to exist when their shutdown method is called, so we have to go | ||
1066 | * through this awkward two-step unregistration procedure. | ||
1067 | */ | ||
1046 | for (i = 0; i < serial->num_ports; ++i) { | 1068 | for (i = 0; i < serial->num_ports; ++i) { |
1047 | port = serial->port[i]; | 1069 | port = serial->port[i]; |
1048 | if (port) { | 1070 | if (port) { |
@@ -1052,11 +1074,21 @@ void usb_serial_disconnect(struct usb_interface *interface) | |||
1052 | tty_kref_put(tty); | 1074 | tty_kref_put(tty); |
1053 | } | 1075 | } |
1054 | kill_traffic(port); | 1076 | kill_traffic(port); |
1077 | cancel_work_sync(&port->work); | ||
1078 | device_del(&port->dev); | ||
1079 | } | ||
1080 | } | ||
1081 | serial->type->shutdown(serial); | ||
1082 | for (i = 0; i < serial->num_ports; ++i) { | ||
1083 | port = serial->port[i]; | ||
1084 | if (port) { | ||
1085 | put_device(&port->dev); | ||
1086 | serial->port[i] = NULL; | ||
1055 | } | 1087 | } |
1056 | } | 1088 | } |
1089 | |||
1057 | /* let the last holder of this object | 1090 | /* let the last holder of this object |
1058 | * cause it to be cleaned up */ | 1091 | * cause it to be cleaned up */ |
1059 | mutex_unlock(&serial->disc_mutex); | ||
1060 | usb_serial_put(serial); | 1092 | usb_serial_put(serial); |
1061 | dev_info(dev, "device disconnected\n"); | 1093 | dev_info(dev, "device disconnected\n"); |
1062 | } | 1094 | } |
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c index 4facce3d9364..5ac414bda718 100644 --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c | |||
@@ -296,14 +296,6 @@ static int visor_open(struct tty_struct *tty, struct usb_serial_port *port, | |||
296 | priv->throttled = 0; | 296 | priv->throttled = 0; |
297 | spin_unlock_irqrestore(&priv->lock, flags); | 297 | spin_unlock_irqrestore(&priv->lock, flags); |
298 | 298 | ||
299 | /* | ||
300 | * Force low_latency on so that our tty_push actually forces the data | ||
301 | * through, otherwise it is scheduled, and with high data rates (like | ||
302 | * with OHCI) data can get lost. | ||
303 | */ | ||
304 | if (tty) | ||
305 | tty->low_latency = 1; | ||
306 | |||
307 | /* Start reading from the device */ | 299 | /* Start reading from the device */ |
308 | usb_fill_bulk_urb(port->read_urb, serial->dev, | 300 | usb_fill_bulk_urb(port->read_urb, serial->dev, |
309 | usb_rcvbulkpipe(serial->dev, | 301 | usb_rcvbulkpipe(serial->dev, |
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 96db479d1165..fa65a3b08601 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h | |||
@@ -1851,6 +1851,12 @@ UNUSUAL_DEV( 0xed06, 0x4500, 0x0001, 0x0001, | |||
1851 | US_SC_DEVICE, US_PR_DEVICE, NULL, | 1851 | US_SC_DEVICE, US_PR_DEVICE, NULL, |
1852 | US_FL_CAPACITY_HEURISTICS), | 1852 | US_FL_CAPACITY_HEURISTICS), |
1853 | 1853 | ||
1854 | /* Reported by Alessio Treglia <quadrispro@ubuntu.com> */ | ||
1855 | UNUSUAL_DEV( 0xed10, 0x7636, 0x0001, 0x0001, | ||
1856 | "TGE", | ||
1857 | "Digital MP3 Audio Player", | ||
1858 | US_SC_DEVICE, US_PR_DEVICE, NULL, US_FL_NOT_LOCKABLE ), | ||
1859 | |||
1854 | /* Control/Bulk transport for all SubClass values */ | 1860 | /* Control/Bulk transport for all SubClass values */ |
1855 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), | 1861 | USUAL_DEV(US_SC_RBC, US_PR_CB, USB_US_TYPE_STOR), |
1856 | USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), | 1862 | USUAL_DEV(US_SC_8020, US_PR_CB, USB_US_TYPE_STOR), |
diff --git a/drivers/video/asiliantfb.c b/drivers/video/asiliantfb.c index 1a1f946d8fef..9fe90ce928fb 100644 --- a/drivers/video/asiliantfb.c +++ b/drivers/video/asiliantfb.c | |||
@@ -533,6 +533,7 @@ static int __devinit init_asiliant(struct fb_info *p, unsigned long addr) | |||
533 | 533 | ||
534 | writeb(0xff, mmio_base + 0x78c); | 534 | writeb(0xff, mmio_base + 0x78c); |
535 | chips_hw_init(p); | 535 | chips_hw_init(p); |
536 | return 0; | ||
536 | } | 537 | } |
537 | 538 | ||
538 | static int __devinit | 539 | static int __devinit |
diff --git a/drivers/video/logo/logo_linux_clut224.ppm b/drivers/video/logo/logo_linux_clut224.ppm index de93ff3fc1ad..3c14e43b82fe 100644 --- a/drivers/video/logo/logo_linux_clut224.ppm +++ b/drivers/video/logo/logo_linux_clut224.ppm | |||
@@ -1,2828 +1,1604 @@ | |||
1 | P3 | 1 | P3 |
2 | 145 113 | 2 | # Standard 224-color Linux logo |
3 | 80 80 | ||
3 | 255 | 4 | 255 |
4 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 5 | 0 0 0 0 0 0 0 0 0 0 0 0 |
5 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 6 | 0 0 0 0 0 0 0 0 0 0 0 0 |
6 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 7 | 0 0 0 0 0 0 0 0 0 0 0 0 |
7 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 8 | 0 0 0 0 0 0 0 0 0 0 0 0 |
8 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 9 | 0 0 0 0 0 0 0 0 0 0 0 0 |
9 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 10 | 0 0 0 0 0 0 0 0 0 0 0 0 |
10 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 11 | 0 0 0 0 0 0 0 0 0 0 0 0 |
11 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 12 | 0 0 0 0 0 0 0 0 0 0 0 0 |
12 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 13 | 0 0 0 0 0 0 0 0 0 0 0 0 |
13 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 14 | 6 6 6 6 6 6 10 10 10 10 10 10 |
14 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 15 | 10 10 10 6 6 6 6 6 6 6 6 6 |
15 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 16 | 0 0 0 0 0 0 0 0 0 0 0 0 |
16 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 17 | 0 0 0 0 0 0 0 0 0 0 0 0 |
17 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 18 | 0 0 0 0 0 0 0 0 0 0 0 0 |
18 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 19 | 0 0 0 0 0 0 0 0 0 0 0 0 |
19 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 20 | 0 0 0 0 0 0 0 0 0 0 0 0 |
20 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 21 | 0 0 0 0 0 0 0 0 0 0 0 0 |
21 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 22 | 0 0 0 0 0 0 0 0 0 0 0 0 |
22 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 23 | 0 0 0 0 0 0 0 0 0 0 0 0 |
23 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 24 | 0 0 0 0 0 0 0 0 0 0 0 0 |
24 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 25 | 0 0 0 0 0 0 0 0 0 0 0 0 |
25 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 26 | 0 0 0 0 0 0 0 0 0 0 0 0 |
26 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 27 | 0 0 0 0 0 0 0 0 0 0 0 0 |
27 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 28 | 0 0 0 0 0 0 0 0 0 0 0 0 |
28 | 0 0 0 | 29 | 0 0 0 0 0 0 0 0 0 0 0 0 |
29 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 30 | 0 0 0 0 0 0 0 0 0 0 0 0 |
30 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 31 | 0 0 0 0 0 0 0 0 0 0 0 0 |
31 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 32 | 0 0 0 0 0 0 0 0 0 0 0 0 |
32 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 33 | 0 0 0 6 6 6 10 10 10 14 14 14 |
33 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 34 | 22 22 22 26 26 26 30 30 30 34 34 34 |
34 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 35 | 30 30 30 30 30 30 26 26 26 18 18 18 |
35 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 36 | 14 14 14 10 10 10 6 6 6 0 0 0 |
36 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 37 | 0 0 0 0 0 0 0 0 0 0 0 0 |
37 | 0 0 0 0 0 0 0 0 0 0 0 0 3 4 4 6 7 7 | 38 | 0 0 0 0 0 0 0 0 0 0 0 0 |
38 | 8 10 10 8 10 10 6 8 8 6 7 7 3 4 4 2 2 2 | 39 | 0 0 0 0 0 0 0 0 0 0 0 0 |
39 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 40 | 0 0 0 0 0 0 0 0 0 0 0 0 |
40 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 41 | 0 0 0 0 0 0 0 0 0 0 0 0 |
41 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 42 | 0 0 0 0 0 0 0 0 0 0 0 0 |
42 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 43 | 0 0 0 0 0 0 0 0 0 0 0 0 |
43 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 44 | 0 0 0 0 0 0 0 0 0 0 0 0 |
44 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 45 | 0 0 0 0 0 0 0 0 0 0 0 0 |
45 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 46 | 0 0 0 0 0 1 0 0 1 0 0 0 |
46 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 47 | 0 0 0 0 0 0 0 0 0 0 0 0 |
47 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 48 | 0 0 0 0 0 0 0 0 0 0 0 0 |
48 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 49 | 0 0 0 0 0 0 0 0 0 0 0 0 |
49 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 50 | 0 0 0 0 0 0 0 0 0 0 0 0 |
50 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 51 | 0 0 0 0 0 0 0 0 0 0 0 0 |
51 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 52 | 0 0 0 0 0 0 0 0 0 0 0 0 |
52 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 53 | 6 6 6 14 14 14 26 26 26 42 42 42 |
53 | 0 0 0 | 54 | 54 54 54 66 66 66 78 78 78 78 78 78 |
54 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 55 | 78 78 78 74 74 74 66 66 66 54 54 54 |
55 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 56 | 42 42 42 26 26 26 18 18 18 10 10 10 |
56 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 57 | 6 6 6 0 0 0 0 0 0 0 0 0 |
57 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 58 | 0 0 0 0 0 0 0 0 0 0 0 0 |
58 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 59 | 0 0 0 0 0 0 0 0 0 0 0 0 |
59 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 60 | 0 0 0 0 0 0 0 0 0 0 0 0 |
60 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 61 | 0 0 0 0 0 0 0 0 0 0 0 0 |
61 | 0 0 0 0 0 0 0 0 0 0 0 0 4 5 5 17 18 17 | 62 | 0 0 0 0 0 0 0 0 0 0 0 0 |
62 | 27 29 28 35 37 36 40 43 41 43 45 43 40 43 41 37 39 37 | 63 | 0 0 0 0 0 0 0 0 0 0 0 0 |
63 | 32 34 33 27 30 29 23 25 24 17 21 21 15 18 18 12 15 15 | 64 | 0 0 0 0 0 0 0 0 0 0 0 0 |
64 | 11 13 13 8 10 10 6 7 7 3 4 4 1 1 1 0 0 0 | 65 | 0 0 0 0 0 0 0 0 0 0 0 0 |
65 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 66 | 0 0 1 0 0 0 0 0 0 0 0 0 |
66 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 67 | 0 0 0 0 0 0 0 0 0 0 0 0 |
67 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 68 | 0 0 0 0 0 0 0 0 0 0 0 0 |
68 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 69 | 0 0 0 0 0 0 0 0 0 0 0 0 |
69 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 70 | 0 0 0 0 0 0 0 0 0 0 0 0 |
70 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 71 | 0 0 0 0 0 0 0 0 0 0 0 0 |
71 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 72 | 0 0 0 0 0 0 0 0 0 10 10 10 |
72 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 73 | 22 22 22 42 42 42 66 66 66 86 86 86 |
73 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 74 | 66 66 66 38 38 38 38 38 38 22 22 22 |
74 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 75 | 26 26 26 34 34 34 54 54 54 66 66 66 |
75 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 76 | 86 86 86 70 70 70 46 46 46 26 26 26 |
76 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 77 | 14 14 14 6 6 6 0 0 0 0 0 0 |
77 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 78 | 0 0 0 0 0 0 0 0 0 0 0 0 |
78 | 0 0 0 | 79 | 0 0 0 0 0 0 0 0 0 0 0 0 |
79 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 80 | 0 0 0 0 0 0 0 0 0 0 0 0 |
80 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 81 | 0 0 0 0 0 0 0 0 0 0 0 0 |
81 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 82 | 0 0 0 0 0 0 0 0 0 0 0 0 |
82 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 83 | 0 0 0 0 0 0 0 0 0 0 0 0 |
83 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 84 | 0 0 0 0 0 0 0 0 0 0 0 0 |
84 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 85 | 0 0 0 0 0 0 0 0 0 0 0 0 |
85 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 86 | 0 0 1 0 0 1 0 0 1 0 0 0 |
86 | 0 0 0 13 13 13 32 34 33 49 51 48 60 60 56 58 59 55 | 87 | 0 0 0 0 0 0 0 0 0 0 0 0 |
87 | 55 57 54 55 56 53 49 51 48 43 45 43 39 40 39 33 37 35 | 88 | 0 0 0 0 0 0 0 0 0 0 0 0 |
88 | 28 31 30 23 27 26 20 23 23 17 20 20 14 17 17 13 16 16 | 89 | 0 0 0 0 0 0 0 0 0 0 0 0 |
89 | 11 14 14 10 13 13 10 12 12 9 11 11 8 10 10 6 7 7 | 90 | 0 0 0 0 0 0 0 0 0 0 0 0 |
90 | 2 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 91 | 0 0 0 0 0 0 0 0 0 0 0 0 |
91 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 92 | 0 0 0 0 0 0 10 10 10 26 26 26 |
92 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 93 | 50 50 50 82 82 82 58 58 58 6 6 6 |
93 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 94 | 2 2 6 2 2 6 2 2 6 2 2 6 |
94 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 95 | 2 2 6 2 2 6 2 2 6 2 2 6 |
95 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 96 | 6 6 6 54 54 54 86 86 86 66 66 66 |
96 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 97 | 38 38 38 18 18 18 6 6 6 0 0 0 |
97 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 98 | 0 0 0 0 0 0 0 0 0 0 0 0 |
98 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 99 | 0 0 0 0 0 0 0 0 0 0 0 0 |
99 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 100 | 0 0 0 0 0 0 0 0 0 0 0 0 |
100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 101 | 0 0 0 0 0 0 0 0 0 0 0 0 |
101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 102 | 0 0 0 0 0 0 0 0 0 0 0 0 |
102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 103 | 0 0 0 0 0 0 0 0 0 0 0 0 |
103 | 0 0 0 | 104 | 0 0 0 0 0 0 0 0 0 0 0 0 |
104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 105 | 0 0 0 0 0 0 0 0 0 0 0 0 |
105 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 106 | 0 0 0 0 0 0 0 0 0 0 0 0 |
106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 107 | 0 0 0 0 0 0 0 0 0 0 0 0 |
107 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 108 | 0 0 0 0 0 0 0 0 0 0 0 0 |
108 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 109 | 0 0 0 0 0 0 0 0 0 0 0 0 |
109 | 0 0 0 0 0 0 0 0 0 0 0 0 6 7 7 12 15 15 | 110 | 0 0 0 0 0 0 0 0 0 0 0 0 |
110 | 12 15 15 8 9 9 2 3 3 0 0 0 1 1 1 25 27 26 | 111 | 0 0 0 0 0 0 0 0 0 0 0 0 |
111 | 55 56 53 68 70 65 65 66 61 65 66 61 63 64 60 63 64 60 | 112 | 0 0 0 6 6 6 22 22 22 50 50 50 |
112 | 58 59 55 51 52 50 47 48 46 41 42 42 35 37 36 30 32 31 | 113 | 78 78 78 34 34 34 2 2 6 2 2 6 |
113 | 26 28 27 20 24 24 18 22 22 16 19 19 14 17 17 13 16 16 | 114 | 2 2 6 2 2 6 2 2 6 2 2 6 |
114 | 12 15 15 11 14 14 10 13 13 10 12 12 9 11 11 8 10 10 | 115 | 2 2 6 2 2 6 2 2 6 2 2 6 |
115 | 8 9 9 6 8 8 3 3 3 0 0 0 0 0 0 0 0 0 | 116 | 2 2 6 2 2 6 6 6 6 70 70 70 |
116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 117 | 78 78 78 46 46 46 22 22 22 6 6 6 |
117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 118 | 0 0 0 0 0 0 0 0 0 0 0 0 |
118 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 119 | 0 0 0 0 0 0 0 0 0 0 0 0 |
119 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 120 | 0 0 0 0 0 0 0 0 0 0 0 0 |
120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 121 | 0 0 0 0 0 0 0 0 0 0 0 0 |
121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 122 | 0 0 0 0 0 0 0 0 0 0 0 0 |
122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 123 | 0 0 0 0 0 0 0 0 0 0 0 0 |
123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 124 | 0 0 0 0 0 0 0 0 0 0 0 0 |
124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 125 | 0 0 0 0 0 0 0 0 0 0 0 0 |
125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 126 | 0 0 1 0 0 1 0 0 1 0 0 0 |
126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 127 | 0 0 0 0 0 0 0 0 0 0 0 0 |
127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 128 | 0 0 0 0 0 0 0 0 0 0 0 0 |
128 | 0 0 0 | 129 | 0 0 0 0 0 0 0 0 0 0 0 0 |
129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 130 | 0 0 0 0 0 0 0 0 0 0 0 0 |
130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 131 | 0 0 0 0 0 0 0 0 0 0 0 0 |
131 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 132 | 6 6 6 18 18 18 42 42 42 82 82 82 |
132 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 133 | 26 26 26 2 2 6 2 2 6 2 2 6 |
133 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 134 | 2 2 6 2 2 6 2 2 6 2 2 6 |
134 | 0 0 0 0 0 0 0 0 0 6 7 7 20 24 24 23 27 26 | 135 | 2 2 6 2 2 6 2 2 6 14 14 14 |
135 | 23 27 26 18 22 22 11 13 13 23 24 24 61 63 57 72 73 67 | 136 | 46 46 46 34 34 34 6 6 6 2 2 6 |
136 | 72 73 67 68 70 65 68 70 65 68 70 65 63 64 60 58 59 55 | 137 | 42 42 42 78 78 78 42 42 42 18 18 18 |
137 | 55 56 53 47 48 46 41 42 42 35 37 36 30 32 31 26 28 27 | 138 | 6 6 6 0 0 0 0 0 0 0 0 0 |
138 | 20 24 24 18 22 22 16 20 20 15 19 19 14 17 17 13 16 16 | 139 | 0 0 0 0 0 0 0 0 0 0 0 0 |
139 | 12 15 15 12 15 15 11 14 14 10 13 13 10 12 12 9 11 11 | 140 | 0 0 0 0 0 0 0 0 0 0 0 0 |
140 | 8 10 10 8 9 9 7 9 9 6 7 7 1 2 2 0 0 0 | 141 | 0 0 0 0 0 0 0 0 0 0 0 0 |
141 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 142 | 0 0 0 0 0 0 0 0 0 0 0 0 |
142 | 0 0 0 0 0 0 1 1 1 4 5 5 5 6 5 4 5 5 | 143 | 0 0 0 0 0 0 0 0 0 0 0 0 |
143 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 144 | 0 0 0 0 0 0 0 0 0 0 0 0 |
144 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 145 | 0 0 0 0 0 0 0 0 0 0 0 0 |
145 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 146 | 0 0 1 0 0 0 0 0 1 0 0 0 |
146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 147 | 0 0 0 0 0 0 0 0 0 0 0 0 |
147 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 148 | 0 0 0 0 0 0 0 0 0 0 0 0 |
148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 149 | 0 0 0 0 0 0 0 0 0 0 0 0 |
149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 150 | 0 0 0 0 0 0 0 0 0 0 0 0 |
150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 151 | 0 0 0 0 0 0 0 0 0 0 0 0 |
151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 152 | 10 10 10 30 30 30 66 66 66 58 58 58 |
152 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 153 | 2 2 6 2 2 6 2 2 6 2 2 6 |
153 | 0 0 0 | 154 | 2 2 6 2 2 6 2 2 6 2 2 6 |
154 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 155 | 2 2 6 2 2 6 2 2 6 26 26 26 |
155 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 156 | 86 86 86 101 101 101 46 46 46 10 10 10 |
156 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 157 | 2 2 6 58 58 58 70 70 70 34 34 34 |
157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 158 | 10 10 10 0 0 0 0 0 0 0 0 0 |
158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 159 | 0 0 0 0 0 0 0 0 0 0 0 0 |
159 | 0 0 0 0 0 0 0 0 0 15 19 19 40 41 39 53 55 47 | 160 | 0 0 0 0 0 0 0 0 0 0 0 0 |
160 | 33 36 34 27 30 29 51 52 50 72 73 67 72 73 67 72 73 67 | 161 | 0 0 0 0 0 0 0 0 0 0 0 0 |
161 | 72 73 67 68 70 65 68 70 65 63 64 60 58 59 55 51 52 50 | 162 | 0 0 0 0 0 0 0 0 0 0 0 0 |
162 | 47 48 46 40 43 41 33 37 35 30 32 31 26 28 27 20 24 24 | 163 | 0 0 0 0 0 0 0 0 0 0 0 0 |
163 | 18 22 22 17 21 21 16 19 19 14 18 18 14 17 17 13 17 17 | 164 | 0 0 0 0 0 0 0 0 0 0 0 0 |
164 | 13 16 16 12 15 15 12 15 15 11 14 14 10 13 13 10 12 12 | 165 | 0 0 0 0 0 0 0 0 0 0 0 0 |
165 | 9 11 11 8 10 10 8 9 9 7 9 9 6 8 8 3 4 4 | 166 | 0 0 1 0 0 1 0 0 1 0 0 0 |
166 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 167 | 0 0 0 0 0 0 0 0 0 0 0 0 |
167 | 2 2 2 6 8 8 10 12 12 10 12 12 10 12 12 10 12 12 | 168 | 0 0 0 0 0 0 0 0 0 0 0 0 |
168 | 6 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 169 | 0 0 0 0 0 0 0 0 0 0 0 0 |
169 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 170 | 0 0 0 0 0 0 0 0 0 0 0 0 |
170 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 171 | 0 0 0 0 0 0 0 0 0 0 0 0 |
171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 172 | 14 14 14 42 42 42 86 86 86 10 10 10 |
172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 173 | 2 2 6 2 2 6 2 2 6 2 2 6 |
173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 174 | 2 2 6 2 2 6 2 2 6 2 2 6 |
174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 175 | 2 2 6 2 2 6 2 2 6 30 30 30 |
175 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 176 | 94 94 94 94 94 94 58 58 58 26 26 26 |
176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 177 | 2 2 6 6 6 6 78 78 78 54 54 54 |
177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 178 | 22 22 22 6 6 6 0 0 0 0 0 0 |
178 | 0 0 0 | 179 | 0 0 0 0 0 0 0 0 0 0 0 0 |
179 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 180 | 0 0 0 0 0 0 0 0 0 0 0 0 |
180 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 181 | 0 0 0 0 0 0 0 0 0 0 0 0 |
181 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 182 | 0 0 0 0 0 0 0 0 0 0 0 0 |
182 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 183 | 0 0 0 0 0 0 0 0 0 0 0 0 |
183 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 184 | 0 0 0 0 0 0 0 0 0 0 0 0 |
184 | 0 0 0 0 0 0 0 0 0 20 23 23 71 71 57 131 127 93 | 185 | 0 0 0 0 0 0 0 0 0 0 0 0 |
185 | 115 113 82 63 64 60 72 73 67 72 73 67 72 73 67 72 73 67 | 186 | 0 0 0 0 0 0 0 0 0 0 0 0 |
186 | 68 70 65 65 66 61 61 63 57 55 57 54 49 51 48 43 45 43 | 187 | 0 0 0 0 0 0 0 0 0 0 0 0 |
187 | 39 40 39 33 36 34 28 31 30 23 27 26 20 24 24 20 23 23 | 188 | 0 0 0 0 0 0 0 0 0 0 0 0 |
188 | 17 21 21 16 20 20 15 19 19 15 18 18 14 18 18 14 17 17 | 189 | 0 0 0 0 0 0 0 0 0 0 0 0 |
189 | 13 17 17 13 16 16 12 15 15 12 15 15 11 14 14 10 13 13 | 190 | 0 0 0 0 0 0 0 0 0 0 0 0 |
190 | 10 12 12 9 11 11 8 10 10 7 9 9 7 9 9 6 8 8 | 191 | 0 0 0 0 0 0 0 0 0 6 6 6 |
191 | 4 5 5 0 0 0 0 0 0 0 0 0 1 1 1 6 7 7 | 192 | 22 22 22 62 62 62 62 62 62 2 2 6 |
192 | 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 | 193 | 2 2 6 2 2 6 2 2 6 2 2 6 |
193 | 10 12 12 3 4 4 0 0 0 0 0 0 0 0 0 0 0 0 | 194 | 2 2 6 2 2 6 2 2 6 2 2 6 |
194 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 195 | 2 2 6 2 2 6 2 2 6 26 26 26 |
195 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 196 | 54 54 54 38 38 38 18 18 18 10 10 10 |
196 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 197 | 2 2 6 2 2 6 34 34 34 82 82 82 |
197 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 198 | 38 38 38 14 14 14 0 0 0 0 0 0 |
198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 199 | 0 0 0 0 0 0 0 0 0 0 0 0 |
199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 200 | 0 0 0 0 0 0 0 0 0 0 0 0 |
200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 201 | 0 0 0 0 0 0 0 0 0 0 0 0 |
201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 202 | 0 0 0 0 0 0 0 0 0 0 0 0 |
202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 203 | 0 0 0 0 0 0 0 0 0 0 0 0 |
203 | 0 0 0 | 204 | 0 0 0 0 0 0 0 0 0 0 0 0 |
204 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 205 | 0 0 0 0 0 0 0 0 0 0 0 0 |
205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 206 | 0 0 0 0 0 1 0 0 1 0 0 0 |
206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 207 | 0 0 0 0 0 0 0 0 0 0 0 0 |
207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 208 | 0 0 0 0 0 0 0 0 0 0 0 0 |
208 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 209 | 0 0 0 0 0 0 0 0 0 0 0 0 |
209 | 0 0 0 0 0 0 0 0 0 18 22 22 71 71 57 144 139 99 | 210 | 0 0 0 0 0 0 0 0 0 0 0 0 |
210 | 84 83 72 68 70 65 72 73 67 72 73 67 68 70 65 65 66 61 | 211 | 0 0 0 0 0 0 0 0 0 6 6 6 |
211 | 63 64 60 55 57 54 51 52 50 47 48 46 40 43 41 35 37 36 | 212 | 30 30 30 78 78 78 30 30 30 2 2 6 |
212 | 30 32 31 27 29 28 23 27 26 20 24 24 18 22 22 17 21 21 | 213 | 2 2 6 2 2 6 2 2 6 2 2 6 |
213 | 16 20 20 15 19 19 15 19 19 15 19 19 15 18 18 14 18 18 | 214 | 2 2 6 2 2 6 2 2 6 2 2 6 |
214 | 14 17 17 13 17 17 13 16 16 12 15 15 12 15 15 11 14 14 | 215 | 2 2 6 2 2 6 2 2 6 10 10 10 |
215 | 10 13 13 9 12 12 9 11 11 8 10 10 7 9 9 6 8 8 | 216 | 10 10 10 2 2 6 2 2 6 2 2 6 |
216 | 6 8 8 3 4 4 0 0 0 2 2 2 8 10 10 10 12 12 | 217 | 2 2 6 2 2 6 2 2 6 78 78 78 |
217 | 10 12 12 10 12 12 11 13 13 36 38 35 61 61 53 48 49 45 | 218 | 50 50 50 18 18 18 6 6 6 0 0 0 |
218 | 10 12 12 7 9 9 0 0 0 0 0 0 0 0 0 0 0 0 | 219 | 0 0 0 0 0 0 0 0 0 0 0 0 |
219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 220 | 0 0 0 0 0 0 0 0 0 0 0 0 |
220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 221 | 0 0 0 0 0 0 0 0 0 0 0 0 |
221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 222 | 0 0 0 0 0 0 0 0 0 0 0 0 |
222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 223 | 0 0 0 0 0 0 0 0 0 0 0 0 |
223 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 224 | 0 0 0 0 0 0 0 0 0 0 0 0 |
224 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 225 | 0 0 0 0 0 0 0 0 0 0 0 0 |
225 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 226 | 0 0 1 0 0 0 0 0 0 0 0 0 |
226 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 227 | 0 0 0 0 0 0 0 0 0 0 0 0 |
227 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 228 | 0 0 0 0 0 0 0 0 0 0 0 0 |
228 | 0 0 0 | 229 | 0 0 0 0 0 0 0 0 0 0 0 0 |
229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 230 | 0 0 0 0 0 0 0 0 0 0 0 0 |
230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 231 | 0 0 0 0 0 0 0 0 0 10 10 10 |
231 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 232 | 38 38 38 86 86 86 14 14 14 2 2 6 |
232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 233 | 2 2 6 2 2 6 2 2 6 2 2 6 |
233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 234 | 2 2 6 2 2 6 2 2 6 2 2 6 |
234 | 0 0 0 0 0 0 0 0 0 15 19 19 61 61 53 84 83 72 | 235 | 2 2 6 2 2 6 2 2 6 2 2 6 |
235 | 68 70 65 72 73 67 68 70 65 68 70 65 63 64 60 58 59 55 | 236 | 2 2 6 2 2 6 2 2 6 2 2 6 |
236 | 51 52 50 47 48 46 41 42 42 37 39 37 32 35 33 28 31 30 | 237 | 2 2 6 2 2 6 2 2 6 54 54 54 |
237 | 23 27 26 20 24 24 20 23 23 18 22 22 17 21 21 17 21 21 | 238 | 66 66 66 26 26 26 6 6 6 0 0 0 |
238 | 17 21 21 17 21 21 17 20 20 16 20 20 16 20 20 16 19 19 | 239 | 0 0 0 0 0 0 0 0 0 0 0 0 |
239 | 15 18 18 14 18 18 13 17 17 13 16 16 12 15 15 12 15 15 | 240 | 0 0 0 0 0 0 0 0 0 0 0 0 |
240 | 11 14 14 10 13 13 9 12 12 9 11 11 8 10 10 7 9 9 | 241 | 0 0 0 0 0 0 0 0 0 0 0 0 |
241 | 6 8 8 6 8 8 5 6 5 9 11 11 10 12 12 10 12 12 | 242 | 0 0 0 0 0 0 0 0 0 0 0 0 |
242 | 19 20 18 82 81 62 149 145 103 160 154 106 142 137 94 96 95 69 | 243 | 0 0 0 0 0 0 0 0 0 0 0 0 |
243 | 10 12 12 10 12 12 1 1 1 0 0 0 0 0 0 0 0 0 | 244 | 0 0 0 0 0 0 0 0 0 0 0 0 |
244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 245 | 0 0 0 0 0 0 0 0 0 0 0 0 |
245 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 246 | 0 0 0 0 0 1 0 0 1 0 0 0 |
246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 247 | 0 0 0 0 0 0 0 0 0 0 0 0 |
247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 248 | 0 0 0 0 0 0 0 0 0 0 0 0 |
248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 249 | 0 0 0 0 0 0 0 0 0 0 0 0 |
249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 250 | 0 0 0 0 0 0 0 0 0 0 0 0 |
250 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 251 | 0 0 0 0 0 0 0 0 0 14 14 14 |
251 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 252 | 42 42 42 82 82 82 2 2 6 2 2 6 |
252 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 253 | 2 2 6 6 6 6 10 10 10 2 2 6 |
253 | 0 0 0 | 254 | 2 2 6 2 2 6 2 2 6 2 2 6 |
254 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 255 | 2 2 6 2 2 6 2 2 6 6 6 6 |
255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 256 | 14 14 14 10 10 10 2 2 6 2 2 6 |
256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 257 | 2 2 6 2 2 6 2 2 6 18 18 18 |
257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 258 | 82 82 82 34 34 34 10 10 10 0 0 0 |
258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 259 | 0 0 0 0 0 0 0 0 0 0 0 0 |
259 | 0 0 0 0 0 0 0 0 0 10 12 12 44 46 43 68 70 65 | 260 | 0 0 0 0 0 0 0 0 0 0 0 0 |
260 | 72 73 67 68 70 65 68 70 65 63 64 60 55 57 54 49 51 48 | 261 | 0 0 0 0 0 0 0 0 0 0 0 0 |
261 | 43 45 43 39 40 39 33 37 35 30 32 31 26 28 27 23 27 26 | 262 | 0 0 0 0 0 0 0 0 0 0 0 0 |
262 | 20 24 24 18 22 22 18 22 22 18 22 22 18 22 22 20 23 23 | 263 | 0 0 0 0 0 0 0 0 0 0 0 0 |
263 | 20 24 24 23 25 24 23 25 24 22 24 23 20 23 23 18 22 22 | 264 | 0 0 0 0 0 0 0 0 0 0 0 0 |
264 | 17 20 20 15 19 19 15 18 18 14 17 17 13 16 16 12 15 15 | 265 | 0 0 0 0 0 0 0 0 0 0 0 0 |
265 | 11 14 14 11 13 13 10 12 12 9 11 11 8 10 10 8 9 9 | 266 | 0 0 1 0 0 0 0 0 0 0 0 0 |
266 | 7 9 9 7 9 9 10 12 12 10 12 12 10 12 12 71 71 57 | 267 | 0 0 0 0 0 0 0 0 0 0 0 0 |
267 | 164 159 111 186 182 128 186 182 128 171 165 117 151 147 98 96 95 69 | 268 | 0 0 0 0 0 0 0 0 0 0 0 0 |
268 | 10 12 12 10 12 12 3 3 3 0 0 0 0 0 0 0 0 0 | 269 | 0 0 0 0 0 0 0 0 0 0 0 0 |
269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 270 | 0 0 0 0 0 0 0 0 0 0 0 0 |
270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 271 | 0 0 0 0 0 0 0 0 0 14 14 14 |
271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 272 | 46 46 46 86 86 86 2 2 6 2 2 6 |
272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 273 | 6 6 6 6 6 6 22 22 22 34 34 34 |
273 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 274 | 6 6 6 2 2 6 2 2 6 2 2 6 |
274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 275 | 2 2 6 2 2 6 18 18 18 34 34 34 |
275 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 276 | 10 10 10 50 50 50 22 22 22 2 2 6 |
276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 277 | 2 2 6 2 2 6 2 2 6 10 10 10 |
277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 278 | 86 86 86 42 42 42 14 14 14 0 0 0 |
278 | 0 0 0 | 279 | 0 0 0 0 0 0 0 0 0 0 0 0 |
279 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 280 | 0 0 0 0 0 0 0 0 0 0 0 0 |
280 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 281 | 0 0 0 0 0 0 0 0 0 0 0 0 |
281 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 282 | 0 0 0 0 0 0 0 0 0 0 0 0 |
282 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 283 | 0 0 0 0 0 0 0 0 0 0 0 0 |
283 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 284 | 0 0 0 0 0 0 0 0 0 0 0 0 |
284 | 0 0 0 0 0 0 0 0 0 8 10 10 63 64 60 68 70 65 | 285 | 0 0 0 0 0 0 0 0 0 0 0 0 |
285 | 72 73 67 68 70 65 63 64 60 55 57 54 47 48 46 40 43 41 | 286 | 0 0 1 0 0 1 0 0 1 0 0 0 |
286 | 33 37 35 30 32 31 27 29 28 23 27 26 20 24 24 20 23 23 | 287 | 0 0 0 0 0 0 0 0 0 0 0 0 |
287 | 18 22 22 18 22 22 20 23 22 21 25 23 23 27 26 27 29 28 | 288 | 0 0 0 0 0 0 0 0 0 0 0 0 |
288 | 28 31 30 31 33 31 31 33 31 31 33 31 28 31 30 26 28 27 | 289 | 0 0 0 0 0 0 0 0 0 0 0 0 |
289 | 23 25 24 20 23 22 16 20 20 15 18 18 14 17 17 13 16 16 | 290 | 0 0 0 0 0 0 0 0 0 0 0 0 |
290 | 12 15 15 11 14 14 10 13 13 10 12 12 9 11 11 8 10 10 | 291 | 0 0 0 0 0 0 0 0 0 14 14 14 |
291 | 10 12 12 10 13 13 10 12 12 12 14 14 96 95 69 165 161 109 | 292 | 46 46 46 86 86 86 2 2 6 2 2 6 |
292 | 186 182 128 192 187 134 192 187 134 176 171 126 160 154 106 103 101 77 | 293 | 38 38 38 116 116 116 94 94 94 22 22 22 |
293 | 10 12 12 10 12 12 5 6 5 0 0 0 0 0 0 0 0 0 | 294 | 22 22 22 2 2 6 2 2 6 2 2 6 |
294 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 295 | 14 14 14 86 86 86 138 138 138 162 162 162 |
295 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 296 | 154 154 154 38 38 38 26 26 26 6 6 6 |
296 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 297 | 2 2 6 2 2 6 2 2 6 2 2 6 |
297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 298 | 86 86 86 46 46 46 14 14 14 0 0 0 |
298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 299 | 0 0 0 0 0 0 0 0 0 0 0 0 |
299 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 300 | 0 0 0 0 0 0 0 0 0 0 0 0 |
300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 301 | 0 0 0 0 0 0 0 0 0 0 0 0 |
301 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 302 | 0 0 0 0 0 0 0 0 0 0 0 0 |
302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 303 | 0 0 0 0 0 0 0 0 0 0 0 0 |
303 | 0 0 0 | 304 | 0 0 0 0 0 0 0 0 0 0 0 0 |
304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 305 | 0 0 0 0 0 0 0 0 0 0 0 0 |
305 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 306 | 0 0 0 0 0 0 0 0 0 0 0 0 |
306 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 307 | 0 0 0 0 0 0 0 0 0 0 0 0 |
307 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 308 | 0 0 0 0 0 0 0 0 0 0 0 0 |
308 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 309 | 0 0 0 0 0 0 0 0 0 0 0 0 |
309 | 0 0 0 0 0 0 0 0 0 35 37 36 68 70 65 72 73 67 | 310 | 0 0 0 0 0 0 0 0 0 0 0 0 |
310 | 68 70 65 65 66 61 58 59 55 49 51 48 40 43 41 33 37 35 | 311 | 0 0 0 0 0 0 0 0 0 14 14 14 |
311 | 28 31 30 23 27 26 20 24 24 20 23 23 18 22 22 18 22 22 | 312 | 46 46 46 86 86 86 2 2 6 14 14 14 |
312 | 18 22 22 20 23 23 23 27 26 27 30 29 32 35 33 37 39 37 | 313 | 134 134 134 198 198 198 195 195 195 116 116 116 |
313 | 40 43 41 44 46 43 46 47 43 44 46 43 40 43 41 36 38 35 | 314 | 10 10 10 2 2 6 2 2 6 6 6 6 |
314 | 31 33 31 27 29 28 22 24 23 17 21 21 15 18 18 14 17 17 | 315 | 101 98 89 187 187 187 210 210 210 218 218 218 |
315 | 13 16 16 12 15 15 11 14 14 11 14 14 11 13 13 13 16 16 | 316 | 214 214 214 134 134 134 14 14 14 6 6 6 |
316 | 13 16 16 11 14 14 10 12 12 79 78 62 142 137 94 164 159 111 | 317 | 2 2 6 2 2 6 2 2 6 2 2 6 |
317 | 178 174 128 192 187 134 192 187 134 176 171 126 160 154 106 96 95 69 | 318 | 86 86 86 50 50 50 18 18 18 6 6 6 |
318 | 10 12 12 10 12 12 6 7 7 0 0 0 0 0 0 0 0 0 | 319 | 0 0 0 0 0 0 0 0 0 0 0 0 |
319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 320 | 0 0 0 0 0 0 0 0 0 0 0 0 |
320 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 321 | 0 0 0 0 0 0 0 0 0 0 0 0 |
321 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 322 | 0 0 0 0 0 0 0 0 0 0 0 0 |
322 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 323 | 0 0 0 0 0 0 0 0 0 0 0 0 |
323 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 324 | 0 0 0 0 0 0 0 0 0 0 0 0 |
324 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 325 | 0 0 0 0 0 0 0 0 1 0 0 0 |
325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 326 | 0 0 1 0 0 1 0 0 1 0 0 0 |
326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 327 | 0 0 0 0 0 0 0 0 0 0 0 0 |
327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 328 | 0 0 0 0 0 0 0 0 0 0 0 0 |
328 | 0 0 0 | 329 | 0 0 0 0 0 0 0 0 0 0 0 0 |
329 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 330 | 0 0 0 0 0 0 0 0 0 0 0 0 |
330 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 331 | 0 0 0 0 0 0 0 0 0 14 14 14 |
331 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 332 | 46 46 46 86 86 86 2 2 6 54 54 54 |
332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 333 | 218 218 218 195 195 195 226 226 226 246 246 246 |
333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 334 | 58 58 58 2 2 6 2 2 6 30 30 30 |
334 | 0 0 0 0 0 0 0 0 0 55 57 54 68 70 65 72 73 67 | 335 | 210 210 210 253 253 253 174 174 174 123 123 123 |
335 | 68 70 65 63 64 60 55 56 53 43 45 43 35 37 36 28 31 30 | 336 | 221 221 221 234 234 234 74 74 74 2 2 6 |
336 | 23 27 26 20 24 24 18 22 22 17 21 21 17 21 21 17 21 21 | 337 | 2 2 6 2 2 6 2 2 6 2 2 6 |
337 | 20 24 24 25 27 26 31 33 31 38 39 37 46 47 43 53 55 47 | 338 | 70 70 70 58 58 58 22 22 22 6 6 6 |
338 | 61 61 53 66 65 55 66 65 55 66 65 55 61 61 53 53 55 47 | 339 | 0 0 0 0 0 0 0 0 0 0 0 0 |
339 | 46 47 43 37 39 37 30 33 30 24 26 24 17 21 21 15 18 18 | 340 | 0 0 0 0 0 0 0 0 0 0 0 0 |
340 | 13 17 17 12 15 15 12 15 15 13 16 16 14 18 18 14 18 18 | 341 | 0 0 0 0 0 0 0 0 0 0 0 0 |
341 | 14 17 17 12 15 15 30 31 28 118 116 76 134 131 96 160 154 106 | 342 | 0 0 0 0 0 0 0 0 0 0 0 0 |
342 | 174 170 121 178 174 128 178 174 128 171 165 117 151 147 98 96 95 69 | 343 | 0 0 0 0 0 0 0 0 0 0 0 0 |
343 | 10 12 12 10 12 12 6 8 8 0 0 0 0 0 0 0 0 0 | 344 | 0 0 0 0 0 0 0 0 0 0 0 0 |
344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 345 | 0 0 0 0 0 0 0 0 0 0 0 0 |
345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 346 | 0 0 0 0 0 0 0 0 0 0 0 0 |
346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 347 | 0 0 0 0 0 0 0 0 0 0 0 0 |
347 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 348 | 0 0 0 0 0 0 0 0 0 0 0 0 |
348 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 349 | 0 0 0 0 0 0 0 0 0 0 0 0 |
349 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 350 | 0 0 0 0 0 0 0 0 0 0 0 0 |
350 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 351 | 0 0 0 0 0 0 0 0 0 14 14 14 |
351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 352 | 46 46 46 82 82 82 2 2 6 106 106 106 |
352 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 353 | 170 170 170 26 26 26 86 86 86 226 226 226 |
353 | 0 0 0 | 354 | 123 123 123 10 10 10 14 14 14 46 46 46 |
354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 355 | 231 231 231 190 190 190 6 6 6 70 70 70 |
355 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 356 | 90 90 90 238 238 238 158 158 158 2 2 6 |
356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 357 | 2 2 6 2 2 6 2 2 6 2 2 6 |
357 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 358 | 70 70 70 58 58 58 22 22 22 6 6 6 |
358 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 359 | 0 0 0 0 0 0 0 0 0 0 0 0 |
359 | 0 0 0 0 0 0 0 0 0 63 64 60 68 70 65 68 70 65 | 360 | 0 0 0 0 0 0 0 0 0 0 0 0 |
360 | 65 66 61 58 59 55 49 51 48 39 40 39 30 32 31 23 27 26 | 361 | 0 0 0 0 0 0 0 0 0 0 0 0 |
361 | 20 24 24 18 22 22 17 21 21 16 20 20 17 21 21 20 23 23 | 362 | 0 0 0 0 0 0 0 0 0 0 0 0 |
362 | 25 27 26 32 35 33 43 44 41 53 55 47 66 65 55 75 75 61 | 363 | 0 0 0 0 0 0 0 0 0 0 0 0 |
363 | 82 81 62 84 83 72 87 86 72 87 86 72 82 81 62 75 75 61 | 364 | 0 0 0 0 0 0 0 0 0 0 0 0 |
364 | 66 65 55 53 55 47 40 41 39 31 33 31 23 25 24 17 20 20 | 365 | 0 0 0 0 0 0 0 0 1 0 0 0 |
365 | 14 18 18 13 16 16 12 15 15 12 15 15 13 17 17 14 18 18 | 366 | 0 0 1 0 0 1 0 0 1 0 0 0 |
366 | 14 18 18 13 16 16 46 47 43 96 95 69 125 122 87 142 137 94 | 367 | 0 0 0 0 0 0 0 0 0 0 0 0 |
367 | 160 154 106 165 161 109 164 159 111 155 149 109 142 137 94 75 75 61 | 368 | 0 0 0 0 0 0 0 0 0 0 0 0 |
368 | 10 12 12 10 12 12 6 8 8 0 0 0 0 0 0 0 0 0 | 369 | 0 0 0 0 0 0 0 0 0 0 0 0 |
369 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 370 | 0 0 0 0 0 0 0 0 0 0 0 0 |
370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 371 | 0 0 0 0 0 0 0 0 0 14 14 14 |
371 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 372 | 42 42 42 86 86 86 6 6 6 116 116 116 |
372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 373 | 106 106 106 6 6 6 70 70 70 149 149 149 |
373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 374 | 128 128 128 18 18 18 38 38 38 54 54 54 |
374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 375 | 221 221 221 106 106 106 2 2 6 14 14 14 |
375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 376 | 46 46 46 190 190 190 198 198 198 2 2 6 |
376 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 377 | 2 2 6 2 2 6 2 2 6 2 2 6 |
377 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 378 | 74 74 74 62 62 62 22 22 22 6 6 6 |
378 | 0 0 0 | 379 | 0 0 0 0 0 0 0 0 0 0 0 0 |
379 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 380 | 0 0 0 0 0 0 0 0 0 0 0 0 |
380 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 381 | 0 0 0 0 0 0 0 0 0 0 0 0 |
381 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 382 | 0 0 0 0 0 0 0 0 0 0 0 0 |
382 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 383 | 0 0 0 0 0 0 0 0 0 0 0 0 |
383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 384 | 0 0 0 0 0 0 0 0 0 0 0 0 |
384 | 0 0 0 0 0 0 0 0 0 60 60 56 68 70 65 68 70 65 | 385 | 0 0 0 0 0 0 0 0 1 0 0 0 |
385 | 63 64 60 55 57 54 46 47 45 35 37 36 27 30 29 23 25 24 | 386 | 0 0 1 0 0 0 0 0 1 0 0 0 |
386 | 18 22 22 17 21 21 16 20 20 17 21 21 18 22 22 23 27 26 | 387 | 0 0 0 0 0 0 0 0 0 0 0 0 |
387 | 31 33 31 43 44 41 55 56 53 71 71 57 84 83 72 92 91 72 | 388 | 0 0 0 0 0 0 0 0 0 0 0 0 |
388 | 103 101 77 92 91 72 82 81 62 82 81 62 87 86 72 92 91 72 | 389 | 0 0 0 0 0 0 0 0 0 0 0 0 |
389 | 84 83 72 71 71 57 55 56 53 43 44 41 30 33 30 22 24 23 | 390 | 0 0 0 0 0 0 0 0 0 0 0 0 |
390 | 16 19 19 14 17 17 12 15 15 12 15 15 13 16 16 14 18 18 | 391 | 0 0 0 0 0 0 0 0 0 14 14 14 |
391 | 14 18 18 14 17 17 43 44 41 82 81 62 118 116 76 125 122 87 | 392 | 42 42 42 94 94 94 14 14 14 101 101 101 |
392 | 142 137 94 144 139 99 144 139 99 134 131 96 118 116 76 53 55 47 | 393 | 128 128 128 2 2 6 18 18 18 116 116 116 |
393 | 10 12 12 10 12 12 6 8 8 0 0 0 0 0 0 0 0 0 | 394 | 118 98 46 121 92 8 121 92 8 98 78 10 |
394 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 395 | 162 162 162 106 106 106 2 2 6 2 2 6 |
395 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 396 | 2 2 6 195 195 195 195 195 195 6 6 6 |
396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 397 | 2 2 6 2 2 6 2 2 6 2 2 6 |
397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 398 | 74 74 74 62 62 62 22 22 22 6 6 6 |
398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 399 | 0 0 0 0 0 0 0 0 0 0 0 0 |
399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 400 | 0 0 0 0 0 0 0 0 0 0 0 0 |
400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 401 | 0 0 0 0 0 0 0 0 0 0 0 0 |
401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 402 | 0 0 0 0 0 0 0 0 0 0 0 0 |
402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 403 | 0 0 0 0 0 0 0 0 0 0 0 0 |
403 | 0 0 0 | 404 | 0 0 0 0 0 0 0 0 0 0 0 0 |
404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 405 | 0 0 0 0 0 0 0 0 1 0 0 1 |
405 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 406 | 0 0 1 0 0 0 0 0 1 0 0 0 |
406 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 407 | 0 0 0 0 0 0 0 0 0 0 0 0 |
407 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 408 | 0 0 0 0 0 0 0 0 0 0 0 0 |
408 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 409 | 0 0 0 0 0 0 0 0 0 0 0 0 |
409 | 0 0 0 0 0 0 0 0 0 47 48 46 63 64 60 63 64 60 | 410 | 0 0 0 0 0 0 0 0 0 0 0 0 |
410 | 55 57 54 49 51 48 40 43 41 32 34 33 26 28 27 20 24 24 | 411 | 0 0 0 0 0 0 0 0 0 10 10 10 |
411 | 18 22 22 16 20 20 16 20 20 17 21 21 20 24 24 28 31 30 | 412 | 38 38 38 90 90 90 14 14 14 58 58 58 |
412 | 40 41 39 53 55 47 75 75 61 90 89 73 87 86 72 48 49 45 | 413 | 210 210 210 26 26 26 54 38 6 154 114 10 |
413 | 14 14 13 2 2 2 1 2 2 1 1 1 1 1 1 2 2 2 | 414 | 226 170 11 236 186 11 225 175 15 184 144 12 |
414 | 19 20 18 43 44 41 66 65 55 53 55 47 38 39 37 26 28 27 | 415 | 215 174 15 175 146 61 37 26 9 2 2 6 |
415 | 18 22 22 14 18 18 13 16 16 12 15 15 12 15 15 13 17 17 | 416 | 70 70 70 246 246 246 138 138 138 2 2 6 |
416 | 14 18 18 14 18 18 30 31 28 66 65 55 96 95 69 103 101 77 | 417 | 2 2 6 2 2 6 2 2 6 2 2 6 |
417 | 118 116 76 118 116 76 118 116 76 118 116 76 103 101 77 36 38 35 | 418 | 70 70 70 66 66 66 26 26 26 6 6 6 |
418 | 10 12 12 10 12 12 6 7 7 0 0 0 0 0 0 0 0 0 | 419 | 0 0 0 0 0 0 0 0 0 0 0 0 |
419 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 420 | 0 0 0 0 0 0 0 0 0 0 0 0 |
420 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 421 | 0 0 0 0 0 0 0 0 0 0 0 0 |
421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 422 | 0 0 0 0 0 0 0 0 0 0 0 0 |
422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 423 | 0 0 0 0 0 0 0 0 0 0 0 0 |
423 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 424 | 0 0 0 0 0 0 0 0 0 0 0 0 |
424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 425 | 0 0 0 0 0 0 0 0 0 0 0 0 |
425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 426 | 0 0 0 0 0 0 0 0 0 0 0 0 |
426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 427 | 0 0 0 0 0 0 0 0 0 0 0 0 |
427 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 428 | 0 0 0 0 0 0 0 0 0 0 0 0 |
428 | 0 0 0 | 429 | 0 0 0 0 0 0 0 0 0 0 0 0 |
429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 430 | 0 0 0 0 0 0 0 0 0 0 0 0 |
430 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 431 | 0 0 0 0 0 0 0 0 0 10 10 10 |
431 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 432 | 38 38 38 86 86 86 14 14 14 10 10 10 |
432 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 433 | 195 195 195 188 164 115 192 133 9 225 175 15 |
433 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 434 | 239 182 13 234 190 10 232 195 16 232 200 30 |
434 | 0 0 0 0 0 0 0 0 0 28 31 30 55 57 54 51 52 50 | 435 | 245 207 45 241 208 19 232 195 16 184 144 12 |
435 | 49 51 48 41 42 42 35 37 36 28 31 30 23 27 26 20 23 23 | 436 | 218 194 134 211 206 186 42 42 42 2 2 6 |
436 | 17 21 21 16 20 20 16 20 20 18 22 22 23 27 26 33 36 34 | 437 | 2 2 6 2 2 6 2 2 6 2 2 6 |
437 | 48 49 45 71 71 57 82 81 62 43 44 41 8 9 9 6 7 7 | 438 | 50 50 50 74 74 74 30 30 30 6 6 6 |
438 | 6 7 7 6 7 7 6 7 7 5 6 5 4 5 5 3 4 4 | 439 | 0 0 0 0 0 0 0 0 0 0 0 0 |
439 | 2 3 3 1 2 2 4 5 4 36 38 35 48 49 45 32 35 33 | 440 | 0 0 0 0 0 0 0 0 0 0 0 0 |
440 | 21 25 23 16 19 19 13 17 17 12 15 15 12 15 15 13 16 16 | 441 | 0 0 0 0 0 0 0 0 0 0 0 0 |
441 | 14 18 18 14 18 18 16 18 16 36 38 35 61 61 53 82 81 62 | 442 | 0 0 0 0 0 0 0 0 0 0 0 0 |
442 | 96 95 69 96 95 69 96 95 69 96 95 69 79 78 62 19 20 18 | 443 | 0 0 0 0 0 0 0 0 0 0 0 0 |
443 | 10 12 12 10 12 12 4 5 5 0 0 0 0 0 0 0 0 0 | 444 | 0 0 0 0 0 0 0 0 0 0 0 0 |
444 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 445 | 0 0 0 0 0 0 0 0 0 0 0 0 |
445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 446 | 0 0 0 0 0 0 0 0 0 0 0 0 |
446 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 447 | 0 0 0 0 0 0 0 0 0 0 0 0 |
447 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 448 | 0 0 0 0 0 0 0 0 0 0 0 0 |
448 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 449 | 0 0 0 0 0 0 0 0 0 0 0 0 |
449 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 450 | 0 0 0 0 0 0 0 0 0 0 0 0 |
450 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 451 | 0 0 0 0 0 0 0 0 0 10 10 10 |
451 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 452 | 34 34 34 86 86 86 14 14 14 2 2 6 |
452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 453 | 121 87 25 192 133 9 219 162 10 239 182 13 |
453 | 0 0 0 | 454 | 236 186 11 232 195 16 241 208 19 244 214 54 |
454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 455 | 246 218 60 246 218 38 246 215 20 241 208 19 |
455 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 456 | 241 208 19 226 184 13 121 87 25 2 2 6 |
456 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 457 | 2 2 6 2 2 6 2 2 6 2 2 6 |
457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 458 | 50 50 50 82 82 82 34 34 34 10 10 10 |
458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 459 | 0 0 0 0 0 0 0 0 0 0 0 0 |
459 | 0 0 0 0 0 0 0 0 0 13 13 13 46 47 45 43 45 43 | 460 | 0 0 0 0 0 0 0 0 0 0 0 0 |
460 | 40 43 41 35 37 36 30 32 31 23 27 26 20 24 24 18 22 22 | 461 | 0 0 0 0 0 0 0 0 0 0 0 0 |
461 | 17 21 21 16 20 20 17 21 21 20 23 23 27 30 29 40 41 39 | 462 | 0 0 0 0 0 0 0 0 0 0 0 0 |
462 | 61 61 53 53 55 47 16 17 16 9 11 11 10 12 12 10 12 12 | 463 | 0 0 0 0 0 0 0 0 0 0 0 0 |
463 | 10 12 12 10 12 12 10 12 12 9 11 11 8 10 10 8 9 9 | 464 | 0 0 0 0 0 0 0 0 0 0 0 0 |
464 | 6 8 8 5 6 5 4 5 5 2 3 3 19 20 18 38 39 37 | 465 | 0 0 0 0 0 0 0 0 0 0 0 0 |
465 | 26 28 27 17 21 21 14 17 17 13 16 16 12 15 15 12 15 15 | 466 | 0 0 0 0 0 0 0 0 0 0 0 0 |
466 | 13 17 17 14 18 18 12 15 15 13 12 7 30 31 28 46 47 43 | 467 | 0 0 0 0 0 0 0 0 0 0 0 0 |
467 | 53 55 47 66 65 55 66 65 55 53 55 47 36 38 35 10 12 12 | 468 | 0 0 0 0 0 0 0 0 0 0 0 0 |
468 | 10 12 12 10 12 12 2 3 3 0 0 0 0 0 0 0 0 0 | 469 | 0 0 0 0 0 0 0 0 0 0 0 0 |
469 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 470 | 0 0 0 0 0 0 0 0 0 0 0 0 |
470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 471 | 0 0 0 0 0 0 0 0 0 10 10 10 |
471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 472 | 34 34 34 82 82 82 30 30 30 61 42 6 |
472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 473 | 180 123 7 206 145 10 230 174 11 239 182 13 |
473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 474 | 234 190 10 238 202 15 241 208 19 246 218 74 |
474 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 475 | 246 218 38 246 215 20 246 215 20 246 215 20 |
475 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 476 | 226 184 13 215 174 15 184 144 12 6 6 6 |
476 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 477 | 2 2 6 2 2 6 2 2 6 2 2 6 |
477 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 478 | 26 26 26 94 94 94 42 42 42 14 14 14 |
478 | 0 0 0 | 479 | 0 0 0 0 0 0 0 0 0 0 0 0 |
479 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 480 | 0 0 0 0 0 0 0 0 0 0 0 0 |
480 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 481 | 0 0 0 0 0 0 0 0 0 0 0 0 |
481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 482 | 0 0 0 0 0 0 0 0 0 0 0 0 |
482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 483 | 0 0 0 0 0 0 0 0 0 0 0 0 |
483 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 484 | 0 0 0 0 0 0 0 0 0 0 0 0 |
484 | 0 0 0 0 0 0 0 0 0 1 1 1 33 37 35 35 37 36 | 485 | 0 0 0 0 0 0 0 0 0 0 0 0 |
485 | 32 35 33 28 31 30 23 27 26 20 24 24 18 22 22 17 21 21 | 486 | 0 0 0 0 0 0 0 0 0 0 0 0 |
486 | 16 20 20 16 20 20 17 21 21 21 25 23 31 33 31 44 46 43 | 487 | 0 0 0 0 0 0 0 0 0 0 0 0 |
487 | 31 33 31 11 13 13 12 14 14 12 15 15 13 16 16 14 17 17 | 488 | 0 0 0 0 0 0 0 0 0 0 0 0 |
488 | 14 17 17 14 17 17 14 17 17 13 16 16 12 15 15 12 14 14 | 489 | 0 0 0 0 0 0 0 0 0 0 0 0 |
489 | 11 13 13 9 11 11 8 10 10 6 8 8 4 5 5 17 18 17 | 490 | 0 0 0 0 0 0 0 0 0 0 0 0 |
490 | 30 33 30 20 23 22 15 18 18 13 16 16 12 15 15 12 14 14 | 491 | 0 0 0 0 0 0 0 0 0 10 10 10 |
491 | 13 16 16 14 17 17 14 18 18 11 12 11 7 7 5 16 17 12 | 492 | 30 30 30 78 78 78 50 50 50 104 69 6 |
492 | 21 22 20 30 31 28 25 27 25 21 22 20 14 14 13 10 12 12 | 493 | 192 133 9 216 158 10 236 178 12 236 186 11 |
493 | 10 12 12 9 11 11 0 0 0 0 0 0 0 0 0 0 0 0 | 494 | 232 195 16 241 208 19 244 214 54 245 215 43 |
494 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 495 | 246 215 20 246 215 20 241 208 19 198 155 10 |
495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 496 | 200 144 11 216 158 10 156 118 10 2 2 6 |
496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 497 | 2 2 6 2 2 6 2 2 6 2 2 6 |
497 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 498 | 6 6 6 90 90 90 54 54 54 18 18 18 |
498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 499 | 6 6 6 0 0 0 0 0 0 0 0 0 |
499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 500 | 0 0 0 0 0 0 0 0 0 0 0 0 |
500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 501 | 0 0 0 0 0 0 0 0 0 0 0 0 |
501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 502 | 0 0 0 0 0 0 0 0 0 0 0 0 |
502 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 503 | 0 0 0 0 0 0 0 0 0 0 0 0 |
503 | 0 0 0 | 504 | 0 0 0 0 0 0 0 0 0 0 0 0 |
504 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 505 | 0 0 0 0 0 0 0 0 0 0 0 0 |
505 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 506 | 0 0 0 0 0 0 0 0 0 0 0 0 |
506 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 507 | 0 0 0 0 0 0 0 0 0 0 0 0 |
507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 508 | 0 0 0 0 0 0 0 0 0 0 0 0 |
508 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 509 | 0 0 0 0 0 0 0 0 0 0 0 0 |
509 | 0 0 0 0 0 0 0 0 0 0 0 0 18 22 22 27 30 29 | 510 | 0 0 0 0 0 0 0 0 0 0 0 0 |
510 | 27 29 28 40 41 39 53 55 47 53 55 47 53 55 47 46 47 43 | 511 | 0 0 0 0 0 0 0 0 0 10 10 10 |
511 | 25 27 25 16 20 20 17 21 21 23 25 24 31 33 31 20 20 20 | 512 | 30 30 30 78 78 78 46 46 46 22 22 22 |
512 | 12 15 15 14 17 17 15 19 19 16 20 20 17 21 21 18 22 22 | 513 | 137 92 6 210 162 10 239 182 13 238 190 10 |
513 | 18 22 22 18 22 22 18 22 22 17 21 21 17 21 21 16 19 19 | 514 | 238 202 15 241 208 19 246 215 20 246 215 20 |
514 | 15 18 18 13 16 16 12 15 15 10 12 12 8 10 10 6 8 8 | 515 | 241 208 19 203 166 17 185 133 11 210 150 10 |
515 | 21 22 21 22 24 23 15 19 19 13 17 17 13 16 16 12 15 15 | 516 | 216 158 10 210 150 10 102 78 10 2 2 6 |
516 | 12 15 15 13 17 17 14 18 18 14 18 18 13 15 14 10 9 6 | 517 | 6 6 6 54 54 54 14 14 14 2 2 6 |
517 | 7 7 5 7 7 5 7 7 5 9 11 11 10 12 12 10 12 12 | 518 | 2 2 6 62 62 62 74 74 74 30 30 30 |
518 | 10 12 12 6 7 7 0 0 0 0 0 0 0 0 0 0 0 0 | 519 | 10 10 10 0 0 0 0 0 0 0 0 0 |
519 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 520 | 0 0 0 0 0 0 0 0 0 0 0 0 |
520 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 521 | 0 0 0 0 0 0 0 0 0 0 0 0 |
521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 522 | 0 0 0 0 0 0 0 0 0 0 0 0 |
522 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 523 | 0 0 0 0 0 0 0 0 0 0 0 0 |
523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 524 | 0 0 0 0 0 0 0 0 0 0 0 0 |
524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 525 | 0 0 0 0 0 0 0 0 0 0 0 0 |
525 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 526 | 0 0 0 0 0 0 0 0 0 0 0 0 |
526 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 527 | 0 0 0 0 0 0 0 0 0 0 0 0 |
527 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 528 | 0 0 0 0 0 0 0 0 0 0 0 0 |
528 | 0 0 0 | 529 | 0 0 0 0 0 0 0 0 0 0 0 0 |
529 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 530 | 0 0 0 0 0 0 0 0 0 0 0 0 |
530 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 531 | 0 0 0 0 0 0 0 0 0 10 10 10 |
531 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 532 | 34 34 34 78 78 78 50 50 50 6 6 6 |
532 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 533 | 94 70 30 139 102 15 190 146 13 226 184 13 |
533 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 534 | 232 200 30 232 195 16 215 174 15 190 146 13 |
534 | 0 0 0 0 0 0 0 0 0 0 0 0 16 17 12 82 81 62 | 535 | 168 122 10 192 133 9 210 150 10 213 154 11 |
535 | 118 116 76 118 116 76 161 156 96 161 156 96 161 156 96 118 116 76 | 536 | 202 150 34 182 157 106 101 98 89 2 2 6 |
536 | 118 116 76 96 95 69 53 55 47 22 24 23 14 17 17 13 16 16 | 537 | 2 2 6 78 78 78 116 116 116 58 58 58 |
537 | 15 19 19 17 21 21 18 22 22 20 24 24 20 24 24 23 27 26 | 538 | 2 2 6 22 22 22 90 90 90 46 46 46 |
538 | 23 27 26 23 27 26 23 27 26 23 27 26 23 27 26 20 24 24 | 539 | 18 18 18 6 6 6 0 0 0 0 0 0 |
539 | 20 23 23 17 21 21 16 19 19 14 17 17 12 15 15 10 12 12 | 540 | 0 0 0 0 0 0 0 0 0 0 0 0 |
540 | 9 11 11 20 23 22 16 19 19 14 17 17 13 16 16 12 15 15 | 541 | 0 0 0 0 0 0 0 0 0 0 0 0 |
541 | 11 14 14 13 16 16 14 17 17 14 18 18 14 17 17 12 15 15 | 542 | 0 0 0 0 0 0 0 0 0 0 0 0 |
542 | 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 | 543 | 0 0 0 0 0 0 0 0 0 0 0 0 |
543 | 9 11 11 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 | 544 | 0 0 0 0 0 0 0 0 0 0 0 0 |
544 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 545 | 0 0 0 0 0 0 0 0 0 0 0 0 |
545 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 546 | 0 0 0 0 0 0 0 0 0 0 0 0 |
546 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 547 | 0 0 0 0 0 0 0 0 0 0 0 0 |
547 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 548 | 0 0 0 0 0 0 0 0 0 0 0 0 |
548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 549 | 0 0 0 0 0 0 0 0 0 0 0 0 |
549 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 550 | 0 0 0 0 0 0 0 0 0 0 0 0 |
550 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 551 | 0 0 0 0 0 0 0 0 0 10 10 10 |
551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 552 | 38 38 38 86 86 86 50 50 50 6 6 6 |
552 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 553 | 128 128 128 174 154 114 156 107 11 168 122 10 |
553 | 0 0 0 | 554 | 198 155 10 184 144 12 197 138 11 200 144 11 |
554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 555 | 206 145 10 206 145 10 197 138 11 188 164 115 |
555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 556 | 195 195 195 198 198 198 174 174 174 14 14 14 |
556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 557 | 2 2 6 22 22 22 116 116 116 116 116 116 |
557 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 558 | 22 22 22 2 2 6 74 74 74 70 70 70 |
558 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 559 | 30 30 30 10 10 10 0 0 0 0 0 0 |
559 | 0 0 0 0 0 0 0 0 0 0 0 0 53 55 47 161 156 96 | 560 | 0 0 0 0 0 0 0 0 0 0 0 0 |
560 | 161 156 96 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 561 | 0 0 0 0 0 0 0 0 0 0 0 0 |
561 | 230 229 82 161 156 96 118 116 76 96 95 69 21 22 20 16 19 19 | 562 | 0 0 0 0 0 0 0 0 0 0 0 0 |
562 | 18 22 22 20 24 24 23 27 26 23 27 26 26 28 27 27 30 29 | 563 | 0 0 0 0 0 0 0 0 0 0 0 0 |
563 | 27 30 29 18 22 22 12 14 14 8 10 10 9 11 11 17 21 21 | 564 | 0 0 0 0 0 0 0 0 0 0 0 0 |
564 | 23 27 26 23 27 26 20 24 24 18 22 22 16 20 20 14 17 17 | 565 | 0 0 0 0 0 0 0 0 0 0 0 0 |
565 | 12 14 14 14 17 17 16 20 20 14 17 17 13 17 17 13 16 16 | 566 | 0 0 0 0 0 0 0 0 0 0 0 0 |
566 | 12 15 15 12 15 15 13 17 17 14 18 18 14 17 17 13 16 16 | 567 | 0 0 0 0 0 0 0 0 0 0 0 0 |
567 | 11 13 13 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 | 568 | 0 0 0 0 0 0 0 0 0 0 0 0 |
568 | 4 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 569 | 0 0 0 0 0 0 0 0 0 0 0 0 |
569 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 570 | 0 0 0 0 0 0 0 0 0 0 0 0 |
570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 571 | 0 0 0 0 0 0 6 6 6 18 18 18 |
571 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 572 | 50 50 50 101 101 101 26 26 26 10 10 10 |
572 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 573 | 138 138 138 190 190 190 174 154 114 156 107 11 |
573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 574 | 197 138 11 200 144 11 197 138 11 192 133 9 |
574 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 575 | 180 123 7 190 142 34 190 178 144 187 187 187 |
575 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 576 | 202 202 202 221 221 221 214 214 214 66 66 66 |
576 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 577 | 2 2 6 2 2 6 50 50 50 62 62 62 |
577 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 578 | 6 6 6 2 2 6 10 10 10 90 90 90 |
578 | 0 0 0 | 579 | 50 50 50 18 18 18 6 6 6 0 0 0 |
579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 580 | 0 0 0 0 0 0 0 0 0 0 0 0 |
580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 581 | 0 0 0 0 0 0 0 0 0 0 0 0 |
581 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 582 | 0 0 0 0 0 0 0 0 0 0 0 0 |
582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 583 | 0 0 0 0 0 0 0 0 0 0 0 0 |
583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 584 | 0 0 0 0 0 0 0 0 0 0 0 0 |
584 | 0 0 0 0 0 0 0 0 0 13 12 7 118 116 76 230 229 82 | 585 | 0 0 0 0 0 0 0 0 0 0 0 0 |
585 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 586 | 0 0 0 0 0 0 0 0 0 0 0 0 |
586 | 230 229 82 230 229 82 230 229 82 161 156 96 118 116 76 30 31 28 | 587 | 0 0 0 0 0 0 0 0 0 0 0 0 |
587 | 20 24 24 23 27 26 27 30 29 28 31 30 30 32 31 23 27 26 | 588 | 0 0 0 0 0 0 0 0 0 0 0 0 |
588 | 16 19 19 17 21 21 12 15 15 9 11 11 10 12 12 9 11 11 | 589 | 0 0 0 0 0 0 0 0 0 0 0 0 |
589 | 20 24 24 28 31 30 26 28 27 23 27 26 20 24 24 17 21 21 | 590 | 0 0 0 0 0 0 0 0 0 0 0 0 |
590 | 15 19 19 13 16 16 16 19 19 14 18 18 14 17 17 13 16 16 | 591 | 0 0 0 0 0 0 10 10 10 34 34 34 |
591 | 12 15 15 11 14 14 13 16 16 14 17 17 14 18 18 14 17 17 | 592 | 74 74 74 74 74 74 2 2 6 6 6 6 |
592 | 12 15 15 10 12 12 10 12 12 10 12 12 10 12 12 8 9 9 | 593 | 144 144 144 198 198 198 190 190 190 178 166 146 |
593 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 594 | 154 121 60 156 107 11 156 107 11 168 124 44 |
594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 595 | 174 154 114 187 187 187 190 190 190 210 210 210 |
595 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 596 | 246 246 246 253 253 253 253 253 253 182 182 182 |
596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 597 | 6 6 6 2 2 6 2 2 6 2 2 6 |
597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 598 | 2 2 6 2 2 6 2 2 6 62 62 62 |
598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 599 | 74 74 74 34 34 34 14 14 14 0 0 0 |
599 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 600 | 0 0 0 0 0 0 0 0 0 0 0 0 |
600 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 601 | 0 0 0 0 0 0 0 0 0 0 0 0 |
601 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 602 | 0 0 0 0 0 0 0 0 0 0 0 0 |
602 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 603 | 0 0 0 0 0 0 0 0 0 0 0 0 |
603 | 0 0 0 | 604 | 0 0 0 0 0 0 0 0 0 0 0 0 |
604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 605 | 0 0 0 0 0 0 0 0 0 0 0 0 |
605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 606 | 0 0 0 0 0 0 0 0 0 0 0 0 |
606 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 607 | 0 0 0 0 0 0 0 0 0 0 0 0 |
607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 608 | 0 0 0 0 0 0 0 0 0 0 0 0 |
608 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 609 | 0 0 0 0 0 0 0 0 0 0 0 0 |
609 | 0 0 0 0 0 0 0 0 0 82 81 62 161 156 96 230 229 82 | 610 | 0 0 0 0 0 0 0 0 0 0 0 0 |
610 | 230 229 82 233 233 100 230 229 82 230 229 82 230 229 82 230 229 82 | 611 | 0 0 0 10 10 10 22 22 22 54 54 54 |
611 | 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 118 116 76 | 612 | 94 94 94 18 18 18 2 2 6 46 46 46 |
612 | 27 29 28 27 30 29 30 32 31 30 32 31 23 27 26 20 24 24 | 613 | 234 234 234 221 221 221 190 190 190 190 190 190 |
613 | 26 28 27 17 21 21 6 7 7 72 73 67 145 141 105 15 15 15 | 614 | 190 190 190 187 187 187 187 187 187 190 190 190 |
614 | 14 17 17 33 37 35 30 32 31 28 31 30 26 28 27 23 27 26 | 615 | 190 190 190 195 195 195 214 214 214 242 242 242 |
615 | 20 23 23 16 20 20 15 19 19 14 18 18 14 17 17 13 16 16 | 616 | 253 253 253 253 253 253 253 253 253 253 253 253 |
616 | 12 15 15 11 14 14 12 15 15 13 17 17 14 18 18 14 17 17 | 617 | 82 82 82 2 2 6 2 2 6 2 2 6 |
617 | 13 16 16 11 13 13 10 12 12 10 12 12 9 11 11 1 1 1 | 618 | 2 2 6 2 2 6 2 2 6 14 14 14 |
618 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 619 | 86 86 86 54 54 54 22 22 22 6 6 6 |
619 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 620 | 0 0 0 0 0 0 0 0 0 0 0 0 |
620 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 621 | 0 0 0 0 0 0 0 0 0 0 0 0 |
621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 622 | 0 0 0 0 0 0 0 0 0 0 0 0 |
622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 623 | 0 0 0 0 0 0 0 0 0 0 0 0 |
623 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 624 | 0 0 0 0 0 0 0 0 0 0 0 0 |
624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 625 | 0 0 0 0 0 0 0 0 0 0 0 0 |
625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 626 | 0 0 0 0 0 0 0 0 0 0 0 0 |
626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 627 | 0 0 0 0 0 0 0 0 0 0 0 0 |
627 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 628 | 0 0 0 0 0 0 0 0 0 0 0 0 |
628 | 0 0 0 | 629 | 0 0 0 0 0 0 0 0 0 0 0 0 |
629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 630 | 0 0 0 0 0 0 0 0 0 0 0 0 |
630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 631 | 6 6 6 18 18 18 46 46 46 90 90 90 |
631 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 632 | 46 46 46 18 18 18 6 6 6 182 182 182 |
632 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 633 | 253 253 253 246 246 246 206 206 206 190 190 190 |
633 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 634 | 190 190 190 190 190 190 190 190 190 190 190 190 |
634 | 0 0 0 0 0 0 16 17 12 161 156 96 230 229 82 230 229 82 | 635 | 206 206 206 231 231 231 250 250 250 253 253 253 |
635 | 243 242 120 235 234 117 230 229 82 230 229 82 230 229 82 230 229 82 | 636 | 253 253 253 253 253 253 253 253 253 253 253 253 |
636 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 | 637 | 202 202 202 14 14 14 2 2 6 2 2 6 |
637 | 82 81 62 28 31 30 28 31 30 27 30 29 28 31 30 30 32 31 | 638 | 2 2 6 2 2 6 2 2 6 2 2 6 |
638 | 33 37 35 13 16 16 3 3 3 105 104 92 210 208 158 12 14 14 | 639 | 42 42 42 86 86 86 42 42 42 18 18 18 |
639 | 17 21 21 33 37 35 33 37 35 32 35 33 30 32 31 27 30 29 | 640 | 6 6 6 0 0 0 0 0 0 0 0 0 |
640 | 23 27 26 20 23 23 17 20 20 15 18 18 14 18 18 13 17 17 | 641 | 0 0 0 0 0 0 0 0 0 0 0 0 |
641 | 13 16 16 12 15 15 11 14 14 13 16 16 14 17 17 14 18 18 | 642 | 0 0 0 0 0 0 0 0 0 0 0 0 |
642 | 13 17 17 12 15 15 10 12 12 10 12 12 3 4 4 0 0 0 | 643 | 0 0 0 0 0 0 0 0 0 0 0 0 |
643 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 644 | 0 0 0 0 0 0 0 0 0 0 0 0 |
644 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 645 | 0 0 0 0 0 0 0 0 0 0 0 0 |
645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 646 | 0 0 0 0 0 0 0 0 0 0 0 0 |
646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 647 | 0 0 0 0 0 0 0 0 0 0 0 0 |
647 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 648 | 0 0 0 0 0 0 0 0 0 0 0 0 |
648 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 649 | 0 0 0 0 0 0 0 0 0 0 0 0 |
649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 650 | 0 0 0 0 0 0 0 0 0 6 6 6 |
650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 651 | 14 14 14 38 38 38 74 74 74 66 66 66 |
651 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 652 | 2 2 6 6 6 6 90 90 90 250 250 250 |
652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 653 | 253 253 253 253 253 253 238 238 238 198 198 198 |
653 | 0 0 0 | 654 | 190 190 190 190 190 190 195 195 195 221 221 221 |
654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 655 | 246 246 246 253 253 253 253 253 253 253 253 253 |
655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 656 | 253 253 253 253 253 253 253 253 253 253 253 253 |
656 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 657 | 253 253 253 82 82 82 2 2 6 2 2 6 |
657 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 658 | 2 2 6 2 2 6 2 2 6 2 2 6 |
658 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 659 | 2 2 6 78 78 78 70 70 70 34 34 34 |
659 | 0 0 0 0 0 0 96 95 69 230 229 82 230 229 82 244 244 132 | 660 | 14 14 14 6 6 6 0 0 0 0 0 0 |
660 | 241 241 143 243 242 120 230 229 82 230 229 82 230 229 82 230 229 82 | 661 | 0 0 0 0 0 0 0 0 0 0 0 0 |
661 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 662 | 0 0 0 0 0 0 0 0 0 0 0 0 |
662 | 161 156 96 46 47 43 32 35 33 33 37 35 33 37 35 33 37 35 | 663 | 0 0 0 0 0 0 0 0 0 0 0 0 |
663 | 40 43 41 23 27 26 1 1 1 2 2 2 24 26 24 14 17 17 | 664 | 0 0 0 0 0 0 0 0 0 0 0 0 |
664 | 23 27 26 33 37 35 33 37 35 33 37 35 33 37 35 30 32 31 | 665 | 0 0 0 0 0 0 0 0 0 0 0 0 |
665 | 27 30 29 23 27 26 20 23 23 15 18 18 14 18 18 14 17 17 | 666 | 0 0 0 0 0 0 0 0 0 0 0 0 |
666 | 13 16 16 12 15 15 11 14 14 12 15 15 13 17 17 14 17 17 | 667 | 0 0 0 0 0 0 0 0 0 0 0 0 |
667 | 14 17 17 13 16 16 11 13 13 6 8 8 0 0 0 0 0 0 | 668 | 0 0 0 0 0 0 0 0 0 0 0 0 |
668 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 669 | 0 0 0 0 0 0 0 0 0 0 0 0 |
669 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 670 | 0 0 0 0 0 0 0 0 0 14 14 14 |
670 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 671 | 34 34 34 66 66 66 78 78 78 6 6 6 |
671 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 672 | 2 2 6 18 18 18 218 218 218 253 253 253 |
672 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 673 | 253 253 253 253 253 253 253 253 253 246 246 246 |
673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 674 | 226 226 226 231 231 231 246 246 246 253 253 253 |
674 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 675 | 253 253 253 253 253 253 253 253 253 253 253 253 |
675 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 676 | 253 253 253 253 253 253 253 253 253 253 253 253 |
676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 677 | 253 253 253 178 178 178 2 2 6 2 2 6 |
677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 678 | 2 2 6 2 2 6 2 2 6 2 2 6 |
678 | 0 0 0 | 679 | 2 2 6 18 18 18 90 90 90 62 62 62 |
679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 680 | 30 30 30 10 10 10 0 0 0 0 0 0 |
680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 681 | 0 0 0 0 0 0 0 0 0 0 0 0 |
681 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 682 | 0 0 0 0 0 0 0 0 0 0 0 0 |
682 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 683 | 0 0 0 0 0 0 0 0 0 0 0 0 |
683 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 684 | 0 0 0 0 0 0 0 0 0 0 0 0 |
684 | 0 0 0 16 17 12 161 156 96 230 229 82 235 234 117 239 239 170 | 685 | 0 0 0 0 0 0 0 0 0 0 0 0 |
685 | 239 239 170 236 236 101 230 229 82 230 229 82 230 229 82 230 229 82 | 686 | 0 0 0 0 0 0 0 0 0 0 0 0 |
686 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 687 | 0 0 0 0 0 0 0 0 0 0 0 0 |
687 | 230 229 82 118 116 76 33 37 35 33 37 35 37 39 37 37 39 37 | 688 | 0 0 0 0 0 0 0 0 0 0 0 0 |
688 | 43 45 43 49 51 48 20 24 24 8 10 10 17 20 20 35 37 36 | 689 | 0 0 0 0 0 0 0 0 0 0 0 0 |
689 | 33 37 35 40 43 41 37 39 37 35 37 36 33 37 35 33 37 35 | 690 | 0 0 0 0 0 0 10 10 10 26 26 26 |
690 | 30 32 31 27 30 29 23 27 26 15 19 19 14 18 18 14 17 17 | 691 | 58 58 58 90 90 90 18 18 18 2 2 6 |
691 | 13 17 17 13 16 16 12 15 15 11 14 14 13 16 16 14 17 17 | 692 | 2 2 6 110 110 110 253 253 253 253 253 253 |
692 | 14 17 17 13 17 17 11 14 14 4 5 5 0 0 0 0 0 0 | 693 | 253 253 253 253 253 253 253 253 253 253 253 253 |
693 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 694 | 250 250 250 253 253 253 253 253 253 253 253 253 |
694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 695 | 253 253 253 253 253 253 253 253 253 253 253 253 |
695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 696 | 253 253 253 253 253 253 253 253 253 253 253 253 |
696 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 697 | 253 253 253 231 231 231 18 18 18 2 2 6 |
697 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 698 | 2 2 6 2 2 6 2 2 6 2 2 6 |
698 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 699 | 2 2 6 2 2 6 18 18 18 94 94 94 |
699 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 700 | 54 54 54 26 26 26 10 10 10 0 0 0 |
700 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 701 | 0 0 0 0 0 0 0 0 0 0 0 0 |
701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 702 | 0 0 0 0 0 0 0 0 0 0 0 0 |
702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 703 | 0 0 0 0 0 0 0 0 0 0 0 0 |
703 | 0 0 0 | 704 | 0 0 0 0 0 0 0 0 0 0 0 0 |
704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 705 | 0 0 0 0 0 0 0 0 0 0 0 0 |
705 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 706 | 0 0 0 0 0 0 0 0 0 0 0 0 |
706 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 707 | 0 0 0 0 0 0 0 0 0 0 0 0 |
707 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 708 | 0 0 0 0 0 0 0 0 0 0 0 0 |
708 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 709 | 0 0 0 0 0 0 0 0 0 0 0 0 |
709 | 0 0 0 96 95 69 230 229 82 230 229 82 239 239 170 251 251 187 | 710 | 0 0 0 6 6 6 22 22 22 50 50 50 |
710 | 241 241 143 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 711 | 90 90 90 26 26 26 2 2 6 2 2 6 |
711 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 712 | 14 14 14 195 195 195 250 250 250 253 253 253 |
712 | 230 229 82 161 156 96 36 38 35 33 37 35 33 37 35 33 37 35 | 713 | 253 253 253 253 253 253 253 253 253 253 253 253 |
713 | 37 39 37 47 48 46 55 57 54 55 57 54 49 51 48 43 45 43 | 714 | 253 253 253 253 253 253 253 253 253 253 253 253 |
714 | 43 45 43 43 45 43 40 43 41 40 43 41 37 39 37 33 37 35 | 715 | 253 253 253 253 253 253 253 253 253 253 253 253 |
715 | 33 37 35 28 31 30 26 28 27 16 20 20 15 18 18 14 18 18 | 716 | 253 253 253 253 253 253 253 253 253 253 253 253 |
716 | 14 17 17 13 16 16 12 15 15 11 14 14 12 15 15 13 17 17 | 717 | 250 250 250 242 242 242 54 54 54 2 2 6 |
717 | 14 17 17 14 17 17 8 10 10 5 7 7 0 0 0 0 0 0 | 718 | 2 2 6 2 2 6 2 2 6 2 2 6 |
718 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 719 | 2 2 6 2 2 6 2 2 6 38 38 38 |
719 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 720 | 86 86 86 50 50 50 22 22 22 6 6 6 |
720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 721 | 0 0 0 0 0 0 0 0 0 0 0 0 |
721 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 722 | 0 0 0 0 0 0 0 0 0 0 0 0 |
722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 723 | 0 0 0 0 0 0 0 0 0 0 0 0 |
723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 724 | 0 0 0 0 0 0 0 0 0 0 0 0 |
724 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 725 | 0 0 0 0 0 0 0 0 0 0 0 0 |
725 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 726 | 0 0 0 0 0 0 0 0 0 0 0 0 |
726 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 727 | 0 0 0 0 0 0 0 0 0 0 0 0 |
727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 728 | 0 0 0 0 0 0 0 0 0 0 0 0 |
728 | 0 0 0 | 729 | 0 0 0 0 0 0 0 0 0 0 0 0 |
729 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 730 | 6 6 6 14 14 14 38 38 38 82 82 82 |
730 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 731 | 34 34 34 2 2 6 2 2 6 2 2 6 |
731 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 732 | 42 42 42 195 195 195 246 246 246 253 253 253 |
732 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 733 | 253 253 253 253 253 253 253 253 253 250 250 250 |
733 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 734 | 242 242 242 242 242 242 250 250 250 253 253 253 |
734 | 16 17 12 230 229 82 230 229 82 243 242 120 251 251 187 251 251 187 | 735 | 253 253 253 253 253 253 253 253 253 253 253 253 |
735 | 246 246 123 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 736 | 253 253 253 250 250 250 246 246 246 238 238 238 |
736 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 737 | 226 226 226 231 231 231 101 101 101 6 6 6 |
737 | 230 229 82 230 229 82 66 65 55 30 32 31 32 35 33 33 37 35 | 738 | 2 2 6 2 2 6 2 2 6 2 2 6 |
738 | 33 37 35 37 39 37 40 43 41 47 48 46 49 51 48 51 52 50 | 739 | 2 2 6 2 2 6 2 2 6 2 2 6 |
739 | 55 57 54 55 57 54 51 52 50 47 48 46 43 45 43 39 40 39 | 740 | 38 38 38 82 82 82 42 42 42 14 14 14 |
740 | 33 37 35 30 32 31 26 28 27 17 21 21 15 19 19 14 18 18 | 741 | 6 6 6 0 0 0 0 0 0 0 0 0 |
741 | 14 17 17 13 16 16 12 15 15 12 14 14 11 14 14 13 16 16 | 742 | 0 0 0 0 0 0 0 0 0 0 0 0 |
742 | 14 17 17 12 15 15 7 9 9 6 8 8 1 1 1 0 0 0 | 743 | 0 0 0 0 0 0 0 0 0 0 0 0 |
743 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 744 | 0 0 0 0 0 0 0 0 0 0 0 0 |
744 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 745 | 0 0 0 0 0 0 0 0 0 0 0 0 |
745 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 746 | 0 0 0 0 0 0 0 0 0 0 0 0 |
746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 747 | 0 0 0 0 0 0 0 0 0 0 0 0 |
747 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 748 | 0 0 0 0 0 0 0 0 0 0 0 0 |
748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 749 | 0 0 0 0 0 0 0 0 0 0 0 0 |
749 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 750 | 10 10 10 26 26 26 62 62 62 66 66 66 |
750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 751 | 2 2 6 2 2 6 2 2 6 6 6 6 |
751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 752 | 70 70 70 170 170 170 206 206 206 234 234 234 |
752 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 753 | 246 246 246 250 250 250 250 250 250 238 238 238 |
753 | 0 0 0 | 754 | 226 226 226 231 231 231 238 238 238 250 250 250 |
754 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 755 | 250 250 250 250 250 250 246 246 246 231 231 231 |
755 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 756 | 214 214 214 206 206 206 202 202 202 202 202 202 |
756 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 757 | 198 198 198 202 202 202 182 182 182 18 18 18 |
757 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 758 | 2 2 6 2 2 6 2 2 6 2 2 6 |
758 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 759 | 2 2 6 2 2 6 2 2 6 2 2 6 |
759 | 96 95 69 230 229 82 230 229 82 239 239 170 251 251 187 239 239 170 | 760 | 2 2 6 62 62 62 66 66 66 30 30 30 |
760 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 761 | 10 10 10 0 0 0 0 0 0 0 0 0 |
761 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 762 | 0 0 0 0 0 0 0 0 0 0 0 0 |
762 | 230 229 82 230 229 82 96 95 69 27 30 29 28 31 30 30 32 31 | 763 | 0 0 0 0 0 0 0 0 0 0 0 0 |
763 | 33 37 35 40 43 41 46 47 45 55 57 54 63 64 60 72 73 67 | 764 | 0 0 0 0 0 0 0 0 0 0 0 0 |
764 | 72 73 67 72 73 67 72 73 67 65 66 61 55 57 54 47 48 46 | 765 | 0 0 0 0 0 0 0 0 0 0 0 0 |
765 | 39 40 39 32 35 33 27 30 29 17 21 21 15 19 19 15 18 18 | 766 | 0 0 0 0 0 0 0 0 0 0 0 0 |
766 | 14 18 18 13 17 17 13 16 16 12 15 15 11 14 14 12 14 14 | 767 | 0 0 0 0 0 0 0 0 0 0 0 0 |
767 | 13 16 16 9 11 11 7 9 9 9 11 11 66 65 55 115 113 82 | 768 | 0 0 0 0 0 0 0 0 0 0 0 0 |
768 | 21 22 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 769 | 0 0 0 0 0 0 0 0 0 0 0 0 |
769 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 770 | 14 14 14 42 42 42 82 82 82 18 18 18 |
770 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 771 | 2 2 6 2 2 6 2 2 6 10 10 10 |
771 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 772 | 94 94 94 182 182 182 218 218 218 242 242 242 |
772 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 773 | 250 250 250 253 253 253 253 253 253 250 250 250 |
773 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 774 | 234 234 234 253 253 253 253 253 253 253 253 253 |
774 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 775 | 253 253 253 253 253 253 253 253 253 246 246 246 |
775 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 776 | 238 238 238 226 226 226 210 210 210 202 202 202 |
776 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 777 | 195 195 195 195 195 195 210 210 210 158 158 158 |
777 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 778 | 6 6 6 14 14 14 50 50 50 14 14 14 |
778 | 0 0 0 | 779 | 2 2 6 2 2 6 2 2 6 2 2 6 |
779 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 780 | 2 2 6 6 6 6 86 86 86 46 46 46 |
780 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 781 | 18 18 18 6 6 6 0 0 0 0 0 0 |
781 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 782 | 0 0 0 0 0 0 0 0 0 0 0 0 |
782 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 783 | 0 0 0 0 0 0 0 0 0 0 0 0 |
783 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 12 7 | 784 | 0 0 0 0 0 0 0 0 0 0 0 0 |
784 | 230 229 82 230 229 82 236 236 101 251 251 187 251 251 187 246 246 123 | 785 | 0 0 0 0 0 0 0 0 0 0 0 0 |
785 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 786 | 0 0 0 0 0 0 0 0 0 0 0 0 |
786 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 787 | 0 0 0 0 0 0 0 0 0 0 0 0 |
787 | 230 229 82 230 229 82 118 116 76 23 27 26 26 28 27 32 35 33 | 788 | 0 0 0 0 0 0 0 0 0 0 0 0 |
788 | 51 52 50 90 89 73 110 109 94 145 141 105 168 163 120 177 172 135 | 789 | 0 0 0 0 0 0 0 0 0 6 6 6 |
789 | 177 172 135 188 184 146 188 184 146 181 176 137 194 191 148 188 184 146 | 790 | 22 22 22 54 54 54 70 70 70 2 2 6 |
790 | 184 179 149 188 184 146 188 184 146 156 151 111 177 172 135 181 176 137 | 791 | 2 2 6 10 10 10 2 2 6 22 22 22 |
791 | 177 172 135 168 163 120 168 163 120 158 153 112 156 151 111 158 153 112 | 792 | 166 166 166 231 231 231 250 250 250 253 253 253 |
792 | 156 151 111 158 153 112 177 172 135 188 184 146 188 184 146 194 189 146 | 793 | 253 253 253 253 253 253 253 253 253 250 250 250 |
793 | 36 38 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 794 | 242 242 242 253 253 253 253 253 253 253 253 253 |
794 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 795 | 253 253 253 253 253 253 253 253 253 253 253 253 |
795 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 796 | 253 253 253 253 253 253 253 253 253 246 246 246 |
796 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 797 | 231 231 231 206 206 206 198 198 198 226 226 226 |
797 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 798 | 94 94 94 2 2 6 6 6 6 38 38 38 |
798 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 799 | 30 30 30 2 2 6 2 2 6 2 2 6 |
799 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 800 | 2 2 6 2 2 6 62 62 62 66 66 66 |
800 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 801 | 26 26 26 10 10 10 0 0 0 0 0 0 |
801 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 802 | 0 0 0 0 0 0 0 0 0 0 0 0 |
802 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 803 | 0 0 0 0 0 0 0 0 0 0 0 0 |
803 | 0 0 0 | 804 | 0 0 0 0 0 0 0 0 0 0 0 0 |
804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 805 | 0 0 0 0 0 0 0 0 0 0 0 0 |
805 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 806 | 0 0 0 0 0 0 0 0 0 0 0 0 |
806 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 807 | 0 0 0 0 0 0 0 0 0 0 0 0 |
807 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 808 | 0 0 0 0 0 0 0 0 0 0 0 0 |
808 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 81 62 | 809 | 0 0 0 0 0 0 0 0 0 10 10 10 |
809 | 230 229 82 230 229 82 244 244 132 251 251 187 244 244 132 230 229 82 | 810 | 30 30 30 74 74 74 50 50 50 2 2 6 |
810 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 811 | 26 26 26 26 26 26 2 2 6 106 106 106 |
811 | 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 82 81 62 | 812 | 238 238 238 253 253 253 253 253 253 253 253 253 |
812 | 96 95 69 230 229 82 181 178 103 110 109 94 156 151 111 188 184 146 | 813 | 253 253 253 253 253 253 253 253 253 253 253 253 |
813 | 188 184 146 197 193 154 188 184 146 184 181 136 188 184 146 168 163 120 | 814 | 253 253 253 253 253 253 253 253 253 253 253 253 |
814 | 168 163 120 178 174 128 156 151 111 158 153 112 174 170 121 156 151 111 | 815 | 253 253 253 253 253 253 253 253 253 253 253 253 |
815 | 156 151 111 158 153 112 156 151 111 168 163 120 178 174 128 181 176 137 | 816 | 253 253 253 253 253 253 253 253 253 253 253 253 |
816 | 176 171 126 178 174 128 184 181 136 176 171 126 178 174 128 184 181 136 | 817 | 253 253 253 246 246 246 218 218 218 202 202 202 |
817 | 176 171 126 178 174 128 184 181 136 164 159 111 155 149 109 96 95 69 | 818 | 210 210 210 14 14 14 2 2 6 2 2 6 |
818 | 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 819 | 30 30 30 22 22 22 2 2 6 2 2 6 |
819 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 820 | 2 2 6 2 2 6 18 18 18 86 86 86 |
820 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 821 | 42 42 42 14 14 14 0 0 0 0 0 0 |
821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 822 | 0 0 0 0 0 0 0 0 0 0 0 0 |
822 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 823 | 0 0 0 0 0 0 0 0 0 0 0 0 |
823 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 824 | 0 0 0 0 0 0 0 0 0 0 0 0 |
824 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 825 | 0 0 0 0 0 0 0 0 0 0 0 0 |
825 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 826 | 0 0 0 0 0 0 0 0 0 0 0 0 |
826 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 827 | 0 0 0 0 0 0 0 0 0 0 0 0 |
827 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 828 | 0 0 0 0 0 0 0 0 0 0 0 0 |
828 | 0 0 0 | 829 | 0 0 0 0 0 0 0 0 0 14 14 14 |
829 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 830 | 42 42 42 90 90 90 22 22 22 2 2 6 |
830 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 831 | 42 42 42 2 2 6 18 18 18 218 218 218 |
831 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 832 | 253 253 253 253 253 253 253 253 253 253 253 253 |
832 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 833 | 253 253 253 253 253 253 253 253 253 253 253 253 |
833 | 0 0 0 0 0 0 0 0 0 0 0 0 2 2 1 161 156 96 | 834 | 253 253 253 253 253 253 253 253 253 253 253 253 |
834 | 230 229 82 230 229 82 244 244 132 244 244 132 236 236 101 230 229 82 | 835 | 253 253 253 253 253 253 253 253 253 253 253 253 |
835 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 836 | 253 253 253 253 253 253 253 253 253 253 253 253 |
836 | 230 229 82 230 229 82 230 229 82 230 229 82 46 47 43 82 81 62 | 837 | 253 253 253 253 253 253 250 250 250 221 221 221 |
837 | 158 153 112 197 193 154 194 189 146 184 181 136 188 184 146 168 163 120 | 838 | 218 218 218 101 101 101 2 2 6 14 14 14 |
838 | 156 151 111 137 133 100 131 127 93 137 133 100 137 133 100 158 153 112 | 839 | 18 18 18 38 38 38 10 10 10 2 2 6 |
839 | 121 119 87 137 133 100 156 151 111 145 141 105 99 98 80 84 83 72 | 840 | 2 2 6 2 2 6 2 2 6 78 78 78 |
840 | 63 64 60 52 53 49 40 43 41 33 36 34 36 38 35 36 38 35 | 841 | 58 58 58 22 22 22 6 6 6 0 0 0 |
841 | 38 39 37 43 44 41 43 44 41 46 47 43 48 49 45 48 49 45 | 842 | 0 0 0 0 0 0 0 0 0 0 0 0 |
842 | 46 47 43 36 38 35 30 31 28 19 20 18 6 7 7 0 0 0 | 843 | 0 0 0 0 0 0 0 0 0 0 0 0 |
843 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 844 | 0 0 0 0 0 0 0 0 0 0 0 0 |
844 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 845 | 0 0 0 0 0 0 0 0 0 0 0 0 |
845 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 846 | 0 0 0 0 0 0 0 0 0 0 0 0 |
846 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 847 | 0 0 0 0 0 0 0 0 0 0 0 0 |
847 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 848 | 0 0 0 0 0 0 0 0 0 0 0 0 |
848 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 849 | 0 0 0 0 0 0 6 6 6 18 18 18 |
849 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 850 | 54 54 54 82 82 82 2 2 6 26 26 26 |
850 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 851 | 22 22 22 2 2 6 123 123 123 253 253 253 |
851 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 852 | 253 253 253 253 253 253 253 253 253 253 253 253 |
852 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 853 | 253 253 253 253 253 253 253 253 253 253 253 253 |
853 | 0 0 0 | 854 | 253 253 253 253 253 253 253 253 253 253 253 253 |
854 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 855 | 253 253 253 253 253 253 253 253 253 253 253 253 |
855 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 856 | 253 253 253 253 253 253 253 253 253 253 253 253 |
856 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 857 | 253 253 253 253 253 253 253 253 253 250 250 250 |
857 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 858 | 238 238 238 198 198 198 6 6 6 38 38 38 |
858 | 0 0 0 0 0 0 0 0 0 0 0 0 36 38 35 230 229 82 | 859 | 58 58 58 26 26 26 38 38 38 2 2 6 |
859 | 230 229 82 230 229 82 246 246 123 236 236 101 230 229 82 230 229 82 | 860 | 2 2 6 2 2 6 2 2 6 46 46 46 |
860 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 861 | 78 78 78 30 30 30 10 10 10 0 0 0 |
861 | 230 229 82 230 229 82 230 229 82 230 229 82 53 55 47 121 119 87 | 862 | 0 0 0 0 0 0 0 0 0 0 0 0 |
862 | 176 171 126 171 165 117 161 156 96 82 81 62 53 55 47 33 37 35 | 863 | 0 0 0 0 0 0 0 0 0 0 0 0 |
863 | 39 40 39 63 64 60 99 98 80 121 119 87 137 133 100 177 172 135 | 864 | 0 0 0 0 0 0 0 0 0 0 0 0 |
864 | 176 171 126 184 181 136 131 127 93 131 127 93 110 109 94 84 83 72 | 865 | 0 0 0 0 0 0 0 0 0 0 0 0 |
865 | 51 52 50 39 40 39 27 29 28 18 22 22 16 19 19 15 19 19 | 866 | 0 0 0 0 0 0 0 0 0 0 0 0 |
866 | 15 19 19 14 18 18 14 17 17 13 16 16 12 15 15 11 14 14 | 867 | 0 0 0 0 0 0 0 0 0 0 0 0 |
867 | 10 13 13 9 12 12 9 11 11 8 9 9 7 9 9 1 1 1 | 868 | 0 0 0 0 0 0 0 0 0 0 0 0 |
868 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 869 | 0 0 0 0 0 0 10 10 10 30 30 30 |
869 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 870 | 74 74 74 58 58 58 2 2 6 42 42 42 |
870 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 871 | 2 2 6 22 22 22 231 231 231 253 253 253 |
871 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 872 | 253 253 253 253 253 253 253 253 253 253 253 253 |
872 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 873 | 253 253 253 253 253 253 253 253 253 250 250 250 |
873 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 874 | 253 253 253 253 253 253 253 253 253 253 253 253 |
874 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 875 | 253 253 253 253 253 253 253 253 253 253 253 253 |
875 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 876 | 253 253 253 253 253 253 253 253 253 253 253 253 |
876 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 877 | 253 253 253 253 253 253 253 253 253 253 253 253 |
877 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 878 | 253 253 253 246 246 246 46 46 46 38 38 38 |
878 | 0 0 0 | 879 | 42 42 42 14 14 14 38 38 38 14 14 14 |
879 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 880 | 2 2 6 2 2 6 2 2 6 6 6 6 |
880 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 881 | 86 86 86 46 46 46 14 14 14 0 0 0 |
881 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 882 | 0 0 0 0 0 0 0 0 0 0 0 0 |
882 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 883 | 0 0 0 0 0 0 0 0 0 0 0 0 |
883 | 0 0 0 0 0 0 0 0 0 0 0 0 118 116 76 230 229 82 | 884 | 0 0 0 0 0 0 0 0 0 0 0 0 |
884 | 230 229 82 230 229 82 236 236 101 230 229 82 230 229 82 230 229 82 | 885 | 0 0 0 0 0 0 0 0 0 0 0 0 |
885 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 886 | 0 0 0 0 0 0 0 0 0 0 0 0 |
886 | 230 229 82 230 229 82 230 229 82 230 229 82 96 95 69 71 71 57 | 887 | 0 0 0 0 0 0 0 0 0 0 0 0 |
887 | 36 38 35 118 116 76 118 116 76 12 15 15 15 18 18 20 24 24 | 888 | 0 0 0 0 0 0 0 0 0 0 0 0 |
888 | 33 37 35 55 56 53 84 83 72 110 109 94 145 141 105 110 109 94 | 889 | 0 0 0 6 6 6 14 14 14 42 42 42 |
889 | 168 163 120 121 119 87 156 151 111 131 127 93 87 86 72 61 63 57 | 890 | 90 90 90 18 18 18 18 18 18 26 26 26 |
890 | 47 48 46 28 31 30 18 22 22 15 19 19 15 18 18 15 19 19 | 891 | 2 2 6 116 116 116 253 253 253 253 253 253 |
891 | 15 19 19 14 18 18 14 17 17 13 17 17 13 16 16 12 15 15 | 892 | 253 253 253 253 253 253 253 253 253 253 253 253 |
892 | 11 13 13 10 12 12 9 11 11 8 10 10 7 9 9 3 3 3 | 893 | 253 253 253 253 253 253 250 250 250 238 238 238 |
893 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 894 | 253 253 253 253 253 253 253 253 253 253 253 253 |
894 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 895 | 253 253 253 253 253 253 253 253 253 253 253 253 |
895 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 896 | 253 253 253 253 253 253 253 253 253 253 253 253 |
896 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 897 | 253 253 253 253 253 253 253 253 253 253 253 253 |
897 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 898 | 253 253 253 253 253 253 94 94 94 6 6 6 |
898 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 899 | 2 2 6 2 2 6 10 10 10 34 34 34 |
899 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 900 | 2 2 6 2 2 6 2 2 6 2 2 6 |
900 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 901 | 74 74 74 58 58 58 22 22 22 6 6 6 |
901 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 902 | 0 0 0 0 0 0 0 0 0 0 0 0 |
902 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 903 | 0 0 0 0 0 0 0 0 0 0 0 0 |
903 | 0 0 0 | 904 | 0 0 0 0 0 0 0 0 0 0 0 0 |
904 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 905 | 0 0 0 0 0 0 0 0 0 0 0 0 |
905 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 906 | 0 0 0 0 0 0 0 0 0 0 0 0 |
906 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 907 | 0 0 0 0 0 0 0 0 0 0 0 0 |
907 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 908 | 0 0 0 0 0 0 0 0 0 0 0 0 |
908 | 0 0 0 0 0 0 0 0 0 1 1 0 230 229 82 230 229 82 | 909 | 0 0 0 10 10 10 26 26 26 66 66 66 |
909 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 910 | 82 82 82 2 2 6 38 38 38 6 6 6 |
910 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 911 | 14 14 14 210 210 210 253 253 253 253 253 253 |
911 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 | 912 | 253 253 253 253 253 253 253 253 253 253 253 253 |
912 | 161 156 96 230 229 82 118 116 76 11 14 14 14 17 17 18 22 22 | 913 | 253 253 253 253 253 253 246 246 246 242 242 242 |
913 | 27 30 29 40 43 41 60 60 56 84 83 72 105 104 92 110 109 94 | 914 | 253 253 253 253 253 253 253 253 253 253 253 253 |
914 | 110 109 94 110 109 94 99 98 80 90 89 73 68 70 65 47 48 46 | 915 | 253 253 253 253 253 253 253 253 253 253 253 253 |
915 | 32 34 33 23 25 24 20 23 23 17 21 21 15 19 19 14 17 17 | 916 | 253 253 253 253 253 253 253 253 253 253 253 253 |
916 | 15 19 19 15 18 18 14 18 18 13 17 17 13 16 16 12 15 15 | 917 | 253 253 253 253 253 253 253 253 253 253 253 253 |
917 | 11 14 14 10 12 12 9 11 11 8 10 10 7 9 9 4 5 5 | 918 | 253 253 253 253 253 253 144 144 144 2 2 6 |
918 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 919 | 2 2 6 2 2 6 2 2 6 46 46 46 |
919 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 920 | 2 2 6 2 2 6 2 2 6 2 2 6 |
920 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 921 | 42 42 42 74 74 74 30 30 30 10 10 10 |
921 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 922 | 0 0 0 0 0 0 0 0 0 0 0 0 |
922 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 923 | 0 0 0 0 0 0 0 0 0 0 0 0 |
923 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 924 | 0 0 0 0 0 0 0 0 0 0 0 0 |
924 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 925 | 0 0 0 0 0 0 0 0 0 0 0 0 |
925 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 926 | 0 0 0 0 0 0 0 0 0 0 0 0 |
926 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 927 | 0 0 0 0 0 0 0 0 0 0 0 0 |
927 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 928 | 0 0 0 0 0 0 0 0 0 0 0 0 |
928 | 0 0 0 | 929 | 6 6 6 14 14 14 42 42 42 90 90 90 |
929 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 930 | 26 26 26 6 6 6 42 42 42 2 2 6 |
930 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 931 | 74 74 74 250 250 250 253 253 253 253 253 253 |
931 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 932 | 253 253 253 253 253 253 253 253 253 253 253 253 |
932 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 933 | 253 253 253 253 253 253 242 242 242 242 242 242 |
933 | 0 0 0 0 0 0 0 0 0 16 17 12 230 229 82 230 229 82 | 934 | 253 253 253 253 253 253 253 253 253 253 253 253 |
934 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 935 | 253 253 253 253 253 253 253 253 253 253 253 253 |
935 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 936 | 253 253 253 253 253 253 253 253 253 253 253 253 |
936 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 937 | 253 253 253 253 253 253 253 253 253 253 253 253 |
937 | 230 229 82 161 156 96 118 116 76 11 13 13 13 16 16 15 19 19 | 938 | 253 253 253 253 253 253 182 182 182 2 2 6 |
938 | 20 24 24 30 32 31 40 43 41 51 52 50 63 64 60 72 73 67 | 939 | 2 2 6 2 2 6 2 2 6 46 46 46 |
939 | 65 66 61 65 66 61 65 66 61 55 57 54 46 47 45 33 37 35 | 940 | 2 2 6 2 2 6 2 2 6 2 2 6 |
940 | 27 29 28 20 24 24 17 21 21 16 20 20 16 20 20 15 19 19 | 941 | 10 10 10 86 86 86 38 38 38 10 10 10 |
941 | 15 19 19 15 19 19 14 18 18 14 17 17 13 16 16 12 15 15 | 942 | 0 0 0 0 0 0 0 0 0 0 0 0 |
942 | 11 14 14 10 13 13 9 12 12 8 10 10 7 9 9 6 7 7 | 943 | 0 0 0 0 0 0 0 0 0 0 0 0 |
943 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 944 | 0 0 0 0 0 0 0 0 0 0 0 0 |
944 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 945 | 0 0 0 0 0 0 0 0 0 0 0 0 |
945 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 946 | 0 0 0 0 0 0 0 0 0 0 0 0 |
946 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 947 | 0 0 0 0 0 0 0 0 0 0 0 0 |
947 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 948 | 0 0 0 0 0 0 0 0 0 0 0 0 |
948 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 949 | 10 10 10 26 26 26 66 66 66 82 82 82 |
949 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 950 | 2 2 6 22 22 22 18 18 18 2 2 6 |
950 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 951 | 149 149 149 253 253 253 253 253 253 253 253 253 |
951 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 952 | 253 253 253 253 253 253 253 253 253 253 253 253 |
952 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 953 | 253 253 253 253 253 253 234 234 234 242 242 242 |
953 | 0 0 0 | 954 | 253 253 253 253 253 253 253 253 253 253 253 253 |
954 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 955 | 253 253 253 253 253 253 253 253 253 253 253 253 |
955 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 956 | 253 253 253 253 253 253 253 253 253 253 253 253 |
956 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 957 | 253 253 253 253 253 253 253 253 253 253 253 253 |
957 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 958 | 253 253 253 253 253 253 206 206 206 2 2 6 |
958 | 0 0 0 0 0 0 0 0 0 53 55 47 230 229 82 230 229 82 | 959 | 2 2 6 2 2 6 2 2 6 38 38 38 |
959 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 960 | 2 2 6 2 2 6 2 2 6 2 2 6 |
960 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 961 | 6 6 6 86 86 86 46 46 46 14 14 14 |
961 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 962 | 0 0 0 0 0 0 0 0 0 0 0 0 |
962 | 161 156 96 118 116 76 53 55 47 10 13 13 12 15 15 14 17 17 | 963 | 0 0 0 0 0 0 0 0 0 0 0 0 |
963 | 17 20 20 20 24 24 27 29 28 32 34 33 37 39 37 40 43 41 | 964 | 0 0 0 0 0 0 0 0 0 0 0 0 |
964 | 43 45 43 41 42 42 35 37 36 30 32 31 28 31 30 23 27 26 | 965 | 0 0 0 0 0 0 0 0 0 0 0 0 |
965 | 20 23 23 17 21 21 16 20 20 16 20 20 16 20 20 16 19 19 | 966 | 0 0 0 0 0 0 0 0 0 0 0 0 |
966 | 15 19 19 15 19 19 14 18 18 14 17 17 13 16 16 12 15 15 | 967 | 0 0 0 0 0 0 0 0 0 0 0 0 |
967 | 11 14 14 10 13 13 9 12 12 9 11 11 8 10 10 10 12 12 | 968 | 0 0 0 0 0 0 0 0 0 6 6 6 |
968 | 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 969 | 18 18 18 46 46 46 86 86 86 18 18 18 |
969 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 970 | 2 2 6 34 34 34 10 10 10 6 6 6 |
970 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 971 | 210 210 210 253 253 253 253 253 253 253 253 253 |
971 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 972 | 253 253 253 253 253 253 253 253 253 253 253 253 |
972 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 973 | 253 253 253 253 253 253 234 234 234 242 242 242 |
973 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 974 | 253 253 253 253 253 253 253 253 253 253 253 253 |
974 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 975 | 253 253 253 253 253 253 253 253 253 253 253 253 |
975 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 976 | 253 253 253 253 253 253 253 253 253 253 253 253 |
976 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 977 | 253 253 253 253 253 253 253 253 253 253 253 253 |
977 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 978 | 253 253 253 253 253 253 221 221 221 6 6 6 |
978 | 0 0 0 | 979 | 2 2 6 2 2 6 6 6 6 30 30 30 |
979 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 980 | 2 2 6 2 2 6 2 2 6 2 2 6 |
980 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 981 | 2 2 6 82 82 82 54 54 54 18 18 18 |
981 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 982 | 6 6 6 0 0 0 0 0 0 0 0 0 |
982 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 983 | 0 0 0 0 0 0 0 0 0 0 0 0 |
983 | 0 0 0 0 0 0 0 0 0 82 81 62 230 229 82 230 229 82 | 984 | 0 0 0 0 0 0 0 0 0 0 0 0 |
984 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 985 | 0 0 0 0 0 0 0 0 0 0 0 0 |
985 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 986 | 0 0 0 0 0 0 0 0 0 0 0 0 |
986 | 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 161 156 96 | 987 | 0 0 0 0 0 0 0 0 0 0 0 0 |
987 | 118 116 76 82 81 62 13 14 12 10 13 13 12 15 15 13 17 17 | 988 | 0 0 0 0 0 0 0 0 0 10 10 10 |
988 | 15 19 19 16 20 20 20 23 23 20 24 24 23 27 26 26 28 27 | 989 | 26 26 26 66 66 66 62 62 62 2 2 6 |
989 | 26 28 27 26 28 27 23 27 26 18 22 22 20 23 23 17 21 21 | 990 | 2 2 6 38 38 38 10 10 10 26 26 26 |
990 | 17 21 21 16 20 20 16 20 20 16 20 20 16 20 20 16 19 19 | 991 | 238 238 238 253 253 253 253 253 253 253 253 253 |
991 | 15 19 19 15 19 19 15 18 18 14 17 17 13 17 17 13 16 16 | 992 | 253 253 253 253 253 253 253 253 253 253 253 253 |
992 | 12 15 15 12 14 14 12 14 14 12 14 14 12 14 14 23 24 24 | 993 | 253 253 253 253 253 253 231 231 231 238 238 238 |
993 | 6 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 994 | 253 253 253 253 253 253 253 253 253 253 253 253 |
994 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 995 | 253 253 253 253 253 253 253 253 253 253 253 253 |
995 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 996 | 253 253 253 253 253 253 253 253 253 253 253 253 |
996 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 997 | 253 253 253 253 253 253 253 253 253 253 253 253 |
997 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 998 | 253 253 253 253 253 253 231 231 231 6 6 6 |
998 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 999 | 2 2 6 2 2 6 10 10 10 30 30 30 |
999 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1000 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1000 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1001 | 2 2 6 66 66 66 58 58 58 22 22 22 |
1001 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1002 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1002 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1003 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1003 | 0 0 0 | 1004 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1004 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1005 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1005 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1006 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1006 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1007 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1007 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1008 | 0 0 0 0 0 0 0 0 0 10 10 10 |
1008 | 0 0 0 0 0 0 0 0 0 118 116 76 230 229 82 230 229 82 | 1009 | 38 38 38 78 78 78 6 6 6 2 2 6 |
1009 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1010 | 2 2 6 46 46 46 14 14 14 42 42 42 |
1010 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1011 | 246 246 246 253 253 253 253 253 253 253 253 253 |
1011 | 230 229 82 230 229 82 230 229 82 161 156 96 161 156 96 118 116 76 | 1012 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1012 | 71 71 57 13 14 12 9 12 12 10 13 13 12 15 15 13 17 17 | 1013 | 253 253 253 253 253 253 231 231 231 242 242 242 |
1013 | 15 18 18 15 19 19 16 20 20 17 21 21 17 21 21 18 22 22 | 1014 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1014 | 18 22 22 18 22 22 17 21 21 16 19 19 15 18 18 14 18 18 | 1015 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1015 | 16 19 19 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1016 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1016 | 15 19 19 15 19 19 15 18 18 14 18 18 16 20 20 23 25 24 | 1017 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1017 | 17 21 21 25 27 26 47 48 46 47 48 46 51 52 50 72 73 67 | 1018 | 253 253 253 253 253 253 234 234 234 10 10 10 |
1018 | 33 36 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1019 | 2 2 6 2 2 6 22 22 22 14 14 14 |
1019 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1020 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1020 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1021 | 2 2 6 66 66 66 62 62 62 22 22 22 |
1021 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1022 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1022 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1023 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1023 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1024 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1024 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1025 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1025 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1026 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1026 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1027 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1027 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1028 | 0 0 0 0 0 0 6 6 6 18 18 18 |
1028 | 0 0 0 | 1029 | 50 50 50 74 74 74 2 2 6 2 2 6 |
1029 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1030 | 14 14 14 70 70 70 34 34 34 62 62 62 |
1030 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1031 | 250 250 250 253 253 253 253 253 253 253 253 253 |
1031 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1032 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1032 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1033 | 253 253 253 253 253 253 231 231 231 246 246 246 |
1033 | 0 0 0 0 0 0 0 0 0 118 116 76 230 229 82 230 229 82 | 1034 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1034 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1035 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1035 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1036 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1036 | 230 229 82 230 229 82 161 156 96 118 116 76 118 116 76 46 47 43 | 1037 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1037 | 9 11 11 9 11 11 10 12 12 11 13 13 12 15 15 14 17 17 | 1038 | 253 253 253 253 253 253 234 234 234 14 14 14 |
1038 | 15 18 18 15 19 19 16 20 20 16 20 20 16 20 20 16 20 20 | 1039 | 2 2 6 2 2 6 30 30 30 2 2 6 |
1039 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1040 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1040 | 15 19 19 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1041 | 2 2 6 66 66 66 62 62 62 22 22 22 |
1041 | 15 19 19 16 20 20 20 24 24 55 56 53 32 34 33 84 83 72 | 1042 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1042 | 90 89 73 110 109 94 110 109 94 105 104 92 110 109 94 110 109 94 | 1043 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1043 | 72 73 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1044 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1044 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1045 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1045 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1046 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1046 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1047 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1047 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1048 | 0 0 0 0 0 0 6 6 6 18 18 18 |
1048 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1049 | 54 54 54 62 62 62 2 2 6 2 2 6 |
1049 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1050 | 2 2 6 30 30 30 46 46 46 70 70 70 |
1050 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1051 | 250 250 250 253 253 253 253 253 253 253 253 253 |
1051 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1052 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1052 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1053 | 253 253 253 253 253 253 231 231 231 246 246 246 |
1053 | 0 0 0 | 1054 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1054 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1055 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1055 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1056 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1056 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1057 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1057 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1058 | 253 253 253 253 253 253 226 226 226 10 10 10 |
1058 | 0 0 0 0 0 0 0 0 0 96 95 69 230 229 82 230 229 82 | 1059 | 2 2 6 6 6 6 30 30 30 2 2 6 |
1059 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1060 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1060 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1061 | 2 2 6 66 66 66 58 58 58 22 22 22 |
1061 | 230 229 82 161 156 96 118 116 76 82 81 62 16 17 12 9 11 11 | 1062 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1062 | 9 11 11 9 12 12 10 13 13 12 14 14 13 16 16 14 18 18 | 1063 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1063 | 15 19 19 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1064 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1064 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1065 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1065 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1066 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1066 | 16 19 19 33 36 34 99 98 80 156 151 111 145 141 105 184 179 149 | 1067 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1067 | 168 163 120 184 179 149 177 172 135 156 151 111 145 141 105 110 109 94 | 1068 | 0 0 0 0 0 0 6 6 6 22 22 22 |
1068 | 90 89 73 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 | 1069 | 58 58 58 62 62 62 2 2 6 2 2 6 |
1069 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1070 | 2 2 6 2 2 6 30 30 30 78 78 78 |
1070 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1071 | 250 250 250 253 253 253 253 253 253 253 253 253 |
1071 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1072 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1072 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1073 | 253 253 253 253 253 253 231 231 231 246 246 246 |
1073 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1074 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1074 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1075 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1075 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1076 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1076 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1077 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1077 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1078 | 253 253 253 253 253 253 206 206 206 2 2 6 |
1078 | 0 0 0 | 1079 | 22 22 22 34 34 34 18 14 6 22 22 22 |
1079 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1080 | 26 26 26 18 18 18 6 6 6 2 2 6 |
1080 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1081 | 2 2 6 82 82 82 54 54 54 18 18 18 |
1081 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1082 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1082 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1083 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1083 | 0 0 0 0 0 0 0 0 0 71 71 57 230 229 82 230 229 82 | 1084 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1084 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 | 1085 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1085 | 230 229 82 161 156 96 230 229 82 230 229 82 230 229 82 161 156 96 | 1086 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1086 | 118 116 76 82 81 62 30 31 28 9 11 11 9 11 11 9 11 11 | 1087 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1087 | 10 12 12 10 13 13 11 14 14 13 16 16 14 17 17 15 18 18 | 1088 | 0 0 0 0 0 0 6 6 6 26 26 26 |
1088 | 15 19 19 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1089 | 62 62 62 106 106 106 74 54 14 185 133 11 |
1089 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1090 | 210 162 10 121 92 8 6 6 6 62 62 62 |
1090 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1091 | 238 238 238 253 253 253 253 253 253 253 253 253 |
1091 | 18 22 22 58 59 55 137 133 100 197 193 154 214 212 158 210 208 158 | 1092 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1092 | 197 193 154 184 179 149 184 179 149 137 133 100 110 109 94 99 98 80 | 1093 | 253 253 253 253 253 253 231 231 231 246 246 246 |
1093 | 84 83 72 10 10 9 0 0 0 0 0 0 0 0 0 0 0 0 | 1094 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1094 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1095 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1095 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1096 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1096 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1097 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1097 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1098 | 253 253 253 253 253 253 158 158 158 18 18 18 |
1098 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1099 | 14 14 14 2 2 6 2 2 6 2 2 6 |
1099 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1100 | 6 6 6 18 18 18 66 66 66 38 38 38 |
1100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1101 | 6 6 6 94 94 94 50 50 50 18 18 18 |
1101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1102 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1103 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1103 | 0 0 0 | 1104 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1105 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1105 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1106 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1107 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1107 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1108 | 10 10 10 10 10 10 18 18 18 38 38 38 |
1108 | 0 0 0 0 0 0 0 0 0 16 17 12 230 229 82 230 229 82 | 1109 | 78 78 78 142 134 106 216 158 10 242 186 14 |
1109 | 230 229 82 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 | 1110 | 246 190 14 246 190 14 156 118 10 10 10 10 |
1110 | 161 156 96 161 156 96 161 156 96 161 156 96 118 116 76 71 71 57 | 1111 | 90 90 90 238 238 238 253 253 253 253 253 253 |
1111 | 21 22 20 12 14 14 11 13 13 10 12 12 10 12 12 10 13 13 | 1112 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1112 | 11 13 13 12 15 15 13 16 16 14 17 17 14 18 18 15 19 19 | 1113 | 253 253 253 253 253 253 231 231 231 250 250 250 |
1113 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1114 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1114 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1115 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1115 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 17 21 21 | 1116 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1116 | 23 27 26 84 83 72 184 179 149 251 251 187 210 208 158 184 179 149 | 1117 | 253 253 253 253 253 253 253 253 253 246 230 190 |
1117 | 184 179 149 156 151 111 110 109 94 84 83 72 63 64 60 51 52 50 | 1118 | 238 204 91 238 204 91 181 142 44 37 26 9 |
1118 | 18 22 22 6 8 8 0 0 0 0 0 0 0 0 0 0 0 0 | 1119 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1119 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1120 | 2 2 6 2 2 6 38 38 38 46 46 46 |
1120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1121 | 26 26 26 106 106 106 54 54 54 18 18 18 |
1121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1122 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1123 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1124 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1125 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1126 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1127 | 0 0 0 6 6 6 14 14 14 22 22 22 |
1127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1128 | 30 30 30 38 38 38 50 50 50 70 70 70 |
1128 | 0 0 0 | 1129 | 106 106 106 190 142 34 226 170 11 242 186 14 |
1129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1130 | 246 190 14 246 190 14 246 190 14 154 114 10 |
1130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1131 | 6 6 6 74 74 74 226 226 226 253 253 253 |
1131 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1132 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1132 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1133 | 253 253 253 253 253 253 231 231 231 250 250 250 |
1133 | 0 0 0 0 0 0 0 0 0 0 0 0 118 116 76 230 229 82 | 1134 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1134 | 230 229 82 230 229 82 230 229 82 230 229 82 161 156 96 161 156 96 | 1135 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1135 | 161 156 96 161 156 96 118 116 76 53 55 47 20 23 22 16 19 19 | 1136 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1136 | 13 16 16 12 15 15 12 14 14 11 14 14 11 14 14 11 14 14 | 1137 | 253 253 253 253 253 253 253 253 253 228 184 62 |
1137 | 12 15 15 13 16 16 14 17 17 15 19 19 16 20 20 17 21 21 | 1138 | 241 196 14 241 208 19 232 195 16 38 30 10 |
1138 | 23 27 26 18 22 22 20 24 24 23 27 26 30 32 31 17 21 21 | 1139 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1139 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1140 | 2 2 6 6 6 6 30 30 30 26 26 26 |
1140 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1141 | 203 166 17 154 142 90 66 66 66 26 26 26 |
1141 | 23 27 26 33 37 35 137 133 100 156 151 111 158 153 112 105 104 92 | 1142 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1142 | 105 104 92 68 70 65 39 40 39 18 22 22 12 14 14 12 15 15 | 1143 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1143 | 9 11 11 4 5 5 0 0 0 0 0 0 0 0 0 0 0 0 | 1144 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1144 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1145 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1145 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1146 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1147 | 6 6 6 18 18 18 38 38 38 58 58 58 |
1147 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1148 | 78 78 78 86 86 86 101 101 101 123 123 123 |
1148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1149 | 175 146 61 210 150 10 234 174 13 246 186 14 |
1149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1150 | 246 190 14 246 190 14 246 190 14 238 190 10 |
1150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1151 | 102 78 10 2 2 6 46 46 46 198 198 198 |
1151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1152 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1152 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1153 | 253 253 253 253 253 253 234 234 234 242 242 242 |
1153 | 0 0 0 | 1154 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1154 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1155 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1155 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1156 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1156 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1157 | 253 253 253 253 253 253 253 253 253 224 178 62 |
1157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1158 | 242 186 14 241 196 14 210 166 10 22 18 6 |
1158 | 0 0 0 0 0 0 0 0 0 0 0 0 16 17 12 230 229 82 | 1159 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1159 | 230 229 82 230 229 82 230 229 82 161 156 96 118 116 76 118 116 76 | 1160 | 2 2 6 2 2 6 6 6 6 121 92 8 |
1160 | 118 116 76 66 65 55 43 45 43 32 34 33 25 27 26 20 23 22 | 1161 | 238 202 15 232 195 16 82 82 82 34 34 34 |
1161 | 17 20 20 15 18 18 14 17 17 15 18 18 13 16 16 14 17 17 | 1162 | 10 10 10 0 0 0 0 0 0 0 0 0 |
1162 | 14 18 18 16 20 20 32 34 33 55 57 54 58 59 55 72 73 67 | 1163 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1163 | 105 104 92 55 57 54 65 66 61 63 64 60 40 43 41 33 37 35 | 1164 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1164 | 41 42 42 20 24 24 16 20 20 16 20 20 16 20 20 16 20 20 | 1165 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1165 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1166 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1166 | 17 21 21 26 28 27 30 32 31 35 37 36 68 70 65 39 40 39 | 1167 | 14 14 14 38 38 38 70 70 70 154 122 46 |
1167 | 23 27 26 15 18 18 13 16 16 11 14 14 9 12 12 8 10 10 | 1168 | 190 142 34 200 144 11 197 138 11 197 138 11 |
1168 | 7 9 9 6 7 7 0 0 0 0 0 0 0 0 0 0 0 0 | 1169 | 213 154 11 226 170 11 242 186 14 246 190 14 |
1169 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1170 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1170 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1171 | 225 175 15 46 32 6 2 2 6 22 22 22 |
1171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1172 | 158 158 158 250 250 250 253 253 253 253 253 253 |
1172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1173 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1174 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1175 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1175 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1176 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1177 | 253 253 253 250 250 250 242 242 242 224 178 62 |
1177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1178 | 239 182 13 236 186 11 213 154 11 46 32 6 |
1178 | 0 0 0 | 1179 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1179 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1180 | 2 2 6 2 2 6 61 42 6 225 175 15 |
1180 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1181 | 238 190 10 236 186 11 112 100 78 42 42 42 |
1181 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1182 | 14 14 14 0 0 0 0 0 0 0 0 0 |
1182 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1183 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1183 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 38 35 | 1184 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1184 | 230 229 82 230 229 82 230 229 82 96 95 69 30 31 28 49 51 48 | 1185 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1185 | 90 89 73 68 70 65 55 57 54 47 48 46 47 48 46 43 45 43 | 1186 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1186 | 32 34 33 43 45 43 43 45 43 23 27 26 25 27 26 40 43 41 | 1187 | 22 22 22 54 54 54 154 122 46 213 154 11 |
1187 | 40 43 41 90 89 73 110 109 94 145 141 105 156 151 111 156 151 111 | 1188 | 226 170 11 230 174 11 226 170 11 226 170 11 |
1188 | 184 179 149 184 179 149 177 172 135 184 179 149 137 133 100 84 83 72 | 1189 | 236 178 12 242 186 14 246 190 14 246 190 14 |
1189 | 105 104 92 63 64 60 49 51 48 47 48 46 28 31 30 18 22 22 | 1190 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1190 | 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1191 | 241 196 14 184 144 12 10 10 10 2 2 6 |
1191 | 16 20 20 15 19 19 15 19 19 15 19 19 18 22 22 15 19 19 | 1192 | 6 6 6 116 116 116 242 242 242 253 253 253 |
1192 | 13 16 16 12 15 15 11 14 14 10 13 13 9 12 12 9 11 11 | 1193 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1193 | 8 10 10 6 8 8 0 0 0 0 0 0 0 0 0 0 0 0 | 1194 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1194 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1195 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1195 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1196 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1196 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1197 | 253 253 253 231 231 231 198 198 198 214 170 54 |
1197 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1198 | 236 178 12 236 178 12 210 150 10 137 92 6 |
1198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1199 | 18 14 6 2 2 6 2 2 6 2 2 6 |
1199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1200 | 6 6 6 70 47 6 200 144 11 236 178 12 |
1200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1201 | 239 182 13 239 182 13 124 112 88 58 58 58 |
1201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1202 | 22 22 22 6 6 6 0 0 0 0 0 0 |
1202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1203 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1203 | 0 0 0 | 1204 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1204 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1205 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1206 | 0 0 0 0 0 0 0 0 0 10 10 10 |
1206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1207 | 30 30 30 70 70 70 180 133 36 226 170 11 |
1207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1208 | 239 182 13 242 186 14 242 186 14 246 186 14 |
1208 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1209 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1209 | 30 31 28 230 229 82 71 71 57 2 2 1 0 0 0 58 59 55 | 1210 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1210 | 105 104 92 84 83 72 65 66 61 84 83 72 110 109 94 110 109 94 | 1211 | 246 190 14 232 195 16 98 70 6 2 2 6 |
1211 | 145 141 105 105 104 92 110 109 94 110 109 94 84 83 72 110 109 94 | 1212 | 2 2 6 2 2 6 66 66 66 221 221 221 |
1212 | 158 153 112 197 193 154 197 193 154 239 239 170 251 251 187 251 251 187 | 1213 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1213 | 251 251 187 251 251 187 251 251 187 251 251 187 210 208 158 197 193 154 | 1214 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1214 | 197 193 154 184 179 149 145 141 105 137 133 100 105 104 92 47 48 46 | 1215 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1215 | 20 23 23 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1216 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1216 | 16 20 20 16 19 19 15 19 19 15 19 19 14 18 18 14 17 17 | 1217 | 253 253 253 206 206 206 198 198 198 214 166 58 |
1217 | 13 17 17 13 16 16 12 14 14 12 14 14 13 13 13 13 13 13 | 1218 | 230 174 11 230 174 11 216 158 10 192 133 9 |
1218 | 13 13 13 12 12 12 10 10 9 6 7 7 2 2 2 0 0 0 | 1219 | 163 110 8 116 81 8 102 78 10 116 81 8 |
1219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1220 | 167 114 7 197 138 11 226 170 11 239 182 13 |
1220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1221 | 242 186 14 242 186 14 162 146 94 78 78 78 |
1221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1222 | 34 34 34 14 14 14 6 6 6 0 0 0 |
1222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1223 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1223 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1224 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1224 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1225 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1225 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1226 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1226 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1227 | 30 30 30 78 78 78 190 142 34 226 170 11 |
1227 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1228 | 239 182 13 246 190 14 246 190 14 246 190 14 |
1228 | 0 0 0 | 1229 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1230 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1231 | 246 190 14 241 196 14 203 166 17 22 18 6 |
1231 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1232 | 2 2 6 2 2 6 2 2 6 38 38 38 |
1232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1233 | 218 218 218 253 253 253 253 253 253 253 253 253 |
1233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1234 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1234 | 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 65 66 61 | 1235 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1235 | 105 104 92 84 83 72 84 83 72 110 109 94 184 179 149 210 208 158 | 1236 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1236 | 210 208 158 210 208 158 214 212 158 197 193 154 214 212 158 210 208 158 | 1237 | 250 250 250 206 206 206 198 198 198 202 162 69 |
1237 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1238 | 226 170 11 236 178 12 224 166 10 210 150 10 |
1238 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1239 | 200 144 11 197 138 11 192 133 9 197 138 11 |
1239 | 251 251 187 251 251 187 239 239 170 251 251 187 184 179 149 84 83 72 | 1240 | 210 150 10 226 170 11 242 186 14 246 190 14 |
1240 | 26 28 27 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1241 | 246 190 14 246 186 14 225 175 15 124 112 88 |
1241 | 16 20 20 16 20 20 15 19 19 15 19 19 15 18 18 14 18 18 | 1242 | 62 62 62 30 30 30 14 14 14 6 6 6 |
1242 | 13 17 17 13 16 16 15 15 15 14 14 13 14 14 13 14 14 13 | 1243 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1243 | 13 13 13 13 13 13 12 12 12 12 12 12 12 12 12 3 4 4 | 1244 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1245 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1245 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1246 | 0 0 0 0 0 0 0 0 0 10 10 10 |
1246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1247 | 30 30 30 78 78 78 174 135 50 224 166 10 |
1247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1248 | 239 182 13 246 190 14 246 190 14 246 190 14 |
1248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1249 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1250 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1250 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1251 | 246 190 14 246 190 14 241 196 14 139 102 15 |
1251 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1252 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1252 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1253 | 78 78 78 250 250 250 253 253 253 253 253 253 |
1253 | 0 0 0 | 1254 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1254 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1255 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1256 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1257 | 250 250 250 214 214 214 198 198 198 190 150 46 |
1257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1258 | 219 162 10 236 178 12 234 174 13 224 166 10 |
1258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1259 | 216 158 10 213 154 11 213 154 11 216 158 10 |
1259 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72 73 67 | 1260 | 226 170 11 239 182 13 246 190 14 246 190 14 |
1260 | 105 104 92 99 98 80 84 83 72 99 98 80 177 172 135 197 193 154 | 1261 | 246 190 14 246 190 14 242 186 14 206 162 42 |
1261 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1262 | 101 101 101 58 58 58 30 30 30 14 14 14 |
1262 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1263 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1263 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1264 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1264 | 251 251 187 251 251 187 251 251 187 214 212 158 197 193 154 99 98 80 | 1265 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1265 | 23 27 26 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1266 | 0 0 0 0 0 0 0 0 0 10 10 10 |
1266 | 16 20 20 16 20 20 15 19 19 15 19 19 15 18 18 14 18 18 | 1267 | 30 30 30 74 74 74 174 135 50 216 158 10 |
1267 | 14 17 17 16 16 16 16 16 16 16 16 16 15 15 15 14 14 13 | 1268 | 236 178 12 246 190 14 246 190 14 246 190 14 |
1268 | 14 14 13 13 13 13 13 13 13 12 12 12 12 12 12 12 12 12 | 1269 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1269 | 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1270 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1271 | 246 190 14 246 190 14 241 196 14 226 184 13 |
1271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1272 | 61 42 6 2 2 6 2 2 6 2 2 6 |
1272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1273 | 22 22 22 238 238 238 253 253 253 253 253 253 |
1273 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1274 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1275 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1275 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1276 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1277 | 253 253 253 226 226 226 187 187 187 180 133 36 |
1277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1278 | 216 158 10 236 178 12 239 182 13 236 178 12 |
1278 | 0 0 0 | 1279 | 230 174 11 226 170 11 226 170 11 230 174 11 |
1279 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1280 | 236 178 12 242 186 14 246 190 14 246 190 14 |
1280 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1281 | 246 190 14 246 190 14 246 186 14 239 182 13 |
1281 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1282 | 206 162 42 106 106 106 66 66 66 34 34 34 |
1282 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1283 | 14 14 14 6 6 6 0 0 0 0 0 0 |
1283 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1284 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1284 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 84 83 72 | 1285 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1285 | 110 109 94 99 98 80 72 73 67 63 64 60 99 98 80 177 172 135 | 1286 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1286 | 184 179 149 210 208 158 251 251 187 251 251 187 251 251 187 251 251 187 | 1287 | 26 26 26 70 70 70 163 133 67 213 154 11 |
1287 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1288 | 236 178 12 246 190 14 246 190 14 246 190 14 |
1288 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | 1289 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1289 | 251 251 187 210 208 158 184 179 149 177 172 135 110 109 94 33 37 35 | 1290 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1290 | 17 21 21 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1291 | 246 190 14 246 190 14 246 190 14 241 196 14 |
1291 | 16 20 20 16 20 20 15 19 19 15 19 19 15 19 19 14 18 18 | 1292 | 190 146 13 18 14 6 2 2 6 2 2 6 |
1292 | 15 18 18 18 19 18 18 19 18 17 17 17 16 16 16 15 15 15 | 1293 | 46 46 46 246 246 246 253 253 253 253 253 253 |
1293 | 14 14 13 13 13 13 13 13 13 12 12 12 12 12 12 12 12 12 | 1294 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1294 | 10 10 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1295 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1295 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1296 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1296 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1297 | 253 253 253 221 221 221 86 86 86 156 107 11 |
1297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1298 | 216 158 10 236 178 12 242 186 14 246 186 14 |
1298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1299 | 242 186 14 239 182 13 239 182 13 242 186 14 |
1299 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1300 | 242 186 14 246 186 14 246 190 14 246 190 14 |
1300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1301 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1301 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1302 | 242 186 14 225 175 15 142 122 72 66 66 66 |
1302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1303 | 30 30 30 10 10 10 0 0 0 0 0 0 |
1303 | 0 0 0 | 1304 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1305 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1305 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1306 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1306 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1307 | 26 26 26 70 70 70 163 133 67 210 150 10 |
1307 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1308 | 236 178 12 246 190 14 246 190 14 246 190 14 |
1308 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1309 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1309 | 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 105 104 92 | 1310 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1310 | 108 107 93 99 98 80 72 73 67 63 64 60 51 52 50 87 86 72 | 1311 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1311 | 105 104 92 110 109 94 108 107 93 156 151 111 184 179 149 184 179 149 | 1312 | 232 195 16 121 92 8 34 34 34 106 106 106 |
1312 | 197 193 154 197 193 154 197 193 154 184 179 149 184 179 149 177 172 135 | 1313 | 221 221 221 253 253 253 253 253 253 253 253 253 |
1313 | 197 193 154 156 151 111 177 172 135 184 179 149 168 163 120 137 133 100 | 1314 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1314 | 145 141 105 110 109 94 99 98 80 47 48 46 55 57 54 15 19 19 | 1315 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1315 | 16 19 19 16 20 20 16 20 20 16 20 20 16 20 20 16 20 20 | 1316 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1316 | 17 20 20 17 21 21 16 20 20 16 19 19 15 19 19 16 19 19 | 1317 | 242 242 242 82 82 82 18 14 6 163 110 8 |
1317 | 20 20 20 21 22 21 20 20 20 19 20 19 18 19 18 16 16 16 | 1318 | 216 158 10 236 178 12 242 186 14 246 190 14 |
1318 | 15 15 15 14 14 13 13 13 13 13 13 13 12 12 12 12 12 12 | 1319 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1319 | 12 12 12 4 5 5 0 0 0 0 0 0 0 0 0 0 0 0 | 1320 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1320 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1321 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1321 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1322 | 246 190 14 246 190 14 242 186 14 163 133 67 |
1322 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1323 | 46 46 46 18 18 18 6 6 6 0 0 0 |
1323 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1324 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1324 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1325 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1326 | 0 0 0 0 0 0 0 0 0 10 10 10 |
1326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1327 | 30 30 30 78 78 78 163 133 67 210 150 10 |
1327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1328 | 236 178 12 246 186 14 246 190 14 246 190 14 |
1328 | 0 0 0 | 1329 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1329 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1330 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1330 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1331 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1331 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1332 | 241 196 14 215 174 15 190 178 144 253 253 253 |
1332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1333 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1334 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1334 | 0 0 0 0 0 0 0 0 0 0 0 0 58 59 55 110 109 94 | 1335 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1335 | 105 104 92 90 89 73 72 73 67 55 57 54 43 45 43 39 40 39 | 1336 | 253 253 253 253 253 253 253 253 253 218 218 218 |
1336 | 43 45 43 46 47 45 43 45 43 68 70 65 65 66 61 63 64 60 | 1337 | 58 58 58 2 2 6 22 18 6 167 114 7 |
1337 | 108 107 93 72 73 67 105 104 92 90 89 73 72 73 67 40 43 41 | 1338 | 216 158 10 236 178 12 246 186 14 246 190 14 |
1338 | 72 73 67 68 70 65 68 70 65 58 59 55 63 64 60 49 51 48 | 1339 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1339 | 43 45 43 33 36 34 27 30 29 20 24 24 16 20 20 15 19 19 | 1340 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1340 | 15 19 19 15 19 19 15 19 19 16 19 19 16 20 20 16 20 20 | 1341 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1341 | 17 21 21 20 24 24 20 23 22 17 21 21 17 20 20 20 20 20 | 1342 | 246 190 14 246 186 14 242 186 14 190 150 46 |
1342 | 21 22 21 21 22 21 21 22 21 21 22 21 20 20 20 18 19 18 | 1343 | 54 54 54 22 22 22 6 6 6 0 0 0 |
1343 | 16 16 16 15 15 15 13 13 13 13 13 13 12 12 12 12 12 12 | 1344 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1344 | 12 12 12 10 10 9 0 0 0 0 0 0 0 0 0 0 0 0 | 1345 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1346 | 0 0 0 0 0 0 0 0 0 14 14 14 |
1346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1347 | 38 38 38 86 86 86 180 133 36 213 154 11 |
1347 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1348 | 236 178 12 246 186 14 246 190 14 246 190 14 |
1348 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1349 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1349 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1350 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1350 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1351 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1352 | 246 190 14 232 195 16 190 146 13 214 214 214 |
1352 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1353 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1353 | 0 0 0 | 1354 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1355 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1355 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1356 | 253 253 253 250 250 250 170 170 170 26 26 26 |
1356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1357 | 2 2 6 2 2 6 37 26 9 163 110 8 |
1357 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1358 | 219 162 10 239 182 13 246 186 14 246 190 14 |
1358 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1359 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1359 | 0 0 0 0 0 0 0 0 0 21 22 21 110 109 94 110 109 94 | 1360 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1360 | 105 104 92 84 83 72 68 70 65 51 52 50 41 42 42 33 37 35 | 1361 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1361 | 28 31 30 23 27 26 20 23 23 18 22 22 17 20 20 25 27 26 | 1362 | 246 186 14 236 178 12 224 166 10 142 122 72 |
1362 | 26 28 27 27 30 29 25 27 26 20 23 23 23 27 26 30 32 31 | 1363 | 46 46 46 18 18 18 6 6 6 0 0 0 |
1363 | 20 24 24 17 21 21 18 22 22 15 19 19 26 28 27 20 23 23 | 1364 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1364 | 14 18 18 15 19 19 15 18 18 15 19 19 15 19 19 15 19 19 | 1365 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1365 | 15 19 19 15 19 19 15 19 19 15 19 19 15 19 19 16 19 19 | 1366 | 0 0 0 0 0 0 6 6 6 18 18 18 |
1366 | 16 20 20 22 24 23 24 26 24 22 24 23 20 23 22 22 24 23 | 1367 | 50 50 50 109 106 95 192 133 9 224 166 10 |
1367 | 24 26 24 24 26 24 23 24 24 22 24 23 21 22 21 19 20 19 | 1368 | 242 186 14 246 190 14 246 190 14 246 190 14 |
1368 | 17 17 17 15 15 15 14 14 13 13 13 13 12 12 12 12 12 12 | 1369 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1369 | 12 12 12 12 12 12 2 2 2 0 0 0 0 0 0 0 0 0 | 1370 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1371 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1371 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1372 | 242 186 14 226 184 13 210 162 10 142 110 46 |
1372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1373 | 226 226 226 253 253 253 253 253 253 253 253 253 |
1373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1374 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1375 | 253 253 253 253 253 253 253 253 253 253 253 253 |
1375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1376 | 198 198 198 66 66 66 2 2 6 2 2 6 |
1376 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1377 | 2 2 6 2 2 6 50 34 6 156 107 11 |
1377 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1378 | 219 162 10 239 182 13 246 186 14 246 190 14 |
1378 | 0 0 0 | 1379 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1379 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1380 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1380 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1381 | 246 190 14 246 190 14 246 190 14 242 186 14 |
1381 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1382 | 234 174 13 213 154 11 154 122 46 66 66 66 |
1382 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1383 | 30 30 30 10 10 10 0 0 0 0 0 0 |
1383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1384 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1384 | 0 0 0 0 0 0 2 2 2 99 98 80 110 109 94 108 107 93 | 1385 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1385 | 105 104 92 84 83 72 63 64 60 49 51 48 39 40 39 32 34 33 | 1386 | 0 0 0 0 0 0 6 6 6 22 22 22 |
1386 | 27 30 29 23 25 24 20 23 23 17 20 20 15 19 19 14 18 18 | 1387 | 58 58 58 154 121 60 206 145 10 234 174 13 |
1387 | 14 17 17 13 17 17 13 17 17 13 17 17 13 17 17 13 17 17 | 1388 | 242 186 14 246 186 14 246 190 14 246 190 14 |
1388 | 14 17 17 14 17 17 14 17 17 14 17 17 14 17 17 14 17 17 | 1389 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1389 | 14 18 18 14 18 18 14 18 18 14 18 18 15 18 18 15 19 19 | 1390 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1390 | 15 19 19 15 19 19 15 19 19 15 19 19 15 19 19 15 19 19 | 1391 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1391 | 15 19 19 17 21 21 27 29 28 26 28 27 25 27 26 25 27 26 | 1392 | 246 186 14 236 178 12 210 162 10 163 110 8 |
1392 | 27 29 28 27 29 28 26 28 27 24 26 24 21 22 21 20 20 20 | 1393 | 61 42 6 138 138 138 218 218 218 250 250 250 |
1393 | 18 19 18 16 16 16 14 14 13 13 13 13 12 12 12 12 12 12 | 1394 | 253 253 253 253 253 253 253 253 253 250 250 250 |
1394 | 12 12 12 12 12 12 4 5 5 0 0 0 0 0 0 0 0 0 | 1395 | 242 242 242 210 210 210 144 144 144 66 66 66 |
1395 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1396 | 6 6 6 2 2 6 2 2 6 2 2 6 |
1396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1397 | 2 2 6 2 2 6 61 42 6 163 110 8 |
1397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1398 | 216 158 10 236 178 12 246 190 14 246 190 14 |
1398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1399 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1400 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1401 | 246 190 14 239 182 13 230 174 11 216 158 10 |
1401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1402 | 190 142 34 124 112 88 70 70 70 38 38 38 |
1402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1403 | 18 18 18 6 6 6 0 0 0 0 0 0 |
1403 | 0 0 0 | 1404 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1405 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1405 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1406 | 0 0 0 0 0 0 6 6 6 22 22 22 |
1406 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1407 | 62 62 62 168 124 44 206 145 10 224 166 10 |
1407 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1408 | 236 178 12 239 182 13 242 186 14 242 186 14 |
1408 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1409 | 246 186 14 246 190 14 246 190 14 246 190 14 |
1409 | 0 0 0 0 0 0 51 52 50 110 109 94 110 109 94 105 104 92 | 1410 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1410 | 90 89 73 72 73 67 55 57 54 43 45 43 35 37 36 30 32 31 | 1411 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1411 | 26 28 27 20 24 24 17 21 21 16 19 19 15 18 18 14 17 17 | 1412 | 246 190 14 236 178 12 216 158 10 175 118 6 |
1412 | 13 16 16 13 16 16 13 16 16 13 16 16 13 16 16 13 16 16 | 1413 | 80 54 7 2 2 6 6 6 6 30 30 30 |
1413 | 13 16 16 13 16 16 13 16 16 13 17 17 13 17 17 14 17 17 | 1414 | 54 54 54 62 62 62 50 50 50 38 38 38 |
1414 | 14 17 17 14 17 17 14 17 17 14 18 18 14 18 18 14 18 18 | 1415 | 14 14 14 2 2 6 2 2 6 2 2 6 |
1415 | 15 18 18 15 18 18 15 19 19 15 19 19 15 19 19 15 19 19 | 1416 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1416 | 15 19 19 15 19 19 27 29 28 32 34 33 28 31 30 27 29 28 | 1417 | 2 2 6 6 6 6 80 54 7 167 114 7 |
1417 | 30 32 31 30 32 31 30 31 28 26 28 27 23 24 24 21 22 21 | 1418 | 213 154 11 236 178 12 246 190 14 246 190 14 |
1418 | 19 20 19 16 16 16 14 14 13 13 13 13 12 12 12 12 12 12 | 1419 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1419 | 12 12 12 12 12 12 6 7 7 0 0 0 0 0 0 0 0 0 | 1420 | 246 190 14 242 186 14 239 182 13 239 182 13 |
1420 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1421 | 230 174 11 210 150 10 174 135 50 124 112 88 |
1421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1422 | 82 82 82 54 54 54 34 34 34 18 18 18 |
1422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1423 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1423 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1424 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1425 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1426 | 0 0 0 0 0 0 6 6 6 18 18 18 |
1426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1427 | 50 50 50 158 118 36 192 133 9 200 144 11 |
1427 | 0 0 0 0 0 0 0 0 0 3 3 3 0 0 0 0 0 0 | 1428 | 216 158 10 219 162 10 224 166 10 226 170 11 |
1428 | 0 0 0 | 1429 | 230 174 11 236 178 12 239 182 13 239 182 13 |
1429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1430 | 242 186 14 246 186 14 246 190 14 246 190 14 |
1430 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1431 | 246 190 14 246 190 14 246 190 14 246 190 14 |
1431 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1432 | 246 186 14 230 174 11 210 150 10 163 110 8 |
1432 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1433 | 104 69 6 10 10 10 2 2 6 2 2 6 |
1433 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1434 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1434 | 0 0 0 10 10 9 108 107 93 110 109 94 108 107 93 99 98 80 | 1435 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1435 | 84 83 72 63 64 60 49 51 48 40 43 41 33 36 34 27 30 29 | 1436 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1436 | 23 27 26 18 22 22 17 20 20 15 18 18 14 17 17 13 16 16 | 1437 | 2 2 6 6 6 6 91 60 6 167 114 7 |
1437 | 13 16 16 13 16 16 12 15 15 12 15 15 12 15 15 12 15 15 | 1438 | 206 145 10 230 174 11 242 186 14 246 190 14 |
1438 | 13 16 16 13 16 16 13 16 16 13 16 16 13 16 16 13 16 16 | 1439 | 246 190 14 246 190 14 246 186 14 242 186 14 |
1439 | 13 17 17 13 17 17 14 17 17 14 17 17 14 17 17 14 18 18 | 1440 | 239 182 13 230 174 11 224 166 10 213 154 11 |
1440 | 14 18 18 14 18 18 15 18 18 15 18 18 15 19 19 15 19 19 | 1441 | 180 133 36 124 112 88 86 86 86 58 58 58 |
1441 | 15 19 19 15 19 19 17 21 21 33 36 34 32 34 33 31 33 31 | 1442 | 38 38 38 22 22 22 10 10 10 6 6 6 |
1442 | 33 36 34 33 36 34 31 33 31 27 29 28 25 27 26 21 22 21 | 1443 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1443 | 19 20 19 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1444 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1444 | 12 12 12 12 12 12 8 8 7 0 0 0 0 0 0 0 0 0 | 1445 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1446 | 0 0 0 0 0 0 0 0 0 14 14 14 |
1446 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1447 | 34 34 34 70 70 70 138 110 50 158 118 36 |
1447 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1448 | 167 114 7 180 123 7 192 133 9 197 138 11 |
1448 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1449 | 200 144 11 206 145 10 213 154 11 219 162 10 |
1449 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1450 | 224 166 10 230 174 11 239 182 13 242 186 14 |
1450 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1451 | 246 186 14 246 186 14 246 186 14 246 186 14 |
1451 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1452 | 239 182 13 216 158 10 185 133 11 152 99 6 |
1452 | 0 0 0 0 0 0 63 64 60 137 133 100 43 45 43 0 0 0 | 1453 | 104 69 6 18 14 6 2 2 6 2 2 6 |
1453 | 0 0 0 | 1454 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1455 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1455 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1456 | 2 2 6 2 2 6 2 2 6 2 2 6 |
1456 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1457 | 2 2 6 6 6 6 80 54 7 152 99 6 |
1457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1458 | 192 133 9 219 162 10 236 178 12 239 182 13 |
1458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1459 | 246 186 14 242 186 14 239 182 13 236 178 12 |
1459 | 0 0 0 68 70 65 110 109 94 110 109 94 105 104 92 84 83 72 | 1460 | 224 166 10 206 145 10 192 133 9 154 121 60 |
1460 | 68 70 65 55 57 54 43 45 43 35 37 36 30 32 31 26 28 27 | 1461 | 94 94 94 62 62 62 42 42 42 22 22 22 |
1461 | 20 24 24 17 21 21 16 19 19 14 17 17 13 16 16 12 15 15 | 1462 | 14 14 14 6 6 6 0 0 0 0 0 0 |
1462 | 12 15 15 12 15 15 12 15 15 12 15 15 12 15 15 12 15 15 | 1463 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1463 | 12 15 15 12 15 15 12 15 15 12 15 15 12 15 15 13 16 16 | 1464 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1464 | 13 16 16 13 16 16 13 16 16 13 17 17 13 17 17 14 17 17 | 1465 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1465 | 14 17 17 14 17 17 14 18 18 14 18 18 14 18 18 15 18 18 | 1466 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1466 | 15 19 19 15 19 19 15 19 19 20 24 24 32 34 33 35 37 36 | 1467 | 18 18 18 34 34 34 58 58 58 78 78 78 |
1467 | 37 39 37 35 37 36 33 36 34 30 32 31 26 28 27 22 24 23 | 1468 | 101 98 89 124 112 88 142 110 46 156 107 11 |
1468 | 20 20 20 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1469 | 163 110 8 167 114 7 175 118 6 180 123 7 |
1469 | 12 12 12 12 12 12 8 8 7 0 0 0 0 0 0 0 0 0 | 1470 | 185 133 11 197 138 11 210 150 10 219 162 10 |
1470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1471 | 226 170 11 236 178 12 236 178 12 234 174 13 |
1471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1472 | 219 162 10 197 138 11 163 110 8 130 83 6 |
1472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1473 | 91 60 6 10 10 10 2 2 6 2 2 6 |
1473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1474 | 18 18 18 38 38 38 38 38 38 38 38 38 |
1474 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1475 | 38 38 38 38 38 38 38 38 38 38 38 38 |
1475 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1476 | 38 38 38 38 38 38 26 26 26 2 2 6 |
1476 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1477 | 2 2 6 6 6 6 70 47 6 137 92 6 |
1477 | 1 1 1 99 98 80 184 179 149 184 179 149 68 70 65 0 0 0 | 1478 | 175 118 6 200 144 11 219 162 10 230 174 11 |
1478 | 0 0 0 | 1479 | 234 174 13 230 174 11 219 162 10 210 150 10 |
1479 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1480 | 192 133 9 163 110 8 124 112 88 82 82 82 |
1480 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1481 | 50 50 50 30 30 30 14 14 14 6 6 6 |
1481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1482 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1483 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1483 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1484 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1484 | 15 15 15 110 109 94 110 109 94 108 107 93 99 98 80 72 73 67 | 1485 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1485 | 61 63 57 49 51 48 39 40 39 33 36 34 27 30 29 23 25 24 | 1486 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1486 | 18 22 22 16 19 19 14 17 17 13 16 16 12 15 15 12 15 15 | 1487 | 6 6 6 14 14 14 22 22 22 34 34 34 |
1487 | 11 14 14 11 14 14 11 14 14 11 14 14 11 14 14 11 14 14 | 1488 | 42 42 42 58 58 58 74 74 74 86 86 86 |
1488 | 11 14 14 11 14 14 12 14 14 12 15 15 12 15 15 12 15 15 | 1489 | 101 98 89 122 102 70 130 98 46 121 87 25 |
1489 | 12 15 15 13 16 16 13 16 16 13 16 16 13 16 16 13 16 16 | 1490 | 137 92 6 152 99 6 163 110 8 180 123 7 |
1490 | 13 17 17 14 17 17 14 17 17 14 17 17 14 18 18 14 18 18 | 1491 | 185 133 11 197 138 11 206 145 10 200 144 11 |
1491 | 14 18 18 15 18 18 15 19 19 15 19 19 30 32 31 38 39 37 | 1492 | 180 123 7 156 107 11 130 83 6 104 69 6 |
1492 | 39 40 39 39 40 39 35 37 36 31 33 31 27 29 28 22 24 23 | 1493 | 50 34 6 54 54 54 110 110 110 101 98 89 |
1493 | 20 20 20 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1494 | 86 86 86 82 82 82 78 78 78 78 78 78 |
1494 | 12 12 12 12 12 12 8 8 7 0 0 0 0 0 0 0 0 0 | 1495 | 78 78 78 78 78 78 78 78 78 78 78 78 |
1495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1496 | 78 78 78 82 82 82 86 86 86 94 94 94 |
1496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1497 | 106 106 106 101 101 101 86 66 34 124 80 6 |
1497 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1498 | 156 107 11 180 123 7 192 133 9 200 144 11 |
1498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1499 | 206 145 10 200 144 11 192 133 9 175 118 6 |
1499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1500 | 139 102 15 109 106 95 70 70 70 42 42 42 |
1500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1501 | 22 22 22 10 10 10 0 0 0 0 0 0 |
1501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 | 1502 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1502 | 110 109 94 197 193 154 210 208 158 184 179 149 68 70 65 0 0 0 | 1503 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1503 | 0 0 0 | 1504 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1504 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1505 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1505 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1506 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1506 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1507 | 0 0 0 0 0 0 6 6 6 10 10 10 |
1507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1508 | 14 14 14 22 22 22 30 30 30 38 38 38 |
1508 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1509 | 50 50 50 62 62 62 74 74 74 90 90 90 |
1509 | 68 70 65 110 109 94 110 109 94 105 104 92 84 83 72 65 66 61 | 1510 | 101 98 89 112 100 78 121 87 25 124 80 6 |
1510 | 51 52 50 43 45 43 35 37 36 30 32 31 25 27 26 20 23 23 | 1511 | 137 92 6 152 99 6 152 99 6 152 99 6 |
1511 | 17 20 20 15 18 18 13 16 16 12 15 15 12 15 15 11 14 14 | 1512 | 138 86 6 124 80 6 98 70 6 86 66 30 |
1512 | 11 14 14 11 14 14 11 13 13 11 13 13 11 13 13 11 13 13 | 1513 | 101 98 89 82 82 82 58 58 58 46 46 46 |
1513 | 11 14 14 11 14 14 11 14 14 11 14 14 11 14 14 11 14 14 | 1514 | 38 38 38 34 34 34 34 34 34 34 34 34 |
1514 | 12 15 15 12 15 15 12 15 15 12 15 15 13 16 16 13 16 16 | 1515 | 34 34 34 34 34 34 34 34 34 34 34 34 |
1515 | 13 16 16 13 16 16 13 17 17 13 17 17 14 17 17 14 17 17 | 1516 | 34 34 34 34 34 34 38 38 38 42 42 42 |
1516 | 14 18 18 14 18 18 14 18 18 16 19 19 37 39 37 41 42 42 | 1517 | 54 54 54 82 82 82 94 86 76 91 60 6 |
1517 | 41 42 42 41 42 42 38 39 37 32 34 33 27 29 28 23 24 24 | 1518 | 134 86 6 156 107 11 167 114 7 175 118 6 |
1518 | 21 22 21 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1519 | 175 118 6 167 114 7 152 99 6 121 87 25 |
1519 | 12 12 12 12 12 12 8 8 7 0 0 0 0 0 0 0 0 0 | 1520 | 101 98 89 62 62 62 34 34 34 18 18 18 |
1520 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1521 | 6 6 6 0 0 0 0 0 0 0 0 0 |
1521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1522 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1522 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1523 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1524 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1525 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1525 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1526 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1526 | 0 0 0 0 0 0 0 0 0 0 0 0 11 11 11 137 133 100 | 1527 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1527 | 197 193 154 251 251 187 239 239 170 184 179 149 31 33 31 0 0 0 | 1528 | 0 0 0 6 6 6 6 6 6 10 10 10 |
1528 | 0 0 0 | 1529 | 18 18 18 22 22 22 30 30 30 42 42 42 |
1529 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1530 | 50 50 50 66 66 66 86 86 86 101 98 89 |
1530 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1531 | 106 86 58 98 70 6 104 69 6 104 69 6 |
1531 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1532 | 104 69 6 91 60 6 82 62 34 90 90 90 |
1532 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1533 | 62 62 62 38 38 38 22 22 22 14 14 14 |
1533 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 12 | 1534 | 10 10 10 10 10 10 10 10 10 10 10 10 |
1534 | 110 109 94 110 109 94 105 104 92 90 89 73 72 73 67 58 59 55 | 1535 | 10 10 10 10 10 10 6 6 6 10 10 10 |
1535 | 46 47 45 37 39 37 31 33 31 26 28 27 20 24 24 17 21 21 | 1536 | 10 10 10 10 10 10 10 10 10 14 14 14 |
1536 | 15 18 18 13 16 16 12 15 15 12 14 14 11 13 13 11 13 13 | 1537 | 22 22 22 42 42 42 70 70 70 89 81 66 |
1537 | 10 13 13 10 13 13 10 13 13 10 13 13 10 13 13 10 13 13 | 1538 | 80 54 7 104 69 6 124 80 6 137 92 6 |
1538 | 10 13 13 10 13 13 11 13 13 11 13 13 11 14 14 11 14 14 | 1539 | 134 86 6 116 81 8 100 82 52 86 86 86 |
1539 | 11 14 14 11 14 14 12 14 14 12 15 15 12 15 15 12 15 15 | 1540 | 58 58 58 30 30 30 14 14 14 6 6 6 |
1540 | 13 16 16 13 16 16 13 16 16 13 16 16 13 17 17 13 17 17 | 1541 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1541 | 14 17 17 14 17 17 14 18 18 23 27 26 41 42 42 41 42 42 | 1542 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1542 | 43 45 43 41 42 42 39 40 39 33 36 34 27 29 28 23 24 24 | 1543 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1543 | 21 22 21 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1544 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1544 | 12 12 12 12 12 12 6 7 7 0 0 0 0 0 0 0 0 0 | 1545 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1545 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1546 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1546 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1547 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1547 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1548 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1549 | 0 0 0 6 6 6 10 10 10 14 14 14 |
1549 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1550 | 18 18 18 26 26 26 38 38 38 54 54 54 |
1550 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1551 | 70 70 70 86 86 86 94 86 76 89 81 66 |
1551 | 0 0 0 0 0 0 0 0 0 27 29 28 168 163 120 210 208 158 | 1552 | 89 81 66 86 86 86 74 74 74 50 50 50 |
1552 | 251 251 187 251 251 187 210 208 158 137 133 100 1 1 1 0 0 0 | 1553 | 30 30 30 14 14 14 6 6 6 0 0 0 |
1553 | 0 0 0 | 1554 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1555 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1556 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1557 | 6 6 6 18 18 18 34 34 34 58 58 58 |
1557 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1558 | 82 82 82 89 81 66 89 81 66 89 81 66 |
1558 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 60 56 | 1559 | 94 86 66 94 86 76 74 74 74 50 50 50 |
1559 | 110 109 94 105 104 92 105 104 92 84 83 72 65 66 61 51 52 50 | 1560 | 26 26 26 14 14 14 6 6 6 0 0 0 |
1560 | 40 43 41 33 36 34 27 30 29 23 25 24 18 22 22 16 19 19 | 1561 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1561 | 14 17 17 12 15 15 11 14 14 11 14 14 10 13 13 10 13 13 | 1562 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1562 | 10 13 13 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 | 1563 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1563 | 10 12 12 10 12 12 10 13 13 10 13 13 10 13 13 11 13 13 | 1564 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1564 | 11 13 13 11 14 14 11 14 14 11 14 14 11 14 14 12 15 15 | 1565 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1565 | 12 15 15 12 15 15 12 15 15 13 16 16 13 16 16 13 16 16 | 1566 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1566 | 13 17 17 13 17 17 14 17 17 32 34 33 43 45 43 43 45 43 | 1567 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1567 | 43 45 43 43 45 43 39 40 39 33 36 34 27 29 28 23 24 24 | 1568 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1568 | 21 22 21 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1569 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1569 | 12 12 12 12 12 12 6 7 7 0 0 0 0 0 0 0 0 0 | 1570 | 6 6 6 6 6 6 14 14 14 18 18 18 |
1570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1571 | 30 30 30 38 38 38 46 46 46 54 54 54 |
1571 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1572 | 50 50 50 42 42 42 30 30 30 18 18 18 |
1572 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1573 | 10 10 10 0 0 0 0 0 0 0 0 0 |
1573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1574 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1574 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1575 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1575 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1576 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1576 | 0 0 0 1 1 1 68 70 65 184 179 149 210 208 158 251 251 187 | 1577 | 0 0 0 6 6 6 14 14 14 26 26 26 |
1577 | 251 251 187 214 212 158 184 179 149 37 39 37 0 0 0 0 0 0 | 1578 | 38 38 38 50 50 50 58 58 58 58 58 58 |
1578 | 0 0 0 | 1579 | 54 54 54 42 42 42 30 30 30 18 18 18 |
1579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1580 | 10 10 10 0 0 0 0 0 0 0 0 0 |
1580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1581 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1581 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1582 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1583 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1583 | 0 0 0 0 0 0 0 0 0 0 0 0 6 7 7 105 104 92 | 1584 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1584 | 105 104 92 105 104 92 99 98 80 72 73 67 58 59 55 46 47 45 | 1585 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1585 | 35 37 36 30 32 31 25 27 26 20 23 23 16 19 19 14 17 17 | 1586 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1586 | 12 15 15 12 14 14 11 13 13 10 13 13 10 12 12 10 12 12 | 1587 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1587 | 10 12 12 10 12 12 9 12 12 9 12 12 9 12 12 9 12 12 | 1588 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1588 | 10 12 12 10 12 12 10 12 12 10 12 12 10 12 12 10 13 13 | 1589 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1589 | 10 13 13 10 13 13 11 13 13 11 13 13 11 14 14 11 14 14 | 1590 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1590 | 11 14 14 12 15 15 12 15 15 12 15 15 12 15 15 13 16 16 | 1591 | 6 6 6 10 10 10 14 14 14 18 18 18 |
1591 | 13 16 16 13 16 16 17 20 20 41 42 42 46 47 45 46 47 45 | 1592 | 18 18 18 14 14 14 10 10 10 6 6 6 |
1592 | 46 47 45 43 45 43 40 41 39 33 36 34 27 29 28 23 24 24 | 1593 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1593 | 20 20 20 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | 1594 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1594 | 12 12 12 12 12 12 4 5 5 0 0 0 0 0 0 0 0 0 | 1595 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1595 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1596 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1597 | 0 0 0 0 0 0 0 0 0 6 6 6 |
1597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1598 | 14 14 14 18 18 18 22 22 22 22 22 22 |
1598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1599 | 18 18 18 14 14 14 10 10 10 6 6 6 |
1599 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1600 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1600 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1601 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1601 | 15 15 15 110 109 94 197 193 154 214 212 158 251 251 187 251 251 187 | 1602 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1602 | 239 239 170 184 179 149 84 83 72 0 0 0 0 0 0 0 0 0 | 1603 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1603 | 0 0 0 | 1604 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1606 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1608 | 0 0 0 0 0 0 0 0 0 0 0 0 47 48 46 105 104 92 | ||
1609 | 105 104 92 99 98 80 84 83 72 68 70 65 51 52 50 40 43 41 | ||
1610 | 32 34 33 27 29 28 22 24 23 17 21 21 15 18 18 13 16 16 | ||
1611 | 12 15 15 11 13 13 10 13 13 10 12 12 9 12 12 9 12 12 | ||
1612 | 9 12 12 9 12 12 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1613 | 9 12 12 9 12 12 9 12 12 9 12 12 10 12 12 10 12 12 | ||
1614 | 10 12 12 10 12 12 10 13 13 10 13 13 10 13 13 11 13 13 | ||
1615 | 11 14 14 11 14 14 11 14 14 12 14 14 12 15 15 12 15 15 | ||
1616 | 12 15 15 13 16 16 28 31 30 43 45 43 47 48 46 47 48 46 | ||
1617 | 47 48 46 43 45 43 40 41 39 33 36 34 27 29 28 22 24 23 | ||
1618 | 20 20 20 17 17 17 15 15 15 13 13 13 12 12 12 12 12 12 | ||
1619 | 12 12 12 12 12 12 3 4 4 0 0 0 0 0 0 0 0 0 | ||
1620 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1623 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1625 | 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 60 60 56 | ||
1626 | 177 172 135 197 193 154 251 251 187 251 251 187 251 251 187 251 251 187 | ||
1627 | 184 179 149 110 109 94 3 4 4 0 0 0 0 0 0 0 0 0 | ||
1628 | 0 0 0 | ||
1629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1631 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1632 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1633 | 0 0 0 0 0 0 0 0 0 1 1 1 99 98 80 105 104 92 | ||
1634 | 99 98 80 87 86 72 84 83 72 63 64 60 46 47 45 35 37 36 | ||
1635 | 30 32 31 25 27 26 18 22 22 16 19 19 14 17 17 12 15 15 | ||
1636 | 11 14 14 10 13 13 9 12 12 9 12 12 9 11 11 9 11 11 | ||
1637 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1638 | 9 11 11 9 11 11 9 11 11 9 11 11 9 12 12 9 12 12 | ||
1639 | 9 12 12 10 12 12 10 12 12 10 12 12 10 13 13 10 13 13 | ||
1640 | 10 13 13 11 13 13 11 14 14 11 14 14 11 14 14 12 15 15 | ||
1641 | 12 15 15 14 17 17 41 42 42 47 48 46 49 51 48 51 52 50 | ||
1642 | 47 48 46 43 45 43 40 41 39 33 36 34 27 29 28 22 24 23 | ||
1643 | 19 20 19 16 16 16 14 14 13 13 13 13 12 12 12 12 12 12 | ||
1644 | 12 12 12 12 12 12 2 2 2 0 0 0 0 0 0 0 0 0 | ||
1645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1647 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1648 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1650 | 0 0 0 0 0 0 0 0 0 23 24 24 137 133 100 184 179 149 | ||
1651 | 210 208 158 251 251 187 251 251 187 251 251 187 251 251 187 184 179 149 | ||
1652 | 110 109 94 13 13 13 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1653 | 0 0 0 | ||
1654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1656 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1657 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1658 | 0 0 0 0 0 0 0 0 0 30 32 31 105 104 92 99 98 80 | ||
1659 | 84 83 72 84 83 72 72 73 67 55 57 54 41 42 42 32 34 33 | ||
1660 | 27 29 28 20 24 24 17 20 20 14 17 17 13 16 16 12 14 14 | ||
1661 | 10 13 13 10 12 12 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1662 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1663 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1664 | 9 11 11 9 12 12 9 12 12 10 12 12 10 12 12 10 12 12 | ||
1665 | 10 13 13 10 13 13 10 13 13 11 13 13 11 14 14 11 14 14 | ||
1666 | 11 14 14 27 29 28 55 56 53 72 73 67 51 52 50 51 52 50 | ||
1667 | 49 51 48 43 45 43 39 40 39 32 34 33 26 28 27 21 22 21 | ||
1668 | 19 20 19 16 16 16 18 19 17 13 13 13 12 12 12 12 12 12 | ||
1669 | 12 12 12 12 12 12 1 1 1 0 0 0 0 0 0 0 0 0 | ||
1670 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1671 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1672 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1674 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1675 | 0 0 0 8 8 7 84 83 72 184 179 149 197 193 154 251 251 187 | ||
1676 | 251 251 187 251 251 187 251 251 187 251 251 187 184 179 149 145 141 105 | ||
1677 | 19 20 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1678 | 0 0 0 | ||
1679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1681 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1682 | 0 0 0 14 14 13 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1683 | 0 0 0 0 0 0 0 0 0 72 73 67 105 104 92 84 83 72 | ||
1684 | 72 73 67 84 83 72 68 70 65 49 51 48 39 40 39 30 32 31 | ||
1685 | 25 27 26 18 22 22 15 18 18 13 16 16 12 15 15 11 13 13 | ||
1686 | 10 12 12 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1687 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1688 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1689 | 9 11 11 9 11 11 9 11 11 9 12 12 9 12 12 9 12 12 | ||
1690 | 10 12 12 10 12 12 10 12 12 10 13 13 10 13 13 11 13 13 | ||
1691 | 13 16 16 41 42 42 99 98 80 158 153 112 65 66 61 51 52 50 | ||
1692 | 49 51 48 43 45 43 39 40 39 31 33 31 25 27 26 21 22 21 | ||
1693 | 21 22 21 68 70 65 55 56 53 13 13 13 12 12 12 12 12 12 | ||
1694 | 12 12 12 11 11 11 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1696 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1697 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1698 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1699 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 | ||
1700 | 63 64 60 158 153 112 184 179 149 210 208 158 251 251 187 251 251 187 | ||
1701 | 251 251 187 251 251 187 251 251 187 184 179 149 137 133 100 27 29 28 | ||
1702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1703 | 0 0 0 | ||
1704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1705 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1706 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1707 | 21 22 21 110 109 94 5 6 5 0 0 0 0 0 0 0 0 0 | ||
1708 | 0 0 0 0 0 0 13 13 13 105 104 92 90 89 73 72 73 67 | ||
1709 | 68 70 65 84 83 72 63 64 60 46 47 45 35 37 36 27 29 28 | ||
1710 | 22 24 23 17 20 20 14 17 17 12 15 15 11 14 14 10 12 12 | ||
1711 | 10 12 12 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1712 | 9 11 11 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1713 | 8 10 10 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1714 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1715 | 9 12 12 9 12 12 10 12 12 10 12 12 10 13 13 10 13 13 | ||
1716 | 30 32 31 47 48 46 177 172 135 210 208 158 137 133 100 55 56 53 | ||
1717 | 49 51 48 43 45 43 38 39 37 31 33 31 25 27 26 22 24 23 | ||
1718 | 110 109 94 184 179 149 63 64 60 13 13 13 12 12 12 12 12 12 | ||
1719 | 12 12 12 8 9 9 0 0 0 1 1 1 0 0 0 0 0 0 | ||
1720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1721 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1724 | 0 0 0 0 0 0 0 0 0 0 0 0 21 22 21 105 104 92 | ||
1725 | 184 179 149 210 208 158 251 251 187 251 251 187 251 251 187 251 251 187 | ||
1726 | 251 251 187 251 251 187 184 179 149 145 141 105 23 24 24 0 0 0 | ||
1727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1728 | 0 0 0 | ||
1729 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1730 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1731 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1732 | 68 70 65 184 179 149 105 104 92 0 0 0 0 0 0 0 0 0 | ||
1733 | 0 0 0 0 0 0 51 52 50 99 98 80 84 83 72 63 64 60 | ||
1734 | 68 70 65 72 73 67 55 57 54 41 42 42 32 34 33 25 27 26 | ||
1735 | 20 23 23 16 19 19 13 16 16 12 14 14 10 13 13 10 12 12 | ||
1736 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 8 10 10 | ||
1737 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1738 | 8 10 10 8 10 10 8 10 10 8 10 10 9 11 11 9 11 11 | ||
1739 | 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1740 | 9 11 11 9 11 11 9 12 12 9 12 12 10 12 12 17 20 20 | ||
1741 | 46 47 45 72 73 67 210 208 158 251 251 187 210 208 158 63 64 60 | ||
1742 | 49 51 48 43 45 43 37 39 37 30 32 31 24 26 24 105 104 92 | ||
1743 | 210 208 158 197 193 154 47 48 46 13 13 13 12 12 12 12 12 12 | ||
1744 | 12 12 12 6 7 7 33 36 34 48 49 45 0 0 0 0 0 0 | ||
1745 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1747 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1749 | 0 0 0 0 0 0 8 8 7 23 24 24 55 56 53 110 109 94 | ||
1750 | 210 208 158 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | ||
1751 | 251 251 187 184 179 149 110 109 94 20 20 20 0 0 0 0 0 0 | ||
1752 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1753 | 0 0 0 | ||
1754 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1755 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1756 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1757 | 110 109 94 251 251 187 210 208 158 47 48 46 0 0 0 0 0 0 | ||
1758 | 0 0 0 1 1 1 90 89 73 90 89 73 72 73 67 55 56 53 | ||
1759 | 72 73 67 68 70 65 51 52 50 37 39 37 28 31 30 23 25 24 | ||
1760 | 17 21 21 15 18 18 12 15 15 11 14 14 10 13 13 9 12 12 | ||
1761 | 9 11 11 9 11 11 9 11 11 8 10 10 8 10 10 8 10 10 | ||
1762 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1763 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1764 | 8 10 10 9 11 11 9 11 11 9 11 11 9 11 11 9 11 11 | ||
1765 | 9 11 11 9 11 11 9 11 11 9 12 12 13 16 16 41 42 42 | ||
1766 | 49 51 48 110 109 94 251 251 187 251 251 187 251 251 187 105 104 92 | ||
1767 | 49 51 48 43 45 43 35 37 36 30 31 28 47 48 46 197 193 154 | ||
1768 | 251 251 187 197 193 154 31 33 31 12 12 12 12 12 12 12 12 12 | ||
1769 | 12 12 12 51 52 50 184 179 149 72 73 67 0 0 0 0 0 0 | ||
1770 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1771 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1772 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1773 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 | ||
1774 | 11 11 11 21 22 21 30 32 31 40 41 39 60 60 56 145 141 105 | ||
1775 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 214 212 158 | ||
1776 | 184 179 149 110 109 94 13 13 13 0 0 0 0 0 0 0 0 0 | ||
1777 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1778 | 0 0 0 | ||
1779 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1780 | 0 0 0 0 0 0 4 5 4 61 61 53 48 49 45 3 4 3 | ||
1781 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1782 | 156 151 111 251 251 187 251 251 187 184 179 149 11 11 11 0 0 0 | ||
1783 | 0 0 0 26 28 27 99 98 80 84 83 72 60 60 56 43 45 43 | ||
1784 | 72 73 67 65 66 61 49 51 48 35 37 36 27 29 28 20 24 24 | ||
1785 | 17 20 20 14 17 17 12 15 15 11 13 13 10 12 12 9 11 11 | ||
1786 | 9 11 11 9 11 11 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1787 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1788 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1789 | 8 10 10 8 10 10 8 10 10 8 10 10 9 11 11 9 11 11 | ||
1790 | 9 11 11 9 11 11 9 11 11 11 13 13 37 39 37 47 48 46 | ||
1791 | 51 52 50 184 179 149 251 251 187 251 251 187 251 251 187 145 141 105 | ||
1792 | 47 48 46 41 42 42 35 37 36 27 29 28 137 133 100 251 251 187 | ||
1793 | 251 251 187 197 193 154 19 20 19 12 12 12 12 12 12 12 12 12 | ||
1794 | 27 29 28 184 179 149 214 212 158 63 64 60 0 0 0 0 0 0 | ||
1795 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1796 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1797 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1798 | 0 0 0 0 0 0 1 1 1 6 7 7 16 16 16 24 26 24 | ||
1799 | 30 32 31 38 39 37 47 48 46 55 57 54 68 70 65 110 109 94 | ||
1800 | 197 193 154 251 251 187 251 251 187 251 251 187 210 208 158 184 179 149 | ||
1801 | 105 104 92 8 8 7 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1802 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1803 | 0 0 0 | ||
1804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1805 | 0 0 0 0 0 0 0 0 0 65 66 61 184 179 149 156 151 111 | ||
1806 | 30 32 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1807 | 168 163 120 251 251 187 251 251 187 251 251 187 110 109 94 0 0 0 | ||
1808 | 0 0 0 60 60 56 84 83 72 68 70 65 51 52 50 38 39 37 | ||
1809 | 84 83 72 63 64 60 43 45 43 33 36 34 25 27 26 20 23 22 | ||
1810 | 15 18 18 13 16 16 12 14 14 10 13 13 9 12 12 9 11 11 | ||
1811 | 9 11 11 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1812 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1813 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1814 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1815 | 9 11 11 9 11 11 10 12 12 33 36 34 46 47 45 51 52 50 | ||
1816 | 72 73 67 210 208 158 251 251 187 251 251 187 251 251 187 177 172 135 | ||
1817 | 47 48 46 41 42 42 35 37 36 37 39 37 184 179 149 251 251 187 | ||
1818 | 251 251 187 197 193 154 13 13 13 12 12 12 12 12 12 12 12 12 | ||
1819 | 110 109 94 251 251 187 251 251 187 37 39 37 0 0 0 0 0 0 | ||
1820 | 0 0 0 21 22 20 2 2 1 0 0 0 0 0 0 0 0 0 | ||
1821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1822 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1823 | 4 5 5 12 12 12 21 22 21 25 27 26 30 32 31 38 39 37 | ||
1824 | 46 47 45 55 56 53 60 60 56 65 66 61 68 70 65 105 104 92 | ||
1825 | 110 109 94 197 193 154 210 208 158 197 193 154 184 179 149 84 83 72 | ||
1826 | 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1827 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1828 | 0 0 0 | ||
1829 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1830 | 0 0 0 0 0 0 0 0 0 13 13 13 184 179 149 251 251 187 | ||
1831 | 197 193 154 43 44 41 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1832 | 145 141 105 251 251 187 251 251 187 251 251 187 214 212 158 43 45 43 | ||
1833 | 2 2 2 84 83 72 72 73 67 58 59 55 41 42 42 38 39 37 | ||
1834 | 72 73 67 58 59 55 41 42 42 31 33 31 25 27 26 18 22 22 | ||
1835 | 14 17 17 12 15 15 12 14 14 10 12 12 9 12 12 9 11 11 | ||
1836 | 9 11 11 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1837 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1838 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1839 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1840 | 8 10 10 9 12 12 31 33 31 43 45 43 49 51 48 55 56 53 | ||
1841 | 110 109 94 251 251 187 251 251 187 251 251 187 251 251 187 168 163 120 | ||
1842 | 47 48 46 41 42 42 33 36 34 63 64 60 197 193 154 251 251 187 | ||
1843 | 251 251 187 184 179 149 13 13 13 12 12 12 12 12 12 16 16 16 | ||
1844 | 197 193 154 251 251 187 239 239 170 20 20 20 0 0 0 2 2 1 | ||
1845 | 108 107 93 110 109 94 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1846 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1847 | 0 0 0 0 0 0 1 1 1 4 5 5 11 11 11 18 19 18 | ||
1848 | 22 24 23 26 28 27 32 34 33 39 40 39 46 47 45 51 52 50 | ||
1849 | 55 57 54 60 60 56 63 64 60 63 64 60 63 64 60 58 59 55 | ||
1850 | 63 64 60 99 98 80 145 141 105 137 133 100 43 45 43 0 0 0 | ||
1851 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1852 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1853 | 0 0 0 | ||
1854 | 0 0 0 0 0 0 0 0 0 3 4 3 0 0 0 0 0 0 | ||
1855 | 0 0 0 0 0 0 0 0 0 0 0 0 110 109 94 251 251 187 | ||
1856 | 251 251 187 184 179 149 25 27 26 0 0 0 0 0 0 0 0 0 | ||
1857 | 99 98 80 251 251 187 251 251 187 251 251 187 251 251 187 156 151 111 | ||
1858 | 25 27 26 84 83 72 65 66 61 47 48 46 32 34 33 39 40 39 | ||
1859 | 72 73 67 55 57 54 40 41 39 30 32 31 23 25 24 18 22 22 | ||
1860 | 14 17 17 12 15 15 11 13 13 10 12 12 9 11 11 9 11 11 | ||
1861 | 9 11 11 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1862 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1863 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1864 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1865 | 9 11 11 28 31 30 41 42 42 47 48 46 55 56 53 58 59 55 | ||
1866 | 137 133 100 251 251 187 251 251 187 251 251 187 210 208 158 137 133 100 | ||
1867 | 47 48 46 40 41 39 32 34 33 75 75 61 184 179 149 239 239 170 | ||
1868 | 251 251 187 177 172 135 13 13 13 12 12 12 12 12 12 43 44 41 | ||
1869 | 197 193 154 251 251 187 210 208 158 10 10 9 0 0 0 84 83 72 | ||
1870 | 251 251 187 84 83 72 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1871 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 | ||
1872 | 6 7 7 11 11 11 17 17 17 20 20 20 23 24 24 27 29 28 | ||
1873 | 32 34 33 38 39 37 43 45 43 47 48 46 51 52 50 55 56 53 | ||
1874 | 58 59 55 58 59 55 55 57 54 55 56 53 47 48 46 41 42 42 | ||
1875 | 35 37 36 31 33 31 47 48 46 14 14 13 0 0 0 0 0 0 | ||
1876 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1877 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1878 | 0 0 0 | ||
1879 | 0 0 0 0 0 0 0 0 0 66 65 55 99 98 80 20 20 20 | ||
1880 | 0 0 0 0 0 0 0 0 0 0 0 0 43 45 43 214 212 158 | ||
1881 | 251 251 187 251 251 187 145 141 105 3 3 3 0 0 0 0 0 0 | ||
1882 | 48 49 45 184 179 149 239 239 170 251 251 187 239 239 170 177 172 135 | ||
1883 | 84 83 72 72 73 67 55 56 53 39 40 39 26 28 27 39 40 39 | ||
1884 | 68 70 65 51 52 50 39 40 39 28 31 30 22 24 23 17 20 20 | ||
1885 | 14 17 17 12 14 14 10 13 13 9 11 11 9 11 11 9 11 11 | ||
1886 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1887 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1888 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1889 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1890 | 27 29 28 40 41 39 46 47 45 51 52 50 55 57 54 63 64 60 | ||
1891 | 131 127 93 197 193 154 210 208 158 197 193 154 168 163 120 96 95 69 | ||
1892 | 47 48 46 40 41 39 32 34 33 71 71 57 145 141 105 184 179 149 | ||
1893 | 184 179 149 131 127 93 13 13 13 12 12 12 12 12 12 48 49 45 | ||
1894 | 168 163 120 184 179 149 156 151 111 6 7 7 14 14 13 177 172 135 | ||
1895 | 239 239 170 40 41 39 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1896 | 0 0 0 0 0 0 3 3 3 6 7 7 11 11 11 16 16 16 | ||
1897 | 18 19 18 21 22 21 23 24 24 27 29 28 32 34 33 37 39 37 | ||
1898 | 41 42 42 43 45 43 47 48 46 51 52 50 51 52 50 51 52 50 | ||
1899 | 51 52 50 49 51 48 46 47 45 40 41 39 32 34 33 25 27 26 | ||
1900 | 20 20 20 14 14 13 2 2 2 0 0 0 0 0 0 0 0 0 | ||
1901 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1902 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1903 | 0 0 0 | ||
1904 | 0 0 0 0 0 0 0 0 0 33 36 34 197 193 154 184 179 149 | ||
1905 | 41 42 42 0 0 0 0 0 0 0 0 0 3 3 3 184 179 149 | ||
1906 | 251 251 187 251 251 187 184 179 149 48 49 45 0 0 0 0 0 0 | ||
1907 | 16 17 12 121 119 87 177 172 135 194 189 146 188 184 146 145 141 105 | ||
1908 | 82 81 62 63 64 60 46 47 45 31 33 31 21 22 21 35 37 36 | ||
1909 | 68 70 65 51 52 50 37 39 37 27 30 29 22 24 23 17 20 20 | ||
1910 | 13 16 16 12 14 14 10 13 13 9 11 11 8 10 10 8 10 10 | ||
1911 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1912 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1913 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1914 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 25 27 26 | ||
1915 | 38 39 37 43 45 43 51 52 50 55 56 53 60 60 56 63 64 60 | ||
1916 | 92 91 72 158 153 112 176 171 126 171 165 117 149 143 98 82 81 62 | ||
1917 | 44 46 43 38 39 37 30 32 31 71 71 57 131 127 93 160 154 106 | ||
1918 | 149 143 98 82 81 62 13 13 13 12 12 12 12 12 12 46 47 43 | ||
1919 | 121 119 87 134 131 96 96 95 69 7 7 6 38 39 37 131 127 93 | ||
1920 | 145 141 105 12 13 12 0 0 0 1 1 1 3 3 3 6 7 7 | ||
1921 | 10 10 9 12 12 12 14 14 13 16 16 16 18 19 18 21 22 21 | ||
1922 | 22 24 23 26 28 27 30 31 28 33 36 34 37 39 37 40 41 39 | ||
1923 | 41 42 42 43 45 43 46 47 45 46 47 45 46 47 45 43 45 43 | ||
1924 | 41 42 42 37 39 37 31 33 31 26 28 27 21 22 21 16 16 16 | ||
1925 | 6 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1926 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1927 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1928 | 0 0 0 | ||
1929 | 0 0 0 0 0 0 0 0 0 0 0 0 177 172 135 251 251 187 | ||
1930 | 197 193 154 27 29 28 0 0 0 0 0 0 0 0 0 110 109 94 | ||
1931 | 239 239 170 239 239 170 184 179 149 87 86 72 2 2 1 0 0 0 | ||
1932 | 1 1 1 82 81 62 142 137 94 165 161 109 165 161 109 131 127 93 | ||
1933 | 75 75 61 55 56 53 37 39 37 25 27 26 19 20 19 32 34 33 | ||
1934 | 65 66 61 49 51 48 35 37 36 27 29 28 20 23 23 16 19 19 | ||
1935 | 13 16 16 13 13 13 10 12 12 9 11 11 8 10 10 8 10 10 | ||
1936 | 8 9 9 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1937 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1938 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1939 | 8 10 10 8 10 10 8 10 10 8 10 10 22 24 23 35 37 36 | ||
1940 | 41 42 42 47 48 46 55 56 53 58 59 55 63 64 60 65 66 61 | ||
1941 | 71 71 57 131 127 93 160 154 106 160 154 106 142 137 94 82 81 62 | ||
1942 | 46 47 43 40 41 39 33 36 34 66 65 55 125 122 87 149 143 98 | ||
1943 | 142 137 94 82 81 62 17 17 17 18 19 17 14 14 13 46 47 43 | ||
1944 | 118 116 76 125 122 87 96 95 69 16 17 12 71 71 57 103 101 77 | ||
1945 | 82 81 62 11 11 11 11 11 11 13 13 13 14 14 13 14 14 13 | ||
1946 | 15 15 15 16 16 16 17 17 17 19 20 19 21 22 21 23 24 24 | ||
1947 | 26 28 27 27 29 28 31 33 31 33 36 34 35 37 36 38 39 37 | ||
1948 | 39 40 39 39 40 39 38 39 37 37 39 37 35 37 36 31 33 31 | ||
1949 | 27 29 28 24 26 24 21 22 21 17 17 17 12 12 12 2 2 2 | ||
1950 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1951 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1952 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1953 | 0 0 0 | ||
1954 | 0 0 0 0 0 0 0 0 0 0 0 0 68 70 65 251 251 187 | ||
1955 | 251 251 187 156 151 111 2 2 1 0 0 0 0 0 0 43 44 41 | ||
1956 | 177 172 135 184 179 149 158 153 112 103 101 77 19 20 18 0 0 0 | ||
1957 | 0 0 0 46 47 43 131 127 93 160 154 106 160 154 106 131 127 93 | ||
1958 | 71 71 57 43 45 43 30 32 31 21 22 21 16 16 16 26 28 27 | ||
1959 | 63 64 60 47 48 46 35 37 36 26 28 27 20 23 23 16 19 19 | ||
1960 | 13 16 16 13 13 13 10 12 12 9 11 11 8 10 10 8 10 10 | ||
1961 | 7 9 9 7 9 9 8 9 9 8 10 10 8 10 10 8 10 10 | ||
1962 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1963 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1964 | 8 10 10 8 10 10 8 10 10 20 20 20 33 36 34 40 41 39 | ||
1965 | 46 47 45 51 52 50 55 57 54 60 60 56 63 64 60 65 66 61 | ||
1966 | 66 65 55 118 116 76 151 147 98 165 161 109 151 147 98 121 119 87 | ||
1967 | 96 95 69 96 95 69 96 95 69 103 101 77 142 137 94 151 147 98 | ||
1968 | 142 137 94 103 101 77 82 81 62 82 81 62 82 81 62 96 95 69 | ||
1969 | 131 127 93 142 137 94 103 101 77 46 47 43 96 95 69 118 116 76 | ||
1970 | 71 71 57 14 14 13 14 14 13 15 15 15 15 15 15 16 16 16 | ||
1971 | 16 16 16 17 17 17 18 19 18 20 20 20 21 22 21 23 24 24 | ||
1972 | 25 27 26 27 29 28 30 31 28 30 32 31 31 33 31 31 33 31 | ||
1973 | 31 33 31 31 33 31 30 31 28 27 29 28 25 27 26 22 24 23 | ||
1974 | 20 20 20 16 16 16 13 13 13 6 7 7 0 0 0 0 0 0 | ||
1975 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1976 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1977 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1978 | 0 0 0 | ||
1979 | 58 59 55 68 70 65 8 8 7 0 0 0 10 10 9 210 208 158 | ||
1980 | 251 251 187 184 179 149 38 39 37 0 0 0 0 0 0 8 8 7 | ||
1981 | 103 101 77 149 143 98 149 143 98 118 116 76 40 41 39 25 27 25 | ||
1982 | 53 55 47 82 81 62 144 139 99 165 161 109 165 161 109 142 137 94 | ||
1983 | 71 71 57 35 37 36 24 26 24 18 19 18 15 15 15 22 24 23 | ||
1984 | 63 64 60 46 47 45 33 36 34 26 28 27 20 23 22 17 18 17 | ||
1985 | 12 15 15 11 13 13 10 12 12 9 11 11 8 10 10 8 10 10 | ||
1986 | 7 9 9 7 9 9 7 9 9 7 9 9 8 9 9 8 10 10 | ||
1987 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1988 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
1989 | 8 10 10 8 10 10 16 16 16 30 31 28 35 37 36 41 42 42 | ||
1990 | 47 48 46 55 56 53 58 59 55 63 64 60 65 66 61 65 66 61 | ||
1991 | 61 61 53 103 101 77 151 147 98 171 165 117 171 165 117 168 163 120 | ||
1992 | 158 153 112 158 153 112 155 149 109 151 147 98 151 147 98 160 154 106 | ||
1993 | 151 147 98 149 143 98 142 137 94 149 143 98 149 143 98 149 143 98 | ||
1994 | 155 149 109 151 147 98 131 127 93 103 101 77 125 122 87 118 116 76 | ||
1995 | 71 71 57 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 | ||
1996 | 17 17 17 17 17 17 18 19 18 19 20 19 20 20 20 21 22 21 | ||
1997 | 23 24 24 24 26 24 25 27 26 26 28 27 26 28 27 26 28 27 | ||
1998 | 25 27 26 24 26 24 22 24 23 21 22 21 19 20 19 16 16 16 | ||
1999 | 14 14 13 8 8 7 1 1 1 0 0 0 0 0 0 0 0 0 | ||
2000 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2001 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2002 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2003 | 0 0 0 | ||
2004 | 20 20 20 184 179 149 168 163 120 21 22 21 0 0 0 105 104 92 | ||
2005 | 177 172 135 145 141 105 71 71 57 0 0 0 0 0 0 0 0 0 | ||
2006 | 66 65 55 131 127 93 151 147 98 142 137 94 118 116 76 121 119 87 | ||
2007 | 145 141 105 158 153 112 176 171 126 178 174 128 176 171 126 149 145 103 | ||
2008 | 96 95 69 31 33 31 21 22 21 16 16 16 14 14 13 18 19 18 | ||
2009 | 60 60 56 46 47 45 33 36 34 25 27 26 21 22 21 15 18 18 | ||
2010 | 12 15 15 11 13 13 9 11 11 8 10 10 8 10 10 8 9 9 | ||
2011 | 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 8 9 9 | ||
2012 | 8 9 9 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
2013 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
2014 | 8 10 10 10 12 12 26 28 27 31 33 31 38 39 37 43 45 43 | ||
2015 | 51 52 50 55 56 53 60 60 56 63 64 60 65 66 61 68 70 65 | ||
2016 | 63 64 60 96 95 69 158 153 112 178 174 128 188 184 146 194 189 146 | ||
2017 | 194 189 146 188 184 146 184 181 136 176 171 126 171 165 117 173 167 111 | ||
2018 | 173 167 111 165 161 109 171 165 117 174 170 121 176 171 126 178 174 128 | ||
2019 | 178 174 128 174 170 121 160 154 106 149 143 98 149 143 98 125 122 87 | ||
2020 | 71 71 57 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 | ||
2021 | 17 17 17 17 17 17 17 17 17 18 19 18 19 20 19 20 20 20 | ||
2022 | 21 22 21 21 22 21 21 22 21 22 24 23 21 22 21 21 22 21 | ||
2023 | 21 22 21 19 20 19 18 19 18 16 16 16 14 14 13 11 11 11 | ||
2024 | 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2025 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2026 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2027 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2028 | 0 0 0 | ||
2029 | 0 0 0 105 104 92 197 193 154 110 109 94 9 9 8 36 38 35 | ||
2030 | 121 119 87 131 127 93 96 95 69 18 19 17 30 31 28 66 65 55 | ||
2031 | 96 95 69 142 137 94 160 154 106 160 154 106 160 154 106 168 163 120 | ||
2032 | 184 181 136 194 191 148 197 193 154 197 193 154 194 189 146 168 163 120 | ||
2033 | 125 122 87 46 47 43 18 19 18 15 15 15 13 13 13 14 14 13 | ||
2034 | 55 57 54 43 45 43 32 34 33 25 27 26 18 22 22 17 17 17 | ||
2035 | 12 14 14 10 12 12 9 11 11 8 10 10 8 9 9 7 9 9 | ||
2036 | 6 8 8 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 | ||
2037 | 7 9 9 8 9 9 8 9 9 8 10 10 8 10 10 8 10 10 | ||
2038 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
2039 | 8 10 10 32 34 33 41 42 42 35 37 36 39 40 39 37 39 37 | ||
2040 | 35 37 36 55 57 54 60 60 56 63 64 60 65 66 61 65 66 61 | ||
2041 | 61 63 57 115 113 82 168 163 120 194 191 148 204 201 155 210 208 158 | ||
2042 | 210 208 158 210 208 158 197 193 154 194 189 146 186 182 128 176 171 126 | ||
2043 | 174 170 121 176 171 126 186 182 128 190 186 136 194 191 148 197 193 154 | ||
2044 | 197 193 154 188 184 146 181 176 137 174 170 121 165 161 109 142 137 94 | ||
2045 | 82 81 62 24 26 24 16 16 16 16 16 16 16 16 16 16 16 16 | ||
2046 | 17 17 17 17 17 17 17 17 17 17 17 17 18 19 18 19 20 19 | ||
2047 | 19 20 19 19 20 19 20 20 20 19 20 19 19 20 19 18 19 18 | ||
2048 | 17 17 17 15 15 15 13 13 13 12 12 12 6 7 7 0 0 0 | ||
2049 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2050 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2051 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2052 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2053 | 0 0 0 | ||
2054 | 0 0 0 17 18 17 137 133 100 115 113 82 53 55 47 19 20 18 | ||
2055 | 103 101 77 144 139 99 137 133 100 115 113 82 137 133 100 156 151 111 | ||
2056 | 158 153 112 164 159 111 171 165 117 174 170 121 178 174 128 194 189 146 | ||
2057 | 204 201 155 214 212 158 214 212 158 214 212 158 210 208 158 188 184 146 | ||
2058 | 158 153 112 87 86 72 17 17 17 13 13 13 13 13 13 15 15 15 | ||
2059 | 55 56 53 43 45 43 32 34 33 24 26 24 17 20 20 16 16 16 | ||
2060 | 12 14 14 10 12 12 8 10 10 8 10 10 7 9 9 6 8 8 | ||
2061 | 6 8 8 6 8 8 6 8 8 7 9 9 7 9 9 7 9 9 | ||
2062 | 7 9 9 7 9 9 7 9 9 7 9 9 8 9 9 8 10 10 | ||
2063 | 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 8 10 10 | ||
2064 | 8 10 10 110 109 94 84 83 72 49 51 48 26 28 27 8 10 10 | ||
2065 | 8 9 9 51 52 50 58 59 55 63 64 60 63 64 60 63 64 60 | ||
2066 | 66 65 55 134 131 96 181 176 137 210 208 158 214 212 158 239 239 170 | ||
2067 | 239 239 170 224 223 159 210 208 158 204 201 155 194 189 146 186 182 128 | ||
2068 | 186 182 128 184 181 136 194 189 146 204 201 155 210 208 158 210 208 158 | ||
2069 | 210 208 158 210 208 158 197 193 154 190 186 136 176 171 126 155 149 109 | ||
2070 | 118 116 76 36 38 35 15 15 15 16 16 16 16 16 16 16 16 16 | ||
2071 | 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 | ||
2072 | 17 17 17 17 17 17 17 17 17 16 16 16 16 16 16 15 15 15 | ||
2073 | 13 13 13 12 12 12 8 8 7 2 2 2 0 0 0 0 0 0 | ||
2074 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2075 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2076 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2077 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2078 | 0 0 0 | ||
2079 | 0 0 0 0 0 0 53 55 47 103 101 77 96 95 69 53 55 47 | ||
2080 | 103 101 77 158 153 112 177 172 135 184 179 149 188 184 146 197 193 154 | ||
2081 | 194 189 146 190 186 136 184 181 136 184 181 136 194 189 146 210 208 158 | ||
2082 | 214 212 158 239 239 170 251 251 187 251 251 187 224 223 159 204 201 155 | ||
2083 | 177 172 135 121 119 87 30 31 28 13 13 13 12 12 12 39 40 39 | ||
2084 | 60 60 56 43 45 43 32 34 33 23 25 24 18 19 18 13 16 16 | ||
2085 | 13 13 13 9 11 11 8 10 10 8 9 9 6 8 8 6 8 8 | ||
2086 | 6 8 8 6 8 8 6 8 8 6 8 8 6 8 8 7 9 9 | ||
2087 | 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 | ||
2088 | 7 9 9 8 9 9 8 9 9 8 10 10 8 10 10 8 10 10 | ||
2089 | 14 17 17 197 193 154 158 153 112 55 57 54 7 9 9 7 9 9 | ||
2090 | 8 10 10 51 52 50 58 59 55 60 60 56 63 64 60 63 64 60 | ||
2091 | 71 71 57 155 149 109 194 191 148 214 212 158 251 251 187 251 251 187 | ||
2092 | 251 251 187 251 251 187 239 239 170 210 208 158 197 193 154 190 186 136 | ||
2093 | 190 186 136 194 189 146 204 201 155 210 208 158 224 223 159 239 239 170 | ||
2094 | 239 239 170 224 223 159 210 208 158 204 201 155 190 186 136 164 159 111 | ||
2095 | 125 122 87 40 41 39 15 15 15 15 15 15 15 15 15 15 15 15 | ||
2096 | 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 | ||
2097 | 16 16 16 16 16 16 15 15 15 14 14 13 13 13 13 12 12 12 | ||
2098 | 8 9 9 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2099 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2103 | 0 0 0 | ||
2104 | 0 0 0 0 0 0 21 22 20 96 95 69 125 122 87 121 119 87 | ||
2105 | 144 139 99 177 172 135 197 193 154 210 208 158 214 212 158 214 212 158 | ||
2106 | 210 208 158 204 201 155 194 191 148 194 189 146 204 201 155 214 212 158 | ||
2107 | 239 239 170 251 251 187 251 251 187 251 251 187 251 251 187 214 212 158 | ||
2108 | 188 184 146 145 141 105 53 55 47 12 12 12 15 15 15 63 64 60 | ||
2109 | 63 64 60 41 42 42 31 33 31 23 24 24 17 18 17 12 15 15 | ||
2110 | 11 13 13 9 11 11 8 9 9 7 9 9 6 8 8 6 8 8 | ||
2111 | 6 7 7 6 7 7 6 8 8 6 8 8 6 8 8 6 8 8 | ||
2112 | 6 8 8 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 | ||
2113 | 7 9 9 7 9 9 7 9 9 7 9 9 7 9 9 8 8 7 | ||
2114 | 43 45 43 251 251 187 156 151 111 8 10 10 7 9 9 7 9 9 | ||
2115 | 21 22 21 51 52 50 55 56 53 55 57 54 58 59 55 58 59 55 | ||
2116 | 75 75 61 158 153 112 197 193 154 224 223 159 251 251 187 251 251 187 | ||
2117 | 251 251 187 251 251 187 251 251 187 214 212 158 204 201 155 194 189 146 | ||
2118 | 190 186 136 197 193 154 210 208 158 224 223 159 251 251 187 251 251 187 | ||
2119 | 251 251 187 251 251 187 239 239 170 210 208 158 197 193 154 176 171 126 | ||
2120 | 125 122 87 36 38 35 14 14 13 14 14 13 15 15 15 15 15 15 | ||
2121 | 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 | ||
2122 | 15 15 15 14 14 13 13 13 13 12 12 12 10 10 9 3 4 4 | ||
2123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2128 | 0 0 0 | ||
2129 | 0 0 0 0 0 0 7 7 5 71 71 57 131 127 93 158 153 112 | ||
2130 | 177 172 135 197 193 154 214 212 158 239 239 170 251 251 187 251 251 187 | ||
2131 | 238 237 168 210 208 158 204 201 155 197 193 154 204 201 155 214 212 158 | ||
2132 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 214 212 158 | ||
2133 | 197 193 154 156 151 111 66 65 55 12 12 12 37 39 37 58 59 55 | ||
2134 | 58 59 55 41 42 42 31 33 31 22 24 23 17 17 17 12 14 14 | ||
2135 | 10 12 12 8 10 10 6 8 8 6 8 8 6 7 7 6 7 7 | ||
2136 | 6 7 7 5 7 7 6 7 7 6 7 7 6 8 8 6 8 8 | ||
2137 | 6 8 8 6 8 8 6 8 8 7 9 9 7 9 9 7 9 9 | ||
2138 | 7 9 9 6 8 8 6 8 8 6 8 8 6 8 8 6 8 8 | ||
2139 | 61 63 57 197 193 154 16 19 19 6 8 8 6 8 8 8 9 9 | ||
2140 | 41 42 42 47 48 46 51 52 50 51 52 50 55 56 53 55 56 53 | ||
2141 | 71 71 57 158 153 112 197 193 154 224 223 159 251 251 187 251 251 187 | ||
2142 | 251 251 187 251 251 187 239 239 170 214 212 158 204 201 155 194 189 146 | ||
2143 | 190 186 136 197 193 154 210 208 158 239 239 170 251 251 187 251 251 187 | ||
2144 | 251 251 187 251 251 187 251 251 187 224 223 159 204 201 155 177 172 135 | ||
2145 | 121 119 87 30 31 28 13 13 13 14 14 13 14 14 13 14 14 13 | ||
2146 | 14 14 13 14 14 13 15 15 15 15 15 15 14 14 13 13 13 13 | ||
2147 | 12 12 12 12 12 12 10 10 9 4 5 5 0 0 0 0 0 0 | ||
2148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2152 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2153 | 0 0 0 | ||
2154 | 0 0 0 0 0 0 0 0 0 48 49 45 131 127 93 174 170 121 | ||
2155 | 194 189 146 210 208 158 239 239 170 251 251 187 251 251 187 251 251 187 | ||
2156 | 251 251 187 214 212 158 204 201 155 197 193 154 204 201 155 210 208 158 | ||
2157 | 239 239 170 251 251 187 251 251 187 251 251 187 239 239 170 214 212 158 | ||
2158 | 194 191 148 156 151 111 71 71 57 19 20 19 51 52 50 51 52 50 | ||
2159 | 51 52 50 41 42 42 30 32 31 21 22 21 17 17 17 13 13 13 | ||
2160 | 9 11 11 8 9 9 6 8 8 6 7 7 6 7 7 5 7 7 | ||
2161 | 5 6 5 5 6 5 5 7 7 5 7 7 6 7 7 6 7 7 | ||
2162 | 6 8 8 6 8 8 6 8 8 6 7 7 6 7 7 6 7 7 | ||
2163 | 6 7 7 6 8 8 6 8 8 6 8 8 6 8 8 6 8 8 | ||
2164 | 55 56 53 43 45 43 6 8 8 6 8 8 6 8 8 47 48 46 | ||
2165 | 60 60 56 47 48 46 46 47 45 47 48 46 38 39 37 10 12 12 | ||
2166 | 66 65 55 145 141 105 197 193 154 214 212 158 251 251 187 251 251 187 | ||
2167 | 251 251 187 251 251 187 224 223 159 210 208 158 194 191 148 184 181 136 | ||
2168 | 184 181 136 194 189 146 204 201 155 224 223 159 251 251 187 251 251 187 | ||
2169 | 251 251 187 251 251 187 251 251 187 239 239 170 210 208 158 181 176 137 | ||
2170 | 115 113 82 21 22 20 13 13 13 13 13 13 13 13 13 13 13 13 | ||
2171 | 14 14 13 13 13 13 13 13 13 13 13 13 12 12 12 11 11 11 | ||
2172 | 10 10 9 6 7 7 1 1 1 0 0 0 0 0 0 0 0 0 | ||
2173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2175 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2178 | 0 0 0 | ||
2179 | 0 0 0 0 0 0 2 2 1 66 65 55 144 139 99 178 174 128 | ||
2180 | 204 201 155 214 212 158 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2181 | 251 251 187 214 212 158 204 201 155 194 191 148 197 193 154 204 201 155 | ||
2182 | 214 212 158 239 239 170 239 239 170 239 239 170 214 212 158 210 208 158 | ||
2183 | 184 181 136 149 145 103 66 65 55 41 42 42 47 48 46 46 47 45 | ||
2184 | 43 45 43 39 40 39 28 31 30 21 22 21 16 16 16 10 12 12 | ||
2185 | 8 10 10 6 8 8 6 7 7 6 7 7 5 6 5 5 6 5 | ||
2186 | 5 6 5 5 6 5 5 6 5 5 6 5 5 7 7 5 7 7 | ||
2187 | 6 7 7 6 7 7 6 7 7 5 7 7 5 7 7 5 7 7 | ||
2188 | 5 7 7 6 7 7 6 7 7 6 7 7 6 7 7 6 8 8 | ||
2189 | 6 8 8 6 8 8 6 7 7 6 7 7 46 47 45 156 151 111 | ||
2190 | 105 104 92 58 59 55 43 45 43 32 34 33 6 8 8 6 8 8 | ||
2191 | 49 51 48 125 122 87 181 176 137 204 201 155 214 212 158 239 239 170 | ||
2192 | 239 239 170 214 212 158 210 208 158 197 193 154 181 176 137 176 171 126 | ||
2193 | 176 171 126 184 181 136 197 193 154 210 208 158 239 239 170 251 251 187 | ||
2194 | 251 251 187 251 251 187 251 251 187 251 251 187 210 208 158 177 172 135 | ||
2195 | 99 98 80 13 13 13 12 12 12 12 12 12 13 13 13 12 12 12 | ||
2196 | 12 12 12 12 12 12 11 11 11 11 11 11 8 9 9 4 5 5 | ||
2197 | 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2203 | 0 0 0 | ||
2204 | 0 0 0 0 0 0 1 1 0 61 61 53 142 137 94 181 176 137 | ||
2205 | 204 201 155 224 223 159 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2206 | 251 251 187 214 212 158 197 193 154 190 186 136 184 181 136 188 184 146 | ||
2207 | 197 193 154 204 201 155 210 208 158 210 208 158 204 201 155 194 189 146 | ||
2208 | 176 171 126 134 131 96 66 65 55 43 45 43 41 42 42 39 40 39 | ||
2209 | 35 37 36 33 36 34 27 29 28 20 20 20 15 15 15 9 11 11 | ||
2210 | 8 9 9 6 7 7 5 6 5 5 6 5 4 5 5 4 5 5 | ||
2211 | 4 5 5 4 5 5 4 5 5 4 5 5 5 6 5 4 5 5 | ||
2212 | 4 5 5 5 6 5 4 5 5 5 6 5 5 6 5 5 6 5 | ||
2213 | 5 7 7 5 7 7 5 7 7 5 7 7 5 7 7 5 7 7 | ||
2214 | 6 7 7 6 7 7 6 7 7 28 31 30 184 179 149 184 179 149 | ||
2215 | 145 141 105 84 83 72 27 29 28 5 7 7 5 6 5 16 16 16 | ||
2216 | 43 44 41 96 95 69 158 153 112 188 184 146 204 201 155 210 208 158 | ||
2217 | 204 201 155 197 193 154 184 179 149 177 172 135 168 163 120 164 159 111 | ||
2218 | 164 159 111 174 170 121 184 181 136 197 193 154 214 212 158 251 251 187 | ||
2219 | 251 251 187 251 251 187 251 251 187 251 251 187 210 208 158 177 172 135 | ||
2220 | 71 71 57 11 11 11 12 12 12 11 11 11 11 11 11 11 11 11 | ||
2221 | 10 10 9 10 10 9 8 8 7 3 4 4 0 0 0 0 0 0 | ||
2222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2223 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2224 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2225 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2226 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2227 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2228 | 0 0 0 | ||
2229 | 0 0 0 0 0 0 0 0 0 31 33 31 121 119 87 176 171 126 | ||
2230 | 197 193 154 214 212 158 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2231 | 239 239 170 210 208 158 194 189 146 178 174 128 174 170 121 176 171 126 | ||
2232 | 177 172 135 181 176 137 184 179 149 184 179 149 181 176 137 178 174 128 | ||
2233 | 158 153 112 121 119 87 53 55 47 37 39 37 33 36 34 30 32 31 | ||
2234 | 27 29 28 25 27 26 24 26 24 19 20 19 13 13 13 8 10 10 | ||
2235 | 6 8 8 6 7 7 5 6 5 4 5 5 4 5 5 4 5 5 | ||
2236 | 4 5 5 4 5 5 4 5 5 3 4 4 3 4 4 4 5 5 | ||
2237 | 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 | ||
2238 | 5 6 5 5 6 5 5 6 5 5 6 5 5 6 5 5 6 5 | ||
2239 | 5 6 5 5 6 5 12 14 14 145 141 105 184 179 149 177 172 135 | ||
2240 | 90 89 73 21 22 21 5 6 5 5 6 5 4 5 5 37 39 37 | ||
2241 | 38 39 37 61 61 53 134 131 96 168 163 120 184 181 136 188 184 146 | ||
2242 | 184 179 149 177 172 135 168 163 120 164 159 111 155 149 109 151 147 98 | ||
2243 | 151 147 98 164 159 111 176 171 126 184 179 149 210 208 158 239 239 170 | ||
2244 | 251 251 187 251 251 187 251 251 187 239 239 170 210 208 158 158 153 112 | ||
2245 | 46 47 43 10 10 9 10 10 9 10 10 9 8 9 9 8 9 9 | ||
2246 | 6 7 7 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2250 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2251 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2252 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2253 | 0 0 0 | ||
2254 | 0 0 0 0 0 0 0 0 0 13 12 7 82 81 62 158 153 112 | ||
2255 | 188 184 146 210 208 158 239 239 170 251 251 187 251 251 187 251 251 187 | ||
2256 | 224 223 159 204 201 155 184 181 136 171 165 117 164 159 111 160 154 106 | ||
2257 | 158 153 112 164 159 111 168 163 120 168 163 120 168 163 120 164 159 111 | ||
2258 | 142 137 94 96 95 69 43 44 41 27 29 28 26 28 27 23 24 24 | ||
2259 | 21 22 21 18 19 18 17 17 17 18 19 18 13 13 13 8 8 7 | ||
2260 | 6 7 7 5 6 5 4 5 5 3 4 4 3 4 4 3 4 4 | ||
2261 | 3 4 4 3 4 4 3 3 3 3 3 3 3 4 4 3 4 4 | ||
2262 | 3 4 4 3 4 4 4 5 5 4 5 5 4 5 5 4 5 5 | ||
2263 | 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 | ||
2264 | 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 | ||
2265 | 4 5 5 4 5 5 4 5 5 4 5 5 31 33 31 65 66 61 | ||
2266 | 37 39 37 38 39 37 96 95 69 144 139 99 168 163 120 174 170 121 | ||
2267 | 168 163 120 164 159 111 155 149 109 149 145 103 149 143 98 142 137 94 | ||
2268 | 149 143 98 151 147 98 164 159 111 177 172 135 197 193 154 210 208 158 | ||
2269 | 251 251 187 251 251 187 251 251 187 239 239 170 197 193 154 137 133 100 | ||
2270 | 24 26 24 8 9 9 8 9 9 8 8 7 6 7 7 2 2 2 | ||
2271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2273 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2275 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2278 | 0 0 0 | ||
2279 | 0 0 0 0 0 0 0 0 0 0 0 0 46 47 43 125 122 87 | ||
2280 | 176 171 126 197 193 154 210 208 158 239 239 170 251 251 187 239 239 170 | ||
2281 | 214 212 158 197 193 154 181 176 137 164 159 111 151 147 98 149 143 98 | ||
2282 | 149 143 98 149 143 98 149 145 103 155 149 109 160 154 106 149 143 98 | ||
2283 | 118 116 76 82 81 62 30 31 28 21 22 21 19 20 19 17 17 17 | ||
2284 | 14 14 13 12 12 12 10 10 9 12 12 12 10 12 12 6 8 8 | ||
2285 | 4 5 5 3 4 4 3 4 4 3 4 4 3 3 3 3 3 3 | ||
2286 | 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 2 3 3 | ||
2287 | 3 4 4 3 4 4 3 4 4 3 4 4 3 4 4 4 5 5 | ||
2288 | 4 5 5 3 4 4 3 4 4 3 4 4 3 4 4 3 4 4 | ||
2289 | 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 4 5 5 | ||
2290 | 4 5 5 3 4 4 3 4 4 23 24 24 110 109 94 72 73 67 | ||
2291 | 39 40 39 22 24 23 46 47 43 103 101 77 142 137 94 155 149 109 | ||
2292 | 160 154 106 155 149 109 149 143 98 142 137 94 142 137 94 142 137 94 | ||
2293 | 142 137 94 149 143 98 155 149 109 176 171 126 184 179 149 210 208 158 | ||
2294 | 239 239 170 251 251 187 251 251 187 214 212 158 184 179 149 105 104 92 | ||
2295 | 10 10 9 6 7 7 3 4 4 1 1 1 0 0 0 0 0 0 | ||
2296 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2299 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2301 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2303 | 0 0 0 | ||
2304 | 0 0 0 0 0 0 0 0 0 0 0 0 12 12 9 82 81 62 | ||
2305 | 149 145 103 181 176 137 197 193 154 210 208 158 214 212 158 214 212 158 | ||
2306 | 210 208 158 197 193 154 177 172 135 158 153 112 149 143 98 142 137 94 | ||
2307 | 142 137 94 142 137 94 149 143 98 151 147 98 151 147 98 131 127 93 | ||
2308 | 103 101 77 71 71 57 22 24 23 15 15 15 13 13 13 11 11 11 | ||
2309 | 8 9 9 6 7 7 6 7 7 4 5 5 8 9 9 6 7 7 | ||
2310 | 4 5 5 3 3 3 3 3 3 3 3 3 3 3 3 2 2 2 | ||
2311 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 | ||
2312 | 2 3 3 2 3 3 2 3 3 3 4 4 3 4 4 3 4 4 | ||
2313 | 3 4 4 3 4 4 3 3 3 3 4 4 3 4 4 3 4 4 | ||
2314 | 3 4 4 3 4 4 3 4 4 3 4 4 3 4 4 3 4 4 | ||
2315 | 3 4 4 3 4 4 21 22 21 145 141 105 145 141 105 72 73 67 | ||
2316 | 17 18 17 3 4 4 21 22 20 66 65 55 118 116 76 142 137 94 | ||
2317 | 149 143 98 151 147 98 149 143 98 142 137 94 142 137 94 142 137 94 | ||
2318 | 142 137 94 149 143 98 155 149 109 168 163 120 184 179 149 210 208 158 | ||
2319 | 239 239 170 251 251 187 251 251 187 210 208 158 177 172 135 71 71 57 | ||
2320 | 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2321 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2322 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2323 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2324 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2328 | 0 0 0 | ||
2329 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 38 35 | ||
2330 | 115 113 82 158 153 112 181 176 137 197 193 154 204 201 155 210 208 158 | ||
2331 | 204 201 155 188 184 146 177 172 135 164 159 111 149 145 103 142 137 94 | ||
2332 | 142 137 94 142 137 94 149 143 98 151 147 98 149 143 98 125 122 87 | ||
2333 | 96 95 69 61 61 53 16 17 12 8 9 9 8 8 7 6 7 7 | ||
2334 | 4 5 5 3 4 4 3 3 3 3 3 3 3 3 3 5 6 5 | ||
2335 | 3 4 4 2 3 3 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2336 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 2 2 | ||
2337 | 2 2 2 2 2 2 2 3 3 2 3 3 2 3 3 2 3 3 | ||
2338 | 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 | ||
2339 | 3 3 3 2 3 3 2 3 3 3 4 4 3 4 4 3 4 4 | ||
2340 | 3 4 4 3 4 4 3 4 4 8 9 9 8 8 7 3 3 3 | ||
2341 | 3 3 3 3 3 3 9 9 8 36 38 35 82 81 62 118 116 76 | ||
2342 | 142 137 94 151 147 98 151 147 98 151 147 98 149 143 98 149 143 98 | ||
2343 | 149 143 98 151 147 98 160 154 106 176 171 126 188 184 146 210 208 158 | ||
2344 | 239 239 170 251 251 187 239 239 170 210 208 158 156 151 111 31 33 31 | ||
2345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2347 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2348 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2349 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2350 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2352 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2353 | 0 0 0 | ||
2354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 5 | ||
2355 | 66 65 55 125 122 87 158 153 112 181 176 137 194 189 146 197 193 154 | ||
2356 | 197 193 154 184 179 149 177 172 135 168 163 120 156 151 111 151 147 98 | ||
2357 | 151 147 98 151 147 98 151 147 98 161 156 96 149 143 98 118 116 76 | ||
2358 | 82 81 62 53 55 47 12 12 9 4 5 5 3 4 4 3 3 3 | ||
2359 | 3 3 3 3 3 3 2 2 2 2 2 2 1 1 1 1 2 2 | ||
2360 | 3 3 3 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2361 | 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 2 2 | ||
2362 | 1 2 2 1 2 2 1 2 2 2 2 2 2 2 2 2 3 3 | ||
2363 | 2 3 3 2 3 3 2 3 3 2 3 3 2 2 2 2 2 2 | ||
2364 | 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 | ||
2365 | 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 3 3 3 | ||
2366 | 3 3 3 3 3 3 72 73 67 61 61 53 53 55 47 96 95 69 | ||
2367 | 131 127 93 151 147 98 161 156 96 161 156 96 151 147 98 151 147 98 | ||
2368 | 161 156 96 160 154 106 164 159 111 177 172 135 197 193 154 210 208 158 | ||
2369 | 239 239 170 251 251 187 224 223 159 197 193 154 131 127 93 9 9 8 | ||
2370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2371 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2376 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2377 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2378 | 0 0 0 | ||
2379 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2380 | 24 26 24 82 81 62 131 127 93 164 159 111 178 174 128 188 184 146 | ||
2381 | 188 184 146 188 184 146 181 176 137 176 171 126 168 163 120 164 159 111 | ||
2382 | 160 154 106 160 154 106 160 154 106 160 154 106 151 147 98 125 122 87 | ||
2383 | 82 81 62 61 61 53 12 12 9 3 3 3 3 3 3 2 2 2 | ||
2384 | 2 2 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 | ||
2385 | 0 0 0 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2386 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2387 | 1 1 1 1 1 1 1 2 2 1 2 2 1 2 2 1 2 2 | ||
2388 | 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2389 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2390 | 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 2 3 3 | ||
2391 | 2 3 3 30 32 31 72 73 67 31 33 31 36 38 35 82 81 62 | ||
2392 | 118 116 76 149 143 98 161 156 96 161 156 96 161 156 96 160 154 106 | ||
2393 | 165 161 109 165 161 109 176 171 126 188 184 146 204 201 155 214 212 158 | ||
2394 | 239 239 170 239 239 170 214 212 158 184 179 149 82 81 62 0 0 0 | ||
2395 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2403 | 0 0 0 | ||
2404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2405 | 2 2 2 43 44 41 96 95 69 131 127 93 160 154 106 176 171 126 | ||
2406 | 184 181 136 184 181 136 184 181 136 181 176 137 178 174 128 174 170 121 | ||
2407 | 171 165 117 173 167 111 173 167 111 173 167 111 160 154 106 131 127 93 | ||
2408 | 96 95 69 66 65 55 16 17 12 2 2 2 1 1 1 1 1 1 | ||
2409 | 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2410 | 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2411 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2412 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2413 | 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 2 2 2 | ||
2414 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2415 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2416 | 2 2 2 2 2 2 2 2 2 10 9 6 30 31 28 71 71 57 | ||
2417 | 118 116 76 149 143 98 165 161 109 165 161 109 165 161 109 173 167 111 | ||
2418 | 173 167 111 176 171 126 184 181 136 197 193 154 210 208 158 224 223 159 | ||
2419 | 251 251 187 239 239 170 210 208 158 168 163 120 40 41 39 0 0 0 | ||
2420 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2423 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2427 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2428 | 0 0 0 | ||
2429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2430 | 0 0 0 13 12 7 61 61 53 96 95 69 131 127 93 160 154 106 | ||
2431 | 176 171 126 184 181 136 184 181 136 188 184 146 184 181 136 184 181 136 | ||
2432 | 184 181 136 186 182 128 186 182 128 178 174 128 174 170 121 149 145 103 | ||
2433 | 118 116 76 82 81 62 21 22 20 1 1 1 1 1 1 0 0 0 | ||
2434 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2435 | 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 | ||
2436 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2437 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2438 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 | ||
2439 | 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 2 2 2 | ||
2440 | 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 | ||
2441 | 2 2 2 2 2 2 2 2 2 3 3 3 30 31 28 66 65 55 | ||
2442 | 118 116 76 149 143 98 165 161 109 173 167 111 173 167 111 174 170 121 | ||
2443 | 186 182 128 190 186 136 197 193 154 210 208 158 224 223 159 251 251 187 | ||
2444 | 251 251 187 239 239 170 197 193 154 137 133 100 12 12 9 0 0 0 | ||
2445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2446 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2447 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2448 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2449 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2450 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2451 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2453 | 0 0 0 | ||
2454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2455 | 0 0 0 0 0 0 30 31 28 71 71 57 103 101 77 134 131 96 | ||
2456 | 164 159 111 176 171 126 184 181 136 188 184 146 194 189 146 197 193 154 | ||
2457 | 197 193 154 197 193 154 194 191 148 194 189 146 190 186 136 176 171 126 | ||
2458 | 145 141 105 103 101 77 40 41 39 0 0 0 0 0 0 0 0 0 | ||
2459 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2460 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2461 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2462 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2463 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2464 | 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 2 2 | ||
2465 | 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2 | ||
2466 | 1 2 2 1 2 2 1 2 2 1 2 2 30 31 28 71 71 57 | ||
2467 | 118 116 76 160 154 106 173 167 111 178 174 128 186 182 128 190 186 136 | ||
2468 | 194 191 148 204 201 155 210 208 158 224 223 159 251 251 187 251 251 187 | ||
2469 | 251 251 187 214 212 158 184 179 149 84 83 72 0 0 0 0 0 0 | ||
2470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2474 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2475 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2476 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2477 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2478 | 0 0 0 | ||
2479 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2480 | 0 0 0 0 0 0 5 5 3 43 44 41 82 81 62 103 101 77 | ||
2481 | 142 137 94 165 161 109 178 174 128 190 186 136 197 193 154 204 201 155 | ||
2482 | 210 208 158 210 208 158 210 208 158 210 208 158 210 208 158 197 193 154 | ||
2483 | 177 172 135 145 141 105 79 78 62 5 4 3 0 0 0 0 0 0 | ||
2484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2486 | 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2487 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2488 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2489 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2490 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2491 | 1 1 1 1 1 1 1 2 2 1 2 2 30 31 28 82 81 62 | ||
2492 | 142 137 94 165 161 109 178 174 128 190 186 136 194 191 148 204 201 155 | ||
2493 | 210 208 158 214 212 158 239 239 170 251 251 187 251 251 187 251 251 187 | ||
2494 | 251 251 187 210 208 158 168 163 120 36 38 35 0 0 0 0 0 0 | ||
2495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2497 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2502 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2503 | 0 0 0 | ||
2504 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2505 | 0 0 0 0 0 0 0 0 0 16 17 12 53 55 47 82 81 62 | ||
2506 | 118 116 76 151 147 98 171 165 117 184 181 136 194 191 148 210 208 158 | ||
2507 | 214 212 158 224 223 159 239 239 170 239 239 170 224 223 159 214 212 158 | ||
2508 | 197 193 154 176 171 126 115 113 82 24 26 24 0 0 0 0 0 0 | ||
2509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2511 | 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 | ||
2512 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2513 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2514 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2515 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2516 | 1 1 1 1 1 1 1 1 1 1 1 1 40 41 39 103 101 77 | ||
2517 | 151 147 98 176 171 126 190 186 136 197 193 154 210 208 158 214 212 158 | ||
2518 | 239 239 170 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2519 | 239 239 170 197 193 154 110 109 94 3 4 3 0 0 0 0 0 0 | ||
2520 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2522 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2525 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2526 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2527 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2528 | 0 0 0 | ||
2529 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2530 | 0 0 0 0 0 0 0 0 0 0 0 0 30 31 28 66 65 55 | ||
2531 | 96 95 69 125 122 87 160 154 106 178 174 128 194 189 146 204 201 155 | ||
2532 | 214 212 158 239 239 170 251 251 187 251 251 187 251 251 187 239 239 170 | ||
2533 | 210 208 158 188 184 146 149 145 103 61 61 53 0 0 0 0 0 0 | ||
2534 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2535 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2536 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2537 | 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2538 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2539 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2540 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2541 | 1 1 1 1 1 1 1 1 1 1 1 1 61 61 53 131 127 93 | ||
2542 | 164 159 111 184 181 136 197 193 154 210 208 158 224 223 159 251 251 187 | ||
2543 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2544 | 210 208 158 168 163 120 43 44 41 0 0 0 0 0 0 0 0 0 | ||
2545 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2546 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2547 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2549 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2550 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2552 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2553 | 0 0 0 | ||
2554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2555 | 0 0 0 0 0 0 0 0 0 0 0 0 4 3 2 36 38 35 | ||
2556 | 71 71 57 96 95 69 142 137 94 165 161 109 184 181 136 197 193 154 | ||
2557 | 210 208 158 239 239 170 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2558 | 214 212 158 197 193 154 168 163 120 103 101 77 7 7 5 0 0 0 | ||
2559 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2560 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2561 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2562 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 | ||
2563 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2564 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2565 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2566 | 1 1 1 0 0 0 0 0 0 0 0 0 82 81 62 142 137 94 | ||
2567 | 174 170 121 194 189 146 210 208 158 224 223 159 251 251 187 251 251 187 | ||
2568 | 251 251 187 251 251 187 251 251 187 251 251 187 251 251 187 224 223 159 | ||
2569 | 184 179 149 99 98 80 3 3 3 0 0 0 0 0 0 0 0 0 | ||
2570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2571 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2572 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2574 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2575 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2576 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2577 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2578 | 0 0 0 | ||
2579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 5 | ||
2581 | 43 44 41 82 81 62 118 116 76 142 137 94 171 165 117 190 186 136 | ||
2582 | 204 201 155 224 223 159 251 251 187 251 251 187 251 251 187 251 251 187 | ||
2583 | 214 212 158 197 193 154 174 170 121 125 122 87 30 31 28 0 0 0 | ||
2584 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2585 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2586 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2587 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2588 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 | ||
2589 | 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 | ||
2590 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2591 | 0 0 0 0 0 0 0 0 0 3 4 3 82 81 62 149 143 98 | ||
2592 | 176 171 126 194 191 148 210 208 158 239 239 170 251 251 187 251 251 187 | ||
2593 | 251 251 187 251 251 187 251 251 187 251 251 187 239 239 170 204 201 155 | ||
2594 | 145 141 105 30 31 28 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2595 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2599 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2600 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2601 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2602 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2603 | 0 0 0 | ||
2604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2606 | 10 9 6 46 47 43 82 81 62 118 116 76 149 143 98 174 170 121 | ||
2607 | 194 189 146 210 208 158 224 223 159 251 251 187 251 251 187 224 223 159 | ||
2608 | 210 208 158 194 191 148 174 170 121 134 131 96 53 55 47 0 0 0 | ||
2609 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2610 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2611 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2612 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2613 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2614 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2615 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2616 | 0 0 0 0 0 0 0 0 0 7 7 5 96 95 69 149 143 98 | ||
2617 | 176 171 126 194 191 148 210 208 158 239 239 170 251 251 187 251 251 187 | ||
2618 | 251 251 187 251 251 187 251 251 187 239 239 170 210 208 158 177 172 135 | ||
2619 | 75 75 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2620 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2623 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2627 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2628 | 0 0 0 | ||
2629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2631 | 0 0 0 10 9 6 46 47 43 82 81 62 118 116 76 149 143 98 | ||
2632 | 176 171 126 194 191 148 210 208 158 214 212 158 214 212 158 210 208 158 | ||
2633 | 197 193 154 184 181 136 164 159 111 131 127 93 53 55 47 0 0 0 | ||
2634 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2635 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2636 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2637 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2638 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2639 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2640 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2641 | 0 0 0 0 0 0 0 0 0 7 7 5 96 95 69 149 143 98 | ||
2642 | 174 170 121 194 189 146 204 201 155 214 212 158 239 239 170 251 251 187 | ||
2643 | 251 251 187 251 251 187 239 239 170 210 208 158 184 179 149 110 109 94 | ||
2644 | 12 12 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2647 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2648 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2651 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2653 | 0 0 0 | ||
2654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2656 | 0 0 0 0 0 0 10 9 6 43 44 41 82 81 62 115 113 82 | ||
2657 | 144 139 99 168 163 120 188 184 146 197 193 154 197 193 154 194 189 146 | ||
2658 | 184 181 136 174 170 121 151 147 98 118 116 76 36 38 35 0 0 0 | ||
2659 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2660 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2661 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2662 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2663 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2664 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2665 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2666 | 0 0 0 0 0 0 0 0 0 4 3 2 82 81 62 142 137 94 | ||
2667 | 171 165 117 186 182 128 194 191 148 210 208 158 214 212 158 224 223 159 | ||
2668 | 239 239 170 224 223 159 210 208 158 184 179 149 137 133 100 36 38 35 | ||
2669 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2670 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2671 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2672 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2674 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2675 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2678 | 0 0 0 | ||
2679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2681 | 0 0 0 0 0 0 0 0 0 7 7 5 36 38 35 71 71 57 | ||
2682 | 103 101 77 131 127 93 155 149 109 168 163 120 168 163 120 168 163 120 | ||
2683 | 164 159 111 149 143 98 125 122 87 82 81 62 13 12 7 0 0 0 | ||
2684 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2685 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2686 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2687 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2688 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2689 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2691 | 0 0 0 0 0 0 0 0 0 0 0 0 61 61 53 125 122 87 | ||
2692 | 160 154 106 174 170 121 184 181 136 194 189 146 204 201 155 210 208 158 | ||
2693 | 210 208 158 204 201 155 184 179 149 145 141 105 61 61 53 0 0 0 | ||
2694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2696 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2697 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2698 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2699 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2700 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2703 | 0 0 0 | ||
2704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2705 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2706 | 0 0 0 0 0 0 0 0 0 0 0 0 3 3 2 30 31 28 | ||
2707 | 61 61 53 82 81 62 103 101 77 121 119 87 125 122 87 125 122 87 | ||
2708 | 118 116 76 103 101 77 79 78 62 24 26 24 0 0 0 0 0 0 | ||
2709 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2710 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2711 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2712 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2713 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2714 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2715 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2716 | 0 0 0 0 0 0 0 0 0 0 0 0 25 27 25 96 95 69 | ||
2717 | 142 137 94 160 154 106 171 165 117 178 174 128 184 181 136 184 181 136 | ||
2718 | 181 176 137 177 172 135 145 141 105 75 75 61 5 5 3 0 0 0 | ||
2719 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2721 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2724 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2725 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2726 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2728 | 0 0 0 | ||
2729 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2730 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2731 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2732 | 16 17 12 40 41 39 61 61 53 71 71 57 71 71 57 71 71 57 | ||
2733 | 66 65 55 43 44 41 12 12 9 0 0 0 0 0 0 0 0 0 | ||
2734 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2735 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2736 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2737 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2738 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2739 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2740 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2741 | 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 46 47 43 | ||
2742 | 96 95 69 125 122 87 142 137 94 149 145 103 155 149 109 155 149 109 | ||
2743 | 145 141 105 121 119 87 66 65 55 7 7 5 0 0 0 0 0 0 | ||
2744 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2745 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2747 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2749 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2752 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2753 | 0 0 0 | ||
2754 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2755 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2756 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2757 | 0 0 0 1 1 1 16 17 12 24 26 24 25 27 25 19 20 18 | ||
2758 | 7 7 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2759 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2760 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2761 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2762 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2763 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2764 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2765 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2766 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 1 | ||
2767 | 25 27 25 61 61 53 82 81 62 96 95 69 96 95 69 82 81 62 | ||
2768 | 61 61 53 25 27 25 2 2 1 0 0 0 0 0 0 0 0 0 | ||
2769 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2770 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2771 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2772 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2773 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2774 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2775 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2776 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2777 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2778 | 0 0 0 | ||
2779 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2780 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2781 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2782 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2783 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2784 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2785 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2786 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2787 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2788 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2789 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2790 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2791 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2792 | 0 0 0 0 0 0 5 6 5 13 12 7 10 9 6 3 4 3 | ||
2793 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2794 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2795 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2796 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2797 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2798 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2799 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2800 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2801 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2802 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2803 | 0 0 0 | ||
2804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2805 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2806 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2807 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2808 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2809 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2810 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2811 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2812 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2813 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2814 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2815 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2816 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2817 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2818 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2819 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2820 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2822 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2823 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2824 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2825 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2826 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2827 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2828 | 0 0 0 | ||
diff --git a/drivers/video/logo/logo_linux_vga16.ppm b/drivers/video/logo/logo_linux_vga16.ppm index 12ac3a5454c0..1850c15e6feb 100644 --- a/drivers/video/logo/logo_linux_vga16.ppm +++ b/drivers/video/logo/logo_linux_vga16.ppm | |||
@@ -1,2739 +1,1604 @@ | |||
1 | P3 | 1 | P3 |
2 | 142 114 | 2 | # Standard 16-color Linux logo |
3 | 80 80 | ||
3 | 255 | 4 | 255 |
4 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 5 | 0 0 0 0 0 0 0 0 0 0 0 0 |
5 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 6 | 0 0 0 0 0 0 0 0 0 0 0 0 |
6 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 7 | 0 0 0 0 0 0 0 0 0 0 0 0 |
7 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 8 | 0 0 0 0 0 0 0 0 0 0 0 0 |
8 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 9 | 0 0 0 0 0 0 0 0 0 0 0 0 |
9 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 10 | 0 0 0 0 0 0 0 0 0 0 0 0 |
10 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 11 | 0 0 0 0 0 0 0 0 0 0 0 0 |
11 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 12 | 0 0 0 0 0 0 0 0 0 0 0 0 |
12 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 13 | 0 0 0 0 0 0 0 0 0 0 0 0 |
13 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 14 | 0 0 0 0 0 0 0 0 0 0 0 0 |
14 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 15 | 0 0 0 0 0 0 0 0 0 0 0 0 |
15 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 16 | 0 0 0 0 0 0 0 0 0 0 0 0 |
16 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 17 | 0 0 0 0 0 0 0 0 0 0 0 0 |
17 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 18 | 0 0 0 0 0 0 0 0 0 0 0 0 |
18 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 19 | 0 0 0 0 0 0 0 0 0 0 0 0 |
19 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 20 | 0 0 0 0 0 0 0 0 0 0 0 0 |
20 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 21 | 0 0 0 0 0 0 0 0 0 0 0 0 |
21 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 22 | 0 0 0 0 0 0 0 0 0 0 0 0 |
22 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 23 | 0 0 0 0 0 0 0 0 0 0 0 0 |
23 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 24 | 0 0 0 0 0 0 0 0 0 0 0 0 |
24 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 25 | 0 0 0 0 0 0 0 0 0 0 0 0 |
25 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 26 | 0 0 0 0 0 0 0 0 0 0 0 0 |
26 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 27 | 0 0 0 0 0 0 0 0 0 0 0 0 |
27 | 0 0 0 0 0 0 0 0 0 0 0 0 | 28 | 0 0 0 0 0 0 0 0 0 0 0 0 |
28 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 29 | 0 0 0 0 0 0 0 0 0 0 0 0 |
29 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 30 | 0 0 0 0 0 0 0 0 0 0 0 0 |
30 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 31 | 0 0 0 0 0 0 0 0 0 0 0 0 |
31 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 32 | 0 0 0 0 0 0 0 0 0 0 0 0 |
32 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 33 | 0 0 0 0 0 0 0 0 0 0 0 0 |
33 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 34 | 0 0 0 0 0 0 0 0 0 0 0 0 |
34 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 35 | 0 0 0 0 0 0 0 0 0 0 0 0 |
35 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 36 | 0 0 0 0 0 0 0 0 0 0 0 0 |
36 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 37 | 0 0 0 0 0 0 0 0 0 0 0 0 |
37 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 38 | 0 0 0 0 0 0 0 0 0 0 0 0 |
38 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 39 | 0 0 0 0 0 0 0 0 0 0 0 0 |
39 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 40 | 0 0 0 0 0 0 0 0 0 0 0 0 |
40 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 41 | 0 0 0 0 0 0 0 0 0 0 0 0 |
41 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 42 | 0 0 0 0 0 0 0 0 0 0 0 0 |
42 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 43 | 0 0 0 0 0 0 0 0 0 0 0 0 |
43 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 44 | 0 0 0 0 0 0 0 0 0 0 0 0 |
44 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 45 | 0 0 0 0 0 0 0 0 0 0 0 0 |
45 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 46 | 0 0 0 0 0 0 0 0 0 0 0 0 |
46 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 47 | 0 0 0 0 0 0 0 0 0 0 0 0 |
47 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 48 | 0 0 0 0 0 0 0 0 0 0 0 0 |
48 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 49 | 0 0 0 0 0 0 0 0 0 0 0 0 |
49 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 50 | 0 0 0 0 0 0 0 0 0 0 0 0 |
50 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 51 | 0 0 0 0 0 0 0 0 0 0 0 0 |
51 | 0 0 0 0 0 0 0 0 0 0 0 0 | 52 | 0 0 0 0 0 0 0 0 0 0 0 0 |
52 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 53 | 0 0 0 0 0 0 0 0 0 0 0 0 |
53 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 54 | 85 85 85 85 85 85 85 85 85 85 85 85 |
54 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 55 | 85 85 85 85 85 85 85 85 85 0 0 0 |
55 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 56 | 0 0 0 0 0 0 0 0 0 0 0 0 |
56 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 57 | 0 0 0 0 0 0 0 0 0 0 0 0 |
57 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 58 | 0 0 0 0 0 0 0 0 0 0 0 0 |
58 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 59 | 0 0 0 0 0 0 0 0 0 0 0 0 |
59 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 60 | 0 0 0 0 0 0 0 0 0 0 0 0 |
60 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 61 | 0 0 0 0 0 0 0 0 0 0 0 0 |
61 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 62 | 0 0 0 0 0 0 0 0 0 0 0 0 |
62 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 63 | 0 0 0 0 0 0 0 0 0 0 0 0 |
63 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 64 | 0 0 0 0 0 0 0 0 0 0 0 0 |
64 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 65 | 0 0 0 0 0 0 0 0 0 0 0 0 |
65 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 66 | 0 0 0 0 0 0 0 0 0 0 0 0 |
66 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 67 | 0 0 0 0 0 0 0 0 0 0 0 0 |
67 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 68 | 0 0 0 0 0 0 0 0 0 0 0 0 |
68 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 69 | 0 0 0 0 0 0 0 0 0 0 0 0 |
69 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 70 | 0 0 0 0 0 0 0 0 0 0 0 0 |
70 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 71 | 0 0 0 0 0 0 0 0 0 0 0 0 |
71 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 72 | 0 0 0 0 0 0 0 0 0 0 0 0 |
72 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 73 | 0 0 0 0 0 0 85 85 85 85 85 85 |
73 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 74 | 85 85 85 0 0 0 0 0 0 0 0 0 |
74 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 75 | 0 0 0 0 0 0 0 0 0 85 85 85 |
75 | 0 0 0 0 0 0 0 0 0 0 0 0 | 76 | 85 85 85 85 85 85 0 0 0 0 0 0 |
76 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 77 | 0 0 0 0 0 0 0 0 0 0 0 0 |
77 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 78 | 0 0 0 0 0 0 0 0 0 0 0 0 |
78 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 79 | 0 0 0 0 0 0 0 0 0 0 0 0 |
79 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 80 | 0 0 0 0 0 0 0 0 0 0 0 0 |
80 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 81 | 0 0 0 0 0 0 0 0 0 0 0 0 |
81 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 82 | 0 0 0 0 0 0 0 0 0 0 0 0 |
82 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 83 | 0 0 0 0 0 0 0 0 0 0 0 0 |
83 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 84 | 0 0 0 0 0 0 0 0 0 0 0 0 |
84 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 85 | 0 0 0 0 0 0 0 0 0 0 0 0 |
85 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 86 | 0 0 0 0 0 0 0 0 0 0 0 0 |
86 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 87 | 0 0 0 0 0 0 0 0 0 0 0 0 |
87 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 88 | 0 0 0 0 0 0 0 0 0 0 0 0 |
88 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 89 | 0 0 0 0 0 0 0 0 0 0 0 0 |
89 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 90 | 0 0 0 0 0 0 0 0 0 0 0 0 |
90 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 91 | 0 0 0 0 0 0 0 0 0 0 0 0 |
91 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 92 | 0 0 0 0 0 0 0 0 0 0 0 0 |
92 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 93 | 0 0 0 85 85 85 0 0 0 0 0 0 |
93 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 94 | 0 0 0 0 0 0 0 0 0 0 0 0 |
94 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 95 | 0 0 0 0 0 0 0 0 0 0 0 0 |
95 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 96 | 0 0 0 0 0 0 85 85 85 85 85 85 |
96 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 97 | 0 0 0 0 0 0 0 0 0 0 0 0 |
97 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 98 | 0 0 0 0 0 0 0 0 0 0 0 0 |
98 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 99 | 0 0 0 0 0 0 0 0 0 0 0 0 |
99 | 0 0 0 0 0 0 0 0 0 0 0 0 | 100 | 0 0 0 0 0 0 0 0 0 0 0 0 |
100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 101 | 0 0 0 0 0 0 0 0 0 0 0 0 |
101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 102 | 0 0 0 0 0 0 0 0 0 0 0 0 |
102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 103 | 0 0 0 0 0 0 0 0 0 0 0 0 |
103 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 104 | 0 0 0 0 0 0 0 0 0 0 0 0 |
104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 105 | 0 0 0 0 0 0 0 0 0 0 0 0 |
105 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 106 | 0 0 0 0 0 0 0 0 0 0 0 0 |
106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 107 | 0 0 0 0 0 0 0 0 0 0 0 0 |
107 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | 108 | 0 0 0 0 0 0 0 0 0 0 0 0 |
108 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 109 | 0 0 0 0 0 0 0 0 0 0 0 0 |
109 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 110 | 0 0 0 0 0 0 0 0 0 0 0 0 |
110 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 111 | 0 0 0 0 0 0 0 0 0 0 0 0 |
111 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 112 | 0 0 0 0 0 0 0 0 0 0 0 0 |
112 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 113 | 85 85 85 0 0 0 0 0 0 0 0 0 |
113 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 114 | 0 0 0 0 0 0 0 0 0 0 0 0 |
114 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 115 | 0 0 0 0 0 0 0 0 0 0 0 0 |
115 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 116 | 0 0 0 0 0 0 0 0 0 85 85 85 |
116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 117 | 85 85 85 0 0 0 0 0 0 0 0 0 |
117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 118 | 0 0 0 0 0 0 0 0 0 0 0 0 |
118 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 119 | 0 0 0 0 0 0 0 0 0 0 0 0 |
119 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 120 | 0 0 0 0 0 0 0 0 0 0 0 0 |
120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 121 | 0 0 0 0 0 0 0 0 0 0 0 0 |
121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 122 | 0 0 0 0 0 0 0 0 0 0 0 0 |
122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 123 | 0 0 0 0 0 0 0 0 0 0 0 0 |
123 | 0 0 0 0 0 0 0 0 0 0 0 0 | 124 | 0 0 0 0 0 0 0 0 0 0 0 0 |
124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 125 | 0 0 0 0 0 0 0 0 0 0 0 0 |
125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 126 | 0 0 0 0 0 0 0 0 0 0 0 0 |
126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 127 | 0 0 0 0 0 0 0 0 0 0 0 0 |
127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 128 | 0 0 0 0 0 0 0 0 0 0 0 0 |
128 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 129 | 0 0 0 0 0 0 0 0 0 0 0 0 |
129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 130 | 0 0 0 0 0 0 0 0 0 0 0 0 |
130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 131 | 0 0 0 0 0 0 0 0 0 0 0 0 |
131 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 | 132 | 0 0 0 0 0 0 0 0 0 85 85 85 |
132 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 133 | 0 0 0 0 0 0 0 0 0 0 0 0 |
133 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 134 | 0 0 0 0 0 0 0 0 0 0 0 0 |
134 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 135 | 0 0 0 0 0 0 0 0 0 0 0 0 |
135 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 136 | 0 0 0 0 0 0 0 0 0 0 0 0 |
136 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 137 | 85 85 85 85 85 85 0 0 0 0 0 0 |
137 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 138 | 0 0 0 0 0 0 0 0 0 0 0 0 |
138 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 139 | 0 0 0 0 0 0 0 0 0 0 0 0 |
139 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 140 | 0 0 0 0 0 0 0 0 0 0 0 0 |
140 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 141 | 0 0 0 0 0 0 0 0 0 0 0 0 |
141 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 142 | 0 0 0 0 0 0 0 0 0 0 0 0 |
142 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 143 | 0 0 0 0 0 0 0 0 0 0 0 0 |
143 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 144 | 0 0 0 0 0 0 0 0 0 0 0 0 |
144 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 145 | 0 0 0 0 0 0 0 0 0 0 0 0 |
145 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 146 | 0 0 0 0 0 0 0 0 0 0 0 0 |
146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 147 | 0 0 0 0 0 0 0 0 0 0 0 0 |
147 | 0 0 0 0 0 0 0 0 0 0 0 0 | 148 | 0 0 0 0 0 0 0 0 0 0 0 0 |
148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 149 | 0 0 0 0 0 0 0 0 0 0 0 0 |
149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 150 | 0 0 0 0 0 0 0 0 0 0 0 0 |
150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 151 | 0 0 0 0 0 0 0 0 0 0 0 0 |
151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 152 | 0 0 0 0 0 0 0 0 0 85 85 85 |
152 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 153 | 0 0 0 0 0 0 0 0 0 0 0 0 |
153 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 154 | 0 0 0 0 0 0 0 0 0 0 0 0 |
154 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 155 | 0 0 0 0 0 0 0 0 0 0 0 0 |
155 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 156 | 85 85 85 170 170 170 0 0 0 0 0 0 |
156 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 157 | 0 0 0 85 85 85 0 0 0 0 0 0 |
157 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 158 | 0 0 0 0 0 0 0 0 0 0 0 0 |
158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 159 | 0 0 0 0 0 0 0 0 0 0 0 0 |
159 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 160 | 0 0 0 0 0 0 0 0 0 0 0 0 |
160 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 161 | 0 0 0 0 0 0 0 0 0 0 0 0 |
161 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 162 | 0 0 0 0 0 0 0 0 0 0 0 0 |
162 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 163 | 0 0 0 0 0 0 0 0 0 0 0 0 |
163 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 164 | 0 0 0 0 0 0 0 0 0 0 0 0 |
164 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 165 | 0 0 0 0 0 0 0 0 0 0 0 0 |
165 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 166 | 0 0 0 0 0 0 0 0 0 0 0 0 |
166 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 167 | 0 0 0 0 0 0 0 0 0 0 0 0 |
167 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 168 | 0 0 0 0 0 0 0 0 0 0 0 0 |
168 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 169 | 0 0 0 0 0 0 0 0 0 0 0 0 |
169 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 170 | 0 0 0 0 0 0 0 0 0 0 0 0 |
170 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 171 | 0 0 0 0 0 0 0 0 0 0 0 0 |
171 | 0 0 0 0 0 0 0 0 0 0 0 0 | 172 | 0 0 0 0 0 0 85 85 85 0 0 0 |
172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 173 | 0 0 0 0 0 0 0 0 0 0 0 0 |
173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 174 | 0 0 0 0 0 0 0 0 0 0 0 0 |
174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 175 | 0 0 0 0 0 0 0 0 0 0 0 0 |
175 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 176 | 170 170 170 170 170 170 85 85 85 0 0 0 |
176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 177 | 0 0 0 0 0 0 85 85 85 0 0 0 |
177 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 178 | 0 0 0 0 0 0 0 0 0 0 0 0 |
178 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | 179 | 0 0 0 0 0 0 0 0 0 0 0 0 |
179 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 | 180 | 0 0 0 0 0 0 0 0 0 0 0 0 |
180 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 181 | 0 0 0 0 0 0 0 0 0 0 0 0 |
181 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 182 | 0 0 0 0 0 0 0 0 0 0 0 0 |
182 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 183 | 0 0 0 0 0 0 0 0 0 0 0 0 |
183 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 184 | 0 0 0 0 0 0 0 0 0 0 0 0 |
184 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 185 | 0 0 0 0 0 0 0 0 0 0 0 0 |
185 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 186 | 0 0 0 0 0 0 0 0 0 0 0 0 |
186 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 187 | 0 0 0 0 0 0 0 0 0 0 0 0 |
187 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 188 | 0 0 0 0 0 0 0 0 0 0 0 0 |
188 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 189 | 0 0 0 0 0 0 0 0 0 0 0 0 |
189 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 190 | 0 0 0 0 0 0 0 0 0 0 0 0 |
190 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 191 | 0 0 0 0 0 0 0 0 0 0 0 0 |
191 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 192 | 0 0 0 0 0 0 85 85 85 0 0 0 |
192 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 193 | 0 0 0 0 0 0 0 0 0 0 0 0 |
193 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 194 | 0 0 0 0 0 0 0 0 0 0 0 0 |
194 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 195 | 0 0 0 0 0 0 0 0 0 0 0 0 |
195 | 0 0 0 0 0 0 0 0 0 0 0 0 | 196 | 0 0 0 85 85 85 0 0 0 0 0 0 |
196 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 197 | 0 0 0 0 0 0 0 0 0 85 85 85 |
197 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 198 | 0 0 0 0 0 0 0 0 0 0 0 0 |
198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 199 | 0 0 0 0 0 0 0 0 0 0 0 0 |
199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 200 | 0 0 0 0 0 0 0 0 0 0 0 0 |
200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 201 | 0 0 0 0 0 0 0 0 0 0 0 0 |
201 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 202 | 0 0 0 0 0 0 0 0 0 0 0 0 |
202 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 203 | 0 0 0 0 0 0 0 0 0 0 0 0 |
203 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 204 | 0 0 0 0 0 0 0 0 0 0 0 0 |
204 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 205 | 0 0 0 0 0 0 0 0 0 0 0 0 |
205 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 206 | 0 0 0 0 0 0 0 0 0 0 0 0 |
206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 207 | 0 0 0 0 0 0 0 0 0 0 0 0 |
207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 208 | 0 0 0 0 0 0 0 0 0 0 0 0 |
208 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 209 | 0 0 0 0 0 0 0 0 0 0 0 0 |
209 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 210 | 0 0 0 0 0 0 0 0 0 0 0 0 |
210 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 211 | 0 0 0 0 0 0 0 0 0 0 0 0 |
211 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 212 | 0 0 0 0 0 0 85 85 85 0 0 0 |
212 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 213 | 0 0 0 0 0 0 0 0 0 0 0 0 |
213 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 214 | 0 0 0 0 0 0 0 0 0 0 0 0 |
214 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 215 | 0 0 0 0 0 0 0 0 0 0 0 0 |
215 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 216 | 0 0 0 0 0 0 0 0 0 0 0 0 |
216 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 217 | 0 0 0 0 0 0 0 0 0 85 85 85 |
217 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 218 | 0 0 0 0 0 0 0 0 0 0 0 0 |
218 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 219 | 0 0 0 0 0 0 0 0 0 0 0 0 |
219 | 0 0 0 0 0 0 0 0 0 0 0 0 | 220 | 0 0 0 0 0 0 0 0 0 0 0 0 |
220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 221 | 0 0 0 0 0 0 0 0 0 0 0 0 |
221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 222 | 0 0 0 0 0 0 0 0 0 0 0 0 |
222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 223 | 0 0 0 0 0 0 0 0 0 0 0 0 |
223 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 224 | 0 0 0 0 0 0 0 0 0 0 0 0 |
224 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 225 | 0 0 0 0 0 0 0 0 0 0 0 0 |
225 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | 226 | 0 0 0 0 0 0 0 0 0 0 0 0 |
226 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 227 | 0 0 0 0 0 0 0 0 0 0 0 0 |
227 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | 228 | 0 0 0 0 0 0 0 0 0 0 0 0 |
228 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 229 | 0 0 0 0 0 0 0 0 0 0 0 0 |
229 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 230 | 0 0 0 0 0 0 0 0 0 0 0 0 |
230 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 231 | 0 0 0 0 0 0 0 0 0 0 0 0 |
231 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 232 | 0 0 0 85 85 85 0 0 0 0 0 0 |
232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 233 | 0 0 0 0 0 0 0 0 0 0 0 0 |
233 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | 234 | 0 0 0 0 0 0 0 0 0 0 0 0 |
234 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 235 | 0 0 0 0 0 0 0 0 0 0 0 0 |
235 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 236 | 0 0 0 0 0 0 0 0 0 0 0 0 |
236 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 237 | 0 0 0 0 0 0 0 0 0 85 85 85 |
237 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 238 | 0 0 0 0 0 0 0 0 0 0 0 0 |
238 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 239 | 0 0 0 0 0 0 0 0 0 0 0 0 |
239 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 240 | 0 0 0 0 0 0 0 0 0 0 0 0 |
240 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 241 | 0 0 0 0 0 0 0 0 0 0 0 0 |
241 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 242 | 0 0 0 0 0 0 0 0 0 0 0 0 |
242 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 243 | 0 0 0 0 0 0 0 0 0 0 0 0 |
243 | 0 0 0 0 0 0 0 0 0 0 0 0 | 244 | 0 0 0 0 0 0 0 0 0 0 0 0 |
244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 245 | 0 0 0 0 0 0 0 0 0 0 0 0 |
245 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 246 | 0 0 0 0 0 0 0 0 0 0 0 0 |
246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 247 | 0 0 0 0 0 0 0 0 0 0 0 0 |
247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 248 | 0 0 0 0 0 0 0 0 0 0 0 0 |
248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 249 | 0 0 0 0 0 0 0 0 0 0 0 0 |
249 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 250 | 0 0 0 0 0 0 0 0 0 0 0 0 |
250 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | 251 | 0 0 0 0 0 0 0 0 0 0 0 0 |
251 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 252 | 0 0 0 85 85 85 0 0 0 0 0 0 |
252 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 253 | 0 0 0 0 0 0 0 0 0 0 0 0 |
253 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 254 | 0 0 0 0 0 0 0 0 0 0 0 0 |
254 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 255 | 0 0 0 0 0 0 0 0 0 0 0 0 |
255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 256 | 0 0 0 0 0 0 0 0 0 0 0 0 |
256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 257 | 0 0 0 0 0 0 0 0 0 0 0 0 |
257 | 0 0 0 85 85 85 170 170 170 170 85 0 170 170 170 85 85 85 | 258 | 85 85 85 0 0 0 0 0 0 0 0 0 |
258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 259 | 0 0 0 0 0 0 0 0 0 0 0 0 |
259 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 260 | 0 0 0 0 0 0 0 0 0 0 0 0 |
260 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 261 | 0 0 0 0 0 0 0 0 0 0 0 0 |
261 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 262 | 0 0 0 0 0 0 0 0 0 0 0 0 |
262 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 263 | 0 0 0 0 0 0 0 0 0 0 0 0 |
263 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 264 | 0 0 0 0 0 0 0 0 0 0 0 0 |
264 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 265 | 0 0 0 0 0 0 0 0 0 0 0 0 |
265 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 266 | 0 0 0 0 0 0 0 0 0 0 0 0 |
266 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 267 | 0 0 0 0 0 0 0 0 0 0 0 0 |
267 | 0 0 0 0 0 0 0 0 0 0 0 0 | 268 | 0 0 0 0 0 0 0 0 0 0 0 0 |
268 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 269 | 0 0 0 0 0 0 0 0 0 0 0 0 |
269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 270 | 0 0 0 0 0 0 0 0 0 0 0 0 |
270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 271 | 0 0 0 0 0 0 0 0 0 0 0 0 |
271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 272 | 0 0 0 85 85 85 0 0 0 0 0 0 |
272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 273 | 0 0 0 0 0 0 0 0 0 0 0 0 |
273 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 274 | 0 0 0 0 0 0 0 0 0 0 0 0 |
274 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 275 | 0 0 0 0 0 0 0 0 0 0 0 0 |
275 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 276 | 0 0 0 0 0 0 0 0 0 0 0 0 |
276 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 277 | 0 0 0 0 0 0 0 0 0 0 0 0 |
277 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 278 | 85 85 85 0 0 0 0 0 0 0 0 0 |
278 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 279 | 0 0 0 0 0 0 0 0 0 0 0 0 |
279 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 280 | 0 0 0 0 0 0 0 0 0 0 0 0 |
280 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 281 | 0 0 0 0 0 0 0 0 0 0 0 0 |
281 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 85 85 85 | 282 | 0 0 0 0 0 0 0 0 0 0 0 0 |
282 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 283 | 0 0 0 0 0 0 0 0 0 0 0 0 |
283 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 284 | 0 0 0 0 0 0 0 0 0 0 0 0 |
284 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 285 | 0 0 0 0 0 0 0 0 0 0 0 0 |
285 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 286 | 0 0 0 0 0 0 0 0 0 0 0 0 |
286 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 287 | 0 0 0 0 0 0 0 0 0 0 0 0 |
287 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 288 | 0 0 0 0 0 0 0 0 0 0 0 0 |
288 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 289 | 0 0 0 0 0 0 0 0 0 0 0 0 |
289 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 290 | 0 0 0 0 0 0 0 0 0 0 0 0 |
290 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 291 | 0 0 0 0 0 0 0 0 0 0 0 0 |
291 | 0 0 0 0 0 0 0 0 0 0 0 0 | 292 | 0 0 0 85 85 85 0 0 0 0 0 0 |
292 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 293 | 0 0 0 85 85 85 170 170 170 0 0 0 |
293 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 294 | 0 0 0 0 0 0 0 0 0 0 0 0 |
294 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 295 | 0 0 0 0 0 0 170 170 170 170 170 170 |
295 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 296 | 170 170 170 0 0 0 0 0 0 0 0 0 |
296 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 297 | 0 0 0 0 0 0 0 0 0 0 0 0 |
297 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 298 | 85 85 85 0 0 0 0 0 0 0 0 0 |
298 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 299 | 0 0 0 0 0 0 0 0 0 0 0 0 |
299 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 300 | 0 0 0 0 0 0 0 0 0 0 0 0 |
300 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 301 | 0 0 0 0 0 0 0 0 0 0 0 0 |
301 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 302 | 0 0 0 0 0 0 0 0 0 0 0 0 |
302 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 303 | 0 0 0 0 0 0 0 0 0 0 0 0 |
303 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 304 | 0 0 0 0 0 0 0 0 0 0 0 0 |
304 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | 305 | 0 0 0 0 0 0 0 0 0 0 0 0 |
305 | 255 255 85 170 170 170 170 170 170 170 85 0 85 255 85 170 85 0 | 306 | 0 0 0 0 0 0 0 0 0 0 0 0 |
306 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 307 | 0 0 0 0 0 0 0 0 0 0 0 0 |
307 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 308 | 0 0 0 0 0 0 0 0 0 0 0 0 |
308 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 309 | 0 0 0 0 0 0 0 0 0 0 0 0 |
309 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 310 | 0 0 0 0 0 0 0 0 0 0 0 0 |
310 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 311 | 0 0 0 0 0 0 0 0 0 0 0 0 |
311 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 312 | 0 0 0 85 85 85 0 0 0 0 0 0 |
312 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 313 | 85 85 85 170 170 170 170 170 170 170 170 170 |
313 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 314 | 0 0 0 0 0 0 0 0 0 0 0 0 |
314 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 315 | 0 0 0 170 170 170 255 255 255 255 255 255 |
315 | 0 0 0 0 0 0 0 0 0 0 0 0 | 316 | 255 255 255 170 170 170 0 0 0 0 0 0 |
316 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 317 | 0 0 0 0 0 0 0 0 0 0 0 0 |
317 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 318 | 85 85 85 0 0 0 0 0 0 0 0 0 |
318 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 319 | 0 0 0 0 0 0 0 0 0 0 0 0 |
319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 320 | 0 0 0 0 0 0 0 0 0 0 0 0 |
320 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 321 | 0 0 0 0 0 0 0 0 0 0 0 0 |
321 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 322 | 0 0 0 0 0 0 0 0 0 0 0 0 |
322 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 323 | 0 0 0 0 0 0 0 0 0 0 0 0 |
323 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 324 | 0 0 0 0 0 0 0 0 0 0 0 0 |
324 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 85 85 85 | 325 | 0 0 0 0 0 0 0 0 0 0 0 0 |
325 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 326 | 0 0 0 0 0 0 0 0 0 0 0 0 |
326 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 327 | 0 0 0 0 0 0 0 0 0 0 0 0 |
327 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 328 | 0 0 0 0 0 0 0 0 0 0 0 0 |
328 | 85 85 85 0 0 0 0 0 0 85 85 85 170 170 170 170 85 0 | 329 | 0 0 0 0 0 0 0 0 0 0 0 0 |
329 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 85 85 85 | 330 | 0 0 0 0 0 0 0 0 0 0 0 0 |
330 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 331 | 0 0 0 0 0 0 0 0 0 0 0 0 |
331 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 332 | 0 0 0 85 85 85 0 0 0 85 85 85 |
332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 333 | 170 170 170 170 170 170 255 255 255 255 255 255 |
333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 334 | 0 0 0 0 0 0 0 0 0 0 0 0 |
334 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 335 | 170 170 170 255 255 255 170 170 170 170 170 170 |
335 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 336 | 255 255 255 170 170 170 0 0 0 0 0 0 |
336 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 337 | 0 0 0 0 0 0 0 0 0 0 0 0 |
337 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 338 | 85 85 85 0 0 0 0 0 0 0 0 0 |
338 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 339 | 0 0 0 0 0 0 0 0 0 0 0 0 |
339 | 0 0 0 0 0 0 0 0 0 0 0 0 | 340 | 0 0 0 0 0 0 0 0 0 0 0 0 |
340 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 341 | 0 0 0 0 0 0 0 0 0 0 0 0 |
341 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 342 | 0 0 0 0 0 0 0 0 0 0 0 0 |
342 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 343 | 0 0 0 0 0 0 0 0 0 0 0 0 |
343 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 344 | 0 0 0 0 0 0 0 0 0 0 0 0 |
344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 345 | 0 0 0 0 0 0 0 0 0 0 0 0 |
345 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | 346 | 0 0 0 0 0 0 0 0 0 0 0 0 |
346 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 347 | 0 0 0 0 0 0 0 0 0 0 0 0 |
347 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 348 | 0 0 0 0 0 0 0 0 0 0 0 0 |
348 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 349 | 0 0 0 0 0 0 0 0 0 0 0 0 |
349 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 350 | 0 0 0 0 0 0 0 0 0 0 0 0 |
350 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 351 | 0 0 0 0 0 0 0 0 0 0 0 0 |
351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 352 | 0 0 0 85 85 85 0 0 0 85 85 85 |
352 | 0 0 0 0 0 0 85 85 85 85 85 85 170 85 0 170 170 170 | 353 | 170 170 170 0 0 0 0 0 0 255 255 255 |
353 | 170 170 170 170 85 0 170 170 170 170 170 170 170 85 0 85 85 85 | 354 | 85 85 85 0 0 0 0 0 0 0 0 0 |
354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 355 | 255 255 255 170 170 170 0 0 0 85 85 85 |
355 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 356 | 170 170 170 255 255 255 170 170 170 0 0 0 |
356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 357 | 0 0 0 0 0 0 0 0 0 0 0 0 |
357 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 358 | 85 85 85 0 0 0 0 0 0 0 0 0 |
358 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 359 | 0 0 0 0 0 0 0 0 0 0 0 0 |
359 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 360 | 0 0 0 0 0 0 0 0 0 0 0 0 |
360 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 361 | 0 0 0 0 0 0 0 0 0 0 0 0 |
361 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 362 | 0 0 0 0 0 0 0 0 0 0 0 0 |
362 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 363 | 0 0 0 0 0 0 0 0 0 0 0 0 |
363 | 0 0 0 0 0 0 0 0 0 0 0 0 | 364 | 0 0 0 0 0 0 0 0 0 0 0 0 |
364 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 365 | 0 0 0 0 0 0 0 0 0 0 0 0 |
365 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 366 | 0 0 0 0 0 0 0 0 0 0 0 0 |
366 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 367 | 0 0 0 0 0 0 0 0 0 0 0 0 |
367 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 368 | 0 0 0 0 0 0 0 0 0 0 0 0 |
368 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 369 | 0 0 0 0 0 0 0 0 0 0 0 0 |
369 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 370 | 0 0 0 0 0 0 0 0 0 0 0 0 |
370 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 371 | 0 0 0 0 0 0 0 0 0 0 0 0 |
371 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 372 | 0 0 0 85 85 85 0 0 0 85 85 85 |
372 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | 373 | 85 85 85 0 0 0 0 0 0 170 170 170 |
373 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 374 | 85 85 85 0 0 0 0 0 0 0 0 0 |
374 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 375 | 255 255 255 85 85 85 0 0 0 0 0 0 |
375 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 376 | 85 85 85 255 255 255 170 170 170 0 0 0 |
376 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 255 85 | 377 | 0 0 0 0 0 0 0 0 0 0 0 0 |
377 | 255 85 85 85 255 85 170 170 170 170 85 0 170 170 170 85 85 85 | 378 | 85 85 85 0 0 0 0 0 0 0 0 0 |
378 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 379 | 0 0 0 0 0 0 0 0 0 0 0 0 |
379 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 380 | 0 0 0 0 0 0 0 0 0 0 0 0 |
380 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 381 | 0 0 0 0 0 0 0 0 0 0 0 0 |
381 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 382 | 0 0 0 0 0 0 0 0 0 0 0 0 |
382 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 383 | 0 0 0 0 0 0 0 0 0 0 0 0 |
383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 384 | 0 0 0 0 0 0 0 0 0 0 0 0 |
384 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 385 | 0 0 0 0 0 0 0 0 0 0 0 0 |
385 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 386 | 0 0 0 0 0 0 0 0 0 0 0 0 |
386 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 387 | 0 0 0 0 0 0 0 0 0 0 0 0 |
387 | 0 0 0 0 0 0 0 0 0 0 0 0 | 388 | 0 0 0 0 0 0 0 0 0 0 0 0 |
388 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 389 | 0 0 0 0 0 0 0 0 0 0 0 0 |
389 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 390 | 0 0 0 0 0 0 0 0 0 0 0 0 |
390 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 391 | 0 0 0 0 0 0 0 0 0 0 0 0 |
391 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 392 | 0 0 0 85 85 85 0 0 0 85 85 85 |
392 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 393 | 170 170 170 0 0 0 0 0 0 170 170 170 |
393 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | 394 | 85 85 85 85 85 85 85 85 85 85 85 85 |
394 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 395 | 255 255 255 85 85 85 0 0 0 0 0 0 |
395 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 396 | 85 85 85 255 255 255 170 170 170 0 0 0 |
396 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 397 | 0 0 0 0 0 0 0 0 0 0 0 0 |
397 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 398 | 85 85 85 0 0 0 0 0 0 0 0 0 |
398 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | 399 | 0 0 0 0 0 0 0 0 0 0 0 0 |
399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 400 | 0 0 0 0 0 0 0 0 0 0 0 0 |
400 | 0 0 0 0 0 0 85 85 85 170 85 0 85 85 85 85 85 85 | 401 | 0 0 0 0 0 0 0 0 0 0 0 0 |
401 | 170 170 170 170 85 0 170 170 170 85 85 85 170 85 0 85 85 85 | 402 | 0 0 0 0 0 0 0 0 0 0 0 0 |
402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 403 | 0 0 0 0 0 0 0 0 0 0 0 0 |
403 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 404 | 0 0 0 0 0 0 0 0 0 0 0 0 |
404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 405 | 0 0 0 0 0 0 0 0 0 0 0 0 |
405 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 406 | 0 0 0 0 0 0 0 0 0 0 0 0 |
406 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 407 | 0 0 0 0 0 0 0 0 0 0 0 0 |
407 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 408 | 0 0 0 0 0 0 0 0 0 0 0 0 |
408 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 409 | 0 0 0 0 0 0 0 0 0 0 0 0 |
409 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 410 | 0 0 0 0 0 0 0 0 0 0 0 0 |
410 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 411 | 0 0 0 0 0 0 0 0 0 0 0 0 |
411 | 0 0 0 0 0 0 0 0 0 0 0 0 | 412 | 0 0 0 85 85 85 0 0 0 0 0 0 |
412 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 413 | 255 255 255 0 0 0 0 0 0 170 85 0 |
413 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 414 | 255 255 85 170 85 0 255 255 85 170 85 0 |
414 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 415 | 255 255 85 170 85 0 0 0 0 0 0 0 |
415 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 416 | 85 85 85 255 255 255 0 0 0 0 0 0 |
416 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 417 | 0 0 0 0 0 0 0 0 0 0 0 0 |
417 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 418 | 85 85 85 0 0 0 0 0 0 0 0 0 |
418 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 419 | 0 0 0 0 0 0 0 0 0 0 0 0 |
419 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 420 | 0 0 0 0 0 0 0 0 0 0 0 0 |
420 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | 421 | 0 0 0 0 0 0 0 0 0 0 0 0 |
421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 422 | 0 0 0 0 0 0 0 0 0 0 0 0 |
422 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 | 423 | 0 0 0 0 0 0 0 0 0 0 0 0 |
423 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 424 | 0 0 0 0 0 0 0 0 0 0 0 0 |
424 | 85 85 85 0 0 0 0 0 0 85 85 85 85 85 85 170 85 0 | 425 | 0 0 0 0 0 0 0 0 0 0 0 0 |
425 | 85 85 85 85 85 85 170 85 0 85 255 85 85 85 85 85 85 85 | 426 | 0 0 0 0 0 0 0 0 0 0 0 0 |
426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 427 | 0 0 0 0 0 0 0 0 0 0 0 0 |
427 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 428 | 0 0 0 0 0 0 0 0 0 0 0 0 |
428 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 429 | 0 0 0 0 0 0 0 0 0 0 0 0 |
429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 430 | 0 0 0 0 0 0 0 0 0 0 0 0 |
430 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 431 | 0 0 0 0 0 0 0 0 0 0 0 0 |
431 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 432 | 0 0 0 85 85 85 0 0 0 0 0 0 |
432 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 433 | 170 170 170 170 170 170 170 85 0 255 255 85 |
433 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 434 | 170 85 0 255 255 85 170 85 0 255 255 85 |
434 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 435 | 170 85 0 255 255 85 170 85 0 255 255 85 |
435 | 0 0 0 0 0 0 0 0 0 0 0 0 | 436 | 170 170 170 170 170 170 0 0 0 0 0 0 |
436 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 437 | 0 0 0 0 0 0 0 0 0 0 0 0 |
437 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 438 | 85 85 85 0 0 0 0 0 0 0 0 0 |
438 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 439 | 0 0 0 0 0 0 0 0 0 0 0 0 |
439 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 440 | 0 0 0 0 0 0 0 0 0 0 0 0 |
440 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 441 | 0 0 0 0 0 0 0 0 0 0 0 0 |
441 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 442 | 0 0 0 0 0 0 0 0 0 0 0 0 |
442 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 443 | 0 0 0 0 0 0 0 0 0 0 0 0 |
443 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 444 | 0 0 0 0 0 0 0 0 0 0 0 0 |
444 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | 445 | 0 0 0 0 0 0 0 0 0 0 0 0 |
445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 446 | 0 0 0 0 0 0 0 0 0 0 0 0 |
446 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 447 | 0 0 0 0 0 0 0 0 0 0 0 0 |
447 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 448 | 0 0 0 0 0 0 0 0 0 0 0 0 |
448 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 449 | 0 0 0 0 0 0 0 0 0 0 0 0 |
449 | 85 85 85 85 85 85 85 85 85 85 85 85 170 85 0 0 0 0 | 450 | 0 0 0 0 0 0 0 0 0 0 0 0 |
450 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 451 | 0 0 0 0 0 0 0 0 0 0 0 0 |
451 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 452 | 0 0 0 85 85 85 0 0 0 0 0 0 |
452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 453 | 0 0 0 170 85 0 255 255 85 170 85 0 |
453 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 454 | 255 255 85 170 85 0 255 255 85 170 85 0 |
454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 455 | 255 255 85 170 85 0 255 255 85 170 85 0 |
455 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 456 | 255 255 85 170 85 0 0 0 0 0 0 0 |
456 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 457 | 0 0 0 0 0 0 0 0 0 0 0 0 |
457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 458 | 85 85 85 0 0 0 0 0 0 0 0 0 |
458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 459 | 0 0 0 0 0 0 0 0 0 0 0 0 |
459 | 0 0 0 0 0 0 0 0 0 0 0 0 | 460 | 0 0 0 0 0 0 0 0 0 0 0 0 |
460 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 461 | 0 0 0 0 0 0 0 0 0 0 0 0 |
461 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 462 | 0 0 0 0 0 0 0 0 0 0 0 0 |
462 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 463 | 0 0 0 0 0 0 0 0 0 0 0 0 |
463 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 464 | 0 0 0 0 0 0 0 0 0 0 0 0 |
464 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 465 | 0 0 0 0 0 0 0 0 0 0 0 0 |
465 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 466 | 0 0 0 0 0 0 0 0 0 0 0 0 |
466 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 467 | 0 0 0 0 0 0 0 0 0 0 0 0 |
467 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 468 | 0 0 0 0 0 0 0 0 0 0 0 0 |
468 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 469 | 0 0 0 0 0 0 0 0 0 0 0 0 |
469 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 470 | 0 0 0 0 0 0 0 0 0 0 0 0 |
470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 471 | 0 0 0 0 0 0 0 0 0 0 0 0 |
471 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 472 | 0 0 0 85 85 85 0 0 0 0 0 0 |
472 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 473 | 170 85 0 255 255 85 170 85 0 255 255 85 |
473 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | 474 | 170 85 0 255 255 85 170 85 0 255 255 85 |
474 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 475 | 170 85 0 255 255 85 170 85 0 255 255 85 |
475 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 476 | 170 85 0 255 255 85 170 85 0 0 0 0 |
476 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 477 | 0 0 0 0 0 0 0 0 0 0 0 0 |
477 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 478 | 0 0 0 85 85 85 0 0 0 0 0 0 |
478 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 479 | 0 0 0 0 0 0 0 0 0 0 0 0 |
479 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 480 | 0 0 0 0 0 0 0 0 0 0 0 0 |
480 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 481 | 0 0 0 0 0 0 0 0 0 0 0 0 |
481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 482 | 0 0 0 0 0 0 0 0 0 0 0 0 |
482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 483 | 0 0 0 0 0 0 0 0 0 0 0 0 |
483 | 0 0 0 0 0 0 0 0 0 0 0 0 | 484 | 0 0 0 0 0 0 0 0 0 0 0 0 |
484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 485 | 0 0 0 0 0 0 0 0 0 0 0 0 |
485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 486 | 0 0 0 0 0 0 0 0 0 0 0 0 |
486 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 487 | 0 0 0 0 0 0 0 0 0 0 0 0 |
487 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 488 | 0 0 0 0 0 0 0 0 0 0 0 0 |
488 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 489 | 0 0 0 0 0 0 0 0 0 0 0 0 |
489 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 490 | 0 0 0 0 0 0 0 0 0 0 0 0 |
490 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 491 | 0 0 0 0 0 0 0 0 0 0 0 0 |
491 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 492 | 0 0 0 85 85 85 85 85 85 0 0 0 |
492 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 493 | 255 255 85 170 85 0 255 255 85 170 85 0 |
493 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 494 | 255 255 85 170 85 0 255 255 85 170 85 0 |
494 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 495 | 255 255 85 170 85 0 255 255 85 170 85 0 |
495 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 496 | 255 255 85 170 85 0 170 85 0 0 0 0 |
496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 497 | 0 0 0 0 0 0 0 0 0 0 0 0 |
497 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 498 | 0 0 0 85 85 85 0 0 0 0 0 0 |
498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 499 | 0 0 0 0 0 0 0 0 0 0 0 0 |
499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 500 | 0 0 0 0 0 0 0 0 0 0 0 0 |
500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 501 | 0 0 0 0 0 0 0 0 0 0 0 0 |
501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 502 | 0 0 0 0 0 0 0 0 0 0 0 0 |
502 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 503 | 0 0 0 0 0 0 0 0 0 0 0 0 |
503 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 504 | 0 0 0 0 0 0 0 0 0 0 0 0 |
504 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 505 | 0 0 0 0 0 0 0 0 0 0 0 0 |
505 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 506 | 0 0 0 0 0 0 0 0 0 0 0 0 |
506 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 507 | 0 0 0 0 0 0 0 0 0 0 0 0 |
507 | 0 0 0 0 0 0 0 0 0 0 0 0 | 508 | 0 0 0 0 0 0 0 0 0 0 0 0 |
508 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 509 | 0 0 0 0 0 0 0 0 0 0 0 0 |
509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 510 | 0 0 0 0 0 0 0 0 0 0 0 0 |
510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 511 | 0 0 0 0 0 0 0 0 0 0 0 0 |
511 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 512 | 0 0 0 85 85 85 85 85 85 0 0 0 |
512 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 513 | 170 85 0 255 255 85 170 85 0 255 255 85 |
513 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 514 | 170 85 0 255 255 85 170 85 0 255 255 85 |
514 | 0 0 0 85 85 85 0 0 0 0 170 0 85 85 85 0 0 0 | 515 | 170 85 0 255 255 85 170 85 0 170 85 0 |
515 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 516 | 170 85 0 170 85 0 85 85 85 0 0 0 |
516 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 517 | 0 0 0 85 85 85 0 0 0 0 0 0 |
517 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 518 | 0 0 0 0 0 0 85 85 85 0 0 0 |
518 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 519 | 0 0 0 0 0 0 0 0 0 0 0 0 |
519 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 520 | 0 0 0 0 0 0 0 0 0 0 0 0 |
520 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 521 | 0 0 0 0 0 0 0 0 0 0 0 0 |
521 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 522 | 0 0 0 0 0 0 0 0 0 0 0 0 |
522 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 523 | 0 0 0 0 0 0 0 0 0 0 0 0 |
523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 524 | 0 0 0 0 0 0 0 0 0 0 0 0 |
524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 525 | 0 0 0 0 0 0 0 0 0 0 0 0 |
525 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 526 | 0 0 0 0 0 0 0 0 0 0 0 0 |
526 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 527 | 0 0 0 0 0 0 0 0 0 0 0 0 |
527 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 528 | 0 0 0 0 0 0 0 0 0 0 0 0 |
528 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 529 | 0 0 0 0 0 0 0 0 0 0 0 0 |
529 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 530 | 0 0 0 0 0 0 0 0 0 0 0 0 |
530 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 531 | 0 0 0 0 0 0 0 0 0 0 0 0 |
531 | 0 0 0 0 0 0 0 0 0 0 0 0 | 532 | 0 0 0 85 85 85 85 85 85 0 0 0 |
532 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 533 | 85 85 85 170 85 0 255 255 85 170 85 0 |
533 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 534 | 255 255 85 170 85 0 255 255 85 170 85 0 |
534 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 535 | 170 85 0 170 85 0 170 85 0 170 85 0 |
535 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 536 | 170 85 0 170 85 0 85 85 85 0 0 0 |
536 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 537 | 0 0 0 85 85 85 170 170 170 85 85 85 |
537 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 538 | 0 0 0 0 0 0 85 85 85 0 0 0 |
538 | 170 85 0 85 255 85 170 85 0 170 85 0 170 85 0 85 255 85 | 539 | 0 0 0 0 0 0 0 0 0 0 0 0 |
539 | 170 85 0 170 85 0 0 170 0 0 0 0 0 0 0 0 0 0 | 540 | 0 0 0 0 0 0 0 0 0 0 0 0 |
540 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 541 | 0 0 0 0 0 0 0 0 0 0 0 0 |
541 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 542 | 0 0 0 0 0 0 0 0 0 0 0 0 |
542 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 543 | 0 0 0 0 0 0 0 0 0 0 0 0 |
543 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 544 | 0 0 0 0 0 0 0 0 0 0 0 0 |
544 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 545 | 0 0 0 0 0 0 0 0 0 0 0 0 |
545 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 546 | 0 0 0 0 0 0 0 0 0 0 0 0 |
546 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 547 | 0 0 0 0 0 0 0 0 0 0 0 0 |
547 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 548 | 0 0 0 0 0 0 0 0 0 0 0 0 |
548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 549 | 0 0 0 0 0 0 0 0 0 0 0 0 |
549 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 550 | 0 0 0 0 0 0 0 0 0 0 0 0 |
550 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 551 | 0 0 0 0 0 0 0 0 0 0 0 0 |
551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 552 | 0 0 0 85 85 85 85 85 85 0 0 0 |
552 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 553 | 85 85 85 170 85 0 170 85 0 170 85 0 |
553 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 554 | 170 85 0 170 85 0 170 85 0 170 85 0 |
554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 555 | 170 85 0 170 85 0 170 85 0 170 85 0 |
555 | 0 0 0 0 0 0 0 0 0 0 0 0 | 556 | 170 170 170 170 170 170 170 170 170 0 0 0 |
556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 557 | 0 0 0 0 0 0 170 170 170 170 170 170 |
557 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 558 | 0 0 0 0 0 0 0 0 0 85 85 85 |
558 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 559 | 0 0 0 0 0 0 0 0 0 0 0 0 |
559 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 560 | 0 0 0 0 0 0 0 0 0 0 0 0 |
560 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 561 | 0 0 0 0 0 0 0 0 0 0 0 0 |
561 | 0 0 0 0 0 0 0 0 0 0 0 0 0 170 0 170 85 0 | 562 | 0 0 0 0 0 0 0 0 0 0 0 0 |
562 | 255 255 85 170 85 0 255 255 85 255 255 85 255 255 85 170 85 0 | 563 | 0 0 0 0 0 0 0 0 0 0 0 0 |
563 | 255 255 85 85 255 85 170 85 0 170 85 0 85 85 85 0 0 0 | 564 | 0 0 0 0 0 0 0 0 0 0 0 0 |
564 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 565 | 0 0 0 0 0 0 0 0 0 0 0 0 |
565 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 566 | 0 0 0 0 0 0 0 0 0 0 0 0 |
566 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 567 | 0 0 0 0 0 0 0 0 0 0 0 0 |
567 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 568 | 0 0 0 0 0 0 0 0 0 0 0 0 |
568 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 569 | 0 0 0 0 0 0 0 0 0 0 0 0 |
569 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 570 | 0 0 0 0 0 0 0 0 0 0 0 0 |
570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 571 | 0 0 0 0 0 0 0 0 0 0 0 0 |
571 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 572 | 0 0 0 85 85 85 0 0 0 0 0 0 |
572 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 573 | 85 85 85 170 170 170 170 85 0 170 85 0 |
573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 574 | 170 85 0 170 85 0 170 85 0 170 85 0 |
574 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 575 | 170 85 0 170 85 0 170 170 170 170 170 170 |
575 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 576 | 170 170 170 170 170 170 170 170 170 85 85 85 |
576 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 577 | 0 0 0 0 0 0 85 85 85 85 85 85 |
577 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 578 | 0 0 0 0 0 0 0 0 0 85 85 85 |
578 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 579 | 0 0 0 0 0 0 0 0 0 0 0 0 |
579 | 0 0 0 0 0 0 0 0 0 0 0 0 | 580 | 0 0 0 0 0 0 0 0 0 0 0 0 |
580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 581 | 0 0 0 0 0 0 0 0 0 0 0 0 |
581 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 582 | 0 0 0 0 0 0 0 0 0 0 0 0 |
582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 583 | 0 0 0 0 0 0 0 0 0 0 0 0 |
583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 584 | 0 0 0 0 0 0 0 0 0 0 0 0 |
584 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 585 | 0 0 0 0 0 0 0 0 0 0 0 0 |
585 | 0 0 0 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 | 586 | 0 0 0 0 0 0 0 0 0 0 0 0 |
586 | 85 255 85 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 | 587 | 0 0 0 0 0 0 0 0 0 0 0 0 |
587 | 255 255 85 170 85 0 255 255 85 85 255 85 170 85 0 0 0 0 | 588 | 0 0 0 0 0 0 0 0 0 0 0 0 |
588 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 589 | 0 0 0 0 0 0 0 0 0 0 0 0 |
589 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 590 | 0 0 0 0 0 0 0 0 0 0 0 0 |
590 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 591 | 0 0 0 0 0 0 0 0 0 0 0 0 |
591 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 592 | 0 0 0 85 85 85 0 0 0 0 0 0 |
592 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 593 | 85 85 85 170 170 170 170 170 170 170 85 0 |
593 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 594 | 170 85 0 170 85 0 170 85 0 170 85 0 |
594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 595 | 170 170 170 170 170 170 170 170 170 170 170 170 |
595 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 596 | 255 255 255 255 255 255 255 255 255 170 170 170 |
596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 597 | 0 0 0 0 0 0 0 0 0 0 0 0 |
597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 598 | 0 0 0 0 0 0 0 0 0 85 85 85 |
598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 599 | 0 0 0 0 0 0 0 0 0 0 0 0 |
599 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 600 | 0 0 0 0 0 0 0 0 0 0 0 0 |
600 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 601 | 0 0 0 0 0 0 0 0 0 0 0 0 |
601 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 602 | 0 0 0 0 0 0 0 0 0 0 0 0 |
602 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 603 | 0 0 0 0 0 0 0 0 0 0 0 0 |
603 | 0 0 0 0 0 0 0 0 0 0 0 0 | 604 | 0 0 0 0 0 0 0 0 0 0 0 0 |
604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 605 | 0 0 0 0 0 0 0 0 0 0 0 0 |
605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 606 | 0 0 0 0 0 0 0 0 0 0 0 0 |
606 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 607 | 0 0 0 0 0 0 0 0 0 0 0 0 |
607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 608 | 0 0 0 0 0 0 0 0 0 0 0 0 |
608 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 609 | 0 0 0 0 0 0 0 0 0 0 0 0 |
609 | 0 0 0 0 0 0 0 0 0 85 85 85 255 255 85 170 85 0 | 610 | 0 0 0 0 0 0 0 0 0 0 0 0 |
610 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 | 611 | 0 0 0 0 0 0 0 0 0 0 0 0 |
611 | 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 85 255 85 | 612 | 85 85 85 0 0 0 0 0 0 85 85 85 |
612 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 613 | 255 255 255 255 255 255 170 170 170 170 170 170 |
613 | 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 0 0 0 | 614 | 170 170 170 170 170 170 170 170 170 170 170 170 |
614 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 615 | 170 170 170 170 170 170 255 255 255 255 255 255 |
615 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 616 | 255 255 255 255 255 255 255 255 255 255 255 255 |
616 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 617 | 85 85 85 0 0 0 0 0 0 0 0 0 |
617 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 618 | 0 0 0 0 0 0 0 0 0 0 0 0 |
618 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 619 | 85 85 85 0 0 0 0 0 0 0 0 0 |
619 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 620 | 0 0 0 0 0 0 0 0 0 0 0 0 |
620 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 621 | 0 0 0 0 0 0 0 0 0 0 0 0 |
621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 622 | 0 0 0 0 0 0 0 0 0 0 0 0 |
622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 623 | 0 0 0 0 0 0 0 0 0 0 0 0 |
623 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 624 | 0 0 0 0 0 0 0 0 0 0 0 0 |
624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 625 | 0 0 0 0 0 0 0 0 0 0 0 0 |
625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 626 | 0 0 0 0 0 0 0 0 0 0 0 0 |
626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 627 | 0 0 0 0 0 0 0 0 0 0 0 0 |
627 | 0 0 0 0 0 0 0 0 0 0 0 0 | 628 | 0 0 0 0 0 0 0 0 0 0 0 0 |
628 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 629 | 0 0 0 0 0 0 0 0 0 0 0 0 |
629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 630 | 0 0 0 0 0 0 0 0 0 0 0 0 |
630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 631 | 0 0 0 0 0 0 0 0 0 0 0 0 |
631 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 632 | 85 85 85 0 0 0 0 0 0 170 170 170 |
632 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 633 | 255 255 255 255 255 255 170 170 170 170 170 170 |
633 | 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 255 255 85 | 634 | 170 170 170 170 170 170 170 170 170 170 170 170 |
634 | 255 255 85 255 255 85 170 85 0 255 255 85 85 255 85 255 255 85 | 635 | 170 170 170 255 255 255 255 255 255 255 255 255 |
635 | 255 255 85 170 85 0 255 255 85 170 85 0 255 255 85 170 85 0 | 636 | 255 255 255 255 255 255 255 255 255 255 255 255 |
636 | 170 85 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 637 | 170 170 170 0 0 0 0 0 0 0 0 0 |
637 | 85 85 85 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | 638 | 0 0 0 0 0 0 0 0 0 0 0 0 |
638 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 639 | 85 85 85 0 0 0 0 0 0 0 0 0 |
639 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 640 | 0 0 0 0 0 0 0 0 0 0 0 0 |
640 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 641 | 0 0 0 0 0 0 0 0 0 0 0 0 |
641 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 642 | 0 0 0 0 0 0 0 0 0 0 0 0 |
642 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 643 | 0 0 0 0 0 0 0 0 0 0 0 0 |
643 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 644 | 0 0 0 0 0 0 0 0 0 0 0 0 |
644 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 645 | 0 0 0 0 0 0 0 0 0 0 0 0 |
645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 646 | 0 0 0 0 0 0 0 0 0 0 0 0 |
646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 647 | 0 0 0 0 0 0 0 0 0 0 0 0 |
647 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 648 | 0 0 0 0 0 0 0 0 0 0 0 0 |
648 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 649 | 0 0 0 0 0 0 0 0 0 0 0 0 |
649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 650 | 0 0 0 0 0 0 0 0 0 0 0 0 |
650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 651 | 0 0 0 0 0 0 0 0 0 85 85 85 |
651 | 0 0 0 0 0 0 0 0 0 0 0 0 | 652 | 0 0 0 0 0 0 85 85 85 255 255 255 |
652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 653 | 255 255 255 255 255 255 255 255 255 170 170 170 |
653 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 654 | 170 170 170 170 170 170 170 170 170 170 170 170 |
654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 655 | 255 255 255 255 255 255 255 255 255 255 255 255 |
655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 656 | 255 255 255 255 255 255 255 255 255 255 255 255 |
656 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 657 | 255 255 255 0 0 0 0 0 0 0 0 0 |
657 | 0 0 0 0 0 0 170 85 0 255 255 85 85 255 85 255 255 85 | 658 | 0 0 0 0 0 0 0 0 0 0 0 0 |
658 | 170 170 170 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 659 | 0 0 0 85 85 85 0 0 0 0 0 0 |
659 | 255 255 85 255 255 85 85 255 85 255 255 85 255 255 85 255 255 85 | 660 | 0 0 0 0 0 0 0 0 0 0 0 0 |
660 | 85 255 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 661 | 0 0 0 0 0 0 0 0 0 0 0 0 |
661 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 662 | 0 0 0 0 0 0 0 0 0 0 0 0 |
662 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 663 | 0 0 0 0 0 0 0 0 0 0 0 0 |
663 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 664 | 0 0 0 0 0 0 0 0 0 0 0 0 |
664 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 665 | 0 0 0 0 0 0 0 0 0 0 0 0 |
665 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 666 | 0 0 0 0 0 0 0 0 0 0 0 0 |
666 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 667 | 0 0 0 0 0 0 0 0 0 0 0 0 |
667 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 668 | 0 0 0 0 0 0 0 0 0 0 0 0 |
668 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 669 | 0 0 0 0 0 0 0 0 0 0 0 0 |
669 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 670 | 0 0 0 0 0 0 0 0 0 0 0 0 |
670 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 671 | 0 0 0 0 0 0 85 85 85 0 0 0 |
671 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 672 | 0 0 0 85 85 85 170 170 170 255 255 255 |
672 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 673 | 255 255 255 255 255 255 255 255 255 255 255 255 |
673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 674 | 255 255 255 255 255 255 255 255 255 255 255 255 |
674 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 675 | 255 255 255 255 255 255 255 255 255 255 255 255 |
675 | 0 0 0 0 0 0 0 0 0 0 0 0 | 676 | 255 255 255 255 255 255 255 255 255 255 255 255 |
676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 677 | 255 255 255 85 85 85 0 0 0 0 0 0 |
677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 678 | 0 0 0 0 0 0 0 0 0 0 0 0 |
678 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 679 | 0 0 0 0 0 0 85 85 85 0 0 0 |
679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 680 | 0 0 0 0 0 0 0 0 0 0 0 0 |
680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 681 | 0 0 0 0 0 0 0 0 0 0 0 0 |
681 | 0 0 0 0 0 0 170 85 0 255 255 85 255 255 85 255 255 85 | 682 | 0 0 0 0 0 0 0 0 0 0 0 0 |
682 | 255 255 255 255 255 85 255 255 85 170 85 0 255 255 85 170 85 0 | 683 | 0 0 0 0 0 0 0 0 0 0 0 0 |
683 | 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 255 255 85 | 684 | 0 0 0 0 0 0 0 0 0 0 0 0 |
684 | 170 85 0 170 85 0 0 170 0 0 0 0 85 85 85 0 0 0 | 685 | 0 0 0 0 0 0 0 0 0 0 0 0 |
685 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 686 | 0 0 0 0 0 0 0 0 0 0 0 0 |
686 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 687 | 0 0 0 0 0 0 0 0 0 0 0 0 |
687 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 688 | 0 0 0 0 0 0 0 0 0 0 0 0 |
688 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 689 | 0 0 0 0 0 0 0 0 0 0 0 0 |
689 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 690 | 0 0 0 0 0 0 0 0 0 0 0 0 |
690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 691 | 0 0 0 85 85 85 0 0 0 0 0 0 |
691 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 692 | 0 0 0 85 85 85 255 255 255 255 255 255 |
692 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 693 | 255 255 255 255 255 255 255 255 255 255 255 255 |
693 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 694 | 255 255 255 255 255 255 255 255 255 255 255 255 |
694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 695 | 255 255 255 255 255 255 255 255 255 255 255 255 |
695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 696 | 255 255 255 255 255 255 255 255 255 255 255 255 |
696 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 697 | 255 255 255 170 170 170 0 0 0 0 0 0 |
697 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 698 | 0 0 0 0 0 0 0 0 0 0 0 0 |
698 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 699 | 0 0 0 0 0 0 0 0 0 85 85 85 |
699 | 0 0 0 0 0 0 0 0 0 0 0 0 | 700 | 0 0 0 0 0 0 0 0 0 0 0 0 |
700 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 701 | 0 0 0 0 0 0 0 0 0 0 0 0 |
701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 702 | 0 0 0 0 0 0 0 0 0 0 0 0 |
702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 703 | 0 0 0 0 0 0 0 0 0 0 0 0 |
703 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 704 | 0 0 0 0 0 0 0 0 0 0 0 0 |
704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 705 | 0 0 0 0 0 0 0 0 0 0 0 0 |
705 | 0 0 0 170 85 0 85 255 85 255 255 85 170 170 170 255 255 255 | 706 | 0 0 0 0 0 0 0 0 0 0 0 0 |
706 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 707 | 0 0 0 0 0 0 0 0 0 0 0 0 |
707 | 255 255 85 255 255 85 170 85 0 255 255 85 85 255 85 255 255 85 | 708 | 0 0 0 0 0 0 0 0 0 0 0 0 |
708 | 255 255 85 85 255 85 0 0 0 85 85 85 0 0 0 85 85 85 | 709 | 0 0 0 0 0 0 0 0 0 0 0 0 |
709 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | 710 | 0 0 0 0 0 0 0 0 0 0 0 0 |
710 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 711 | 0 0 0 85 85 85 0 0 0 0 0 0 |
711 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 712 | 0 0 0 85 85 85 255 255 255 255 255 255 |
712 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 713 | 255 255 255 255 255 255 255 255 255 255 255 255 |
713 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 714 | 255 255 255 255 255 255 255 255 255 255 255 255 |
714 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 715 | 255 255 255 255 255 255 255 255 255 255 255 255 |
715 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 716 | 255 255 255 255 255 255 255 255 255 255 255 255 |
716 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 717 | 255 255 255 255 255 255 0 0 0 0 0 0 |
717 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 718 | 0 0 0 0 0 0 0 0 0 0 0 0 |
718 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 719 | 0 0 0 0 0 0 0 0 0 0 0 0 |
719 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 720 | 85 85 85 0 0 0 0 0 0 0 0 0 |
720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 721 | 0 0 0 0 0 0 0 0 0 0 0 0 |
721 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 722 | 0 0 0 0 0 0 0 0 0 0 0 0 |
722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 723 | 0 0 0 0 0 0 0 0 0 0 0 0 |
723 | 0 0 0 0 0 0 0 0 0 0 0 0 | 724 | 0 0 0 0 0 0 0 0 0 0 0 0 |
724 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 725 | 0 0 0 0 0 0 0 0 0 0 0 0 |
725 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 726 | 0 0 0 0 0 0 0 0 0 0 0 0 |
726 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 727 | 0 0 0 0 0 0 0 0 0 0 0 0 |
727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 728 | 0 0 0 0 0 0 0 0 0 0 0 0 |
728 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 729 | 0 0 0 0 0 0 0 0 0 0 0 0 |
729 | 0 0 0 255 255 85 255 255 85 255 255 85 255 255 255 255 255 85 | 730 | 0 0 0 0 0 0 0 0 0 0 0 0 |
730 | 255 255 85 255 255 85 85 255 85 255 255 85 255 255 85 85 255 85 | 731 | 85 85 85 0 0 0 0 0 0 0 0 0 |
731 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 | 732 | 85 85 85 170 170 170 255 255 255 255 255 255 |
732 | 255 255 85 170 85 0 85 85 85 0 0 0 0 0 0 85 85 85 | 733 | 255 255 255 255 255 255 255 255 255 255 255 255 |
733 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 734 | 255 255 255 255 255 255 255 255 255 255 255 255 |
734 | 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 | 735 | 255 255 255 255 255 255 255 255 255 255 255 255 |
735 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 736 | 255 255 255 255 255 255 255 255 255 255 255 255 |
736 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 737 | 255 255 255 255 255 255 85 85 85 0 0 0 |
737 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 738 | 0 0 0 0 0 0 0 0 0 0 0 0 |
738 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 739 | 0 0 0 0 0 0 0 0 0 0 0 0 |
739 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 740 | 0 0 0 85 85 85 0 0 0 0 0 0 |
740 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 741 | 0 0 0 0 0 0 0 0 0 0 0 0 |
741 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 742 | 0 0 0 0 0 0 0 0 0 0 0 0 |
742 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 743 | 0 0 0 0 0 0 0 0 0 0 0 0 |
743 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 744 | 0 0 0 0 0 0 0 0 0 0 0 0 |
744 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 745 | 0 0 0 0 0 0 0 0 0 0 0 0 |
745 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 746 | 0 0 0 0 0 0 0 0 0 0 0 0 |
746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 747 | 0 0 0 0 0 0 0 0 0 0 0 0 |
747 | 0 0 0 0 0 0 0 0 0 0 0 0 | 748 | 0 0 0 0 0 0 0 0 0 0 0 0 |
748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 749 | 0 0 0 0 0 0 0 0 0 0 0 0 |
749 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 750 | 0 0 0 0 0 0 0 0 0 85 85 85 |
750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 751 | 0 0 0 0 0 0 0 0 0 0 0 0 |
751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 752 | 85 85 85 170 170 170 170 170 170 170 170 170 |
752 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 753 | 255 255 255 255 255 255 255 255 255 170 170 170 |
753 | 170 85 0 170 85 0 255 255 85 255 255 85 255 255 255 170 170 170 | 754 | 170 170 170 170 170 170 255 255 255 255 255 255 |
754 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 755 | 255 255 255 255 255 255 255 255 255 255 255 255 |
755 | 170 85 0 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 | 756 | 170 170 170 170 170 170 170 170 170 170 170 170 |
756 | 255 255 85 85 255 85 170 85 0 85 85 85 0 0 0 0 0 0 | 757 | 170 170 170 170 170 170 170 170 170 85 85 85 |
757 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | 758 | 0 0 0 0 0 0 0 0 0 0 0 0 |
758 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 759 | 0 0 0 0 0 0 0 0 0 0 0 0 |
759 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 760 | 0 0 0 85 85 85 0 0 0 0 0 0 |
760 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 761 | 0 0 0 0 0 0 0 0 0 0 0 0 |
761 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 762 | 0 0 0 0 0 0 0 0 0 0 0 0 |
762 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 763 | 0 0 0 0 0 0 0 0 0 0 0 0 |
763 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 764 | 0 0 0 0 0 0 0 0 0 0 0 0 |
764 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 765 | 0 0 0 0 0 0 0 0 0 0 0 0 |
765 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 766 | 0 0 0 0 0 0 0 0 0 0 0 0 |
766 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 767 | 0 0 0 0 0 0 0 0 0 0 0 0 |
767 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 768 | 0 0 0 0 0 0 0 0 0 0 0 0 |
768 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 769 | 0 0 0 0 0 0 0 0 0 0 0 0 |
769 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 770 | 0 0 0 0 0 0 0 0 0 85 85 85 |
770 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 771 | 0 0 0 0 0 0 0 0 0 0 0 0 |
771 | 0 0 0 0 0 0 0 0 0 0 0 0 | 772 | 170 170 170 170 170 170 170 170 170 255 255 255 |
772 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 773 | 255 255 255 255 255 255 255 255 255 255 255 255 |
773 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 774 | 170 170 170 255 255 255 255 255 255 255 255 255 |
774 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 775 | 255 255 255 255 255 255 255 255 255 255 255 255 |
775 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 776 | 255 255 255 255 255 255 170 170 170 170 170 170 |
776 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 777 | 170 170 170 170 170 170 170 170 170 85 85 85 |
777 | 255 255 85 85 255 85 255 255 85 170 170 170 255 255 255 255 255 85 | 778 | 0 0 0 0 0 0 85 85 85 0 0 0 |
778 | 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 255 255 85 | 779 | 0 0 0 0 0 0 0 0 0 0 0 0 |
779 | 255 255 85 255 255 85 255 255 85 255 255 85 85 255 85 170 85 0 | 780 | 0 0 0 0 0 0 85 85 85 0 0 0 |
780 | 255 255 85 170 85 0 170 85 0 0 0 0 85 85 85 0 0 0 | 781 | 0 0 0 0 0 0 0 0 0 0 0 0 |
781 | 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 170 170 170 | 782 | 0 0 0 0 0 0 0 0 0 0 0 0 |
782 | 85 255 85 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | 783 | 0 0 0 0 0 0 0 0 0 0 0 0 |
783 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | 784 | 0 0 0 0 0 0 0 0 0 0 0 0 |
784 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | 785 | 0 0 0 0 0 0 0 0 0 0 0 0 |
785 | 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | 786 | 0 0 0 0 0 0 0 0 0 0 0 0 |
786 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 787 | 0 0 0 0 0 0 0 0 0 0 0 0 |
787 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 788 | 0 0 0 0 0 0 0 0 0 0 0 0 |
788 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 789 | 0 0 0 0 0 0 0 0 0 0 0 0 |
789 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 790 | 0 0 0 0 0 0 85 85 85 0 0 0 |
790 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 791 | 0 0 0 0 0 0 0 0 0 0 0 0 |
791 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 792 | 170 170 170 255 255 255 255 255 255 255 255 255 |
792 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 793 | 255 255 255 255 255 255 255 255 255 255 255 255 |
793 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 794 | 255 255 255 255 255 255 255 255 255 255 255 255 |
794 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 795 | 255 255 255 255 255 255 255 255 255 255 255 255 |
795 | 0 0 0 0 0 0 0 0 0 0 0 0 | 796 | 255 255 255 255 255 255 255 255 255 255 255 255 |
796 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 797 | 255 255 255 170 170 170 170 170 170 170 170 170 |
797 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 798 | 0 0 0 0 0 0 0 0 0 85 85 85 |
798 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 799 | 85 85 85 0 0 0 0 0 0 0 0 0 |
799 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 800 | 0 0 0 0 0 0 85 85 85 0 0 0 |
800 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 0 | 801 | 0 0 0 0 0 0 0 0 0 0 0 0 |
801 | 170 85 0 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 802 | 0 0 0 0 0 0 0 0 0 0 0 0 |
802 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 803 | 0 0 0 0 0 0 0 0 0 0 0 0 |
803 | 255 255 85 255 255 85 85 255 85 255 255 85 170 85 0 170 85 0 | 804 | 0 0 0 0 0 0 0 0 0 0 0 0 |
804 | 170 85 0 85 255 85 255 255 85 85 85 85 170 170 170 170 170 170 | 805 | 0 0 0 0 0 0 0 0 0 0 0 0 |
805 | 170 170 170 170 170 170 170 170 170 85 255 85 170 170 170 170 170 170 | 806 | 0 0 0 0 0 0 0 0 0 0 0 0 |
806 | 85 85 85 170 170 170 170 170 170 170 85 0 170 170 170 170 170 170 | 807 | 0 0 0 0 0 0 0 0 0 0 0 0 |
807 | 85 255 85 170 170 170 170 85 0 170 170 170 85 255 85 255 85 85 | 808 | 0 0 0 0 0 0 0 0 0 0 0 0 |
808 | 85 255 85 170 170 170 255 255 85 85 85 85 255 255 85 170 170 170 | 809 | 0 0 0 0 0 0 0 0 0 0 0 0 |
809 | 85 255 85 170 170 170 255 255 85 170 170 170 170 170 170 85 85 85 | 810 | 0 0 0 0 0 0 85 85 85 0 0 0 |
810 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 811 | 85 85 85 0 0 0 0 0 0 85 85 85 |
811 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 812 | 255 255 255 255 255 255 255 255 255 255 255 255 |
812 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 813 | 255 255 255 255 255 255 255 255 255 255 255 255 |
813 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 814 | 255 255 255 255 255 255 255 255 255 255 255 255 |
814 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 815 | 255 255 255 255 255 255 255 255 255 255 255 255 |
815 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 816 | 255 255 255 255 255 255 255 255 255 255 255 255 |
816 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 817 | 255 255 255 255 255 255 170 170 170 170 170 170 |
817 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 818 | 85 85 85 0 0 0 0 0 0 0 0 0 |
818 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 819 | 0 0 0 85 85 85 0 0 0 0 0 0 |
819 | 0 0 0 0 0 0 0 0 0 0 0 0 | 820 | 0 0 0 0 0 0 0 0 0 85 85 85 |
820 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 821 | 0 0 0 0 0 0 0 0 0 0 0 0 |
821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 822 | 0 0 0 0 0 0 0 0 0 0 0 0 |
822 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 823 | 0 0 0 0 0 0 0 0 0 0 0 0 |
823 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 824 | 0 0 0 0 0 0 0 0 0 0 0 0 |
824 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 | 825 | 0 0 0 0 0 0 0 0 0 0 0 0 |
825 | 255 255 85 255 255 85 255 255 85 255 255 255 255 255 85 255 255 85 | 826 | 0 0 0 0 0 0 0 0 0 0 0 0 |
826 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 | 827 | 0 0 0 0 0 0 0 0 0 0 0 0 |
827 | 255 255 85 255 255 85 255 255 85 170 85 0 0 170 0 85 85 85 | 828 | 0 0 0 0 0 0 0 0 0 0 0 0 |
828 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 85 255 85 | 829 | 0 0 0 0 0 0 0 0 0 0 0 0 |
829 | 255 85 85 85 255 85 85 85 85 255 85 85 85 85 85 170 170 170 | 830 | 0 0 0 85 85 85 0 0 0 0 0 0 |
830 | 170 85 0 170 170 170 85 85 85 85 255 85 85 85 85 85 85 85 | 831 | 85 85 85 0 0 0 0 0 0 170 170 170 |
831 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 832 | 255 255 255 255 255 255 255 255 255 255 255 255 |
832 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 833 | 255 255 255 255 255 255 255 255 255 255 255 255 |
833 | 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 834 | 255 255 255 255 255 255 255 255 255 255 255 255 |
834 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 835 | 255 255 255 255 255 255 255 255 255 255 255 255 |
835 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 836 | 255 255 255 255 255 255 255 255 255 255 255 255 |
836 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 837 | 255 255 255 255 255 255 255 255 255 255 255 255 |
837 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 838 | 170 170 170 85 85 85 0 0 0 0 0 0 |
838 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 839 | 0 0 0 85 85 85 85 85 85 0 0 0 |
839 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 840 | 0 0 0 0 0 0 0 0 0 85 85 85 |
840 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 841 | 0 0 0 0 0 0 0 0 0 0 0 0 |
841 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 842 | 0 0 0 0 0 0 0 0 0 0 0 0 |
842 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 843 | 0 0 0 0 0 0 0 0 0 0 0 0 |
843 | 0 0 0 0 0 0 0 0 0 0 0 0 | 844 | 0 0 0 0 0 0 0 0 0 0 0 0 |
844 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 845 | 0 0 0 0 0 0 0 0 0 0 0 0 |
845 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 846 | 0 0 0 0 0 0 0 0 0 0 0 0 |
846 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 847 | 0 0 0 0 0 0 0 0 0 0 0 0 |
847 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 848 | 0 0 0 0 0 0 0 0 0 0 0 0 |
848 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 | 849 | 0 0 0 0 0 0 0 0 0 0 0 0 |
849 | 170 85 0 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 850 | 0 0 0 85 85 85 0 0 0 85 85 85 |
850 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 851 | 0 0 0 0 0 0 85 85 85 255 255 255 |
851 | 255 255 85 255 255 85 170 85 0 255 255 85 85 85 85 85 85 85 | 852 | 255 255 255 255 255 255 255 255 255 255 255 255 |
852 | 255 255 85 170 170 170 85 85 85 85 85 85 0 0 0 85 85 85 | 853 | 255 255 255 255 255 255 255 255 255 255 255 255 |
853 | 0 0 0 85 85 85 85 85 85 170 170 170 170 85 0 170 170 170 | 854 | 255 255 255 255 255 255 255 255 255 255 255 255 |
854 | 170 170 170 255 255 85 170 170 170 85 85 85 85 85 85 85 85 85 | 855 | 255 255 255 255 255 255 255 255 255 255 255 255 |
855 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 856 | 255 255 255 255 255 255 255 255 255 255 255 255 |
856 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 857 | 255 255 255 255 255 255 255 255 255 255 255 255 |
857 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 858 | 255 255 255 170 170 170 0 0 0 85 85 85 |
858 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 859 | 85 85 85 0 0 0 85 85 85 0 0 0 |
859 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 860 | 0 0 0 0 0 0 0 0 0 85 85 85 |
860 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 861 | 0 0 0 0 0 0 0 0 0 0 0 0 |
861 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 862 | 0 0 0 0 0 0 0 0 0 0 0 0 |
862 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 863 | 0 0 0 0 0 0 0 0 0 0 0 0 |
863 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 864 | 0 0 0 0 0 0 0 0 0 0 0 0 |
864 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 865 | 0 0 0 0 0 0 0 0 0 0 0 0 |
865 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 866 | 0 0 0 0 0 0 0 0 0 0 0 0 |
866 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 867 | 0 0 0 0 0 0 0 0 0 0 0 0 |
867 | 0 0 0 0 0 0 0 0 0 0 0 0 | 868 | 0 0 0 0 0 0 0 0 0 0 0 0 |
868 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 869 | 0 0 0 0 0 0 0 0 0 0 0 0 |
869 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 870 | 0 0 0 85 85 85 0 0 0 85 85 85 |
870 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 871 | 0 0 0 85 85 85 170 170 170 255 255 255 |
871 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 872 | 255 255 255 255 255 255 255 255 255 255 255 255 |
872 | 0 0 0 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 | 873 | 255 255 255 255 255 255 255 255 255 255 255 255 |
873 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 874 | 255 255 255 255 255 255 255 255 255 255 255 255 |
874 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 875 | 255 255 255 255 255 255 255 255 255 255 255 255 |
875 | 255 255 85 255 255 85 255 255 85 170 85 0 170 85 0 0 170 0 | 876 | 255 255 255 255 255 255 255 255 255 255 255 255 |
876 | 0 0 0 170 85 0 170 85 0 0 170 0 0 0 0 0 0 0 | 877 | 255 255 255 255 255 255 255 255 255 255 255 255 |
877 | 85 85 85 0 0 0 85 85 85 85 85 85 170 170 170 85 85 85 | 878 | 255 255 255 170 170 170 0 0 0 85 85 85 |
878 | 170 170 170 85 85 85 85 85 85 170 170 170 170 85 0 85 85 85 | 879 | 85 85 85 0 0 0 85 85 85 0 0 0 |
879 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 880 | 0 0 0 0 0 0 0 0 0 0 0 0 |
880 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 881 | 85 85 85 0 0 0 0 0 0 0 0 0 |
881 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 882 | 0 0 0 0 0 0 0 0 0 0 0 0 |
882 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 883 | 0 0 0 0 0 0 0 0 0 0 0 0 |
883 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 884 | 0 0 0 0 0 0 0 0 0 0 0 0 |
884 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 885 | 0 0 0 0 0 0 0 0 0 0 0 0 |
885 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 886 | 0 0 0 0 0 0 0 0 0 0 0 0 |
886 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 887 | 0 0 0 0 0 0 0 0 0 0 0 0 |
887 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 888 | 0 0 0 0 0 0 0 0 0 0 0 0 |
888 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 889 | 0 0 0 0 0 0 0 0 0 0 0 0 |
889 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 890 | 85 85 85 0 0 0 0 0 0 85 85 85 |
890 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 891 | 0 0 0 170 170 170 255 255 255 255 255 255 |
891 | 0 0 0 0 0 0 0 0 0 0 0 0 | 892 | 255 255 255 255 255 255 255 255 255 255 255 255 |
892 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 893 | 255 255 255 255 255 255 255 255 255 255 255 255 |
893 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 894 | 255 255 255 255 255 255 255 255 255 255 255 255 |
894 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 895 | 255 255 255 255 255 255 255 255 255 255 255 255 |
895 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 896 | 255 255 255 255 255 255 255 255 255 255 255 255 |
896 | 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 170 85 0 | 897 | 255 255 255 255 255 255 255 255 255 255 255 255 |
897 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 | 898 | 255 255 255 255 255 255 85 85 85 0 0 0 |
898 | 255 255 85 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 | 899 | 0 0 0 0 0 0 0 0 0 85 85 85 |
899 | 170 85 0 255 255 85 85 255 85 255 255 85 255 255 85 170 85 0 | 900 | 0 0 0 0 0 0 0 0 0 0 0 0 |
900 | 170 85 0 255 255 85 170 85 0 0 0 0 0 0 0 0 0 0 | 901 | 85 85 85 0 0 0 0 0 0 0 0 0 |
901 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | 902 | 0 0 0 0 0 0 0 0 0 0 0 0 |
902 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 903 | 0 0 0 0 0 0 0 0 0 0 0 0 |
903 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 904 | 0 0 0 0 0 0 0 0 0 0 0 0 |
904 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 905 | 0 0 0 0 0 0 0 0 0 0 0 0 |
905 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 906 | 0 0 0 0 0 0 0 0 0 0 0 0 |
906 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 907 | 0 0 0 0 0 0 0 0 0 0 0 0 |
907 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 908 | 0 0 0 0 0 0 0 0 0 0 0 0 |
908 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 909 | 0 0 0 0 0 0 0 0 0 0 0 0 |
909 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 910 | 85 85 85 0 0 0 85 85 85 0 0 0 |
910 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 911 | 0 0 0 255 255 255 255 255 255 255 255 255 |
911 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 912 | 255 255 255 255 255 255 255 255 255 255 255 255 |
912 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 913 | 255 255 255 255 255 255 255 255 255 255 255 255 |
913 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 914 | 255 255 255 255 255 255 255 255 255 255 255 255 |
914 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 915 | 255 255 255 255 255 255 255 255 255 255 255 255 |
915 | 0 0 0 0 0 0 0 0 0 0 0 0 | 916 | 255 255 255 255 255 255 255 255 255 255 255 255 |
916 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 917 | 255 255 255 255 255 255 255 255 255 255 255 255 |
917 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 918 | 255 255 255 255 255 255 170 170 170 0 0 0 |
918 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 919 | 0 0 0 0 0 0 0 0 0 85 85 85 |
919 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 920 | 0 0 0 0 0 0 0 0 0 0 0 0 |
920 | 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 255 255 85 | 921 | 85 85 85 0 0 0 0 0 0 0 0 0 |
921 | 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 255 255 85 | 922 | 0 0 0 0 0 0 0 0 0 0 0 0 |
922 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 923 | 0 0 0 0 0 0 0 0 0 0 0 0 |
923 | 255 255 85 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 | 924 | 0 0 0 0 0 0 0 0 0 0 0 0 |
924 | 85 255 85 170 85 0 0 170 0 85 85 85 0 0 0 85 85 85 | 925 | 0 0 0 0 0 0 0 0 0 0 0 0 |
925 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 | 926 | 0 0 0 0 0 0 0 0 0 0 0 0 |
926 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 927 | 0 0 0 0 0 0 0 0 0 0 0 0 |
927 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 928 | 0 0 0 0 0 0 0 0 0 0 0 0 |
928 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 929 | 0 0 0 0 0 0 0 0 0 85 85 85 |
929 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 930 | 0 0 0 0 0 0 85 85 85 0 0 0 |
930 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 931 | 85 85 85 255 255 255 255 255 255 255 255 255 |
931 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 932 | 255 255 255 255 255 255 255 255 255 255 255 255 |
932 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 933 | 255 255 255 255 255 255 255 255 255 255 255 255 |
933 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 934 | 255 255 255 255 255 255 255 255 255 255 255 255 |
934 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 935 | 255 255 255 255 255 255 255 255 255 255 255 255 |
935 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 936 | 255 255 255 255 255 255 255 255 255 255 255 255 |
936 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 937 | 255 255 255 255 255 255 255 255 255 255 255 255 |
937 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 938 | 255 255 255 255 255 255 170 170 170 0 0 0 |
938 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 939 | 0 0 0 0 0 0 0 0 0 85 85 85 |
939 | 0 0 0 0 0 0 0 0 0 0 0 0 | 940 | 0 0 0 0 0 0 0 0 0 0 0 0 |
940 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 941 | 85 85 85 0 0 0 0 0 0 0 0 0 |
941 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 942 | 0 0 0 0 0 0 0 0 0 0 0 0 |
942 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 943 | 0 0 0 0 0 0 0 0 0 0 0 0 |
943 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 944 | 0 0 0 0 0 0 0 0 0 0 0 0 |
944 | 0 0 0 0 0 0 0 0 0 0 170 0 170 85 0 255 255 85 | 945 | 0 0 0 0 0 0 0 0 0 0 0 0 |
945 | 85 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 946 | 0 0 0 0 0 0 0 0 0 0 0 0 |
946 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 947 | 0 0 0 0 0 0 0 0 0 0 0 0 |
947 | 170 85 0 255 255 85 85 255 85 255 255 85 255 255 85 170 85 0 | 948 | 0 0 0 0 0 0 0 0 0 0 0 0 |
948 | 85 255 85 170 85 0 170 85 0 0 0 0 0 0 0 0 0 0 | 949 | 0 0 0 0 0 0 0 0 0 85 85 85 |
949 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 950 | 0 0 0 85 85 85 0 0 0 0 0 0 |
950 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 951 | 170 170 170 255 255 255 255 255 255 255 255 255 |
951 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 952 | 255 255 255 255 255 255 255 255 255 255 255 255 |
952 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 953 | 255 255 255 255 255 255 255 255 255 255 255 255 |
953 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 954 | 255 255 255 255 255 255 255 255 255 255 255 255 |
954 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 955 | 255 255 255 255 255 255 255 255 255 255 255 255 |
955 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 956 | 255 255 255 255 255 255 255 255 255 255 255 255 |
956 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 957 | 255 255 255 255 255 255 255 255 255 255 255 255 |
957 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 958 | 255 255 255 255 255 255 170 170 170 0 0 0 |
958 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 959 | 0 0 0 0 0 0 0 0 0 85 85 85 |
959 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 960 | 0 0 0 0 0 0 0 0 0 0 0 0 |
960 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 961 | 0 0 0 85 85 85 0 0 0 0 0 0 |
961 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 962 | 0 0 0 0 0 0 0 0 0 0 0 0 |
962 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 963 | 0 0 0 0 0 0 0 0 0 0 0 0 |
963 | 0 0 0 0 0 0 0 0 0 0 0 0 | 964 | 0 0 0 0 0 0 0 0 0 0 0 0 |
964 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 965 | 0 0 0 0 0 0 0 0 0 0 0 0 |
965 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 966 | 0 0 0 0 0 0 0 0 0 0 0 0 |
966 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 967 | 0 0 0 0 0 0 0 0 0 0 0 0 |
967 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 968 | 0 0 0 0 0 0 0 0 0 0 0 0 |
968 | 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 255 255 85 | 969 | 0 0 0 0 0 0 85 85 85 0 0 0 |
969 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 970 | 0 0 0 85 85 85 0 0 0 0 0 0 |
970 | 255 255 85 170 85 0 255 255 85 85 255 85 255 255 85 170 85 0 | 971 | 255 255 255 255 255 255 255 255 255 255 255 255 |
971 | 255 255 85 255 255 85 170 85 0 255 255 85 170 85 0 85 255 85 | 972 | 255 255 255 255 255 255 255 255 255 255 255 255 |
972 | 170 85 0 170 85 0 0 0 0 0 0 0 0 0 0 85 85 85 | 973 | 255 255 255 255 255 255 170 170 170 255 255 255 |
973 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 974 | 255 255 255 255 255 255 255 255 255 255 255 255 |
974 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 975 | 255 255 255 255 255 255 255 255 255 255 255 255 |
975 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 976 | 255 255 255 255 255 255 255 255 255 255 255 255 |
976 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 977 | 255 255 255 255 255 255 255 255 255 255 255 255 |
977 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 978 | 255 255 255 255 255 255 255 255 255 0 0 0 |
978 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 979 | 0 0 0 0 0 0 0 0 0 85 85 85 |
979 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 980 | 0 0 0 0 0 0 0 0 0 0 0 0 |
980 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 981 | 0 0 0 85 85 85 0 0 0 0 0 0 |
981 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 982 | 0 0 0 0 0 0 0 0 0 0 0 0 |
982 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 983 | 0 0 0 0 0 0 0 0 0 0 0 0 |
983 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 984 | 0 0 0 0 0 0 0 0 0 0 0 0 |
984 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 985 | 0 0 0 0 0 0 0 0 0 0 0 0 |
985 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 986 | 0 0 0 0 0 0 0 0 0 0 0 0 |
986 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 987 | 0 0 0 0 0 0 0 0 0 0 0 0 |
987 | 0 0 0 0 0 0 0 0 0 0 0 0 | 988 | 0 0 0 0 0 0 0 0 0 0 0 0 |
988 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 989 | 0 0 0 85 85 85 0 0 0 0 0 0 |
989 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 990 | 0 0 0 85 85 85 0 0 0 0 0 0 |
990 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 991 | 255 255 255 255 255 255 255 255 255 255 255 255 |
991 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 992 | 255 255 255 255 255 255 255 255 255 255 255 255 |
992 | 0 0 0 0 0 0 0 0 0 85 85 85 255 255 85 170 85 0 | 993 | 255 255 255 255 255 255 170 170 170 255 255 255 |
993 | 255 255 85 170 85 0 255 255 85 170 85 0 255 255 85 85 255 85 | 994 | 255 255 255 255 255 255 255 255 255 255 255 255 |
994 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 995 | 255 255 255 255 255 255 255 255 255 255 255 255 |
995 | 255 255 85 170 85 0 255 255 85 85 255 85 170 85 0 170 85 0 | 996 | 255 255 255 255 255 255 255 255 255 255 255 255 |
996 | 0 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 997 | 255 255 255 255 255 255 255 255 255 255 255 255 |
997 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 998 | 255 255 255 255 255 255 255 255 255 0 0 0 |
998 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | 999 | 0 0 0 0 0 0 0 0 0 85 85 85 |
999 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1000 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1000 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1001 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1001 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | 1002 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1002 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1003 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1003 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1004 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1004 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1005 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1005 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1006 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1006 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1007 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1007 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1008 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1008 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1009 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1009 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1010 | 0 0 0 85 85 85 0 0 0 85 85 85 |
1010 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1011 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1011 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1012 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1012 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1013 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1013 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1014 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1014 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1015 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1015 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1016 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1016 | 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 255 255 85 | 1017 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1017 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | 1018 | 255 255 255 255 255 255 255 255 255 0 0 0 |
1018 | 255 255 85 255 255 85 170 85 0 255 255 85 170 85 0 85 255 85 | 1019 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1019 | 255 255 85 85 255 85 170 85 0 170 85 0 85 255 85 170 85 0 | 1020 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1020 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1021 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1021 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1022 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1022 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1023 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1023 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 1024 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1024 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 1025 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1025 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 1026 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1026 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1027 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1027 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1028 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1028 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1029 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1029 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1030 | 0 0 0 85 85 85 0 0 0 85 85 85 |
1030 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1031 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1031 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1032 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1032 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1033 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1033 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1034 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1034 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1035 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1035 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1036 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1036 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1037 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1037 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1038 | 255 255 255 255 255 255 255 255 255 0 0 0 |
1038 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1039 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1039 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1040 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1040 | 0 0 0 0 0 0 0 0 0 85 85 85 255 255 85 85 255 85 | 1041 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1041 | 255 255 85 255 255 85 85 255 85 255 255 85 255 255 85 255 255 85 | 1042 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1042 | 255 255 85 170 85 0 255 255 85 85 255 85 255 255 85 255 255 85 | 1043 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1043 | 170 85 0 170 85 0 85 255 85 170 85 0 0 0 0 0 0 0 | 1044 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1044 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1045 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1045 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1046 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1046 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 1047 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1047 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1048 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1048 | 0 0 0 85 85 85 85 85 85 170 170 170 170 170 170 170 170 170 | 1049 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1049 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 | 1050 | 0 0 0 0 0 0 85 85 85 85 85 85 |
1050 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1051 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1051 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1052 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1052 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1053 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1053 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1054 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1054 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1055 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1055 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1056 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1056 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1057 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1057 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1058 | 255 255 255 255 255 255 255 255 255 0 0 0 |
1058 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1059 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1059 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1060 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1060 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1061 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1061 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1062 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1062 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1063 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1063 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1064 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1064 | 0 0 0 0 0 0 0 0 0 85 85 85 255 255 85 255 255 85 | 1065 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1065 | 170 85 0 255 255 85 255 255 85 170 85 0 255 255 85 170 85 0 | 1066 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1066 | 255 255 85 85 255 85 170 85 0 255 255 85 170 85 0 85 255 85 | 1067 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1067 | 170 85 0 170 85 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1068 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1068 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1069 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1069 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1070 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1070 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1071 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1071 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1072 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1072 | 85 85 85 0 0 0 170 170 170 170 170 170 170 170 170 170 170 170 | 1073 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1073 | 170 170 170 170 170 170 170 170 170 85 85 85 85 85 85 85 85 85 | 1074 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1074 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1075 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1075 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1076 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1076 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1077 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1077 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1078 | 255 255 255 255 255 255 255 255 255 0 0 0 |
1078 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1079 | 85 85 85 85 85 85 85 85 85 85 85 85 |
1079 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1080 | 85 85 85 0 0 0 0 0 0 0 0 0 |
1080 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1081 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1081 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1082 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1082 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1083 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1083 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1084 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1084 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1085 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1085 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1086 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1086 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1087 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1087 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1088 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1088 | 0 0 0 0 0 0 0 0 0 0 0 0 170 85 0 255 255 85 | 1089 | 0 0 0 85 85 85 0 0 0 170 85 0 |
1089 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 85 255 85 | 1090 | 255 255 85 170 85 0 0 0 0 0 0 0 |
1090 | 170 85 0 255 255 85 170 85 0 85 255 85 170 85 0 170 85 0 | 1091 | 85 85 85 255 255 255 255 255 255 255 255 255 |
1091 | 0 170 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1092 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1092 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1093 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1093 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1094 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1094 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1095 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1095 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1096 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1096 | 0 0 0 85 85 85 170 170 170 170 170 170 255 255 255 170 170 170 | 1097 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1097 | 170 170 170 170 170 170 85 85 85 85 85 85 85 85 85 85 85 85 | 1098 | 255 255 255 255 255 255 255 255 255 85 85 85 |
1098 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1099 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1099 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1100 | 0 0 0 85 85 85 85 85 85 0 0 0 |
1100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1101 | 0 0 0 85 85 85 0 0 0 0 0 0 |
1101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1102 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1103 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1103 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1104 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1105 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1105 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1106 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1107 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1107 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1108 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1108 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1109 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1109 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1110 | 170 85 0 255 255 85 170 85 0 0 0 0 |
1110 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1111 | 0 0 0 85 85 85 255 255 255 255 255 255 |
1111 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1112 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1112 | 0 0 0 0 0 0 0 0 0 0 0 0 85 255 85 255 255 85 | 1113 | 255 255 255 255 255 255 170 170 170 255 255 255 |
1113 | 170 85 0 255 255 85 255 255 85 170 85 0 85 255 85 170 85 0 | 1114 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1114 | 255 255 85 170 85 0 0 170 0 170 85 0 0 0 0 0 0 0 | 1115 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1115 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1116 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1116 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1117 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1117 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1118 | 255 255 85 170 85 0 255 255 85 0 0 0 |
1118 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1119 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1119 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1120 | 0 0 0 0 0 0 85 85 85 85 85 85 |
1120 | 85 85 85 0 0 0 170 170 170 170 170 170 170 170 170 85 85 85 | 1121 | 85 85 85 0 0 0 0 0 0 0 0 0 |
1121 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | 1122 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1123 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1124 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1125 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1126 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1127 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1128 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1128 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1129 | 0 0 0 170 85 0 255 255 85 170 85 0 |
1129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1130 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1131 | 0 0 0 0 0 0 85 85 85 255 255 255 |
1131 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1132 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1132 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1133 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1133 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1134 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1134 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1135 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1135 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1136 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1136 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 | 1137 | 255 255 255 255 255 255 255 255 255 255 255 85 |
1137 | 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 170 85 0 | 1138 | 170 85 0 255 255 85 170 85 0 0 0 0 |
1138 | 0 170 0 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 | 1139 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1139 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1140 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1140 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | 1141 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1141 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 1142 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1142 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1143 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1143 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1144 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1144 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1145 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1145 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1146 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1147 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1147 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1148 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1149 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1150 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1151 | 170 85 0 0 0 0 0 0 0 85 85 85 |
1151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1152 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1152 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1153 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1153 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1154 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1154 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1155 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1155 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1156 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1156 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1157 | 255 255 255 255 255 255 255 255 255 170 85 0 |
1157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1158 | 255 255 85 170 85 0 255 255 85 0 0 0 |
1158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1159 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1159 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1160 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1160 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1161 | 255 255 85 170 85 0 0 0 0 0 0 0 |
1161 | 255 255 85 255 255 85 170 85 0 0 170 0 85 85 85 85 85 85 | 1162 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1162 | 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | 1163 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1163 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1164 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1164 | 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 85 85 85 | 1165 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1165 | 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 85 85 85 | 1166 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1166 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | 1167 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1167 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1168 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1168 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1169 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1169 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1170 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1170 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1171 | 255 255 85 0 0 0 0 0 0 0 0 0 |
1171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1172 | 85 85 85 255 255 255 255 255 255 255 255 255 |
1172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1173 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1174 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1175 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1175 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1176 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1177 | 255 255 255 255 255 255 255 255 255 255 255 85 |
1177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1178 | 170 85 0 255 255 85 170 85 0 0 0 0 |
1178 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1179 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1179 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1180 | 0 0 0 0 0 0 0 0 0 255 255 85 |
1180 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1181 | 170 85 0 255 255 85 0 0 0 0 0 0 |
1181 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1182 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1182 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1183 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1183 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1184 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1184 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1185 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1185 | 0 0 0 170 85 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1186 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1186 | 85 85 85 85 85 85 85 85 85 85 85 85 170 170 170 85 85 85 | 1187 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1187 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 1188 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1188 | 170 170 170 170 170 170 170 170 170 170 170 170 255 255 255 255 255 255 | 1189 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1189 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 170 170 170 | 1190 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1190 | 170 170 170 170 170 170 170 170 170 85 85 85 85 85 85 85 85 85 | 1191 | 170 85 0 255 255 85 0 0 0 0 0 0 |
1191 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1192 | 0 0 0 85 85 85 255 255 255 255 255 255 |
1192 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1193 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1193 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1194 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1194 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1195 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1195 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1196 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1196 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1197 | 255 255 255 255 255 255 170 170 170 170 85 0 |
1197 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1198 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1199 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1200 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1201 | 255 255 85 170 85 0 0 0 0 0 0 0 |
1201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1202 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1203 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1203 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1204 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1204 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1205 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1206 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1207 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1208 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1208 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1209 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1209 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1210 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1210 | 85 85 85 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 | 1211 | 255 255 85 170 85 0 255 255 85 0 0 0 |
1211 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 170 170 170 | 1212 | 0 0 0 0 0 0 85 85 85 255 255 255 |
1212 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | 1213 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1213 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | 1214 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1214 | 255 255 255 255 255 255 170 170 170 255 255 255 170 170 170 85 85 85 | 1215 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1215 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1216 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1216 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1217 | 255 255 255 170 170 170 170 170 170 255 255 85 |
1217 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1218 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1218 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1219 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1220 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1221 | 170 85 0 255 255 85 0 0 0 0 0 0 |
1221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1222 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1223 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1223 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1224 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1224 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1225 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1225 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1226 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1226 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1227 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1227 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1228 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1228 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1229 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1230 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1231 | 170 85 0 255 255 85 170 85 0 0 0 0 |
1231 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1232 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1233 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1234 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1234 | 85 85 85 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 | 1235 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1235 | 255 255 255 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | 1236 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1236 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | 1237 | 255 255 255 170 170 170 170 170 170 170 85 0 |
1237 | 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 255 255 255 | 1238 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1238 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 85 85 85 | 1239 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1239 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1240 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1240 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1241 | 255 255 85 170 85 0 255 255 85 0 0 0 |
1241 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1242 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1242 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1243 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1243 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1244 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1245 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1245 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1246 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1247 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1248 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1249 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1250 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1250 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1251 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1251 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1252 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1252 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1253 | 0 0 0 255 255 255 255 255 255 255 255 255 |
1253 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1254 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1254 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1255 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1256 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1257 | 255 255 255 170 170 170 170 170 170 255 255 85 |
1257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1258 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1258 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 170 170 170 | 1259 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1259 | 170 170 170 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 | 1260 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1260 | 255 255 255 170 170 170 255 255 255 170 170 170 255 255 255 255 255 255 | 1261 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1261 | 255 255 255 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 | 1262 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1262 | 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 85 85 85 | 1263 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1263 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1264 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1264 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1265 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1265 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1266 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1266 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1267 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1267 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1268 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1268 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1269 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1270 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1271 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1272 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1273 | 0 0 0 255 255 255 255 255 255 255 255 255 |
1273 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1274 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1275 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1275 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1276 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1277 | 255 255 255 170 170 170 170 170 170 170 85 0 |
1277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1278 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1278 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1279 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1279 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1280 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1280 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1281 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1281 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1282 | 255 255 85 0 0 0 0 0 0 0 0 0 |
1282 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 | 1283 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1283 | 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 170 170 170 | 1284 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1284 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | 1285 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1285 | 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 170 170 170 | 1286 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1286 | 170 170 170 170 170 170 85 85 85 0 0 0 85 85 85 0 0 0 | 1287 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1287 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1288 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1288 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1289 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1289 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1290 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1290 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1291 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1291 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1292 | 255 255 85 0 0 0 0 0 0 0 0 0 |
1292 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1293 | 85 85 85 255 255 255 255 255 255 255 255 255 |
1293 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1294 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1294 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1295 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1295 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1296 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1296 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1297 | 255 255 255 170 170 170 85 85 85 255 255 85 |
1297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1298 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1299 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1299 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1300 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1301 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1301 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1302 | 170 85 0 255 255 85 0 0 0 0 0 0 |
1302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1303 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1303 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1304 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1305 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1305 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 1306 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1306 | 170 170 170 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 1307 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1307 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 1308 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1308 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 1309 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1309 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 1310 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1310 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1311 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1311 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1312 | 170 85 0 255 255 85 85 85 85 85 85 85 |
1312 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1313 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1313 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1314 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1314 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1315 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1315 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1316 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1316 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1317 | 170 170 170 85 85 85 85 85 85 170 85 0 |
1317 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1318 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1318 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1319 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1320 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1320 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1321 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1321 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1322 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1322 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1323 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1323 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1324 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1324 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1325 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1326 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1327 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1328 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1328 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1329 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1329 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | 1330 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1330 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | 1331 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1331 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1332 | 255 255 85 170 85 0 255 255 85 255 255 255 |
1332 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1333 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1334 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1334 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1335 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1335 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1336 | 255 255 255 255 255 255 255 255 255 170 170 170 |
1336 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1337 | 85 85 85 0 0 0 0 0 0 170 85 0 |
1337 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1338 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1338 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1339 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1339 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1340 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1340 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1341 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1341 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1342 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1342 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1343 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1343 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1344 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1345 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1346 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1347 | 0 0 0 0 0 0 170 85 0 255 255 85 |
1347 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1348 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1348 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1349 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1349 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1350 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1350 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1351 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1352 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1352 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1353 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1353 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | 1354 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1354 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | 1355 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1355 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1356 | 255 255 255 255 255 255 170 170 170 85 85 85 |
1356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1357 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1357 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1358 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1358 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1359 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1359 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1360 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1360 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1361 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1361 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1362 | 255 255 85 170 85 0 255 255 85 0 0 0 |
1362 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1363 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1363 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1364 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1364 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1365 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1365 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1366 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1366 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1367 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1367 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1368 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1368 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1369 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1369 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1370 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1371 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1371 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1372 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1373 | 170 170 170 255 255 255 255 255 255 255 255 255 |
1373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1374 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1375 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1376 | 170 170 170 85 85 85 85 85 85 0 0 0 |
1376 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1377 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1377 | 0 0 0 0 0 0 85 85 85 85 85 85 170 170 170 85 85 85 | 1378 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1378 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | 1379 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1379 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1380 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1380 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1381 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1381 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1382 | 170 85 0 255 255 85 0 0 0 0 0 0 |
1382 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1383 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1384 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1384 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1385 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1385 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | 1386 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1386 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1387 | 0 0 0 255 255 85 170 85 0 255 255 85 |
1387 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1388 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1388 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1389 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1389 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1390 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1390 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1391 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1391 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1392 | 170 85 0 255 255 85 170 85 0 170 85 0 |
1392 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1393 | 170 85 0 170 170 170 255 255 255 255 255 255 |
1393 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1394 | 255 255 255 255 255 255 255 255 255 255 255 255 |
1394 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1395 | 255 255 255 255 255 255 170 170 170 85 85 85 |
1395 | 0 0 0 0 0 0 0 0 0 0 0 0 | 1396 | 85 85 85 0 0 0 0 0 0 0 0 0 |
1396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1397 | 0 0 0 0 0 0 85 85 85 170 85 0 |
1397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1398 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1399 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1400 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1401 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1401 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | 1402 | 255 255 85 0 0 0 0 0 0 0 0 0 |
1402 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | 1403 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1403 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1404 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1405 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1405 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1406 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1406 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1407 | 0 0 0 170 85 0 255 255 85 170 85 0 |
1407 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1408 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1408 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1409 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1409 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1410 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1410 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1411 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1411 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1412 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1412 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1413 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1413 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1414 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1414 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1415 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1415 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1416 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1416 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1417 | 0 0 0 0 0 0 85 85 85 170 85 0 |
1417 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1418 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1418 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1419 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1419 | 0 0 0 0 0 0 85 85 85 85 85 85 | 1420 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1420 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1421 | 170 85 0 170 85 0 170 85 0 0 0 0 |
1421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1422 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1423 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1423 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1424 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1425 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1425 | 0 0 0 85 85 85 85 85 85 170 170 170 85 85 85 85 85 85 | 1426 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1426 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1427 | 0 0 0 255 255 85 170 85 0 255 255 85 |
1427 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1428 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1428 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1429 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1429 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1430 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1430 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1431 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1431 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1432 | 170 85 0 255 255 85 170 85 0 170 85 0 |
1432 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1433 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1433 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1434 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1434 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1435 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1435 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1436 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1436 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1437 | 0 0 0 0 0 0 85 85 85 170 85 0 |
1437 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1438 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1438 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1439 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1439 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1440 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1440 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1441 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1441 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1442 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1442 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1443 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1443 | 0 0 0 85 85 85 170 170 170 170 170 170 | 1444 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1444 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1445 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1446 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1446 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1447 | 0 0 0 0 0 0 255 255 85 170 85 0 |
1447 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1448 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1448 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1449 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1449 | 0 0 0 85 85 85 170 170 170 85 85 85 85 85 85 85 85 85 | 1450 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1450 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1451 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1451 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1452 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1453 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1453 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1454 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1455 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1455 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1456 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1456 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | 1457 | 0 0 0 0 0 0 85 85 85 170 85 0 |
1457 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1458 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1458 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1459 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1459 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1460 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1460 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1461 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1461 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1462 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1462 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1463 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1463 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1464 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1464 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1465 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1465 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1466 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1466 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1467 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1467 | 85 85 85 170 170 170 255 255 255 170 170 170 | 1468 | 0 0 0 0 0 0 170 85 0 170 85 0 |
1468 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1469 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1469 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1470 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1471 | 170 85 0 255 255 85 170 85 0 255 255 85 |
1471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1472 | 170 85 0 255 255 85 170 85 0 170 85 0 |
1472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1473 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1473 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 1474 | 85 85 85 85 85 85 85 85 85 85 85 85 |
1474 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1475 | 85 85 85 85 85 85 85 85 85 85 85 85 |
1475 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1476 | 85 85 85 85 85 85 85 85 85 0 0 0 |
1476 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1477 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1477 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1478 | 170 85 0 170 85 0 255 255 85 170 85 0 |
1478 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1479 | 255 255 85 170 85 0 255 255 85 170 85 0 |
1479 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1480 | 170 85 0 170 85 0 0 0 0 0 0 0 |
1480 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1481 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1481 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1482 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1482 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1483 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1483 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1484 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1485 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1486 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1486 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1487 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1487 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1488 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1488 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1489 | 0 0 0 0 0 0 170 85 0 170 85 0 |
1489 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1490 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1490 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 | 1491 | 170 85 0 170 85 0 255 255 85 170 85 0 |
1491 | 170 170 170 255 255 255 170 170 170 170 170 170 | 1492 | 255 255 85 170 85 0 170 85 0 170 85 0 |
1492 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1493 | 85 85 85 85 85 85 85 85 85 85 85 85 |
1493 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1494 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1494 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1495 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1496 | 0 0 0 0 0 0 0 0 0 85 85 85 |
1496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1497 | 85 85 85 85 85 85 85 85 85 170 85 0 |
1497 | 85 85 85 170 170 170 85 85 85 85 85 85 85 85 85 0 0 0 | 1498 | 170 85 0 170 85 0 170 85 0 255 255 85 |
1498 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1499 | 170 85 0 255 255 85 170 85 0 170 85 0 |
1499 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1500 | 170 85 0 0 0 0 0 0 0 0 0 0 |
1500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1501 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1502 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1502 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1503 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1503 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1504 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1504 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | 1505 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1505 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1506 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1506 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1507 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1508 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1508 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1509 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1510 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1511 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1511 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1512 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1512 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1513 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1513 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1514 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1514 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 | 1515 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1515 | 255 255 255 255 255 255 170 170 170 170 170 170 | 1516 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1516 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1517 | 0 0 0 0 0 0 0 0 0 170 85 0 |
1517 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1518 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1518 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1519 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1519 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1520 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1520 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1521 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1521 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | 1522 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1522 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1523 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1524 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1524 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1525 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1525 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1526 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1526 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1527 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1527 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1528 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1528 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1529 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1529 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1530 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1530 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1531 | 0 0 0 170 85 0 170 85 0 170 85 0 |
1531 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1532 | 170 85 0 170 85 0 170 85 0 0 0 0 |
1532 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1533 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1533 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1534 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1534 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1535 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1535 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1536 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1536 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1537 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1537 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1538 | 170 85 0 170 85 0 170 85 0 170 85 0 |
1538 | 0 0 0 0 0 0 85 85 85 170 170 170 170 170 170 255 255 255 | 1539 | 170 85 0 170 85 0 170 85 0 0 0 0 |
1539 | 255 255 255 170 170 170 170 170 170 0 0 0 | 1540 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1540 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1541 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1541 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1542 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1542 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1543 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1543 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1544 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1544 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1545 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1545 | 170 170 170 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | 1546 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1546 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1547 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1547 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1548 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1549 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1549 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1550 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1550 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1551 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1552 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1552 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 85 85 85 | 1553 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1553 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | 1554 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1554 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1555 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1556 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1557 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1557 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1558 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1558 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1559 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1559 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1560 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1560 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1561 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1561 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1562 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1562 | 0 0 0 85 85 85 170 170 170 255 255 255 255 255 255 255 255 255 | 1563 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1563 | 170 170 170 170 170 170 85 85 85 0 0 0 | 1564 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1564 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1565 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1565 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1566 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1566 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1567 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1567 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1568 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1568 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 1569 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1569 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 1570 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1570 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1571 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1571 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | 1572 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1572 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1573 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1574 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1574 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1575 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1575 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1576 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1576 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1577 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1577 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1578 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1578 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1579 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1580 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1581 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1581 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1582 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1583 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1584 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1584 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1585 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1585 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | 1586 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1586 | 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 | 1587 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1587 | 170 170 170 170 170 170 0 0 0 0 0 0 | 1588 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1588 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1589 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1589 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1590 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1590 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1591 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1591 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1592 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1592 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | 1593 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1593 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | 1594 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1595 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1595 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1596 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1597 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1597 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | 1598 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1598 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | 1599 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1599 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | 1600 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1600 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | 1601 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1601 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | 1602 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1602 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | 1603 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1603 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | 1604 | 0 0 0 0 0 0 0 0 0 0 0 0 |
1604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1606 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1608 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1609 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 | ||
1610 | 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
1611 | 170 170 170 0 0 0 0 0 0 0 0 0 | ||
1612 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1613 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1614 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1615 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1616 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
1617 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1618 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1619 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1620 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1621 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1622 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1623 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1624 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | ||
1625 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1627 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1628 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1631 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1632 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1633 | 0 0 0 0 0 0 85 85 85 170 170 170 170 170 170 170 170 170 | ||
1634 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
1635 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1636 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1637 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1638 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1639 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1640 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
1641 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
1642 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1643 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1644 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1647 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1648 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1649 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1650 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1651 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1653 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1656 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1657 | 85 85 85 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 | ||
1658 | 255 255 255 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 | ||
1659 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1660 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1661 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1662 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1663 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1664 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
1665 | 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1666 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1667 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1668 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1669 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1670 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1671 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1672 | 85 85 85 0 0 0 170 170 170 255 255 255 85 85 85 85 85 85 | ||
1673 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1674 | 85 85 85 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1675 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1678 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1681 | 170 170 170 170 170 170 255 255 255 170 170 170 255 255 255 255 255 255 | ||
1682 | 255 255 255 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 | ||
1683 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1684 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1685 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1686 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1687 | 85 85 85 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1688 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | ||
1689 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1691 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1692 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1693 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1695 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1696 | 0 0 0 85 85 85 170 170 170 255 255 255 170 170 170 85 85 85 | ||
1697 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1698 | 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1699 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1700 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1703 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1704 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
1705 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
1706 | 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1707 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1708 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1709 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1710 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1711 | 85 85 85 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1712 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1713 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1714 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1715 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1716 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1717 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1718 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1719 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1720 | 85 85 85 85 85 85 255 255 255 255 255 255 255 255 255 85 85 85 | ||
1721 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 | ||
1722 | 255 255 255 170 170 170 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1723 | 0 0 0 85 85 85 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1724 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1725 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1726 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1728 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 | ||
1729 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | ||
1730 | 170 170 170 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1731 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1732 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1733 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1734 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1735 | 170 170 170 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 | ||
1736 | 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1737 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1738 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1739 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1740 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1741 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1742 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1743 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1744 | 85 85 85 170 170 170 255 255 255 255 255 255 255 255 255 85 85 85 | ||
1745 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 255 255 255 | ||
1746 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1747 | 85 85 85 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1749 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1752 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 | ||
1753 | 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
1754 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1755 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1756 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1757 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 170 170 170 | ||
1758 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1759 | 170 170 170 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 | ||
1760 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1761 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1762 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1763 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1764 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1765 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1766 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1767 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1768 | 85 85 85 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 | ||
1769 | 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 255 255 255 | ||
1770 | 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1771 | 85 85 85 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 | ||
1772 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1773 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1774 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1775 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1776 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1777 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 | ||
1778 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1779 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1780 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1781 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
1782 | 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1783 | 85 85 85 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 | ||
1784 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1785 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1786 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1787 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1788 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1789 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1790 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1791 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
1792 | 85 85 85 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
1793 | 85 85 85 0 0 0 0 0 0 85 85 85 170 170 170 255 255 255 | ||
1794 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1795 | 170 170 170 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 | ||
1796 | 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1797 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1798 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1799 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1800 | 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | ||
1801 | 85 85 85 85 85 85 170 170 170 85 85 85 85 85 85 0 0 0 | ||
1802 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1803 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1805 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
1806 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1807 | 85 85 85 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 | ||
1808 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
1809 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1810 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1811 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1812 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1813 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1814 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1815 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1816 | 170 170 170 170 170 170 255 255 255 170 170 170 255 255 255 85 85 85 | ||
1817 | 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 255 255 255 | ||
1818 | 170 170 170 170 170 170 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1819 | 170 170 170 255 255 255 255 255 255 0 0 0 0 0 0 85 85 85 | ||
1820 | 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1822 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1823 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1824 | 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 | ||
1825 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1826 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1827 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1828 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 | ||
1829 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 | ||
1830 | 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 | ||
1831 | 85 85 85 170 170 170 255 255 255 170 170 170 170 170 170 170 170 170 | ||
1832 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1833 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1834 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1835 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1836 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1837 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1838 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1839 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1840 | 85 85 85 170 170 170 255 255 255 170 170 170 170 170 170 85 85 85 | ||
1841 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 170 170 170 | ||
1842 | 170 170 170 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1843 | 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 170 170 170 | ||
1844 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1845 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1846 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1847 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1848 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1849 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1850 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1851 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1852 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 | ||
1853 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 | ||
1854 | 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1855 | 0 0 0 85 85 85 170 170 170 170 170 170 255 255 85 85 85 85 | ||
1856 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1857 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1858 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1859 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1860 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1861 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1862 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1863 | 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 | ||
1864 | 85 85 85 170 170 170 170 170 170 170 170 170 170 85 0 85 85 85 | ||
1865 | 0 0 0 85 85 85 0 0 0 85 85 85 170 170 170 170 85 0 | ||
1866 | 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1867 | 170 85 0 170 170 170 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1868 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1869 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1870 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1871 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1872 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1873 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1874 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1875 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1876 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
1877 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1878 | 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1879 | 0 0 0 85 85 85 170 85 0 170 170 170 170 170 170 85 85 85 | ||
1880 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1881 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1882 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1883 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1884 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1885 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1886 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1887 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1888 | 85 85 85 170 85 0 85 255 85 170 85 0 170 170 170 85 85 85 | ||
1889 | 85 85 85 0 0 0 0 0 0 85 85 85 170 85 0 85 255 85 | ||
1890 | 170 85 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1891 | 85 85 85 85 85 85 170 85 0 0 0 0 85 85 85 85 85 85 | ||
1892 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1893 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1894 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1895 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1896 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1897 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1898 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1899 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1900 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 | ||
1901 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1902 | 170 170 170 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1903 | 0 0 0 0 0 0 170 170 170 170 85 0 170 170 170 170 85 0 | ||
1904 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1905 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1906 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1907 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1908 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1909 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1910 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1911 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1912 | 85 85 85 85 85 85 255 85 85 170 170 170 85 255 85 170 85 0 | ||
1913 | 85 85 85 85 85 85 170 85 0 85 85 85 170 170 170 85 85 85 | ||
1914 | 170 170 170 170 85 0 85 85 85 85 85 85 85 85 85 85 85 85 | ||
1915 | 170 85 0 85 255 85 85 85 85 85 85 85 85 85 85 170 85 0 | ||
1916 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1917 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1918 | 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1919 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1920 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1921 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1922 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1923 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1924 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 170 170 170 | ||
1925 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1926 | 85 85 85 170 85 0 170 170 170 170 85 0 85 85 85 0 0 0 | ||
1927 | 85 85 85 85 85 85 85 255 85 170 170 170 170 170 170 170 85 0 | ||
1928 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1929 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1930 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1931 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1932 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1933 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1934 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
1935 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1936 | 85 85 85 85 85 85 85 255 85 255 85 85 170 170 170 170 170 170 | ||
1937 | 170 170 170 85 255 85 170 170 170 170 85 0 170 170 170 170 85 0 | ||
1938 | 170 170 170 85 85 85 85 255 85 170 85 0 170 170 170 170 85 0 | ||
1939 | 170 170 170 170 170 170 170 85 0 85 85 85 85 85 85 85 255 85 | ||
1940 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1941 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1942 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1943 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1944 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1945 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1946 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1947 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1948 | 0 0 0 170 170 170 170 170 170 0 0 0 0 0 0 85 85 85 | ||
1949 | 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1950 | 85 85 85 85 85 85 255 255 85 85 85 85 85 85 85 85 85 85 | ||
1951 | 85 255 85 255 85 85 170 170 170 170 85 0 170 170 170 85 255 85 | ||
1952 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1953 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1954 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1955 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1956 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1957 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1958 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1959 | 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 | ||
1960 | 85 85 85 85 85 85 170 85 0 170 170 170 170 170 170 255 255 85 | ||
1961 | 170 170 170 255 85 85 170 170 170 170 170 170 255 255 85 170 170 170 | ||
1962 | 85 255 85 170 170 170 255 85 85 170 170 170 170 170 170 170 170 170 | ||
1963 | 170 170 170 170 170 170 170 170 170 170 85 0 170 170 170 170 85 0 | ||
1964 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | ||
1965 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1966 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1967 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1968 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1969 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1970 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1971 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1972 | 0 0 0 85 85 85 170 170 170 85 85 85 0 0 0 85 85 85 | ||
1973 | 85 85 85 170 85 0 85 85 85 0 0 0 85 85 85 85 85 85 | ||
1974 | 85 85 85 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 | ||
1975 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 255 85 85 | ||
1976 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1977 | 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1978 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1979 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1980 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1981 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
1982 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
1983 | 85 85 85 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 | ||
1984 | 85 85 85 85 85 85 170 170 170 255 255 85 170 170 170 170 170 170 | ||
1985 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 170 85 0 | ||
1986 | 170 170 170 255 255 85 170 170 170 255 255 85 170 170 170 255 255 85 | ||
1987 | 170 170 170 255 255 85 170 170 170 170 170 170 85 255 85 170 85 0 | ||
1988 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1989 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
1990 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1991 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1992 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1993 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1994 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1995 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1996 | 0 0 0 0 0 0 170 170 170 85 85 85 85 85 85 0 0 0 | ||
1997 | 85 85 85 85 85 85 170 170 170 85 85 85 170 170 170 170 85 0 | ||
1998 | 170 170 170 85 255 85 170 170 170 170 85 0 170 170 170 170 170 170 | ||
1999 | 255 255 85 170 170 170 170 170 170 255 255 255 255 255 85 170 170 170 | ||
2000 | 255 255 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2001 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2002 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2003 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2004 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2005 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2006 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
2007 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2008 | 85 85 85 170 85 0 170 170 170 170 170 170 170 170 170 255 255 255 | ||
2009 | 170 170 170 255 255 255 255 255 85 170 170 170 255 255 85 170 170 170 | ||
2010 | 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
2011 | 170 170 170 170 170 170 170 170 170 255 85 85 170 170 170 170 170 170 | ||
2012 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2013 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2014 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2015 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2016 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2017 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2018 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2019 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2020 | 0 0 0 0 0 0 85 85 85 85 85 85 170 85 0 85 85 85 | ||
2021 | 85 85 85 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
2022 | 255 255 85 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2023 | 170 170 170 255 255 255 255 255 255 170 170 170 255 255 255 170 170 170 | ||
2024 | 170 170 170 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 | ||
2025 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2026 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2027 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2028 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2029 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2030 | 85 85 85 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
2031 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | ||
2032 | 85 85 85 85 255 85 170 170 170 255 255 85 255 255 255 255 255 255 | ||
2033 | 255 255 255 170 170 170 255 255 255 170 170 170 170 170 170 170 170 170 | ||
2034 | 170 170 170 170 170 170 255 255 85 170 170 170 255 255 85 255 255 255 | ||
2035 | 255 255 85 255 255 255 255 255 85 170 170 170 170 170 170 170 85 0 | ||
2036 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2037 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2038 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2039 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2040 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2041 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2042 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2043 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2044 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
2045 | 85 85 85 170 170 170 255 255 85 170 170 170 255 255 85 170 170 170 | ||
2046 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2047 | 255 255 255 255 255 255 255 255 85 255 255 255 255 255 255 170 170 170 | ||
2048 | 255 255 85 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 | ||
2049 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2050 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2051 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2052 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2053 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2054 | 85 85 85 170 170 170 170 170 170 0 0 0 0 0 0 0 0 0 | ||
2055 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2056 | 85 85 85 170 170 170 170 170 170 170 170 170 255 255 255 170 170 170 | ||
2057 | 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 255 255 85 | ||
2058 | 170 170 170 255 255 85 170 170 170 255 255 255 170 170 170 255 255 255 | ||
2059 | 255 255 255 255 255 255 170 170 170 255 255 85 170 170 170 255 255 85 | ||
2060 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2061 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2062 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2063 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2064 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2065 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2066 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2067 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2068 | 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 170 170 170 | ||
2069 | 255 255 85 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 | ||
2070 | 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2071 | 255 255 255 170 170 170 255 255 255 255 255 255 170 170 170 255 255 255 | ||
2072 | 170 170 170 170 170 170 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2073 | 85 85 85 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2074 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2075 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2076 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2077 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2078 | 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2079 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | ||
2080 | 85 85 85 170 85 0 255 255 255 170 170 170 255 255 255 255 255 255 | ||
2081 | 255 255 85 255 255 255 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2082 | 170 170 170 170 170 170 170 170 170 255 255 85 255 255 255 255 255 255 | ||
2083 | 170 170 170 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 | ||
2084 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2085 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2086 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2087 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2088 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2089 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2090 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2091 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2092 | 0 0 0 0 0 0 0 0 0 85 85 85 85 255 85 170 170 170 | ||
2093 | 170 170 170 255 255 85 170 170 170 255 255 255 170 170 170 255 255 255 | ||
2094 | 255 255 255 255 255 255 255 255 85 170 170 170 170 170 170 255 255 255 | ||
2095 | 170 170 170 255 255 255 255 255 255 170 170 170 255 255 255 255 255 85 | ||
2096 | 170 170 170 170 85 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
2097 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2098 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2099 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2102 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2103 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2104 | 85 85 85 170 170 170 170 170 170 255 255 85 170 170 170 255 255 255 | ||
2105 | 255 255 255 170 170 170 255 255 255 170 170 170 170 170 170 255 255 85 | ||
2106 | 170 170 170 255 255 85 170 170 170 255 255 255 170 170 170 255 255 255 | ||
2107 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 255 255 85 | ||
2108 | 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2109 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2110 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2111 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2112 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2113 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2114 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2115 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2116 | 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 170 170 170 | ||
2117 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
2118 | 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2119 | 255 255 85 255 255 255 170 170 170 255 255 255 170 170 170 170 170 170 | ||
2120 | 170 170 170 170 170 170 85 85 85 0 0 0 85 85 85 85 85 85 | ||
2121 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2123 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2126 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2127 | 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2128 | 85 85 85 85 85 85 170 170 170 170 170 170 255 255 255 170 170 170 | ||
2129 | 255 255 255 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 | ||
2130 | 255 85 85 170 170 170 170 170 170 170 170 170 255 255 255 255 255 255 | ||
2131 | 170 170 170 255 255 255 255 255 255 170 170 170 255 255 255 170 170 170 | ||
2132 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2133 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2134 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2135 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2136 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2137 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2138 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2139 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2140 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 170 170 170 | ||
2141 | 255 255 85 170 170 170 255 255 255 170 170 170 255 255 255 255 255 255 | ||
2142 | 255 255 85 255 255 255 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2143 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 255 255 85 | ||
2144 | 170 170 170 170 85 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2145 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2146 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2147 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2148 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2149 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2150 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 | ||
2151 | 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2152 | 0 0 0 85 85 85 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2153 | 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 255 85 85 | ||
2154 | 85 255 85 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2155 | 255 255 255 255 255 255 255 255 255 255 255 85 170 170 170 170 170 170 | ||
2156 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2159 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2160 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2161 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2162 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2163 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2164 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 85 | ||
2165 | 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 | ||
2166 | 255 255 255 170 170 170 170 170 170 170 170 170 170 170 170 255 85 85 | ||
2167 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
2168 | 170 170 170 85 85 85 85 85 85 0 0 0 85 85 85 0 0 0 | ||
2169 | 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2170 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2172 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2174 | 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 170 170 170 | ||
2175 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2176 | 0 0 0 85 85 85 170 85 0 170 170 170 170 170 170 170 170 170 | ||
2177 | 170 170 170 170 170 170 170 170 170 170 85 0 170 170 170 85 255 85 | ||
2178 | 255 85 85 170 170 170 255 255 85 170 170 170 170 170 170 255 255 255 | ||
2179 | 255 255 255 170 170 170 255 255 255 255 255 255 170 170 170 170 170 170 | ||
2180 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2181 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2182 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2183 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2184 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2185 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2186 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2187 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2188 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
2189 | 170 170 170 255 255 85 170 170 170 255 255 85 255 255 255 255 255 255 | ||
2190 | 170 170 170 170 170 170 255 255 85 170 170 170 255 85 85 85 255 85 | ||
2191 | 170 170 170 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2192 | 170 85 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2193 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2194 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2195 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2196 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2197 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2198 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2200 | 0 0 0 85 85 85 85 85 85 85 85 85 170 170 170 255 255 85 | ||
2201 | 170 170 170 170 85 0 170 170 170 170 170 170 170 85 0 85 85 85 | ||
2202 | 170 170 170 170 85 0 85 85 85 170 170 170 170 170 170 170 170 170 | ||
2203 | 170 170 170 255 255 255 255 255 255 255 255 85 170 170 170 170 170 170 | ||
2204 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2208 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2209 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2210 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2211 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2212 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 | ||
2213 | 170 170 170 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 | ||
2214 | 255 255 255 170 170 170 170 170 170 170 85 0 170 170 170 85 85 85 | ||
2215 | 170 170 170 170 170 170 170 85 0 170 170 170 170 85 0 85 85 85 | ||
2216 | 85 255 85 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2217 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2218 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2221 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2222 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2223 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
2224 | 85 85 85 0 0 0 85 85 85 170 85 0 85 85 85 170 170 170 | ||
2225 | 170 85 0 170 170 170 85 255 85 170 85 0 170 170 170 85 85 85 | ||
2226 | 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 255 255 255 | ||
2227 | 255 255 85 255 255 255 170 170 170 170 170 170 170 170 170 170 85 0 | ||
2228 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2231 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2234 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2235 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2236 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2237 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2238 | 170 170 170 255 255 85 170 170 170 170 170 170 85 255 85 170 170 170 | ||
2239 | 170 85 0 170 85 0 170 170 170 85 255 85 85 85 85 170 170 170 | ||
2240 | 170 85 0 85 85 85 0 0 0 85 85 85 0 0 0 0 0 0 | ||
2241 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
2242 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2243 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2245 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2246 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2247 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 85 85 85 | ||
2248 | 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 85 85 85 | ||
2249 | 170 170 170 170 85 0 170 170 170 85 85 85 170 170 170 170 85 0 | ||
2250 | 170 170 170 85 255 85 170 85 0 170 170 170 170 170 170 170 170 170 | ||
2251 | 255 255 255 170 170 170 255 255 255 255 255 255 170 170 170 85 85 85 | ||
2252 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2253 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2254 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2259 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2260 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2261 | 170 85 0 170 170 170 255 255 85 170 170 170 255 255 255 170 170 170 | ||
2262 | 170 170 170 170 170 170 170 170 170 170 85 0 170 170 170 170 85 0 | ||
2263 | 170 170 170 85 255 85 170 85 0 170 170 170 170 85 0 85 85 85 | ||
2264 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2265 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2266 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2267 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2268 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2271 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2272 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
2273 | 85 255 85 170 170 170 170 85 0 170 170 170 170 85 0 85 255 85 | ||
2274 | 170 170 170 170 85 0 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2275 | 170 170 170 255 255 255 170 170 170 170 170 170 170 170 170 0 0 0 | ||
2276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2278 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2279 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2280 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2281 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2282 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2283 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2284 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2285 | 85 85 85 170 85 0 85 85 85 170 170 170 255 255 85 170 170 170 | ||
2286 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 170 85 0 | ||
2287 | 170 170 170 85 85 85 170 170 170 170 85 0 170 170 170 85 85 85 | ||
2288 | 170 85 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2289 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2290 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2291 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2292 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2293 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2294 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2295 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2296 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 170 85 0 | ||
2297 | 85 85 85 255 85 85 85 255 85 170 85 0 170 170 170 170 170 170 | ||
2298 | 170 85 0 170 170 170 85 85 85 255 255 85 170 170 170 170 170 170 | ||
2299 | 255 255 255 170 170 170 255 255 255 255 255 85 85 85 85 0 0 0 | ||
2300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2301 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2303 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2305 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2306 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2307 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2308 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2309 | 0 0 0 85 85 85 170 170 170 170 85 0 170 170 170 170 170 170 | ||
2310 | 170 170 170 170 170 170 170 170 170 255 255 85 85 85 85 170 170 170 | ||
2311 | 85 255 85 255 85 85 170 170 170 85 255 85 255 85 85 85 255 85 | ||
2312 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2313 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2314 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2315 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2316 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2317 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2318 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2320 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 | ||
2321 | 85 85 85 85 255 85 255 85 85 170 170 170 85 255 85 170 85 0 | ||
2322 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 255 255 255 | ||
2323 | 170 170 170 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 | ||
2324 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2328 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2329 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2330 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2331 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2333 | 0 0 0 0 0 0 85 85 85 170 170 170 85 85 85 255 255 85 | ||
2334 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2335 | 85 85 85 255 255 85 170 170 170 170 85 0 170 170 170 85 85 85 | ||
2336 | 170 85 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2337 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2338 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2339 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2340 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2341 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2342 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2343 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2345 | 170 170 170 170 85 0 170 170 170 170 85 0 170 170 170 170 170 170 | ||
2346 | 170 85 0 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2347 | 255 255 85 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 | ||
2348 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2349 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2350 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2351 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2352 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2353 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2355 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2357 | 0 0 0 0 0 0 85 85 85 170 85 0 85 85 85 170 170 170 | ||
2358 | 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2359 | 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 170 85 0 | ||
2360 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2361 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2362 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2363 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2364 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2365 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2366 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2367 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2368 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2369 | 170 85 0 85 255 85 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2370 | 255 255 85 170 170 170 170 170 170 170 170 170 255 255 255 255 255 255 | ||
2371 | 255 255 255 170 170 170 255 255 85 85 85 85 0 0 0 0 0 0 | ||
2372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2376 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2377 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2378 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2379 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2380 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2381 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 170 85 0 | ||
2382 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2383 | 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
2384 | 170 170 170 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2385 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2386 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2387 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2388 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2389 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2390 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2391 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2392 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2393 | 85 85 85 170 85 0 170 170 170 170 85 0 170 170 170 170 170 170 | ||
2394 | 170 170 170 255 255 85 170 170 170 255 255 85 170 170 170 255 255 255 | ||
2395 | 170 170 170 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 | ||
2396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2399 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2403 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2404 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2405 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
2406 | 170 85 0 170 170 170 170 85 0 255 255 85 170 170 170 170 170 170 | ||
2407 | 170 170 170 170 170 170 255 255 85 170 170 170 255 255 85 170 170 170 | ||
2408 | 255 255 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2409 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2410 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2411 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2412 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2413 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2414 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2415 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2416 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2417 | 85 85 85 170 170 170 255 255 85 170 170 170 255 255 85 170 170 170 | ||
2418 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
2419 | 170 170 170 170 170 170 170 170 170 0 0 0 0 0 0 0 0 0 | ||
2420 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2421 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2423 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2427 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2428 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 170 0 85 85 85 | ||
2430 | 170 85 0 85 255 85 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2431 | 255 255 255 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 | ||
2432 | 170 170 170 255 255 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2433 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2434 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2435 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2436 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2437 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2438 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2439 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2440 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2441 | 170 85 0 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2442 | 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 255 255 255 | ||
2443 | 255 255 255 255 255 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2444 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2446 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2447 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2448 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2449 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2450 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2451 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2453 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2454 | 85 85 85 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2455 | 170 170 170 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 | ||
2456 | 170 170 170 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
2457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2459 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2460 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2461 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2462 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2463 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2464 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 255 85 | ||
2465 | 170 170 170 255 255 85 170 170 170 255 255 85 255 255 255 255 255 255 | ||
2466 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | ||
2467 | 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2468 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2469 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2474 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2475 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2476 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2477 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2478 | 85 85 85 85 85 85 85 85 85 170 85 0 170 170 170 170 170 170 | ||
2479 | 255 255 85 170 170 170 255 255 255 255 255 85 255 255 255 255 255 255 | ||
2480 | 170 170 170 255 255 85 170 170 170 85 85 85 0 0 0 0 0 0 | ||
2481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2483 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2486 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2487 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2488 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 | ||
2489 | 170 170 170 170 170 170 170 170 170 255 255 255 170 170 170 255 255 255 | ||
2490 | 170 170 170 255 255 255 170 170 170 255 255 255 255 255 85 255 255 255 | ||
2491 | 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2492 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2493 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2494 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2497 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2499 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2502 | 85 85 85 170 85 0 85 85 85 170 170 170 170 170 170 170 170 170 | ||
2503 | 170 170 170 255 255 255 170 170 170 255 255 255 255 255 255 170 170 170 | ||
2504 | 255 255 85 170 170 170 170 170 170 170 85 0 85 85 85 0 0 0 | ||
2505 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2506 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2508 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2511 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2512 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
2513 | 255 255 85 170 170 170 255 255 85 170 170 170 255 255 255 255 255 255 | ||
2514 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
2515 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2516 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2517 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2518 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2519 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2520 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2522 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2523 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2525 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2526 | 0 0 0 85 85 85 85 85 85 85 85 85 170 85 0 170 170 170 | ||
2527 | 255 255 85 170 170 170 255 255 85 255 255 255 170 170 170 255 255 255 | ||
2528 | 170 170 170 170 170 170 170 170 170 170 170 170 0 0 0 0 0 0 | ||
2529 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2530 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2531 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2532 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2533 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2534 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2535 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2536 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
2537 | 170 85 0 170 170 170 255 255 255 170 170 170 255 255 255 170 170 170 | ||
2538 | 255 255 255 255 255 255 170 170 170 255 255 255 255 255 85 170 170 170 | ||
2539 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2540 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2541 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2542 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2543 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2544 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2545 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2546 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2547 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2548 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2549 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2550 | 0 0 0 0 0 0 85 85 85 170 85 0 85 85 85 170 170 170 | ||
2551 | 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2552 | 255 255 85 170 170 170 170 85 0 85 255 85 85 85 85 0 0 0 | ||
2553 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2557 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2558 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2559 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2560 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 | ||
2561 | 170 170 170 170 170 170 255 255 85 170 170 170 255 255 255 255 255 255 | ||
2562 | 255 255 85 255 255 255 170 170 170 255 255 255 170 170 170 85 85 85 | ||
2563 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2564 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2565 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2566 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2567 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2568 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2569 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2571 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2572 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2573 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2574 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2575 | 170 85 0 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 | ||
2576 | 170 170 170 170 170 170 170 170 170 170 85 0 0 0 0 0 0 0 | ||
2577 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2578 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2581 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2584 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2585 | 255 255 85 170 170 170 170 170 170 170 170 170 255 255 85 170 170 170 | ||
2586 | 255 255 255 170 170 170 255 255 85 170 170 170 85 85 85 85 85 85 | ||
2587 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2588 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2589 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2590 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2591 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2592 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2593 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2595 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2598 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2599 | 85 85 85 170 85 0 170 170 170 170 170 170 170 170 170 170 170 170 | ||
2600 | 170 85 0 170 170 170 170 85 0 85 85 85 0 0 0 0 0 0 | ||
2601 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2602 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2603 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2604 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2605 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2606 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2608 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
2609 | 170 170 170 170 170 170 255 255 85 170 170 170 170 170 170 170 170 170 | ||
2610 | 170 170 170 255 255 255 170 170 170 170 170 170 85 85 85 0 0 0 | ||
2611 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2612 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2613 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2614 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2615 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2616 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2617 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2618 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2619 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2620 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2623 | 85 85 85 85 85 85 85 85 85 170 85 0 85 85 85 170 85 0 | ||
2624 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2627 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2628 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2629 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2630 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2631 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2632 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 85 0 | ||
2633 | 85 85 85 170 85 0 170 170 170 170 170 170 170 170 170 255 255 85 | ||
2634 | 170 170 170 170 170 170 170 85 0 85 85 85 0 0 0 0 0 0 | ||
2635 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2636 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2637 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2638 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2639 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2640 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2641 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2642 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2643 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2644 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2646 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2647 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | ||
2648 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2651 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2653 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2655 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2656 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
2657 | 85 85 85 85 255 85 170 85 0 170 170 170 170 85 0 170 170 170 | ||
2658 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
2659 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2660 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2661 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2662 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2663 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2664 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2665 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2666 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2667 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2668 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2669 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2670 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2671 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2672 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2674 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2675 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2678 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2679 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2681 | 0 0 0 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | ||
2682 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2683 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2684 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2685 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2686 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2687 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2688 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2689 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2691 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2692 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2693 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2696 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2697 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2698 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2699 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2700 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2702 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2703 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2705 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2706 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2707 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2708 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2709 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2710 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2711 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2712 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2713 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2714 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2715 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2716 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2717 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2718 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2719 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2721 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2724 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2725 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2726 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2727 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2728 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2729 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2730 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2731 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2732 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2733 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2734 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2735 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2736 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2737 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2738 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
2739 | 0 0 0 0 0 0 0 0 0 0 0 0 | ||
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index 84f63205c46d..0889d50c3288 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c | |||
@@ -1439,7 +1439,7 @@ static void pxafb_disable_controller(struct pxafb_info *fbi) | |||
1439 | static irqreturn_t pxafb_handle_irq(int irq, void *dev_id) | 1439 | static irqreturn_t pxafb_handle_irq(int irq, void *dev_id) |
1440 | { | 1440 | { |
1441 | struct pxafb_info *fbi = dev_id; | 1441 | struct pxafb_info *fbi = dev_id; |
1442 | unsigned int lccr0, lcsr, lcsr1; | 1442 | unsigned int lccr0, lcsr; |
1443 | 1443 | ||
1444 | lcsr = lcd_readl(fbi, LCSR); | 1444 | lcsr = lcd_readl(fbi, LCSR); |
1445 | if (lcsr & LCSR_LDD) { | 1445 | if (lcsr & LCSR_LDD) { |
@@ -1455,14 +1455,16 @@ static irqreturn_t pxafb_handle_irq(int irq, void *dev_id) | |||
1455 | lcd_writel(fbi, LCSR, lcsr); | 1455 | lcd_writel(fbi, LCSR, lcsr); |
1456 | 1456 | ||
1457 | #ifdef CONFIG_FB_PXA_OVERLAY | 1457 | #ifdef CONFIG_FB_PXA_OVERLAY |
1458 | lcsr1 = lcd_readl(fbi, LCSR1); | 1458 | { |
1459 | if (lcsr1 & LCSR1_BS(1)) | 1459 | unsigned int lcsr1 = lcd_readl(fbi, LCSR1); |
1460 | complete(&fbi->overlay[0].branch_done); | 1460 | if (lcsr1 & LCSR1_BS(1)) |
1461 | complete(&fbi->overlay[0].branch_done); | ||
1461 | 1462 | ||
1462 | if (lcsr1 & LCSR1_BS(2)) | 1463 | if (lcsr1 & LCSR1_BS(2)) |
1463 | complete(&fbi->overlay[1].branch_done); | 1464 | complete(&fbi->overlay[1].branch_done); |
1464 | 1465 | ||
1465 | lcd_writel(fbi, LCSR1, lcsr1); | 1466 | lcd_writel(fbi, LCSR1, lcsr1); |
1467 | } | ||
1466 | #endif | 1468 | #endif |
1467 | return IRQ_HANDLED; | 1469 | return IRQ_HANDLED; |
1468 | } | 1470 | } |
diff --git a/drivers/watchdog/orion5x_wdt.c b/drivers/watchdog/orion5x_wdt.c index 7529616739d2..2cde568e4fb0 100644 --- a/drivers/watchdog/orion5x_wdt.c +++ b/drivers/watchdog/orion5x_wdt.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/uaccess.h> | 22 | #include <linux/uaccess.h> |
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/spinlock.h> | 24 | #include <linux/spinlock.h> |
25 | #include <mach/bridge-regs.h> | ||
25 | #include <plat/orion5x_wdt.h> | 26 | #include <plat/orion5x_wdt.h> |
26 | 27 | ||
27 | /* | 28 | /* |
diff --git a/firmware/Makefile b/firmware/Makefile index 142c17ab9e57..25200d106ee8 100644 --- a/firmware/Makefile +++ b/firmware/Makefile | |||
@@ -46,6 +46,7 @@ fw-shipped-$(CONFIG_DVB_TTUSB_BUDGET) += ttusb-budget/dspbootcode.bin | |||
46 | fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \ | 46 | fw-shipped-$(CONFIG_E100) += e100/d101m_ucode.bin e100/d101s_ucode.bin \ |
47 | e100/d102e_ucode.bin | 47 | e100/d102e_ucode.bin |
48 | fw-shipped-$(CONFIG_MYRI_SBUS) += myricom/lanai.bin | 48 | fw-shipped-$(CONFIG_MYRI_SBUS) += myricom/lanai.bin |
49 | fw-shipped-$(CONFIG_PCMCIA_PCNET) += cis/LA-PCM.cis | ||
49 | fw-shipped-$(CONFIG_PCMCIA_SMC91C92) += ositech/Xilinx7OD.bin | 50 | fw-shipped-$(CONFIG_PCMCIA_SMC91C92) += ositech/Xilinx7OD.bin |
50 | fw-shipped-$(CONFIG_SCSI_ADVANSYS) += advansys/mcode.bin advansys/38C1600.bin \ | 51 | fw-shipped-$(CONFIG_SCSI_ADVANSYS) += advansys/mcode.bin advansys/38C1600.bin \ |
51 | advansys/3550.bin advansys/38C0800.bin | 52 | advansys/3550.bin advansys/38C0800.bin |
diff --git a/firmware/WHENCE b/firmware/WHENCE index 10f61c9e5a8a..4c52984a8319 100644 --- a/firmware/WHENCE +++ b/firmware/WHENCE | |||
@@ -576,6 +576,16 @@ Found in hex form in kernel source. | |||
576 | 576 | ||
577 | -------------------------------------------------------------------------- | 577 | -------------------------------------------------------------------------- |
578 | 578 | ||
579 | Driver: PCMCIA_PCNET - NE2000 compatible PCMCIA adapter | ||
580 | |||
581 | File: cis/LA-PCM.cis | ||
582 | |||
583 | Licence: GPL | ||
584 | |||
585 | Originally developed by the pcmcia-cs project | ||
586 | |||
587 | -------------------------------------------------------------------------- | ||
588 | |||
579 | Driver: PCMCIA_SMC91C92 - SMC 91Cxx PCMCIA | 589 | Driver: PCMCIA_SMC91C92 - SMC 91Cxx PCMCIA |
580 | 590 | ||
581 | File: ositech/Xilinx7OD.bin | 591 | File: ositech/Xilinx7OD.bin |
diff --git a/firmware/cis/LA-PCM.cis.ihex b/firmware/cis/LA-PCM.cis.ihex new file mode 100644 index 000000000000..a0ff0c7b393d --- /dev/null +++ b/firmware/cis/LA-PCM.cis.ihex | |||
@@ -0,0 +1,20 @@ | |||
1 | :100000000105D4F953E9FF17035338FF20040FC04B | ||
2 | :1000100002002102060315390401416C6C69656414 | ||
3 | :100020002054656C657369732C4B2E4B00457468C6 | ||
4 | :1000300065726E6574204C414E20436172640043CA | ||
5 | :10004000656E747265434F4D004C412D50434D0019 | ||
6 | :10005000FF1A0602100000020B1B08810108E06075 | ||
7 | :1000600000021F1B08820108E06020021F1B08839A | ||
8 | :100070000108E06040021F1B08840108E060600284 | ||
9 | :100080001F1B08850108E06080021F1B088601080D | ||
10 | :10009000E060A0021F1B08870108E060C0021F1B70 | ||
11 | :1000A00008880108E060E0021F1B08890108E06081 | ||
12 | :1000B00000031F1B088A0108E06020031F1B088B38 | ||
13 | :1000C0000108E06040031F1B088C0108E06060032A | ||
14 | :1000D0001F1B088D0108E06080031F1B088E0108AC | ||
15 | :1000E000E060A0031F1B088F0108E060C0031F1B16 | ||
16 | :0D00F00008900108E060E0031F1400FF000D | ||
17 | :00000001FF | ||
18 | # | ||
19 | # Replacement CIS for Allied Telesis LA-PCM | ||
20 | # | ||
diff --git a/fs/autofs/dirhash.c b/fs/autofs/dirhash.c index bf8c8af98004..4eb4d8dfb2f1 100644 --- a/fs/autofs/dirhash.c +++ b/fs/autofs/dirhash.c | |||
@@ -39,10 +39,12 @@ struct autofs_dir_ent *autofs_expire(struct super_block *sb, | |||
39 | { | 39 | { |
40 | struct autofs_dirhash *dh = &sbi->dirhash; | 40 | struct autofs_dirhash *dh = &sbi->dirhash; |
41 | struct autofs_dir_ent *ent; | 41 | struct autofs_dir_ent *ent; |
42 | struct dentry *dentry; | ||
43 | unsigned long timeout = sbi->exp_timeout; | 42 | unsigned long timeout = sbi->exp_timeout; |
44 | 43 | ||
45 | while (1) { | 44 | while (1) { |
45 | struct path path; | ||
46 | int umount_ok; | ||
47 | |||
46 | if ( list_empty(&dh->expiry_head) || sbi->catatonic ) | 48 | if ( list_empty(&dh->expiry_head) || sbi->catatonic ) |
47 | return NULL; /* No entries */ | 49 | return NULL; /* No entries */ |
48 | /* We keep the list sorted by last_usage and want old stuff */ | 50 | /* We keep the list sorted by last_usage and want old stuff */ |
@@ -57,17 +59,17 @@ struct autofs_dir_ent *autofs_expire(struct super_block *sb, | |||
57 | return ent; /* Symlinks are always expirable */ | 59 | return ent; /* Symlinks are always expirable */ |
58 | 60 | ||
59 | /* Get the dentry for the autofs subdirectory */ | 61 | /* Get the dentry for the autofs subdirectory */ |
60 | dentry = ent->dentry; | 62 | path.dentry = ent->dentry; |
61 | 63 | ||
62 | if ( !dentry ) { | 64 | if (!path.dentry) { |
63 | /* Should only happen in catatonic mode */ | 65 | /* Should only happen in catatonic mode */ |
64 | printk("autofs: dentry == NULL but inode range is directory, entry %s\n", ent->name); | 66 | printk("autofs: dentry == NULL but inode range is directory, entry %s\n", ent->name); |
65 | autofs_delete_usage(ent); | 67 | autofs_delete_usage(ent); |
66 | continue; | 68 | continue; |
67 | } | 69 | } |
68 | 70 | ||
69 | if ( !dentry->d_inode ) { | 71 | if (!path.dentry->d_inode) { |
70 | dput(dentry); | 72 | dput(path.dentry); |
71 | printk("autofs: negative dentry on expiry queue: %s\n", | 73 | printk("autofs: negative dentry on expiry queue: %s\n", |
72 | ent->name); | 74 | ent->name); |
73 | autofs_delete_usage(ent); | 75 | autofs_delete_usage(ent); |
@@ -76,29 +78,29 @@ struct autofs_dir_ent *autofs_expire(struct super_block *sb, | |||
76 | 78 | ||
77 | /* Make sure entry is mounted and unused; note that dentry will | 79 | /* Make sure entry is mounted and unused; note that dentry will |
78 | point to the mounted-on-top root. */ | 80 | point to the mounted-on-top root. */ |
79 | if (!S_ISDIR(dentry->d_inode->i_mode)||!d_mountpoint(dentry)) { | 81 | if (!S_ISDIR(path.dentry->d_inode->i_mode) || |
82 | !d_mountpoint(path.dentry)) { | ||
80 | DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name)); | 83 | DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name)); |
81 | continue; | 84 | continue; |
82 | } | 85 | } |
83 | mntget(mnt); | 86 | path.mnt = mnt; |
84 | dget(dentry); | 87 | path_get(&path); |
85 | if (!follow_down(&mnt, &dentry)) { | 88 | if (!follow_down(&path.mnt, &path.dentry)) { |
86 | dput(dentry); | 89 | path_put(&path); |
87 | mntput(mnt); | ||
88 | DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name)); | 90 | DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name)); |
89 | continue; | 91 | continue; |
90 | } | 92 | } |
91 | while (d_mountpoint(dentry) && follow_down(&mnt, &dentry)) | 93 | while (d_mountpoint(path.dentry) && |
94 | follow_down(&path.mnt, &path.dentry)) | ||
92 | ; | 95 | ; |
93 | dput(dentry); | 96 | umount_ok = may_umount(path.mnt); |
97 | path_put(&path); | ||
94 | 98 | ||
95 | if ( may_umount(mnt) ) { | 99 | if (umount_ok) { |
96 | mntput(mnt); | ||
97 | DPRINTK(("autofs: signaling expire on %s\n", ent->name)); | 100 | DPRINTK(("autofs: signaling expire on %s\n", ent->name)); |
98 | return ent; /* Expirable! */ | 101 | return ent; /* Expirable! */ |
99 | } | 102 | } |
100 | DPRINTK(("autofs: didn't expire due to may_umount: %s\n", ent->name)); | 103 | DPRINTK(("autofs: didn't expire due to may_umount: %s\n", ent->name)); |
101 | mntput(mnt); | ||
102 | } | 104 | } |
103 | return NULL; /* No expirable entries */ | 105 | return NULL; /* No expirable entries */ |
104 | } | 106 | } |
diff --git a/fs/autofs4/dev-ioctl.c b/fs/autofs4/dev-ioctl.c index 9e5ae8a4f5c8..84168c0dcc2d 100644 --- a/fs/autofs4/dev-ioctl.c +++ b/fs/autofs4/dev-ioctl.c | |||
@@ -54,11 +54,10 @@ static int check_name(const char *name) | |||
54 | * Check a string doesn't overrun the chunk of | 54 | * Check a string doesn't overrun the chunk of |
55 | * memory we copied from user land. | 55 | * memory we copied from user land. |
56 | */ | 56 | */ |
57 | static int invalid_str(char *str, void *end) | 57 | static int invalid_str(char *str, size_t size) |
58 | { | 58 | { |
59 | while ((void *) str <= end) | 59 | if (memchr(str, 0, size)) |
60 | if (!*str++) | 60 | return 0; |
61 | return 0; | ||
62 | return -EINVAL; | 61 | return -EINVAL; |
63 | } | 62 | } |
64 | 63 | ||
@@ -138,8 +137,7 @@ static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param) | |||
138 | } | 137 | } |
139 | 138 | ||
140 | if (param->size > sizeof(*param)) { | 139 | if (param->size > sizeof(*param)) { |
141 | err = invalid_str(param->path, | 140 | err = invalid_str(param->path, param->size - sizeof(*param)); |
142 | (void *) ((size_t) param + param->size)); | ||
143 | if (err) { | 141 | if (err) { |
144 | AUTOFS_WARN( | 142 | AUTOFS_WARN( |
145 | "path string terminator missing for cmd(0x%08x)", | 143 | "path string terminator missing for cmd(0x%08x)", |
@@ -488,7 +486,7 @@ static int autofs_dev_ioctl_requester(struct file *fp, | |||
488 | } | 486 | } |
489 | 487 | ||
490 | path = param->path; | 488 | path = param->path; |
491 | devid = sbi->sb->s_dev; | 489 | devid = new_encode_dev(sbi->sb->s_dev); |
492 | 490 | ||
493 | param->requester.uid = param->requester.gid = -1; | 491 | param->requester.uid = param->requester.gid = -1; |
494 | 492 | ||
@@ -175,14 +175,6 @@ struct bio_vec *bvec_alloc_bs(gfp_t gfp_mask, int nr, unsigned long *idx, | |||
175 | struct bio_vec *bvl; | 175 | struct bio_vec *bvl; |
176 | 176 | ||
177 | /* | 177 | /* |
178 | * If 'bs' is given, lookup the pool and do the mempool alloc. | ||
179 | * If not, this is a bio_kmalloc() allocation and just do a | ||
180 | * kzalloc() for the exact number of vecs right away. | ||
181 | */ | ||
182 | if (!bs) | ||
183 | bvl = kmalloc(nr * sizeof(struct bio_vec), gfp_mask); | ||
184 | |||
185 | /* | ||
186 | * see comment near bvec_array define! | 178 | * see comment near bvec_array define! |
187 | */ | 179 | */ |
188 | switch (nr) { | 180 | switch (nr) { |
@@ -260,21 +252,6 @@ void bio_free(struct bio *bio, struct bio_set *bs) | |||
260 | mempool_free(p, bs->bio_pool); | 252 | mempool_free(p, bs->bio_pool); |
261 | } | 253 | } |
262 | 254 | ||
263 | /* | ||
264 | * default destructor for a bio allocated with bio_alloc_bioset() | ||
265 | */ | ||
266 | static void bio_fs_destructor(struct bio *bio) | ||
267 | { | ||
268 | bio_free(bio, fs_bio_set); | ||
269 | } | ||
270 | |||
271 | static void bio_kmalloc_destructor(struct bio *bio) | ||
272 | { | ||
273 | if (bio_has_allocated_vec(bio)) | ||
274 | kfree(bio->bi_io_vec); | ||
275 | kfree(bio); | ||
276 | } | ||
277 | |||
278 | void bio_init(struct bio *bio) | 255 | void bio_init(struct bio *bio) |
279 | { | 256 | { |
280 | memset(bio, 0, sizeof(*bio)); | 257 | memset(bio, 0, sizeof(*bio)); |
@@ -301,21 +278,15 @@ void bio_init(struct bio *bio) | |||
301 | **/ | 278 | **/ |
302 | struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs) | 279 | struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs) |
303 | { | 280 | { |
281 | unsigned long idx = BIO_POOL_NONE; | ||
304 | struct bio_vec *bvl = NULL; | 282 | struct bio_vec *bvl = NULL; |
305 | struct bio *bio = NULL; | 283 | struct bio *bio; |
306 | unsigned long idx = 0; | 284 | void *p; |
307 | void *p = NULL; | 285 | |
308 | 286 | p = mempool_alloc(bs->bio_pool, gfp_mask); | |
309 | if (bs) { | 287 | if (unlikely(!p)) |
310 | p = mempool_alloc(bs->bio_pool, gfp_mask); | 288 | return NULL; |
311 | if (!p) | 289 | bio = p + bs->front_pad; |
312 | goto err; | ||
313 | bio = p + bs->front_pad; | ||
314 | } else { | ||
315 | bio = kmalloc(sizeof(*bio), gfp_mask); | ||
316 | if (!bio) | ||
317 | goto err; | ||
318 | } | ||
319 | 290 | ||
320 | bio_init(bio); | 291 | bio_init(bio); |
321 | 292 | ||
@@ -332,22 +303,50 @@ struct bio *bio_alloc_bioset(gfp_t gfp_mask, int nr_iovecs, struct bio_set *bs) | |||
332 | 303 | ||
333 | nr_iovecs = bvec_nr_vecs(idx); | 304 | nr_iovecs = bvec_nr_vecs(idx); |
334 | } | 305 | } |
306 | out_set: | ||
335 | bio->bi_flags |= idx << BIO_POOL_OFFSET; | 307 | bio->bi_flags |= idx << BIO_POOL_OFFSET; |
336 | bio->bi_max_vecs = nr_iovecs; | 308 | bio->bi_max_vecs = nr_iovecs; |
337 | out_set: | ||
338 | bio->bi_io_vec = bvl; | 309 | bio->bi_io_vec = bvl; |
339 | |||
340 | return bio; | 310 | return bio; |
341 | 311 | ||
342 | err_free: | 312 | err_free: |
343 | if (bs) | 313 | mempool_free(p, bs->bio_pool); |
344 | mempool_free(p, bs->bio_pool); | ||
345 | else | ||
346 | kfree(bio); | ||
347 | err: | ||
348 | return NULL; | 314 | return NULL; |
349 | } | 315 | } |
350 | 316 | ||
317 | static void bio_fs_destructor(struct bio *bio) | ||
318 | { | ||
319 | bio_free(bio, fs_bio_set); | ||
320 | } | ||
321 | |||
322 | /** | ||
323 | * bio_alloc - allocate a new bio, memory pool backed | ||
324 | * @gfp_mask: allocation mask to use | ||
325 | * @nr_iovecs: number of iovecs | ||
326 | * | ||
327 | * Allocate a new bio with @nr_iovecs bvecs. If @gfp_mask | ||
328 | * contains __GFP_WAIT, the allocation is guaranteed to succeed. | ||
329 | * | ||
330 | * RETURNS: | ||
331 | * Pointer to new bio on success, NULL on failure. | ||
332 | */ | ||
333 | struct bio *bio_alloc(gfp_t gfp_mask, int nr_iovecs) | ||
334 | { | ||
335 | struct bio *bio = bio_alloc_bioset(gfp_mask, nr_iovecs, fs_bio_set); | ||
336 | |||
337 | if (bio) | ||
338 | bio->bi_destructor = bio_fs_destructor; | ||
339 | |||
340 | return bio; | ||
341 | } | ||
342 | |||
343 | static void bio_kmalloc_destructor(struct bio *bio) | ||
344 | { | ||
345 | if (bio_integrity(bio)) | ||
346 | bio_integrity_free(bio); | ||
347 | kfree(bio); | ||
348 | } | ||
349 | |||
351 | /** | 350 | /** |
352 | * bio_alloc - allocate a bio for I/O | 351 | * bio_alloc - allocate a bio for I/O |
353 | * @gfp_mask: the GFP_ mask given to the slab allocator | 352 | * @gfp_mask: the GFP_ mask given to the slab allocator |
@@ -366,29 +365,20 @@ err: | |||
366 | * do so can cause livelocks under memory pressure. | 365 | * do so can cause livelocks under memory pressure. |
367 | * | 366 | * |
368 | **/ | 367 | **/ |
369 | struct bio *bio_alloc(gfp_t gfp_mask, int nr_iovecs) | ||
370 | { | ||
371 | struct bio *bio = bio_alloc_bioset(gfp_mask, nr_iovecs, fs_bio_set); | ||
372 | |||
373 | if (bio) | ||
374 | bio->bi_destructor = bio_fs_destructor; | ||
375 | |||
376 | return bio; | ||
377 | } | ||
378 | |||
379 | /* | ||
380 | * Like bio_alloc(), but doesn't use a mempool backing. This means that | ||
381 | * it CAN fail, but while bio_alloc() can only be used for allocations | ||
382 | * that have a short (finite) life span, bio_kmalloc() should be used | ||
383 | * for more permanent bio allocations (like allocating some bio's for | ||
384 | * initalization or setup purposes). | ||
385 | */ | ||
386 | struct bio *bio_kmalloc(gfp_t gfp_mask, int nr_iovecs) | 368 | struct bio *bio_kmalloc(gfp_t gfp_mask, int nr_iovecs) |
387 | { | 369 | { |
388 | struct bio *bio = bio_alloc_bioset(gfp_mask, nr_iovecs, NULL); | 370 | struct bio *bio; |
389 | 371 | ||
390 | if (bio) | 372 | bio = kmalloc(sizeof(struct bio) + nr_iovecs * sizeof(struct bio_vec), |
391 | bio->bi_destructor = bio_kmalloc_destructor; | 373 | gfp_mask); |
374 | if (unlikely(!bio)) | ||
375 | return NULL; | ||
376 | |||
377 | bio_init(bio); | ||
378 | bio->bi_flags |= BIO_POOL_NONE << BIO_POOL_OFFSET; | ||
379 | bio->bi_max_vecs = nr_iovecs; | ||
380 | bio->bi_io_vec = bio->bi_inline_vecs; | ||
381 | bio->bi_destructor = bio_kmalloc_destructor; | ||
392 | 382 | ||
393 | return bio; | 383 | return bio; |
394 | } | 384 | } |
@@ -827,12 +817,15 @@ struct bio *bio_copy_user_iov(struct request_queue *q, | |||
827 | len += iov[i].iov_len; | 817 | len += iov[i].iov_len; |
828 | } | 818 | } |
829 | 819 | ||
820 | if (offset) | ||
821 | nr_pages++; | ||
822 | |||
830 | bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask); | 823 | bmd = bio_alloc_map_data(nr_pages, iov_count, gfp_mask); |
831 | if (!bmd) | 824 | if (!bmd) |
832 | return ERR_PTR(-ENOMEM); | 825 | return ERR_PTR(-ENOMEM); |
833 | 826 | ||
834 | ret = -ENOMEM; | 827 | ret = -ENOMEM; |
835 | bio = bio_alloc(gfp_mask, nr_pages); | 828 | bio = bio_kmalloc(gfp_mask, nr_pages); |
836 | if (!bio) | 829 | if (!bio) |
837 | goto out_bmd; | 830 | goto out_bmd; |
838 | 831 | ||
@@ -956,7 +949,7 @@ static struct bio *__bio_map_user_iov(struct request_queue *q, | |||
956 | if (!nr_pages) | 949 | if (!nr_pages) |
957 | return ERR_PTR(-EINVAL); | 950 | return ERR_PTR(-EINVAL); |
958 | 951 | ||
959 | bio = bio_alloc(gfp_mask, nr_pages); | 952 | bio = bio_kmalloc(gfp_mask, nr_pages); |
960 | if (!bio) | 953 | if (!bio) |
961 | return ERR_PTR(-ENOMEM); | 954 | return ERR_PTR(-ENOMEM); |
962 | 955 | ||
@@ -1140,7 +1133,7 @@ static struct bio *__bio_map_kern(struct request_queue *q, void *data, | |||
1140 | int offset, i; | 1133 | int offset, i; |
1141 | struct bio *bio; | 1134 | struct bio *bio; |
1142 | 1135 | ||
1143 | bio = bio_alloc(gfp_mask, nr_pages); | 1136 | bio = bio_kmalloc(gfp_mask, nr_pages); |
1144 | if (!bio) | 1137 | if (!bio) |
1145 | return ERR_PTR(-ENOMEM); | 1138 | return ERR_PTR(-ENOMEM); |
1146 | 1139 | ||
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile index 9adf5e4f7e96..94212844a9bc 100644 --- a/fs/btrfs/Makefile +++ b/fs/btrfs/Makefile | |||
@@ -1,25 +1,10 @@ | |||
1 | ifneq ($(KERNELRELEASE),) | ||
2 | # kbuild part of makefile | ||
3 | 1 | ||
4 | obj-$(CONFIG_BTRFS_FS) := btrfs.o | 2 | obj-$(CONFIG_BTRFS_FS) := btrfs.o |
5 | btrfs-y := super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \ | 3 | |
4 | btrfs-y += super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \ | ||
6 | file-item.o inode-item.o inode-map.o disk-io.o \ | 5 | file-item.o inode-item.o inode-map.o disk-io.o \ |
7 | transaction.o inode.o file.o tree-defrag.o \ | 6 | transaction.o inode.o file.o tree-defrag.o \ |
8 | extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \ | 7 | extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \ |
9 | extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \ | 8 | extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \ |
10 | ref-cache.o export.o tree-log.o acl.o free-space-cache.o zlib.o \ | 9 | ref-cache.o export.o tree-log.o acl.o free-space-cache.o zlib.o \ |
11 | compression.o delayed-ref.o | 10 | compression.o delayed-ref.o |
12 | else | ||
13 | |||
14 | # Normal Makefile | ||
15 | |||
16 | KERNELDIR := /lib/modules/`uname -r`/build | ||
17 | all: | ||
18 | $(MAKE) -C $(KERNELDIR) M=`pwd` CONFIG_BTRFS_FS=m modules | ||
19 | |||
20 | modules_install: | ||
21 | $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install | ||
22 | clean: | ||
23 | $(MAKE) -C $(KERNELDIR) M=`pwd` clean | ||
24 | |||
25 | endif | ||
diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c index 7fdd184a528d..cbba000dccbe 100644 --- a/fs/btrfs/acl.c +++ b/fs/btrfs/acl.c | |||
@@ -60,15 +60,20 @@ static struct posix_acl *btrfs_get_acl(struct inode *inode, int type) | |||
60 | return ERR_PTR(-EINVAL); | 60 | return ERR_PTR(-EINVAL); |
61 | } | 61 | } |
62 | 62 | ||
63 | /* Handle the cached NULL acl case without locking */ | ||
64 | acl = ACCESS_ONCE(*p_acl); | ||
65 | if (!acl) | ||
66 | return acl; | ||
67 | |||
63 | spin_lock(&inode->i_lock); | 68 | spin_lock(&inode->i_lock); |
64 | if (*p_acl != BTRFS_ACL_NOT_CACHED) | 69 | acl = *p_acl; |
65 | acl = posix_acl_dup(*p_acl); | 70 | if (acl != BTRFS_ACL_NOT_CACHED) |
71 | acl = posix_acl_dup(acl); | ||
66 | spin_unlock(&inode->i_lock); | 72 | spin_unlock(&inode->i_lock); |
67 | 73 | ||
68 | if (acl) | 74 | if (acl != BTRFS_ACL_NOT_CACHED) |
69 | return acl; | 75 | return acl; |
70 | 76 | ||
71 | |||
72 | size = __btrfs_getxattr(inode, name, "", 0); | 77 | size = __btrfs_getxattr(inode, name, "", 0); |
73 | if (size > 0) { | 78 | if (size > 0) { |
74 | value = kzalloc(size, GFP_NOFS); | 79 | value = kzalloc(size, GFP_NOFS); |
@@ -80,9 +85,12 @@ static struct posix_acl *btrfs_get_acl(struct inode *inode, int type) | |||
80 | btrfs_update_cached_acl(inode, p_acl, acl); | 85 | btrfs_update_cached_acl(inode, p_acl, acl); |
81 | } | 86 | } |
82 | kfree(value); | 87 | kfree(value); |
83 | } else if (size == -ENOENT) { | 88 | } else if (size == -ENOENT || size == -ENODATA || size == 0) { |
89 | /* FIXME, who returns -ENOENT? I think nobody */ | ||
84 | acl = NULL; | 90 | acl = NULL; |
85 | btrfs_update_cached_acl(inode, p_acl, acl); | 91 | btrfs_update_cached_acl(inode, p_acl, acl); |
92 | } else { | ||
93 | acl = ERR_PTR(-EIO); | ||
86 | } | 94 | } |
87 | 95 | ||
88 | return acl; | 96 | return acl; |
diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c index 51bfdfc8fcda..502c3d61de62 100644 --- a/fs/btrfs/async-thread.c +++ b/fs/btrfs/async-thread.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #define WORK_QUEUED_BIT 0 | 25 | #define WORK_QUEUED_BIT 0 |
26 | #define WORK_DONE_BIT 1 | 26 | #define WORK_DONE_BIT 1 |
27 | #define WORK_ORDER_DONE_BIT 2 | 27 | #define WORK_ORDER_DONE_BIT 2 |
28 | #define WORK_HIGH_PRIO_BIT 3 | ||
28 | 29 | ||
29 | /* | 30 | /* |
30 | * container for the kthread task pointer and the list of pending work | 31 | * container for the kthread task pointer and the list of pending work |
@@ -36,6 +37,7 @@ struct btrfs_worker_thread { | |||
36 | 37 | ||
37 | /* list of struct btrfs_work that are waiting for service */ | 38 | /* list of struct btrfs_work that are waiting for service */ |
38 | struct list_head pending; | 39 | struct list_head pending; |
40 | struct list_head prio_pending; | ||
39 | 41 | ||
40 | /* list of worker threads from struct btrfs_workers */ | 42 | /* list of worker threads from struct btrfs_workers */ |
41 | struct list_head worker_list; | 43 | struct list_head worker_list; |
@@ -103,10 +105,16 @@ static noinline int run_ordered_completions(struct btrfs_workers *workers, | |||
103 | 105 | ||
104 | spin_lock_irqsave(&workers->lock, flags); | 106 | spin_lock_irqsave(&workers->lock, flags); |
105 | 107 | ||
106 | while (!list_empty(&workers->order_list)) { | 108 | while (1) { |
107 | work = list_entry(workers->order_list.next, | 109 | if (!list_empty(&workers->prio_order_list)) { |
108 | struct btrfs_work, order_list); | 110 | work = list_entry(workers->prio_order_list.next, |
109 | 111 | struct btrfs_work, order_list); | |
112 | } else if (!list_empty(&workers->order_list)) { | ||
113 | work = list_entry(workers->order_list.next, | ||
114 | struct btrfs_work, order_list); | ||
115 | } else { | ||
116 | break; | ||
117 | } | ||
110 | if (!test_bit(WORK_DONE_BIT, &work->flags)) | 118 | if (!test_bit(WORK_DONE_BIT, &work->flags)) |
111 | break; | 119 | break; |
112 | 120 | ||
@@ -143,8 +151,14 @@ static int worker_loop(void *arg) | |||
143 | do { | 151 | do { |
144 | spin_lock_irq(&worker->lock); | 152 | spin_lock_irq(&worker->lock); |
145 | again_locked: | 153 | again_locked: |
146 | while (!list_empty(&worker->pending)) { | 154 | while (1) { |
147 | cur = worker->pending.next; | 155 | if (!list_empty(&worker->prio_pending)) |
156 | cur = worker->prio_pending.next; | ||
157 | else if (!list_empty(&worker->pending)) | ||
158 | cur = worker->pending.next; | ||
159 | else | ||
160 | break; | ||
161 | |||
148 | work = list_entry(cur, struct btrfs_work, list); | 162 | work = list_entry(cur, struct btrfs_work, list); |
149 | list_del(&work->list); | 163 | list_del(&work->list); |
150 | clear_bit(WORK_QUEUED_BIT, &work->flags); | 164 | clear_bit(WORK_QUEUED_BIT, &work->flags); |
@@ -163,7 +177,6 @@ again_locked: | |||
163 | 177 | ||
164 | spin_lock_irq(&worker->lock); | 178 | spin_lock_irq(&worker->lock); |
165 | check_idle_worker(worker); | 179 | check_idle_worker(worker); |
166 | |||
167 | } | 180 | } |
168 | if (freezing(current)) { | 181 | if (freezing(current)) { |
169 | worker->working = 0; | 182 | worker->working = 0; |
@@ -178,7 +191,8 @@ again_locked: | |||
178 | * jump_in? | 191 | * jump_in? |
179 | */ | 192 | */ |
180 | smp_mb(); | 193 | smp_mb(); |
181 | if (!list_empty(&worker->pending)) | 194 | if (!list_empty(&worker->pending) || |
195 | !list_empty(&worker->prio_pending)) | ||
182 | continue; | 196 | continue; |
183 | 197 | ||
184 | /* | 198 | /* |
@@ -191,7 +205,8 @@ again_locked: | |||
191 | */ | 205 | */ |
192 | schedule_timeout(1); | 206 | schedule_timeout(1); |
193 | smp_mb(); | 207 | smp_mb(); |
194 | if (!list_empty(&worker->pending)) | 208 | if (!list_empty(&worker->pending) || |
209 | !list_empty(&worker->prio_pending)) | ||
195 | continue; | 210 | continue; |
196 | 211 | ||
197 | if (kthread_should_stop()) | 212 | if (kthread_should_stop()) |
@@ -200,7 +215,8 @@ again_locked: | |||
200 | /* still no more work?, sleep for real */ | 215 | /* still no more work?, sleep for real */ |
201 | spin_lock_irq(&worker->lock); | 216 | spin_lock_irq(&worker->lock); |
202 | set_current_state(TASK_INTERRUPTIBLE); | 217 | set_current_state(TASK_INTERRUPTIBLE); |
203 | if (!list_empty(&worker->pending)) | 218 | if (!list_empty(&worker->pending) || |
219 | !list_empty(&worker->prio_pending)) | ||
204 | goto again_locked; | 220 | goto again_locked; |
205 | 221 | ||
206 | /* | 222 | /* |
@@ -248,6 +264,7 @@ void btrfs_init_workers(struct btrfs_workers *workers, char *name, int max) | |||
248 | INIT_LIST_HEAD(&workers->worker_list); | 264 | INIT_LIST_HEAD(&workers->worker_list); |
249 | INIT_LIST_HEAD(&workers->idle_list); | 265 | INIT_LIST_HEAD(&workers->idle_list); |
250 | INIT_LIST_HEAD(&workers->order_list); | 266 | INIT_LIST_HEAD(&workers->order_list); |
267 | INIT_LIST_HEAD(&workers->prio_order_list); | ||
251 | spin_lock_init(&workers->lock); | 268 | spin_lock_init(&workers->lock); |
252 | workers->max_workers = max; | 269 | workers->max_workers = max; |
253 | workers->idle_thresh = 32; | 270 | workers->idle_thresh = 32; |
@@ -273,6 +290,7 @@ int btrfs_start_workers(struct btrfs_workers *workers, int num_workers) | |||
273 | } | 290 | } |
274 | 291 | ||
275 | INIT_LIST_HEAD(&worker->pending); | 292 | INIT_LIST_HEAD(&worker->pending); |
293 | INIT_LIST_HEAD(&worker->prio_pending); | ||
276 | INIT_LIST_HEAD(&worker->worker_list); | 294 | INIT_LIST_HEAD(&worker->worker_list); |
277 | spin_lock_init(&worker->lock); | 295 | spin_lock_init(&worker->lock); |
278 | atomic_set(&worker->num_pending, 0); | 296 | atomic_set(&worker->num_pending, 0); |
@@ -396,7 +414,10 @@ int btrfs_requeue_work(struct btrfs_work *work) | |||
396 | goto out; | 414 | goto out; |
397 | 415 | ||
398 | spin_lock_irqsave(&worker->lock, flags); | 416 | spin_lock_irqsave(&worker->lock, flags); |
399 | list_add_tail(&work->list, &worker->pending); | 417 | if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags)) |
418 | list_add_tail(&work->list, &worker->prio_pending); | ||
419 | else | ||
420 | list_add_tail(&work->list, &worker->pending); | ||
400 | atomic_inc(&worker->num_pending); | 421 | atomic_inc(&worker->num_pending); |
401 | 422 | ||
402 | /* by definition we're busy, take ourselves off the idle | 423 | /* by definition we're busy, take ourselves off the idle |
@@ -422,6 +443,11 @@ out: | |||
422 | return 0; | 443 | return 0; |
423 | } | 444 | } |
424 | 445 | ||
446 | void btrfs_set_work_high_prio(struct btrfs_work *work) | ||
447 | { | ||
448 | set_bit(WORK_HIGH_PRIO_BIT, &work->flags); | ||
449 | } | ||
450 | |||
425 | /* | 451 | /* |
426 | * places a struct btrfs_work into the pending queue of one of the kthreads | 452 | * places a struct btrfs_work into the pending queue of one of the kthreads |
427 | */ | 453 | */ |
@@ -438,7 +464,12 @@ int btrfs_queue_worker(struct btrfs_workers *workers, struct btrfs_work *work) | |||
438 | worker = find_worker(workers); | 464 | worker = find_worker(workers); |
439 | if (workers->ordered) { | 465 | if (workers->ordered) { |
440 | spin_lock_irqsave(&workers->lock, flags); | 466 | spin_lock_irqsave(&workers->lock, flags); |
441 | list_add_tail(&work->order_list, &workers->order_list); | 467 | if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags)) { |
468 | list_add_tail(&work->order_list, | ||
469 | &workers->prio_order_list); | ||
470 | } else { | ||
471 | list_add_tail(&work->order_list, &workers->order_list); | ||
472 | } | ||
442 | spin_unlock_irqrestore(&workers->lock, flags); | 473 | spin_unlock_irqrestore(&workers->lock, flags); |
443 | } else { | 474 | } else { |
444 | INIT_LIST_HEAD(&work->order_list); | 475 | INIT_LIST_HEAD(&work->order_list); |
@@ -446,7 +477,10 @@ int btrfs_queue_worker(struct btrfs_workers *workers, struct btrfs_work *work) | |||
446 | 477 | ||
447 | spin_lock_irqsave(&worker->lock, flags); | 478 | spin_lock_irqsave(&worker->lock, flags); |
448 | 479 | ||
449 | list_add_tail(&work->list, &worker->pending); | 480 | if (test_bit(WORK_HIGH_PRIO_BIT, &work->flags)) |
481 | list_add_tail(&work->list, &worker->prio_pending); | ||
482 | else | ||
483 | list_add_tail(&work->list, &worker->pending); | ||
450 | atomic_inc(&worker->num_pending); | 484 | atomic_inc(&worker->num_pending); |
451 | check_busy_worker(worker); | 485 | check_busy_worker(worker); |
452 | 486 | ||
diff --git a/fs/btrfs/async-thread.h b/fs/btrfs/async-thread.h index 31be4ed8b63e..1b511c109db6 100644 --- a/fs/btrfs/async-thread.h +++ b/fs/btrfs/async-thread.h | |||
@@ -85,6 +85,7 @@ struct btrfs_workers { | |||
85 | * of work items waiting for completion | 85 | * of work items waiting for completion |
86 | */ | 86 | */ |
87 | struct list_head order_list; | 87 | struct list_head order_list; |
88 | struct list_head prio_order_list; | ||
88 | 89 | ||
89 | /* lock for finding the next worker thread to queue on */ | 90 | /* lock for finding the next worker thread to queue on */ |
90 | spinlock_t lock; | 91 | spinlock_t lock; |
@@ -98,4 +99,5 @@ int btrfs_start_workers(struct btrfs_workers *workers, int num_workers); | |||
98 | int btrfs_stop_workers(struct btrfs_workers *workers); | 99 | int btrfs_stop_workers(struct btrfs_workers *workers); |
99 | void btrfs_init_workers(struct btrfs_workers *workers, char *name, int max); | 100 | void btrfs_init_workers(struct btrfs_workers *workers, char *name, int max); |
100 | int btrfs_requeue_work(struct btrfs_work *work); | 101 | int btrfs_requeue_work(struct btrfs_work *work); |
102 | void btrfs_set_work_high_prio(struct btrfs_work *work); | ||
101 | #endif | 103 | #endif |
diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c index e5b2533b691a..a99f1c2a710d 100644 --- a/fs/btrfs/ctree.c +++ b/fs/btrfs/ctree.c | |||
@@ -1325,12 +1325,12 @@ static noinline int reada_for_balance(struct btrfs_root *root, | |||
1325 | int ret = 0; | 1325 | int ret = 0; |
1326 | int blocksize; | 1326 | int blocksize; |
1327 | 1327 | ||
1328 | parent = path->nodes[level - 1]; | 1328 | parent = path->nodes[level + 1]; |
1329 | if (!parent) | 1329 | if (!parent) |
1330 | return 0; | 1330 | return 0; |
1331 | 1331 | ||
1332 | nritems = btrfs_header_nritems(parent); | 1332 | nritems = btrfs_header_nritems(parent); |
1333 | slot = path->slots[level]; | 1333 | slot = path->slots[level + 1]; |
1334 | blocksize = btrfs_level_size(root, level); | 1334 | blocksize = btrfs_level_size(root, level); |
1335 | 1335 | ||
1336 | if (slot > 0) { | 1336 | if (slot > 0) { |
@@ -1341,7 +1341,7 @@ static noinline int reada_for_balance(struct btrfs_root *root, | |||
1341 | block1 = 0; | 1341 | block1 = 0; |
1342 | free_extent_buffer(eb); | 1342 | free_extent_buffer(eb); |
1343 | } | 1343 | } |
1344 | if (slot < nritems) { | 1344 | if (slot + 1 < nritems) { |
1345 | block2 = btrfs_node_blockptr(parent, slot + 1); | 1345 | block2 = btrfs_node_blockptr(parent, slot + 1); |
1346 | gen = btrfs_node_ptr_generation(parent, slot + 1); | 1346 | gen = btrfs_node_ptr_generation(parent, slot + 1); |
1347 | eb = btrfs_find_tree_block(root, block2, blocksize); | 1347 | eb = btrfs_find_tree_block(root, block2, blocksize); |
@@ -1351,7 +1351,11 @@ static noinline int reada_for_balance(struct btrfs_root *root, | |||
1351 | } | 1351 | } |
1352 | if (block1 || block2) { | 1352 | if (block1 || block2) { |
1353 | ret = -EAGAIN; | 1353 | ret = -EAGAIN; |
1354 | |||
1355 | /* release the whole path */ | ||
1354 | btrfs_release_path(root, path); | 1356 | btrfs_release_path(root, path); |
1357 | |||
1358 | /* read the blocks */ | ||
1355 | if (block1) | 1359 | if (block1) |
1356 | readahead_tree_block(root, block1, blocksize, 0); | 1360 | readahead_tree_block(root, block1, blocksize, 0); |
1357 | if (block2) | 1361 | if (block2) |
@@ -1361,7 +1365,7 @@ static noinline int reada_for_balance(struct btrfs_root *root, | |||
1361 | eb = read_tree_block(root, block1, blocksize, 0); | 1365 | eb = read_tree_block(root, block1, blocksize, 0); |
1362 | free_extent_buffer(eb); | 1366 | free_extent_buffer(eb); |
1363 | } | 1367 | } |
1364 | if (block1) { | 1368 | if (block2) { |
1365 | eb = read_tree_block(root, block2, blocksize, 0); | 1369 | eb = read_tree_block(root, block2, blocksize, 0); |
1366 | free_extent_buffer(eb); | 1370 | free_extent_buffer(eb); |
1367 | } | 1371 | } |
@@ -1481,12 +1485,15 @@ read_block_for_search(struct btrfs_trans_handle *trans, | |||
1481 | * of the btree by dropping locks before | 1485 | * of the btree by dropping locks before |
1482 | * we read. | 1486 | * we read. |
1483 | */ | 1487 | */ |
1484 | btrfs_release_path(NULL, p); | 1488 | btrfs_unlock_up_safe(p, level + 1); |
1489 | btrfs_set_path_blocking(p); | ||
1490 | |||
1485 | if (tmp) | 1491 | if (tmp) |
1486 | free_extent_buffer(tmp); | 1492 | free_extent_buffer(tmp); |
1487 | if (p->reada) | 1493 | if (p->reada) |
1488 | reada_for_search(root, p, level, slot, key->objectid); | 1494 | reada_for_search(root, p, level, slot, key->objectid); |
1489 | 1495 | ||
1496 | btrfs_release_path(NULL, p); | ||
1490 | tmp = read_tree_block(root, blocknr, blocksize, gen); | 1497 | tmp = read_tree_block(root, blocknr, blocksize, gen); |
1491 | if (tmp) | 1498 | if (tmp) |
1492 | free_extent_buffer(tmp); | 1499 | free_extent_buffer(tmp); |
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index ad96495dedc5..4414a5d9983a 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -881,6 +881,9 @@ struct btrfs_fs_info { | |||
881 | u64 metadata_alloc_profile; | 881 | u64 metadata_alloc_profile; |
882 | u64 system_alloc_profile; | 882 | u64 system_alloc_profile; |
883 | 883 | ||
884 | unsigned data_chunk_allocations; | ||
885 | unsigned metadata_ratio; | ||
886 | |||
884 | void *bdev_holder; | 887 | void *bdev_holder; |
885 | }; | 888 | }; |
886 | 889 | ||
@@ -2174,7 +2177,8 @@ int btrfs_check_file(struct btrfs_root *root, struct inode *inode); | |||
2174 | extern struct file_operations btrfs_file_operations; | 2177 | extern struct file_operations btrfs_file_operations; |
2175 | int btrfs_drop_extents(struct btrfs_trans_handle *trans, | 2178 | int btrfs_drop_extents(struct btrfs_trans_handle *trans, |
2176 | struct btrfs_root *root, struct inode *inode, | 2179 | struct btrfs_root *root, struct inode *inode, |
2177 | u64 start, u64 end, u64 inline_limit, u64 *hint_block); | 2180 | u64 start, u64 end, u64 locked_end, |
2181 | u64 inline_limit, u64 *hint_block); | ||
2178 | int btrfs_mark_extent_written(struct btrfs_trans_handle *trans, | 2182 | int btrfs_mark_extent_written(struct btrfs_trans_handle *trans, |
2179 | struct btrfs_root *root, | 2183 | struct btrfs_root *root, |
2180 | struct inode *inode, u64 start, u64 end); | 2184 | struct inode *inode, u64 start, u64 end); |
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 92caa8035f36..0ff16d3331da 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c | |||
@@ -232,10 +232,14 @@ static int csum_tree_block(struct btrfs_root *root, struct extent_buffer *buf, | |||
232 | memcpy(&found, result, csum_size); | 232 | memcpy(&found, result, csum_size); |
233 | 233 | ||
234 | read_extent_buffer(buf, &val, 0, csum_size); | 234 | read_extent_buffer(buf, &val, 0, csum_size); |
235 | printk(KERN_INFO "btrfs: %s checksum verify failed " | 235 | if (printk_ratelimit()) { |
236 | "on %llu wanted %X found %X level %d\n", | 236 | printk(KERN_INFO "btrfs: %s checksum verify " |
237 | root->fs_info->sb->s_id, | 237 | "failed on %llu wanted %X found %X " |
238 | buf->start, val, found, btrfs_header_level(buf)); | 238 | "level %d\n", |
239 | root->fs_info->sb->s_id, | ||
240 | (unsigned long long)buf->start, val, found, | ||
241 | btrfs_header_level(buf)); | ||
242 | } | ||
239 | if (result != (char *)&inline_result) | 243 | if (result != (char *)&inline_result) |
240 | kfree(result); | 244 | kfree(result); |
241 | return 1; | 245 | return 1; |
@@ -268,10 +272,13 @@ static int verify_parent_transid(struct extent_io_tree *io_tree, | |||
268 | ret = 0; | 272 | ret = 0; |
269 | goto out; | 273 | goto out; |
270 | } | 274 | } |
271 | printk("parent transid verify failed on %llu wanted %llu found %llu\n", | 275 | if (printk_ratelimit()) { |
272 | (unsigned long long)eb->start, | 276 | printk("parent transid verify failed on %llu wanted %llu " |
273 | (unsigned long long)parent_transid, | 277 | "found %llu\n", |
274 | (unsigned long long)btrfs_header_generation(eb)); | 278 | (unsigned long long)eb->start, |
279 | (unsigned long long)parent_transid, | ||
280 | (unsigned long long)btrfs_header_generation(eb)); | ||
281 | } | ||
275 | ret = 1; | 282 | ret = 1; |
276 | clear_extent_buffer_uptodate(io_tree, eb); | 283 | clear_extent_buffer_uptodate(io_tree, eb); |
277 | out: | 284 | out: |
@@ -415,9 +422,12 @@ static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end, | |||
415 | 422 | ||
416 | found_start = btrfs_header_bytenr(eb); | 423 | found_start = btrfs_header_bytenr(eb); |
417 | if (found_start != start) { | 424 | if (found_start != start) { |
418 | printk(KERN_INFO "btrfs bad tree block start %llu %llu\n", | 425 | if (printk_ratelimit()) { |
419 | (unsigned long long)found_start, | 426 | printk(KERN_INFO "btrfs bad tree block start " |
420 | (unsigned long long)eb->start); | 427 | "%llu %llu\n", |
428 | (unsigned long long)found_start, | ||
429 | (unsigned long long)eb->start); | ||
430 | } | ||
421 | ret = -EIO; | 431 | ret = -EIO; |
422 | goto err; | 432 | goto err; |
423 | } | 433 | } |
@@ -429,8 +439,10 @@ static int btree_readpage_end_io_hook(struct page *page, u64 start, u64 end, | |||
429 | goto err; | 439 | goto err; |
430 | } | 440 | } |
431 | if (check_tree_block_fsid(root, eb)) { | 441 | if (check_tree_block_fsid(root, eb)) { |
432 | printk(KERN_INFO "btrfs bad fsid on block %llu\n", | 442 | if (printk_ratelimit()) { |
433 | (unsigned long long)eb->start); | 443 | printk(KERN_INFO "btrfs bad fsid on block %llu\n", |
444 | (unsigned long long)eb->start); | ||
445 | } | ||
434 | ret = -EIO; | 446 | ret = -EIO; |
435 | goto err; | 447 | goto err; |
436 | } | 448 | } |
@@ -579,19 +591,12 @@ int btrfs_wq_submit_bio(struct btrfs_fs_info *fs_info, struct inode *inode, | |||
579 | async->bio_flags = bio_flags; | 591 | async->bio_flags = bio_flags; |
580 | 592 | ||
581 | atomic_inc(&fs_info->nr_async_submits); | 593 | atomic_inc(&fs_info->nr_async_submits); |
594 | |||
595 | if (rw & (1 << BIO_RW_SYNCIO)) | ||
596 | btrfs_set_work_high_prio(&async->work); | ||
597 | |||
582 | btrfs_queue_worker(&fs_info->workers, &async->work); | 598 | btrfs_queue_worker(&fs_info->workers, &async->work); |
583 | #if 0 | ||
584 | int limit = btrfs_async_submit_limit(fs_info); | ||
585 | if (atomic_read(&fs_info->nr_async_submits) > limit) { | ||
586 | wait_event_timeout(fs_info->async_submit_wait, | ||
587 | (atomic_read(&fs_info->nr_async_submits) < limit), | ||
588 | HZ/10); | ||
589 | 599 | ||
590 | wait_event_timeout(fs_info->async_submit_wait, | ||
591 | (atomic_read(&fs_info->nr_async_bios) < limit), | ||
592 | HZ/10); | ||
593 | } | ||
594 | #endif | ||
595 | while (atomic_read(&fs_info->async_submit_draining) && | 600 | while (atomic_read(&fs_info->async_submit_draining) && |
596 | atomic_read(&fs_info->nr_async_submits)) { | 601 | atomic_read(&fs_info->nr_async_submits)) { |
597 | wait_event(fs_info->async_submit_wait, | 602 | wait_event(fs_info->async_submit_wait, |
@@ -656,6 +661,7 @@ static int btree_submit_bio_hook(struct inode *inode, int rw, struct bio *bio, | |||
656 | return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, | 661 | return btrfs_map_bio(BTRFS_I(inode)->root, rw, bio, |
657 | mirror_num, 0); | 662 | mirror_num, 0); |
658 | } | 663 | } |
664 | |||
659 | /* | 665 | /* |
660 | * kthread helpers are used to submit writes so that checksumming | 666 | * kthread helpers are used to submit writes so that checksumming |
661 | * can happen in parallel across all CPUs | 667 | * can happen in parallel across all CPUs |
@@ -765,27 +771,6 @@ static void btree_invalidatepage(struct page *page, unsigned long offset) | |||
765 | } | 771 | } |
766 | } | 772 | } |
767 | 773 | ||
768 | #if 0 | ||
769 | static int btree_writepage(struct page *page, struct writeback_control *wbc) | ||
770 | { | ||
771 | struct buffer_head *bh; | ||
772 | struct btrfs_root *root = BTRFS_I(page->mapping->host)->root; | ||
773 | struct buffer_head *head; | ||
774 | if (!page_has_buffers(page)) { | ||
775 | create_empty_buffers(page, root->fs_info->sb->s_blocksize, | ||
776 | (1 << BH_Dirty)|(1 << BH_Uptodate)); | ||
777 | } | ||
778 | head = page_buffers(page); | ||
779 | bh = head; | ||
780 | do { | ||
781 | if (buffer_dirty(bh)) | ||
782 | csum_tree_block(root, bh, 0); | ||
783 | bh = bh->b_this_page; | ||
784 | } while (bh != head); | ||
785 | return block_write_full_page(page, btree_get_block, wbc); | ||
786 | } | ||
787 | #endif | ||
788 | |||
789 | static struct address_space_operations btree_aops = { | 774 | static struct address_space_operations btree_aops = { |
790 | .readpage = btree_readpage, | 775 | .readpage = btree_readpage, |
791 | .writepage = btree_writepage, | 776 | .writepage = btree_writepage, |
@@ -1273,11 +1258,7 @@ static int btrfs_congested_fn(void *congested_data, int bdi_bits) | |||
1273 | int ret = 0; | 1258 | int ret = 0; |
1274 | struct btrfs_device *device; | 1259 | struct btrfs_device *device; |
1275 | struct backing_dev_info *bdi; | 1260 | struct backing_dev_info *bdi; |
1276 | #if 0 | 1261 | |
1277 | if ((bdi_bits & (1 << BDI_write_congested)) && | ||
1278 | btrfs_congested_async(info, 0)) | ||
1279 | return 1; | ||
1280 | #endif | ||
1281 | list_for_each_entry(device, &info->fs_devices->devices, dev_list) { | 1262 | list_for_each_entry(device, &info->fs_devices->devices, dev_list) { |
1282 | if (!device->bdev) | 1263 | if (!device->bdev) |
1283 | continue; | 1264 | continue; |
@@ -1599,6 +1580,7 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
1599 | fs_info->btree_inode = new_inode(sb); | 1580 | fs_info->btree_inode = new_inode(sb); |
1600 | fs_info->btree_inode->i_ino = 1; | 1581 | fs_info->btree_inode->i_ino = 1; |
1601 | fs_info->btree_inode->i_nlink = 1; | 1582 | fs_info->btree_inode->i_nlink = 1; |
1583 | fs_info->metadata_ratio = 8; | ||
1602 | 1584 | ||
1603 | fs_info->thread_pool_size = min_t(unsigned long, | 1585 | fs_info->thread_pool_size = min_t(unsigned long, |
1604 | num_online_cpus() + 2, 8); | 1586 | num_online_cpus() + 2, 8); |
@@ -1689,7 +1671,7 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
1689 | if (features) { | 1671 | if (features) { |
1690 | printk(KERN_ERR "BTRFS: couldn't mount because of " | 1672 | printk(KERN_ERR "BTRFS: couldn't mount because of " |
1691 | "unsupported optional features (%Lx).\n", | 1673 | "unsupported optional features (%Lx).\n", |
1692 | features); | 1674 | (unsigned long long)features); |
1693 | err = -EINVAL; | 1675 | err = -EINVAL; |
1694 | goto fail_iput; | 1676 | goto fail_iput; |
1695 | } | 1677 | } |
@@ -1699,7 +1681,7 @@ struct btrfs_root *open_ctree(struct super_block *sb, | |||
1699 | if (!(sb->s_flags & MS_RDONLY) && features) { | 1681 | if (!(sb->s_flags & MS_RDONLY) && features) { |
1700 | printk(KERN_ERR "BTRFS: couldn't mount RDWR because of " | 1682 | printk(KERN_ERR "BTRFS: couldn't mount RDWR because of " |
1701 | "unsupported option features (%Lx).\n", | 1683 | "unsupported option features (%Lx).\n", |
1702 | features); | 1684 | (unsigned long long)features); |
1703 | err = -EINVAL; | 1685 | err = -EINVAL; |
1704 | goto fail_iput; | 1686 | goto fail_iput; |
1705 | } | 1687 | } |
@@ -2095,10 +2077,10 @@ static int write_dev_supers(struct btrfs_device *device, | |||
2095 | device->barriers = 0; | 2077 | device->barriers = 0; |
2096 | get_bh(bh); | 2078 | get_bh(bh); |
2097 | lock_buffer(bh); | 2079 | lock_buffer(bh); |
2098 | ret = submit_bh(WRITE, bh); | 2080 | ret = submit_bh(WRITE_SYNC, bh); |
2099 | } | 2081 | } |
2100 | } else { | 2082 | } else { |
2101 | ret = submit_bh(WRITE, bh); | 2083 | ret = submit_bh(WRITE_SYNC, bh); |
2102 | } | 2084 | } |
2103 | 2085 | ||
2104 | if (!ret && wait) { | 2086 | if (!ret && wait) { |
@@ -2291,7 +2273,7 @@ int close_ctree(struct btrfs_root *root) | |||
2291 | 2273 | ||
2292 | if (fs_info->delalloc_bytes) { | 2274 | if (fs_info->delalloc_bytes) { |
2293 | printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n", | 2275 | printk(KERN_INFO "btrfs: at unmount delalloc count %llu\n", |
2294 | fs_info->delalloc_bytes); | 2276 | (unsigned long long)fs_info->delalloc_bytes); |
2295 | } | 2277 | } |
2296 | if (fs_info->total_ref_cache_size) { | 2278 | if (fs_info->total_ref_cache_size) { |
2297 | printk(KERN_INFO "btrfs: at umount reference cache size %llu\n", | 2279 | printk(KERN_INFO "btrfs: at umount reference cache size %llu\n", |
@@ -2328,16 +2310,6 @@ int close_ctree(struct btrfs_root *root) | |||
2328 | btrfs_stop_workers(&fs_info->endio_write_workers); | 2310 | btrfs_stop_workers(&fs_info->endio_write_workers); |
2329 | btrfs_stop_workers(&fs_info->submit_workers); | 2311 | btrfs_stop_workers(&fs_info->submit_workers); |
2330 | 2312 | ||
2331 | #if 0 | ||
2332 | while (!list_empty(&fs_info->hashers)) { | ||
2333 | struct btrfs_hasher *hasher; | ||
2334 | hasher = list_entry(fs_info->hashers.next, struct btrfs_hasher, | ||
2335 | hashers); | ||
2336 | list_del(&hasher->hashers); | ||
2337 | crypto_free_hash(&fs_info->hash_tfm); | ||
2338 | kfree(hasher); | ||
2339 | } | ||
2340 | #endif | ||
2341 | btrfs_close_devices(fs_info->fs_devices); | 2313 | btrfs_close_devices(fs_info->fs_devices); |
2342 | btrfs_mapping_tree_free(&fs_info->mapping_tree); | 2314 | btrfs_mapping_tree_free(&fs_info->mapping_tree); |
2343 | 2315 | ||
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index 178df4c67de4..e4966444811b 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
@@ -1844,10 +1844,14 @@ again: | |||
1844 | printk(KERN_ERR "no space left, need %llu, %llu delalloc bytes" | 1844 | printk(KERN_ERR "no space left, need %llu, %llu delalloc bytes" |
1845 | ", %llu bytes_used, %llu bytes_reserved, " | 1845 | ", %llu bytes_used, %llu bytes_reserved, " |
1846 | "%llu bytes_pinned, %llu bytes_readonly, %llu may use" | 1846 | "%llu bytes_pinned, %llu bytes_readonly, %llu may use" |
1847 | "%llu total\n", bytes, data_sinfo->bytes_delalloc, | 1847 | "%llu total\n", (unsigned long long)bytes, |
1848 | data_sinfo->bytes_used, data_sinfo->bytes_reserved, | 1848 | (unsigned long long)data_sinfo->bytes_delalloc, |
1849 | data_sinfo->bytes_pinned, data_sinfo->bytes_readonly, | 1849 | (unsigned long long)data_sinfo->bytes_used, |
1850 | data_sinfo->bytes_may_use, data_sinfo->total_bytes); | 1850 | (unsigned long long)data_sinfo->bytes_reserved, |
1851 | (unsigned long long)data_sinfo->bytes_pinned, | ||
1852 | (unsigned long long)data_sinfo->bytes_readonly, | ||
1853 | (unsigned long long)data_sinfo->bytes_may_use, | ||
1854 | (unsigned long long)data_sinfo->total_bytes); | ||
1851 | return -ENOSPC; | 1855 | return -ENOSPC; |
1852 | } | 1856 | } |
1853 | data_sinfo->bytes_may_use += bytes; | 1857 | data_sinfo->bytes_may_use += bytes; |
@@ -1918,15 +1922,29 @@ void btrfs_delalloc_free_space(struct btrfs_root *root, struct inode *inode, | |||
1918 | spin_unlock(&info->lock); | 1922 | spin_unlock(&info->lock); |
1919 | } | 1923 | } |
1920 | 1924 | ||
1925 | static void force_metadata_allocation(struct btrfs_fs_info *info) | ||
1926 | { | ||
1927 | struct list_head *head = &info->space_info; | ||
1928 | struct btrfs_space_info *found; | ||
1929 | |||
1930 | rcu_read_lock(); | ||
1931 | list_for_each_entry_rcu(found, head, list) { | ||
1932 | if (found->flags & BTRFS_BLOCK_GROUP_METADATA) | ||
1933 | found->force_alloc = 1; | ||
1934 | } | ||
1935 | rcu_read_unlock(); | ||
1936 | } | ||
1937 | |||
1921 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, | 1938 | static int do_chunk_alloc(struct btrfs_trans_handle *trans, |
1922 | struct btrfs_root *extent_root, u64 alloc_bytes, | 1939 | struct btrfs_root *extent_root, u64 alloc_bytes, |
1923 | u64 flags, int force) | 1940 | u64 flags, int force) |
1924 | { | 1941 | { |
1925 | struct btrfs_space_info *space_info; | 1942 | struct btrfs_space_info *space_info; |
1943 | struct btrfs_fs_info *fs_info = extent_root->fs_info; | ||
1926 | u64 thresh; | 1944 | u64 thresh; |
1927 | int ret = 0; | 1945 | int ret = 0; |
1928 | 1946 | ||
1929 | mutex_lock(&extent_root->fs_info->chunk_mutex); | 1947 | mutex_lock(&fs_info->chunk_mutex); |
1930 | 1948 | ||
1931 | flags = btrfs_reduce_alloc_profile(extent_root, flags); | 1949 | flags = btrfs_reduce_alloc_profile(extent_root, flags); |
1932 | 1950 | ||
@@ -1958,6 +1976,18 @@ static int do_chunk_alloc(struct btrfs_trans_handle *trans, | |||
1958 | } | 1976 | } |
1959 | spin_unlock(&space_info->lock); | 1977 | spin_unlock(&space_info->lock); |
1960 | 1978 | ||
1979 | /* | ||
1980 | * if we're doing a data chunk, go ahead and make sure that | ||
1981 | * we keep a reasonable number of metadata chunks allocated in the | ||
1982 | * FS as well. | ||
1983 | */ | ||
1984 | if (flags & BTRFS_BLOCK_GROUP_DATA) { | ||
1985 | fs_info->data_chunk_allocations++; | ||
1986 | if (!(fs_info->data_chunk_allocations % | ||
1987 | fs_info->metadata_ratio)) | ||
1988 | force_metadata_allocation(fs_info); | ||
1989 | } | ||
1990 | |||
1961 | ret = btrfs_alloc_chunk(trans, extent_root, flags); | 1991 | ret = btrfs_alloc_chunk(trans, extent_root, flags); |
1962 | if (ret) | 1992 | if (ret) |
1963 | space_info->full = 1; | 1993 | space_info->full = 1; |
@@ -2798,9 +2828,12 @@ static void dump_space_info(struct btrfs_space_info *info, u64 bytes) | |||
2798 | info->bytes_pinned - info->bytes_reserved), | 2828 | info->bytes_pinned - info->bytes_reserved), |
2799 | (info->full) ? "" : "not "); | 2829 | (info->full) ? "" : "not "); |
2800 | printk(KERN_INFO "space_info total=%llu, pinned=%llu, delalloc=%llu," | 2830 | printk(KERN_INFO "space_info total=%llu, pinned=%llu, delalloc=%llu," |
2801 | " may_use=%llu, used=%llu\n", info->total_bytes, | 2831 | " may_use=%llu, used=%llu\n", |
2802 | info->bytes_pinned, info->bytes_delalloc, info->bytes_may_use, | 2832 | (unsigned long long)info->total_bytes, |
2803 | info->bytes_used); | 2833 | (unsigned long long)info->bytes_pinned, |
2834 | (unsigned long long)info->bytes_delalloc, | ||
2835 | (unsigned long long)info->bytes_may_use, | ||
2836 | (unsigned long long)info->bytes_used); | ||
2804 | 2837 | ||
2805 | down_read(&info->groups_sem); | 2838 | down_read(&info->groups_sem); |
2806 | list_for_each_entry(cache, &info->block_groups, list) { | 2839 | list_for_each_entry(cache, &info->block_groups, list) { |
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index eb2bee8b7fbf..fe9eb990e443 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c | |||
@@ -17,12 +17,6 @@ | |||
17 | #include "ctree.h" | 17 | #include "ctree.h" |
18 | #include "btrfs_inode.h" | 18 | #include "btrfs_inode.h" |
19 | 19 | ||
20 | /* temporary define until extent_map moves out of btrfs */ | ||
21 | struct kmem_cache *btrfs_cache_create(const char *name, size_t size, | ||
22 | unsigned long extra_flags, | ||
23 | void (*ctor)(void *, struct kmem_cache *, | ||
24 | unsigned long)); | ||
25 | |||
26 | static struct kmem_cache *extent_state_cache; | 20 | static struct kmem_cache *extent_state_cache; |
27 | static struct kmem_cache *extent_buffer_cache; | 21 | static struct kmem_cache *extent_buffer_cache; |
28 | 22 | ||
@@ -50,20 +44,23 @@ struct extent_page_data { | |||
50 | /* tells writepage not to lock the state bits for this range | 44 | /* tells writepage not to lock the state bits for this range |
51 | * it still does the unlocking | 45 | * it still does the unlocking |
52 | */ | 46 | */ |
53 | int extent_locked; | 47 | unsigned int extent_locked:1; |
48 | |||
49 | /* tells the submit_bio code to use a WRITE_SYNC */ | ||
50 | unsigned int sync_io:1; | ||
54 | }; | 51 | }; |
55 | 52 | ||
56 | int __init extent_io_init(void) | 53 | int __init extent_io_init(void) |
57 | { | 54 | { |
58 | extent_state_cache = btrfs_cache_create("extent_state", | 55 | extent_state_cache = kmem_cache_create("extent_state", |
59 | sizeof(struct extent_state), 0, | 56 | sizeof(struct extent_state), 0, |
60 | NULL); | 57 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
61 | if (!extent_state_cache) | 58 | if (!extent_state_cache) |
62 | return -ENOMEM; | 59 | return -ENOMEM; |
63 | 60 | ||
64 | extent_buffer_cache = btrfs_cache_create("extent_buffers", | 61 | extent_buffer_cache = kmem_cache_create("extent_buffers", |
65 | sizeof(struct extent_buffer), 0, | 62 | sizeof(struct extent_buffer), 0, |
66 | NULL); | 63 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
67 | if (!extent_buffer_cache) | 64 | if (!extent_buffer_cache) |
68 | goto free_state_cache; | 65 | goto free_state_cache; |
69 | return 0; | 66 | return 0; |
@@ -1404,69 +1401,6 @@ out: | |||
1404 | return total_bytes; | 1401 | return total_bytes; |
1405 | } | 1402 | } |
1406 | 1403 | ||
1407 | #if 0 | ||
1408 | /* | ||
1409 | * helper function to lock both pages and extents in the tree. | ||
1410 | * pages must be locked first. | ||
1411 | */ | ||
1412 | static int lock_range(struct extent_io_tree *tree, u64 start, u64 end) | ||
1413 | { | ||
1414 | unsigned long index = start >> PAGE_CACHE_SHIFT; | ||
1415 | unsigned long end_index = end >> PAGE_CACHE_SHIFT; | ||
1416 | struct page *page; | ||
1417 | int err; | ||
1418 | |||
1419 | while (index <= end_index) { | ||
1420 | page = grab_cache_page(tree->mapping, index); | ||
1421 | if (!page) { | ||
1422 | err = -ENOMEM; | ||
1423 | goto failed; | ||
1424 | } | ||
1425 | if (IS_ERR(page)) { | ||
1426 | err = PTR_ERR(page); | ||
1427 | goto failed; | ||
1428 | } | ||
1429 | index++; | ||
1430 | } | ||
1431 | lock_extent(tree, start, end, GFP_NOFS); | ||
1432 | return 0; | ||
1433 | |||
1434 | failed: | ||
1435 | /* | ||
1436 | * we failed above in getting the page at 'index', so we undo here | ||
1437 | * up to but not including the page at 'index' | ||
1438 | */ | ||
1439 | end_index = index; | ||
1440 | index = start >> PAGE_CACHE_SHIFT; | ||
1441 | while (index < end_index) { | ||
1442 | page = find_get_page(tree->mapping, index); | ||
1443 | unlock_page(page); | ||
1444 | page_cache_release(page); | ||
1445 | index++; | ||
1446 | } | ||
1447 | return err; | ||
1448 | } | ||
1449 | |||
1450 | /* | ||
1451 | * helper function to unlock both pages and extents in the tree. | ||
1452 | */ | ||
1453 | static int unlock_range(struct extent_io_tree *tree, u64 start, u64 end) | ||
1454 | { | ||
1455 | unsigned long index = start >> PAGE_CACHE_SHIFT; | ||
1456 | unsigned long end_index = end >> PAGE_CACHE_SHIFT; | ||
1457 | struct page *page; | ||
1458 | |||
1459 | while (index <= end_index) { | ||
1460 | page = find_get_page(tree->mapping, index); | ||
1461 | unlock_page(page); | ||
1462 | page_cache_release(page); | ||
1463 | index++; | ||
1464 | } | ||
1465 | unlock_extent(tree, start, end, GFP_NOFS); | ||
1466 | return 0; | ||
1467 | } | ||
1468 | #endif | ||
1469 | |||
1470 | /* | 1404 | /* |
1471 | * set the private field for a given byte offset in the tree. If there isn't | 1405 | * set the private field for a given byte offset in the tree. If there isn't |
1472 | * an extent_state there already, this does nothing. | 1406 | * an extent_state there already, this does nothing. |
@@ -2101,6 +2035,16 @@ int extent_read_full_page(struct extent_io_tree *tree, struct page *page, | |||
2101 | return ret; | 2035 | return ret; |
2102 | } | 2036 | } |
2103 | 2037 | ||
2038 | static noinline void update_nr_written(struct page *page, | ||
2039 | struct writeback_control *wbc, | ||
2040 | unsigned long nr_written) | ||
2041 | { | ||
2042 | wbc->nr_to_write -= nr_written; | ||
2043 | if (wbc->range_cyclic || (wbc->nr_to_write > 0 && | ||
2044 | wbc->range_start == 0 && wbc->range_end == LLONG_MAX)) | ||
2045 | page->mapping->writeback_index = page->index + nr_written; | ||
2046 | } | ||
2047 | |||
2104 | /* | 2048 | /* |
2105 | * the writepage semantics are similar to regular writepage. extent | 2049 | * the writepage semantics are similar to regular writepage. extent |
2106 | * records are inserted to lock ranges in the tree, and as dirty areas | 2050 | * records are inserted to lock ranges in the tree, and as dirty areas |
@@ -2136,8 +2080,14 @@ static int __extent_writepage(struct page *page, struct writeback_control *wbc, | |||
2136 | u64 delalloc_end; | 2080 | u64 delalloc_end; |
2137 | int page_started; | 2081 | int page_started; |
2138 | int compressed; | 2082 | int compressed; |
2083 | int write_flags; | ||
2139 | unsigned long nr_written = 0; | 2084 | unsigned long nr_written = 0; |
2140 | 2085 | ||
2086 | if (wbc->sync_mode == WB_SYNC_ALL) | ||
2087 | write_flags = WRITE_SYNC_PLUG; | ||
2088 | else | ||
2089 | write_flags = WRITE; | ||
2090 | |||
2141 | WARN_ON(!PageLocked(page)); | 2091 | WARN_ON(!PageLocked(page)); |
2142 | pg_offset = i_size & (PAGE_CACHE_SIZE - 1); | 2092 | pg_offset = i_size & (PAGE_CACHE_SIZE - 1); |
2143 | if (page->index > end_index || | 2093 | if (page->index > end_index || |
@@ -2164,6 +2114,12 @@ static int __extent_writepage(struct page *page, struct writeback_control *wbc, | |||
2164 | delalloc_end = 0; | 2114 | delalloc_end = 0; |
2165 | page_started = 0; | 2115 | page_started = 0; |
2166 | if (!epd->extent_locked) { | 2116 | if (!epd->extent_locked) { |
2117 | /* | ||
2118 | * make sure the wbc mapping index is at least updated | ||
2119 | * to this page. | ||
2120 | */ | ||
2121 | update_nr_written(page, wbc, 0); | ||
2122 | |||
2167 | while (delalloc_end < page_end) { | 2123 | while (delalloc_end < page_end) { |
2168 | nr_delalloc = find_lock_delalloc_range(inode, tree, | 2124 | nr_delalloc = find_lock_delalloc_range(inode, tree, |
2169 | page, | 2125 | page, |
@@ -2185,7 +2141,13 @@ static int __extent_writepage(struct page *page, struct writeback_control *wbc, | |||
2185 | */ | 2141 | */ |
2186 | if (page_started) { | 2142 | if (page_started) { |
2187 | ret = 0; | 2143 | ret = 0; |
2188 | goto update_nr_written; | 2144 | /* |
2145 | * we've unlocked the page, so we can't update | ||
2146 | * the mapping's writeback index, just update | ||
2147 | * nr_to_write. | ||
2148 | */ | ||
2149 | wbc->nr_to_write -= nr_written; | ||
2150 | goto done_unlocked; | ||
2189 | } | 2151 | } |
2190 | } | 2152 | } |
2191 | lock_extent(tree, start, page_end, GFP_NOFS); | 2153 | lock_extent(tree, start, page_end, GFP_NOFS); |
@@ -2198,13 +2160,18 @@ static int __extent_writepage(struct page *page, struct writeback_control *wbc, | |||
2198 | if (ret == -EAGAIN) { | 2160 | if (ret == -EAGAIN) { |
2199 | unlock_extent(tree, start, page_end, GFP_NOFS); | 2161 | unlock_extent(tree, start, page_end, GFP_NOFS); |
2200 | redirty_page_for_writepage(wbc, page); | 2162 | redirty_page_for_writepage(wbc, page); |
2163 | update_nr_written(page, wbc, nr_written); | ||
2201 | unlock_page(page); | 2164 | unlock_page(page); |
2202 | ret = 0; | 2165 | ret = 0; |
2203 | goto update_nr_written; | 2166 | goto done_unlocked; |
2204 | } | 2167 | } |
2205 | } | 2168 | } |
2206 | 2169 | ||
2207 | nr_written++; | 2170 | /* |
2171 | * we don't want to touch the inode after unlocking the page, | ||
2172 | * so we update the mapping writeback index now | ||
2173 | */ | ||
2174 | update_nr_written(page, wbc, nr_written + 1); | ||
2208 | 2175 | ||
2209 | end = page_end; | 2176 | end = page_end; |
2210 | if (test_range_bit(tree, start, page_end, EXTENT_DELALLOC, 0)) | 2177 | if (test_range_bit(tree, start, page_end, EXTENT_DELALLOC, 0)) |
@@ -2314,9 +2281,9 @@ static int __extent_writepage(struct page *page, struct writeback_control *wbc, | |||
2314 | (unsigned long long)end); | 2281 | (unsigned long long)end); |
2315 | } | 2282 | } |
2316 | 2283 | ||
2317 | ret = submit_extent_page(WRITE, tree, page, sector, | 2284 | ret = submit_extent_page(write_flags, tree, page, |
2318 | iosize, pg_offset, bdev, | 2285 | sector, iosize, pg_offset, |
2319 | &epd->bio, max_nr, | 2286 | bdev, &epd->bio, max_nr, |
2320 | end_bio_extent_writepage, | 2287 | end_bio_extent_writepage, |
2321 | 0, 0, 0); | 2288 | 0, 0, 0); |
2322 | if (ret) | 2289 | if (ret) |
@@ -2336,11 +2303,8 @@ done: | |||
2336 | unlock_extent(tree, unlock_start, page_end, GFP_NOFS); | 2303 | unlock_extent(tree, unlock_start, page_end, GFP_NOFS); |
2337 | unlock_page(page); | 2304 | unlock_page(page); |
2338 | 2305 | ||
2339 | update_nr_written: | 2306 | done_unlocked: |
2340 | wbc->nr_to_write -= nr_written; | 2307 | |
2341 | if (wbc->range_cyclic || (wbc->nr_to_write > 0 && | ||
2342 | wbc->range_start == 0 && wbc->range_end == LLONG_MAX)) | ||
2343 | page->mapping->writeback_index = page->index + nr_written; | ||
2344 | return 0; | 2308 | return 0; |
2345 | } | 2309 | } |
2346 | 2310 | ||
@@ -2460,15 +2424,23 @@ retry: | |||
2460 | return ret; | 2424 | return ret; |
2461 | } | 2425 | } |
2462 | 2426 | ||
2463 | static noinline void flush_write_bio(void *data) | 2427 | static void flush_epd_write_bio(struct extent_page_data *epd) |
2464 | { | 2428 | { |
2465 | struct extent_page_data *epd = data; | ||
2466 | if (epd->bio) { | 2429 | if (epd->bio) { |
2467 | submit_one_bio(WRITE, epd->bio, 0, 0); | 2430 | if (epd->sync_io) |
2431 | submit_one_bio(WRITE_SYNC, epd->bio, 0, 0); | ||
2432 | else | ||
2433 | submit_one_bio(WRITE, epd->bio, 0, 0); | ||
2468 | epd->bio = NULL; | 2434 | epd->bio = NULL; |
2469 | } | 2435 | } |
2470 | } | 2436 | } |
2471 | 2437 | ||
2438 | static noinline void flush_write_bio(void *data) | ||
2439 | { | ||
2440 | struct extent_page_data *epd = data; | ||
2441 | flush_epd_write_bio(epd); | ||
2442 | } | ||
2443 | |||
2472 | int extent_write_full_page(struct extent_io_tree *tree, struct page *page, | 2444 | int extent_write_full_page(struct extent_io_tree *tree, struct page *page, |
2473 | get_extent_t *get_extent, | 2445 | get_extent_t *get_extent, |
2474 | struct writeback_control *wbc) | 2446 | struct writeback_control *wbc) |
@@ -2480,23 +2452,22 @@ int extent_write_full_page(struct extent_io_tree *tree, struct page *page, | |||
2480 | .tree = tree, | 2452 | .tree = tree, |
2481 | .get_extent = get_extent, | 2453 | .get_extent = get_extent, |
2482 | .extent_locked = 0, | 2454 | .extent_locked = 0, |
2455 | .sync_io = wbc->sync_mode == WB_SYNC_ALL, | ||
2483 | }; | 2456 | }; |
2484 | struct writeback_control wbc_writepages = { | 2457 | struct writeback_control wbc_writepages = { |
2485 | .bdi = wbc->bdi, | 2458 | .bdi = wbc->bdi, |
2486 | .sync_mode = WB_SYNC_NONE, | 2459 | .sync_mode = wbc->sync_mode, |
2487 | .older_than_this = NULL, | 2460 | .older_than_this = NULL, |
2488 | .nr_to_write = 64, | 2461 | .nr_to_write = 64, |
2489 | .range_start = page_offset(page) + PAGE_CACHE_SIZE, | 2462 | .range_start = page_offset(page) + PAGE_CACHE_SIZE, |
2490 | .range_end = (loff_t)-1, | 2463 | .range_end = (loff_t)-1, |
2491 | }; | 2464 | }; |
2492 | 2465 | ||
2493 | |||
2494 | ret = __extent_writepage(page, wbc, &epd); | 2466 | ret = __extent_writepage(page, wbc, &epd); |
2495 | 2467 | ||
2496 | extent_write_cache_pages(tree, mapping, &wbc_writepages, | 2468 | extent_write_cache_pages(tree, mapping, &wbc_writepages, |
2497 | __extent_writepage, &epd, flush_write_bio); | 2469 | __extent_writepage, &epd, flush_write_bio); |
2498 | if (epd.bio) | 2470 | flush_epd_write_bio(&epd); |
2499 | submit_one_bio(WRITE, epd.bio, 0, 0); | ||
2500 | return ret; | 2471 | return ret; |
2501 | } | 2472 | } |
2502 | 2473 | ||
@@ -2515,6 +2486,7 @@ int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode, | |||
2515 | .tree = tree, | 2486 | .tree = tree, |
2516 | .get_extent = get_extent, | 2487 | .get_extent = get_extent, |
2517 | .extent_locked = 1, | 2488 | .extent_locked = 1, |
2489 | .sync_io = mode == WB_SYNC_ALL, | ||
2518 | }; | 2490 | }; |
2519 | struct writeback_control wbc_writepages = { | 2491 | struct writeback_control wbc_writepages = { |
2520 | .bdi = inode->i_mapping->backing_dev_info, | 2492 | .bdi = inode->i_mapping->backing_dev_info, |
@@ -2540,8 +2512,7 @@ int extent_write_locked_range(struct extent_io_tree *tree, struct inode *inode, | |||
2540 | start += PAGE_CACHE_SIZE; | 2512 | start += PAGE_CACHE_SIZE; |
2541 | } | 2513 | } |
2542 | 2514 | ||
2543 | if (epd.bio) | 2515 | flush_epd_write_bio(&epd); |
2544 | submit_one_bio(WRITE, epd.bio, 0, 0); | ||
2545 | return ret; | 2516 | return ret; |
2546 | } | 2517 | } |
2547 | 2518 | ||
@@ -2556,13 +2527,13 @@ int extent_writepages(struct extent_io_tree *tree, | |||
2556 | .tree = tree, | 2527 | .tree = tree, |
2557 | .get_extent = get_extent, | 2528 | .get_extent = get_extent, |
2558 | .extent_locked = 0, | 2529 | .extent_locked = 0, |
2530 | .sync_io = wbc->sync_mode == WB_SYNC_ALL, | ||
2559 | }; | 2531 | }; |
2560 | 2532 | ||
2561 | ret = extent_write_cache_pages(tree, mapping, wbc, | 2533 | ret = extent_write_cache_pages(tree, mapping, wbc, |
2562 | __extent_writepage, &epd, | 2534 | __extent_writepage, &epd, |
2563 | flush_write_bio); | 2535 | flush_write_bio); |
2564 | if (epd.bio) | 2536 | flush_epd_write_bio(&epd); |
2565 | submit_one_bio(WRITE, epd.bio, 0, 0); | ||
2566 | return ret; | 2537 | return ret; |
2567 | } | 2538 | } |
2568 | 2539 | ||
diff --git a/fs/btrfs/extent_map.c b/fs/btrfs/extent_map.c index b187917b36fa..30c9365861e6 100644 --- a/fs/btrfs/extent_map.c +++ b/fs/btrfs/extent_map.c | |||
@@ -6,19 +6,14 @@ | |||
6 | #include <linux/hardirq.h> | 6 | #include <linux/hardirq.h> |
7 | #include "extent_map.h" | 7 | #include "extent_map.h" |
8 | 8 | ||
9 | /* temporary define until extent_map moves out of btrfs */ | ||
10 | struct kmem_cache *btrfs_cache_create(const char *name, size_t size, | ||
11 | unsigned long extra_flags, | ||
12 | void (*ctor)(void *, struct kmem_cache *, | ||
13 | unsigned long)); | ||
14 | 9 | ||
15 | static struct kmem_cache *extent_map_cache; | 10 | static struct kmem_cache *extent_map_cache; |
16 | 11 | ||
17 | int __init extent_map_init(void) | 12 | int __init extent_map_init(void) |
18 | { | 13 | { |
19 | extent_map_cache = btrfs_cache_create("extent_map", | 14 | extent_map_cache = kmem_cache_create("extent_map", |
20 | sizeof(struct extent_map), 0, | 15 | sizeof(struct extent_map), 0, |
21 | NULL); | 16 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
22 | if (!extent_map_cache) | 17 | if (!extent_map_cache) |
23 | return -ENOMEM; | 18 | return -ENOMEM; |
24 | return 0; | 19 | return 0; |
@@ -43,7 +38,6 @@ void extent_map_tree_init(struct extent_map_tree *tree, gfp_t mask) | |||
43 | tree->map.rb_node = NULL; | 38 | tree->map.rb_node = NULL; |
44 | spin_lock_init(&tree->lock); | 39 | spin_lock_init(&tree->lock); |
45 | } | 40 | } |
46 | EXPORT_SYMBOL(extent_map_tree_init); | ||
47 | 41 | ||
48 | /** | 42 | /** |
49 | * alloc_extent_map - allocate new extent map structure | 43 | * alloc_extent_map - allocate new extent map structure |
@@ -64,7 +58,6 @@ struct extent_map *alloc_extent_map(gfp_t mask) | |||
64 | atomic_set(&em->refs, 1); | 58 | atomic_set(&em->refs, 1); |
65 | return em; | 59 | return em; |
66 | } | 60 | } |
67 | EXPORT_SYMBOL(alloc_extent_map); | ||
68 | 61 | ||
69 | /** | 62 | /** |
70 | * free_extent_map - drop reference count of an extent_map | 63 | * free_extent_map - drop reference count of an extent_map |
@@ -83,7 +76,6 @@ void free_extent_map(struct extent_map *em) | |||
83 | kmem_cache_free(extent_map_cache, em); | 76 | kmem_cache_free(extent_map_cache, em); |
84 | } | 77 | } |
85 | } | 78 | } |
86 | EXPORT_SYMBOL(free_extent_map); | ||
87 | 79 | ||
88 | static struct rb_node *tree_insert(struct rb_root *root, u64 offset, | 80 | static struct rb_node *tree_insert(struct rb_root *root, u64 offset, |
89 | struct rb_node *node) | 81 | struct rb_node *node) |
@@ -264,7 +256,6 @@ int add_extent_mapping(struct extent_map_tree *tree, | |||
264 | out: | 256 | out: |
265 | return ret; | 257 | return ret; |
266 | } | 258 | } |
267 | EXPORT_SYMBOL(add_extent_mapping); | ||
268 | 259 | ||
269 | /* simple helper to do math around the end of an extent, handling wrap */ | 260 | /* simple helper to do math around the end of an extent, handling wrap */ |
270 | static u64 range_end(u64 start, u64 len) | 261 | static u64 range_end(u64 start, u64 len) |
@@ -326,7 +317,6 @@ found: | |||
326 | out: | 317 | out: |
327 | return em; | 318 | return em; |
328 | } | 319 | } |
329 | EXPORT_SYMBOL(lookup_extent_mapping); | ||
330 | 320 | ||
331 | /** | 321 | /** |
332 | * remove_extent_mapping - removes an extent_map from the extent tree | 322 | * remove_extent_mapping - removes an extent_map from the extent tree |
@@ -346,4 +336,3 @@ int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em) | |||
346 | em->in_tree = 0; | 336 | em->in_tree = 0; |
347 | return ret; | 337 | return ret; |
348 | } | 338 | } |
349 | EXPORT_SYMBOL(remove_extent_mapping); | ||
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index 9c9fb46ccd08..1d51dc38bb49 100644 --- a/fs/btrfs/file.c +++ b/fs/btrfs/file.c | |||
@@ -272,83 +272,6 @@ int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end, | |||
272 | return 0; | 272 | return 0; |
273 | } | 273 | } |
274 | 274 | ||
275 | int btrfs_check_file(struct btrfs_root *root, struct inode *inode) | ||
276 | { | ||
277 | return 0; | ||
278 | #if 0 | ||
279 | struct btrfs_path *path; | ||
280 | struct btrfs_key found_key; | ||
281 | struct extent_buffer *leaf; | ||
282 | struct btrfs_file_extent_item *extent; | ||
283 | u64 last_offset = 0; | ||
284 | int nritems; | ||
285 | int slot; | ||
286 | int found_type; | ||
287 | int ret; | ||
288 | int err = 0; | ||
289 | u64 extent_end = 0; | ||
290 | |||
291 | path = btrfs_alloc_path(); | ||
292 | ret = btrfs_lookup_file_extent(NULL, root, path, inode->i_ino, | ||
293 | last_offset, 0); | ||
294 | while (1) { | ||
295 | nritems = btrfs_header_nritems(path->nodes[0]); | ||
296 | if (path->slots[0] >= nritems) { | ||
297 | ret = btrfs_next_leaf(root, path); | ||
298 | if (ret) | ||
299 | goto out; | ||
300 | nritems = btrfs_header_nritems(path->nodes[0]); | ||
301 | } | ||
302 | slot = path->slots[0]; | ||
303 | leaf = path->nodes[0]; | ||
304 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | ||
305 | if (found_key.objectid != inode->i_ino) | ||
306 | break; | ||
307 | if (found_key.type != BTRFS_EXTENT_DATA_KEY) | ||
308 | goto out; | ||
309 | |||
310 | if (found_key.offset < last_offset) { | ||
311 | WARN_ON(1); | ||
312 | btrfs_print_leaf(root, leaf); | ||
313 | printk(KERN_ERR "inode %lu found offset %llu " | ||
314 | "expected %llu\n", inode->i_ino, | ||
315 | (unsigned long long)found_key.offset, | ||
316 | (unsigned long long)last_offset); | ||
317 | err = 1; | ||
318 | goto out; | ||
319 | } | ||
320 | extent = btrfs_item_ptr(leaf, slot, | ||
321 | struct btrfs_file_extent_item); | ||
322 | found_type = btrfs_file_extent_type(leaf, extent); | ||
323 | if (found_type == BTRFS_FILE_EXTENT_REG) { | ||
324 | extent_end = found_key.offset + | ||
325 | btrfs_file_extent_num_bytes(leaf, extent); | ||
326 | } else if (found_type == BTRFS_FILE_EXTENT_INLINE) { | ||
327 | struct btrfs_item *item; | ||
328 | item = btrfs_item_nr(leaf, slot); | ||
329 | extent_end = found_key.offset + | ||
330 | btrfs_file_extent_inline_len(leaf, extent); | ||
331 | extent_end = (extent_end + root->sectorsize - 1) & | ||
332 | ~((u64)root->sectorsize - 1); | ||
333 | } | ||
334 | last_offset = extent_end; | ||
335 | path->slots[0]++; | ||
336 | } | ||
337 | if (0 && last_offset < inode->i_size) { | ||
338 | WARN_ON(1); | ||
339 | btrfs_print_leaf(root, leaf); | ||
340 | printk(KERN_ERR "inode %lu found offset %llu size %llu\n", | ||
341 | inode->i_ino, (unsigned long long)last_offset, | ||
342 | (unsigned long long)inode->i_size); | ||
343 | err = 1; | ||
344 | |||
345 | } | ||
346 | out: | ||
347 | btrfs_free_path(path); | ||
348 | return err; | ||
349 | #endif | ||
350 | } | ||
351 | |||
352 | /* | 275 | /* |
353 | * this is very complex, but the basic idea is to drop all extents | 276 | * this is very complex, but the basic idea is to drop all extents |
354 | * in the range start - end. hint_block is filled in with a block number | 277 | * in the range start - end. hint_block is filled in with a block number |
@@ -363,15 +286,16 @@ out: | |||
363 | */ | 286 | */ |
364 | noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans, | 287 | noinline int btrfs_drop_extents(struct btrfs_trans_handle *trans, |
365 | struct btrfs_root *root, struct inode *inode, | 288 | struct btrfs_root *root, struct inode *inode, |
366 | u64 start, u64 end, u64 inline_limit, u64 *hint_byte) | 289 | u64 start, u64 end, u64 locked_end, |
290 | u64 inline_limit, u64 *hint_byte) | ||
367 | { | 291 | { |
368 | u64 extent_end = 0; | 292 | u64 extent_end = 0; |
369 | u64 locked_end = end; | ||
370 | u64 search_start = start; | 293 | u64 search_start = start; |
371 | u64 leaf_start; | 294 | u64 leaf_start; |
372 | u64 ram_bytes = 0; | 295 | u64 ram_bytes = 0; |
373 | u64 orig_parent = 0; | 296 | u64 orig_parent = 0; |
374 | u64 disk_bytenr = 0; | 297 | u64 disk_bytenr = 0; |
298 | u64 orig_locked_end = locked_end; | ||
375 | u8 compression; | 299 | u8 compression; |
376 | u8 encryption; | 300 | u8 encryption; |
377 | u16 other_encoding = 0; | 301 | u16 other_encoding = 0; |
@@ -684,11 +608,10 @@ next_slot: | |||
684 | } | 608 | } |
685 | out: | 609 | out: |
686 | btrfs_free_path(path); | 610 | btrfs_free_path(path); |
687 | if (locked_end > end) { | 611 | if (locked_end > orig_locked_end) { |
688 | unlock_extent(&BTRFS_I(inode)->io_tree, end, locked_end - 1, | 612 | unlock_extent(&BTRFS_I(inode)->io_tree, orig_locked_end, |
689 | GFP_NOFS); | 613 | locked_end - 1, GFP_NOFS); |
690 | } | 614 | } |
691 | btrfs_check_file(root, inode); | ||
692 | return ret; | 615 | return ret; |
693 | } | 616 | } |
694 | 617 | ||
@@ -830,7 +753,7 @@ again: | |||
830 | 753 | ||
831 | ret = btrfs_del_items(trans, root, path, del_slot, del_nr); | 754 | ret = btrfs_del_items(trans, root, path, del_slot, del_nr); |
832 | BUG_ON(ret); | 755 | BUG_ON(ret); |
833 | goto done; | 756 | goto release; |
834 | } else if (split == start) { | 757 | } else if (split == start) { |
835 | if (locked_end < extent_end) { | 758 | if (locked_end < extent_end) { |
836 | ret = try_lock_extent(&BTRFS_I(inode)->io_tree, | 759 | ret = try_lock_extent(&BTRFS_I(inode)->io_tree, |
@@ -926,6 +849,8 @@ again: | |||
926 | } | 849 | } |
927 | done: | 850 | done: |
928 | btrfs_mark_buffer_dirty(leaf); | 851 | btrfs_mark_buffer_dirty(leaf); |
852 | |||
853 | release: | ||
929 | btrfs_release_path(root, path); | 854 | btrfs_release_path(root, path); |
930 | if (split_end && split == start) { | 855 | if (split_end && split == start) { |
931 | split = end; | 856 | split = end; |
@@ -1131,7 +1056,7 @@ static ssize_t btrfs_file_write(struct file *file, const char __user *buf, | |||
1131 | if (will_write) { | 1056 | if (will_write) { |
1132 | btrfs_fdatawrite_range(inode->i_mapping, pos, | 1057 | btrfs_fdatawrite_range(inode->i_mapping, pos, |
1133 | pos + write_bytes - 1, | 1058 | pos + write_bytes - 1, |
1134 | WB_SYNC_NONE); | 1059 | WB_SYNC_ALL); |
1135 | } else { | 1060 | } else { |
1136 | balance_dirty_pages_ratelimited_nr(inode->i_mapping, | 1061 | balance_dirty_pages_ratelimited_nr(inode->i_mapping, |
1137 | num_pages); | 1062 | num_pages); |
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c index 768b9523662d..0bc93657b460 100644 --- a/fs/btrfs/free-space-cache.c +++ b/fs/btrfs/free-space-cache.c | |||
@@ -332,13 +332,17 @@ int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group, | |||
332 | printk(KERN_ERR "couldn't find space %llu to free\n", | 332 | printk(KERN_ERR "couldn't find space %llu to free\n", |
333 | (unsigned long long)offset); | 333 | (unsigned long long)offset); |
334 | printk(KERN_ERR "cached is %d, offset %llu bytes %llu\n", | 334 | printk(KERN_ERR "cached is %d, offset %llu bytes %llu\n", |
335 | block_group->cached, block_group->key.objectid, | 335 | block_group->cached, |
336 | block_group->key.offset); | 336 | (unsigned long long)block_group->key.objectid, |
337 | (unsigned long long)block_group->key.offset); | ||
337 | btrfs_dump_free_space(block_group, bytes); | 338 | btrfs_dump_free_space(block_group, bytes); |
338 | } else if (info) { | 339 | } else if (info) { |
339 | printk(KERN_ERR "hmm, found offset=%llu bytes=%llu, " | 340 | printk(KERN_ERR "hmm, found offset=%llu bytes=%llu, " |
340 | "but wanted offset=%llu bytes=%llu\n", | 341 | "but wanted offset=%llu bytes=%llu\n", |
341 | info->offset, info->bytes, offset, bytes); | 342 | (unsigned long long)info->offset, |
343 | (unsigned long long)info->bytes, | ||
344 | (unsigned long long)offset, | ||
345 | (unsigned long long)bytes); | ||
342 | } | 346 | } |
343 | WARN_ON(1); | 347 | WARN_ON(1); |
344 | } | 348 | } |
@@ -357,8 +361,9 @@ void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group, | |||
357 | info = rb_entry(n, struct btrfs_free_space, offset_index); | 361 | info = rb_entry(n, struct btrfs_free_space, offset_index); |
358 | if (info->bytes >= bytes) | 362 | if (info->bytes >= bytes) |
359 | count++; | 363 | count++; |
360 | printk(KERN_ERR "entry offset %llu, bytes %llu\n", info->offset, | 364 | printk(KERN_ERR "entry offset %llu, bytes %llu\n", |
361 | info->bytes); | 365 | (unsigned long long)info->offset, |
366 | (unsigned long long)info->bytes); | ||
362 | } | 367 | } |
363 | printk(KERN_INFO "%d blocks of free space at or bigger than bytes is" | 368 | printk(KERN_INFO "%d blocks of free space at or bigger than bytes is" |
364 | "\n", count); | 369 | "\n", count); |
diff --git a/fs/btrfs/inode-map.c b/fs/btrfs/inode-map.c index cc7334d833c9..9abbced1123d 100644 --- a/fs/btrfs/inode-map.c +++ b/fs/btrfs/inode-map.c | |||
@@ -79,7 +79,7 @@ int btrfs_find_free_objectid(struct btrfs_trans_handle *trans, | |||
79 | } | 79 | } |
80 | path = btrfs_alloc_path(); | 80 | path = btrfs_alloc_path(); |
81 | BUG_ON(!path); | 81 | BUG_ON(!path); |
82 | search_start = max(search_start, BTRFS_FIRST_FREE_OBJECTID); | 82 | search_start = max(search_start, (u64)BTRFS_FIRST_FREE_OBJECTID); |
83 | search_key.objectid = search_start; | 83 | search_key.objectid = search_start; |
84 | search_key.type = 0; | 84 | search_key.type = 0; |
85 | search_key.offset = 0; | 85 | search_key.offset = 0; |
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index a0d1dd492a58..90c23eb28829 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -70,7 +70,6 @@ static struct extent_io_ops btrfs_extent_io_ops; | |||
70 | static struct kmem_cache *btrfs_inode_cachep; | 70 | static struct kmem_cache *btrfs_inode_cachep; |
71 | struct kmem_cache *btrfs_trans_handle_cachep; | 71 | struct kmem_cache *btrfs_trans_handle_cachep; |
72 | struct kmem_cache *btrfs_transaction_cachep; | 72 | struct kmem_cache *btrfs_transaction_cachep; |
73 | struct kmem_cache *btrfs_bit_radix_cachep; | ||
74 | struct kmem_cache *btrfs_path_cachep; | 73 | struct kmem_cache *btrfs_path_cachep; |
75 | 74 | ||
76 | #define S_SHIFT 12 | 75 | #define S_SHIFT 12 |
@@ -234,7 +233,7 @@ static noinline int cow_file_range_inline(struct btrfs_trans_handle *trans, | |||
234 | } | 233 | } |
235 | 234 | ||
236 | ret = btrfs_drop_extents(trans, root, inode, start, | 235 | ret = btrfs_drop_extents(trans, root, inode, start, |
237 | aligned_end, start, &hint_byte); | 236 | aligned_end, aligned_end, start, &hint_byte); |
238 | BUG_ON(ret); | 237 | BUG_ON(ret); |
239 | 238 | ||
240 | if (isize > actual_end) | 239 | if (isize > actual_end) |
@@ -1439,6 +1438,7 @@ static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, | |||
1439 | struct inode *inode, u64 file_pos, | 1438 | struct inode *inode, u64 file_pos, |
1440 | u64 disk_bytenr, u64 disk_num_bytes, | 1439 | u64 disk_bytenr, u64 disk_num_bytes, |
1441 | u64 num_bytes, u64 ram_bytes, | 1440 | u64 num_bytes, u64 ram_bytes, |
1441 | u64 locked_end, | ||
1442 | u8 compression, u8 encryption, | 1442 | u8 compression, u8 encryption, |
1443 | u16 other_encoding, int extent_type) | 1443 | u16 other_encoding, int extent_type) |
1444 | { | 1444 | { |
@@ -1455,7 +1455,8 @@ static int insert_reserved_file_extent(struct btrfs_trans_handle *trans, | |||
1455 | 1455 | ||
1456 | path->leave_spinning = 1; | 1456 | path->leave_spinning = 1; |
1457 | ret = btrfs_drop_extents(trans, root, inode, file_pos, | 1457 | ret = btrfs_drop_extents(trans, root, inode, file_pos, |
1458 | file_pos + num_bytes, file_pos, &hint); | 1458 | file_pos + num_bytes, locked_end, |
1459 | file_pos, &hint); | ||
1459 | BUG_ON(ret); | 1460 | BUG_ON(ret); |
1460 | 1461 | ||
1461 | ins.objectid = inode->i_ino; | 1462 | ins.objectid = inode->i_ino; |
@@ -1590,6 +1591,8 @@ static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end) | |||
1590 | ordered_extent->disk_len, | 1591 | ordered_extent->disk_len, |
1591 | ordered_extent->len, | 1592 | ordered_extent->len, |
1592 | ordered_extent->len, | 1593 | ordered_extent->len, |
1594 | ordered_extent->file_offset + | ||
1595 | ordered_extent->len, | ||
1593 | compressed, 0, 0, | 1596 | compressed, 0, 0, |
1594 | BTRFS_FILE_EXTENT_REG); | 1597 | BTRFS_FILE_EXTENT_REG); |
1595 | BUG_ON(ret); | 1598 | BUG_ON(ret); |
@@ -1819,10 +1822,12 @@ good: | |||
1819 | return 0; | 1822 | return 0; |
1820 | 1823 | ||
1821 | zeroit: | 1824 | zeroit: |
1822 | printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u " | 1825 | if (printk_ratelimit()) { |
1823 | "private %llu\n", page->mapping->host->i_ino, | 1826 | printk(KERN_INFO "btrfs csum failed ino %lu off %llu csum %u " |
1824 | (unsigned long long)start, csum, | 1827 | "private %llu\n", page->mapping->host->i_ino, |
1825 | (unsigned long long)private); | 1828 | (unsigned long long)start, csum, |
1829 | (unsigned long long)private); | ||
1830 | } | ||
1826 | memset(kaddr + offset, 1, end - start + 1); | 1831 | memset(kaddr + offset, 1, end - start + 1); |
1827 | flush_dcache_page(page); | 1832 | flush_dcache_page(page); |
1828 | kunmap_atomic(kaddr, KM_USER0); | 1833 | kunmap_atomic(kaddr, KM_USER0); |
@@ -2011,6 +2016,57 @@ void btrfs_orphan_cleanup(struct btrfs_root *root) | |||
2011 | } | 2016 | } |
2012 | 2017 | ||
2013 | /* | 2018 | /* |
2019 | * very simple check to peek ahead in the leaf looking for xattrs. If we | ||
2020 | * don't find any xattrs, we know there can't be any acls. | ||
2021 | * | ||
2022 | * slot is the slot the inode is in, objectid is the objectid of the inode | ||
2023 | */ | ||
2024 | static noinline int acls_after_inode_item(struct extent_buffer *leaf, | ||
2025 | int slot, u64 objectid) | ||
2026 | { | ||
2027 | u32 nritems = btrfs_header_nritems(leaf); | ||
2028 | struct btrfs_key found_key; | ||
2029 | int scanned = 0; | ||
2030 | |||
2031 | slot++; | ||
2032 | while (slot < nritems) { | ||
2033 | btrfs_item_key_to_cpu(leaf, &found_key, slot); | ||
2034 | |||
2035 | /* we found a different objectid, there must not be acls */ | ||
2036 | if (found_key.objectid != objectid) | ||
2037 | return 0; | ||
2038 | |||
2039 | /* we found an xattr, assume we've got an acl */ | ||
2040 | if (found_key.type == BTRFS_XATTR_ITEM_KEY) | ||
2041 | return 1; | ||
2042 | |||
2043 | /* | ||
2044 | * we found a key greater than an xattr key, there can't | ||
2045 | * be any acls later on | ||
2046 | */ | ||
2047 | if (found_key.type > BTRFS_XATTR_ITEM_KEY) | ||
2048 | return 0; | ||
2049 | |||
2050 | slot++; | ||
2051 | scanned++; | ||
2052 | |||
2053 | /* | ||
2054 | * it goes inode, inode backrefs, xattrs, extents, | ||
2055 | * so if there are a ton of hard links to an inode there can | ||
2056 | * be a lot of backrefs. Don't waste time searching too hard, | ||
2057 | * this is just an optimization | ||
2058 | */ | ||
2059 | if (scanned >= 8) | ||
2060 | break; | ||
2061 | } | ||
2062 | /* we hit the end of the leaf before we found an xattr or | ||
2063 | * something larger than an xattr. We have to assume the inode | ||
2064 | * has acls | ||
2065 | */ | ||
2066 | return 1; | ||
2067 | } | ||
2068 | |||
2069 | /* | ||
2014 | * read an inode from the btree into the in-memory inode | 2070 | * read an inode from the btree into the in-memory inode |
2015 | */ | 2071 | */ |
2016 | void btrfs_read_locked_inode(struct inode *inode) | 2072 | void btrfs_read_locked_inode(struct inode *inode) |
@@ -2021,6 +2077,7 @@ void btrfs_read_locked_inode(struct inode *inode) | |||
2021 | struct btrfs_timespec *tspec; | 2077 | struct btrfs_timespec *tspec; |
2022 | struct btrfs_root *root = BTRFS_I(inode)->root; | 2078 | struct btrfs_root *root = BTRFS_I(inode)->root; |
2023 | struct btrfs_key location; | 2079 | struct btrfs_key location; |
2080 | int maybe_acls; | ||
2024 | u64 alloc_group_block; | 2081 | u64 alloc_group_block; |
2025 | u32 rdev; | 2082 | u32 rdev; |
2026 | int ret; | 2083 | int ret; |
@@ -2067,6 +2124,16 @@ void btrfs_read_locked_inode(struct inode *inode) | |||
2067 | 2124 | ||
2068 | alloc_group_block = btrfs_inode_block_group(leaf, inode_item); | 2125 | alloc_group_block = btrfs_inode_block_group(leaf, inode_item); |
2069 | 2126 | ||
2127 | /* | ||
2128 | * try to precache a NULL acl entry for files that don't have | ||
2129 | * any xattrs or acls | ||
2130 | */ | ||
2131 | maybe_acls = acls_after_inode_item(leaf, path->slots[0], inode->i_ino); | ||
2132 | if (!maybe_acls) { | ||
2133 | BTRFS_I(inode)->i_acl = NULL; | ||
2134 | BTRFS_I(inode)->i_default_acl = NULL; | ||
2135 | } | ||
2136 | |||
2070 | BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0, | 2137 | BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0, |
2071 | alloc_group_block, 0); | 2138 | alloc_group_block, 0); |
2072 | btrfs_free_path(path); | 2139 | btrfs_free_path(path); |
@@ -2877,6 +2944,7 @@ int btrfs_cont_expand(struct inode *inode, loff_t size) | |||
2877 | err = btrfs_drop_extents(trans, root, inode, | 2944 | err = btrfs_drop_extents(trans, root, inode, |
2878 | cur_offset, | 2945 | cur_offset, |
2879 | cur_offset + hole_size, | 2946 | cur_offset + hole_size, |
2947 | block_end, | ||
2880 | cur_offset, &hint_byte); | 2948 | cur_offset, &hint_byte); |
2881 | if (err) | 2949 | if (err) |
2882 | break; | 2950 | break; |
@@ -3041,8 +3109,8 @@ static noinline void init_btrfs_i(struct inode *inode) | |||
3041 | { | 3109 | { |
3042 | struct btrfs_inode *bi = BTRFS_I(inode); | 3110 | struct btrfs_inode *bi = BTRFS_I(inode); |
3043 | 3111 | ||
3044 | bi->i_acl = NULL; | 3112 | bi->i_acl = BTRFS_ACL_NOT_CACHED; |
3045 | bi->i_default_acl = NULL; | 3113 | bi->i_default_acl = BTRFS_ACL_NOT_CACHED; |
3046 | 3114 | ||
3047 | bi->generation = 0; | 3115 | bi->generation = 0; |
3048 | bi->sequence = 0; | 3116 | bi->sequence = 0; |
@@ -4634,47 +4702,36 @@ void btrfs_destroy_cachep(void) | |||
4634 | kmem_cache_destroy(btrfs_trans_handle_cachep); | 4702 | kmem_cache_destroy(btrfs_trans_handle_cachep); |
4635 | if (btrfs_transaction_cachep) | 4703 | if (btrfs_transaction_cachep) |
4636 | kmem_cache_destroy(btrfs_transaction_cachep); | 4704 | kmem_cache_destroy(btrfs_transaction_cachep); |
4637 | if (btrfs_bit_radix_cachep) | ||
4638 | kmem_cache_destroy(btrfs_bit_radix_cachep); | ||
4639 | if (btrfs_path_cachep) | 4705 | if (btrfs_path_cachep) |
4640 | kmem_cache_destroy(btrfs_path_cachep); | 4706 | kmem_cache_destroy(btrfs_path_cachep); |
4641 | } | 4707 | } |
4642 | 4708 | ||
4643 | struct kmem_cache *btrfs_cache_create(const char *name, size_t size, | ||
4644 | unsigned long extra_flags, | ||
4645 | void (*ctor)(void *)) | ||
4646 | { | ||
4647 | return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT | | ||
4648 | SLAB_MEM_SPREAD | extra_flags), ctor); | ||
4649 | } | ||
4650 | |||
4651 | int btrfs_init_cachep(void) | 4709 | int btrfs_init_cachep(void) |
4652 | { | 4710 | { |
4653 | btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache", | 4711 | btrfs_inode_cachep = kmem_cache_create("btrfs_inode_cache", |
4654 | sizeof(struct btrfs_inode), | 4712 | sizeof(struct btrfs_inode), 0, |
4655 | 0, init_once); | 4713 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once); |
4656 | if (!btrfs_inode_cachep) | 4714 | if (!btrfs_inode_cachep) |
4657 | goto fail; | 4715 | goto fail; |
4658 | btrfs_trans_handle_cachep = | 4716 | |
4659 | btrfs_cache_create("btrfs_trans_handle_cache", | 4717 | btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle_cache", |
4660 | sizeof(struct btrfs_trans_handle), | 4718 | sizeof(struct btrfs_trans_handle), 0, |
4661 | 0, NULL); | 4719 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); |
4662 | if (!btrfs_trans_handle_cachep) | 4720 | if (!btrfs_trans_handle_cachep) |
4663 | goto fail; | 4721 | goto fail; |
4664 | btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache", | 4722 | |
4665 | sizeof(struct btrfs_transaction), | 4723 | btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction_cache", |
4666 | 0, NULL); | 4724 | sizeof(struct btrfs_transaction), 0, |
4725 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | ||
4667 | if (!btrfs_transaction_cachep) | 4726 | if (!btrfs_transaction_cachep) |
4668 | goto fail; | 4727 | goto fail; |
4669 | btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache", | 4728 | |
4670 | sizeof(struct btrfs_path), | 4729 | btrfs_path_cachep = kmem_cache_create("btrfs_path_cache", |
4671 | 0, NULL); | 4730 | sizeof(struct btrfs_path), 0, |
4731 | SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL); | ||
4672 | if (!btrfs_path_cachep) | 4732 | if (!btrfs_path_cachep) |
4673 | goto fail; | 4733 | goto fail; |
4674 | btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256, | 4734 | |
4675 | SLAB_DESTROY_BY_RCU, NULL); | ||
4676 | if (!btrfs_bit_radix_cachep) | ||
4677 | goto fail; | ||
4678 | return 0; | 4735 | return 0; |
4679 | fail: | 4736 | fail: |
4680 | btrfs_destroy_cachep(); | 4737 | btrfs_destroy_cachep(); |
@@ -4970,10 +5027,10 @@ out_fail: | |||
4970 | return err; | 5027 | return err; |
4971 | } | 5028 | } |
4972 | 5029 | ||
4973 | static int prealloc_file_range(struct inode *inode, u64 start, u64 end, | 5030 | static int prealloc_file_range(struct btrfs_trans_handle *trans, |
4974 | u64 alloc_hint, int mode) | 5031 | struct inode *inode, u64 start, u64 end, |
5032 | u64 locked_end, u64 alloc_hint, int mode) | ||
4975 | { | 5033 | { |
4976 | struct btrfs_trans_handle *trans; | ||
4977 | struct btrfs_root *root = BTRFS_I(inode)->root; | 5034 | struct btrfs_root *root = BTRFS_I(inode)->root; |
4978 | struct btrfs_key ins; | 5035 | struct btrfs_key ins; |
4979 | u64 alloc_size; | 5036 | u64 alloc_size; |
@@ -4981,10 +5038,6 @@ static int prealloc_file_range(struct inode *inode, u64 start, u64 end, | |||
4981 | u64 num_bytes = end - start; | 5038 | u64 num_bytes = end - start; |
4982 | int ret = 0; | 5039 | int ret = 0; |
4983 | 5040 | ||
4984 | trans = btrfs_join_transaction(root, 1); | ||
4985 | BUG_ON(!trans); | ||
4986 | btrfs_set_trans_block_group(trans, inode); | ||
4987 | |||
4988 | while (num_bytes > 0) { | 5041 | while (num_bytes > 0) { |
4989 | alloc_size = min(num_bytes, root->fs_info->max_extent); | 5042 | alloc_size = min(num_bytes, root->fs_info->max_extent); |
4990 | ret = btrfs_reserve_extent(trans, root, alloc_size, | 5043 | ret = btrfs_reserve_extent(trans, root, alloc_size, |
@@ -4997,7 +5050,8 @@ static int prealloc_file_range(struct inode *inode, u64 start, u64 end, | |||
4997 | ret = insert_reserved_file_extent(trans, inode, | 5050 | ret = insert_reserved_file_extent(trans, inode, |
4998 | cur_offset, ins.objectid, | 5051 | cur_offset, ins.objectid, |
4999 | ins.offset, ins.offset, | 5052 | ins.offset, ins.offset, |
5000 | ins.offset, 0, 0, 0, | 5053 | ins.offset, locked_end, |
5054 | 0, 0, 0, | ||
5001 | BTRFS_FILE_EXTENT_PREALLOC); | 5055 | BTRFS_FILE_EXTENT_PREALLOC); |
5002 | BUG_ON(ret); | 5056 | BUG_ON(ret); |
5003 | num_bytes -= ins.offset; | 5057 | num_bytes -= ins.offset; |
@@ -5015,7 +5069,6 @@ out: | |||
5015 | BUG_ON(ret); | 5069 | BUG_ON(ret); |
5016 | } | 5070 | } |
5017 | 5071 | ||
5018 | btrfs_end_transaction(trans, root); | ||
5019 | return ret; | 5072 | return ret; |
5020 | } | 5073 | } |
5021 | 5074 | ||
@@ -5027,13 +5080,21 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
5027 | u64 alloc_start; | 5080 | u64 alloc_start; |
5028 | u64 alloc_end; | 5081 | u64 alloc_end; |
5029 | u64 alloc_hint = 0; | 5082 | u64 alloc_hint = 0; |
5083 | u64 locked_end; | ||
5030 | u64 mask = BTRFS_I(inode)->root->sectorsize - 1; | 5084 | u64 mask = BTRFS_I(inode)->root->sectorsize - 1; |
5031 | struct extent_map *em; | 5085 | struct extent_map *em; |
5086 | struct btrfs_trans_handle *trans; | ||
5032 | int ret; | 5087 | int ret; |
5033 | 5088 | ||
5034 | alloc_start = offset & ~mask; | 5089 | alloc_start = offset & ~mask; |
5035 | alloc_end = (offset + len + mask) & ~mask; | 5090 | alloc_end = (offset + len + mask) & ~mask; |
5036 | 5091 | ||
5092 | /* | ||
5093 | * wait for ordered IO before we have any locks. We'll loop again | ||
5094 | * below with the locks held. | ||
5095 | */ | ||
5096 | btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start); | ||
5097 | |||
5037 | mutex_lock(&inode->i_mutex); | 5098 | mutex_lock(&inode->i_mutex); |
5038 | if (alloc_start > inode->i_size) { | 5099 | if (alloc_start > inode->i_size) { |
5039 | ret = btrfs_cont_expand(inode, alloc_start); | 5100 | ret = btrfs_cont_expand(inode, alloc_start); |
@@ -5041,10 +5102,21 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
5041 | goto out; | 5102 | goto out; |
5042 | } | 5103 | } |
5043 | 5104 | ||
5105 | locked_end = alloc_end - 1; | ||
5044 | while (1) { | 5106 | while (1) { |
5045 | struct btrfs_ordered_extent *ordered; | 5107 | struct btrfs_ordered_extent *ordered; |
5046 | lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, | 5108 | |
5047 | alloc_end - 1, GFP_NOFS); | 5109 | trans = btrfs_start_transaction(BTRFS_I(inode)->root, 1); |
5110 | if (!trans) { | ||
5111 | ret = -EIO; | ||
5112 | goto out; | ||
5113 | } | ||
5114 | |||
5115 | /* the extent lock is ordered inside the running | ||
5116 | * transaction | ||
5117 | */ | ||
5118 | lock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end, | ||
5119 | GFP_NOFS); | ||
5048 | ordered = btrfs_lookup_first_ordered_extent(inode, | 5120 | ordered = btrfs_lookup_first_ordered_extent(inode, |
5049 | alloc_end - 1); | 5121 | alloc_end - 1); |
5050 | if (ordered && | 5122 | if (ordered && |
@@ -5052,7 +5124,13 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
5052 | ordered->file_offset < alloc_end) { | 5124 | ordered->file_offset < alloc_end) { |
5053 | btrfs_put_ordered_extent(ordered); | 5125 | btrfs_put_ordered_extent(ordered); |
5054 | unlock_extent(&BTRFS_I(inode)->io_tree, | 5126 | unlock_extent(&BTRFS_I(inode)->io_tree, |
5055 | alloc_start, alloc_end - 1, GFP_NOFS); | 5127 | alloc_start, locked_end, GFP_NOFS); |
5128 | btrfs_end_transaction(trans, BTRFS_I(inode)->root); | ||
5129 | |||
5130 | /* | ||
5131 | * we can't wait on the range with the transaction | ||
5132 | * running or with the extent lock held | ||
5133 | */ | ||
5056 | btrfs_wait_ordered_range(inode, alloc_start, | 5134 | btrfs_wait_ordered_range(inode, alloc_start, |
5057 | alloc_end - alloc_start); | 5135 | alloc_end - alloc_start); |
5058 | } else { | 5136 | } else { |
@@ -5070,8 +5148,9 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
5070 | last_byte = min(extent_map_end(em), alloc_end); | 5148 | last_byte = min(extent_map_end(em), alloc_end); |
5071 | last_byte = (last_byte + mask) & ~mask; | 5149 | last_byte = (last_byte + mask) & ~mask; |
5072 | if (em->block_start == EXTENT_MAP_HOLE) { | 5150 | if (em->block_start == EXTENT_MAP_HOLE) { |
5073 | ret = prealloc_file_range(inode, cur_offset, | 5151 | ret = prealloc_file_range(trans, inode, cur_offset, |
5074 | last_byte, alloc_hint, mode); | 5152 | last_byte, locked_end + 1, |
5153 | alloc_hint, mode); | ||
5075 | if (ret < 0) { | 5154 | if (ret < 0) { |
5076 | free_extent_map(em); | 5155 | free_extent_map(em); |
5077 | break; | 5156 | break; |
@@ -5087,8 +5166,10 @@ static long btrfs_fallocate(struct inode *inode, int mode, | |||
5087 | break; | 5166 | break; |
5088 | } | 5167 | } |
5089 | } | 5168 | } |
5090 | unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1, | 5169 | unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, locked_end, |
5091 | GFP_NOFS); | 5170 | GFP_NOFS); |
5171 | |||
5172 | btrfs_end_transaction(trans, BTRFS_I(inode)->root); | ||
5092 | out: | 5173 | out: |
5093 | mutex_unlock(&inode->i_mutex); | 5174 | mutex_unlock(&inode->i_mutex); |
5094 | return ret; | 5175 | return ret; |
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 7594bec1be10..5e94ea6e1cbe 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c | |||
@@ -461,15 +461,9 @@ static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg) | |||
461 | if (!capable(CAP_SYS_ADMIN)) | 461 | if (!capable(CAP_SYS_ADMIN)) |
462 | return -EPERM; | 462 | return -EPERM; |
463 | 463 | ||
464 | vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS); | 464 | vol_args = memdup_user(arg, sizeof(*vol_args)); |
465 | 465 | if (IS_ERR(vol_args)) | |
466 | if (!vol_args) | 466 | return PTR_ERR(vol_args); |
467 | return -ENOMEM; | ||
468 | |||
469 | if (copy_from_user(vol_args, arg, sizeof(*vol_args))) { | ||
470 | ret = -EFAULT; | ||
471 | goto out; | ||
472 | } | ||
473 | 467 | ||
474 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; | 468 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; |
475 | namelen = strlen(vol_args->name); | 469 | namelen = strlen(vol_args->name); |
@@ -483,11 +477,13 @@ static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg) | |||
483 | *devstr = '\0'; | 477 | *devstr = '\0'; |
484 | devstr = vol_args->name; | 478 | devstr = vol_args->name; |
485 | devid = simple_strtoull(devstr, &end, 10); | 479 | devid = simple_strtoull(devstr, &end, 10); |
486 | printk(KERN_INFO "resizing devid %llu\n", devid); | 480 | printk(KERN_INFO "resizing devid %llu\n", |
481 | (unsigned long long)devid); | ||
487 | } | 482 | } |
488 | device = btrfs_find_device(root, devid, NULL, NULL); | 483 | device = btrfs_find_device(root, devid, NULL, NULL); |
489 | if (!device) { | 484 | if (!device) { |
490 | printk(KERN_INFO "resizer unable to find device %llu\n", devid); | 485 | printk(KERN_INFO "resizer unable to find device %llu\n", |
486 | (unsigned long long)devid); | ||
491 | ret = -EINVAL; | 487 | ret = -EINVAL; |
492 | goto out_unlock; | 488 | goto out_unlock; |
493 | } | 489 | } |
@@ -545,7 +541,6 @@ static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg) | |||
545 | 541 | ||
546 | out_unlock: | 542 | out_unlock: |
547 | mutex_unlock(&root->fs_info->volume_mutex); | 543 | mutex_unlock(&root->fs_info->volume_mutex); |
548 | out: | ||
549 | kfree(vol_args); | 544 | kfree(vol_args); |
550 | return ret; | 545 | return ret; |
551 | } | 546 | } |
@@ -565,15 +560,9 @@ static noinline int btrfs_ioctl_snap_create(struct file *file, | |||
565 | if (root->fs_info->sb->s_flags & MS_RDONLY) | 560 | if (root->fs_info->sb->s_flags & MS_RDONLY) |
566 | return -EROFS; | 561 | return -EROFS; |
567 | 562 | ||
568 | vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS); | 563 | vol_args = memdup_user(arg, sizeof(*vol_args)); |
569 | 564 | if (IS_ERR(vol_args)) | |
570 | if (!vol_args) | 565 | return PTR_ERR(vol_args); |
571 | return -ENOMEM; | ||
572 | |||
573 | if (copy_from_user(vol_args, arg, sizeof(*vol_args))) { | ||
574 | ret = -EFAULT; | ||
575 | goto out; | ||
576 | } | ||
577 | 566 | ||
578 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; | 567 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; |
579 | namelen = strlen(vol_args->name); | 568 | namelen = strlen(vol_args->name); |
@@ -675,19 +664,13 @@ static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg) | |||
675 | if (!capable(CAP_SYS_ADMIN)) | 664 | if (!capable(CAP_SYS_ADMIN)) |
676 | return -EPERM; | 665 | return -EPERM; |
677 | 666 | ||
678 | vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS); | 667 | vol_args = memdup_user(arg, sizeof(*vol_args)); |
668 | if (IS_ERR(vol_args)) | ||
669 | return PTR_ERR(vol_args); | ||
679 | 670 | ||
680 | if (!vol_args) | ||
681 | return -ENOMEM; | ||
682 | |||
683 | if (copy_from_user(vol_args, arg, sizeof(*vol_args))) { | ||
684 | ret = -EFAULT; | ||
685 | goto out; | ||
686 | } | ||
687 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; | 671 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; |
688 | ret = btrfs_init_new_device(root, vol_args->name); | 672 | ret = btrfs_init_new_device(root, vol_args->name); |
689 | 673 | ||
690 | out: | ||
691 | kfree(vol_args); | 674 | kfree(vol_args); |
692 | return ret; | 675 | return ret; |
693 | } | 676 | } |
@@ -703,19 +686,13 @@ static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg) | |||
703 | if (root->fs_info->sb->s_flags & MS_RDONLY) | 686 | if (root->fs_info->sb->s_flags & MS_RDONLY) |
704 | return -EROFS; | 687 | return -EROFS; |
705 | 688 | ||
706 | vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS); | 689 | vol_args = memdup_user(arg, sizeof(*vol_args)); |
690 | if (IS_ERR(vol_args)) | ||
691 | return PTR_ERR(vol_args); | ||
707 | 692 | ||
708 | if (!vol_args) | ||
709 | return -ENOMEM; | ||
710 | |||
711 | if (copy_from_user(vol_args, arg, sizeof(*vol_args))) { | ||
712 | ret = -EFAULT; | ||
713 | goto out; | ||
714 | } | ||
715 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; | 693 | vol_args->name[BTRFS_PATH_NAME_MAX] = '\0'; |
716 | ret = btrfs_rm_device(root, vol_args->name); | 694 | ret = btrfs_rm_device(root, vol_args->name); |
717 | 695 | ||
718 | out: | ||
719 | kfree(vol_args); | 696 | kfree(vol_args); |
720 | return ret; | 697 | return ret; |
721 | } | 698 | } |
@@ -830,7 +807,8 @@ static long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, | |||
830 | BUG_ON(!trans); | 807 | BUG_ON(!trans); |
831 | 808 | ||
832 | /* punch hole in destination first */ | 809 | /* punch hole in destination first */ |
833 | btrfs_drop_extents(trans, root, inode, off, off+len, 0, &hint_byte); | 810 | btrfs_drop_extents(trans, root, inode, off, off + len, |
811 | off + len, 0, &hint_byte); | ||
834 | 812 | ||
835 | /* clone data */ | 813 | /* clone data */ |
836 | key.objectid = src->i_ino; | 814 | key.objectid = src->i_ino; |
diff --git a/fs/btrfs/ordered-data.c b/fs/btrfs/ordered-data.c index 53c87b197d70..d6f0806c682f 100644 --- a/fs/btrfs/ordered-data.c +++ b/fs/btrfs/ordered-data.c | |||
@@ -489,7 +489,7 @@ again: | |||
489 | /* start IO across the range first to instantiate any delalloc | 489 | /* start IO across the range first to instantiate any delalloc |
490 | * extents | 490 | * extents |
491 | */ | 491 | */ |
492 | btrfs_fdatawrite_range(inode->i_mapping, start, orig_end, WB_SYNC_NONE); | 492 | btrfs_fdatawrite_range(inode->i_mapping, start, orig_end, WB_SYNC_ALL); |
493 | 493 | ||
494 | /* The compression code will leave pages locked but return from | 494 | /* The compression code will leave pages locked but return from |
495 | * writepage without setting the page writeback. Starting again | 495 | * writepage without setting the page writeback. Starting again |
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 9744af9d71e9..3536bdb2d7cb 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -68,7 +68,7 @@ enum { | |||
68 | Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow, | 68 | Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow, |
69 | Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, | 69 | Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, |
70 | Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_notreelog, | 70 | Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_notreelog, |
71 | Opt_flushoncommit, Opt_err, | 71 | Opt_ratio, Opt_flushoncommit, Opt_err, |
72 | }; | 72 | }; |
73 | 73 | ||
74 | static match_table_t tokens = { | 74 | static match_table_t tokens = { |
@@ -87,6 +87,7 @@ static match_table_t tokens = { | |||
87 | {Opt_noacl, "noacl"}, | 87 | {Opt_noacl, "noacl"}, |
88 | {Opt_notreelog, "notreelog"}, | 88 | {Opt_notreelog, "notreelog"}, |
89 | {Opt_flushoncommit, "flushoncommit"}, | 89 | {Opt_flushoncommit, "flushoncommit"}, |
90 | {Opt_ratio, "metadata_ratio=%d"}, | ||
90 | {Opt_err, NULL}, | 91 | {Opt_err, NULL}, |
91 | }; | 92 | }; |
92 | 93 | ||
@@ -195,7 +196,7 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
195 | info->max_extent = max_t(u64, | 196 | info->max_extent = max_t(u64, |
196 | info->max_extent, root->sectorsize); | 197 | info->max_extent, root->sectorsize); |
197 | printk(KERN_INFO "btrfs: max_extent at %llu\n", | 198 | printk(KERN_INFO "btrfs: max_extent at %llu\n", |
198 | info->max_extent); | 199 | (unsigned long long)info->max_extent); |
199 | } | 200 | } |
200 | break; | 201 | break; |
201 | case Opt_max_inline: | 202 | case Opt_max_inline: |
@@ -210,7 +211,7 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
210 | root->sectorsize); | 211 | root->sectorsize); |
211 | } | 212 | } |
212 | printk(KERN_INFO "btrfs: max_inline at %llu\n", | 213 | printk(KERN_INFO "btrfs: max_inline at %llu\n", |
213 | info->max_inline); | 214 | (unsigned long long)info->max_inline); |
214 | } | 215 | } |
215 | break; | 216 | break; |
216 | case Opt_alloc_start: | 217 | case Opt_alloc_start: |
@@ -220,7 +221,7 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
220 | kfree(num); | 221 | kfree(num); |
221 | printk(KERN_INFO | 222 | printk(KERN_INFO |
222 | "btrfs: allocations start at %llu\n", | 223 | "btrfs: allocations start at %llu\n", |
223 | info->alloc_start); | 224 | (unsigned long long)info->alloc_start); |
224 | } | 225 | } |
225 | break; | 226 | break; |
226 | case Opt_noacl: | 227 | case Opt_noacl: |
@@ -234,6 +235,15 @@ int btrfs_parse_options(struct btrfs_root *root, char *options) | |||
234 | printk(KERN_INFO "btrfs: turning on flush-on-commit\n"); | 235 | printk(KERN_INFO "btrfs: turning on flush-on-commit\n"); |
235 | btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT); | 236 | btrfs_set_opt(info->mount_opt, FLUSHONCOMMIT); |
236 | break; | 237 | break; |
238 | case Opt_ratio: | ||
239 | intarg = 0; | ||
240 | match_int(&args[0], &intarg); | ||
241 | if (intarg) { | ||
242 | info->metadata_ratio = intarg; | ||
243 | printk(KERN_INFO "btrfs: metadata ratio %d\n", | ||
244 | info->metadata_ratio); | ||
245 | } | ||
246 | break; | ||
237 | default: | 247 | default: |
238 | break; | 248 | break; |
239 | } | 249 | } |
@@ -410,11 +420,14 @@ static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs) | |||
410 | if (btrfs_test_opt(root, NOBARRIER)) | 420 | if (btrfs_test_opt(root, NOBARRIER)) |
411 | seq_puts(seq, ",nobarrier"); | 421 | seq_puts(seq, ",nobarrier"); |
412 | if (info->max_extent != (u64)-1) | 422 | if (info->max_extent != (u64)-1) |
413 | seq_printf(seq, ",max_extent=%llu", info->max_extent); | 423 | seq_printf(seq, ",max_extent=%llu", |
424 | (unsigned long long)info->max_extent); | ||
414 | if (info->max_inline != 8192 * 1024) | 425 | if (info->max_inline != 8192 * 1024) |
415 | seq_printf(seq, ",max_inline=%llu", info->max_inline); | 426 | seq_printf(seq, ",max_inline=%llu", |
427 | (unsigned long long)info->max_inline); | ||
416 | if (info->alloc_start != 0) | 428 | if (info->alloc_start != 0) |
417 | seq_printf(seq, ",alloc_start=%llu", info->alloc_start); | 429 | seq_printf(seq, ",alloc_start=%llu", |
430 | (unsigned long long)info->alloc_start); | ||
418 | if (info->thread_pool_size != min_t(unsigned long, | 431 | if (info->thread_pool_size != min_t(unsigned long, |
419 | num_online_cpus() + 2, 8)) | 432 | num_online_cpus() + 2, 8)) |
420 | seq_printf(seq, ",thread_pool=%d", info->thread_pool_size); | 433 | seq_printf(seq, ",thread_pool=%d", info->thread_pool_size); |
@@ -635,14 +648,9 @@ static long btrfs_control_ioctl(struct file *file, unsigned int cmd, | |||
635 | if (!capable(CAP_SYS_ADMIN)) | 648 | if (!capable(CAP_SYS_ADMIN)) |
636 | return -EPERM; | 649 | return -EPERM; |
637 | 650 | ||
638 | vol = kmalloc(sizeof(*vol), GFP_KERNEL); | 651 | vol = memdup_user((void __user *)arg, sizeof(*vol)); |
639 | if (!vol) | 652 | if (IS_ERR(vol)) |
640 | return -ENOMEM; | 653 | return PTR_ERR(vol); |
641 | |||
642 | if (copy_from_user(vol, (void __user *)arg, sizeof(*vol))) { | ||
643 | ret = -EFAULT; | ||
644 | goto out; | ||
645 | } | ||
646 | 654 | ||
647 | switch (cmd) { | 655 | switch (cmd) { |
648 | case BTRFS_IOC_SCAN_DEV: | 656 | case BTRFS_IOC_SCAN_DEV: |
@@ -650,7 +658,7 @@ static long btrfs_control_ioctl(struct file *file, unsigned int cmd, | |||
650 | &btrfs_fs_type, &fs_devices); | 658 | &btrfs_fs_type, &fs_devices); |
651 | break; | 659 | break; |
652 | } | 660 | } |
653 | out: | 661 | |
654 | kfree(vol); | 662 | kfree(vol); |
655 | return ret; | 663 | return ret; |
656 | } | 664 | } |
diff --git a/fs/btrfs/transaction.c b/fs/btrfs/transaction.c index 2869b3361eb6..01b143605ec1 100644 --- a/fs/btrfs/transaction.c +++ b/fs/btrfs/transaction.c | |||
@@ -687,7 +687,13 @@ static noinline int wait_transaction_pre_flush(struct btrfs_fs_info *info) | |||
687 | prepare_to_wait(&info->transaction_wait, &wait, | 687 | prepare_to_wait(&info->transaction_wait, &wait, |
688 | TASK_UNINTERRUPTIBLE); | 688 | TASK_UNINTERRUPTIBLE); |
689 | mutex_unlock(&info->trans_mutex); | 689 | mutex_unlock(&info->trans_mutex); |
690 | |||
691 | atomic_dec(&info->throttles); | ||
692 | wake_up(&info->transaction_throttle); | ||
693 | |||
690 | schedule(); | 694 | schedule(); |
695 | |||
696 | atomic_inc(&info->throttles); | ||
691 | mutex_lock(&info->trans_mutex); | 697 | mutex_lock(&info->trans_mutex); |
692 | finish_wait(&info->transaction_wait, &wait); | 698 | finish_wait(&info->transaction_wait, &wait); |
693 | } | 699 | } |
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index 25f20ea11f27..db5e212e8445 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -536,7 +536,7 @@ static noinline int replay_one_extent(struct btrfs_trans_handle *trans, | |||
536 | saved_nbytes = inode_get_bytes(inode); | 536 | saved_nbytes = inode_get_bytes(inode); |
537 | /* drop any overlapping extents */ | 537 | /* drop any overlapping extents */ |
538 | ret = btrfs_drop_extents(trans, root, inode, | 538 | ret = btrfs_drop_extents(trans, root, inode, |
539 | start, extent_end, start, &alloc_hint); | 539 | start, extent_end, extent_end, start, &alloc_hint); |
540 | BUG_ON(ret); | 540 | BUG_ON(ret); |
541 | 541 | ||
542 | if (found_type == BTRFS_FILE_EXTENT_REG || | 542 | if (found_type == BTRFS_FILE_EXTENT_REG || |
diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index e0913e469728..5f01dad4b696 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c | |||
@@ -125,6 +125,20 @@ static noinline struct btrfs_fs_devices *find_fsid(u8 *fsid) | |||
125 | return NULL; | 125 | return NULL; |
126 | } | 126 | } |
127 | 127 | ||
128 | static void requeue_list(struct btrfs_pending_bios *pending_bios, | ||
129 | struct bio *head, struct bio *tail) | ||
130 | { | ||
131 | |||
132 | struct bio *old_head; | ||
133 | |||
134 | old_head = pending_bios->head; | ||
135 | pending_bios->head = head; | ||
136 | if (pending_bios->tail) | ||
137 | tail->bi_next = old_head; | ||
138 | else | ||
139 | pending_bios->tail = tail; | ||
140 | } | ||
141 | |||
128 | /* | 142 | /* |
129 | * we try to collect pending bios for a device so we don't get a large | 143 | * we try to collect pending bios for a device so we don't get a large |
130 | * number of procs sending bios down to the same device. This greatly | 144 | * number of procs sending bios down to the same device. This greatly |
@@ -141,10 +155,12 @@ static noinline int run_scheduled_bios(struct btrfs_device *device) | |||
141 | struct bio *pending; | 155 | struct bio *pending; |
142 | struct backing_dev_info *bdi; | 156 | struct backing_dev_info *bdi; |
143 | struct btrfs_fs_info *fs_info; | 157 | struct btrfs_fs_info *fs_info; |
158 | struct btrfs_pending_bios *pending_bios; | ||
144 | struct bio *tail; | 159 | struct bio *tail; |
145 | struct bio *cur; | 160 | struct bio *cur; |
146 | int again = 0; | 161 | int again = 0; |
147 | unsigned long num_run = 0; | 162 | unsigned long num_run; |
163 | unsigned long num_sync_run; | ||
148 | unsigned long limit; | 164 | unsigned long limit; |
149 | unsigned long last_waited = 0; | 165 | unsigned long last_waited = 0; |
150 | 166 | ||
@@ -153,20 +169,30 @@ static noinline int run_scheduled_bios(struct btrfs_device *device) | |||
153 | limit = btrfs_async_submit_limit(fs_info); | 169 | limit = btrfs_async_submit_limit(fs_info); |
154 | limit = limit * 2 / 3; | 170 | limit = limit * 2 / 3; |
155 | 171 | ||
172 | /* we want to make sure that every time we switch from the sync | ||
173 | * list to the normal list, we unplug | ||
174 | */ | ||
175 | num_sync_run = 0; | ||
176 | |||
156 | loop: | 177 | loop: |
157 | spin_lock(&device->io_lock); | 178 | spin_lock(&device->io_lock); |
179 | num_run = 0; | ||
158 | 180 | ||
159 | loop_lock: | 181 | loop_lock: |
182 | |||
160 | /* take all the bios off the list at once and process them | 183 | /* take all the bios off the list at once and process them |
161 | * later on (without the lock held). But, remember the | 184 | * later on (without the lock held). But, remember the |
162 | * tail and other pointers so the bios can be properly reinserted | 185 | * tail and other pointers so the bios can be properly reinserted |
163 | * into the list if we hit congestion | 186 | * into the list if we hit congestion |
164 | */ | 187 | */ |
165 | pending = device->pending_bios; | 188 | if (device->pending_sync_bios.head) |
166 | tail = device->pending_bio_tail; | 189 | pending_bios = &device->pending_sync_bios; |
190 | else | ||
191 | pending_bios = &device->pending_bios; | ||
192 | |||
193 | pending = pending_bios->head; | ||
194 | tail = pending_bios->tail; | ||
167 | WARN_ON(pending && !tail); | 195 | WARN_ON(pending && !tail); |
168 | device->pending_bios = NULL; | ||
169 | device->pending_bio_tail = NULL; | ||
170 | 196 | ||
171 | /* | 197 | /* |
172 | * if pending was null this time around, no bios need processing | 198 | * if pending was null this time around, no bios need processing |
@@ -176,16 +202,41 @@ loop_lock: | |||
176 | * device->running_pending is used to synchronize with the | 202 | * device->running_pending is used to synchronize with the |
177 | * schedule_bio code. | 203 | * schedule_bio code. |
178 | */ | 204 | */ |
179 | if (pending) { | 205 | if (device->pending_sync_bios.head == NULL && |
180 | again = 1; | 206 | device->pending_bios.head == NULL) { |
181 | device->running_pending = 1; | ||
182 | } else { | ||
183 | again = 0; | 207 | again = 0; |
184 | device->running_pending = 0; | 208 | device->running_pending = 0; |
209 | } else { | ||
210 | again = 1; | ||
211 | device->running_pending = 1; | ||
185 | } | 212 | } |
213 | |||
214 | pending_bios->head = NULL; | ||
215 | pending_bios->tail = NULL; | ||
216 | |||
186 | spin_unlock(&device->io_lock); | 217 | spin_unlock(&device->io_lock); |
187 | 218 | ||
219 | /* | ||
220 | * if we're doing the regular priority list, make sure we unplug | ||
221 | * for any high prio bios we've sent down | ||
222 | */ | ||
223 | if (pending_bios == &device->pending_bios && num_sync_run > 0) { | ||
224 | num_sync_run = 0; | ||
225 | blk_run_backing_dev(bdi, NULL); | ||
226 | } | ||
227 | |||
188 | while (pending) { | 228 | while (pending) { |
229 | |||
230 | rmb(); | ||
231 | if (pending_bios != &device->pending_sync_bios && | ||
232 | device->pending_sync_bios.head && | ||
233 | num_run > 16) { | ||
234 | cond_resched(); | ||
235 | spin_lock(&device->io_lock); | ||
236 | requeue_list(pending_bios, pending, tail); | ||
237 | goto loop_lock; | ||
238 | } | ||
239 | |||
189 | cur = pending; | 240 | cur = pending; |
190 | pending = pending->bi_next; | 241 | pending = pending->bi_next; |
191 | cur->bi_next = NULL; | 242 | cur->bi_next = NULL; |
@@ -196,10 +247,18 @@ loop_lock: | |||
196 | wake_up(&fs_info->async_submit_wait); | 247 | wake_up(&fs_info->async_submit_wait); |
197 | 248 | ||
198 | BUG_ON(atomic_read(&cur->bi_cnt) == 0); | 249 | BUG_ON(atomic_read(&cur->bi_cnt) == 0); |
199 | bio_get(cur); | ||
200 | submit_bio(cur->bi_rw, cur); | 250 | submit_bio(cur->bi_rw, cur); |
201 | bio_put(cur); | ||
202 | num_run++; | 251 | num_run++; |
252 | if (bio_sync(cur)) | ||
253 | num_sync_run++; | ||
254 | |||
255 | if (need_resched()) { | ||
256 | if (num_sync_run) { | ||
257 | blk_run_backing_dev(bdi, NULL); | ||
258 | num_sync_run = 0; | ||
259 | } | ||
260 | cond_resched(); | ||
261 | } | ||
203 | 262 | ||
204 | /* | 263 | /* |
205 | * we made progress, there is more work to do and the bdi | 264 | * we made progress, there is more work to do and the bdi |
@@ -208,7 +267,6 @@ loop_lock: | |||
208 | */ | 267 | */ |
209 | if (pending && bdi_write_congested(bdi) && num_run > 16 && | 268 | if (pending && bdi_write_congested(bdi) && num_run > 16 && |
210 | fs_info->fs_devices->open_devices > 1) { | 269 | fs_info->fs_devices->open_devices > 1) { |
211 | struct bio *old_head; | ||
212 | struct io_context *ioc; | 270 | struct io_context *ioc; |
213 | 271 | ||
214 | ioc = current->io_context; | 272 | ioc = current->io_context; |
@@ -233,17 +291,17 @@ loop_lock: | |||
233 | * against it before looping | 291 | * against it before looping |
234 | */ | 292 | */ |
235 | last_waited = ioc->last_waited; | 293 | last_waited = ioc->last_waited; |
294 | if (need_resched()) { | ||
295 | if (num_sync_run) { | ||
296 | blk_run_backing_dev(bdi, NULL); | ||
297 | num_sync_run = 0; | ||
298 | } | ||
299 | cond_resched(); | ||
300 | } | ||
236 | continue; | 301 | continue; |
237 | } | 302 | } |
238 | spin_lock(&device->io_lock); | 303 | spin_lock(&device->io_lock); |
239 | 304 | requeue_list(pending_bios, pending, tail); | |
240 | old_head = device->pending_bios; | ||
241 | device->pending_bios = pending; | ||
242 | if (device->pending_bio_tail) | ||
243 | tail->bi_next = old_head; | ||
244 | else | ||
245 | device->pending_bio_tail = tail; | ||
246 | |||
247 | device->running_pending = 1; | 305 | device->running_pending = 1; |
248 | 306 | ||
249 | spin_unlock(&device->io_lock); | 307 | spin_unlock(&device->io_lock); |
@@ -251,11 +309,18 @@ loop_lock: | |||
251 | goto done; | 309 | goto done; |
252 | } | 310 | } |
253 | } | 311 | } |
312 | |||
313 | if (num_sync_run) { | ||
314 | num_sync_run = 0; | ||
315 | blk_run_backing_dev(bdi, NULL); | ||
316 | } | ||
317 | |||
318 | cond_resched(); | ||
254 | if (again) | 319 | if (again) |
255 | goto loop; | 320 | goto loop; |
256 | 321 | ||
257 | spin_lock(&device->io_lock); | 322 | spin_lock(&device->io_lock); |
258 | if (device->pending_bios) | 323 | if (device->pending_bios.head || device->pending_sync_bios.head) |
259 | goto loop_lock; | 324 | goto loop_lock; |
260 | spin_unlock(&device->io_lock); | 325 | spin_unlock(&device->io_lock); |
261 | 326 | ||
@@ -1478,7 +1543,7 @@ static noinline int btrfs_update_device(struct btrfs_trans_handle *trans, | |||
1478 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); | 1543 | btrfs_set_device_io_align(leaf, dev_item, device->io_align); |
1479 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); | 1544 | btrfs_set_device_io_width(leaf, dev_item, device->io_width); |
1480 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); | 1545 | btrfs_set_device_sector_size(leaf, dev_item, device->sector_size); |
1481 | btrfs_set_device_total_bytes(leaf, dev_item, device->total_bytes); | 1546 | btrfs_set_device_total_bytes(leaf, dev_item, device->disk_total_bytes); |
1482 | btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used); | 1547 | btrfs_set_device_bytes_used(leaf, dev_item, device->bytes_used); |
1483 | btrfs_mark_buffer_dirty(leaf); | 1548 | btrfs_mark_buffer_dirty(leaf); |
1484 | 1549 | ||
@@ -1875,14 +1940,6 @@ int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) | |||
1875 | device->total_bytes = new_size; | 1940 | device->total_bytes = new_size; |
1876 | if (device->writeable) | 1941 | if (device->writeable) |
1877 | device->fs_devices->total_rw_bytes -= diff; | 1942 | device->fs_devices->total_rw_bytes -= diff; |
1878 | ret = btrfs_update_device(trans, device); | ||
1879 | if (ret) { | ||
1880 | unlock_chunks(root); | ||
1881 | btrfs_end_transaction(trans, root); | ||
1882 | goto done; | ||
1883 | } | ||
1884 | WARN_ON(diff > old_total); | ||
1885 | btrfs_set_super_total_bytes(super_copy, old_total - diff); | ||
1886 | unlock_chunks(root); | 1943 | unlock_chunks(root); |
1887 | btrfs_end_transaction(trans, root); | 1944 | btrfs_end_transaction(trans, root); |
1888 | 1945 | ||
@@ -1914,7 +1971,7 @@ int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) | |||
1914 | length = btrfs_dev_extent_length(l, dev_extent); | 1971 | length = btrfs_dev_extent_length(l, dev_extent); |
1915 | 1972 | ||
1916 | if (key.offset + length <= new_size) | 1973 | if (key.offset + length <= new_size) |
1917 | goto done; | 1974 | break; |
1918 | 1975 | ||
1919 | chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent); | 1976 | chunk_tree = btrfs_dev_extent_chunk_tree(l, dev_extent); |
1920 | chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent); | 1977 | chunk_objectid = btrfs_dev_extent_chunk_objectid(l, dev_extent); |
@@ -1927,6 +1984,26 @@ int btrfs_shrink_device(struct btrfs_device *device, u64 new_size) | |||
1927 | goto done; | 1984 | goto done; |
1928 | } | 1985 | } |
1929 | 1986 | ||
1987 | /* Shrinking succeeded, else we would be at "done". */ | ||
1988 | trans = btrfs_start_transaction(root, 1); | ||
1989 | if (!trans) { | ||
1990 | ret = -ENOMEM; | ||
1991 | goto done; | ||
1992 | } | ||
1993 | lock_chunks(root); | ||
1994 | |||
1995 | device->disk_total_bytes = new_size; | ||
1996 | /* Now btrfs_update_device() will change the on-disk size. */ | ||
1997 | ret = btrfs_update_device(trans, device); | ||
1998 | if (ret) { | ||
1999 | unlock_chunks(root); | ||
2000 | btrfs_end_transaction(trans, root); | ||
2001 | goto done; | ||
2002 | } | ||
2003 | WARN_ON(diff > old_total); | ||
2004 | btrfs_set_super_total_bytes(super_copy, old_total - diff); | ||
2005 | unlock_chunks(root); | ||
2006 | btrfs_end_transaction(trans, root); | ||
1930 | done: | 2007 | done: |
1931 | btrfs_free_path(path); | 2008 | btrfs_free_path(path); |
1932 | return ret; | 2009 | return ret; |
@@ -2497,7 +2574,7 @@ again: | |||
2497 | max_errors = 1; | 2574 | max_errors = 1; |
2498 | } | 2575 | } |
2499 | } | 2576 | } |
2500 | if (multi_ret && rw == WRITE && | 2577 | if (multi_ret && (rw & (1 << BIO_RW)) && |
2501 | stripes_allocated < stripes_required) { | 2578 | stripes_allocated < stripes_required) { |
2502 | stripes_allocated = map->num_stripes; | 2579 | stripes_allocated = map->num_stripes; |
2503 | free_extent_map(em); | 2580 | free_extent_map(em); |
@@ -2762,6 +2839,7 @@ static noinline int schedule_bio(struct btrfs_root *root, | |||
2762 | int rw, struct bio *bio) | 2839 | int rw, struct bio *bio) |
2763 | { | 2840 | { |
2764 | int should_queue = 1; | 2841 | int should_queue = 1; |
2842 | struct btrfs_pending_bios *pending_bios; | ||
2765 | 2843 | ||
2766 | /* don't bother with additional async steps for reads, right now */ | 2844 | /* don't bother with additional async steps for reads, right now */ |
2767 | if (!(rw & (1 << BIO_RW))) { | 2845 | if (!(rw & (1 << BIO_RW))) { |
@@ -2783,13 +2861,17 @@ static noinline int schedule_bio(struct btrfs_root *root, | |||
2783 | bio->bi_rw |= rw; | 2861 | bio->bi_rw |= rw; |
2784 | 2862 | ||
2785 | spin_lock(&device->io_lock); | 2863 | spin_lock(&device->io_lock); |
2864 | if (bio_sync(bio)) | ||
2865 | pending_bios = &device->pending_sync_bios; | ||
2866 | else | ||
2867 | pending_bios = &device->pending_bios; | ||
2786 | 2868 | ||
2787 | if (device->pending_bio_tail) | 2869 | if (pending_bios->tail) |
2788 | device->pending_bio_tail->bi_next = bio; | 2870 | pending_bios->tail->bi_next = bio; |
2789 | 2871 | ||
2790 | device->pending_bio_tail = bio; | 2872 | pending_bios->tail = bio; |
2791 | if (!device->pending_bios) | 2873 | if (!pending_bios->head) |
2792 | device->pending_bios = bio; | 2874 | pending_bios->head = bio; |
2793 | if (device->running_pending) | 2875 | if (device->running_pending) |
2794 | should_queue = 0; | 2876 | should_queue = 0; |
2795 | 2877 | ||
@@ -3006,7 +3088,8 @@ static int fill_device_from_item(struct extent_buffer *leaf, | |||
3006 | unsigned long ptr; | 3088 | unsigned long ptr; |
3007 | 3089 | ||
3008 | device->devid = btrfs_device_id(leaf, dev_item); | 3090 | device->devid = btrfs_device_id(leaf, dev_item); |
3009 | device->total_bytes = btrfs_device_total_bytes(leaf, dev_item); | 3091 | device->disk_total_bytes = btrfs_device_total_bytes(leaf, dev_item); |
3092 | device->total_bytes = device->disk_total_bytes; | ||
3010 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); | 3093 | device->bytes_used = btrfs_device_bytes_used(leaf, dev_item); |
3011 | device->type = btrfs_device_type(leaf, dev_item); | 3094 | device->type = btrfs_device_type(leaf, dev_item); |
3012 | device->io_align = btrfs_device_io_align(leaf, dev_item); | 3095 | device->io_align = btrfs_device_io_align(leaf, dev_item); |
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 2185de72ff7d..5c3ff6d02fd7 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h | |||
@@ -23,13 +23,22 @@ | |||
23 | #include "async-thread.h" | 23 | #include "async-thread.h" |
24 | 24 | ||
25 | struct buffer_head; | 25 | struct buffer_head; |
26 | struct btrfs_pending_bios { | ||
27 | struct bio *head; | ||
28 | struct bio *tail; | ||
29 | }; | ||
30 | |||
26 | struct btrfs_device { | 31 | struct btrfs_device { |
27 | struct list_head dev_list; | 32 | struct list_head dev_list; |
28 | struct list_head dev_alloc_list; | 33 | struct list_head dev_alloc_list; |
29 | struct btrfs_fs_devices *fs_devices; | 34 | struct btrfs_fs_devices *fs_devices; |
30 | struct btrfs_root *dev_root; | 35 | struct btrfs_root *dev_root; |
31 | struct bio *pending_bios; | 36 | |
32 | struct bio *pending_bio_tail; | 37 | /* regular prio bios */ |
38 | struct btrfs_pending_bios pending_bios; | ||
39 | /* WRITE_SYNC bios */ | ||
40 | struct btrfs_pending_bios pending_sync_bios; | ||
41 | |||
33 | int running_pending; | 42 | int running_pending; |
34 | u64 generation; | 43 | u64 generation; |
35 | 44 | ||
@@ -52,6 +61,9 @@ struct btrfs_device { | |||
52 | /* size of the device */ | 61 | /* size of the device */ |
53 | u64 total_bytes; | 62 | u64 total_bytes; |
54 | 63 | ||
64 | /* size of the disk */ | ||
65 | u64 disk_total_bytes; | ||
66 | |||
55 | /* bytes used */ | 67 | /* bytes used */ |
56 | u64 bytes_used; | 68 | u64 bytes_used; |
57 | 69 | ||
diff --git a/fs/compat.c b/fs/compat.c index 3f84d5f15889..681ed81e6be0 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -181,22 +181,24 @@ asmlinkage long compat_sys_newstat(char __user * filename, | |||
181 | struct compat_stat __user *statbuf) | 181 | struct compat_stat __user *statbuf) |
182 | { | 182 | { |
183 | struct kstat stat; | 183 | struct kstat stat; |
184 | int error = vfs_stat_fd(AT_FDCWD, filename, &stat); | 184 | int error; |
185 | 185 | ||
186 | if (!error) | 186 | error = vfs_stat(filename, &stat); |
187 | error = cp_compat_stat(&stat, statbuf); | 187 | if (error) |
188 | return error; | 188 | return error; |
189 | return cp_compat_stat(&stat, statbuf); | ||
189 | } | 190 | } |
190 | 191 | ||
191 | asmlinkage long compat_sys_newlstat(char __user * filename, | 192 | asmlinkage long compat_sys_newlstat(char __user * filename, |
192 | struct compat_stat __user *statbuf) | 193 | struct compat_stat __user *statbuf) |
193 | { | 194 | { |
194 | struct kstat stat; | 195 | struct kstat stat; |
195 | int error = vfs_lstat_fd(AT_FDCWD, filename, &stat); | 196 | int error; |
196 | 197 | ||
197 | if (!error) | 198 | error = vfs_lstat(filename, &stat); |
198 | error = cp_compat_stat(&stat, statbuf); | 199 | if (error) |
199 | return error; | 200 | return error; |
201 | return cp_compat_stat(&stat, statbuf); | ||
200 | } | 202 | } |
201 | 203 | ||
202 | #ifndef __ARCH_WANT_STAT64 | 204 | #ifndef __ARCH_WANT_STAT64 |
@@ -204,21 +206,12 @@ asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename, | |||
204 | struct compat_stat __user *statbuf, int flag) | 206 | struct compat_stat __user *statbuf, int flag) |
205 | { | 207 | { |
206 | struct kstat stat; | 208 | struct kstat stat; |
207 | int error = -EINVAL; | 209 | int error; |
208 | |||
209 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | ||
210 | goto out; | ||
211 | |||
212 | if (flag & AT_SYMLINK_NOFOLLOW) | ||
213 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
214 | else | ||
215 | error = vfs_stat_fd(dfd, filename, &stat); | ||
216 | |||
217 | if (!error) | ||
218 | error = cp_compat_stat(&stat, statbuf); | ||
219 | 210 | ||
220 | out: | 211 | error = vfs_fstatat(dfd, filename, &stat, flag); |
221 | return error; | 212 | if (error) |
213 | return error; | ||
214 | return cp_compat_stat(&stat, statbuf); | ||
222 | } | 215 | } |
223 | #endif | 216 | #endif |
224 | 217 | ||
@@ -1483,6 +1476,7 @@ int compat_do_execve(char * filename, | |||
1483 | struct linux_binprm *bprm; | 1476 | struct linux_binprm *bprm; |
1484 | struct file *file; | 1477 | struct file *file; |
1485 | struct files_struct *displaced; | 1478 | struct files_struct *displaced; |
1479 | bool clear_in_exec; | ||
1486 | int retval; | 1480 | int retval; |
1487 | 1481 | ||
1488 | retval = unshare_files(&displaced); | 1482 | retval = unshare_files(&displaced); |
@@ -1505,8 +1499,9 @@ int compat_do_execve(char * filename, | |||
1505 | goto out_unlock; | 1499 | goto out_unlock; |
1506 | 1500 | ||
1507 | retval = check_unsafe_exec(bprm); | 1501 | retval = check_unsafe_exec(bprm); |
1508 | if (retval) | 1502 | if (retval < 0) |
1509 | goto out_unlock; | 1503 | goto out_unlock; |
1504 | clear_in_exec = retval; | ||
1510 | 1505 | ||
1511 | file = open_exec(filename); | 1506 | file = open_exec(filename); |
1512 | retval = PTR_ERR(file); | 1507 | retval = PTR_ERR(file); |
@@ -1553,9 +1548,7 @@ int compat_do_execve(char * filename, | |||
1553 | goto out; | 1548 | goto out; |
1554 | 1549 | ||
1555 | /* execve succeeded */ | 1550 | /* execve succeeded */ |
1556 | write_lock(¤t->fs->lock); | ||
1557 | current->fs->in_exec = 0; | 1551 | current->fs->in_exec = 0; |
1558 | write_unlock(¤t->fs->lock); | ||
1559 | current->in_execve = 0; | 1552 | current->in_execve = 0; |
1560 | mutex_unlock(¤t->cred_exec_mutex); | 1553 | mutex_unlock(¤t->cred_exec_mutex); |
1561 | acct_update_integrals(current); | 1554 | acct_update_integrals(current); |
@@ -1575,9 +1568,8 @@ out_file: | |||
1575 | } | 1568 | } |
1576 | 1569 | ||
1577 | out_unmark: | 1570 | out_unmark: |
1578 | write_lock(¤t->fs->lock); | 1571 | if (clear_in_exec) |
1579 | current->fs->in_exec = 0; | 1572 | current->fs->in_exec = 0; |
1580 | write_unlock(¤t->fs->lock); | ||
1581 | 1573 | ||
1582 | out_unlock: | 1574 | out_unlock: |
1583 | current->in_execve = 0; | 1575 | current->in_execve = 0; |
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index 3e87ce443ea2..b83f6bcfa51a 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -58,7 +58,6 @@ | |||
58 | #include <linux/i2c.h> | 58 | #include <linux/i2c.h> |
59 | #include <linux/i2c-dev.h> | 59 | #include <linux/i2c-dev.h> |
60 | #include <linux/atalk.h> | 60 | #include <linux/atalk.h> |
61 | #include <linux/loop.h> | ||
62 | 61 | ||
63 | #include <net/bluetooth/bluetooth.h> | 62 | #include <net/bluetooth/bluetooth.h> |
64 | #include <net/bluetooth/hci.h> | 63 | #include <net/bluetooth/hci.h> |
@@ -68,6 +67,7 @@ | |||
68 | #include <linux/gigaset_dev.h> | 67 | #include <linux/gigaset_dev.h> |
69 | 68 | ||
70 | #ifdef CONFIG_BLOCK | 69 | #ifdef CONFIG_BLOCK |
70 | #include <linux/loop.h> | ||
71 | #include <scsi/scsi.h> | 71 | #include <scsi/scsi.h> |
72 | #include <scsi/scsi_ioctl.h> | 72 | #include <scsi/scsi_ioctl.h> |
73 | #include <scsi/sg.h> | 73 | #include <scsi/sg.h> |
@@ -2660,6 +2660,8 @@ HANDLE_IOCTL(SONET_GETFRAMING, do_atm_ioctl) | |||
2660 | HANDLE_IOCTL(SONET_GETFRSENSE, do_atm_ioctl) | 2660 | HANDLE_IOCTL(SONET_GETFRSENSE, do_atm_ioctl) |
2661 | /* block stuff */ | 2661 | /* block stuff */ |
2662 | #ifdef CONFIG_BLOCK | 2662 | #ifdef CONFIG_BLOCK |
2663 | /* loop */ | ||
2664 | IGNORE_IOCTL(LOOP_CLR_FD) | ||
2663 | /* Raw devices */ | 2665 | /* Raw devices */ |
2664 | HANDLE_IOCTL(RAW_SETBIND, raw_ioctl) | 2666 | HANDLE_IOCTL(RAW_SETBIND, raw_ioctl) |
2665 | HANDLE_IOCTL(RAW_GETBIND, raw_ioctl) | 2667 | HANDLE_IOCTL(RAW_GETBIND, raw_ioctl) |
@@ -2728,9 +2730,6 @@ HANDLE_IOCTL(LPSETTIMEOUT, lp_timeout_trans) | |||
2728 | IGNORE_IOCTL(VFAT_IOCTL_READDIR_BOTH32) | 2730 | IGNORE_IOCTL(VFAT_IOCTL_READDIR_BOTH32) |
2729 | IGNORE_IOCTL(VFAT_IOCTL_READDIR_SHORT32) | 2731 | IGNORE_IOCTL(VFAT_IOCTL_READDIR_SHORT32) |
2730 | 2732 | ||
2731 | /* loop */ | ||
2732 | IGNORE_IOCTL(LOOP_CLR_FD) | ||
2733 | |||
2734 | #ifdef CONFIG_SPARC | 2733 | #ifdef CONFIG_SPARC |
2735 | /* Sparc framebuffers, handled in sbusfb_compat_ioctl() */ | 2734 | /* Sparc framebuffers, handled in sbusfb_compat_ioctl() */ |
2736 | IGNORE_IOCTL(FBIOGTYPE) | 2735 | IGNORE_IOCTL(FBIOGTYPE) |
diff --git a/fs/dcache.c b/fs/dcache.c index 761d30be2683..1fcffebfb44f 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -2149,7 +2149,6 @@ int is_subdir(struct dentry *new_dentry, struct dentry *old_dentry) | |||
2149 | int result; | 2149 | int result; |
2150 | unsigned long seq; | 2150 | unsigned long seq; |
2151 | 2151 | ||
2152 | /* FIXME: This is old behavior, needed? Please check callers. */ | ||
2153 | if (new_dentry == old_dentry) | 2152 | if (new_dentry == old_dentry) |
2154 | return 1; | 2153 | return 1; |
2155 | 2154 | ||
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 8b65f289ee00..b91851f1cda3 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c | |||
@@ -483,15 +483,7 @@ int ecryptfs_encrypt_page(struct page *page) | |||
483 | ecryptfs_inode = page->mapping->host; | 483 | ecryptfs_inode = page->mapping->host; |
484 | crypt_stat = | 484 | crypt_stat = |
485 | &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat); | 485 | &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat); |
486 | if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { | 486 | BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)); |
487 | rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page, | ||
488 | 0, PAGE_CACHE_SIZE); | ||
489 | if (rc) | ||
490 | printk(KERN_ERR "%s: Error attempting to copy " | ||
491 | "page at index [%ld]\n", __func__, | ||
492 | page->index); | ||
493 | goto out; | ||
494 | } | ||
495 | enc_extent_page = alloc_page(GFP_USER); | 487 | enc_extent_page = alloc_page(GFP_USER); |
496 | if (!enc_extent_page) { | 488 | if (!enc_extent_page) { |
497 | rc = -ENOMEM; | 489 | rc = -ENOMEM; |
@@ -620,16 +612,7 @@ int ecryptfs_decrypt_page(struct page *page) | |||
620 | ecryptfs_inode = page->mapping->host; | 612 | ecryptfs_inode = page->mapping->host; |
621 | crypt_stat = | 613 | crypt_stat = |
622 | &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat); | 614 | &(ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat); |
623 | if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { | 615 | BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)); |
624 | rc = ecryptfs_read_lower_page_segment(page, page->index, 0, | ||
625 | PAGE_CACHE_SIZE, | ||
626 | ecryptfs_inode); | ||
627 | if (rc) | ||
628 | printk(KERN_ERR "%s: Error attempting to copy " | ||
629 | "page at index [%ld]\n", __func__, | ||
630 | page->index); | ||
631 | goto out; | ||
632 | } | ||
633 | enc_extent_page = alloc_page(GFP_USER); | 616 | enc_extent_page = alloc_page(GFP_USER); |
634 | if (!enc_extent_page) { | 617 | if (!enc_extent_page) { |
635 | rc = -ENOMEM; | 618 | rc = -ENOMEM; |
diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h index 064c5820e4e5..00b30a2d5466 100644 --- a/fs/ecryptfs/ecryptfs_kernel.h +++ b/fs/ecryptfs/ecryptfs_kernel.h | |||
@@ -269,6 +269,7 @@ struct ecryptfs_crypt_stat { | |||
269 | #define ECRYPTFS_ENCRYPT_FILENAMES 0x00000800 | 269 | #define ECRYPTFS_ENCRYPT_FILENAMES 0x00000800 |
270 | #define ECRYPTFS_ENCFN_USE_MOUNT_FNEK 0x00001000 | 270 | #define ECRYPTFS_ENCFN_USE_MOUNT_FNEK 0x00001000 |
271 | #define ECRYPTFS_ENCFN_USE_FEK 0x00002000 | 271 | #define ECRYPTFS_ENCFN_USE_FEK 0x00002000 |
272 | #define ECRYPTFS_UNLINK_SIGS 0x00004000 | ||
272 | u32 flags; | 273 | u32 flags; |
273 | unsigned int file_version; | 274 | unsigned int file_version; |
274 | size_t iv_bytes; | 275 | size_t iv_bytes; |
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 55b3145b8072..2f0945d63297 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c | |||
@@ -379,9 +379,11 @@ static struct dentry *ecryptfs_lookup(struct inode *ecryptfs_dir_inode, | |||
379 | goto out_d_drop; | 379 | goto out_d_drop; |
380 | } | 380 | } |
381 | lower_dir_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry->d_parent); | 381 | lower_dir_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry->d_parent); |
382 | mutex_lock(&lower_dir_dentry->d_inode->i_mutex); | ||
382 | lower_dentry = lookup_one_len(ecryptfs_dentry->d_name.name, | 383 | lower_dentry = lookup_one_len(ecryptfs_dentry->d_name.name, |
383 | lower_dir_dentry, | 384 | lower_dir_dentry, |
384 | ecryptfs_dentry->d_name.len); | 385 | ecryptfs_dentry->d_name.len); |
386 | mutex_unlock(&lower_dir_dentry->d_inode->i_mutex); | ||
385 | if (IS_ERR(lower_dentry)) { | 387 | if (IS_ERR(lower_dentry)) { |
386 | rc = PTR_ERR(lower_dentry); | 388 | rc = PTR_ERR(lower_dentry); |
387 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " | 389 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " |
@@ -406,9 +408,11 @@ static struct dentry *ecryptfs_lookup(struct inode *ecryptfs_dir_inode, | |||
406 | "filename; rc = [%d]\n", __func__, rc); | 408 | "filename; rc = [%d]\n", __func__, rc); |
407 | goto out_d_drop; | 409 | goto out_d_drop; |
408 | } | 410 | } |
411 | mutex_lock(&lower_dir_dentry->d_inode->i_mutex); | ||
409 | lower_dentry = lookup_one_len(encrypted_and_encoded_name, | 412 | lower_dentry = lookup_one_len(encrypted_and_encoded_name, |
410 | lower_dir_dentry, | 413 | lower_dir_dentry, |
411 | encrypted_and_encoded_name_size - 1); | 414 | encrypted_and_encoded_name_size - 1); |
415 | mutex_unlock(&lower_dir_dentry->d_inode->i_mutex); | ||
412 | if (IS_ERR(lower_dentry)) { | 416 | if (IS_ERR(lower_dentry)) { |
413 | rc = PTR_ERR(lower_dentry); | 417 | rc = PTR_ERR(lower_dentry); |
414 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " | 418 | printk(KERN_ERR "%s: lookup_one_len() returned [%d] on " |
@@ -636,8 +640,9 @@ static int | |||
636 | ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) | 640 | ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) |
637 | { | 641 | { |
638 | char *lower_buf; | 642 | char *lower_buf; |
643 | size_t lower_bufsiz; | ||
639 | struct dentry *lower_dentry; | 644 | struct dentry *lower_dentry; |
640 | struct ecryptfs_crypt_stat *crypt_stat; | 645 | struct ecryptfs_mount_crypt_stat *mount_crypt_stat; |
641 | char *plaintext_name; | 646 | char *plaintext_name; |
642 | size_t plaintext_name_size; | 647 | size_t plaintext_name_size; |
643 | mm_segment_t old_fs; | 648 | mm_segment_t old_fs; |
@@ -648,12 +653,21 @@ ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) | |||
648 | rc = -EINVAL; | 653 | rc = -EINVAL; |
649 | goto out; | 654 | goto out; |
650 | } | 655 | } |
651 | crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat; | 656 | mount_crypt_stat = &ecryptfs_superblock_to_private( |
657 | dentry->d_sb)->mount_crypt_stat; | ||
658 | /* | ||
659 | * If the lower filename is encrypted, it will result in a significantly | ||
660 | * longer name. If needed, truncate the name after decode and decrypt. | ||
661 | */ | ||
662 | if (mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) | ||
663 | lower_bufsiz = PATH_MAX; | ||
664 | else | ||
665 | lower_bufsiz = bufsiz; | ||
652 | /* Released in this function */ | 666 | /* Released in this function */ |
653 | lower_buf = kmalloc(bufsiz, GFP_KERNEL); | 667 | lower_buf = kmalloc(lower_bufsiz, GFP_KERNEL); |
654 | if (lower_buf == NULL) { | 668 | if (lower_buf == NULL) { |
655 | printk(KERN_ERR "%s: Out of memory whilst attempting to " | 669 | printk(KERN_ERR "%s: Out of memory whilst attempting to " |
656 | "kmalloc [%d] bytes\n", __func__, bufsiz); | 670 | "kmalloc [%zd] bytes\n", __func__, lower_bufsiz); |
657 | rc = -ENOMEM; | 671 | rc = -ENOMEM; |
658 | goto out; | 672 | goto out; |
659 | } | 673 | } |
@@ -661,7 +675,7 @@ ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) | |||
661 | set_fs(get_ds()); | 675 | set_fs(get_ds()); |
662 | rc = lower_dentry->d_inode->i_op->readlink(lower_dentry, | 676 | rc = lower_dentry->d_inode->i_op->readlink(lower_dentry, |
663 | (char __user *)lower_buf, | 677 | (char __user *)lower_buf, |
664 | bufsiz); | 678 | lower_bufsiz); |
665 | set_fs(old_fs); | 679 | set_fs(old_fs); |
666 | if (rc >= 0) { | 680 | if (rc >= 0) { |
667 | rc = ecryptfs_decode_and_decrypt_filename(&plaintext_name, | 681 | rc = ecryptfs_decode_and_decrypt_filename(&plaintext_name, |
@@ -674,7 +688,9 @@ ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz) | |||
674 | rc); | 688 | rc); |
675 | goto out_free_lower_buf; | 689 | goto out_free_lower_buf; |
676 | } | 690 | } |
677 | rc = copy_to_user(buf, plaintext_name, plaintext_name_size); | 691 | /* Check for bufsiz <= 0 done in sys_readlinkat() */ |
692 | rc = copy_to_user(buf, plaintext_name, | ||
693 | min((size_t) bufsiz, plaintext_name_size)); | ||
678 | if (rc) | 694 | if (rc) |
679 | rc = -EFAULT; | 695 | rc = -EFAULT; |
680 | else | 696 | else |
@@ -814,6 +830,13 @@ int ecryptfs_truncate(struct dentry *dentry, loff_t new_length) | |||
814 | size_t num_zeros = (PAGE_CACHE_SIZE | 830 | size_t num_zeros = (PAGE_CACHE_SIZE |
815 | - (new_length & ~PAGE_CACHE_MASK)); | 831 | - (new_length & ~PAGE_CACHE_MASK)); |
816 | 832 | ||
833 | if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { | ||
834 | rc = vmtruncate(inode, new_length); | ||
835 | if (rc) | ||
836 | goto out_free; | ||
837 | rc = vmtruncate(lower_dentry->d_inode, new_length); | ||
838 | goto out_free; | ||
839 | } | ||
817 | if (num_zeros) { | 840 | if (num_zeros) { |
818 | char *zeros_virt; | 841 | char *zeros_virt; |
819 | 842 | ||
@@ -915,8 +938,6 @@ static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia) | |||
915 | } | 938 | } |
916 | rc = 0; | 939 | rc = 0; |
917 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); | 940 | crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED); |
918 | mutex_unlock(&crypt_stat->cs_mutex); | ||
919 | goto out; | ||
920 | } | 941 | } |
921 | } | 942 | } |
922 | mutex_unlock(&crypt_stat->cs_mutex); | 943 | mutex_unlock(&crypt_stat->cs_mutex); |
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index aed56c25539b..ccabd5faa04d 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c | |||
@@ -190,14 +190,14 @@ int ecryptfs_interpose(struct dentry *lower_dentry, struct dentry *dentry, | |||
190 | init_special_inode(inode, lower_inode->i_mode, | 190 | init_special_inode(inode, lower_inode->i_mode, |
191 | lower_inode->i_rdev); | 191 | lower_inode->i_rdev); |
192 | dentry->d_op = &ecryptfs_dops; | 192 | dentry->d_op = &ecryptfs_dops; |
193 | if (flags & ECRYPTFS_INTERPOSE_FLAG_D_ADD) | ||
194 | d_add(dentry, inode); | ||
195 | else | ||
196 | d_instantiate(dentry, inode); | ||
197 | fsstack_copy_attr_all(inode, lower_inode, NULL); | 193 | fsstack_copy_attr_all(inode, lower_inode, NULL); |
198 | /* This size will be overwritten for real files w/ headers and | 194 | /* This size will be overwritten for real files w/ headers and |
199 | * other metadata */ | 195 | * other metadata */ |
200 | fsstack_copy_inode_size(inode, lower_inode); | 196 | fsstack_copy_inode_size(inode, lower_inode); |
197 | if (flags & ECRYPTFS_INTERPOSE_FLAG_D_ADD) | ||
198 | d_add(dentry, inode); | ||
199 | else | ||
200 | d_instantiate(dentry, inode); | ||
201 | out: | 201 | out: |
202 | return rc; | 202 | return rc; |
203 | } | 203 | } |
@@ -208,7 +208,7 @@ enum { ecryptfs_opt_sig, ecryptfs_opt_ecryptfs_sig, | |||
208 | ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata, | 208 | ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata, |
209 | ecryptfs_opt_encrypted_view, ecryptfs_opt_fnek_sig, | 209 | ecryptfs_opt_encrypted_view, ecryptfs_opt_fnek_sig, |
210 | ecryptfs_opt_fn_cipher, ecryptfs_opt_fn_cipher_key_bytes, | 210 | ecryptfs_opt_fn_cipher, ecryptfs_opt_fn_cipher_key_bytes, |
211 | ecryptfs_opt_err }; | 211 | ecryptfs_opt_unlink_sigs, ecryptfs_opt_err }; |
212 | 212 | ||
213 | static const match_table_t tokens = { | 213 | static const match_table_t tokens = { |
214 | {ecryptfs_opt_sig, "sig=%s"}, | 214 | {ecryptfs_opt_sig, "sig=%s"}, |
@@ -222,6 +222,7 @@ static const match_table_t tokens = { | |||
222 | {ecryptfs_opt_fnek_sig, "ecryptfs_fnek_sig=%s"}, | 222 | {ecryptfs_opt_fnek_sig, "ecryptfs_fnek_sig=%s"}, |
223 | {ecryptfs_opt_fn_cipher, "ecryptfs_fn_cipher=%s"}, | 223 | {ecryptfs_opt_fn_cipher, "ecryptfs_fn_cipher=%s"}, |
224 | {ecryptfs_opt_fn_cipher_key_bytes, "ecryptfs_fn_key_bytes=%u"}, | 224 | {ecryptfs_opt_fn_cipher_key_bytes, "ecryptfs_fn_key_bytes=%u"}, |
225 | {ecryptfs_opt_unlink_sigs, "ecryptfs_unlink_sigs"}, | ||
225 | {ecryptfs_opt_err, NULL} | 226 | {ecryptfs_opt_err, NULL} |
226 | }; | 227 | }; |
227 | 228 | ||
@@ -402,6 +403,9 @@ static int ecryptfs_parse_options(struct super_block *sb, char *options) | |||
402 | fn_cipher_key_bytes; | 403 | fn_cipher_key_bytes; |
403 | fn_cipher_key_bytes_set = 1; | 404 | fn_cipher_key_bytes_set = 1; |
404 | break; | 405 | break; |
406 | case ecryptfs_opt_unlink_sigs: | ||
407 | mount_crypt_stat->flags |= ECRYPTFS_UNLINK_SIGS; | ||
408 | break; | ||
405 | case ecryptfs_opt_err: | 409 | case ecryptfs_opt_err: |
406 | default: | 410 | default: |
407 | printk(KERN_WARNING | 411 | printk(KERN_WARNING |
diff --git a/fs/ecryptfs/messaging.c b/fs/ecryptfs/messaging.c index 295e7fa56755..f1c17e87c5fb 100644 --- a/fs/ecryptfs/messaging.c +++ b/fs/ecryptfs/messaging.c | |||
@@ -133,45 +133,6 @@ out: | |||
133 | return rc; | 133 | return rc; |
134 | } | 134 | } |
135 | 135 | ||
136 | static int | ||
137 | ecryptfs_send_message_locked(char *data, int data_len, u8 msg_type, | ||
138 | struct ecryptfs_msg_ctx **msg_ctx); | ||
139 | |||
140 | /** | ||
141 | * ecryptfs_send_raw_message | ||
142 | * @msg_type: Message type | ||
143 | * @daemon: Daemon struct for recipient of message | ||
144 | * | ||
145 | * A raw message is one that does not include an ecryptfs_message | ||
146 | * struct. It simply has a type. | ||
147 | * | ||
148 | * Must be called with ecryptfs_daemon_hash_mux held. | ||
149 | * | ||
150 | * Returns zero on success; non-zero otherwise | ||
151 | */ | ||
152 | static int ecryptfs_send_raw_message(u8 msg_type, | ||
153 | struct ecryptfs_daemon *daemon) | ||
154 | { | ||
155 | struct ecryptfs_msg_ctx *msg_ctx; | ||
156 | int rc; | ||
157 | |||
158 | rc = ecryptfs_send_message_locked(NULL, 0, msg_type, &msg_ctx); | ||
159 | if (rc) { | ||
160 | printk(KERN_ERR "%s: Error whilst attempting to send " | ||
161 | "message to ecryptfsd; rc = [%d]\n", __func__, rc); | ||
162 | goto out; | ||
163 | } | ||
164 | /* Raw messages are logically context-free (e.g., no | ||
165 | * reply is expected), so we set the state of the | ||
166 | * ecryptfs_msg_ctx object to indicate that it should | ||
167 | * be freed as soon as the message is sent. */ | ||
168 | mutex_lock(&msg_ctx->mux); | ||
169 | msg_ctx->state = ECRYPTFS_MSG_CTX_STATE_NO_REPLY; | ||
170 | mutex_unlock(&msg_ctx->mux); | ||
171 | out: | ||
172 | return rc; | ||
173 | } | ||
174 | |||
175 | /** | 136 | /** |
176 | * ecryptfs_spawn_daemon - Create and initialize a new daemon struct | 137 | * ecryptfs_spawn_daemon - Create and initialize a new daemon struct |
177 | * @daemon: Pointer to set to newly allocated daemon struct | 138 | * @daemon: Pointer to set to newly allocated daemon struct |
@@ -212,49 +173,6 @@ out: | |||
212 | } | 173 | } |
213 | 174 | ||
214 | /** | 175 | /** |
215 | * ecryptfs_process_helo | ||
216 | * @euid: The user ID owner of the message | ||
217 | * @user_ns: The namespace in which @euid applies | ||
218 | * @pid: The process ID for the userspace program that sent the | ||
219 | * message | ||
220 | * | ||
221 | * Adds the euid and pid values to the daemon euid hash. If an euid | ||
222 | * already has a daemon pid registered, the daemon will be | ||
223 | * unregistered before the new daemon is put into the hash list. | ||
224 | * Returns zero after adding a new daemon to the hash list; | ||
225 | * non-zero otherwise. | ||
226 | */ | ||
227 | int ecryptfs_process_helo(uid_t euid, struct user_namespace *user_ns, | ||
228 | struct pid *pid) | ||
229 | { | ||
230 | struct ecryptfs_daemon *new_daemon; | ||
231 | struct ecryptfs_daemon *old_daemon; | ||
232 | int rc; | ||
233 | |||
234 | mutex_lock(&ecryptfs_daemon_hash_mux); | ||
235 | rc = ecryptfs_find_daemon_by_euid(&old_daemon, euid, user_ns); | ||
236 | if (rc != 0) { | ||
237 | printk(KERN_WARNING "Received request from user [%d] " | ||
238 | "to register daemon [0x%p]; unregistering daemon " | ||
239 | "[0x%p]\n", euid, pid, old_daemon->pid); | ||
240 | rc = ecryptfs_send_raw_message(ECRYPTFS_MSG_QUIT, old_daemon); | ||
241 | if (rc) | ||
242 | printk(KERN_WARNING "Failed to send QUIT " | ||
243 | "message to daemon [0x%p]; rc = [%d]\n", | ||
244 | old_daemon->pid, rc); | ||
245 | hlist_del(&old_daemon->euid_chain); | ||
246 | kfree(old_daemon); | ||
247 | } | ||
248 | rc = ecryptfs_spawn_daemon(&new_daemon, euid, user_ns, pid); | ||
249 | if (rc) | ||
250 | printk(KERN_ERR "%s: The gods are displeased with this attempt " | ||
251 | "to create a new daemon object for euid [%d]; pid " | ||
252 | "[0x%p]; rc = [%d]\n", __func__, euid, pid, rc); | ||
253 | mutex_unlock(&ecryptfs_daemon_hash_mux); | ||
254 | return rc; | ||
255 | } | ||
256 | |||
257 | /** | ||
258 | * ecryptfs_exorcise_daemon - Destroy the daemon struct | 176 | * ecryptfs_exorcise_daemon - Destroy the daemon struct |
259 | * | 177 | * |
260 | * Must be called ceremoniously while in possession of | 178 | * Must be called ceremoniously while in possession of |
diff --git a/fs/ecryptfs/miscdev.c b/fs/ecryptfs/miscdev.c index a67fea655f49..4ec8f61ccf5a 100644 --- a/fs/ecryptfs/miscdev.c +++ b/fs/ecryptfs/miscdev.c | |||
@@ -193,26 +193,20 @@ int ecryptfs_send_miscdev(char *data, size_t data_size, | |||
193 | int rc = 0; | 193 | int rc = 0; |
194 | 194 | ||
195 | mutex_lock(&msg_ctx->mux); | 195 | mutex_lock(&msg_ctx->mux); |
196 | if (data) { | 196 | msg_ctx->msg = kmalloc((sizeof(*msg_ctx->msg) + data_size), |
197 | msg_ctx->msg = kmalloc((sizeof(*msg_ctx->msg) + data_size), | 197 | GFP_KERNEL); |
198 | GFP_KERNEL); | 198 | if (!msg_ctx->msg) { |
199 | if (!msg_ctx->msg) { | 199 | rc = -ENOMEM; |
200 | rc = -ENOMEM; | 200 | printk(KERN_ERR "%s: Out of memory whilst attempting " |
201 | printk(KERN_ERR "%s: Out of memory whilst attempting " | 201 | "to kmalloc(%zd, GFP_KERNEL)\n", __func__, |
202 | "to kmalloc(%zd, GFP_KERNEL)\n", __func__, | 202 | (sizeof(*msg_ctx->msg) + data_size)); |
203 | (sizeof(*msg_ctx->msg) + data_size)); | 203 | goto out_unlock; |
204 | goto out_unlock; | 204 | } |
205 | } | ||
206 | } else | ||
207 | msg_ctx->msg = NULL; | ||
208 | msg_ctx->msg->index = msg_ctx->index; | 205 | msg_ctx->msg->index = msg_ctx->index; |
209 | msg_ctx->msg->data_len = data_size; | 206 | msg_ctx->msg->data_len = data_size; |
210 | msg_ctx->type = msg_type; | 207 | msg_ctx->type = msg_type; |
211 | if (data) { | 208 | memcpy(msg_ctx->msg->data, data, data_size); |
212 | memcpy(msg_ctx->msg->data, data, data_size); | 209 | msg_ctx->msg_size = (sizeof(*msg_ctx->msg) + data_size); |
213 | msg_ctx->msg_size = (sizeof(*msg_ctx->msg) + data_size); | ||
214 | } else | ||
215 | msg_ctx->msg_size = 0; | ||
216 | mutex_lock(&daemon->mux); | 210 | mutex_lock(&daemon->mux); |
217 | list_add_tail(&msg_ctx->daemon_out_list, &daemon->msg_ctx_out_queue); | 211 | list_add_tail(&msg_ctx->daemon_out_list, &daemon->msg_ctx_out_queue); |
218 | daemon->num_queued_msg_ctx++; | 212 | daemon->num_queued_msg_ctx++; |
@@ -418,18 +412,13 @@ ecryptfs_miscdev_write(struct file *file, const char __user *buf, | |||
418 | 412 | ||
419 | if (count == 0) | 413 | if (count == 0) |
420 | goto out; | 414 | goto out; |
421 | data = kmalloc(count, GFP_KERNEL); | 415 | |
422 | if (!data) { | 416 | data = memdup_user(buf, count); |
423 | printk(KERN_ERR "%s: Out of memory whilst attempting to " | 417 | if (IS_ERR(data)) { |
424 | "kmalloc([%zd], GFP_KERNEL)\n", __func__, count); | 418 | printk(KERN_ERR "%s: memdup_user returned error [%ld]\n", |
419 | __func__, PTR_ERR(data)); | ||
425 | goto out; | 420 | goto out; |
426 | } | 421 | } |
427 | rc = copy_from_user(data, buf, count); | ||
428 | if (rc) { | ||
429 | printk(KERN_ERR "%s: copy_from_user returned error [%d]\n", | ||
430 | __func__, rc); | ||
431 | goto out_free; | ||
432 | } | ||
433 | sz = count; | 422 | sz = count; |
434 | i = 0; | 423 | i = 0; |
435 | switch (data[i++]) { | 424 | switch (data[i++]) { |
diff --git a/fs/ecryptfs/mmap.c b/fs/ecryptfs/mmap.c index 46cec2b69796..5c6bab9786e3 100644 --- a/fs/ecryptfs/mmap.c +++ b/fs/ecryptfs/mmap.c | |||
@@ -449,6 +449,7 @@ int ecryptfs_write_inode_size_to_metadata(struct inode *ecryptfs_inode) | |||
449 | struct ecryptfs_crypt_stat *crypt_stat; | 449 | struct ecryptfs_crypt_stat *crypt_stat; |
450 | 450 | ||
451 | crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat; | 451 | crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat; |
452 | BUG_ON(!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)); | ||
452 | if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) | 453 | if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR) |
453 | return ecryptfs_write_inode_size_to_xattr(ecryptfs_inode); | 454 | return ecryptfs_write_inode_size_to_xattr(ecryptfs_inode); |
454 | else | 455 | else |
@@ -490,6 +491,16 @@ static int ecryptfs_write_end(struct file *file, | |||
490 | ecryptfs_printk(KERN_DEBUG, "Not a new file\n"); | 491 | ecryptfs_printk(KERN_DEBUG, "Not a new file\n"); |
491 | ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page" | 492 | ecryptfs_printk(KERN_DEBUG, "Calling fill_zeros_to_end_of_page" |
492 | "(page w/ index = [0x%.16x], to = [%d])\n", index, to); | 493 | "(page w/ index = [0x%.16x], to = [%d])\n", index, to); |
494 | if (!(crypt_stat->flags & ECRYPTFS_ENCRYPTED)) { | ||
495 | rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, page, 0, | ||
496 | to); | ||
497 | if (!rc) { | ||
498 | rc = copied; | ||
499 | fsstack_copy_inode_size(ecryptfs_inode, | ||
500 | ecryptfs_inode_to_lower(ecryptfs_inode)); | ||
501 | } | ||
502 | goto out; | ||
503 | } | ||
493 | /* Fills in zeros if 'to' goes beyond inode size */ | 504 | /* Fills in zeros if 'to' goes beyond inode size */ |
494 | rc = fill_zeros_to_end_of_page(page, to); | 505 | rc = fill_zeros_to_end_of_page(page, to); |
495 | if (rc) { | 506 | if (rc) { |
diff --git a/fs/ecryptfs/read_write.c b/fs/ecryptfs/read_write.c index 75c2ea9fee35..a137c6ea2fee 100644 --- a/fs/ecryptfs/read_write.c +++ b/fs/ecryptfs/read_write.c | |||
@@ -117,13 +117,15 @@ int ecryptfs_write(struct file *ecryptfs_file, char *data, loff_t offset, | |||
117 | size_t size) | 117 | size_t size) |
118 | { | 118 | { |
119 | struct page *ecryptfs_page; | 119 | struct page *ecryptfs_page; |
120 | struct ecryptfs_crypt_stat *crypt_stat; | ||
121 | struct inode *ecryptfs_inode = ecryptfs_file->f_dentry->d_inode; | ||
120 | char *ecryptfs_page_virt; | 122 | char *ecryptfs_page_virt; |
121 | loff_t ecryptfs_file_size = | 123 | loff_t ecryptfs_file_size = i_size_read(ecryptfs_inode); |
122 | i_size_read(ecryptfs_file->f_dentry->d_inode); | ||
123 | loff_t data_offset = 0; | 124 | loff_t data_offset = 0; |
124 | loff_t pos; | 125 | loff_t pos; |
125 | int rc = 0; | 126 | int rc = 0; |
126 | 127 | ||
128 | crypt_stat = &ecryptfs_inode_to_private(ecryptfs_inode)->crypt_stat; | ||
127 | /* | 129 | /* |
128 | * if we are writing beyond current size, then start pos | 130 | * if we are writing beyond current size, then start pos |
129 | * at the current size - we'll fill in zeros from there. | 131 | * at the current size - we'll fill in zeros from there. |
@@ -184,7 +186,13 @@ int ecryptfs_write(struct file *ecryptfs_file, char *data, loff_t offset, | |||
184 | flush_dcache_page(ecryptfs_page); | 186 | flush_dcache_page(ecryptfs_page); |
185 | SetPageUptodate(ecryptfs_page); | 187 | SetPageUptodate(ecryptfs_page); |
186 | unlock_page(ecryptfs_page); | 188 | unlock_page(ecryptfs_page); |
187 | rc = ecryptfs_encrypt_page(ecryptfs_page); | 189 | if (crypt_stat->flags & ECRYPTFS_ENCRYPTED) |
190 | rc = ecryptfs_encrypt_page(ecryptfs_page); | ||
191 | else | ||
192 | rc = ecryptfs_write_lower_page_segment(ecryptfs_inode, | ||
193 | ecryptfs_page, | ||
194 | start_offset_in_page, | ||
195 | data_offset); | ||
188 | page_cache_release(ecryptfs_page); | 196 | page_cache_release(ecryptfs_page); |
189 | if (rc) { | 197 | if (rc) { |
190 | printk(KERN_ERR "%s: Error encrypting " | 198 | printk(KERN_ERR "%s: Error encrypting " |
@@ -194,14 +202,16 @@ int ecryptfs_write(struct file *ecryptfs_file, char *data, loff_t offset, | |||
194 | pos += num_bytes; | 202 | pos += num_bytes; |
195 | } | 203 | } |
196 | if ((offset + size) > ecryptfs_file_size) { | 204 | if ((offset + size) > ecryptfs_file_size) { |
197 | i_size_write(ecryptfs_file->f_dentry->d_inode, (offset + size)); | 205 | i_size_write(ecryptfs_inode, (offset + size)); |
198 | rc = ecryptfs_write_inode_size_to_metadata( | 206 | if (crypt_stat->flags & ECRYPTFS_ENCRYPTED) { |
199 | ecryptfs_file->f_dentry->d_inode); | 207 | rc = ecryptfs_write_inode_size_to_metadata( |
200 | if (rc) { | 208 | ecryptfs_inode); |
201 | printk(KERN_ERR "Problem with " | 209 | if (rc) { |
202 | "ecryptfs_write_inode_size_to_metadata; " | 210 | printk(KERN_ERR "Problem with " |
203 | "rc = [%d]\n", rc); | 211 | "ecryptfs_write_inode_size_to_metadata; " |
204 | goto out; | 212 | "rc = [%d]\n", rc); |
213 | goto out; | ||
214 | } | ||
205 | } | 215 | } |
206 | } | 216 | } |
207 | out: | 217 | out: |
diff --git a/fs/ecryptfs/super.c b/fs/ecryptfs/super.c index c27ac2b358a1..fa4c7e7d15d9 100644 --- a/fs/ecryptfs/super.c +++ b/fs/ecryptfs/super.c | |||
@@ -170,7 +170,10 @@ static int ecryptfs_show_options(struct seq_file *m, struct vfsmount *mnt) | |||
170 | list_for_each_entry(walker, | 170 | list_for_each_entry(walker, |
171 | &mount_crypt_stat->global_auth_tok_list, | 171 | &mount_crypt_stat->global_auth_tok_list, |
172 | mount_crypt_stat_list) { | 172 | mount_crypt_stat_list) { |
173 | seq_printf(m, ",ecryptfs_sig=%s", walker->sig); | 173 | if (walker->flags & ECRYPTFS_AUTH_TOK_FNEK) |
174 | seq_printf(m, ",ecryptfs_fnek_sig=%s", walker->sig); | ||
175 | else | ||
176 | seq_printf(m, ",ecryptfs_sig=%s", walker->sig); | ||
174 | } | 177 | } |
175 | mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex); | 178 | mutex_unlock(&mount_crypt_stat->global_auth_tok_list_mutex); |
176 | 179 | ||
@@ -186,6 +189,8 @@ static int ecryptfs_show_options(struct seq_file *m, struct vfsmount *mnt) | |||
186 | seq_printf(m, ",ecryptfs_xattr_metadata"); | 189 | seq_printf(m, ",ecryptfs_xattr_metadata"); |
187 | if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) | 190 | if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) |
188 | seq_printf(m, ",ecryptfs_encrypted_view"); | 191 | seq_printf(m, ",ecryptfs_encrypted_view"); |
192 | if (mount_crypt_stat->flags & ECRYPTFS_UNLINK_SIGS) | ||
193 | seq_printf(m, ",ecryptfs_unlink_sigs"); | ||
189 | 194 | ||
190 | return 0; | 195 | return 0; |
191 | } | 196 | } |
@@ -1060,7 +1060,6 @@ EXPORT_SYMBOL(install_exec_creds); | |||
1060 | int check_unsafe_exec(struct linux_binprm *bprm) | 1060 | int check_unsafe_exec(struct linux_binprm *bprm) |
1061 | { | 1061 | { |
1062 | struct task_struct *p = current, *t; | 1062 | struct task_struct *p = current, *t; |
1063 | unsigned long flags; | ||
1064 | unsigned n_fs; | 1063 | unsigned n_fs; |
1065 | int res = 0; | 1064 | int res = 0; |
1066 | 1065 | ||
@@ -1068,21 +1067,22 @@ int check_unsafe_exec(struct linux_binprm *bprm) | |||
1068 | 1067 | ||
1069 | n_fs = 1; | 1068 | n_fs = 1; |
1070 | write_lock(&p->fs->lock); | 1069 | write_lock(&p->fs->lock); |
1071 | lock_task_sighand(p, &flags); | 1070 | rcu_read_lock(); |
1072 | for (t = next_thread(p); t != p; t = next_thread(t)) { | 1071 | for (t = next_thread(p); t != p; t = next_thread(t)) { |
1073 | if (t->fs == p->fs) | 1072 | if (t->fs == p->fs) |
1074 | n_fs++; | 1073 | n_fs++; |
1075 | } | 1074 | } |
1075 | rcu_read_unlock(); | ||
1076 | 1076 | ||
1077 | if (p->fs->users > n_fs) { | 1077 | if (p->fs->users > n_fs) { |
1078 | bprm->unsafe |= LSM_UNSAFE_SHARE; | 1078 | bprm->unsafe |= LSM_UNSAFE_SHARE; |
1079 | } else { | 1079 | } else { |
1080 | if (p->fs->in_exec) | 1080 | res = -EAGAIN; |
1081 | res = -EAGAIN; | 1081 | if (!p->fs->in_exec) { |
1082 | p->fs->in_exec = 1; | 1082 | p->fs->in_exec = 1; |
1083 | res = 1; | ||
1084 | } | ||
1083 | } | 1085 | } |
1084 | |||
1085 | unlock_task_sighand(p, &flags); | ||
1086 | write_unlock(&p->fs->lock); | 1086 | write_unlock(&p->fs->lock); |
1087 | 1087 | ||
1088 | return res; | 1088 | return res; |
@@ -1284,6 +1284,7 @@ int do_execve(char * filename, | |||
1284 | struct linux_binprm *bprm; | 1284 | struct linux_binprm *bprm; |
1285 | struct file *file; | 1285 | struct file *file; |
1286 | struct files_struct *displaced; | 1286 | struct files_struct *displaced; |
1287 | bool clear_in_exec; | ||
1287 | int retval; | 1288 | int retval; |
1288 | 1289 | ||
1289 | retval = unshare_files(&displaced); | 1290 | retval = unshare_files(&displaced); |
@@ -1306,8 +1307,9 @@ int do_execve(char * filename, | |||
1306 | goto out_unlock; | 1307 | goto out_unlock; |
1307 | 1308 | ||
1308 | retval = check_unsafe_exec(bprm); | 1309 | retval = check_unsafe_exec(bprm); |
1309 | if (retval) | 1310 | if (retval < 0) |
1310 | goto out_unlock; | 1311 | goto out_unlock; |
1312 | clear_in_exec = retval; | ||
1311 | 1313 | ||
1312 | file = open_exec(filename); | 1314 | file = open_exec(filename); |
1313 | retval = PTR_ERR(file); | 1315 | retval = PTR_ERR(file); |
@@ -1355,9 +1357,7 @@ int do_execve(char * filename, | |||
1355 | goto out; | 1357 | goto out; |
1356 | 1358 | ||
1357 | /* execve succeeded */ | 1359 | /* execve succeeded */ |
1358 | write_lock(¤t->fs->lock); | ||
1359 | current->fs->in_exec = 0; | 1360 | current->fs->in_exec = 0; |
1360 | write_unlock(¤t->fs->lock); | ||
1361 | current->in_execve = 0; | 1361 | current->in_execve = 0; |
1362 | mutex_unlock(¤t->cred_exec_mutex); | 1362 | mutex_unlock(¤t->cred_exec_mutex); |
1363 | acct_update_integrals(current); | 1363 | acct_update_integrals(current); |
@@ -1377,9 +1377,8 @@ out_file: | |||
1377 | } | 1377 | } |
1378 | 1378 | ||
1379 | out_unmark: | 1379 | out_unmark: |
1380 | write_lock(¤t->fs->lock); | 1380 | if (clear_in_exec) |
1381 | current->fs->in_exec = 0; | 1381 | current->fs->in_exec = 0; |
1382 | write_unlock(¤t->fs->lock); | ||
1383 | 1382 | ||
1384 | out_unlock: | 1383 | out_unlock: |
1385 | current->in_execve = 0; | 1384 | current->in_execve = 0; |
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index f983225266dc..5c4afe652245 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c | |||
@@ -1395,8 +1395,10 @@ static ssize_t ext2_quota_write(struct super_block *sb, int type, | |||
1395 | blk++; | 1395 | blk++; |
1396 | } | 1396 | } |
1397 | out: | 1397 | out: |
1398 | if (len == towrite) | 1398 | if (len == towrite) { |
1399 | mutex_unlock(&inode->i_mutex); | ||
1399 | return err; | 1400 | return err; |
1401 | } | ||
1400 | if (inode->i_size < off+len-towrite) | 1402 | if (inode->i_size < off+len-towrite) |
1401 | i_size_write(inode, off+len-towrite); | 1403 | i_size_write(inode, off+len-towrite); |
1402 | inode->i_version++; | 1404 | inode->i_version++; |
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 2a1cb0979768..e40332158340 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -326,11 +326,14 @@ ext4_ext_max_entries(struct inode *inode, int depth) | |||
326 | 326 | ||
327 | static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) | 327 | static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) |
328 | { | 328 | { |
329 | ext4_fsblk_t block = ext_pblock(ext); | 329 | ext4_fsblk_t block = ext_pblock(ext), valid_block; |
330 | int len = ext4_ext_get_actual_len(ext); | 330 | int len = ext4_ext_get_actual_len(ext); |
331 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; | 331 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; |
332 | if (unlikely(block < le32_to_cpu(es->s_first_data_block) || | 332 | |
333 | ((block + len) > ext4_blocks_count(es)))) | 333 | valid_block = le32_to_cpu(es->s_first_data_block) + |
334 | EXT4_SB(inode->i_sb)->s_gdb_count; | ||
335 | if (unlikely(block <= valid_block || | ||
336 | ((block + len) > ext4_blocks_count(es)))) | ||
334 | return 0; | 337 | return 0; |
335 | else | 338 | else |
336 | return 1; | 339 | return 1; |
@@ -339,10 +342,13 @@ static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) | |||
339 | static int ext4_valid_extent_idx(struct inode *inode, | 342 | static int ext4_valid_extent_idx(struct inode *inode, |
340 | struct ext4_extent_idx *ext_idx) | 343 | struct ext4_extent_idx *ext_idx) |
341 | { | 344 | { |
342 | ext4_fsblk_t block = idx_pblock(ext_idx); | 345 | ext4_fsblk_t block = idx_pblock(ext_idx), valid_block; |
343 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; | 346 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; |
344 | if (unlikely(block < le32_to_cpu(es->s_first_data_block) || | 347 | |
345 | (block >= ext4_blocks_count(es)))) | 348 | valid_block = le32_to_cpu(es->s_first_data_block) + |
349 | EXT4_SB(inode->i_sb)->s_gdb_count; | ||
350 | if (unlikely(block <= valid_block || | ||
351 | (block >= ext4_blocks_count(es)))) | ||
346 | return 0; | 352 | return 0; |
347 | else | 353 | else |
348 | return 1; | 354 | return 1; |
diff --git a/fs/ext4/ialloc.c b/fs/ext4/ialloc.c index 47b84e8df568..f18e0a08a6b5 100644 --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c | |||
@@ -585,6 +585,7 @@ static int find_group_orlov(struct super_block *sb, struct inode *parent, | |||
585 | fallback: | 585 | fallback: |
586 | ngroups = sbi->s_groups_count; | 586 | ngroups = sbi->s_groups_count; |
587 | avefreei = freei / ngroups; | 587 | avefreei = freei / ngroups; |
588 | fallback_retry: | ||
588 | parent_group = EXT4_I(parent)->i_block_group; | 589 | parent_group = EXT4_I(parent)->i_block_group; |
589 | for (i = 0; i < ngroups; i++) { | 590 | for (i = 0; i < ngroups; i++) { |
590 | grp = (parent_group + i) % ngroups; | 591 | grp = (parent_group + i) % ngroups; |
@@ -602,7 +603,7 @@ fallback: | |||
602 | * filesystems the above test can fail to find any blockgroups | 603 | * filesystems the above test can fail to find any blockgroups |
603 | */ | 604 | */ |
604 | avefreei = 0; | 605 | avefreei = 0; |
605 | goto fallback; | 606 | goto fallback_retry; |
606 | } | 607 | } |
607 | 608 | ||
608 | return -1; | 609 | return -1; |
@@ -831,11 +832,12 @@ struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode) | |||
831 | ret2 = find_group_flex(sb, dir, &group); | 832 | ret2 = find_group_flex(sb, dir, &group); |
832 | if (ret2 == -1) { | 833 | if (ret2 == -1) { |
833 | ret2 = find_group_other(sb, dir, &group, mode); | 834 | ret2 = find_group_other(sb, dir, &group, mode); |
834 | if (ret2 == 0 && once) | 835 | if (ret2 == 0 && once) { |
835 | once = 0; | 836 | once = 0; |
836 | printk(KERN_NOTICE "ext4: find_group_flex " | 837 | printk(KERN_NOTICE "ext4: find_group_flex " |
837 | "failed, fallback succeeded dir %lu\n", | 838 | "failed, fallback succeeded dir %lu\n", |
838 | dir->i_ino); | 839 | dir->i_ino); |
840 | } | ||
839 | } | 841 | } |
840 | goto got_group; | 842 | goto got_group; |
841 | } | 843 | } |
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index c6bd6ced3bb7..e91f978c7f12 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -4357,11 +4357,9 @@ struct inode *ext4_iget(struct super_block *sb, unsigned long ino) | |||
4357 | ei->i_flags = le32_to_cpu(raw_inode->i_flags); | 4357 | ei->i_flags = le32_to_cpu(raw_inode->i_flags); |
4358 | inode->i_blocks = ext4_inode_blocks(raw_inode, ei); | 4358 | inode->i_blocks = ext4_inode_blocks(raw_inode, ei); |
4359 | ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); | 4359 | ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); |
4360 | if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != | 4360 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) |
4361 | cpu_to_le32(EXT4_OS_HURD)) { | ||
4362 | ei->i_file_acl |= | 4361 | ei->i_file_acl |= |
4363 | ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; | 4362 | ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; |
4364 | } | ||
4365 | inode->i_size = ext4_isize(raw_inode); | 4363 | inode->i_size = ext4_isize(raw_inode); |
4366 | ei->i_disksize = inode->i_size; | 4364 | ei->i_disksize = inode->i_size; |
4367 | inode->i_generation = le32_to_cpu(raw_inode->i_generation); | 4365 | inode->i_generation = le32_to_cpu(raw_inode->i_generation); |
@@ -4409,9 +4407,23 @@ struct inode *ext4_iget(struct super_block *sb, unsigned long ino) | |||
4409 | (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; | 4407 | (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; |
4410 | } | 4408 | } |
4411 | 4409 | ||
4412 | if (ei->i_flags & EXT4_EXTENTS_FL) { | 4410 | ret = 0; |
4413 | /* Validate extent which is part of inode */ | 4411 | if (ei->i_file_acl && |
4414 | ret = ext4_ext_check_inode(inode); | 4412 | ((ei->i_file_acl < |
4413 | (le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block) + | ||
4414 | EXT4_SB(sb)->s_gdb_count)) || | ||
4415 | (ei->i_file_acl >= ext4_blocks_count(EXT4_SB(sb)->s_es)))) { | ||
4416 | ext4_error(sb, __func__, | ||
4417 | "bad extended attribute block %llu in inode #%lu", | ||
4418 | ei->i_file_acl, inode->i_ino); | ||
4419 | ret = -EIO; | ||
4420 | goto bad_inode; | ||
4421 | } else if (ei->i_flags & EXT4_EXTENTS_FL) { | ||
4422 | if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || | ||
4423 | (S_ISLNK(inode->i_mode) && | ||
4424 | !ext4_inode_is_fast_symlink(inode))) | ||
4425 | /* Validate extent which is part of inode */ | ||
4426 | ret = ext4_ext_check_inode(inode); | ||
4415 | } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || | 4427 | } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
4416 | (S_ISLNK(inode->i_mode) && | 4428 | (S_ISLNK(inode->i_mode) && |
4417 | !ext4_inode_is_fast_symlink(inode))) { | 4429 | !ext4_inode_is_fast_symlink(inode))) { |
diff --git a/fs/filesystems.c b/fs/filesystems.c index 1aa70260e6d1..a24c58e181db 100644 --- a/fs/filesystems.c +++ b/fs/filesystems.c | |||
@@ -199,7 +199,7 @@ SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2) | |||
199 | return retval; | 199 | return retval; |
200 | } | 200 | } |
201 | 201 | ||
202 | int get_filesystem_list(char * buf) | 202 | int __init get_filesystem_list(char *buf) |
203 | { | 203 | { |
204 | int len = 0; | 204 | int len = 0; |
205 | struct file_system_type * tmp; | 205 | struct file_system_type * tmp; |
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c index bf23a62aa925..70f87f43afa2 100644 --- a/fs/gfs2/glops.c +++ b/fs/gfs2/glops.c | |||
@@ -156,6 +156,12 @@ static void inode_go_sync(struct gfs2_glock *gl) | |||
156 | error = filemap_fdatawait(metamapping); | 156 | error = filemap_fdatawait(metamapping); |
157 | mapping_set_error(metamapping, error); | 157 | mapping_set_error(metamapping, error); |
158 | gfs2_ail_empty_gl(gl); | 158 | gfs2_ail_empty_gl(gl); |
159 | /* | ||
160 | * Writeback of the data mapping may cause the dirty flag to be set | ||
161 | * so we have to clear it again here. | ||
162 | */ | ||
163 | smp_mb__before_clear_bit(); | ||
164 | clear_bit(GLF_DIRTY, &gl->gl_flags); | ||
159 | } | 165 | } |
160 | 166 | ||
161 | /** | 167 | /** |
diff --git a/fs/gfs2/ops_file.c b/fs/gfs2/ops_file.c index 101caf3ee861..5d82e91887e3 100644 --- a/fs/gfs2/ops_file.c +++ b/fs/gfs2/ops_file.c | |||
@@ -413,7 +413,9 @@ out_unlock: | |||
413 | gfs2_glock_dq(&gh); | 413 | gfs2_glock_dq(&gh); |
414 | out: | 414 | out: |
415 | gfs2_holder_uninit(&gh); | 415 | gfs2_holder_uninit(&gh); |
416 | if (ret) | 416 | if (ret == -ENOMEM) |
417 | ret = VM_FAULT_OOM; | ||
418 | else if (ret) | ||
417 | ret = VM_FAULT_SIGBUS; | 419 | ret = VM_FAULT_SIGBUS; |
418 | return ret; | 420 | return ret; |
419 | } | 421 | } |
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index f03d024038ea..565038243fa2 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c | |||
@@ -212,8 +212,7 @@ static u32 gfs2_bitfit(const u8 *buf, const unsigned int len, | |||
212 | if (tmp == 0) | 212 | if (tmp == 0) |
213 | return BFITNOENT; | 213 | return BFITNOENT; |
214 | ptr--; | 214 | ptr--; |
215 | bit = fls64(tmp); | 215 | bit = __ffs64(tmp); |
216 | bit--; /* fls64 always adds one to the bit count */ | ||
217 | bit /= 2; /* two bits per entry in the bitmap */ | 216 | bit /= 2; /* two bits per entry in the bitmap */ |
218 | return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit; | 217 | return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit; |
219 | } | 218 | } |
@@ -1445,10 +1444,12 @@ static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart, | |||
1445 | u64 gfs2_alloc_block(struct gfs2_inode *ip, unsigned int *n) | 1444 | u64 gfs2_alloc_block(struct gfs2_inode *ip, unsigned int *n) |
1446 | { | 1445 | { |
1447 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 1446 | struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); |
1447 | struct buffer_head *dibh; | ||
1448 | struct gfs2_alloc *al = ip->i_alloc; | 1448 | struct gfs2_alloc *al = ip->i_alloc; |
1449 | struct gfs2_rgrpd *rgd = al->al_rgd; | 1449 | struct gfs2_rgrpd *rgd = al->al_rgd; |
1450 | u32 goal, blk; | 1450 | u32 goal, blk; |
1451 | u64 block; | 1451 | u64 block; |
1452 | int error; | ||
1452 | 1453 | ||
1453 | if (rgrp_contains_block(rgd, ip->i_goal)) | 1454 | if (rgrp_contains_block(rgd, ip->i_goal)) |
1454 | goal = ip->i_goal - rgd->rd_data0; | 1455 | goal = ip->i_goal - rgd->rd_data0; |
@@ -1461,7 +1462,13 @@ u64 gfs2_alloc_block(struct gfs2_inode *ip, unsigned int *n) | |||
1461 | rgd->rd_last_alloc = blk; | 1462 | rgd->rd_last_alloc = blk; |
1462 | block = rgd->rd_data0 + blk; | 1463 | block = rgd->rd_data0 + blk; |
1463 | ip->i_goal = block; | 1464 | ip->i_goal = block; |
1464 | 1465 | error = gfs2_meta_inode_buffer(ip, &dibh); | |
1466 | if (error == 0) { | ||
1467 | struct gfs2_dinode *di = (struct gfs2_dinode *)dibh->b_data; | ||
1468 | gfs2_trans_add_bh(ip->i_gl, dibh, 1); | ||
1469 | di->di_goal_meta = di->di_goal_data = cpu_to_be64(ip->i_goal); | ||
1470 | brelse(dibh); | ||
1471 | } | ||
1465 | gfs2_assert_withdraw(sdp, rgd->rd_free >= *n); | 1472 | gfs2_assert_withdraw(sdp, rgd->rd_free >= *n); |
1466 | rgd->rd_free -= *n; | 1473 | rgd->rd_free -= *n; |
1467 | 1474 | ||
diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c index 23a3c76711e0..153d9681192b 100644 --- a/fs/hugetlbfs/inode.c +++ b/fs/hugetlbfs/inode.c | |||
@@ -26,7 +26,6 @@ | |||
26 | #include <linux/pagevec.h> | 26 | #include <linux/pagevec.h> |
27 | #include <linux/parser.h> | 27 | #include <linux/parser.h> |
28 | #include <linux/mman.h> | 28 | #include <linux/mman.h> |
29 | #include <linux/quotaops.h> | ||
30 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
31 | #include <linux/dnotify.h> | 30 | #include <linux/dnotify.h> |
32 | #include <linux/statfs.h> | 31 | #include <linux/statfs.h> |
@@ -842,7 +841,7 @@ hugetlbfs_parse_options(char *options, struct hugetlbfs_config *pconfig) | |||
842 | bad_val: | 841 | bad_val: |
843 | printk(KERN_ERR "hugetlbfs: Bad value '%s' for mount option '%s'\n", | 842 | printk(KERN_ERR "hugetlbfs: Bad value '%s' for mount option '%s'\n", |
844 | args[0].from, p); | 843 | args[0].from, p); |
845 | return 1; | 844 | return -EINVAL; |
846 | } | 845 | } |
847 | 846 | ||
848 | static int | 847 | static int |
diff --git a/fs/jbd/commit.c b/fs/jbd/commit.c index a8e8513a78a9..06560c520f49 100644 --- a/fs/jbd/commit.c +++ b/fs/jbd/commit.c | |||
@@ -502,7 +502,7 @@ void journal_commit_transaction(journal_t *journal) | |||
502 | err = 0; | 502 | err = 0; |
503 | } | 503 | } |
504 | 504 | ||
505 | journal_write_revoke_records(journal, commit_transaction); | 505 | journal_write_revoke_records(journal, commit_transaction, write_op); |
506 | 506 | ||
507 | /* | 507 | /* |
508 | * If we found any dirty or locked buffers, then we should have | 508 | * If we found any dirty or locked buffers, then we should have |
diff --git a/fs/jbd/revoke.c b/fs/jbd/revoke.c index 3e9afc2a91d2..da6cd9bdaabc 100644 --- a/fs/jbd/revoke.c +++ b/fs/jbd/revoke.c | |||
@@ -86,6 +86,7 @@ | |||
86 | #include <linux/slab.h> | 86 | #include <linux/slab.h> |
87 | #include <linux/list.h> | 87 | #include <linux/list.h> |
88 | #include <linux/init.h> | 88 | #include <linux/init.h> |
89 | #include <linux/bio.h> | ||
89 | #endif | 90 | #endif |
90 | #include <linux/log2.h> | 91 | #include <linux/log2.h> |
91 | 92 | ||
@@ -118,8 +119,8 @@ struct jbd_revoke_table_s | |||
118 | #ifdef __KERNEL__ | 119 | #ifdef __KERNEL__ |
119 | static void write_one_revoke_record(journal_t *, transaction_t *, | 120 | static void write_one_revoke_record(journal_t *, transaction_t *, |
120 | struct journal_head **, int *, | 121 | struct journal_head **, int *, |
121 | struct jbd_revoke_record_s *); | 122 | struct jbd_revoke_record_s *, int); |
122 | static void flush_descriptor(journal_t *, struct journal_head *, int); | 123 | static void flush_descriptor(journal_t *, struct journal_head *, int, int); |
123 | #endif | 124 | #endif |
124 | 125 | ||
125 | /* Utility functions to maintain the revoke table */ | 126 | /* Utility functions to maintain the revoke table */ |
@@ -500,7 +501,7 @@ void journal_switch_revoke_table(journal_t *journal) | |||
500 | * revoke hash, deleting the entries as we go. | 501 | * revoke hash, deleting the entries as we go. |
501 | */ | 502 | */ |
502 | void journal_write_revoke_records(journal_t *journal, | 503 | void journal_write_revoke_records(journal_t *journal, |
503 | transaction_t *transaction) | 504 | transaction_t *transaction, int write_op) |
504 | { | 505 | { |
505 | struct journal_head *descriptor; | 506 | struct journal_head *descriptor; |
506 | struct jbd_revoke_record_s *record; | 507 | struct jbd_revoke_record_s *record; |
@@ -524,14 +525,14 @@ void journal_write_revoke_records(journal_t *journal, | |||
524 | hash_list->next; | 525 | hash_list->next; |
525 | write_one_revoke_record(journal, transaction, | 526 | write_one_revoke_record(journal, transaction, |
526 | &descriptor, &offset, | 527 | &descriptor, &offset, |
527 | record); | 528 | record, write_op); |
528 | count++; | 529 | count++; |
529 | list_del(&record->hash); | 530 | list_del(&record->hash); |
530 | kmem_cache_free(revoke_record_cache, record); | 531 | kmem_cache_free(revoke_record_cache, record); |
531 | } | 532 | } |
532 | } | 533 | } |
533 | if (descriptor) | 534 | if (descriptor) |
534 | flush_descriptor(journal, descriptor, offset); | 535 | flush_descriptor(journal, descriptor, offset, write_op); |
535 | jbd_debug(1, "Wrote %d revoke records\n", count); | 536 | jbd_debug(1, "Wrote %d revoke records\n", count); |
536 | } | 537 | } |
537 | 538 | ||
@@ -544,7 +545,8 @@ static void write_one_revoke_record(journal_t *journal, | |||
544 | transaction_t *transaction, | 545 | transaction_t *transaction, |
545 | struct journal_head **descriptorp, | 546 | struct journal_head **descriptorp, |
546 | int *offsetp, | 547 | int *offsetp, |
547 | struct jbd_revoke_record_s *record) | 548 | struct jbd_revoke_record_s *record, |
549 | int write_op) | ||
548 | { | 550 | { |
549 | struct journal_head *descriptor; | 551 | struct journal_head *descriptor; |
550 | int offset; | 552 | int offset; |
@@ -563,7 +565,7 @@ static void write_one_revoke_record(journal_t *journal, | |||
563 | /* Make sure we have a descriptor with space left for the record */ | 565 | /* Make sure we have a descriptor with space left for the record */ |
564 | if (descriptor) { | 566 | if (descriptor) { |
565 | if (offset == journal->j_blocksize) { | 567 | if (offset == journal->j_blocksize) { |
566 | flush_descriptor(journal, descriptor, offset); | 568 | flush_descriptor(journal, descriptor, offset, write_op); |
567 | descriptor = NULL; | 569 | descriptor = NULL; |
568 | } | 570 | } |
569 | } | 571 | } |
@@ -600,7 +602,7 @@ static void write_one_revoke_record(journal_t *journal, | |||
600 | 602 | ||
601 | static void flush_descriptor(journal_t *journal, | 603 | static void flush_descriptor(journal_t *journal, |
602 | struct journal_head *descriptor, | 604 | struct journal_head *descriptor, |
603 | int offset) | 605 | int offset, int write_op) |
604 | { | 606 | { |
605 | journal_revoke_header_t *header; | 607 | journal_revoke_header_t *header; |
606 | struct buffer_head *bh = jh2bh(descriptor); | 608 | struct buffer_head *bh = jh2bh(descriptor); |
@@ -615,7 +617,7 @@ static void flush_descriptor(journal_t *journal, | |||
615 | set_buffer_jwrite(bh); | 617 | set_buffer_jwrite(bh); |
616 | BUFFER_TRACE(bh, "write"); | 618 | BUFFER_TRACE(bh, "write"); |
617 | set_buffer_dirty(bh); | 619 | set_buffer_dirty(bh); |
618 | ll_rw_block(SWRITE, 1, &bh); | 620 | ll_rw_block((write_op == WRITE) ? SWRITE : SWRITE_SYNC_PLUG, 1, &bh); |
619 | } | 621 | } |
620 | #endif | 622 | #endif |
621 | 623 | ||
diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 073c8c3df7cd..0b7d3b8226fd 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c | |||
@@ -506,7 +506,8 @@ void jbd2_journal_commit_transaction(journal_t *journal) | |||
506 | if (err) | 506 | if (err) |
507 | jbd2_journal_abort(journal, err); | 507 | jbd2_journal_abort(journal, err); |
508 | 508 | ||
509 | jbd2_journal_write_revoke_records(journal, commit_transaction); | 509 | jbd2_journal_write_revoke_records(journal, commit_transaction, |
510 | write_op); | ||
510 | 511 | ||
511 | jbd_debug(3, "JBD: commit phase 2\n"); | 512 | jbd_debug(3, "JBD: commit phase 2\n"); |
512 | 513 | ||
diff --git a/fs/jbd2/revoke.c b/fs/jbd2/revoke.c index bbe6d592d8b3..a360b06af2e3 100644 --- a/fs/jbd2/revoke.c +++ b/fs/jbd2/revoke.c | |||
@@ -86,6 +86,7 @@ | |||
86 | #include <linux/slab.h> | 86 | #include <linux/slab.h> |
87 | #include <linux/list.h> | 87 | #include <linux/list.h> |
88 | #include <linux/init.h> | 88 | #include <linux/init.h> |
89 | #include <linux/bio.h> | ||
89 | #endif | 90 | #endif |
90 | #include <linux/log2.h> | 91 | #include <linux/log2.h> |
91 | 92 | ||
@@ -118,8 +119,8 @@ struct jbd2_revoke_table_s | |||
118 | #ifdef __KERNEL__ | 119 | #ifdef __KERNEL__ |
119 | static void write_one_revoke_record(journal_t *, transaction_t *, | 120 | static void write_one_revoke_record(journal_t *, transaction_t *, |
120 | struct journal_head **, int *, | 121 | struct journal_head **, int *, |
121 | struct jbd2_revoke_record_s *); | 122 | struct jbd2_revoke_record_s *, int); |
122 | static void flush_descriptor(journal_t *, struct journal_head *, int); | 123 | static void flush_descriptor(journal_t *, struct journal_head *, int, int); |
123 | #endif | 124 | #endif |
124 | 125 | ||
125 | /* Utility functions to maintain the revoke table */ | 126 | /* Utility functions to maintain the revoke table */ |
@@ -499,7 +500,8 @@ void jbd2_journal_switch_revoke_table(journal_t *journal) | |||
499 | * revoke hash, deleting the entries as we go. | 500 | * revoke hash, deleting the entries as we go. |
500 | */ | 501 | */ |
501 | void jbd2_journal_write_revoke_records(journal_t *journal, | 502 | void jbd2_journal_write_revoke_records(journal_t *journal, |
502 | transaction_t *transaction) | 503 | transaction_t *transaction, |
504 | int write_op) | ||
503 | { | 505 | { |
504 | struct journal_head *descriptor; | 506 | struct journal_head *descriptor; |
505 | struct jbd2_revoke_record_s *record; | 507 | struct jbd2_revoke_record_s *record; |
@@ -523,14 +525,14 @@ void jbd2_journal_write_revoke_records(journal_t *journal, | |||
523 | hash_list->next; | 525 | hash_list->next; |
524 | write_one_revoke_record(journal, transaction, | 526 | write_one_revoke_record(journal, transaction, |
525 | &descriptor, &offset, | 527 | &descriptor, &offset, |
526 | record); | 528 | record, write_op); |
527 | count++; | 529 | count++; |
528 | list_del(&record->hash); | 530 | list_del(&record->hash); |
529 | kmem_cache_free(jbd2_revoke_record_cache, record); | 531 | kmem_cache_free(jbd2_revoke_record_cache, record); |
530 | } | 532 | } |
531 | } | 533 | } |
532 | if (descriptor) | 534 | if (descriptor) |
533 | flush_descriptor(journal, descriptor, offset); | 535 | flush_descriptor(journal, descriptor, offset, write_op); |
534 | jbd_debug(1, "Wrote %d revoke records\n", count); | 536 | jbd_debug(1, "Wrote %d revoke records\n", count); |
535 | } | 537 | } |
536 | 538 | ||
@@ -543,7 +545,8 @@ static void write_one_revoke_record(journal_t *journal, | |||
543 | transaction_t *transaction, | 545 | transaction_t *transaction, |
544 | struct journal_head **descriptorp, | 546 | struct journal_head **descriptorp, |
545 | int *offsetp, | 547 | int *offsetp, |
546 | struct jbd2_revoke_record_s *record) | 548 | struct jbd2_revoke_record_s *record, |
549 | int write_op) | ||
547 | { | 550 | { |
548 | struct journal_head *descriptor; | 551 | struct journal_head *descriptor; |
549 | int offset; | 552 | int offset; |
@@ -562,7 +565,7 @@ static void write_one_revoke_record(journal_t *journal, | |||
562 | /* Make sure we have a descriptor with space left for the record */ | 565 | /* Make sure we have a descriptor with space left for the record */ |
563 | if (descriptor) { | 566 | if (descriptor) { |
564 | if (offset == journal->j_blocksize) { | 567 | if (offset == journal->j_blocksize) { |
565 | flush_descriptor(journal, descriptor, offset); | 568 | flush_descriptor(journal, descriptor, offset, write_op); |
566 | descriptor = NULL; | 569 | descriptor = NULL; |
567 | } | 570 | } |
568 | } | 571 | } |
@@ -607,7 +610,7 @@ static void write_one_revoke_record(journal_t *journal, | |||
607 | 610 | ||
608 | static void flush_descriptor(journal_t *journal, | 611 | static void flush_descriptor(journal_t *journal, |
609 | struct journal_head *descriptor, | 612 | struct journal_head *descriptor, |
610 | int offset) | 613 | int offset, int write_op) |
611 | { | 614 | { |
612 | jbd2_journal_revoke_header_t *header; | 615 | jbd2_journal_revoke_header_t *header; |
613 | struct buffer_head *bh = jh2bh(descriptor); | 616 | struct buffer_head *bh = jh2bh(descriptor); |
@@ -622,7 +625,7 @@ static void flush_descriptor(journal_t *journal, | |||
622 | set_buffer_jwrite(bh); | 625 | set_buffer_jwrite(bh); |
623 | BUFFER_TRACE(bh, "write"); | 626 | BUFFER_TRACE(bh, "write"); |
624 | set_buffer_dirty(bh); | 627 | set_buffer_dirty(bh); |
625 | ll_rw_block(SWRITE, 1, &bh); | 628 | ll_rw_block((write_op == WRITE) ? SWRITE : SWRITE_SYNC_PLUG, 1, &bh); |
626 | } | 629 | } |
627 | #endif | 630 | #endif |
628 | 631 | ||
diff --git a/fs/namei.c b/fs/namei.c index b8433ebfae05..78f253cd2d4f 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -1248,6 +1248,8 @@ struct dentry *lookup_one_len(const char *name, struct dentry *base, int len) | |||
1248 | int err; | 1248 | int err; |
1249 | struct qstr this; | 1249 | struct qstr this; |
1250 | 1250 | ||
1251 | WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex)); | ||
1252 | |||
1251 | err = __lookup_one_len(name, &this, base, len); | 1253 | err = __lookup_one_len(name, &this, base, len); |
1252 | if (err) | 1254 | if (err) |
1253 | return ERR_PTR(err); | 1255 | return ERR_PTR(err); |
diff --git a/fs/namespace.c b/fs/namespace.c index d9138f81ec10..41196209a906 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1377,7 +1377,7 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt, | |||
1377 | if (parent_path) { | 1377 | if (parent_path) { |
1378 | detach_mnt(source_mnt, parent_path); | 1378 | detach_mnt(source_mnt, parent_path); |
1379 | attach_mnt(source_mnt, path); | 1379 | attach_mnt(source_mnt, path); |
1380 | touch_mnt_namespace(current->nsproxy->mnt_ns); | 1380 | touch_mnt_namespace(parent_path->mnt->mnt_ns); |
1381 | } else { | 1381 | } else { |
1382 | mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt); | 1382 | mnt_set_mountpoint(dest_mnt, dest_dentry, source_mnt); |
1383 | commit_tree(source_mnt); | 1383 | commit_tree(source_mnt); |
diff --git a/fs/ncpfs/ioctl.c b/fs/ncpfs/ioctl.c index f54360f50a9c..fa038df63ac8 100644 --- a/fs/ncpfs/ioctl.c +++ b/fs/ncpfs/ioctl.c | |||
@@ -660,13 +660,10 @@ outrel: | |||
660 | if (user.object_name_len > NCP_OBJECT_NAME_MAX_LEN) | 660 | if (user.object_name_len > NCP_OBJECT_NAME_MAX_LEN) |
661 | return -ENOMEM; | 661 | return -ENOMEM; |
662 | if (user.object_name_len) { | 662 | if (user.object_name_len) { |
663 | newname = kmalloc(user.object_name_len, GFP_USER); | 663 | newname = memdup_user(user.object_name, |
664 | if (!newname) | 664 | user.object_name_len); |
665 | return -ENOMEM; | 665 | if (IS_ERR(newname)) |
666 | if (copy_from_user(newname, user.object_name, user.object_name_len)) { | 666 | return PTR_ERR(newname); |
667 | kfree(newname); | ||
668 | return -EFAULT; | ||
669 | } | ||
670 | } else { | 667 | } else { |
671 | newname = NULL; | 668 | newname = NULL; |
672 | } | 669 | } |
@@ -760,13 +757,9 @@ outrel: | |||
760 | if (user.len > NCP_PRIVATE_DATA_MAX_LEN) | 757 | if (user.len > NCP_PRIVATE_DATA_MAX_LEN) |
761 | return -ENOMEM; | 758 | return -ENOMEM; |
762 | if (user.len) { | 759 | if (user.len) { |
763 | new = kmalloc(user.len, GFP_USER); | 760 | new = memdup_user(user.data, user.len); |
764 | if (!new) | 761 | if (IS_ERR(new)) |
765 | return -ENOMEM; | 762 | return PTR_ERR(new); |
766 | if (copy_from_user(new, user.data, user.len)) { | ||
767 | kfree(new); | ||
768 | return -EFAULT; | ||
769 | } | ||
770 | } else { | 763 | } else { |
771 | new = NULL; | 764 | new = NULL; |
772 | } | 765 | } |
diff --git a/fs/nfs/nfs3xdr.c b/fs/nfs/nfs3xdr.c index e6a1932c7110..35869a4921f1 100644 --- a/fs/nfs/nfs3xdr.c +++ b/fs/nfs/nfs3xdr.c | |||
@@ -713,7 +713,8 @@ nfs3_xdr_setaclargs(struct rpc_rqst *req, __be32 *p, | |||
713 | if (args->npages != 0) | 713 | if (args->npages != 0) |
714 | xdr_encode_pages(buf, args->pages, 0, args->len); | 714 | xdr_encode_pages(buf, args->pages, 0, args->len); |
715 | else | 715 | else |
716 | req->rq_slen += args->len; | 716 | req->rq_slen = xdr_adjust_iovec(req->rq_svec, |
717 | p + XDR_QUADLEN(args->len)); | ||
717 | 718 | ||
718 | err = nfsacl_encode(buf, base, args->inode, | 719 | err = nfsacl_encode(buf, base, args->inode, |
719 | (args->mask & NFS_ACL) ? | 720 | (args->mask & NFS_ACL) ? |
diff --git a/fs/nfsd/nfs4recover.c b/fs/nfsd/nfs4recover.c index 3444c0052a87..5275097a7565 100644 --- a/fs/nfsd/nfs4recover.c +++ b/fs/nfsd/nfs4recover.c | |||
@@ -229,21 +229,23 @@ nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) | |||
229 | goto out; | 229 | goto out; |
230 | status = vfs_readdir(filp, nfsd4_build_namelist, &names); | 230 | status = vfs_readdir(filp, nfsd4_build_namelist, &names); |
231 | fput(filp); | 231 | fput(filp); |
232 | mutex_lock(&dir->d_inode->i_mutex); | ||
232 | while (!list_empty(&names)) { | 233 | while (!list_empty(&names)) { |
233 | entry = list_entry(names.next, struct name_list, list); | 234 | entry = list_entry(names.next, struct name_list, list); |
234 | 235 | ||
235 | dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1); | 236 | dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1); |
236 | if (IS_ERR(dentry)) { | 237 | if (IS_ERR(dentry)) { |
237 | status = PTR_ERR(dentry); | 238 | status = PTR_ERR(dentry); |
238 | goto out; | 239 | break; |
239 | } | 240 | } |
240 | status = f(dir, dentry); | 241 | status = f(dir, dentry); |
241 | dput(dentry); | 242 | dput(dentry); |
242 | if (status) | 243 | if (status) |
243 | goto out; | 244 | break; |
244 | list_del(&entry->list); | 245 | list_del(&entry->list); |
245 | kfree(entry); | 246 | kfree(entry); |
246 | } | 247 | } |
248 | mutex_unlock(&dir->d_inode->i_mutex); | ||
247 | out: | 249 | out: |
248 | while (!list_empty(&names)) { | 250 | while (!list_empty(&names)) { |
249 | entry = list_entry(names.next, struct name_list, list); | 251 | entry = list_entry(names.next, struct name_list, list); |
@@ -255,36 +257,6 @@ out: | |||
255 | } | 257 | } |
256 | 258 | ||
257 | static int | 259 | static int |
258 | nfsd4_remove_clid_file(struct dentry *dir, struct dentry *dentry) | ||
259 | { | ||
260 | int status; | ||
261 | |||
262 | if (!S_ISREG(dir->d_inode->i_mode)) { | ||
263 | printk("nfsd4: non-file found in client recovery directory\n"); | ||
264 | return -EINVAL; | ||
265 | } | ||
266 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); | ||
267 | status = vfs_unlink(dir->d_inode, dentry); | ||
268 | mutex_unlock(&dir->d_inode->i_mutex); | ||
269 | return status; | ||
270 | } | ||
271 | |||
272 | static int | ||
273 | nfsd4_clear_clid_dir(struct dentry *dir, struct dentry *dentry) | ||
274 | { | ||
275 | int status; | ||
276 | |||
277 | /* For now this directory should already be empty, but we empty it of | ||
278 | * any regular files anyway, just in case the directory was created by | ||
279 | * a kernel from the future.... */ | ||
280 | nfsd4_list_rec_dir(dentry, nfsd4_remove_clid_file); | ||
281 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); | ||
282 | status = vfs_rmdir(dir->d_inode, dentry); | ||
283 | mutex_unlock(&dir->d_inode->i_mutex); | ||
284 | return status; | ||
285 | } | ||
286 | |||
287 | static int | ||
288 | nfsd4_unlink_clid_dir(char *name, int namlen) | 260 | nfsd4_unlink_clid_dir(char *name, int namlen) |
289 | { | 261 | { |
290 | struct dentry *dentry; | 262 | struct dentry *dentry; |
@@ -294,18 +266,18 @@ nfsd4_unlink_clid_dir(char *name, int namlen) | |||
294 | 266 | ||
295 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); | 267 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
296 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); | 268 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); |
297 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); | ||
298 | if (IS_ERR(dentry)) { | 269 | if (IS_ERR(dentry)) { |
299 | status = PTR_ERR(dentry); | 270 | status = PTR_ERR(dentry); |
300 | return status; | 271 | goto out_unlock; |
301 | } | 272 | } |
302 | status = -ENOENT; | 273 | status = -ENOENT; |
303 | if (!dentry->d_inode) | 274 | if (!dentry->d_inode) |
304 | goto out; | 275 | goto out; |
305 | 276 | status = vfs_rmdir(rec_dir.dentry->d_inode, dentry); | |
306 | status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry); | ||
307 | out: | 277 | out: |
308 | dput(dentry); | 278 | dput(dentry); |
279 | out_unlock: | ||
280 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); | ||
309 | return status; | 281 | return status; |
310 | } | 282 | } |
311 | 283 | ||
@@ -348,7 +320,7 @@ purge_old(struct dentry *parent, struct dentry *child) | |||
348 | if (nfs4_has_reclaimed_state(child->d_name.name, false)) | 320 | if (nfs4_has_reclaimed_state(child->d_name.name, false)) |
349 | return 0; | 321 | return 0; |
350 | 322 | ||
351 | status = nfsd4_clear_clid_dir(parent, child); | 323 | status = vfs_rmdir(parent->d_inode, child); |
352 | if (status) | 324 | if (status) |
353 | printk("failed to remove client recovery directory %s\n", | 325 | printk("failed to remove client recovery directory %s\n", |
354 | child->d_name.name); | 326 | child->d_name.name); |
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index ab93fcfef254..6c68ffd6b4bb 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -116,10 +116,15 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, | |||
116 | } | 116 | } |
117 | if ((exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) { | 117 | if ((exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) { |
118 | /* successfully crossed mount point */ | 118 | /* successfully crossed mount point */ |
119 | exp_put(exp); | 119 | /* |
120 | *expp = exp2; | 120 | * This is subtle: dentry is *not* under mnt at this point. |
121 | * The only reason we are safe is that original mnt is pinned | ||
122 | * down by exp, so we should dput before putting exp. | ||
123 | */ | ||
121 | dput(dentry); | 124 | dput(dentry); |
122 | *dpp = mounts; | 125 | *dpp = mounts; |
126 | exp_put(exp); | ||
127 | *expp = exp2; | ||
123 | } else { | 128 | } else { |
124 | exp_put(exp2); | 129 | exp_put(exp2); |
125 | dput(mounts); | 130 | dput(mounts); |
@@ -1885,8 +1890,8 @@ static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen, | |||
1885 | return 0; | 1890 | return 0; |
1886 | } | 1891 | } |
1887 | 1892 | ||
1888 | static int nfsd_buffered_readdir(struct file *file, filldir_t func, | 1893 | static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func, |
1889 | struct readdir_cd *cdp, loff_t *offsetp) | 1894 | struct readdir_cd *cdp, loff_t *offsetp) |
1890 | { | 1895 | { |
1891 | struct readdir_data buf; | 1896 | struct readdir_data buf; |
1892 | struct buffered_dirent *de; | 1897 | struct buffered_dirent *de; |
@@ -1896,11 +1901,12 @@ static int nfsd_buffered_readdir(struct file *file, filldir_t func, | |||
1896 | 1901 | ||
1897 | buf.dirent = (void *)__get_free_page(GFP_KERNEL); | 1902 | buf.dirent = (void *)__get_free_page(GFP_KERNEL); |
1898 | if (!buf.dirent) | 1903 | if (!buf.dirent) |
1899 | return -ENOMEM; | 1904 | return nfserrno(-ENOMEM); |
1900 | 1905 | ||
1901 | offset = *offsetp; | 1906 | offset = *offsetp; |
1902 | 1907 | ||
1903 | while (1) { | 1908 | while (1) { |
1909 | struct inode *dir_inode = file->f_path.dentry->d_inode; | ||
1904 | unsigned int reclen; | 1910 | unsigned int reclen; |
1905 | 1911 | ||
1906 | cdp->err = nfserr_eof; /* will be cleared on successful read */ | 1912 | cdp->err = nfserr_eof; /* will be cleared on successful read */ |
@@ -1919,26 +1925,38 @@ static int nfsd_buffered_readdir(struct file *file, filldir_t func, | |||
1919 | if (!size) | 1925 | if (!size) |
1920 | break; | 1926 | break; |
1921 | 1927 | ||
1928 | /* | ||
1929 | * Various filldir functions may end up calling back into | ||
1930 | * lookup_one_len() and the file system's ->lookup() method. | ||
1931 | * These expect i_mutex to be held, as it would within readdir. | ||
1932 | */ | ||
1933 | host_err = mutex_lock_killable(&dir_inode->i_mutex); | ||
1934 | if (host_err) | ||
1935 | break; | ||
1936 | |||
1922 | de = (struct buffered_dirent *)buf.dirent; | 1937 | de = (struct buffered_dirent *)buf.dirent; |
1923 | while (size > 0) { | 1938 | while (size > 0) { |
1924 | offset = de->offset; | 1939 | offset = de->offset; |
1925 | 1940 | ||
1926 | if (func(cdp, de->name, de->namlen, de->offset, | 1941 | if (func(cdp, de->name, de->namlen, de->offset, |
1927 | de->ino, de->d_type)) | 1942 | de->ino, de->d_type)) |
1928 | goto done; | 1943 | break; |
1929 | 1944 | ||
1930 | if (cdp->err != nfs_ok) | 1945 | if (cdp->err != nfs_ok) |
1931 | goto done; | 1946 | break; |
1932 | 1947 | ||
1933 | reclen = ALIGN(sizeof(*de) + de->namlen, | 1948 | reclen = ALIGN(sizeof(*de) + de->namlen, |
1934 | sizeof(u64)); | 1949 | sizeof(u64)); |
1935 | size -= reclen; | 1950 | size -= reclen; |
1936 | de = (struct buffered_dirent *)((char *)de + reclen); | 1951 | de = (struct buffered_dirent *)((char *)de + reclen); |
1937 | } | 1952 | } |
1953 | mutex_unlock(&dir_inode->i_mutex); | ||
1954 | if (size > 0) /* We bailed out early */ | ||
1955 | break; | ||
1956 | |||
1938 | offset = vfs_llseek(file, 0, SEEK_CUR); | 1957 | offset = vfs_llseek(file, 0, SEEK_CUR); |
1939 | } | 1958 | } |
1940 | 1959 | ||
1941 | done: | ||
1942 | free_page((unsigned long)(buf.dirent)); | 1960 | free_page((unsigned long)(buf.dirent)); |
1943 | 1961 | ||
1944 | if (host_err) | 1962 | if (host_err) |
diff --git a/fs/proc/stat.c b/fs/proc/stat.c index f75efa22df5e..81e4eb60972e 100644 --- a/fs/proc/stat.c +++ b/fs/proc/stat.c | |||
@@ -18,6 +18,9 @@ | |||
18 | #ifndef arch_irq_stat | 18 | #ifndef arch_irq_stat |
19 | #define arch_irq_stat() 0 | 19 | #define arch_irq_stat() 0 |
20 | #endif | 20 | #endif |
21 | #ifndef arch_idle_time | ||
22 | #define arch_idle_time(cpu) 0 | ||
23 | #endif | ||
21 | 24 | ||
22 | static int show_stat(struct seq_file *p, void *v) | 25 | static int show_stat(struct seq_file *p, void *v) |
23 | { | 26 | { |
@@ -40,6 +43,7 @@ static int show_stat(struct seq_file *p, void *v) | |||
40 | nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice); | 43 | nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice); |
41 | system = cputime64_add(system, kstat_cpu(i).cpustat.system); | 44 | system = cputime64_add(system, kstat_cpu(i).cpustat.system); |
42 | idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle); | 45 | idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle); |
46 | idle = cputime64_add(idle, arch_idle_time(i)); | ||
43 | iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait); | 47 | iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait); |
44 | irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq); | 48 | irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq); |
45 | softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq); | 49 | softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq); |
@@ -69,6 +73,7 @@ static int show_stat(struct seq_file *p, void *v) | |||
69 | nice = kstat_cpu(i).cpustat.nice; | 73 | nice = kstat_cpu(i).cpustat.nice; |
70 | system = kstat_cpu(i).cpustat.system; | 74 | system = kstat_cpu(i).cpustat.system; |
71 | idle = kstat_cpu(i).cpustat.idle; | 75 | idle = kstat_cpu(i).cpustat.idle; |
76 | idle = cputime64_add(idle, arch_idle_time(i)); | ||
72 | iowait = kstat_cpu(i).cpustat.iowait; | 77 | iowait = kstat_cpu(i).cpustat.iowait; |
73 | irq = kstat_cpu(i).cpustat.irq; | 78 | irq = kstat_cpu(i).cpustat.irq; |
74 | softirq = kstat_cpu(i).cpustat.softirq; | 79 | softirq = kstat_cpu(i).cpustat.softirq; |
diff --git a/fs/quota/Makefile b/fs/quota/Makefile index 385a0831cc99..68d4f6dc0578 100644 --- a/fs/quota/Makefile +++ b/fs/quota/Makefile | |||
@@ -1,12 +1,3 @@ | |||
1 | # | ||
2 | # Makefile for the Linux filesystems. | ||
3 | # | ||
4 | # 14 Sep 2000, Christoph Hellwig <hch@infradead.org> | ||
5 | # Rewritten to use lists instead of if-statements. | ||
6 | # | ||
7 | |||
8 | obj-y := | ||
9 | |||
10 | obj-$(CONFIG_QUOTA) += dquot.o | 1 | obj-$(CONFIG_QUOTA) += dquot.o |
11 | obj-$(CONFIG_QFMT_V1) += quota_v1.o | 2 | obj-$(CONFIG_QFMT_V1) += quota_v1.o |
12 | obj-$(CONFIG_QFMT_V2) += quota_v2.o | 3 | obj-$(CONFIG_QFMT_V2) += quota_v2.o |
diff --git a/fs/romfs/internal.h b/fs/romfs/internal.h index 06044a9dc62d..95217b830118 100644 --- a/fs/romfs/internal.h +++ b/fs/romfs/internal.h | |||
@@ -43,5 +43,5 @@ extern int romfs_dev_read(struct super_block *sb, unsigned long pos, | |||
43 | void *buf, size_t buflen); | 43 | void *buf, size_t buflen); |
44 | extern ssize_t romfs_dev_strnlen(struct super_block *sb, | 44 | extern ssize_t romfs_dev_strnlen(struct super_block *sb, |
45 | unsigned long pos, size_t maxlen); | 45 | unsigned long pos, size_t maxlen); |
46 | extern int romfs_dev_strncmp(struct super_block *sb, unsigned long pos, | 46 | extern int romfs_dev_strcmp(struct super_block *sb, unsigned long pos, |
47 | const char *str, size_t size); | 47 | const char *str, size_t size); |
diff --git a/fs/romfs/storage.c b/fs/romfs/storage.c index 7e3e1e12a081..b3208adf8e71 100644 --- a/fs/romfs/storage.c +++ b/fs/romfs/storage.c | |||
@@ -67,26 +67,35 @@ static ssize_t romfs_mtd_strnlen(struct super_block *sb, | |||
67 | * compare a string to one in a romfs image on MTD | 67 | * compare a string to one in a romfs image on MTD |
68 | * - return 1 if matched, 0 if differ, -ve if error | 68 | * - return 1 if matched, 0 if differ, -ve if error |
69 | */ | 69 | */ |
70 | static int romfs_mtd_strncmp(struct super_block *sb, unsigned long pos, | 70 | static int romfs_mtd_strcmp(struct super_block *sb, unsigned long pos, |
71 | const char *str, size_t size) | 71 | const char *str, size_t size) |
72 | { | 72 | { |
73 | u_char buf[16]; | 73 | u_char buf[17]; |
74 | size_t len, segment; | 74 | size_t len, segment; |
75 | int ret; | 75 | int ret; |
76 | 76 | ||
77 | /* scan the string up to 16 bytes at a time */ | 77 | /* scan the string up to 16 bytes at a time, and attempt to grab the |
78 | * trailing NUL whilst we're at it */ | ||
79 | buf[0] = 0xff; | ||
80 | |||
78 | while (size > 0) { | 81 | while (size > 0) { |
79 | segment = min_t(size_t, size, 16); | 82 | segment = min_t(size_t, size + 1, 17); |
80 | ret = ROMFS_MTD_READ(sb, pos, segment, &len, buf); | 83 | ret = ROMFS_MTD_READ(sb, pos, segment, &len, buf); |
81 | if (ret < 0) | 84 | if (ret < 0) |
82 | return ret; | 85 | return ret; |
86 | len--; | ||
83 | if (memcmp(buf, str, len) != 0) | 87 | if (memcmp(buf, str, len) != 0) |
84 | return 0; | 88 | return 0; |
89 | buf[0] = buf[len]; | ||
85 | size -= len; | 90 | size -= len; |
86 | pos += len; | 91 | pos += len; |
87 | str += len; | 92 | str += len; |
88 | } | 93 | } |
89 | 94 | ||
95 | /* check the trailing NUL was */ | ||
96 | if (buf[0]) | ||
97 | return 0; | ||
98 | |||
90 | return 1; | 99 | return 1; |
91 | } | 100 | } |
92 | #endif /* CONFIG_ROMFS_ON_MTD */ | 101 | #endif /* CONFIG_ROMFS_ON_MTD */ |
@@ -111,6 +120,7 @@ static int romfs_blk_read(struct super_block *sb, unsigned long pos, | |||
111 | return -EIO; | 120 | return -EIO; |
112 | memcpy(buf, bh->b_data + offset, segment); | 121 | memcpy(buf, bh->b_data + offset, segment); |
113 | brelse(bh); | 122 | brelse(bh); |
123 | buf += segment; | ||
114 | buflen -= segment; | 124 | buflen -= segment; |
115 | pos += segment; | 125 | pos += segment; |
116 | } | 126 | } |
@@ -154,28 +164,48 @@ static ssize_t romfs_blk_strnlen(struct super_block *sb, | |||
154 | * compare a string to one in a romfs image on a block device | 164 | * compare a string to one in a romfs image on a block device |
155 | * - return 1 if matched, 0 if differ, -ve if error | 165 | * - return 1 if matched, 0 if differ, -ve if error |
156 | */ | 166 | */ |
157 | static int romfs_blk_strncmp(struct super_block *sb, unsigned long pos, | 167 | static int romfs_blk_strcmp(struct super_block *sb, unsigned long pos, |
158 | const char *str, size_t size) | 168 | const char *str, size_t size) |
159 | { | 169 | { |
160 | struct buffer_head *bh; | 170 | struct buffer_head *bh; |
161 | unsigned long offset; | 171 | unsigned long offset; |
162 | size_t segment; | 172 | size_t segment; |
163 | bool x; | 173 | bool matched, terminated = false; |
164 | 174 | ||
165 | /* scan the string up to 16 bytes at a time */ | 175 | /* compare string up to a block at a time */ |
166 | while (size > 0) { | 176 | while (size > 0) { |
167 | offset = pos & (ROMBSIZE - 1); | 177 | offset = pos & (ROMBSIZE - 1); |
168 | segment = min_t(size_t, size, ROMBSIZE - offset); | 178 | segment = min_t(size_t, size, ROMBSIZE - offset); |
169 | bh = sb_bread(sb, pos >> ROMBSBITS); | 179 | bh = sb_bread(sb, pos >> ROMBSBITS); |
170 | if (!bh) | 180 | if (!bh) |
171 | return -EIO; | 181 | return -EIO; |
172 | x = (memcmp(bh->b_data + offset, str, segment) != 0); | 182 | matched = (memcmp(bh->b_data + offset, str, segment) == 0); |
173 | brelse(bh); | 183 | |
174 | if (x) | ||
175 | return 0; | ||
176 | size -= segment; | 184 | size -= segment; |
177 | pos += segment; | 185 | pos += segment; |
178 | str += segment; | 186 | str += segment; |
187 | if (matched && size == 0 && offset + segment < ROMBSIZE) { | ||
188 | if (!bh->b_data[offset + segment]) | ||
189 | terminated = true; | ||
190 | else | ||
191 | matched = false; | ||
192 | } | ||
193 | brelse(bh); | ||
194 | if (!matched) | ||
195 | return 0; | ||
196 | } | ||
197 | |||
198 | if (!terminated) { | ||
199 | /* the terminating NUL must be on the first byte of the next | ||
200 | * block */ | ||
201 | BUG_ON((pos & (ROMBSIZE - 1)) != 0); | ||
202 | bh = sb_bread(sb, pos >> ROMBSBITS); | ||
203 | if (!bh) | ||
204 | return -EIO; | ||
205 | matched = !bh->b_data[0]; | ||
206 | brelse(bh); | ||
207 | if (!matched) | ||
208 | return 0; | ||
179 | } | 209 | } |
180 | 210 | ||
181 | return 1; | 211 | return 1; |
@@ -234,10 +264,12 @@ ssize_t romfs_dev_strnlen(struct super_block *sb, | |||
234 | 264 | ||
235 | /* | 265 | /* |
236 | * compare a string to one in romfs | 266 | * compare a string to one in romfs |
267 | * - the string to be compared to, str, may not be NUL-terminated; instead the | ||
268 | * string is of the specified size | ||
237 | * - return 1 if matched, 0 if differ, -ve if error | 269 | * - return 1 if matched, 0 if differ, -ve if error |
238 | */ | 270 | */ |
239 | int romfs_dev_strncmp(struct super_block *sb, unsigned long pos, | 271 | int romfs_dev_strcmp(struct super_block *sb, unsigned long pos, |
240 | const char *str, size_t size) | 272 | const char *str, size_t size) |
241 | { | 273 | { |
242 | size_t limit; | 274 | size_t limit; |
243 | 275 | ||
@@ -246,16 +278,16 @@ int romfs_dev_strncmp(struct super_block *sb, unsigned long pos, | |||
246 | return -EIO; | 278 | return -EIO; |
247 | if (size > ROMFS_MAXFN) | 279 | if (size > ROMFS_MAXFN) |
248 | return -ENAMETOOLONG; | 280 | return -ENAMETOOLONG; |
249 | if (size > limit - pos) | 281 | if (size + 1 > limit - pos) |
250 | return -EIO; | 282 | return -EIO; |
251 | 283 | ||
252 | #ifdef CONFIG_ROMFS_ON_MTD | 284 | #ifdef CONFIG_ROMFS_ON_MTD |
253 | if (sb->s_mtd) | 285 | if (sb->s_mtd) |
254 | return romfs_mtd_strncmp(sb, pos, str, size); | 286 | return romfs_mtd_strcmp(sb, pos, str, size); |
255 | #endif | 287 | #endif |
256 | #ifdef CONFIG_ROMFS_ON_BLOCK | 288 | #ifdef CONFIG_ROMFS_ON_BLOCK |
257 | if (sb->s_bdev) | 289 | if (sb->s_bdev) |
258 | return romfs_blk_strncmp(sb, pos, str, size); | 290 | return romfs_blk_strcmp(sb, pos, str, size); |
259 | #endif | 291 | #endif |
260 | return -EIO; | 292 | return -EIO; |
261 | } | 293 | } |
diff --git a/fs/romfs/super.c b/fs/romfs/super.c index 10ca7d984a8b..c53b5ef8a02f 100644 --- a/fs/romfs/super.c +++ b/fs/romfs/super.c | |||
@@ -240,8 +240,8 @@ static struct dentry *romfs_lookup(struct inode *dir, struct dentry *dentry, | |||
240 | goto error; | 240 | goto error; |
241 | 241 | ||
242 | /* try to match the first 16 bytes of name */ | 242 | /* try to match the first 16 bytes of name */ |
243 | ret = romfs_dev_strncmp(dir->i_sb, offset + ROMFH_SIZE, name, | 243 | ret = romfs_dev_strcmp(dir->i_sb, offset + ROMFH_SIZE, name, |
244 | len); | 244 | len); |
245 | if (ret < 0) | 245 | if (ret < 0) |
246 | goto error; | 246 | goto error; |
247 | if (ret == 1) | 247 | if (ret == 1) |
@@ -55,59 +55,54 @@ int vfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | |||
55 | 55 | ||
56 | EXPORT_SYMBOL(vfs_getattr); | 56 | EXPORT_SYMBOL(vfs_getattr); |
57 | 57 | ||
58 | int vfs_stat_fd(int dfd, char __user *name, struct kstat *stat) | 58 | int vfs_fstat(unsigned int fd, struct kstat *stat) |
59 | { | 59 | { |
60 | struct path path; | 60 | struct file *f = fget(fd); |
61 | int error; | 61 | int error = -EBADF; |
62 | 62 | ||
63 | error = user_path_at(dfd, name, LOOKUP_FOLLOW, &path); | 63 | if (f) { |
64 | if (!error) { | 64 | error = vfs_getattr(f->f_path.mnt, f->f_path.dentry, stat); |
65 | error = vfs_getattr(path.mnt, path.dentry, stat); | 65 | fput(f); |
66 | path_put(&path); | ||
67 | } | 66 | } |
68 | return error; | 67 | return error; |
69 | } | 68 | } |
69 | EXPORT_SYMBOL(vfs_fstat); | ||
70 | 70 | ||
71 | int vfs_stat(char __user *name, struct kstat *stat) | 71 | int vfs_fstatat(int dfd, char __user *filename, struct kstat *stat, int flag) |
72 | { | 72 | { |
73 | return vfs_stat_fd(AT_FDCWD, name, stat); | 73 | struct path path; |
74 | } | 74 | int error = -EINVAL; |
75 | int lookup_flags = 0; | ||
75 | 76 | ||
76 | EXPORT_SYMBOL(vfs_stat); | 77 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) |
78 | goto out; | ||
77 | 79 | ||
78 | int vfs_lstat_fd(int dfd, char __user *name, struct kstat *stat) | 80 | if (!(flag & AT_SYMLINK_NOFOLLOW)) |
79 | { | 81 | lookup_flags |= LOOKUP_FOLLOW; |
80 | struct path path; | ||
81 | int error; | ||
82 | 82 | ||
83 | error = user_path_at(dfd, name, 0, &path); | 83 | error = user_path_at(dfd, filename, lookup_flags, &path); |
84 | if (!error) { | 84 | if (error) |
85 | error = vfs_getattr(path.mnt, path.dentry, stat); | 85 | goto out; |
86 | path_put(&path); | 86 | |
87 | } | 87 | error = vfs_getattr(path.mnt, path.dentry, stat); |
88 | path_put(&path); | ||
89 | out: | ||
88 | return error; | 90 | return error; |
89 | } | 91 | } |
92 | EXPORT_SYMBOL(vfs_fstatat); | ||
90 | 93 | ||
91 | int vfs_lstat(char __user *name, struct kstat *stat) | 94 | int vfs_stat(char __user *name, struct kstat *stat) |
92 | { | 95 | { |
93 | return vfs_lstat_fd(AT_FDCWD, name, stat); | 96 | return vfs_fstatat(AT_FDCWD, name, stat, 0); |
94 | } | 97 | } |
98 | EXPORT_SYMBOL(vfs_stat); | ||
95 | 99 | ||
96 | EXPORT_SYMBOL(vfs_lstat); | 100 | int vfs_lstat(char __user *name, struct kstat *stat) |
97 | |||
98 | int vfs_fstat(unsigned int fd, struct kstat *stat) | ||
99 | { | 101 | { |
100 | struct file *f = fget(fd); | 102 | return vfs_fstatat(AT_FDCWD, name, stat, AT_SYMLINK_NOFOLLOW); |
101 | int error = -EBADF; | ||
102 | |||
103 | if (f) { | ||
104 | error = vfs_getattr(f->f_path.mnt, f->f_path.dentry, stat); | ||
105 | fput(f); | ||
106 | } | ||
107 | return error; | ||
108 | } | 103 | } |
104 | EXPORT_SYMBOL(vfs_lstat); | ||
109 | 105 | ||
110 | EXPORT_SYMBOL(vfs_fstat); | ||
111 | 106 | ||
112 | #ifdef __ARCH_WANT_OLD_STAT | 107 | #ifdef __ARCH_WANT_OLD_STAT |
113 | 108 | ||
@@ -155,23 +150,25 @@ static int cp_old_stat(struct kstat *stat, struct __old_kernel_stat __user * sta | |||
155 | SYSCALL_DEFINE2(stat, char __user *, filename, struct __old_kernel_stat __user *, statbuf) | 150 | SYSCALL_DEFINE2(stat, char __user *, filename, struct __old_kernel_stat __user *, statbuf) |
156 | { | 151 | { |
157 | struct kstat stat; | 152 | struct kstat stat; |
158 | int error = vfs_stat_fd(AT_FDCWD, filename, &stat); | 153 | int error; |
159 | 154 | ||
160 | if (!error) | 155 | error = vfs_stat(filename, &stat); |
161 | error = cp_old_stat(&stat, statbuf); | 156 | if (error) |
157 | return error; | ||
162 | 158 | ||
163 | return error; | 159 | return cp_old_stat(&stat, statbuf); |
164 | } | 160 | } |
165 | 161 | ||
166 | SYSCALL_DEFINE2(lstat, char __user *, filename, struct __old_kernel_stat __user *, statbuf) | 162 | SYSCALL_DEFINE2(lstat, char __user *, filename, struct __old_kernel_stat __user *, statbuf) |
167 | { | 163 | { |
168 | struct kstat stat; | 164 | struct kstat stat; |
169 | int error = vfs_lstat_fd(AT_FDCWD, filename, &stat); | 165 | int error; |
170 | 166 | ||
171 | if (!error) | 167 | error = vfs_lstat(filename, &stat); |
172 | error = cp_old_stat(&stat, statbuf); | 168 | if (error) |
169 | return error; | ||
173 | 170 | ||
174 | return error; | 171 | return cp_old_stat(&stat, statbuf); |
175 | } | 172 | } |
176 | 173 | ||
177 | SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf) | 174 | SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf) |
@@ -240,23 +237,23 @@ static int cp_new_stat(struct kstat *stat, struct stat __user *statbuf) | |||
240 | SYSCALL_DEFINE2(newstat, char __user *, filename, struct stat __user *, statbuf) | 237 | SYSCALL_DEFINE2(newstat, char __user *, filename, struct stat __user *, statbuf) |
241 | { | 238 | { |
242 | struct kstat stat; | 239 | struct kstat stat; |
243 | int error = vfs_stat_fd(AT_FDCWD, filename, &stat); | 240 | int error = vfs_stat(filename, &stat); |
244 | |||
245 | if (!error) | ||
246 | error = cp_new_stat(&stat, statbuf); | ||
247 | 241 | ||
248 | return error; | 242 | if (error) |
243 | return error; | ||
244 | return cp_new_stat(&stat, statbuf); | ||
249 | } | 245 | } |
250 | 246 | ||
251 | SYSCALL_DEFINE2(newlstat, char __user *, filename, struct stat __user *, statbuf) | 247 | SYSCALL_DEFINE2(newlstat, char __user *, filename, struct stat __user *, statbuf) |
252 | { | 248 | { |
253 | struct kstat stat; | 249 | struct kstat stat; |
254 | int error = vfs_lstat_fd(AT_FDCWD, filename, &stat); | 250 | int error; |
255 | 251 | ||
256 | if (!error) | 252 | error = vfs_lstat(filename, &stat); |
257 | error = cp_new_stat(&stat, statbuf); | 253 | if (error) |
254 | return error; | ||
258 | 255 | ||
259 | return error; | 256 | return cp_new_stat(&stat, statbuf); |
260 | } | 257 | } |
261 | 258 | ||
262 | #if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT) | 259 | #if !defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_SYS_NEWFSTATAT) |
@@ -264,21 +261,12 @@ SYSCALL_DEFINE4(newfstatat, int, dfd, char __user *, filename, | |||
264 | struct stat __user *, statbuf, int, flag) | 261 | struct stat __user *, statbuf, int, flag) |
265 | { | 262 | { |
266 | struct kstat stat; | 263 | struct kstat stat; |
267 | int error = -EINVAL; | 264 | int error; |
268 | |||
269 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | ||
270 | goto out; | ||
271 | |||
272 | if (flag & AT_SYMLINK_NOFOLLOW) | ||
273 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
274 | else | ||
275 | error = vfs_stat_fd(dfd, filename, &stat); | ||
276 | |||
277 | if (!error) | ||
278 | error = cp_new_stat(&stat, statbuf); | ||
279 | 265 | ||
280 | out: | 266 | error = vfs_fstatat(dfd, filename, &stat, flag); |
281 | return error; | 267 | if (error) |
268 | return error; | ||
269 | return cp_new_stat(&stat, statbuf); | ||
282 | } | 270 | } |
283 | #endif | 271 | #endif |
284 | 272 | ||
@@ -404,21 +392,12 @@ SYSCALL_DEFINE4(fstatat64, int, dfd, char __user *, filename, | |||
404 | struct stat64 __user *, statbuf, int, flag) | 392 | struct stat64 __user *, statbuf, int, flag) |
405 | { | 393 | { |
406 | struct kstat stat; | 394 | struct kstat stat; |
407 | int error = -EINVAL; | 395 | int error; |
408 | |||
409 | if ((flag & ~AT_SYMLINK_NOFOLLOW) != 0) | ||
410 | goto out; | ||
411 | |||
412 | if (flag & AT_SYMLINK_NOFOLLOW) | ||
413 | error = vfs_lstat_fd(dfd, filename, &stat); | ||
414 | else | ||
415 | error = vfs_stat_fd(dfd, filename, &stat); | ||
416 | |||
417 | if (!error) | ||
418 | error = cp_new_stat64(&stat, statbuf); | ||
419 | 396 | ||
420 | out: | 397 | error = vfs_fstatat(dfd, filename, &stat, flag); |
421 | return error; | 398 | if (error) |
399 | return error; | ||
400 | return cp_new_stat64(&stat, statbuf); | ||
422 | } | 401 | } |
423 | #endif /* __ARCH_WANT_STAT64 */ | 402 | #endif /* __ARCH_WANT_STAT64 */ |
424 | 403 | ||
diff --git a/fs/sysfs/bin.c b/fs/sysfs/bin.c index 93e0c0281d45..9345806c8853 100644 --- a/fs/sysfs/bin.c +++ b/fs/sysfs/bin.c | |||
@@ -157,14 +157,9 @@ static ssize_t write(struct file *file, const char __user *userbuf, | |||
157 | count = size - offs; | 157 | count = size - offs; |
158 | } | 158 | } |
159 | 159 | ||
160 | temp = kmalloc(count, GFP_KERNEL); | 160 | temp = memdup_user(userbuf, count); |
161 | if (!temp) | 161 | if (IS_ERR(temp)) |
162 | return -ENOMEM; | 162 | return PTR_ERR(temp); |
163 | |||
164 | if (copy_from_user(temp, userbuf, count)) { | ||
165 | count = -EFAULT; | ||
166 | goto out_free; | ||
167 | } | ||
168 | 163 | ||
169 | mutex_lock(&bb->mutex); | 164 | mutex_lock(&bb->mutex); |
170 | 165 | ||
@@ -176,8 +171,6 @@ static ssize_t write(struct file *file, const char __user *userbuf, | |||
176 | if (count > 0) | 171 | if (count > 0) |
177 | *off = offs + count; | 172 | *off = offs + count; |
178 | 173 | ||
179 | out_free: | ||
180 | kfree(temp); | ||
181 | return count; | 174 | return count; |
182 | } | 175 | } |
183 | 176 | ||
diff --git a/fs/xattr.c b/fs/xattr.c index 197c4fcac032..d51b8f9db921 100644 --- a/fs/xattr.c +++ b/fs/xattr.c | |||
@@ -237,13 +237,9 @@ setxattr(struct dentry *d, const char __user *name, const void __user *value, | |||
237 | if (size) { | 237 | if (size) { |
238 | if (size > XATTR_SIZE_MAX) | 238 | if (size > XATTR_SIZE_MAX) |
239 | return -E2BIG; | 239 | return -E2BIG; |
240 | kvalue = kmalloc(size, GFP_KERNEL); | 240 | kvalue = memdup_user(value, size); |
241 | if (!kvalue) | 241 | if (IS_ERR(kvalue)) |
242 | return -ENOMEM; | 242 | return PTR_ERR(kvalue); |
243 | if (copy_from_user(kvalue, value, size)) { | ||
244 | kfree(kvalue); | ||
245 | return -EFAULT; | ||
246 | } | ||
247 | } | 243 | } |
248 | 244 | ||
249 | error = vfs_setxattr(d, kname, kvalue, size, flags); | 245 | error = vfs_setxattr(d, kname, kvalue, size, flags); |
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index d0b499418a7d..34eaab608e6e 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c | |||
@@ -489,17 +489,12 @@ xfs_attrmulti_attr_set( | |||
489 | if (len > XATTR_SIZE_MAX) | 489 | if (len > XATTR_SIZE_MAX) |
490 | return EINVAL; | 490 | return EINVAL; |
491 | 491 | ||
492 | kbuf = kmalloc(len, GFP_KERNEL); | 492 | kbuf = memdup_user(ubuf, len); |
493 | if (!kbuf) | 493 | if (IS_ERR(kbuf)) |
494 | return ENOMEM; | 494 | return PTR_ERR(kbuf); |
495 | |||
496 | if (copy_from_user(kbuf, ubuf, len)) | ||
497 | goto out_kfree; | ||
498 | 495 | ||
499 | error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags); | 496 | error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags); |
500 | 497 | ||
501 | out_kfree: | ||
502 | kfree(kbuf); | ||
503 | return error; | 498 | return error; |
504 | } | 499 | } |
505 | 500 | ||
@@ -540,20 +535,16 @@ xfs_attrmulti_by_handle( | |||
540 | if (!size || size > 16 * PAGE_SIZE) | 535 | if (!size || size > 16 * PAGE_SIZE) |
541 | goto out_dput; | 536 | goto out_dput; |
542 | 537 | ||
543 | error = ENOMEM; | 538 | ops = memdup_user(am_hreq.ops, size); |
544 | ops = kmalloc(size, GFP_KERNEL); | 539 | if (IS_ERR(ops)) { |
545 | if (!ops) | 540 | error = PTR_ERR(ops); |
546 | goto out_dput; | 541 | goto out_dput; |
547 | 542 | } | |
548 | error = EFAULT; | ||
549 | if (copy_from_user(ops, am_hreq.ops, size)) | ||
550 | goto out_kfree_ops; | ||
551 | 543 | ||
552 | attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL); | 544 | attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL); |
553 | if (!attr_name) | 545 | if (!attr_name) |
554 | goto out_kfree_ops; | 546 | goto out_kfree_ops; |
555 | 547 | ||
556 | |||
557 | error = 0; | 548 | error = 0; |
558 | for (i = 0; i < am_hreq.opcount; i++) { | 549 | for (i = 0; i < am_hreq.opcount; i++) { |
559 | ops[i].am_error = strncpy_from_user(attr_name, | 550 | ops[i].am_error = strncpy_from_user(attr_name, |
diff --git a/fs/xfs/linux-2.6/xfs_ioctl32.c b/fs/xfs/linux-2.6/xfs_ioctl32.c index c70c4e3db790..0882d166239a 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl32.c +++ b/fs/xfs/linux-2.6/xfs_ioctl32.c | |||
@@ -427,20 +427,16 @@ xfs_compat_attrmulti_by_handle( | |||
427 | if (!size || size > 16 * PAGE_SIZE) | 427 | if (!size || size > 16 * PAGE_SIZE) |
428 | goto out_dput; | 428 | goto out_dput; |
429 | 429 | ||
430 | error = ENOMEM; | 430 | ops = memdup_user(compat_ptr(am_hreq.ops), size); |
431 | ops = kmalloc(size, GFP_KERNEL); | 431 | if (IS_ERR(ops)) { |
432 | if (!ops) | 432 | error = PTR_ERR(ops); |
433 | goto out_dput; | 433 | goto out_dput; |
434 | 434 | } | |
435 | error = EFAULT; | ||
436 | if (copy_from_user(ops, compat_ptr(am_hreq.ops), size)) | ||
437 | goto out_kfree_ops; | ||
438 | 435 | ||
439 | attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL); | 436 | attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL); |
440 | if (!attr_name) | 437 | if (!attr_name) |
441 | goto out_kfree_ops; | 438 | goto out_kfree_ops; |
442 | 439 | ||
443 | |||
444 | error = 0; | 440 | error = 0; |
445 | for (i = 0; i < am_hreq.opcount; i++) { | 441 | for (i = 0; i < am_hreq.opcount; i++) { |
446 | ops[i].am_error = strncpy_from_user(attr_name, | 442 | ops[i].am_error = strncpy_from_user(attr_name, |
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index b09c4fde9725..4927c063347c 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h | |||
@@ -84,7 +84,6 @@ struct acpi_processor_power { | |||
84 | struct acpi_processor_cx *state; | 84 | struct acpi_processor_cx *state; |
85 | unsigned long bm_check_timestamp; | 85 | unsigned long bm_check_timestamp; |
86 | u32 default_state; | 86 | u32 default_state; |
87 | u32 bm_activity; | ||
88 | int count; | 87 | int count; |
89 | struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER]; | 88 | struct acpi_processor_cx states[ACPI_PROCESSOR_MAX_POWER]; |
90 | int timer_broadcast_on_state; | 89 | int timer_broadcast_on_state; |
diff --git a/include/acpi/video.h b/include/acpi/video.h index f0275bb79ce4..af6fe95fd3d0 100644 --- a/include/acpi/video.h +++ b/include/acpi/video.h | |||
@@ -3,8 +3,10 @@ | |||
3 | 3 | ||
4 | #if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE) | 4 | #if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE) |
5 | extern int acpi_video_register(void); | 5 | extern int acpi_video_register(void); |
6 | extern int acpi_video_exit(void); | ||
6 | #else | 7 | #else |
7 | static inline int acpi_video_register(void) { return 0; } | 8 | static inline int acpi_video_register(void) { return 0; } |
9 | static inline void acpi_video_exit(void) { return; } | ||
8 | #endif | 10 | #endif |
9 | 11 | ||
10 | #endif | 12 | #endif |
diff --git a/include/asm-generic/percpu.h b/include/asm-generic/percpu.h index b0e63c672ebd..d7d50d7ee51e 100644 --- a/include/asm-generic/percpu.h +++ b/include/asm-generic/percpu.h | |||
@@ -1,13 +1,9 @@ | |||
1 | #ifndef _ASM_GENERIC_PERCPU_H_ | 1 | #ifndef _ASM_GENERIC_PERCPU_H_ |
2 | #define _ASM_GENERIC_PERCPU_H_ | 2 | #define _ASM_GENERIC_PERCPU_H_ |
3 | |||
3 | #include <linux/compiler.h> | 4 | #include <linux/compiler.h> |
4 | #include <linux/threads.h> | 5 | #include <linux/threads.h> |
5 | 6 | #include <linux/percpu-defs.h> | |
6 | /* | ||
7 | * Determine the real variable name from the name visible in the | ||
8 | * kernel sources. | ||
9 | */ | ||
10 | #define per_cpu_var(var) per_cpu__##var | ||
11 | 7 | ||
12 | #ifdef CONFIG_SMP | 8 | #ifdef CONFIG_SMP |
13 | 9 | ||
@@ -73,11 +69,32 @@ extern void setup_per_cpu_areas(void); | |||
73 | 69 | ||
74 | #endif /* SMP */ | 70 | #endif /* SMP */ |
75 | 71 | ||
72 | #ifndef PER_CPU_BASE_SECTION | ||
73 | #ifdef CONFIG_SMP | ||
74 | #define PER_CPU_BASE_SECTION ".data.percpu" | ||
75 | #else | ||
76 | #define PER_CPU_BASE_SECTION ".data" | ||
77 | #endif | ||
78 | #endif | ||
79 | |||
80 | #ifdef CONFIG_SMP | ||
81 | |||
82 | #ifdef MODULE | ||
83 | #define PER_CPU_SHARED_ALIGNED_SECTION "" | ||
84 | #else | ||
85 | #define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned" | ||
86 | #endif | ||
87 | #define PER_CPU_FIRST_SECTION ".first" | ||
88 | |||
89 | #else | ||
90 | |||
91 | #define PER_CPU_SHARED_ALIGNED_SECTION "" | ||
92 | #define PER_CPU_FIRST_SECTION "" | ||
93 | |||
94 | #endif | ||
95 | |||
76 | #ifndef PER_CPU_ATTRIBUTES | 96 | #ifndef PER_CPU_ATTRIBUTES |
77 | #define PER_CPU_ATTRIBUTES | 97 | #define PER_CPU_ATTRIBUTES |
78 | #endif | 98 | #endif |
79 | 99 | ||
80 | #define DECLARE_PER_CPU(type, name) extern PER_CPU_ATTRIBUTES \ | ||
81 | __typeof__(type) per_cpu_var(name) | ||
82 | |||
83 | #endif /* _ASM_GENERIC_PERCPU_H_ */ | 100 | #endif /* _ASM_GENERIC_PERCPU_H_ */ |
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 7fa660fd449c..89853bcd27a6 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -1,3 +1,5 @@ | |||
1 | #include <linux/section-names.h> | ||
2 | |||
1 | #ifndef LOAD_OFFSET | 3 | #ifndef LOAD_OFFSET |
2 | #define LOAD_OFFSET 0 | 4 | #define LOAD_OFFSET 0 |
3 | #endif | 5 | #endif |
@@ -88,7 +90,6 @@ | |||
88 | /* .data section */ | 90 | /* .data section */ |
89 | #define DATA_DATA \ | 91 | #define DATA_DATA \ |
90 | *(.data) \ | 92 | *(.data) \ |
91 | *(.data.init.refok) \ | ||
92 | *(.ref.data) \ | 93 | *(.ref.data) \ |
93 | DEV_KEEP(init.data) \ | 94 | DEV_KEEP(init.data) \ |
94 | DEV_KEEP(exit.data) \ | 95 | DEV_KEEP(exit.data) \ |
@@ -287,8 +288,6 @@ | |||
287 | *(.text.hot) \ | 288 | *(.text.hot) \ |
288 | *(.text) \ | 289 | *(.text) \ |
289 | *(.ref.text) \ | 290 | *(.ref.text) \ |
290 | *(.text.init.refok) \ | ||
291 | *(.exit.text.refok) \ | ||
292 | DEV_KEEP(init.text) \ | 291 | DEV_KEEP(init.text) \ |
293 | DEV_KEEP(exit.text) \ | 292 | DEV_KEEP(exit.text) \ |
294 | CPU_KEEP(init.text) \ | 293 | CPU_KEEP(init.text) \ |
@@ -331,7 +330,7 @@ | |||
331 | #endif | 330 | #endif |
332 | 331 | ||
333 | /* Section used for early init (in .S files) */ | 332 | /* Section used for early init (in .S files) */ |
334 | #define HEAD_TEXT *(.head.text) | 333 | #define HEAD_TEXT *(HEAD_TEXT_SECTION) |
335 | 334 | ||
336 | /* init and exit section handling */ | 335 | /* init and exit section handling */ |
337 | #define INIT_DATA \ | 336 | #define INIT_DATA \ |
diff --git a/include/drm/drm_pciids.h b/include/drm/drm_pciids.h index 9477af01a639..fc55db780199 100644 --- a/include/drm/drm_pciids.h +++ b/include/drm/drm_pciids.h | |||
@@ -532,6 +532,7 @@ | |||
532 | {0x8086, 0x2e02, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 532 | {0x8086, 0x2e02, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
533 | {0x8086, 0x2e12, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 533 | {0x8086, 0x2e12, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
534 | {0x8086, 0x2e22, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 534 | {0x8086, 0x2e22, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
535 | {0x8086, 0x2e32, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | ||
535 | {0x8086, 0xa001, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 536 | {0x8086, 0xa001, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
536 | {0x8086, 0xa011, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 537 | {0x8086, 0xa011, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
537 | {0x8086, 0x35e8, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ | 538 | {0x8086, 0x35e8, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, 0xffff00, 0}, \ |
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 6586cbd0d4af..88be890ee3c7 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -111,6 +111,7 @@ int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base); | |||
111 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base); | 111 | int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base); |
112 | void acpi_irq_stats_init(void); | 112 | void acpi_irq_stats_init(void); |
113 | extern u32 acpi_irq_handled; | 113 | extern u32 acpi_irq_handled; |
114 | extern u32 acpi_irq_not_handled; | ||
114 | 115 | ||
115 | extern struct acpi_mcfg_allocation *pci_mmcfg_config; | 116 | extern struct acpi_mcfg_allocation *pci_mmcfg_config; |
116 | extern int pci_mmcfg_config_num; | 117 | extern int pci_mmcfg_config_num; |
diff --git a/include/linux/bio.h b/include/linux/bio.h index b89cf2d82898..7b214fd672a2 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
@@ -132,6 +132,7 @@ struct bio { | |||
132 | * top 4 bits of bio flags indicate the pool this bio came from | 132 | * top 4 bits of bio flags indicate the pool this bio came from |
133 | */ | 133 | */ |
134 | #define BIO_POOL_BITS (4) | 134 | #define BIO_POOL_BITS (4) |
135 | #define BIO_POOL_NONE ((1UL << BIO_POOL_BITS) - 1) | ||
135 | #define BIO_POOL_OFFSET (BITS_PER_LONG - BIO_POOL_BITS) | 136 | #define BIO_POOL_OFFSET (BITS_PER_LONG - BIO_POOL_BITS) |
136 | #define BIO_POOL_MASK (1UL << BIO_POOL_OFFSET) | 137 | #define BIO_POOL_MASK (1UL << BIO_POOL_OFFSET) |
137 | #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET) | 138 | #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET) |
diff --git a/include/linux/bitops.h b/include/linux/bitops.h index 61829139795a..c05a29cb9bb2 100644 --- a/include/linux/bitops.h +++ b/include/linux/bitops.h | |||
@@ -112,6 +112,25 @@ static inline unsigned fls_long(unsigned long l) | |||
112 | return fls64(l); | 112 | return fls64(l); |
113 | } | 113 | } |
114 | 114 | ||
115 | /** | ||
116 | * __ffs64 - find first set bit in a 64 bit word | ||
117 | * @word: The 64 bit word | ||
118 | * | ||
119 | * On 64 bit arches this is a synomyn for __ffs | ||
120 | * The result is not defined if no bits are set, so check that @word | ||
121 | * is non-zero before calling this. | ||
122 | */ | ||
123 | static inline unsigned long __ffs64(u64 word) | ||
124 | { | ||
125 | #if BITS_PER_LONG == 32 | ||
126 | if (((u32)word) == 0UL) | ||
127 | return __ffs((u32)(word >> 32)) + 32; | ||
128 | #elif BITS_PER_LONG != 64 | ||
129 | #error BITS_PER_LONG not 32 or 64 | ||
130 | #endif | ||
131 | return __ffs((unsigned long)word); | ||
132 | } | ||
133 | |||
115 | #ifdef __KERNEL__ | 134 | #ifdef __KERNEL__ |
116 | #ifdef CONFIG_GENERIC_FIND_FIRST_BIT | 135 | #ifdef CONFIG_GENERIC_FIND_FIRST_BIT |
117 | 136 | ||
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index ba54c834a590..2755d5c6da22 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -118,6 +118,7 @@ enum rq_flag_bits { | |||
118 | __REQ_COPY_USER, /* contains copies of user pages */ | 118 | __REQ_COPY_USER, /* contains copies of user pages */ |
119 | __REQ_INTEGRITY, /* integrity metadata has been remapped */ | 119 | __REQ_INTEGRITY, /* integrity metadata has been remapped */ |
120 | __REQ_NOIDLE, /* Don't anticipate more IO after this one */ | 120 | __REQ_NOIDLE, /* Don't anticipate more IO after this one */ |
121 | __REQ_IO_STAT, /* account I/O stat */ | ||
121 | __REQ_NR_BITS, /* stops here */ | 122 | __REQ_NR_BITS, /* stops here */ |
122 | }; | 123 | }; |
123 | 124 | ||
@@ -145,6 +146,7 @@ enum rq_flag_bits { | |||
145 | #define REQ_COPY_USER (1 << __REQ_COPY_USER) | 146 | #define REQ_COPY_USER (1 << __REQ_COPY_USER) |
146 | #define REQ_INTEGRITY (1 << __REQ_INTEGRITY) | 147 | #define REQ_INTEGRITY (1 << __REQ_INTEGRITY) |
147 | #define REQ_NOIDLE (1 << __REQ_NOIDLE) | 148 | #define REQ_NOIDLE (1 << __REQ_NOIDLE) |
149 | #define REQ_IO_STAT (1 << __REQ_IO_STAT) | ||
148 | 150 | ||
149 | #define BLK_MAX_CDB 16 | 151 | #define BLK_MAX_CDB 16 |
150 | 152 | ||
@@ -598,6 +600,7 @@ enum { | |||
598 | blk_failfast_transport(rq) || \ | 600 | blk_failfast_transport(rq) || \ |
599 | blk_failfast_driver(rq)) | 601 | blk_failfast_driver(rq)) |
600 | #define blk_rq_started(rq) ((rq)->cmd_flags & REQ_STARTED) | 602 | #define blk_rq_started(rq) ((rq)->cmd_flags & REQ_STARTED) |
603 | #define blk_rq_io_stat(rq) ((rq)->cmd_flags & REQ_IO_STAT) | ||
601 | 604 | ||
602 | #define blk_account_rq(rq) (blk_rq_started(rq) && (blk_fs_request(rq) || blk_discard_rq(rq))) | 605 | #define blk_account_rq(rq) (blk_rq_started(rq) && (blk_fs_request(rq) || blk_discard_rq(rq))) |
603 | 606 | ||
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 573819ef4cc0..5a40d14daa9f 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h | |||
@@ -143,7 +143,9 @@ extern u64 timecounter_cyc2time(struct timecounter *tc, | |||
143 | * 400-499: Perfect | 143 | * 400-499: Perfect |
144 | * The ideal clocksource. A must-use where | 144 | * The ideal clocksource. A must-use where |
145 | * available. | 145 | * available. |
146 | * @read: returns a cycle value | 146 | * @read: returns a cycle value, passes clocksource as argument |
147 | * @enable: optional function to enable the clocksource | ||
148 | * @disable: optional function to disable the clocksource | ||
147 | * @mask: bitmask for two's complement | 149 | * @mask: bitmask for two's complement |
148 | * subtraction of non 64 bit counters | 150 | * subtraction of non 64 bit counters |
149 | * @mult: cycle to nanosecond multiplier (adjusted by NTP) | 151 | * @mult: cycle to nanosecond multiplier (adjusted by NTP) |
@@ -162,7 +164,9 @@ struct clocksource { | |||
162 | char *name; | 164 | char *name; |
163 | struct list_head list; | 165 | struct list_head list; |
164 | int rating; | 166 | int rating; |
165 | cycle_t (*read)(void); | 167 | cycle_t (*read)(struct clocksource *cs); |
168 | int (*enable)(struct clocksource *cs); | ||
169 | void (*disable)(struct clocksource *cs); | ||
166 | cycle_t mask; | 170 | cycle_t mask; |
167 | u32 mult; | 171 | u32 mult; |
168 | u32 mult_orig; | 172 | u32 mult_orig; |
@@ -271,7 +275,34 @@ static inline u32 clocksource_hz2mult(u32 hz, u32 shift_constant) | |||
271 | */ | 275 | */ |
272 | static inline cycle_t clocksource_read(struct clocksource *cs) | 276 | static inline cycle_t clocksource_read(struct clocksource *cs) |
273 | { | 277 | { |
274 | return cs->read(); | 278 | return cs->read(cs); |
279 | } | ||
280 | |||
281 | /** | ||
282 | * clocksource_enable: - enable clocksource | ||
283 | * @cs: pointer to clocksource | ||
284 | * | ||
285 | * Enables the specified clocksource. The clocksource callback | ||
286 | * function should start up the hardware and setup mult and field | ||
287 | * members of struct clocksource to reflect hardware capabilities. | ||
288 | */ | ||
289 | static inline int clocksource_enable(struct clocksource *cs) | ||
290 | { | ||
291 | return cs->enable ? cs->enable(cs) : 0; | ||
292 | } | ||
293 | |||
294 | /** | ||
295 | * clocksource_disable: - disable clocksource | ||
296 | * @cs: pointer to clocksource | ||
297 | * | ||
298 | * Disables the specified clocksource. The clocksource callback | ||
299 | * function should power down the now unused hardware block to | ||
300 | * save power. | ||
301 | */ | ||
302 | static inline void clocksource_disable(struct clocksource *cs) | ||
303 | { | ||
304 | if (cs->disable) | ||
305 | cs->disable(cs); | ||
275 | } | 306 | } |
276 | 307 | ||
277 | /** | 308 | /** |
diff --git a/include/linux/device.h b/include/linux/device.h index 2918c0e8fdfd..6a69caaac18a 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -551,6 +551,7 @@ extern int (*platform_notify_remove)(struct device *dev); | |||
551 | extern struct device *get_device(struct device *dev); | 551 | extern struct device *get_device(struct device *dev); |
552 | extern void put_device(struct device *dev); | 552 | extern void put_device(struct device *dev); |
553 | 553 | ||
554 | extern void wait_for_device_probe(void); | ||
554 | 555 | ||
555 | /* drivers/base/power/shutdown.c */ | 556 | /* drivers/base/power/shutdown.c */ |
556 | extern void device_shutdown(void); | 557 | extern void device_shutdown(void); |
diff --git a/include/linux/fs.h b/include/linux/fs.h index e766be0d4329..5bed436f4353 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -2299,9 +2299,8 @@ extern int vfs_readdir(struct file *, filldir_t, void *); | |||
2299 | 2299 | ||
2300 | extern int vfs_stat(char __user *, struct kstat *); | 2300 | extern int vfs_stat(char __user *, struct kstat *); |
2301 | extern int vfs_lstat(char __user *, struct kstat *); | 2301 | extern int vfs_lstat(char __user *, struct kstat *); |
2302 | extern int vfs_stat_fd(int dfd, char __user *, struct kstat *); | ||
2303 | extern int vfs_lstat_fd(int dfd, char __user *, struct kstat *); | ||
2304 | extern int vfs_fstat(unsigned int, struct kstat *); | 2302 | extern int vfs_fstat(unsigned int, struct kstat *); |
2303 | extern int vfs_fstatat(int , char __user *, struct kstat *, int); | ||
2305 | 2304 | ||
2306 | extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, | 2305 | extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, |
2307 | unsigned long arg); | 2306 | unsigned long arg); |
@@ -2449,7 +2448,7 @@ struct ctl_table; | |||
2449 | int proc_nr_files(struct ctl_table *table, int write, struct file *filp, | 2448 | int proc_nr_files(struct ctl_table *table, int write, struct file *filp, |
2450 | void __user *buffer, size_t *lenp, loff_t *ppos); | 2449 | void __user *buffer, size_t *lenp, loff_t *ppos); |
2451 | 2450 | ||
2452 | int get_filesystem_list(char * buf); | 2451 | int __init get_filesystem_list(char *buf); |
2453 | 2452 | ||
2454 | #endif /* __KERNEL__ */ | 2453 | #endif /* __KERNEL__ */ |
2455 | #endif /* _LINUX_FS_H */ | 2454 | #endif /* _LINUX_FS_H */ |
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index 43fc95d822d5..244677cc082b 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
@@ -79,6 +79,10 @@ struct fsl_spi_platform_data { | |||
79 | u16 max_chipselect; | 79 | u16 max_chipselect; |
80 | void (*cs_control)(struct spi_device *spi, bool on); | 80 | void (*cs_control)(struct spi_device *spi, bool on); |
81 | u32 sysclk; | 81 | u32 sysclk; |
82 | |||
83 | /* Legacy hooks, used by mpc52xx_psc_spi driver. */ | ||
84 | void (*activate_cs)(u8 cs, u8 polarity); | ||
85 | void (*deactivate_cs)(u8 cs, u8 polarity); | ||
82 | }; | 86 | }; |
83 | 87 | ||
84 | struct mpc8xx_pcmcia_ops { | 88 | struct mpc8xx_pcmcia_ops { |
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 634c53028fb8..a1a28caed23d 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -214,6 +214,7 @@ static inline void disk_put_part(struct hd_struct *part) | |||
214 | #define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */ | 214 | #define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */ |
215 | #define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */ | 215 | #define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */ |
216 | #define DISK_PITER_INCL_PART0 (1 << 2) /* include partition 0 */ | 216 | #define DISK_PITER_INCL_PART0 (1 << 2) /* include partition 0 */ |
217 | #define DISK_PITER_INCL_EMPTY_PART0 (1 << 3) /* include empty partition 0 */ | ||
217 | 218 | ||
218 | struct disk_part_iter { | 219 | struct disk_part_iter { |
219 | struct gendisk *disk; | 220 | struct gendisk *disk; |
diff --git a/include/linux/init.h b/include/linux/init.h index f121a7a10c3d..0e06c176f185 100644 --- a/include/linux/init.h +++ b/include/linux/init.h | |||
@@ -2,6 +2,8 @@ | |||
2 | #define _LINUX_INIT_H | 2 | #define _LINUX_INIT_H |
3 | 3 | ||
4 | #include <linux/compiler.h> | 4 | #include <linux/compiler.h> |
5 | #include <linux/section-names.h> | ||
6 | #include <linux/stringify.h> | ||
5 | 7 | ||
6 | /* These macros are used to mark some functions or | 8 | /* These macros are used to mark some functions or |
7 | * initialized data (doesn't apply to uninitialized data) | 9 | * initialized data (doesn't apply to uninitialized data) |
@@ -60,14 +62,6 @@ | |||
60 | #define __refdata __section(.ref.data) | 62 | #define __refdata __section(.ref.data) |
61 | #define __refconst __section(.ref.rodata) | 63 | #define __refconst __section(.ref.rodata) |
62 | 64 | ||
63 | /* backward compatibility note | ||
64 | * A few places hardcode the old section names: | ||
65 | * .text.init.refok | ||
66 | * .data.init.refok | ||
67 | * .exit.text.refok | ||
68 | * They should be converted to use the defines from this file | ||
69 | */ | ||
70 | |||
71 | /* compatibility defines */ | 65 | /* compatibility defines */ |
72 | #define __init_refok __ref | 66 | #define __init_refok __ref |
73 | #define __initdata_refok __refdata | 67 | #define __initdata_refok __refdata |
@@ -107,7 +101,7 @@ | |||
107 | #define __memexitconst __section(.memexit.rodata) | 101 | #define __memexitconst __section(.memexit.rodata) |
108 | 102 | ||
109 | /* For assembly routines */ | 103 | /* For assembly routines */ |
110 | #define __HEAD .section ".head.text","ax" | 104 | #define __HEAD .section __stringify(HEAD_TEXT_SECTION),"ax" |
111 | #define __INIT .section ".init.text","ax" | 105 | #define __INIT .section ".init.text","ax" |
112 | #define __FINIT .previous | 106 | #define __FINIT .previous |
113 | 107 | ||
diff --git a/include/linux/ipmi.h b/include/linux/ipmi.h index 7ebdb4fb4e54..65aae34759de 100644 --- a/include/linux/ipmi.h +++ b/include/linux/ipmi.h | |||
@@ -198,6 +198,8 @@ struct kernel_ipmi_msg { | |||
198 | response. When you send a | 198 | response. When you send a |
199 | response message, this will | 199 | response message, this will |
200 | be returned. */ | 200 | be returned. */ |
201 | #define IPMI_OEM_RECV_TYPE 5 /* The response for OEM Channels */ | ||
202 | |||
201 | /* Note that async events and received commands do not have a completion | 203 | /* Note that async events and received commands do not have a completion |
202 | code as the first byte of the incoming data, unlike a response. */ | 204 | code as the first byte of the incoming data, unlike a response. */ |
203 | 205 | ||
diff --git a/include/linux/ipmi_msgdefs.h b/include/linux/ipmi_msgdefs.h index b56a158d587a..df97e6e31e87 100644 --- a/include/linux/ipmi_msgdefs.h +++ b/include/linux/ipmi_msgdefs.h | |||
@@ -58,6 +58,12 @@ | |||
58 | #define IPMI_READ_EVENT_MSG_BUFFER_CMD 0x35 | 58 | #define IPMI_READ_EVENT_MSG_BUFFER_CMD 0x35 |
59 | #define IPMI_GET_CHANNEL_INFO_CMD 0x42 | 59 | #define IPMI_GET_CHANNEL_INFO_CMD 0x42 |
60 | 60 | ||
61 | /* Bit for BMC global enables. */ | ||
62 | #define IPMI_BMC_RCV_MSG_INTR 0x01 | ||
63 | #define IPMI_BMC_EVT_MSG_INTR 0x02 | ||
64 | #define IPMI_BMC_EVT_MSG_BUFF 0x04 | ||
65 | #define IPMI_BMC_SYS_LOG 0x08 | ||
66 | |||
61 | #define IPMI_NETFN_STORAGE_REQUEST 0x0a | 67 | #define IPMI_NETFN_STORAGE_REQUEST 0x0a |
62 | #define IPMI_NETFN_STORAGE_RESPONSE 0x0b | 68 | #define IPMI_NETFN_STORAGE_RESPONSE 0x0b |
63 | #define IPMI_ADD_SEL_ENTRY_CMD 0x44 | 69 | #define IPMI_ADD_SEL_ENTRY_CMD 0x44 |
@@ -109,5 +115,7 @@ | |||
109 | #define IPMI_CHANNEL_MEDIUM_USB1 10 | 115 | #define IPMI_CHANNEL_MEDIUM_USB1 10 |
110 | #define IPMI_CHANNEL_MEDIUM_USB2 11 | 116 | #define IPMI_CHANNEL_MEDIUM_USB2 11 |
111 | #define IPMI_CHANNEL_MEDIUM_SYSINTF 12 | 117 | #define IPMI_CHANNEL_MEDIUM_SYSINTF 12 |
118 | #define IPMI_CHANNEL_MEDIUM_OEM_MIN 0x60 | ||
119 | #define IPMI_CHANNEL_MEDIUM_OEM_MAX 0x7f | ||
112 | 120 | ||
113 | #endif /* __LINUX_IPMI_MSGDEFS_H */ | 121 | #endif /* __LINUX_IPMI_MSGDEFS_H */ |
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 53ae4399da2d..c2049a04fa0b 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
@@ -978,7 +978,8 @@ extern void journal_destroy_revoke(journal_t *); | |||
978 | extern int journal_revoke (handle_t *, | 978 | extern int journal_revoke (handle_t *, |
979 | unsigned long, struct buffer_head *); | 979 | unsigned long, struct buffer_head *); |
980 | extern int journal_cancel_revoke(handle_t *, struct journal_head *); | 980 | extern int journal_cancel_revoke(handle_t *, struct journal_head *); |
981 | extern void journal_write_revoke_records(journal_t *, transaction_t *); | 981 | extern void journal_write_revoke_records(journal_t *, |
982 | transaction_t *, int); | ||
982 | 983 | ||
983 | /* Recovery revoke support */ | 984 | /* Recovery revoke support */ |
984 | extern int journal_set_revoke(journal_t *, unsigned long, tid_t); | 985 | extern int journal_set_revoke(journal_t *, unsigned long, tid_t); |
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 8815a3456b3b..cc02393bfce8 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
@@ -1193,7 +1193,8 @@ extern int jbd2_journal_init_revoke_caches(void); | |||
1193 | extern void jbd2_journal_destroy_revoke(journal_t *); | 1193 | extern void jbd2_journal_destroy_revoke(journal_t *); |
1194 | extern int jbd2_journal_revoke (handle_t *, unsigned long long, struct buffer_head *); | 1194 | extern int jbd2_journal_revoke (handle_t *, unsigned long long, struct buffer_head *); |
1195 | extern int jbd2_journal_cancel_revoke(handle_t *, struct journal_head *); | 1195 | extern int jbd2_journal_cancel_revoke(handle_t *, struct journal_head *); |
1196 | extern void jbd2_journal_write_revoke_records(journal_t *, transaction_t *); | 1196 | extern void jbd2_journal_write_revoke_records(journal_t *, |
1197 | transaction_t *, int); | ||
1197 | 1198 | ||
1198 | /* Recovery revoke support */ | 1199 | /* Recovery revoke support */ |
1199 | extern int jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t); | 1200 | extern int jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t); |
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 311a073afe8a..8cc137911b34 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
@@ -409,6 +409,8 @@ struct kvm_trace_rec { | |||
409 | #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT | 409 | #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT |
410 | #define KVM_CAP_DEVICE_DEASSIGNMENT 27 | 410 | #define KVM_CAP_DEVICE_DEASSIGNMENT 27 |
411 | #endif | 411 | #endif |
412 | /* Another bug in KVM_SET_USER_MEMORY_REGION fixed: */ | ||
413 | #define KVM_CAP_JOIN_MEMORY_REGIONS_WORKS 30 | ||
412 | 414 | ||
413 | #ifdef KVM_CAP_IRQ_ROUTING | 415 | #ifdef KVM_CAP_IRQ_ROUTING |
414 | 416 | ||
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 18146c980b68..a9e3b76aa884 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
@@ -75,7 +75,7 @@ int mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *cgroup) | |||
75 | { | 75 | { |
76 | struct mem_cgroup *mem; | 76 | struct mem_cgroup *mem; |
77 | rcu_read_lock(); | 77 | rcu_read_lock(); |
78 | mem = mem_cgroup_from_task((mm)->owner); | 78 | mem = mem_cgroup_from_task(rcu_dereference((mm)->owner)); |
79 | rcu_read_unlock(); | 79 | rcu_read_unlock(); |
80 | return cgroup == mem; | 80 | return cgroup == mem; |
81 | } | 81 | } |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 2e7783f4a755..5a96a1a406e9 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -104,7 +104,7 @@ struct wireless_dev; | |||
104 | # else | 104 | # else |
105 | # define LL_MAX_HEADER 96 | 105 | # define LL_MAX_HEADER 96 |
106 | # endif | 106 | # endif |
107 | #elif defined(CONFIG_TR) | 107 | #elif defined(CONFIG_TR) || defined(CONFIG_TR_MODULE) |
108 | # define LL_MAX_HEADER 48 | 108 | # define LL_MAX_HEADER 48 |
109 | #else | 109 | #else |
110 | # define LL_MAX_HEADER 32 | 110 | # define LL_MAX_HEADER 32 |
@@ -500,7 +500,7 @@ struct netdev_queue { | |||
500 | * | 500 | * |
501 | * int (*ndo_set_mac_address)(struct net_device *dev, void *addr); | 501 | * int (*ndo_set_mac_address)(struct net_device *dev, void *addr); |
502 | * This function is called when the Media Access Control address | 502 | * This function is called when the Media Access Control address |
503 | * needs to be changed. If not this interface is not defined, the | 503 | * needs to be changed. If this interface is not defined, the |
504 | * mac address can not be changed. | 504 | * mac address can not be changed. |
505 | * | 505 | * |
506 | * int (*ndo_validate_addr)(struct net_device *dev); | 506 | * int (*ndo_validate_addr)(struct net_device *dev); |
diff --git a/include/linux/netfilter/nfnetlink_conntrack.h b/include/linux/netfilter/nfnetlink_conntrack.h index 29fe9ea1d346..1a865e48b8eb 100644 --- a/include/linux/netfilter/nfnetlink_conntrack.h +++ b/include/linux/netfilter/nfnetlink_conntrack.h | |||
@@ -100,6 +100,7 @@ enum ctattr_protoinfo_tcp { | |||
100 | enum ctattr_protoinfo_dccp { | 100 | enum ctattr_protoinfo_dccp { |
101 | CTA_PROTOINFO_DCCP_UNSPEC, | 101 | CTA_PROTOINFO_DCCP_UNSPEC, |
102 | CTA_PROTOINFO_DCCP_STATE, | 102 | CTA_PROTOINFO_DCCP_STATE, |
103 | CTA_PROTOINFO_DCCP_ROLE, | ||
103 | __CTA_PROTOINFO_DCCP_MAX, | 104 | __CTA_PROTOINFO_DCCP_MAX, |
104 | }; | 105 | }; |
105 | #define CTA_PROTOINFO_DCCP_MAX (__CTA_PROTOINFO_DCCP_MAX - 1) | 106 | #define CTA_PROTOINFO_DCCP_MAX (__CTA_PROTOINFO_DCCP_MAX - 1) |
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index 7b1a652066c0..1b2e43502ef7 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h | |||
@@ -354,9 +354,6 @@ struct xt_table | |||
354 | /* What hooks you will enter on */ | 354 | /* What hooks you will enter on */ |
355 | unsigned int valid_hooks; | 355 | unsigned int valid_hooks; |
356 | 356 | ||
357 | /* Lock for the curtain */ | ||
358 | struct mutex lock; | ||
359 | |||
360 | /* Man behind the curtain... */ | 357 | /* Man behind the curtain... */ |
361 | struct xt_table_info *private; | 358 | struct xt_table_info *private; |
362 | 359 | ||
@@ -434,8 +431,74 @@ extern void xt_proto_fini(struct net *net, u_int8_t af); | |||
434 | 431 | ||
435 | extern struct xt_table_info *xt_alloc_table_info(unsigned int size); | 432 | extern struct xt_table_info *xt_alloc_table_info(unsigned int size); |
436 | extern void xt_free_table_info(struct xt_table_info *info); | 433 | extern void xt_free_table_info(struct xt_table_info *info); |
437 | extern void xt_table_entry_swap_rcu(struct xt_table_info *old, | 434 | |
438 | struct xt_table_info *new); | 435 | /* |
436 | * Per-CPU spinlock associated with per-cpu table entries, and | ||
437 | * with a counter for the "reading" side that allows a recursive | ||
438 | * reader to avoid taking the lock and deadlocking. | ||
439 | * | ||
440 | * "reading" is used by ip/arp/ip6 tables rule processing which runs per-cpu. | ||
441 | * It needs to ensure that the rules are not being changed while the packet | ||
442 | * is being processed. In some cases, the read lock will be acquired | ||
443 | * twice on the same CPU; this is okay because of the count. | ||
444 | * | ||
445 | * "writing" is used when reading counters. | ||
446 | * During replace any readers that are using the old tables have to complete | ||
447 | * before freeing the old table. This is handled by the write locking | ||
448 | * necessary for reading the counters. | ||
449 | */ | ||
450 | struct xt_info_lock { | ||
451 | spinlock_t lock; | ||
452 | unsigned char readers; | ||
453 | }; | ||
454 | DECLARE_PER_CPU(struct xt_info_lock, xt_info_locks); | ||
455 | |||
456 | /* | ||
457 | * Note: we need to ensure that preemption is disabled before acquiring | ||
458 | * the per-cpu-variable, so we do it as a two step process rather than | ||
459 | * using "spin_lock_bh()". | ||
460 | * | ||
461 | * We _also_ need to disable bottom half processing before updating our | ||
462 | * nesting count, to make sure that the only kind of re-entrancy is this | ||
463 | * code being called by itself: since the count+lock is not an atomic | ||
464 | * operation, we can allow no races. | ||
465 | * | ||
466 | * _Only_ that special combination of being per-cpu and never getting | ||
467 | * re-entered asynchronously means that the count is safe. | ||
468 | */ | ||
469 | static inline void xt_info_rdlock_bh(void) | ||
470 | { | ||
471 | struct xt_info_lock *lock; | ||
472 | |||
473 | local_bh_disable(); | ||
474 | lock = &__get_cpu_var(xt_info_locks); | ||
475 | if (!lock->readers++) | ||
476 | spin_lock(&lock->lock); | ||
477 | } | ||
478 | |||
479 | static inline void xt_info_rdunlock_bh(void) | ||
480 | { | ||
481 | struct xt_info_lock *lock = &__get_cpu_var(xt_info_locks); | ||
482 | |||
483 | if (!--lock->readers) | ||
484 | spin_unlock(&lock->lock); | ||
485 | local_bh_enable(); | ||
486 | } | ||
487 | |||
488 | /* | ||
489 | * The "writer" side needs to get exclusive access to the lock, | ||
490 | * regardless of readers. This must be called with bottom half | ||
491 | * processing (and thus also preemption) disabled. | ||
492 | */ | ||
493 | static inline void xt_info_wrlock(unsigned int cpu) | ||
494 | { | ||
495 | spin_lock(&per_cpu(xt_info_locks, cpu).lock); | ||
496 | } | ||
497 | |||
498 | static inline void xt_info_wrunlock(unsigned int cpu) | ||
499 | { | ||
500 | spin_unlock(&per_cpu(xt_info_locks, cpu).lock); | ||
501 | } | ||
439 | 502 | ||
440 | /* | 503 | /* |
441 | * This helper is performance critical and must be inlined | 504 | * This helper is performance critical and must be inlined |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index e4d08c1b2e0b..616bf8b3c8b5 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
@@ -376,6 +376,7 @@ | |||
376 | #define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */ | 376 | #define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */ |
377 | #define PCI_EXP_TYPE_PCI_BRIDGE 0x7 /* PCI/PCI-X Bridge */ | 377 | #define PCI_EXP_TYPE_PCI_BRIDGE 0x7 /* PCI/PCI-X Bridge */ |
378 | #define PCI_EXP_TYPE_RC_END 0x9 /* Root Complex Integrated Endpoint */ | 378 | #define PCI_EXP_TYPE_RC_END 0x9 /* Root Complex Integrated Endpoint */ |
379 | #define PCI_EXP_TYPE_RC_EC 0x10 /* Root Complex Event Collector */ | ||
379 | #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */ | 380 | #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */ |
380 | #define PCI_EXP_FLAGS_IRQ 0x3e00 /* Interrupt message number */ | 381 | #define PCI_EXP_FLAGS_IRQ 0x3e00 /* Interrupt message number */ |
381 | #define PCI_EXP_DEVCAP 4 /* Device capabilities */ | 382 | #define PCI_EXP_DEVCAP 4 /* Device capabilities */ |
diff --git a/include/linux/percpu-defs.h b/include/linux/percpu-defs.h new file mode 100644 index 000000000000..8f921d74f49f --- /dev/null +++ b/include/linux/percpu-defs.h | |||
@@ -0,0 +1,84 @@ | |||
1 | #ifndef _LINUX_PERCPU_DEFS_H | ||
2 | #define _LINUX_PERCPU_DEFS_H | ||
3 | |||
4 | /* | ||
5 | * Determine the real variable name from the name visible in the | ||
6 | * kernel sources. | ||
7 | */ | ||
8 | #define per_cpu_var(var) per_cpu__##var | ||
9 | |||
10 | /* | ||
11 | * Base implementations of per-CPU variable declarations and definitions, where | ||
12 | * the section in which the variable is to be placed is provided by the | ||
13 | * 'section' argument. This may be used to affect the parameters governing the | ||
14 | * variable's storage. | ||
15 | * | ||
16 | * NOTE! The sections for the DECLARE and for the DEFINE must match, lest | ||
17 | * linkage errors occur due the compiler generating the wrong code to access | ||
18 | * that section. | ||
19 | */ | ||
20 | #define DECLARE_PER_CPU_SECTION(type, name, section) \ | ||
21 | extern \ | ||
22 | __attribute__((__section__(PER_CPU_BASE_SECTION section))) \ | ||
23 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | ||
24 | |||
25 | #define DEFINE_PER_CPU_SECTION(type, name, section) \ | ||
26 | __attribute__((__section__(PER_CPU_BASE_SECTION section))) \ | ||
27 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | ||
28 | |||
29 | /* | ||
30 | * Variant on the per-CPU variable declaration/definition theme used for | ||
31 | * ordinary per-CPU variables. | ||
32 | */ | ||
33 | #define DECLARE_PER_CPU(type, name) \ | ||
34 | DECLARE_PER_CPU_SECTION(type, name, "") | ||
35 | |||
36 | #define DEFINE_PER_CPU(type, name) \ | ||
37 | DEFINE_PER_CPU_SECTION(type, name, "") | ||
38 | |||
39 | /* | ||
40 | * Declaration/definition used for per-CPU variables that must come first in | ||
41 | * the set of variables. | ||
42 | */ | ||
43 | #define DECLARE_PER_CPU_FIRST(type, name) \ | ||
44 | DECLARE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION) | ||
45 | |||
46 | #define DEFINE_PER_CPU_FIRST(type, name) \ | ||
47 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION) | ||
48 | |||
49 | /* | ||
50 | * Declaration/definition used for per-CPU variables that must be cacheline | ||
51 | * aligned under SMP conditions so that, whilst a particular instance of the | ||
52 | * data corresponds to a particular CPU, inefficiencies due to direct access by | ||
53 | * other CPUs are reduced by preventing the data from unnecessarily spanning | ||
54 | * cachelines. | ||
55 | * | ||
56 | * An example of this would be statistical data, where each CPU's set of data | ||
57 | * is updated by that CPU alone, but the data from across all CPUs is collated | ||
58 | * by a CPU processing a read from a proc file. | ||
59 | */ | ||
60 | #define DECLARE_PER_CPU_SHARED_ALIGNED(type, name) \ | ||
61 | DECLARE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \ | ||
62 | ____cacheline_aligned_in_smp | ||
63 | |||
64 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ | ||
65 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \ | ||
66 | ____cacheline_aligned_in_smp | ||
67 | |||
68 | /* | ||
69 | * Declaration/definition used for per-CPU variables that must be page aligned. | ||
70 | */ | ||
71 | #define DECLARE_PER_CPU_PAGE_ALIGNED(type, name) \ | ||
72 | DECLARE_PER_CPU_SECTION(type, name, ".page_aligned") | ||
73 | |||
74 | #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ | ||
75 | DEFINE_PER_CPU_SECTION(type, name, ".page_aligned") | ||
76 | |||
77 | /* | ||
78 | * Intermodule exports for per-CPU variables. | ||
79 | */ | ||
80 | #define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var) | ||
81 | #define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var) | ||
82 | |||
83 | |||
84 | #endif /* _LINUX_PERCPU_DEFS_H */ | ||
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index cfda2d5ad319..1581ff235c7e 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
@@ -9,50 +9,6 @@ | |||
9 | 9 | ||
10 | #include <asm/percpu.h> | 10 | #include <asm/percpu.h> |
11 | 11 | ||
12 | #ifndef PER_CPU_BASE_SECTION | ||
13 | #ifdef CONFIG_SMP | ||
14 | #define PER_CPU_BASE_SECTION ".data.percpu" | ||
15 | #else | ||
16 | #define PER_CPU_BASE_SECTION ".data" | ||
17 | #endif | ||
18 | #endif | ||
19 | |||
20 | #ifdef CONFIG_SMP | ||
21 | |||
22 | #ifdef MODULE | ||
23 | #define PER_CPU_SHARED_ALIGNED_SECTION "" | ||
24 | #else | ||
25 | #define PER_CPU_SHARED_ALIGNED_SECTION ".shared_aligned" | ||
26 | #endif | ||
27 | #define PER_CPU_FIRST_SECTION ".first" | ||
28 | |||
29 | #else | ||
30 | |||
31 | #define PER_CPU_SHARED_ALIGNED_SECTION "" | ||
32 | #define PER_CPU_FIRST_SECTION "" | ||
33 | |||
34 | #endif | ||
35 | |||
36 | #define DEFINE_PER_CPU_SECTION(type, name, section) \ | ||
37 | __attribute__((__section__(PER_CPU_BASE_SECTION section))) \ | ||
38 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | ||
39 | |||
40 | #define DEFINE_PER_CPU(type, name) \ | ||
41 | DEFINE_PER_CPU_SECTION(type, name, "") | ||
42 | |||
43 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ | ||
44 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_SHARED_ALIGNED_SECTION) \ | ||
45 | ____cacheline_aligned_in_smp | ||
46 | |||
47 | #define DEFINE_PER_CPU_PAGE_ALIGNED(type, name) \ | ||
48 | DEFINE_PER_CPU_SECTION(type, name, ".page_aligned") | ||
49 | |||
50 | #define DEFINE_PER_CPU_FIRST(type, name) \ | ||
51 | DEFINE_PER_CPU_SECTION(type, name, PER_CPU_FIRST_SECTION) | ||
52 | |||
53 | #define EXPORT_PER_CPU_SYMBOL(var) EXPORT_SYMBOL(per_cpu__##var) | ||
54 | #define EXPORT_PER_CPU_SYMBOL_GPL(var) EXPORT_SYMBOL_GPL(per_cpu__##var) | ||
55 | |||
56 | /* enough to cover all DEFINE_PER_CPUs in modules */ | 12 | /* enough to cover all DEFINE_PER_CPUs in modules */ |
57 | #ifdef CONFIG_MODULES | 13 | #ifdef CONFIG_MODULES |
58 | #define PERCPU_MODULE_RESERVE (8 << 10) | 14 | #define PERCPU_MODULE_RESERVE (8 << 10) |
diff --git a/include/linux/pktcdvd.h b/include/linux/pktcdvd.h index 04b4d7330e6d..d745f5b6c7b0 100644 --- a/include/linux/pktcdvd.h +++ b/include/linux/pktcdvd.h | |||
@@ -113,6 +113,7 @@ struct pkt_ctrl_command { | |||
113 | #include <linux/cdrom.h> | 113 | #include <linux/cdrom.h> |
114 | #include <linux/kobject.h> | 114 | #include <linux/kobject.h> |
115 | #include <linux/sysfs.h> | 115 | #include <linux/sysfs.h> |
116 | #include <linux/mempool.h> | ||
116 | 117 | ||
117 | /* default bio write queue congestion marks */ | 118 | /* default bio write queue congestion marks */ |
118 | #define PKT_WRITE_CONGESTION_ON 10000 | 119 | #define PKT_WRITE_CONGESTION_ON 10000 |
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 4848d8dacd90..225f733e7533 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h | |||
@@ -50,6 +50,7 @@ enum regulator_status { | |||
50 | * @set_current_limit: Configure a limit for a current-limited regulator. | 50 | * @set_current_limit: Configure a limit for a current-limited regulator. |
51 | * @get_current_limit: Get the configured limit for a current-limited regulator. | 51 | * @get_current_limit: Get the configured limit for a current-limited regulator. |
52 | * | 52 | * |
53 | * @set_mode: Set the configured operating mode for the regulator. | ||
53 | * @get_mode: Get the configured operating mode for the regulator. | 54 | * @get_mode: Get the configured operating mode for the regulator. |
54 | * @get_status: Return actual (not as-configured) status of regulator, as a | 55 | * @get_status: Return actual (not as-configured) status of regulator, as a |
55 | * REGULATOR_STATUS value (or negative errno) | 56 | * REGULATOR_STATUS value (or negative errno) |
diff --git a/include/linux/reiserfs_fs_sb.h b/include/linux/reiserfs_fs_sb.h index 5621d87c4479..6b361d23a499 100644 --- a/include/linux/reiserfs_fs_sb.h +++ b/include/linux/reiserfs_fs_sb.h | |||
@@ -193,7 +193,7 @@ struct reiserfs_journal { | |||
193 | atomic_t j_wcount; /* count of writers for current commit */ | 193 | atomic_t j_wcount; /* count of writers for current commit */ |
194 | unsigned long j_bcount; /* batch count. allows turning X transactions into 1 */ | 194 | unsigned long j_bcount; /* batch count. allows turning X transactions into 1 */ |
195 | unsigned long j_first_unflushed_offset; /* first unflushed transactions offset */ | 195 | unsigned long j_first_unflushed_offset; /* first unflushed transactions offset */ |
196 | unsigned long j_last_flush_trans_id; /* last fully flushed journal timestamp */ | 196 | unsigned j_last_flush_trans_id; /* last fully flushed journal timestamp */ |
197 | struct buffer_head *j_header_bh; | 197 | struct buffer_head *j_header_bh; |
198 | 198 | ||
199 | time_t j_trans_start_time; /* time this transaction started */ | 199 | time_t j_trans_start_time; /* time this transaction started */ |
diff --git a/include/linux/section-names.h b/include/linux/section-names.h new file mode 100644 index 000000000000..c956f4eb2adf --- /dev/null +++ b/include/linux/section-names.h | |||
@@ -0,0 +1,6 @@ | |||
1 | #ifndef __LINUX_SECTION_NAMES_H | ||
2 | #define __LINUX_SECTION_NAMES_H | ||
3 | |||
4 | #define HEAD_TEXT_SECTION .head.text | ||
5 | |||
6 | #endif /* !__LINUX_SECTION_NAMES_H */ | ||
diff --git a/include/linux/slow-work.h b/include/linux/slow-work.h index 85958277f83d..b65c8881f07a 100644 --- a/include/linux/slow-work.h +++ b/include/linux/slow-work.h | |||
@@ -67,7 +67,7 @@ static inline void slow_work_init(struct slow_work *work, | |||
67 | } | 67 | } |
68 | 68 | ||
69 | /** | 69 | /** |
70 | * slow_work_init - Initialise a very slow work item | 70 | * vslow_work_init - Initialise a very slow work item |
71 | * @work: The work item to initialise | 71 | * @work: The work item to initialise |
72 | * @ops: The operations to use to handle the slow work item | 72 | * @ops: The operations to use to handle the slow work item |
73 | * | 73 | * |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 2cc43fa380cb..a0faa18f7b1b 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
@@ -245,7 +245,12 @@ struct spi_master { | |||
245 | */ | 245 | */ |
246 | u16 dma_alignment; | 246 | u16 dma_alignment; |
247 | 247 | ||
248 | /* setup mode and clock, etc (spi driver may call many times) */ | 248 | /* Setup mode and clock, etc (spi driver may call many times). |
249 | * | ||
250 | * IMPORTANT: this may be called when transfers to another | ||
251 | * device are active. DO NOT UPDATE SHARED REGISTERS in ways | ||
252 | * which could break those transfers. | ||
253 | */ | ||
249 | int (*setup)(struct spi_device *spi); | 254 | int (*setup)(struct spi_device *spi); |
250 | 255 | ||
251 | /* bidirectional bulk transfers | 256 | /* bidirectional bulk transfers |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index dabe4ad89141..40617c1d8976 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
@@ -148,7 +148,7 @@ struct old_linux_dirent; | |||
148 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ | 148 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ |
149 | "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) | 149 | "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) |
150 | #else | 150 | #else |
151 | #ifdef CONFIG_ALPHA | 151 | #if defined(CONFIG_ALPHA) || defined(CONFIG_MIPS) |
152 | #define SYSCALL_ALIAS(alias, name) \ | 152 | #define SYSCALL_ALIAS(alias, name) \ |
153 | asm ( #alias " = " #name "\n\t.globl " #alias) | 153 | asm ( #alias " = " #name "\n\t.globl " #alias) |
154 | #else | 154 | #else |
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h index d6aad0ea6033..d43755669261 100644 --- a/include/linux/usb/musb.h +++ b/include/linux/usb/musb.h | |||
@@ -7,6 +7,9 @@ | |||
7 | * key configuration differences between boards. | 7 | * key configuration differences between boards. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #ifndef __LINUX_USB_MUSB_H | ||
11 | #define __LINUX_USB_MUSB_H | ||
12 | |||
10 | /* The USB role is defined by the connector used on the board, so long as | 13 | /* The USB role is defined by the connector used on the board, so long as |
11 | * standards are being followed. (Developer boards sometimes won't.) | 14 | * standards are being followed. (Developer boards sometimes won't.) |
12 | */ | 15 | */ |
@@ -101,3 +104,5 @@ extern int __init tusb6010_setup_interface( | |||
101 | extern int tusb6010_platform_retime(unsigned is_refclk); | 104 | extern int tusb6010_platform_retime(unsigned is_refclk); |
102 | 105 | ||
103 | #endif /* OMAP2 */ | 106 | #endif /* OMAP2 */ |
107 | |||
108 | #endif /* __LINUX_USB_MUSB_H */ | ||
diff --git a/include/linux/wait.h b/include/linux/wait.h index 5d631c17eaee..bc024632f365 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
@@ -440,13 +440,15 @@ void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait, | |||
440 | int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | 440 | int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
441 | int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | 441 | int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
442 | 442 | ||
443 | #define DEFINE_WAIT(name) \ | 443 | #define DEFINE_WAIT_FUNC(name, function) \ |
444 | wait_queue_t name = { \ | 444 | wait_queue_t name = { \ |
445 | .private = current, \ | 445 | .private = current, \ |
446 | .func = autoremove_wake_function, \ | 446 | .func = function, \ |
447 | .task_list = LIST_HEAD_INIT((name).task_list), \ | 447 | .task_list = LIST_HEAD_INIT((name).task_list), \ |
448 | } | 448 | } |
449 | 449 | ||
450 | #define DEFINE_WAIT(name) DEFINE_WAIT_FUNC(name, autoremove_wake_function) | ||
451 | |||
450 | #define DEFINE_WAIT_BIT(name, word, bit) \ | 452 | #define DEFINE_WAIT_BIT(name, word, bit) \ |
451 | struct wait_bit_queue name = { \ | 453 | struct wait_bit_queue name = { \ |
452 | .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ | 454 | .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ |
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index f69f015bbcc0..ed3aea1605e8 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h | |||
@@ -101,6 +101,7 @@ enum { | |||
101 | /* HCI timeouts */ | 101 | /* HCI timeouts */ |
102 | #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */ | 102 | #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */ |
103 | #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */ | 103 | #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */ |
104 | #define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */ | ||
104 | #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */ | 105 | #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */ |
105 | #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */ | 106 | #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */ |
106 | 107 | ||
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 01f9316b4c23..be5bd713d2c9 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -171,6 +171,7 @@ struct hci_conn { | |||
171 | __u8 auth_type; | 171 | __u8 auth_type; |
172 | __u8 sec_level; | 172 | __u8 sec_level; |
173 | __u8 power_save; | 173 | __u8 power_save; |
174 | __u16 disc_timeout; | ||
174 | unsigned long pend; | 175 | unsigned long pend; |
175 | 176 | ||
176 | unsigned int sent; | 177 | unsigned int sent; |
@@ -180,7 +181,8 @@ struct hci_conn { | |||
180 | struct timer_list disc_timer; | 181 | struct timer_list disc_timer; |
181 | struct timer_list idle_timer; | 182 | struct timer_list idle_timer; |
182 | 183 | ||
183 | struct work_struct work; | 184 | struct work_struct work_add; |
185 | struct work_struct work_del; | ||
184 | 186 | ||
185 | struct device dev; | 187 | struct device dev; |
186 | 188 | ||
@@ -348,9 +350,9 @@ static inline void hci_conn_put(struct hci_conn *conn) | |||
348 | if (conn->type == ACL_LINK) { | 350 | if (conn->type == ACL_LINK) { |
349 | del_timer(&conn->idle_timer); | 351 | del_timer(&conn->idle_timer); |
350 | if (conn->state == BT_CONNECTED) { | 352 | if (conn->state == BT_CONNECTED) { |
351 | timeo = msecs_to_jiffies(HCI_DISCONN_TIMEOUT); | 353 | timeo = msecs_to_jiffies(conn->disc_timeout); |
352 | if (!conn->out) | 354 | if (!conn->out) |
353 | timeo *= 5; | 355 | timeo *= 2; |
354 | } else | 356 | } else |
355 | timeo = msecs_to_jiffies(10); | 357 | timeo = msecs_to_jiffies(10); |
356 | } else | 358 | } else |
diff --git a/include/net/netfilter/nf_nat.h b/include/net/netfilter/nf_nat.h index 9dc1039ff78b..8df0b7f7fc6e 100644 --- a/include/net/netfilter/nf_nat.h +++ b/include/net/netfilter/nf_nat.h | |||
@@ -18,6 +18,7 @@ enum nf_nat_manip_type | |||
18 | #define IP_NAT_RANGE_MAP_IPS 1 | 18 | #define IP_NAT_RANGE_MAP_IPS 1 |
19 | #define IP_NAT_RANGE_PROTO_SPECIFIED 2 | 19 | #define IP_NAT_RANGE_PROTO_SPECIFIED 2 |
20 | #define IP_NAT_RANGE_PROTO_RANDOM 4 | 20 | #define IP_NAT_RANGE_PROTO_RANDOM 4 |
21 | #define IP_NAT_RANGE_PERSISTENT 8 | ||
21 | 22 | ||
22 | /* NAT sequence number modifications */ | 23 | /* NAT sequence number modifications */ |
23 | struct nf_nat_seq { | 24 | struct nf_nat_seq { |
diff --git a/include/sound/pxa2xx-lib.h b/include/sound/pxa2xx-lib.h index 2c894b600e5b..2fd3d251d9a5 100644 --- a/include/sound/pxa2xx-lib.h +++ b/include/sound/pxa2xx-lib.h | |||
@@ -42,19 +42,4 @@ extern int pxa2xx_ac97_hw_resume(void); | |||
42 | extern int pxa2xx_ac97_hw_probe(struct platform_device *dev); | 42 | extern int pxa2xx_ac97_hw_probe(struct platform_device *dev); |
43 | extern void pxa2xx_ac97_hw_remove(struct platform_device *dev); | 43 | extern void pxa2xx_ac97_hw_remove(struct platform_device *dev); |
44 | 44 | ||
45 | /* AC97 platform_data */ | ||
46 | /** | ||
47 | * struct pxa2xx_ac97_platform_data - pxa ac97 platform data | ||
48 | * @reset_gpio: AC97 reset gpio (normally gpio113 or gpio95) | ||
49 | * a -1 value means no gpio will be used for reset | ||
50 | * | ||
51 | * Platform data should only be specified for pxa27x CPUs where a silicon bug | ||
52 | * prevents correct operation of the reset line. If not specified, the default | ||
53 | * behaviour is to consider gpio 113 as the AC97 reset line, which is the | ||
54 | * default on most boards. | ||
55 | */ | ||
56 | struct pxa2xx_ac97_platform_data { | ||
57 | int reset_gpio; | ||
58 | }; | ||
59 | |||
60 | #endif | 45 | #endif |
diff --git a/kernel/audit_tree.c b/kernel/audit_tree.c index 917ab9525568..6e7351739a82 100644 --- a/kernel/audit_tree.c +++ b/kernel/audit_tree.c | |||
@@ -734,9 +734,6 @@ int audit_tag_tree(char *old, char *new) | |||
734 | dentry = dget(path.dentry); | 734 | dentry = dget(path.dentry); |
735 | path_put(&path); | 735 | path_put(&path); |
736 | 736 | ||
737 | if (dentry == tagged->mnt_root && dentry == mnt->mnt_root) | ||
738 | follow_up(&mnt, &dentry); | ||
739 | |||
740 | list_add_tail(&list, &tagged->mnt_list); | 737 | list_add_tail(&list, &tagged->mnt_list); |
741 | 738 | ||
742 | mutex_lock(&audit_filter_mutex); | 739 | mutex_lock(&audit_filter_mutex); |
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 7e2e7dd4cd2f..2734eca59243 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -109,10 +109,9 @@ int irq_set_affinity(unsigned int irq, const struct cpumask *cpumask) | |||
109 | spin_lock_irqsave(&desc->lock, flags); | 109 | spin_lock_irqsave(&desc->lock, flags); |
110 | 110 | ||
111 | #ifdef CONFIG_GENERIC_PENDING_IRQ | 111 | #ifdef CONFIG_GENERIC_PENDING_IRQ |
112 | if (desc->status & IRQ_MOVE_PCNTXT || desc->status & IRQ_DISABLED) { | 112 | if (desc->status & IRQ_MOVE_PCNTXT) |
113 | cpumask_copy(desc->affinity, cpumask); | ||
114 | desc->chip->set_affinity(irq, cpumask); | 113 | desc->chip->set_affinity(irq, cpumask); |
115 | } else { | 114 | else { |
116 | desc->status |= IRQ_MOVE_PENDING; | 115 | desc->status |= IRQ_MOVE_PENDING; |
117 | cpumask_copy(desc->pending_mask, cpumask); | 116 | cpumask_copy(desc->pending_mask, cpumask); |
118 | } | 117 | } |
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index b0f011866969..accb40cdb12a 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c | |||
@@ -2490,13 +2490,20 @@ static int mark_lock(struct task_struct *curr, struct held_lock *this, | |||
2490 | void lockdep_init_map(struct lockdep_map *lock, const char *name, | 2490 | void lockdep_init_map(struct lockdep_map *lock, const char *name, |
2491 | struct lock_class_key *key, int subclass) | 2491 | struct lock_class_key *key, int subclass) |
2492 | { | 2492 | { |
2493 | if (unlikely(!debug_locks)) | 2493 | lock->class_cache = NULL; |
2494 | #ifdef CONFIG_LOCK_STAT | ||
2495 | lock->cpu = raw_smp_processor_id(); | ||
2496 | #endif | ||
2497 | |||
2498 | if (DEBUG_LOCKS_WARN_ON(!name)) { | ||
2499 | lock->name = "NULL"; | ||
2494 | return; | 2500 | return; |
2501 | } | ||
2502 | |||
2503 | lock->name = name; | ||
2495 | 2504 | ||
2496 | if (DEBUG_LOCKS_WARN_ON(!key)) | 2505 | if (DEBUG_LOCKS_WARN_ON(!key)) |
2497 | return; | 2506 | return; |
2498 | if (DEBUG_LOCKS_WARN_ON(!name)) | ||
2499 | return; | ||
2500 | /* | 2507 | /* |
2501 | * Sanity check, the lock-class key must be persistent: | 2508 | * Sanity check, the lock-class key must be persistent: |
2502 | */ | 2509 | */ |
@@ -2505,12 +2512,11 @@ void lockdep_init_map(struct lockdep_map *lock, const char *name, | |||
2505 | DEBUG_LOCKS_WARN_ON(1); | 2512 | DEBUG_LOCKS_WARN_ON(1); |
2506 | return; | 2513 | return; |
2507 | } | 2514 | } |
2508 | lock->name = name; | ||
2509 | lock->key = key; | 2515 | lock->key = key; |
2510 | lock->class_cache = NULL; | 2516 | |
2511 | #ifdef CONFIG_LOCK_STAT | 2517 | if (unlikely(!debug_locks)) |
2512 | lock->cpu = raw_smp_processor_id(); | 2518 | return; |
2513 | #endif | 2519 | |
2514 | if (subclass) | 2520 | if (subclass) |
2515 | register_lock_class(lock, subclass, 1); | 2521 | register_lock_class(lock, subclass, 1); |
2516 | } | 2522 | } |
diff --git a/kernel/panic.c b/kernel/panic.c index 934fb377f4b3..3dcaa1661357 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
@@ -221,7 +221,7 @@ void add_taint(unsigned flag) | |||
221 | * post-warning case. | 221 | * post-warning case. |
222 | */ | 222 | */ |
223 | if (flag != TAINT_CRAP && flag != TAINT_WARN && __debug_locks_off()) | 223 | if (flag != TAINT_CRAP && flag != TAINT_WARN && __debug_locks_off()) |
224 | printk(KERN_WARNING "Disabling lockdep due to kernel taint\n"); | 224 | printk(KERN_WARNING "Disabling lock debugging due to kernel taint\n"); |
225 | 225 | ||
226 | set_bit(flag, &tainted_mask); | 226 | set_bit(flag, &tainted_mask); |
227 | } | 227 | } |
diff --git a/kernel/power/disk.c b/kernel/power/disk.c index 0854770b63b9..e71ca9cd81b2 100644 --- a/kernel/power/disk.c +++ b/kernel/power/disk.c | |||
@@ -646,13 +646,6 @@ static int software_resume(void) | |||
646 | return 0; | 646 | return 0; |
647 | 647 | ||
648 | /* | 648 | /* |
649 | * We can't depend on SCSI devices being available after loading one of | ||
650 | * their modules if scsi_complete_async_scans() is not called and the | ||
651 | * resume device usually is a SCSI one. | ||
652 | */ | ||
653 | scsi_complete_async_scans(); | ||
654 | |||
655 | /* | ||
656 | * name_to_dev_t() below takes a sysfs buffer mutex when sysfs | 649 | * name_to_dev_t() below takes a sysfs buffer mutex when sysfs |
657 | * is configured into the kernel. Since the regular hibernate | 650 | * is configured into the kernel. Since the regular hibernate |
658 | * trigger path is via sysfs which takes a buffer mutex before | 651 | * trigger path is via sysfs which takes a buffer mutex before |
@@ -663,32 +656,42 @@ static int software_resume(void) | |||
663 | * here to avoid lockdep complaining. | 656 | * here to avoid lockdep complaining. |
664 | */ | 657 | */ |
665 | mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING); | 658 | mutex_lock_nested(&pm_mutex, SINGLE_DEPTH_NESTING); |
659 | |||
660 | if (swsusp_resume_device) | ||
661 | goto Check_image; | ||
662 | |||
663 | if (!strlen(resume_file)) { | ||
664 | error = -ENOENT; | ||
665 | goto Unlock; | ||
666 | } | ||
667 | |||
668 | pr_debug("PM: Checking image partition %s\n", resume_file); | ||
669 | |||
670 | /* Check if the device is there */ | ||
671 | swsusp_resume_device = name_to_dev_t(resume_file); | ||
666 | if (!swsusp_resume_device) { | 672 | if (!swsusp_resume_device) { |
667 | if (!strlen(resume_file)) { | ||
668 | mutex_unlock(&pm_mutex); | ||
669 | return -ENOENT; | ||
670 | } | ||
671 | /* | 673 | /* |
672 | * Some device discovery might still be in progress; we need | 674 | * Some device discovery might still be in progress; we need |
673 | * to wait for this to finish. | 675 | * to wait for this to finish. |
674 | */ | 676 | */ |
675 | wait_for_device_probe(); | 677 | wait_for_device_probe(); |
678 | /* | ||
679 | * We can't depend on SCSI devices being available after loading | ||
680 | * one of their modules until scsi_complete_async_scans() is | ||
681 | * called and the resume device usually is a SCSI one. | ||
682 | */ | ||
683 | scsi_complete_async_scans(); | ||
684 | |||
676 | swsusp_resume_device = name_to_dev_t(resume_file); | 685 | swsusp_resume_device = name_to_dev_t(resume_file); |
677 | pr_debug("PM: Resume from partition %s\n", resume_file); | 686 | if (!swsusp_resume_device) { |
678 | } else { | 687 | error = -ENODEV; |
679 | pr_debug("PM: Resume from partition %d:%d\n", | 688 | goto Unlock; |
680 | MAJOR(swsusp_resume_device), | 689 | } |
681 | MINOR(swsusp_resume_device)); | ||
682 | } | 690 | } |
683 | 691 | ||
684 | if (noresume) { | 692 | Check_image: |
685 | /** | 693 | pr_debug("PM: Resume from partition %d:%d\n", |
686 | * FIXME: If noresume is specified, we need to find the | 694 | MAJOR(swsusp_resume_device), MINOR(swsusp_resume_device)); |
687 | * partition and reset it back to normal swap space. | ||
688 | */ | ||
689 | mutex_unlock(&pm_mutex); | ||
690 | return 0; | ||
691 | } | ||
692 | 695 | ||
693 | pr_debug("PM: Checking hibernation image.\n"); | 696 | pr_debug("PM: Checking hibernation image.\n"); |
694 | error = swsusp_check(); | 697 | error = swsusp_check(); |
diff --git a/kernel/ptrace.c b/kernel/ptrace.c index dfcd83ceee3b..0692ab5a0d67 100644 --- a/kernel/ptrace.c +++ b/kernel/ptrace.c | |||
@@ -188,7 +188,7 @@ int ptrace_attach(struct task_struct *task) | |||
188 | /* Protect exec's credential calculations against our interference; | 188 | /* Protect exec's credential calculations against our interference; |
189 | * SUID, SGID and LSM creds get determined differently under ptrace. | 189 | * SUID, SGID and LSM creds get determined differently under ptrace. |
190 | */ | 190 | */ |
191 | retval = mutex_lock_interruptible(¤t->cred_exec_mutex); | 191 | retval = mutex_lock_interruptible(&task->cred_exec_mutex); |
192 | if (retval < 0) | 192 | if (retval < 0) |
193 | goto out; | 193 | goto out; |
194 | 194 | ||
@@ -232,7 +232,7 @@ repeat: | |||
232 | bad: | 232 | bad: |
233 | write_unlock_irqrestore(&tasklist_lock, flags); | 233 | write_unlock_irqrestore(&tasklist_lock, flags); |
234 | task_unlock(task); | 234 | task_unlock(task); |
235 | mutex_unlock(¤t->cred_exec_mutex); | 235 | mutex_unlock(&task->cred_exec_mutex); |
236 | out: | 236 | out: |
237 | return retval; | 237 | return retval; |
238 | } | 238 | } |
diff --git a/kernel/slow-work.c b/kernel/slow-work.c index cf2bc01186ef..b28d19135f43 100644 --- a/kernel/slow-work.c +++ b/kernel/slow-work.c | |||
@@ -609,14 +609,14 @@ void slow_work_unregister_user(void) | |||
609 | if (slow_work_user_count == 0) { | 609 | if (slow_work_user_count == 0) { |
610 | printk(KERN_NOTICE "Slow work thread pool: Shutting down\n"); | 610 | printk(KERN_NOTICE "Slow work thread pool: Shutting down\n"); |
611 | slow_work_threads_should_exit = true; | 611 | slow_work_threads_should_exit = true; |
612 | del_timer_sync(&slow_work_cull_timer); | ||
613 | del_timer_sync(&slow_work_oom_timer); | ||
612 | wake_up_all(&slow_work_thread_wq); | 614 | wake_up_all(&slow_work_thread_wq); |
613 | wait_for_completion(&slow_work_last_thread_exited); | 615 | wait_for_completion(&slow_work_last_thread_exited); |
614 | printk(KERN_NOTICE "Slow work thread pool:" | 616 | printk(KERN_NOTICE "Slow work thread pool:" |
615 | " Shut down complete\n"); | 617 | " Shut down complete\n"); |
616 | } | 618 | } |
617 | 619 | ||
618 | del_timer_sync(&slow_work_cull_timer); | ||
619 | |||
620 | mutex_unlock(&slow_work_user_lock); | 620 | mutex_unlock(&slow_work_user_lock); |
621 | } | 621 | } |
622 | EXPORT_SYMBOL(slow_work_unregister_user); | 622 | EXPORT_SYMBOL(slow_work_unregister_user); |
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index c46c931a7fe7..ecfd7b5187e0 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
@@ -181,12 +181,12 @@ static void clocksource_watchdog(unsigned long data) | |||
181 | 181 | ||
182 | resumed = test_and_clear_bit(0, &watchdog_resumed); | 182 | resumed = test_and_clear_bit(0, &watchdog_resumed); |
183 | 183 | ||
184 | wdnow = watchdog->read(); | 184 | wdnow = watchdog->read(watchdog); |
185 | wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask); | 185 | wd_nsec = cyc2ns(watchdog, (wdnow - watchdog_last) & watchdog->mask); |
186 | watchdog_last = wdnow; | 186 | watchdog_last = wdnow; |
187 | 187 | ||
188 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) { | 188 | list_for_each_entry_safe(cs, tmp, &watchdog_list, wd_list) { |
189 | csnow = cs->read(); | 189 | csnow = cs->read(cs); |
190 | 190 | ||
191 | if (unlikely(resumed)) { | 191 | if (unlikely(resumed)) { |
192 | cs->wd_last = csnow; | 192 | cs->wd_last = csnow; |
@@ -247,7 +247,7 @@ static void clocksource_check_watchdog(struct clocksource *cs) | |||
247 | 247 | ||
248 | list_add(&cs->wd_list, &watchdog_list); | 248 | list_add(&cs->wd_list, &watchdog_list); |
249 | if (!started && watchdog) { | 249 | if (!started && watchdog) { |
250 | watchdog_last = watchdog->read(); | 250 | watchdog_last = watchdog->read(watchdog); |
251 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; | 251 | watchdog_timer.expires = jiffies + WATCHDOG_INTERVAL; |
252 | add_timer_on(&watchdog_timer, | 252 | add_timer_on(&watchdog_timer, |
253 | cpumask_first(cpu_online_mask)); | 253 | cpumask_first(cpu_online_mask)); |
@@ -268,7 +268,7 @@ static void clocksource_check_watchdog(struct clocksource *cs) | |||
268 | cse->flags &= ~CLOCK_SOURCE_WATCHDOG; | 268 | cse->flags &= ~CLOCK_SOURCE_WATCHDOG; |
269 | /* Start if list is not empty */ | 269 | /* Start if list is not empty */ |
270 | if (!list_empty(&watchdog_list)) { | 270 | if (!list_empty(&watchdog_list)) { |
271 | watchdog_last = watchdog->read(); | 271 | watchdog_last = watchdog->read(watchdog); |
272 | watchdog_timer.expires = | 272 | watchdog_timer.expires = |
273 | jiffies + WATCHDOG_INTERVAL; | 273 | jiffies + WATCHDOG_INTERVAL; |
274 | add_timer_on(&watchdog_timer, | 274 | add_timer_on(&watchdog_timer, |
diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c index 06f197560f3b..c3f6c30816e3 100644 --- a/kernel/time/jiffies.c +++ b/kernel/time/jiffies.c | |||
@@ -50,7 +50,7 @@ | |||
50 | */ | 50 | */ |
51 | #define JIFFIES_SHIFT 8 | 51 | #define JIFFIES_SHIFT 8 |
52 | 52 | ||
53 | static cycle_t jiffies_read(void) | 53 | static cycle_t jiffies_read(struct clocksource *cs) |
54 | { | 54 | { |
55 | return (cycle_t) jiffies; | 55 | return (cycle_t) jiffies; |
56 | } | 56 | } |
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 900f1b6598d1..687dff49f6e7 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -182,7 +182,7 @@ EXPORT_SYMBOL(do_settimeofday); | |||
182 | */ | 182 | */ |
183 | static void change_clocksource(void) | 183 | static void change_clocksource(void) |
184 | { | 184 | { |
185 | struct clocksource *new; | 185 | struct clocksource *new, *old; |
186 | 186 | ||
187 | new = clocksource_get_next(); | 187 | new = clocksource_get_next(); |
188 | 188 | ||
@@ -191,11 +191,16 @@ static void change_clocksource(void) | |||
191 | 191 | ||
192 | clocksource_forward_now(); | 192 | clocksource_forward_now(); |
193 | 193 | ||
194 | new->raw_time = clock->raw_time; | 194 | if (clocksource_enable(new)) |
195 | return; | ||
195 | 196 | ||
197 | new->raw_time = clock->raw_time; | ||
198 | old = clock; | ||
196 | clock = new; | 199 | clock = new; |
200 | clocksource_disable(old); | ||
201 | |||
197 | clock->cycle_last = 0; | 202 | clock->cycle_last = 0; |
198 | clock->cycle_last = clocksource_read(new); | 203 | clock->cycle_last = clocksource_read(clock); |
199 | clock->error = 0; | 204 | clock->error = 0; |
200 | clock->xtime_nsec = 0; | 205 | clock->xtime_nsec = 0; |
201 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); | 206 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); |
@@ -292,6 +297,7 @@ void __init timekeeping_init(void) | |||
292 | ntp_init(); | 297 | ntp_init(); |
293 | 298 | ||
294 | clock = clocksource_get_next(); | 299 | clock = clocksource_get_next(); |
300 | clocksource_enable(clock); | ||
295 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); | 301 | clocksource_calculate_interval(clock, NTP_INTERVAL_LENGTH); |
296 | clock->cycle_last = clocksource_read(clock); | 302 | clock->cycle_last = clocksource_read(clock); |
297 | 303 | ||
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index c6e854f215fa..812c28207baf 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -440,7 +440,7 @@ config LOCKDEP | |||
440 | bool | 440 | bool |
441 | depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT | 441 | depends on DEBUG_KERNEL && TRACE_IRQFLAGS_SUPPORT && STACKTRACE_SUPPORT && LOCKDEP_SUPPORT |
442 | select STACKTRACE | 442 | select STACKTRACE |
443 | select FRAME_POINTER if !X86 && !MIPS && !PPC && !ARM_UNWIND | 443 | select FRAME_POINTER if !X86 && !MIPS && !PPC && !ARM_UNWIND && !S390 |
444 | select KALLSYMS | 444 | select KALLSYMS |
445 | select KALLSYMS_ALL | 445 | select KALLSYMS_ALL |
446 | 446 | ||
@@ -620,7 +620,7 @@ config ARCH_WANT_FRAME_POINTERS | |||
620 | config FRAME_POINTER | 620 | config FRAME_POINTER |
621 | bool "Compile the kernel with frame pointers" | 621 | bool "Compile the kernel with frame pointers" |
622 | depends on DEBUG_KERNEL && \ | 622 | depends on DEBUG_KERNEL && \ |
623 | (CRIS || M68K || M68KNOMMU || FRV || UML || S390 || \ | 623 | (CRIS || M68K || M68KNOMMU || FRV || UML || \ |
624 | AVR32 || SUPERH || BLACKFIN || MN10300) || \ | 624 | AVR32 || SUPERH || BLACKFIN || MN10300) || \ |
625 | ARCH_WANT_FRAME_POINTERS | 625 | ARCH_WANT_FRAME_POINTERS |
626 | default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS | 626 | default y if (DEBUG_INFO && UML) || ARCH_WANT_FRAME_POINTERS |
@@ -809,13 +809,13 @@ config FAULT_INJECTION_STACKTRACE_FILTER | |||
809 | depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT | 809 | depends on FAULT_INJECTION_DEBUG_FS && STACKTRACE_SUPPORT |
810 | depends on !X86_64 | 810 | depends on !X86_64 |
811 | select STACKTRACE | 811 | select STACKTRACE |
812 | select FRAME_POINTER if !PPC | 812 | select FRAME_POINTER if !PPC && !S390 |
813 | help | 813 | help |
814 | Provide stacktrace filter for fault-injection capabilities | 814 | Provide stacktrace filter for fault-injection capabilities |
815 | 815 | ||
816 | config LATENCYTOP | 816 | config LATENCYTOP |
817 | bool "Latency measuring infrastructure" | 817 | bool "Latency measuring infrastructure" |
818 | select FRAME_POINTER if !MIPS && !PPC | 818 | select FRAME_POINTER if !MIPS && !PPC && !S390 |
819 | select KALLSYMS | 819 | select KALLSYMS |
820 | select KALLSYMS_ALL | 820 | select KALLSYMS_ALL |
821 | select STACKTRACE | 821 | select STACKTRACE |
diff --git a/lib/Makefile b/lib/Makefile index d6edd6753f40..33a40e40e3ee 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -38,7 +38,7 @@ lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o | |||
38 | lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o | 38 | lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o |
39 | lib-$(CONFIG_GENERIC_FIND_FIRST_BIT) += find_next_bit.o | 39 | lib-$(CONFIG_GENERIC_FIND_FIRST_BIT) += find_next_bit.o |
40 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o | 40 | lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o |
41 | lib-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o | 41 | obj-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o |
42 | obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o | 42 | obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o |
43 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o | 43 | obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o |
44 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o | 44 | obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o |
diff --git a/lib/scatterlist.c b/lib/scatterlist.c index b7b449dafbe5..a295e404e908 100644 --- a/lib/scatterlist.c +++ b/lib/scatterlist.c | |||
@@ -347,9 +347,12 @@ bool sg_miter_next(struct sg_mapping_iter *miter) | |||
347 | sg_miter_stop(miter); | 347 | sg_miter_stop(miter); |
348 | 348 | ||
349 | /* get to the next sg if necessary. __offset is adjusted by stop */ | 349 | /* get to the next sg if necessary. __offset is adjusted by stop */ |
350 | if (miter->__offset == miter->__sg->length && --miter->__nents) { | 350 | while (miter->__offset == miter->__sg->length) { |
351 | miter->__sg = sg_next(miter->__sg); | 351 | if (--miter->__nents) { |
352 | miter->__offset = 0; | 352 | miter->__sg = sg_next(miter->__sg); |
353 | miter->__offset = 0; | ||
354 | } else | ||
355 | return false; | ||
353 | } | 356 | } |
354 | 357 | ||
355 | /* map the next page */ | 358 | /* map the next page */ |
diff --git a/mm/vmscan.c b/mm/vmscan.c index 99155b7b8123..eac9577941f9 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -63,6 +63,9 @@ struct scan_control { | |||
63 | /* Can mapped pages be reclaimed? */ | 63 | /* Can mapped pages be reclaimed? */ |
64 | int may_unmap; | 64 | int may_unmap; |
65 | 65 | ||
66 | /* Can pages be swapped as part of reclaim? */ | ||
67 | int may_swap; | ||
68 | |||
66 | /* This context's SWAP_CLUSTER_MAX. If freeing memory for | 69 | /* This context's SWAP_CLUSTER_MAX. If freeing memory for |
67 | * suspend, we effectively ignore SWAP_CLUSTER_MAX. | 70 | * suspend, we effectively ignore SWAP_CLUSTER_MAX. |
68 | * In this context, it doesn't matter that we scan the | 71 | * In this context, it doesn't matter that we scan the |
@@ -1380,7 +1383,7 @@ static void get_scan_ratio(struct zone *zone, struct scan_control *sc, | |||
1380 | struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc); | 1383 | struct zone_reclaim_stat *reclaim_stat = get_reclaim_stat(zone, sc); |
1381 | 1384 | ||
1382 | /* If we have no swap space, do not bother scanning anon pages. */ | 1385 | /* If we have no swap space, do not bother scanning anon pages. */ |
1383 | if (nr_swap_pages <= 0) { | 1386 | if (!sc->may_swap || (nr_swap_pages <= 0)) { |
1384 | percent[0] = 0; | 1387 | percent[0] = 0; |
1385 | percent[1] = 100; | 1388 | percent[1] = 100; |
1386 | return; | 1389 | return; |
@@ -1697,6 +1700,7 @@ unsigned long try_to_free_pages(struct zonelist *zonelist, int order, | |||
1697 | .may_writepage = !laptop_mode, | 1700 | .may_writepage = !laptop_mode, |
1698 | .swap_cluster_max = SWAP_CLUSTER_MAX, | 1701 | .swap_cluster_max = SWAP_CLUSTER_MAX, |
1699 | .may_unmap = 1, | 1702 | .may_unmap = 1, |
1703 | .may_swap = 1, | ||
1700 | .swappiness = vm_swappiness, | 1704 | .swappiness = vm_swappiness, |
1701 | .order = order, | 1705 | .order = order, |
1702 | .mem_cgroup = NULL, | 1706 | .mem_cgroup = NULL, |
@@ -1717,6 +1721,7 @@ unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont, | |||
1717 | struct scan_control sc = { | 1721 | struct scan_control sc = { |
1718 | .may_writepage = !laptop_mode, | 1722 | .may_writepage = !laptop_mode, |
1719 | .may_unmap = 1, | 1723 | .may_unmap = 1, |
1724 | .may_swap = !noswap, | ||
1720 | .swap_cluster_max = SWAP_CLUSTER_MAX, | 1725 | .swap_cluster_max = SWAP_CLUSTER_MAX, |
1721 | .swappiness = swappiness, | 1726 | .swappiness = swappiness, |
1722 | .order = 0, | 1727 | .order = 0, |
@@ -1726,9 +1731,6 @@ unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem_cont, | |||
1726 | }; | 1731 | }; |
1727 | struct zonelist *zonelist; | 1732 | struct zonelist *zonelist; |
1728 | 1733 | ||
1729 | if (noswap) | ||
1730 | sc.may_unmap = 0; | ||
1731 | |||
1732 | sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) | | 1734 | sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) | |
1733 | (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK); | 1735 | (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK); |
1734 | zonelist = NODE_DATA(numa_node_id())->node_zonelists; | 1736 | zonelist = NODE_DATA(numa_node_id())->node_zonelists; |
@@ -1767,6 +1769,7 @@ static unsigned long balance_pgdat(pg_data_t *pgdat, int order) | |||
1767 | struct scan_control sc = { | 1769 | struct scan_control sc = { |
1768 | .gfp_mask = GFP_KERNEL, | 1770 | .gfp_mask = GFP_KERNEL, |
1769 | .may_unmap = 1, | 1771 | .may_unmap = 1, |
1772 | .may_swap = 1, | ||
1770 | .swap_cluster_max = SWAP_CLUSTER_MAX, | 1773 | .swap_cluster_max = SWAP_CLUSTER_MAX, |
1771 | .swappiness = vm_swappiness, | 1774 | .swappiness = vm_swappiness, |
1772 | .order = order, | 1775 | .order = order, |
@@ -2298,6 +2301,7 @@ static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order) | |||
2298 | struct scan_control sc = { | 2301 | struct scan_control sc = { |
2299 | .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE), | 2302 | .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE), |
2300 | .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP), | 2303 | .may_unmap = !!(zone_reclaim_mode & RECLAIM_SWAP), |
2304 | .may_swap = 1, | ||
2301 | .swap_cluster_max = max_t(unsigned long, nr_pages, | 2305 | .swap_cluster_max = max_t(unsigned long, nr_pages, |
2302 | SWAP_CLUSTER_MAX), | 2306 | SWAP_CLUSTER_MAX), |
2303 | .gfp_mask = gfp_mask, | 2307 | .gfp_mask = gfp_mask, |
diff --git a/net/8021q/vlan.c b/net/8021q/vlan.c index 2b7390e377b3..d1e10546eb85 100644 --- a/net/8021q/vlan.c +++ b/net/8021q/vlan.c | |||
@@ -492,6 +492,7 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event, | |||
492 | continue; | 492 | continue; |
493 | 493 | ||
494 | dev_change_flags(vlandev, flgs & ~IFF_UP); | 494 | dev_change_flags(vlandev, flgs & ~IFF_UP); |
495 | vlan_transfer_operstate(dev, vlandev); | ||
495 | } | 496 | } |
496 | break; | 497 | break; |
497 | 498 | ||
@@ -507,6 +508,7 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event, | |||
507 | continue; | 508 | continue; |
508 | 509 | ||
509 | dev_change_flags(vlandev, flgs | IFF_UP); | 510 | dev_change_flags(vlandev, flgs | IFF_UP); |
511 | vlan_transfer_operstate(dev, vlandev); | ||
510 | } | 512 | } |
511 | break; | 513 | break; |
512 | 514 | ||
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index 1b34135cf990..b4b9068e55a7 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
@@ -462,6 +462,7 @@ static int vlan_dev_open(struct net_device *dev) | |||
462 | if (vlan->flags & VLAN_FLAG_GVRP) | 462 | if (vlan->flags & VLAN_FLAG_GVRP) |
463 | vlan_gvrp_request_join(dev); | 463 | vlan_gvrp_request_join(dev); |
464 | 464 | ||
465 | netif_carrier_on(dev); | ||
465 | return 0; | 466 | return 0; |
466 | 467 | ||
467 | clear_allmulti: | 468 | clear_allmulti: |
@@ -471,6 +472,7 @@ del_unicast: | |||
471 | if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) | 472 | if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) |
472 | dev_unicast_delete(real_dev, dev->dev_addr, ETH_ALEN); | 473 | dev_unicast_delete(real_dev, dev->dev_addr, ETH_ALEN); |
473 | out: | 474 | out: |
475 | netif_carrier_off(dev); | ||
474 | return err; | 476 | return err; |
475 | } | 477 | } |
476 | 478 | ||
@@ -492,6 +494,7 @@ static int vlan_dev_stop(struct net_device *dev) | |||
492 | if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) | 494 | if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) |
493 | dev_unicast_delete(real_dev, dev->dev_addr, dev->addr_len); | 495 | dev_unicast_delete(real_dev, dev->dev_addr, dev->addr_len); |
494 | 496 | ||
497 | netif_carrier_off(dev); | ||
495 | return 0; | 498 | return 0; |
496 | } | 499 | } |
497 | 500 | ||
@@ -612,6 +615,8 @@ static int vlan_dev_init(struct net_device *dev) | |||
612 | struct net_device *real_dev = vlan_dev_info(dev)->real_dev; | 615 | struct net_device *real_dev = vlan_dev_info(dev)->real_dev; |
613 | int subclass = 0; | 616 | int subclass = 0; |
614 | 617 | ||
618 | netif_carrier_off(dev); | ||
619 | |||
615 | /* IFF_BROADCAST|IFF_MULTICAST; ??? */ | 620 | /* IFF_BROADCAST|IFF_MULTICAST; ??? */ |
616 | dev->flags = real_dev->flags & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI); | 621 | dev->flags = real_dev->flags & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI); |
617 | dev->iflink = real_dev->ifindex; | 622 | dev->iflink = real_dev->ifindex; |
@@ -668,7 +673,8 @@ static int vlan_ethtool_get_settings(struct net_device *dev, | |||
668 | const struct vlan_dev_info *vlan = vlan_dev_info(dev); | 673 | const struct vlan_dev_info *vlan = vlan_dev_info(dev); |
669 | struct net_device *real_dev = vlan->real_dev; | 674 | struct net_device *real_dev = vlan->real_dev; |
670 | 675 | ||
671 | if (!real_dev->ethtool_ops->get_settings) | 676 | if (!real_dev->ethtool_ops || |
677 | !real_dev->ethtool_ops->get_settings) | ||
672 | return -EOPNOTSUPP; | 678 | return -EOPNOTSUPP; |
673 | 679 | ||
674 | return real_dev->ethtool_ops->get_settings(real_dev, cmd); | 680 | return real_dev->ethtool_ops->get_settings(real_dev, cmd); |
diff --git a/net/ax25/ax25_uid.c b/net/ax25/ax25_uid.c index 57aeba729bae..832bcf092a01 100644 --- a/net/ax25/ax25_uid.c +++ b/net/ax25/ax25_uid.c | |||
@@ -148,9 +148,13 @@ static void *ax25_uid_seq_start(struct seq_file *seq, loff_t *pos) | |||
148 | { | 148 | { |
149 | struct ax25_uid_assoc *pt; | 149 | struct ax25_uid_assoc *pt; |
150 | struct hlist_node *node; | 150 | struct hlist_node *node; |
151 | int i = 0; | 151 | int i = 1; |
152 | 152 | ||
153 | read_lock(&ax25_uid_lock); | 153 | read_lock(&ax25_uid_lock); |
154 | |||
155 | if (*pos == 0) | ||
156 | return SEQ_START_TOKEN; | ||
157 | |||
154 | ax25_uid_for_each(pt, node, &ax25_uid_list) { | 158 | ax25_uid_for_each(pt, node, &ax25_uid_list) { |
155 | if (i == *pos) | 159 | if (i == *pos) |
156 | return pt; | 160 | return pt; |
@@ -162,8 +166,10 @@ static void *ax25_uid_seq_start(struct seq_file *seq, loff_t *pos) | |||
162 | static void *ax25_uid_seq_next(struct seq_file *seq, void *v, loff_t *pos) | 166 | static void *ax25_uid_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
163 | { | 167 | { |
164 | ++*pos; | 168 | ++*pos; |
165 | 169 | if (v == SEQ_START_TOKEN) | |
166 | return hlist_entry(((ax25_uid_assoc *)v)->uid_node.next, | 170 | return ax25_uid_list.first; |
171 | else | ||
172 | return hlist_entry(((ax25_uid_assoc *)v)->uid_node.next, | ||
167 | ax25_uid_assoc, uid_node); | 173 | ax25_uid_assoc, uid_node); |
168 | } | 174 | } |
169 | 175 | ||
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 1181db08d9de..375f4b4f7f79 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c | |||
@@ -215,6 +215,7 @@ struct hci_conn *hci_conn_add(struct hci_dev *hdev, int type, bdaddr_t *dst) | |||
215 | conn->state = BT_OPEN; | 215 | conn->state = BT_OPEN; |
216 | 216 | ||
217 | conn->power_save = 1; | 217 | conn->power_save = 1; |
218 | conn->disc_timeout = HCI_DISCONN_TIMEOUT; | ||
218 | 219 | ||
219 | switch (type) { | 220 | switch (type) { |
220 | case ACL_LINK: | 221 | case ACL_LINK: |
@@ -424,12 +425,9 @@ int hci_conn_security(struct hci_conn *conn, __u8 sec_level, __u8 auth_type) | |||
424 | if (sec_level == BT_SECURITY_SDP) | 425 | if (sec_level == BT_SECURITY_SDP) |
425 | return 1; | 426 | return 1; |
426 | 427 | ||
427 | if (sec_level == BT_SECURITY_LOW) { | 428 | if (sec_level == BT_SECURITY_LOW && |
428 | if (conn->ssp_mode > 0 && conn->hdev->ssp_mode > 0) | 429 | (!conn->ssp_mode || !conn->hdev->ssp_mode)) |
429 | return hci_conn_auth(conn, sec_level, auth_type); | 430 | return 1; |
430 | else | ||
431 | return 1; | ||
432 | } | ||
433 | 431 | ||
434 | if (conn->link_mode & HCI_LM_ENCRYPT) | 432 | if (conn->link_mode & HCI_LM_ENCRYPT) |
435 | return hci_conn_auth(conn, sec_level, auth_type); | 433 | return hci_conn_auth(conn, sec_level, auth_type); |
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 55534244c3a0..4e7cb88e5da9 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -866,8 +866,16 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s | |||
866 | hci_dev_lock(hdev); | 866 | hci_dev_lock(hdev); |
867 | 867 | ||
868 | conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr); | 868 | conn = hci_conn_hash_lookup_ba(hdev, ev->link_type, &ev->bdaddr); |
869 | if (!conn) | 869 | if (!conn) { |
870 | goto unlock; | 870 | if (ev->link_type != SCO_LINK) |
871 | goto unlock; | ||
872 | |||
873 | conn = hci_conn_hash_lookup_ba(hdev, ESCO_LINK, &ev->bdaddr); | ||
874 | if (!conn) | ||
875 | goto unlock; | ||
876 | |||
877 | conn->type = SCO_LINK; | ||
878 | } | ||
871 | 879 | ||
872 | if (!ev->status) { | 880 | if (!ev->status) { |
873 | conn->handle = __le16_to_cpu(ev->handle); | 881 | conn->handle = __le16_to_cpu(ev->handle); |
@@ -875,6 +883,7 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s | |||
875 | if (conn->type == ACL_LINK) { | 883 | if (conn->type == ACL_LINK) { |
876 | conn->state = BT_CONFIG; | 884 | conn->state = BT_CONFIG; |
877 | hci_conn_hold(conn); | 885 | hci_conn_hold(conn); |
886 | conn->disc_timeout = HCI_DISCONN_TIMEOUT; | ||
878 | } else | 887 | } else |
879 | conn->state = BT_CONNECTED; | 888 | conn->state = BT_CONNECTED; |
880 | 889 | ||
@@ -1055,9 +1064,14 @@ static inline void hci_auth_complete_evt(struct hci_dev *hdev, struct sk_buff *s | |||
1055 | hci_proto_connect_cfm(conn, ev->status); | 1064 | hci_proto_connect_cfm(conn, ev->status); |
1056 | hci_conn_put(conn); | 1065 | hci_conn_put(conn); |
1057 | } | 1066 | } |
1058 | } else | 1067 | } else { |
1059 | hci_auth_cfm(conn, ev->status); | 1068 | hci_auth_cfm(conn, ev->status); |
1060 | 1069 | ||
1070 | hci_conn_hold(conn); | ||
1071 | conn->disc_timeout = HCI_DISCONN_TIMEOUT; | ||
1072 | hci_conn_put(conn); | ||
1073 | } | ||
1074 | |||
1061 | if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) { | 1075 | if (test_bit(HCI_CONN_ENCRYPT_PEND, &conn->pend)) { |
1062 | if (!ev->status) { | 1076 | if (!ev->status) { |
1063 | struct hci_cp_set_conn_encrypt cp; | 1077 | struct hci_cp_set_conn_encrypt cp; |
@@ -1471,7 +1485,21 @@ static inline void hci_mode_change_evt(struct hci_dev *hdev, struct sk_buff *skb | |||
1471 | 1485 | ||
1472 | static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb) | 1486 | static inline void hci_pin_code_request_evt(struct hci_dev *hdev, struct sk_buff *skb) |
1473 | { | 1487 | { |
1488 | struct hci_ev_pin_code_req *ev = (void *) skb->data; | ||
1489 | struct hci_conn *conn; | ||
1490 | |||
1474 | BT_DBG("%s", hdev->name); | 1491 | BT_DBG("%s", hdev->name); |
1492 | |||
1493 | hci_dev_lock(hdev); | ||
1494 | |||
1495 | conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); | ||
1496 | if (conn) { | ||
1497 | hci_conn_hold(conn); | ||
1498 | conn->disc_timeout = HCI_PAIRING_TIMEOUT; | ||
1499 | hci_conn_put(conn); | ||
1500 | } | ||
1501 | |||
1502 | hci_dev_unlock(hdev); | ||
1475 | } | 1503 | } |
1476 | 1504 | ||
1477 | static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb) | 1505 | static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb) |
@@ -1481,7 +1509,21 @@ static inline void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff | |||
1481 | 1509 | ||
1482 | static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb) | 1510 | static inline void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb) |
1483 | { | 1511 | { |
1512 | struct hci_ev_link_key_notify *ev = (void *) skb->data; | ||
1513 | struct hci_conn *conn; | ||
1514 | |||
1484 | BT_DBG("%s", hdev->name); | 1515 | BT_DBG("%s", hdev->name); |
1516 | |||
1517 | hci_dev_lock(hdev); | ||
1518 | |||
1519 | conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr); | ||
1520 | if (conn) { | ||
1521 | hci_conn_hold(conn); | ||
1522 | conn->disc_timeout = HCI_DISCONN_TIMEOUT; | ||
1523 | hci_conn_put(conn); | ||
1524 | } | ||
1525 | |||
1526 | hci_dev_unlock(hdev); | ||
1485 | } | 1527 | } |
1486 | 1528 | ||
1487 | static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb) | 1529 | static inline void hci_clock_offset_evt(struct hci_dev *hdev, struct sk_buff *skb) |
@@ -1646,20 +1688,28 @@ static inline void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct sk_bu | |||
1646 | conn->type = SCO_LINK; | 1688 | conn->type = SCO_LINK; |
1647 | } | 1689 | } |
1648 | 1690 | ||
1649 | if (conn->out && ev->status == 0x1c && conn->attempt < 2) { | 1691 | switch (ev->status) { |
1650 | conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | | 1692 | case 0x00: |
1651 | (hdev->esco_type & EDR_ESCO_MASK); | ||
1652 | hci_setup_sync(conn, conn->link->handle); | ||
1653 | goto unlock; | ||
1654 | } | ||
1655 | |||
1656 | if (!ev->status) { | ||
1657 | conn->handle = __le16_to_cpu(ev->handle); | 1693 | conn->handle = __le16_to_cpu(ev->handle); |
1658 | conn->state = BT_CONNECTED; | 1694 | conn->state = BT_CONNECTED; |
1659 | 1695 | ||
1660 | hci_conn_add_sysfs(conn); | 1696 | hci_conn_add_sysfs(conn); |
1661 | } else | 1697 | break; |
1698 | |||
1699 | case 0x1c: /* SCO interval rejected */ | ||
1700 | case 0x1f: /* Unspecified error */ | ||
1701 | if (conn->out && conn->attempt < 2) { | ||
1702 | conn->pkt_type = (hdev->esco_type & SCO_ESCO_MASK) | | ||
1703 | (hdev->esco_type & EDR_ESCO_MASK); | ||
1704 | hci_setup_sync(conn, conn->link->handle); | ||
1705 | goto unlock; | ||
1706 | } | ||
1707 | /* fall through */ | ||
1708 | |||
1709 | default: | ||
1662 | conn->state = BT_CLOSED; | 1710 | conn->state = BT_CLOSED; |
1711 | break; | ||
1712 | } | ||
1663 | 1713 | ||
1664 | hci_proto_connect_cfm(conn, ev->status); | 1714 | hci_proto_connect_cfm(conn, ev->status); |
1665 | if (ev->status) | 1715 | if (ev->status) |
diff --git a/net/bluetooth/hci_sysfs.c b/net/bluetooth/hci_sysfs.c index ed82796d4a0f..b7c51082ddeb 100644 --- a/net/bluetooth/hci_sysfs.c +++ b/net/bluetooth/hci_sysfs.c | |||
@@ -9,8 +9,7 @@ | |||
9 | struct class *bt_class = NULL; | 9 | struct class *bt_class = NULL; |
10 | EXPORT_SYMBOL_GPL(bt_class); | 10 | EXPORT_SYMBOL_GPL(bt_class); |
11 | 11 | ||
12 | static struct workqueue_struct *btaddconn; | 12 | static struct workqueue_struct *bluetooth; |
13 | static struct workqueue_struct *btdelconn; | ||
14 | 13 | ||
15 | static inline char *link_typetostr(int type) | 14 | static inline char *link_typetostr(int type) |
16 | { | 15 | { |
@@ -88,9 +87,10 @@ static struct device_type bt_link = { | |||
88 | 87 | ||
89 | static void add_conn(struct work_struct *work) | 88 | static void add_conn(struct work_struct *work) |
90 | { | 89 | { |
91 | struct hci_conn *conn = container_of(work, struct hci_conn, work); | 90 | struct hci_conn *conn = container_of(work, struct hci_conn, work_add); |
92 | 91 | ||
93 | flush_workqueue(btdelconn); | 92 | /* ensure previous add/del is complete */ |
93 | flush_workqueue(bluetooth); | ||
94 | 94 | ||
95 | if (device_add(&conn->dev) < 0) { | 95 | if (device_add(&conn->dev) < 0) { |
96 | BT_ERR("Failed to register connection device"); | 96 | BT_ERR("Failed to register connection device"); |
@@ -114,9 +114,9 @@ void hci_conn_add_sysfs(struct hci_conn *conn) | |||
114 | 114 | ||
115 | device_initialize(&conn->dev); | 115 | device_initialize(&conn->dev); |
116 | 116 | ||
117 | INIT_WORK(&conn->work, add_conn); | 117 | INIT_WORK(&conn->work_add, add_conn); |
118 | 118 | ||
119 | queue_work(btaddconn, &conn->work); | 119 | queue_work(bluetooth, &conn->work_add); |
120 | } | 120 | } |
121 | 121 | ||
122 | /* | 122 | /* |
@@ -131,9 +131,12 @@ static int __match_tty(struct device *dev, void *data) | |||
131 | 131 | ||
132 | static void del_conn(struct work_struct *work) | 132 | static void del_conn(struct work_struct *work) |
133 | { | 133 | { |
134 | struct hci_conn *conn = container_of(work, struct hci_conn, work); | 134 | struct hci_conn *conn = container_of(work, struct hci_conn, work_del); |
135 | struct hci_dev *hdev = conn->hdev; | 135 | struct hci_dev *hdev = conn->hdev; |
136 | 136 | ||
137 | /* ensure previous add/del is complete */ | ||
138 | flush_workqueue(bluetooth); | ||
139 | |||
137 | while (1) { | 140 | while (1) { |
138 | struct device *dev; | 141 | struct device *dev; |
139 | 142 | ||
@@ -156,9 +159,9 @@ void hci_conn_del_sysfs(struct hci_conn *conn) | |||
156 | if (!device_is_registered(&conn->dev)) | 159 | if (!device_is_registered(&conn->dev)) |
157 | return; | 160 | return; |
158 | 161 | ||
159 | INIT_WORK(&conn->work, del_conn); | 162 | INIT_WORK(&conn->work_del, del_conn); |
160 | 163 | ||
161 | queue_work(btdelconn, &conn->work); | 164 | queue_work(bluetooth, &conn->work_del); |
162 | } | 165 | } |
163 | 166 | ||
164 | static inline char *host_typetostr(int type) | 167 | static inline char *host_typetostr(int type) |
@@ -435,20 +438,13 @@ void hci_unregister_sysfs(struct hci_dev *hdev) | |||
435 | 438 | ||
436 | int __init bt_sysfs_init(void) | 439 | int __init bt_sysfs_init(void) |
437 | { | 440 | { |
438 | btaddconn = create_singlethread_workqueue("btaddconn"); | 441 | bluetooth = create_singlethread_workqueue("bluetooth"); |
439 | if (!btaddconn) | 442 | if (!bluetooth) |
440 | return -ENOMEM; | ||
441 | |||
442 | btdelconn = create_singlethread_workqueue("btdelconn"); | ||
443 | if (!btdelconn) { | ||
444 | destroy_workqueue(btaddconn); | ||
445 | return -ENOMEM; | 443 | return -ENOMEM; |
446 | } | ||
447 | 444 | ||
448 | bt_class = class_create(THIS_MODULE, "bluetooth"); | 445 | bt_class = class_create(THIS_MODULE, "bluetooth"); |
449 | if (IS_ERR(bt_class)) { | 446 | if (IS_ERR(bt_class)) { |
450 | destroy_workqueue(btdelconn); | 447 | destroy_workqueue(bluetooth); |
451 | destroy_workqueue(btaddconn); | ||
452 | return PTR_ERR(bt_class); | 448 | return PTR_ERR(bt_class); |
453 | } | 449 | } |
454 | 450 | ||
@@ -457,8 +453,7 @@ int __init bt_sysfs_init(void) | |||
457 | 453 | ||
458 | void bt_sysfs_cleanup(void) | 454 | void bt_sysfs_cleanup(void) |
459 | { | 455 | { |
460 | destroy_workqueue(btaddconn); | 456 | destroy_workqueue(bluetooth); |
461 | destroy_workqueue(btdelconn); | ||
462 | 457 | ||
463 | class_destroy(bt_class); | 458 | class_destroy(bt_class); |
464 | } | 459 | } |
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index 1d0fb0f23c63..374536e050aa 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c | |||
@@ -1194,6 +1194,8 @@ void rfcomm_dlc_accept(struct rfcomm_dlc *d) | |||
1194 | 1194 | ||
1195 | rfcomm_send_ua(d->session, d->dlci); | 1195 | rfcomm_send_ua(d->session, d->dlci); |
1196 | 1196 | ||
1197 | rfcomm_dlc_clear_timer(d); | ||
1198 | |||
1197 | rfcomm_dlc_lock(d); | 1199 | rfcomm_dlc_lock(d); |
1198 | d->state = BT_CONNECTED; | 1200 | d->state = BT_CONNECTED; |
1199 | d->state_change(d, 0); | 1201 | d->state_change(d, 0); |
diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c index 3953ac4214c8..e4a418fcb35b 100644 --- a/net/bridge/br_netfilter.c +++ b/net/bridge/br_netfilter.c | |||
@@ -788,15 +788,23 @@ static unsigned int br_nf_local_out(unsigned int hook, struct sk_buff *skb, | |||
788 | return NF_STOLEN; | 788 | return NF_STOLEN; |
789 | } | 789 | } |
790 | 790 | ||
791 | #if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE) | ||
791 | static int br_nf_dev_queue_xmit(struct sk_buff *skb) | 792 | static int br_nf_dev_queue_xmit(struct sk_buff *skb) |
792 | { | 793 | { |
793 | if (skb->protocol == htons(ETH_P_IP) && | 794 | if (skb->nfct != NULL && |
795 | (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb)) && | ||
794 | skb->len > skb->dev->mtu && | 796 | skb->len > skb->dev->mtu && |
795 | !skb_is_gso(skb)) | 797 | !skb_is_gso(skb)) |
796 | return ip_fragment(skb, br_dev_queue_push_xmit); | 798 | return ip_fragment(skb, br_dev_queue_push_xmit); |
797 | else | 799 | else |
798 | return br_dev_queue_push_xmit(skb); | 800 | return br_dev_queue_push_xmit(skb); |
799 | } | 801 | } |
802 | #else | ||
803 | static int br_nf_dev_queue_xmit(struct sk_buff *skb) | ||
804 | { | ||
805 | return br_dev_queue_push_xmit(skb); | ||
806 | } | ||
807 | #endif | ||
800 | 808 | ||
801 | /* PF_BRIDGE/POST_ROUTING ********************************************/ | 809 | /* PF_BRIDGE/POST_ROUTING ********************************************/ |
802 | static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb, | 810 | static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb, |
diff --git a/net/can/af_can.c b/net/can/af_can.c index 547bafc79e28..10f0528c3bf5 100644 --- a/net/can/af_can.c +++ b/net/can/af_can.c | |||
@@ -674,8 +674,8 @@ static int can_rcv(struct sk_buff *skb, struct net_device *dev, | |||
674 | 674 | ||
675 | rcu_read_unlock(); | 675 | rcu_read_unlock(); |
676 | 676 | ||
677 | /* free the skbuff allocated by the netdevice driver */ | 677 | /* consume the skbuff allocated by the netdevice driver */ |
678 | kfree_skb(skb); | 678 | consume_skb(skb); |
679 | 679 | ||
680 | if (matches > 0) { | 680 | if (matches > 0) { |
681 | can_stats.matches++; | 681 | can_stats.matches++; |
diff --git a/net/core/datagram.c b/net/core/datagram.c index d0de644b378d..b01a76abe1d2 100644 --- a/net/core/datagram.c +++ b/net/core/datagram.c | |||
@@ -64,13 +64,25 @@ static inline int connection_based(struct sock *sk) | |||
64 | return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM; | 64 | return sk->sk_type == SOCK_SEQPACKET || sk->sk_type == SOCK_STREAM; |
65 | } | 65 | } |
66 | 66 | ||
67 | static int receiver_wake_function(wait_queue_t *wait, unsigned mode, int sync, | ||
68 | void *key) | ||
69 | { | ||
70 | unsigned long bits = (unsigned long)key; | ||
71 | |||
72 | /* | ||
73 | * Avoid a wakeup if event not interesting for us | ||
74 | */ | ||
75 | if (bits && !(bits & (POLLIN | POLLERR))) | ||
76 | return 0; | ||
77 | return autoremove_wake_function(wait, mode, sync, key); | ||
78 | } | ||
67 | /* | 79 | /* |
68 | * Wait for a packet.. | 80 | * Wait for a packet.. |
69 | */ | 81 | */ |
70 | static int wait_for_packet(struct sock *sk, int *err, long *timeo_p) | 82 | static int wait_for_packet(struct sock *sk, int *err, long *timeo_p) |
71 | { | 83 | { |
72 | int error; | 84 | int error; |
73 | DEFINE_WAIT(wait); | 85 | DEFINE_WAIT_FUNC(wait, receiver_wake_function); |
74 | 86 | ||
75 | prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE); | 87 | prepare_to_wait_exclusive(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE); |
76 | 88 | ||
diff --git a/net/core/dev.c b/net/core/dev.c index 343883f65ea7..308a7d0c277f 100644 --- a/net/core/dev.c +++ b/net/core/dev.c | |||
@@ -1336,7 +1336,12 @@ static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev) | |||
1336 | { | 1336 | { |
1337 | struct packet_type *ptype; | 1337 | struct packet_type *ptype; |
1338 | 1338 | ||
1339 | #ifdef CONFIG_NET_CLS_ACT | ||
1340 | if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS))) | ||
1341 | net_timestamp(skb); | ||
1342 | #else | ||
1339 | net_timestamp(skb); | 1343 | net_timestamp(skb); |
1344 | #endif | ||
1340 | 1345 | ||
1341 | rcu_read_lock(); | 1346 | rcu_read_lock(); |
1342 | list_for_each_entry_rcu(ptype, &ptype_all, list) { | 1347 | list_for_each_entry_rcu(ptype, &ptype_all, list) { |
@@ -2540,9 +2545,9 @@ struct sk_buff *napi_fraginfo_skb(struct napi_struct *napi, | |||
2540 | } | 2545 | } |
2541 | 2546 | ||
2542 | BUG_ON(info->nr_frags > MAX_SKB_FRAGS); | 2547 | BUG_ON(info->nr_frags > MAX_SKB_FRAGS); |
2543 | frag = &info->frags[info->nr_frags - 1]; | 2548 | frag = info->frags; |
2544 | 2549 | ||
2545 | for (i = skb_shinfo(skb)->nr_frags; i < info->nr_frags; i++) { | 2550 | for (i = 0; i < info->nr_frags; i++) { |
2546 | skb_fill_page_desc(skb, i, frag->page, frag->page_offset, | 2551 | skb_fill_page_desc(skb, i, frag->page, frag->page_offset, |
2547 | frag->size); | 2552 | frag->size); |
2548 | frag++; | 2553 | frag++; |
@@ -4400,7 +4405,7 @@ int register_netdevice(struct net_device *dev) | |||
4400 | dev->iflink = -1; | 4405 | dev->iflink = -1; |
4401 | 4406 | ||
4402 | #ifdef CONFIG_COMPAT_NET_DEV_OPS | 4407 | #ifdef CONFIG_COMPAT_NET_DEV_OPS |
4403 | /* Netdevice_ops API compatiability support. | 4408 | /* Netdevice_ops API compatibility support. |
4404 | * This is temporary until all network devices are converted. | 4409 | * This is temporary until all network devices are converted. |
4405 | */ | 4410 | */ |
4406 | if (dev->netdev_ops) { | 4411 | if (dev->netdev_ops) { |
@@ -4411,7 +4416,7 @@ int register_netdevice(struct net_device *dev) | |||
4411 | dev->name, netdev_drivername(dev, drivername, 64)); | 4416 | dev->name, netdev_drivername(dev, drivername, 64)); |
4412 | 4417 | ||
4413 | /* This works only because net_device_ops and the | 4418 | /* This works only because net_device_ops and the |
4414 | compatiablity structure are the same. */ | 4419 | compatibility structure are the same. */ |
4415 | dev->netdev_ops = (void *) &(dev->init); | 4420 | dev->netdev_ops = (void *) &(dev->init); |
4416 | } | 4421 | } |
4417 | #endif | 4422 | #endif |
diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c index 5ba533d234db..831fe1879dc0 100644 --- a/net/ipv4/netfilter/arp_tables.c +++ b/net/ipv4/netfilter/arp_tables.c | |||
@@ -253,9 +253,9 @@ unsigned int arpt_do_table(struct sk_buff *skb, | |||
253 | indev = in ? in->name : nulldevname; | 253 | indev = in ? in->name : nulldevname; |
254 | outdev = out ? out->name : nulldevname; | 254 | outdev = out ? out->name : nulldevname; |
255 | 255 | ||
256 | rcu_read_lock_bh(); | 256 | xt_info_rdlock_bh(); |
257 | private = rcu_dereference(table->private); | 257 | private = table->private; |
258 | table_base = rcu_dereference(private->entries[smp_processor_id()]); | 258 | table_base = private->entries[smp_processor_id()]; |
259 | 259 | ||
260 | e = get_entry(table_base, private->hook_entry[hook]); | 260 | e = get_entry(table_base, private->hook_entry[hook]); |
261 | back = get_entry(table_base, private->underflow[hook]); | 261 | back = get_entry(table_base, private->underflow[hook]); |
@@ -273,6 +273,7 @@ unsigned int arpt_do_table(struct sk_buff *skb, | |||
273 | 273 | ||
274 | hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) + | 274 | hdr_len = sizeof(*arp) + (2 * sizeof(struct in_addr)) + |
275 | (2 * skb->dev->addr_len); | 275 | (2 * skb->dev->addr_len); |
276 | |||
276 | ADD_COUNTER(e->counters, hdr_len, 1); | 277 | ADD_COUNTER(e->counters, hdr_len, 1); |
277 | 278 | ||
278 | t = arpt_get_target(e); | 279 | t = arpt_get_target(e); |
@@ -328,8 +329,7 @@ unsigned int arpt_do_table(struct sk_buff *skb, | |||
328 | e = (void *)e + e->next_offset; | 329 | e = (void *)e + e->next_offset; |
329 | } | 330 | } |
330 | } while (!hotdrop); | 331 | } while (!hotdrop); |
331 | 332 | xt_info_rdunlock_bh(); | |
332 | rcu_read_unlock_bh(); | ||
333 | 333 | ||
334 | if (hotdrop) | 334 | if (hotdrop) |
335 | return NF_DROP; | 335 | return NF_DROP; |
@@ -711,9 +711,12 @@ static void get_counters(const struct xt_table_info *t, | |||
711 | /* Instead of clearing (by a previous call to memset()) | 711 | /* Instead of clearing (by a previous call to memset()) |
712 | * the counters and using adds, we set the counters | 712 | * the counters and using adds, we set the counters |
713 | * with data used by 'current' CPU | 713 | * with data used by 'current' CPU |
714 | * We dont care about preemption here. | 714 | * |
715 | * Bottom half has to be disabled to prevent deadlock | ||
716 | * if new softirq were to run and call ipt_do_table | ||
715 | */ | 717 | */ |
716 | curcpu = raw_smp_processor_id(); | 718 | local_bh_disable(); |
719 | curcpu = smp_processor_id(); | ||
717 | 720 | ||
718 | i = 0; | 721 | i = 0; |
719 | ARPT_ENTRY_ITERATE(t->entries[curcpu], | 722 | ARPT_ENTRY_ITERATE(t->entries[curcpu], |
@@ -726,73 +729,22 @@ static void get_counters(const struct xt_table_info *t, | |||
726 | if (cpu == curcpu) | 729 | if (cpu == curcpu) |
727 | continue; | 730 | continue; |
728 | i = 0; | 731 | i = 0; |
732 | xt_info_wrlock(cpu); | ||
729 | ARPT_ENTRY_ITERATE(t->entries[cpu], | 733 | ARPT_ENTRY_ITERATE(t->entries[cpu], |
730 | t->size, | 734 | t->size, |
731 | add_entry_to_counter, | 735 | add_entry_to_counter, |
732 | counters, | 736 | counters, |
733 | &i); | 737 | &i); |
738 | xt_info_wrunlock(cpu); | ||
734 | } | 739 | } |
735 | } | ||
736 | |||
737 | |||
738 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
739 | * and everything is OK. */ | ||
740 | static int | ||
741 | add_counter_to_entry(struct arpt_entry *e, | ||
742 | const struct xt_counters addme[], | ||
743 | unsigned int *i) | ||
744 | { | ||
745 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
746 | |||
747 | (*i)++; | ||
748 | return 0; | ||
749 | } | ||
750 | |||
751 | /* Take values from counters and add them back onto the current cpu */ | ||
752 | static void put_counters(struct xt_table_info *t, | ||
753 | const struct xt_counters counters[]) | ||
754 | { | ||
755 | unsigned int i, cpu; | ||
756 | |||
757 | local_bh_disable(); | ||
758 | cpu = smp_processor_id(); | ||
759 | i = 0; | ||
760 | ARPT_ENTRY_ITERATE(t->entries[cpu], | ||
761 | t->size, | ||
762 | add_counter_to_entry, | ||
763 | counters, | ||
764 | &i); | ||
765 | local_bh_enable(); | 740 | local_bh_enable(); |
766 | } | 741 | } |
767 | 742 | ||
768 | static inline int | ||
769 | zero_entry_counter(struct arpt_entry *e, void *arg) | ||
770 | { | ||
771 | e->counters.bcnt = 0; | ||
772 | e->counters.pcnt = 0; | ||
773 | return 0; | ||
774 | } | ||
775 | |||
776 | static void | ||
777 | clone_counters(struct xt_table_info *newinfo, const struct xt_table_info *info) | ||
778 | { | ||
779 | unsigned int cpu; | ||
780 | const void *loc_cpu_entry = info->entries[raw_smp_processor_id()]; | ||
781 | |||
782 | memcpy(newinfo, info, offsetof(struct xt_table_info, entries)); | ||
783 | for_each_possible_cpu(cpu) { | ||
784 | memcpy(newinfo->entries[cpu], loc_cpu_entry, info->size); | ||
785 | ARPT_ENTRY_ITERATE(newinfo->entries[cpu], newinfo->size, | ||
786 | zero_entry_counter, NULL); | ||
787 | } | ||
788 | } | ||
789 | |||
790 | static struct xt_counters *alloc_counters(struct xt_table *table) | 743 | static struct xt_counters *alloc_counters(struct xt_table *table) |
791 | { | 744 | { |
792 | unsigned int countersize; | 745 | unsigned int countersize; |
793 | struct xt_counters *counters; | 746 | struct xt_counters *counters; |
794 | struct xt_table_info *private = table->private; | 747 | struct xt_table_info *private = table->private; |
795 | struct xt_table_info *info; | ||
796 | 748 | ||
797 | /* We need atomic snapshot of counters: rest doesn't change | 749 | /* We need atomic snapshot of counters: rest doesn't change |
798 | * (other than comefrom, which userspace doesn't care | 750 | * (other than comefrom, which userspace doesn't care |
@@ -802,30 +754,11 @@ static struct xt_counters *alloc_counters(struct xt_table *table) | |||
802 | counters = vmalloc_node(countersize, numa_node_id()); | 754 | counters = vmalloc_node(countersize, numa_node_id()); |
803 | 755 | ||
804 | if (counters == NULL) | 756 | if (counters == NULL) |
805 | goto nomem; | 757 | return ERR_PTR(-ENOMEM); |
806 | |||
807 | info = xt_alloc_table_info(private->size); | ||
808 | if (!info) | ||
809 | goto free_counters; | ||
810 | |||
811 | clone_counters(info, private); | ||
812 | |||
813 | mutex_lock(&table->lock); | ||
814 | xt_table_entry_swap_rcu(private, info); | ||
815 | synchronize_net(); /* Wait until smoke has cleared */ | ||
816 | 758 | ||
817 | get_counters(info, counters); | 759 | get_counters(private, counters); |
818 | put_counters(private, counters); | ||
819 | mutex_unlock(&table->lock); | ||
820 | |||
821 | xt_free_table_info(info); | ||
822 | 760 | ||
823 | return counters; | 761 | return counters; |
824 | |||
825 | free_counters: | ||
826 | vfree(counters); | ||
827 | nomem: | ||
828 | return ERR_PTR(-ENOMEM); | ||
829 | } | 762 | } |
830 | 763 | ||
831 | static int copy_entries_to_user(unsigned int total_size, | 764 | static int copy_entries_to_user(unsigned int total_size, |
@@ -1094,8 +1027,9 @@ static int __do_replace(struct net *net, const char *name, | |||
1094 | (newinfo->number <= oldinfo->initial_entries)) | 1027 | (newinfo->number <= oldinfo->initial_entries)) |
1095 | module_put(t->me); | 1028 | module_put(t->me); |
1096 | 1029 | ||
1097 | /* Get the old counters. */ | 1030 | /* Get the old counters, and synchronize with replace */ |
1098 | get_counters(oldinfo, counters); | 1031 | get_counters(oldinfo, counters); |
1032 | |||
1099 | /* Decrease module usage counts and free resource */ | 1033 | /* Decrease module usage counts and free resource */ |
1100 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; | 1034 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; |
1101 | ARPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, | 1035 | ARPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, |
@@ -1165,10 +1099,23 @@ static int do_replace(struct net *net, void __user *user, unsigned int len) | |||
1165 | return ret; | 1099 | return ret; |
1166 | } | 1100 | } |
1167 | 1101 | ||
1102 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
1103 | * and everything is OK. */ | ||
1104 | static int | ||
1105 | add_counter_to_entry(struct arpt_entry *e, | ||
1106 | const struct xt_counters addme[], | ||
1107 | unsigned int *i) | ||
1108 | { | ||
1109 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
1110 | |||
1111 | (*i)++; | ||
1112 | return 0; | ||
1113 | } | ||
1114 | |||
1168 | static int do_add_counters(struct net *net, void __user *user, unsigned int len, | 1115 | static int do_add_counters(struct net *net, void __user *user, unsigned int len, |
1169 | int compat) | 1116 | int compat) |
1170 | { | 1117 | { |
1171 | unsigned int i; | 1118 | unsigned int i, curcpu; |
1172 | struct xt_counters_info tmp; | 1119 | struct xt_counters_info tmp; |
1173 | struct xt_counters *paddc; | 1120 | struct xt_counters *paddc; |
1174 | unsigned int num_counters; | 1121 | unsigned int num_counters; |
@@ -1224,26 +1171,26 @@ static int do_add_counters(struct net *net, void __user *user, unsigned int len, | |||
1224 | goto free; | 1171 | goto free; |
1225 | } | 1172 | } |
1226 | 1173 | ||
1227 | mutex_lock(&t->lock); | 1174 | local_bh_disable(); |
1228 | private = t->private; | 1175 | private = t->private; |
1229 | if (private->number != num_counters) { | 1176 | if (private->number != num_counters) { |
1230 | ret = -EINVAL; | 1177 | ret = -EINVAL; |
1231 | goto unlock_up_free; | 1178 | goto unlock_up_free; |
1232 | } | 1179 | } |
1233 | 1180 | ||
1234 | preempt_disable(); | ||
1235 | i = 0; | 1181 | i = 0; |
1236 | /* Choose the copy that is on our node */ | 1182 | /* Choose the copy that is on our node */ |
1237 | loc_cpu_entry = private->entries[smp_processor_id()]; | 1183 | curcpu = smp_processor_id(); |
1184 | loc_cpu_entry = private->entries[curcpu]; | ||
1185 | xt_info_wrlock(curcpu); | ||
1238 | ARPT_ENTRY_ITERATE(loc_cpu_entry, | 1186 | ARPT_ENTRY_ITERATE(loc_cpu_entry, |
1239 | private->size, | 1187 | private->size, |
1240 | add_counter_to_entry, | 1188 | add_counter_to_entry, |
1241 | paddc, | 1189 | paddc, |
1242 | &i); | 1190 | &i); |
1243 | preempt_enable(); | 1191 | xt_info_wrunlock(curcpu); |
1244 | unlock_up_free: | 1192 | unlock_up_free: |
1245 | mutex_unlock(&t->lock); | 1193 | local_bh_enable(); |
1246 | |||
1247 | xt_table_unlock(t); | 1194 | xt_table_unlock(t); |
1248 | module_put(t->me); | 1195 | module_put(t->me); |
1249 | free: | 1196 | free: |
diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c index 810c0b62c7d4..2ec8d7290c40 100644 --- a/net/ipv4/netfilter/ip_tables.c +++ b/net/ipv4/netfilter/ip_tables.c | |||
@@ -338,10 +338,9 @@ ipt_do_table(struct sk_buff *skb, | |||
338 | tgpar.hooknum = hook; | 338 | tgpar.hooknum = hook; |
339 | 339 | ||
340 | IP_NF_ASSERT(table->valid_hooks & (1 << hook)); | 340 | IP_NF_ASSERT(table->valid_hooks & (1 << hook)); |
341 | 341 | xt_info_rdlock_bh(); | |
342 | rcu_read_lock_bh(); | 342 | private = table->private; |
343 | private = rcu_dereference(table->private); | 343 | table_base = private->entries[smp_processor_id()]; |
344 | table_base = rcu_dereference(private->entries[smp_processor_id()]); | ||
345 | 344 | ||
346 | e = get_entry(table_base, private->hook_entry[hook]); | 345 | e = get_entry(table_base, private->hook_entry[hook]); |
347 | 346 | ||
@@ -436,8 +435,7 @@ ipt_do_table(struct sk_buff *skb, | |||
436 | e = (void *)e + e->next_offset; | 435 | e = (void *)e + e->next_offset; |
437 | } | 436 | } |
438 | } while (!hotdrop); | 437 | } while (!hotdrop); |
439 | 438 | xt_info_rdunlock_bh(); | |
440 | rcu_read_unlock_bh(); | ||
441 | 439 | ||
442 | #ifdef DEBUG_ALLOW_ALL | 440 | #ifdef DEBUG_ALLOW_ALL |
443 | return NF_ACCEPT; | 441 | return NF_ACCEPT; |
@@ -896,10 +894,13 @@ get_counters(const struct xt_table_info *t, | |||
896 | 894 | ||
897 | /* Instead of clearing (by a previous call to memset()) | 895 | /* Instead of clearing (by a previous call to memset()) |
898 | * the counters and using adds, we set the counters | 896 | * the counters and using adds, we set the counters |
899 | * with data used by 'current' CPU | 897 | * with data used by 'current' CPU. |
900 | * We dont care about preemption here. | 898 | * |
899 | * Bottom half has to be disabled to prevent deadlock | ||
900 | * if new softirq were to run and call ipt_do_table | ||
901 | */ | 901 | */ |
902 | curcpu = raw_smp_processor_id(); | 902 | local_bh_disable(); |
903 | curcpu = smp_processor_id(); | ||
903 | 904 | ||
904 | i = 0; | 905 | i = 0; |
905 | IPT_ENTRY_ITERATE(t->entries[curcpu], | 906 | IPT_ENTRY_ITERATE(t->entries[curcpu], |
@@ -912,74 +913,22 @@ get_counters(const struct xt_table_info *t, | |||
912 | if (cpu == curcpu) | 913 | if (cpu == curcpu) |
913 | continue; | 914 | continue; |
914 | i = 0; | 915 | i = 0; |
916 | xt_info_wrlock(cpu); | ||
915 | IPT_ENTRY_ITERATE(t->entries[cpu], | 917 | IPT_ENTRY_ITERATE(t->entries[cpu], |
916 | t->size, | 918 | t->size, |
917 | add_entry_to_counter, | 919 | add_entry_to_counter, |
918 | counters, | 920 | counters, |
919 | &i); | 921 | &i); |
922 | xt_info_wrunlock(cpu); | ||
920 | } | 923 | } |
921 | |||
922 | } | ||
923 | |||
924 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
925 | * and everything is OK. */ | ||
926 | static int | ||
927 | add_counter_to_entry(struct ipt_entry *e, | ||
928 | const struct xt_counters addme[], | ||
929 | unsigned int *i) | ||
930 | { | ||
931 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
932 | |||
933 | (*i)++; | ||
934 | return 0; | ||
935 | } | ||
936 | |||
937 | /* Take values from counters and add them back onto the current cpu */ | ||
938 | static void put_counters(struct xt_table_info *t, | ||
939 | const struct xt_counters counters[]) | ||
940 | { | ||
941 | unsigned int i, cpu; | ||
942 | |||
943 | local_bh_disable(); | ||
944 | cpu = smp_processor_id(); | ||
945 | i = 0; | ||
946 | IPT_ENTRY_ITERATE(t->entries[cpu], | ||
947 | t->size, | ||
948 | add_counter_to_entry, | ||
949 | counters, | ||
950 | &i); | ||
951 | local_bh_enable(); | 924 | local_bh_enable(); |
952 | } | 925 | } |
953 | 926 | ||
954 | |||
955 | static inline int | ||
956 | zero_entry_counter(struct ipt_entry *e, void *arg) | ||
957 | { | ||
958 | e->counters.bcnt = 0; | ||
959 | e->counters.pcnt = 0; | ||
960 | return 0; | ||
961 | } | ||
962 | |||
963 | static void | ||
964 | clone_counters(struct xt_table_info *newinfo, const struct xt_table_info *info) | ||
965 | { | ||
966 | unsigned int cpu; | ||
967 | const void *loc_cpu_entry = info->entries[raw_smp_processor_id()]; | ||
968 | |||
969 | memcpy(newinfo, info, offsetof(struct xt_table_info, entries)); | ||
970 | for_each_possible_cpu(cpu) { | ||
971 | memcpy(newinfo->entries[cpu], loc_cpu_entry, info->size); | ||
972 | IPT_ENTRY_ITERATE(newinfo->entries[cpu], newinfo->size, | ||
973 | zero_entry_counter, NULL); | ||
974 | } | ||
975 | } | ||
976 | |||
977 | static struct xt_counters * alloc_counters(struct xt_table *table) | 927 | static struct xt_counters * alloc_counters(struct xt_table *table) |
978 | { | 928 | { |
979 | unsigned int countersize; | 929 | unsigned int countersize; |
980 | struct xt_counters *counters; | 930 | struct xt_counters *counters; |
981 | struct xt_table_info *private = table->private; | 931 | struct xt_table_info *private = table->private; |
982 | struct xt_table_info *info; | ||
983 | 932 | ||
984 | /* We need atomic snapshot of counters: rest doesn't change | 933 | /* We need atomic snapshot of counters: rest doesn't change |
985 | (other than comefrom, which userspace doesn't care | 934 | (other than comefrom, which userspace doesn't care |
@@ -988,30 +937,11 @@ static struct xt_counters * alloc_counters(struct xt_table *table) | |||
988 | counters = vmalloc_node(countersize, numa_node_id()); | 937 | counters = vmalloc_node(countersize, numa_node_id()); |
989 | 938 | ||
990 | if (counters == NULL) | 939 | if (counters == NULL) |
991 | goto nomem; | 940 | return ERR_PTR(-ENOMEM); |
992 | 941 | ||
993 | info = xt_alloc_table_info(private->size); | 942 | get_counters(private, counters); |
994 | if (!info) | ||
995 | goto free_counters; | ||
996 | |||
997 | clone_counters(info, private); | ||
998 | |||
999 | mutex_lock(&table->lock); | ||
1000 | xt_table_entry_swap_rcu(private, info); | ||
1001 | synchronize_net(); /* Wait until smoke has cleared */ | ||
1002 | |||
1003 | get_counters(info, counters); | ||
1004 | put_counters(private, counters); | ||
1005 | mutex_unlock(&table->lock); | ||
1006 | |||
1007 | xt_free_table_info(info); | ||
1008 | 943 | ||
1009 | return counters; | 944 | return counters; |
1010 | |||
1011 | free_counters: | ||
1012 | vfree(counters); | ||
1013 | nomem: | ||
1014 | return ERR_PTR(-ENOMEM); | ||
1015 | } | 945 | } |
1016 | 946 | ||
1017 | static int | 947 | static int |
@@ -1306,8 +1236,9 @@ __do_replace(struct net *net, const char *name, unsigned int valid_hooks, | |||
1306 | (newinfo->number <= oldinfo->initial_entries)) | 1236 | (newinfo->number <= oldinfo->initial_entries)) |
1307 | module_put(t->me); | 1237 | module_put(t->me); |
1308 | 1238 | ||
1309 | /* Get the old counters. */ | 1239 | /* Get the old counters, and synchronize with replace */ |
1310 | get_counters(oldinfo, counters); | 1240 | get_counters(oldinfo, counters); |
1241 | |||
1311 | /* Decrease module usage counts and free resource */ | 1242 | /* Decrease module usage counts and free resource */ |
1312 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; | 1243 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; |
1313 | IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, | 1244 | IPT_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, |
@@ -1377,11 +1308,23 @@ do_replace(struct net *net, void __user *user, unsigned int len) | |||
1377 | return ret; | 1308 | return ret; |
1378 | } | 1309 | } |
1379 | 1310 | ||
1311 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
1312 | * and everything is OK. */ | ||
1313 | static int | ||
1314 | add_counter_to_entry(struct ipt_entry *e, | ||
1315 | const struct xt_counters addme[], | ||
1316 | unsigned int *i) | ||
1317 | { | ||
1318 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
1319 | |||
1320 | (*i)++; | ||
1321 | return 0; | ||
1322 | } | ||
1380 | 1323 | ||
1381 | static int | 1324 | static int |
1382 | do_add_counters(struct net *net, void __user *user, unsigned int len, int compat) | 1325 | do_add_counters(struct net *net, void __user *user, unsigned int len, int compat) |
1383 | { | 1326 | { |
1384 | unsigned int i; | 1327 | unsigned int i, curcpu; |
1385 | struct xt_counters_info tmp; | 1328 | struct xt_counters_info tmp; |
1386 | struct xt_counters *paddc; | 1329 | struct xt_counters *paddc; |
1387 | unsigned int num_counters; | 1330 | unsigned int num_counters; |
@@ -1437,25 +1380,26 @@ do_add_counters(struct net *net, void __user *user, unsigned int len, int compat | |||
1437 | goto free; | 1380 | goto free; |
1438 | } | 1381 | } |
1439 | 1382 | ||
1440 | mutex_lock(&t->lock); | 1383 | local_bh_disable(); |
1441 | private = t->private; | 1384 | private = t->private; |
1442 | if (private->number != num_counters) { | 1385 | if (private->number != num_counters) { |
1443 | ret = -EINVAL; | 1386 | ret = -EINVAL; |
1444 | goto unlock_up_free; | 1387 | goto unlock_up_free; |
1445 | } | 1388 | } |
1446 | 1389 | ||
1447 | preempt_disable(); | ||
1448 | i = 0; | 1390 | i = 0; |
1449 | /* Choose the copy that is on our node */ | 1391 | /* Choose the copy that is on our node */ |
1450 | loc_cpu_entry = private->entries[raw_smp_processor_id()]; | 1392 | curcpu = smp_processor_id(); |
1393 | loc_cpu_entry = private->entries[curcpu]; | ||
1394 | xt_info_wrlock(curcpu); | ||
1451 | IPT_ENTRY_ITERATE(loc_cpu_entry, | 1395 | IPT_ENTRY_ITERATE(loc_cpu_entry, |
1452 | private->size, | 1396 | private->size, |
1453 | add_counter_to_entry, | 1397 | add_counter_to_entry, |
1454 | paddc, | 1398 | paddc, |
1455 | &i); | 1399 | &i); |
1456 | preempt_enable(); | 1400 | xt_info_wrunlock(curcpu); |
1457 | unlock_up_free: | 1401 | unlock_up_free: |
1458 | mutex_unlock(&t->lock); | 1402 | local_bh_enable(); |
1459 | xt_table_unlock(t); | 1403 | xt_table_unlock(t); |
1460 | module_put(t->me); | 1404 | module_put(t->me); |
1461 | free: | 1405 | free: |
diff --git a/net/ipv4/netfilter/nf_nat_core.c b/net/ipv4/netfilter/nf_nat_core.c index fe65187810f0..3229e0a81ba6 100644 --- a/net/ipv4/netfilter/nf_nat_core.c +++ b/net/ipv4/netfilter/nf_nat_core.c | |||
@@ -211,7 +211,8 @@ find_best_ips_proto(struct nf_conntrack_tuple *tuple, | |||
211 | minip = ntohl(range->min_ip); | 211 | minip = ntohl(range->min_ip); |
212 | maxip = ntohl(range->max_ip); | 212 | maxip = ntohl(range->max_ip); |
213 | j = jhash_2words((__force u32)tuple->src.u3.ip, | 213 | j = jhash_2words((__force u32)tuple->src.u3.ip, |
214 | (__force u32)tuple->dst.u3.ip, 0); | 214 | range->flags & IP_NAT_RANGE_PERSISTENT ? |
215 | (__force u32)tuple->dst.u3.ip : 0, 0); | ||
215 | j = ((u64)j * (maxip - minip + 1)) >> 32; | 216 | j = ((u64)j * (maxip - minip + 1)) >> 32; |
216 | *var_ipp = htonl(minip + j); | 217 | *var_ipp = htonl(minip + j); |
217 | } | 218 | } |
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index c40debe51b38..c4c60e9f068a 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c | |||
@@ -3397,7 +3397,7 @@ int __init ip_rt_init(void) | |||
3397 | 0, | 3397 | 0, |
3398 | &rt_hash_log, | 3398 | &rt_hash_log, |
3399 | &rt_hash_mask, | 3399 | &rt_hash_mask, |
3400 | 0); | 3400 | rhash_entries ? 0 : 512 * 1024); |
3401 | memset(rt_hash_table, 0, (rt_hash_mask + 1) * sizeof(struct rt_hash_bucket)); | 3401 | memset(rt_hash_table, 0, (rt_hash_mask + 1) * sizeof(struct rt_hash_bucket)); |
3402 | rt_hash_lock_init(); | 3402 | rt_hash_lock_init(); |
3403 | 3403 | ||
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index fafbec8b073e..1d7f49c6f0ca 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
@@ -2511,6 +2511,7 @@ struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb) | |||
2511 | struct sk_buff *p; | 2511 | struct sk_buff *p; |
2512 | struct tcphdr *th; | 2512 | struct tcphdr *th; |
2513 | struct tcphdr *th2; | 2513 | struct tcphdr *th2; |
2514 | unsigned int len; | ||
2514 | unsigned int thlen; | 2515 | unsigned int thlen; |
2515 | unsigned int flags; | 2516 | unsigned int flags; |
2516 | unsigned int mss = 1; | 2517 | unsigned int mss = 1; |
@@ -2531,6 +2532,7 @@ struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb) | |||
2531 | 2532 | ||
2532 | skb_gro_pull(skb, thlen); | 2533 | skb_gro_pull(skb, thlen); |
2533 | 2534 | ||
2535 | len = skb_gro_len(skb); | ||
2534 | flags = tcp_flag_word(th); | 2536 | flags = tcp_flag_word(th); |
2535 | 2537 | ||
2536 | for (; (p = *head); head = &p->next) { | 2538 | for (; (p = *head); head = &p->next) { |
@@ -2561,7 +2563,7 @@ found: | |||
2561 | 2563 | ||
2562 | mss = skb_shinfo(p)->gso_size; | 2564 | mss = skb_shinfo(p)->gso_size; |
2563 | 2565 | ||
2564 | flush |= (skb_gro_len(skb) > mss) | !skb_gro_len(skb); | 2566 | flush |= (len > mss) | !len; |
2565 | flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq); | 2567 | flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq); |
2566 | 2568 | ||
2567 | if (flush || skb_gro_receive(head, skb)) { | 2569 | if (flush || skb_gro_receive(head, skb)) { |
@@ -2574,7 +2576,7 @@ found: | |||
2574 | tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH); | 2576 | tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH); |
2575 | 2577 | ||
2576 | out_check_final: | 2578 | out_check_final: |
2577 | flush = skb_gro_len(skb) < mss; | 2579 | flush = len < mss; |
2578 | flush |= flags & (TCP_FLAG_URG | TCP_FLAG_PSH | TCP_FLAG_RST | | 2580 | flush |= flags & (TCP_FLAG_URG | TCP_FLAG_PSH | TCP_FLAG_RST | |
2579 | TCP_FLAG_SYN | TCP_FLAG_FIN); | 2581 | TCP_FLAG_SYN | TCP_FLAG_FIN); |
2580 | 2582 | ||
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 53300fa2359f..59aec609cec6 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -778,7 +778,7 @@ static void tcp_adjust_pcount(struct sock *sk, struct sk_buff *skb, int decr) | |||
778 | 778 | ||
779 | if (tp->lost_skb_hint && | 779 | if (tp->lost_skb_hint && |
780 | before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(tp->lost_skb_hint)->seq) && | 780 | before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(tp->lost_skb_hint)->seq) && |
781 | (tcp_is_fack(tp) || TCP_SKB_CB(skb)->sacked)) | 781 | (tcp_is_fack(tp) || (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED))) |
782 | tp->lost_cnt_hint -= decr; | 782 | tp->lost_cnt_hint -= decr; |
783 | 783 | ||
784 | tcp_verify_left_out(tp); | 784 | tcp_verify_left_out(tp); |
diff --git a/net/ipv6/netfilter/ip6_tables.c b/net/ipv6/netfilter/ip6_tables.c index 800ae8542471..219e165aea10 100644 --- a/net/ipv6/netfilter/ip6_tables.c +++ b/net/ipv6/netfilter/ip6_tables.c | |||
@@ -365,9 +365,9 @@ ip6t_do_table(struct sk_buff *skb, | |||
365 | 365 | ||
366 | IP_NF_ASSERT(table->valid_hooks & (1 << hook)); | 366 | IP_NF_ASSERT(table->valid_hooks & (1 << hook)); |
367 | 367 | ||
368 | rcu_read_lock_bh(); | 368 | xt_info_rdlock_bh(); |
369 | private = rcu_dereference(table->private); | 369 | private = table->private; |
370 | table_base = rcu_dereference(private->entries[smp_processor_id()]); | 370 | table_base = private->entries[smp_processor_id()]; |
371 | 371 | ||
372 | e = get_entry(table_base, private->hook_entry[hook]); | 372 | e = get_entry(table_base, private->hook_entry[hook]); |
373 | 373 | ||
@@ -466,7 +466,7 @@ ip6t_do_table(struct sk_buff *skb, | |||
466 | #ifdef CONFIG_NETFILTER_DEBUG | 466 | #ifdef CONFIG_NETFILTER_DEBUG |
467 | ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON; | 467 | ((struct ip6t_entry *)table_base)->comefrom = NETFILTER_LINK_POISON; |
468 | #endif | 468 | #endif |
469 | rcu_read_unlock_bh(); | 469 | xt_info_rdunlock_bh(); |
470 | 470 | ||
471 | #ifdef DEBUG_ALLOW_ALL | 471 | #ifdef DEBUG_ALLOW_ALL |
472 | return NF_ACCEPT; | 472 | return NF_ACCEPT; |
@@ -926,9 +926,12 @@ get_counters(const struct xt_table_info *t, | |||
926 | /* Instead of clearing (by a previous call to memset()) | 926 | /* Instead of clearing (by a previous call to memset()) |
927 | * the counters and using adds, we set the counters | 927 | * the counters and using adds, we set the counters |
928 | * with data used by 'current' CPU | 928 | * with data used by 'current' CPU |
929 | * We dont care about preemption here. | 929 | * |
930 | * Bottom half has to be disabled to prevent deadlock | ||
931 | * if new softirq were to run and call ipt_do_table | ||
930 | */ | 932 | */ |
931 | curcpu = raw_smp_processor_id(); | 933 | local_bh_disable(); |
934 | curcpu = smp_processor_id(); | ||
932 | 935 | ||
933 | i = 0; | 936 | i = 0; |
934 | IP6T_ENTRY_ITERATE(t->entries[curcpu], | 937 | IP6T_ENTRY_ITERATE(t->entries[curcpu], |
@@ -941,72 +944,22 @@ get_counters(const struct xt_table_info *t, | |||
941 | if (cpu == curcpu) | 944 | if (cpu == curcpu) |
942 | continue; | 945 | continue; |
943 | i = 0; | 946 | i = 0; |
947 | xt_info_wrlock(cpu); | ||
944 | IP6T_ENTRY_ITERATE(t->entries[cpu], | 948 | IP6T_ENTRY_ITERATE(t->entries[cpu], |
945 | t->size, | 949 | t->size, |
946 | add_entry_to_counter, | 950 | add_entry_to_counter, |
947 | counters, | 951 | counters, |
948 | &i); | 952 | &i); |
953 | xt_info_wrunlock(cpu); | ||
949 | } | 954 | } |
950 | } | ||
951 | |||
952 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
953 | * and everything is OK. */ | ||
954 | static int | ||
955 | add_counter_to_entry(struct ip6t_entry *e, | ||
956 | const struct xt_counters addme[], | ||
957 | unsigned int *i) | ||
958 | { | ||
959 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
960 | |||
961 | (*i)++; | ||
962 | return 0; | ||
963 | } | ||
964 | |||
965 | /* Take values from counters and add them back onto the current cpu */ | ||
966 | static void put_counters(struct xt_table_info *t, | ||
967 | const struct xt_counters counters[]) | ||
968 | { | ||
969 | unsigned int i, cpu; | ||
970 | |||
971 | local_bh_disable(); | ||
972 | cpu = smp_processor_id(); | ||
973 | i = 0; | ||
974 | IP6T_ENTRY_ITERATE(t->entries[cpu], | ||
975 | t->size, | ||
976 | add_counter_to_entry, | ||
977 | counters, | ||
978 | &i); | ||
979 | local_bh_enable(); | 955 | local_bh_enable(); |
980 | } | 956 | } |
981 | 957 | ||
982 | static inline int | ||
983 | zero_entry_counter(struct ip6t_entry *e, void *arg) | ||
984 | { | ||
985 | e->counters.bcnt = 0; | ||
986 | e->counters.pcnt = 0; | ||
987 | return 0; | ||
988 | } | ||
989 | |||
990 | static void | ||
991 | clone_counters(struct xt_table_info *newinfo, const struct xt_table_info *info) | ||
992 | { | ||
993 | unsigned int cpu; | ||
994 | const void *loc_cpu_entry = info->entries[raw_smp_processor_id()]; | ||
995 | |||
996 | memcpy(newinfo, info, offsetof(struct xt_table_info, entries)); | ||
997 | for_each_possible_cpu(cpu) { | ||
998 | memcpy(newinfo->entries[cpu], loc_cpu_entry, info->size); | ||
999 | IP6T_ENTRY_ITERATE(newinfo->entries[cpu], newinfo->size, | ||
1000 | zero_entry_counter, NULL); | ||
1001 | } | ||
1002 | } | ||
1003 | |||
1004 | static struct xt_counters *alloc_counters(struct xt_table *table) | 958 | static struct xt_counters *alloc_counters(struct xt_table *table) |
1005 | { | 959 | { |
1006 | unsigned int countersize; | 960 | unsigned int countersize; |
1007 | struct xt_counters *counters; | 961 | struct xt_counters *counters; |
1008 | struct xt_table_info *private = table->private; | 962 | struct xt_table_info *private = table->private; |
1009 | struct xt_table_info *info; | ||
1010 | 963 | ||
1011 | /* We need atomic snapshot of counters: rest doesn't change | 964 | /* We need atomic snapshot of counters: rest doesn't change |
1012 | (other than comefrom, which userspace doesn't care | 965 | (other than comefrom, which userspace doesn't care |
@@ -1015,30 +968,11 @@ static struct xt_counters *alloc_counters(struct xt_table *table) | |||
1015 | counters = vmalloc_node(countersize, numa_node_id()); | 968 | counters = vmalloc_node(countersize, numa_node_id()); |
1016 | 969 | ||
1017 | if (counters == NULL) | 970 | if (counters == NULL) |
1018 | goto nomem; | 971 | return ERR_PTR(-ENOMEM); |
1019 | 972 | ||
1020 | info = xt_alloc_table_info(private->size); | 973 | get_counters(private, counters); |
1021 | if (!info) | ||
1022 | goto free_counters; | ||
1023 | |||
1024 | clone_counters(info, private); | ||
1025 | |||
1026 | mutex_lock(&table->lock); | ||
1027 | xt_table_entry_swap_rcu(private, info); | ||
1028 | synchronize_net(); /* Wait until smoke has cleared */ | ||
1029 | |||
1030 | get_counters(info, counters); | ||
1031 | put_counters(private, counters); | ||
1032 | mutex_unlock(&table->lock); | ||
1033 | |||
1034 | xt_free_table_info(info); | ||
1035 | 974 | ||
1036 | return counters; | 975 | return counters; |
1037 | |||
1038 | free_counters: | ||
1039 | vfree(counters); | ||
1040 | nomem: | ||
1041 | return ERR_PTR(-ENOMEM); | ||
1042 | } | 976 | } |
1043 | 977 | ||
1044 | static int | 978 | static int |
@@ -1334,8 +1268,9 @@ __do_replace(struct net *net, const char *name, unsigned int valid_hooks, | |||
1334 | (newinfo->number <= oldinfo->initial_entries)) | 1268 | (newinfo->number <= oldinfo->initial_entries)) |
1335 | module_put(t->me); | 1269 | module_put(t->me); |
1336 | 1270 | ||
1337 | /* Get the old counters. */ | 1271 | /* Get the old counters, and synchronize with replace */ |
1338 | get_counters(oldinfo, counters); | 1272 | get_counters(oldinfo, counters); |
1273 | |||
1339 | /* Decrease module usage counts and free resource */ | 1274 | /* Decrease module usage counts and free resource */ |
1340 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; | 1275 | loc_cpu_old_entry = oldinfo->entries[raw_smp_processor_id()]; |
1341 | IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, | 1276 | IP6T_ENTRY_ITERATE(loc_cpu_old_entry, oldinfo->size, cleanup_entry, |
@@ -1405,11 +1340,24 @@ do_replace(struct net *net, void __user *user, unsigned int len) | |||
1405 | return ret; | 1340 | return ret; |
1406 | } | 1341 | } |
1407 | 1342 | ||
1343 | /* We're lazy, and add to the first CPU; overflow works its fey magic | ||
1344 | * and everything is OK. */ | ||
1345 | static int | ||
1346 | add_counter_to_entry(struct ip6t_entry *e, | ||
1347 | const struct xt_counters addme[], | ||
1348 | unsigned int *i) | ||
1349 | { | ||
1350 | ADD_COUNTER(e->counters, addme[*i].bcnt, addme[*i].pcnt); | ||
1351 | |||
1352 | (*i)++; | ||
1353 | return 0; | ||
1354 | } | ||
1355 | |||
1408 | static int | 1356 | static int |
1409 | do_add_counters(struct net *net, void __user *user, unsigned int len, | 1357 | do_add_counters(struct net *net, void __user *user, unsigned int len, |
1410 | int compat) | 1358 | int compat) |
1411 | { | 1359 | { |
1412 | unsigned int i; | 1360 | unsigned int i, curcpu; |
1413 | struct xt_counters_info tmp; | 1361 | struct xt_counters_info tmp; |
1414 | struct xt_counters *paddc; | 1362 | struct xt_counters *paddc; |
1415 | unsigned int num_counters; | 1363 | unsigned int num_counters; |
@@ -1465,25 +1413,28 @@ do_add_counters(struct net *net, void __user *user, unsigned int len, | |||
1465 | goto free; | 1413 | goto free; |
1466 | } | 1414 | } |
1467 | 1415 | ||
1468 | mutex_lock(&t->lock); | 1416 | |
1417 | local_bh_disable(); | ||
1469 | private = t->private; | 1418 | private = t->private; |
1470 | if (private->number != num_counters) { | 1419 | if (private->number != num_counters) { |
1471 | ret = -EINVAL; | 1420 | ret = -EINVAL; |
1472 | goto unlock_up_free; | 1421 | goto unlock_up_free; |
1473 | } | 1422 | } |
1474 | 1423 | ||
1475 | preempt_disable(); | ||
1476 | i = 0; | 1424 | i = 0; |
1477 | /* Choose the copy that is on our node */ | 1425 | /* Choose the copy that is on our node */ |
1478 | loc_cpu_entry = private->entries[raw_smp_processor_id()]; | 1426 | curcpu = smp_processor_id(); |
1427 | xt_info_wrlock(curcpu); | ||
1428 | loc_cpu_entry = private->entries[curcpu]; | ||
1479 | IP6T_ENTRY_ITERATE(loc_cpu_entry, | 1429 | IP6T_ENTRY_ITERATE(loc_cpu_entry, |
1480 | private->size, | 1430 | private->size, |
1481 | add_counter_to_entry, | 1431 | add_counter_to_entry, |
1482 | paddc, | 1432 | paddc, |
1483 | &i); | 1433 | &i); |
1484 | preempt_enable(); | 1434 | xt_info_wrunlock(curcpu); |
1435 | |||
1485 | unlock_up_free: | 1436 | unlock_up_free: |
1486 | mutex_unlock(&t->lock); | 1437 | local_bh_enable(); |
1487 | xt_table_unlock(t); | 1438 | xt_table_unlock(t); |
1488 | module_put(t->me); | 1439 | module_put(t->me); |
1489 | free: | 1440 | free: |
diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c index 49e786535dc8..b51c9187c347 100644 --- a/net/iucv/af_iucv.c +++ b/net/iucv/af_iucv.c | |||
@@ -172,6 +172,7 @@ static void iucv_sock_close(struct sock *sk) | |||
172 | err = iucv_sock_wait_state(sk, IUCV_CLOSED, 0, timeo); | 172 | err = iucv_sock_wait_state(sk, IUCV_CLOSED, 0, timeo); |
173 | } | 173 | } |
174 | 174 | ||
175 | case IUCV_CLOSING: /* fall through */ | ||
175 | sk->sk_state = IUCV_CLOSED; | 176 | sk->sk_state = IUCV_CLOSED; |
176 | sk->sk_state_change(sk); | 177 | sk->sk_state_change(sk); |
177 | 178 | ||
@@ -224,6 +225,8 @@ static struct sock *iucv_sock_alloc(struct socket *sock, int proto, gfp_t prio) | |||
224 | spin_lock_init(&iucv_sk(sk)->message_q.lock); | 225 | spin_lock_init(&iucv_sk(sk)->message_q.lock); |
225 | skb_queue_head_init(&iucv_sk(sk)->backlog_skb_q); | 226 | skb_queue_head_init(&iucv_sk(sk)->backlog_skb_q); |
226 | iucv_sk(sk)->send_tag = 0; | 227 | iucv_sk(sk)->send_tag = 0; |
228 | iucv_sk(sk)->path = NULL; | ||
229 | memset(&iucv_sk(sk)->src_user_id , 0, 32); | ||
227 | 230 | ||
228 | sk->sk_destruct = iucv_sock_destruct; | 231 | sk->sk_destruct = iucv_sock_destruct; |
229 | sk->sk_sndtimeo = IUCV_CONN_TIMEOUT; | 232 | sk->sk_sndtimeo = IUCV_CONN_TIMEOUT; |
@@ -811,6 +814,8 @@ static int iucv_sock_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
811 | 814 | ||
812 | target = sock_rcvlowat(sk, flags & MSG_WAITALL, len); | 815 | target = sock_rcvlowat(sk, flags & MSG_WAITALL, len); |
813 | 816 | ||
817 | /* receive/dequeue next skb: | ||
818 | * the function understands MSG_PEEK and, thus, does not dequeue skb */ | ||
814 | skb = skb_recv_datagram(sk, flags, noblock, &err); | 819 | skb = skb_recv_datagram(sk, flags, noblock, &err); |
815 | if (!skb) { | 820 | if (!skb) { |
816 | if (sk->sk_shutdown & RCV_SHUTDOWN) | 821 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
@@ -858,9 +863,7 @@ static int iucv_sock_recvmsg(struct kiocb *iocb, struct socket *sock, | |||
858 | iucv_process_message_q(sk); | 863 | iucv_process_message_q(sk); |
859 | spin_unlock_bh(&iucv->message_q.lock); | 864 | spin_unlock_bh(&iucv->message_q.lock); |
860 | } | 865 | } |
861 | 866 | } | |
862 | } else | ||
863 | skb_queue_head(&sk->sk_receive_queue, skb); | ||
864 | 867 | ||
865 | done: | 868 | done: |
866 | return err ? : copied; | 869 | return err ? : copied; |
@@ -934,6 +937,9 @@ static int iucv_sock_shutdown(struct socket *sock, int how) | |||
934 | 937 | ||
935 | lock_sock(sk); | 938 | lock_sock(sk); |
936 | switch (sk->sk_state) { | 939 | switch (sk->sk_state) { |
940 | case IUCV_DISCONN: | ||
941 | case IUCV_CLOSING: | ||
942 | case IUCV_SEVERED: | ||
937 | case IUCV_CLOSED: | 943 | case IUCV_CLOSED: |
938 | err = -ENOTCONN; | 944 | err = -ENOTCONN; |
939 | goto fail; | 945 | goto fail; |
@@ -1113,8 +1119,12 @@ static void iucv_callback_rx(struct iucv_path *path, struct iucv_message *msg) | |||
1113 | struct sock_msg_q *save_msg; | 1119 | struct sock_msg_q *save_msg; |
1114 | int len; | 1120 | int len; |
1115 | 1121 | ||
1116 | if (sk->sk_shutdown & RCV_SHUTDOWN) | 1122 | if (sk->sk_shutdown & RCV_SHUTDOWN) { |
1123 | iucv_message_reject(path, msg); | ||
1117 | return; | 1124 | return; |
1125 | } | ||
1126 | |||
1127 | spin_lock(&iucv->message_q.lock); | ||
1118 | 1128 | ||
1119 | if (!list_empty(&iucv->message_q.list) || | 1129 | if (!list_empty(&iucv->message_q.list) || |
1120 | !skb_queue_empty(&iucv->backlog_skb_q)) | 1130 | !skb_queue_empty(&iucv->backlog_skb_q)) |
@@ -1129,9 +1139,8 @@ static void iucv_callback_rx(struct iucv_path *path, struct iucv_message *msg) | |||
1129 | if (!skb) | 1139 | if (!skb) |
1130 | goto save_message; | 1140 | goto save_message; |
1131 | 1141 | ||
1132 | spin_lock(&iucv->message_q.lock); | ||
1133 | iucv_process_message(sk, skb, path, msg); | 1142 | iucv_process_message(sk, skb, path, msg); |
1134 | spin_unlock(&iucv->message_q.lock); | 1143 | goto out_unlock; |
1135 | 1144 | ||
1136 | return; | 1145 | return; |
1137 | 1146 | ||
@@ -1142,8 +1151,9 @@ save_message: | |||
1142 | save_msg->path = path; | 1151 | save_msg->path = path; |
1143 | save_msg->msg = *msg; | 1152 | save_msg->msg = *msg; |
1144 | 1153 | ||
1145 | spin_lock(&iucv->message_q.lock); | ||
1146 | list_add_tail(&save_msg->list, &iucv->message_q.list); | 1154 | list_add_tail(&save_msg->list, &iucv->message_q.list); |
1155 | |||
1156 | out_unlock: | ||
1147 | spin_unlock(&iucv->message_q.lock); | 1157 | spin_unlock(&iucv->message_q.lock); |
1148 | } | 1158 | } |
1149 | 1159 | ||
diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig index f3d9ae350fb6..ecc3faf9f11a 100644 --- a/net/mac80211/Kconfig +++ b/net/mac80211/Kconfig | |||
@@ -202,10 +202,3 @@ config MAC80211_DEBUG_COUNTERS | |||
202 | and show them in debugfs. | 202 | and show them in debugfs. |
203 | 203 | ||
204 | If unsure, say N. | 204 | If unsure, say N. |
205 | |||
206 | config MAC80211_VERBOSE_SPECT_MGMT_DEBUG | ||
207 | bool "Verbose Spectrum Management (IEEE 802.11h)debugging" | ||
208 | depends on MAC80211_DEBUG_MENU | ||
209 | ---help--- | ||
210 | Say Y here to print out verbose Spectrum Management (IEEE 802.11h) | ||
211 | debug messages. | ||
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index a6f1d8a869bc..fbcbed6cad01 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
@@ -258,7 +258,7 @@ int ieee80211_hw_config(struct ieee80211_local *local, u32 changed) | |||
258 | (chan->max_power - local->power_constr_level) : | 258 | (chan->max_power - local->power_constr_level) : |
259 | chan->max_power; | 259 | chan->max_power; |
260 | 260 | ||
261 | if (local->user_power_level) | 261 | if (local->user_power_level >= 0) |
262 | power = min(power, local->user_power_level); | 262 | power = min(power, local->user_power_level); |
263 | 263 | ||
264 | if (local->hw.conf.power_level != power) { | 264 | if (local->hw.conf.power_level != power) { |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 7ecda9d59d8a..132938b073dc 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -441,6 +441,9 @@ static bool ieee80211_check_tim(struct ieee802_11_elems *elems, u16 aid) | |||
441 | u8 index, indexn1, indexn2; | 441 | u8 index, indexn1, indexn2; |
442 | struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim; | 442 | struct ieee80211_tim_ie *tim = (struct ieee80211_tim_ie *) elems->tim; |
443 | 443 | ||
444 | if (unlikely(!tim || elems->tim_len < 4)) | ||
445 | return false; | ||
446 | |||
444 | aid &= 0x3fff; | 447 | aid &= 0x3fff; |
445 | index = aid / 8; | 448 | index = aid / 8; |
446 | mask = 1 << (aid & 7); | 449 | mask = 1 << (aid & 7); |
@@ -945,9 +948,13 @@ void ieee80211_beacon_loss_work(struct work_struct *work) | |||
945 | u.mgd.beacon_loss_work); | 948 | u.mgd.beacon_loss_work); |
946 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | 949 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; |
947 | 950 | ||
948 | printk(KERN_DEBUG "%s: driver reports beacon loss from AP %pM " | 951 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
949 | "- sending probe request\n", sdata->dev->name, | 952 | if (net_ratelimit()) { |
950 | sdata->u.mgd.bssid); | 953 | printk(KERN_DEBUG "%s: driver reports beacon loss from AP %pM " |
954 | "- sending probe request\n", sdata->dev->name, | ||
955 | sdata->u.mgd.bssid); | ||
956 | } | ||
957 | #endif | ||
951 | 958 | ||
952 | ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL; | 959 | ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL; |
953 | ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid, | 960 | ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid, |
@@ -1007,9 +1014,13 @@ static void ieee80211_associated(struct ieee80211_sub_if_data *sdata) | |||
1007 | (local->hw.conf.flags & IEEE80211_CONF_PS)) && | 1014 | (local->hw.conf.flags & IEEE80211_CONF_PS)) && |
1008 | time_after(jiffies, | 1015 | time_after(jiffies, |
1009 | ifmgd->last_beacon + IEEE80211_MONITORING_INTERVAL)) { | 1016 | ifmgd->last_beacon + IEEE80211_MONITORING_INTERVAL)) { |
1010 | printk(KERN_DEBUG "%s: beacon loss from AP %pM " | 1017 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
1011 | "- sending probe request\n", | 1018 | if (net_ratelimit()) { |
1012 | sdata->dev->name, ifmgd->bssid); | 1019 | printk(KERN_DEBUG "%s: beacon loss from AP %pM " |
1020 | "- sending probe request\n", | ||
1021 | sdata->dev->name, ifmgd->bssid); | ||
1022 | } | ||
1023 | #endif | ||
1013 | ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL; | 1024 | ifmgd->flags |= IEEE80211_STA_PROBEREQ_POLL; |
1014 | ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid, | 1025 | ieee80211_send_probe_req(sdata, ifmgd->bssid, ifmgd->ssid, |
1015 | ifmgd->ssid_len, NULL, 0); | 1026 | ifmgd->ssid_len, NULL, 0); |
@@ -1355,7 +1366,7 @@ static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata, | |||
1355 | 1366 | ||
1356 | for (i = 0; i < elems.ext_supp_rates_len; i++) { | 1367 | for (i = 0; i < elems.ext_supp_rates_len; i++) { |
1357 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; | 1368 | int rate = (elems.ext_supp_rates[i] & 0x7f) * 5; |
1358 | bool is_basic = !!(elems.supp_rates[i] & 0x80); | 1369 | bool is_basic = !!(elems.ext_supp_rates[i] & 0x80); |
1359 | 1370 | ||
1360 | if (rate > 110) | 1371 | if (rate > 110) |
1361 | have_higher_than_11mbit = true; | 1372 | have_higher_than_11mbit = true; |
@@ -1902,9 +1913,17 @@ static void ieee80211_sta_work(struct work_struct *work) | |||
1902 | 1913 | ||
1903 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) | 1914 | static void ieee80211_restart_sta_timer(struct ieee80211_sub_if_data *sdata) |
1904 | { | 1915 | { |
1905 | if (sdata->vif.type == NL80211_IFTYPE_STATION) | 1916 | if (sdata->vif.type == NL80211_IFTYPE_STATION) { |
1917 | /* | ||
1918 | * Need to update last_beacon to avoid beacon loss | ||
1919 | * test to trigger. | ||
1920 | */ | ||
1921 | sdata->u.mgd.last_beacon = jiffies; | ||
1922 | |||
1923 | |||
1906 | queue_work(sdata->local->hw.workqueue, | 1924 | queue_work(sdata->local->hw.workqueue, |
1907 | &sdata->u.mgd.work); | 1925 | &sdata->u.mgd.work); |
1926 | } | ||
1908 | } | 1927 | } |
1909 | 1928 | ||
1910 | /* interface setup */ | 1929 | /* interface setup */ |
@@ -2105,12 +2124,13 @@ void ieee80211_dynamic_ps_enable_work(struct work_struct *work) | |||
2105 | struct ieee80211_local *local = | 2124 | struct ieee80211_local *local = |
2106 | container_of(work, struct ieee80211_local, | 2125 | container_of(work, struct ieee80211_local, |
2107 | dynamic_ps_enable_work); | 2126 | dynamic_ps_enable_work); |
2127 | /* XXX: using scan_sdata is completely broken! */ | ||
2108 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; | 2128 | struct ieee80211_sub_if_data *sdata = local->scan_sdata; |
2109 | 2129 | ||
2110 | if (local->hw.conf.flags & IEEE80211_CONF_PS) | 2130 | if (local->hw.conf.flags & IEEE80211_CONF_PS) |
2111 | return; | 2131 | return; |
2112 | 2132 | ||
2113 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK) | 2133 | if (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK && sdata) |
2114 | ieee80211_send_nullfunc(local, sdata, 1); | 2134 | ieee80211_send_nullfunc(local, sdata, 1); |
2115 | 2135 | ||
2116 | local->hw.conf.flags |= IEEE80211_CONF_PS; | 2136 | local->hw.conf.flags |= IEEE80211_CONF_PS; |
diff --git a/net/mac80211/pm.c b/net/mac80211/pm.c index 027302326498..81985d27cbda 100644 --- a/net/mac80211/pm.c +++ b/net/mac80211/pm.c | |||
@@ -156,8 +156,19 @@ int __ieee80211_resume(struct ieee80211_hw *hw) | |||
156 | case NL80211_IFTYPE_ADHOC: | 156 | case NL80211_IFTYPE_ADHOC: |
157 | case NL80211_IFTYPE_AP: | 157 | case NL80211_IFTYPE_AP: |
158 | case NL80211_IFTYPE_MESH_POINT: | 158 | case NL80211_IFTYPE_MESH_POINT: |
159 | WARN_ON(ieee80211_if_config(sdata, changed)); | 159 | /* |
160 | ieee80211_bss_info_change_notify(sdata, ~0); | 160 | * Driver's config_interface can fail if rfkill is |
161 | * enabled. Accommodate this return code. | ||
162 | * FIXME: When mac80211 has knowledge of rfkill | ||
163 | * state the code below can change back to: | ||
164 | * WARN(ieee80211_if_config(sdata, changed)); | ||
165 | * ieee80211_bss_info_change_notify(sdata, ~0); | ||
166 | */ | ||
167 | if (ieee80211_if_config(sdata, changed)) | ||
168 | printk(KERN_DEBUG "%s: failed to configure interface during resume\n", | ||
169 | sdata->dev->name); | ||
170 | else | ||
171 | ieee80211_bss_info_change_notify(sdata, ~0); | ||
161 | break; | 172 | break; |
162 | case NL80211_IFTYPE_WDS: | 173 | case NL80211_IFTYPE_WDS: |
163 | break; | 174 | break; |
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index 64ebe664effc..9776f73c51ad 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c | |||
@@ -29,6 +29,7 @@ | |||
29 | static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | 29 | static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, |
30 | struct tid_ampdu_rx *tid_agg_rx, | 30 | struct tid_ampdu_rx *tid_agg_rx, |
31 | struct sk_buff *skb, | 31 | struct sk_buff *skb, |
32 | struct ieee80211_rx_status *status, | ||
32 | u16 mpdu_seq_num, | 33 | u16 mpdu_seq_num, |
33 | int bar_req); | 34 | int bar_req); |
34 | /* | 35 | /* |
@@ -1396,7 +1397,7 @@ ieee80211_deliver_skb(struct ieee80211_rx_data *rx) | |||
1396 | * mac80211. That also explains the __skb_push() | 1397 | * mac80211. That also explains the __skb_push() |
1397 | * below. | 1398 | * below. |
1398 | */ | 1399 | */ |
1399 | align = (unsigned long)skb->data & 4; | 1400 | align = (unsigned long)skb->data & 3; |
1400 | if (align) { | 1401 | if (align) { |
1401 | if (WARN_ON(skb_headroom(skb) < 3)) { | 1402 | if (WARN_ON(skb_headroom(skb) < 3)) { |
1402 | dev_kfree_skb(skb); | 1403 | dev_kfree_skb(skb); |
@@ -1688,7 +1689,7 @@ ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx) | |||
1688 | /* manage reordering buffer according to requested */ | 1689 | /* manage reordering buffer according to requested */ |
1689 | /* sequence number */ | 1690 | /* sequence number */ |
1690 | rcu_read_lock(); | 1691 | rcu_read_lock(); |
1691 | ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL, | 1692 | ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL, NULL, |
1692 | start_seq_num, 1); | 1693 | start_seq_num, 1); |
1693 | rcu_read_unlock(); | 1694 | rcu_read_unlock(); |
1694 | return RX_DROP_UNUSABLE; | 1695 | return RX_DROP_UNUSABLE; |
@@ -2293,6 +2294,7 @@ static inline u16 seq_sub(u16 sq1, u16 sq2) | |||
2293 | static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | 2294 | static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, |
2294 | struct tid_ampdu_rx *tid_agg_rx, | 2295 | struct tid_ampdu_rx *tid_agg_rx, |
2295 | struct sk_buff *skb, | 2296 | struct sk_buff *skb, |
2297 | struct ieee80211_rx_status *rxstatus, | ||
2296 | u16 mpdu_seq_num, | 2298 | u16 mpdu_seq_num, |
2297 | int bar_req) | 2299 | int bar_req) |
2298 | { | 2300 | { |
@@ -2374,6 +2376,8 @@ static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | |||
2374 | 2376 | ||
2375 | /* put the frame in the reordering buffer */ | 2377 | /* put the frame in the reordering buffer */ |
2376 | tid_agg_rx->reorder_buf[index] = skb; | 2378 | tid_agg_rx->reorder_buf[index] = skb; |
2379 | memcpy(tid_agg_rx->reorder_buf[index]->cb, rxstatus, | ||
2380 | sizeof(*rxstatus)); | ||
2377 | tid_agg_rx->stored_mpdu_num++; | 2381 | tid_agg_rx->stored_mpdu_num++; |
2378 | /* release the buffer until next missing frame */ | 2382 | /* release the buffer until next missing frame */ |
2379 | index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn) | 2383 | index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn) |
@@ -2399,7 +2403,8 @@ static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw, | |||
2399 | } | 2403 | } |
2400 | 2404 | ||
2401 | static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local, | 2405 | static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local, |
2402 | struct sk_buff *skb) | 2406 | struct sk_buff *skb, |
2407 | struct ieee80211_rx_status *status) | ||
2403 | { | 2408 | { |
2404 | struct ieee80211_hw *hw = &local->hw; | 2409 | struct ieee80211_hw *hw = &local->hw; |
2405 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; | 2410 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
@@ -2448,7 +2453,7 @@ static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local, | |||
2448 | 2453 | ||
2449 | /* according to mpdu sequence number deal with reordering buffer */ | 2454 | /* according to mpdu sequence number deal with reordering buffer */ |
2450 | mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4; | 2455 | mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4; |
2451 | ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb, | 2456 | ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb, status, |
2452 | mpdu_seq_num, 0); | 2457 | mpdu_seq_num, 0); |
2453 | end_reorder: | 2458 | end_reorder: |
2454 | return ret; | 2459 | return ret; |
@@ -2512,7 +2517,7 @@ void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb, | |||
2512 | return; | 2517 | return; |
2513 | } | 2518 | } |
2514 | 2519 | ||
2515 | if (!ieee80211_rx_reorder_ampdu(local, skb)) | 2520 | if (!ieee80211_rx_reorder_ampdu(local, skb, status)) |
2516 | __ieee80211_rx_handle_packet(hw, skb, status, rate); | 2521 | __ieee80211_rx_handle_packet(hw, skb, status, rate); |
2517 | 2522 | ||
2518 | rcu_read_unlock(); | 2523 | rcu_read_unlock(); |
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index deb4ecec122a..959aa8379ccf 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c | |||
@@ -417,6 +417,7 @@ static int ieee80211_ioctl_siwtxpower(struct net_device *dev, | |||
417 | { | 417 | { |
418 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | 418 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
419 | struct ieee80211_channel* chan = local->hw.conf.channel; | 419 | struct ieee80211_channel* chan = local->hw.conf.channel; |
420 | bool reconf = false; | ||
420 | u32 reconf_flags = 0; | 421 | u32 reconf_flags = 0; |
421 | int new_power_level; | 422 | int new_power_level; |
422 | 423 | ||
@@ -427,14 +428,38 @@ static int ieee80211_ioctl_siwtxpower(struct net_device *dev, | |||
427 | if (!chan) | 428 | if (!chan) |
428 | return -EINVAL; | 429 | return -EINVAL; |
429 | 430 | ||
430 | if (data->txpower.fixed) | 431 | /* only change when not disabling */ |
431 | new_power_level = min(data->txpower.value, chan->max_power); | 432 | if (!data->txpower.disabled) { |
432 | else /* Automatic power level setting */ | 433 | if (data->txpower.fixed) { |
433 | new_power_level = chan->max_power; | 434 | if (data->txpower.value < 0) |
435 | return -EINVAL; | ||
436 | new_power_level = data->txpower.value; | ||
437 | /* | ||
438 | * Debatable, but we cannot do a fixed power | ||
439 | * level above the regulatory constraint. | ||
440 | * Use "iwconfig wlan0 txpower 15dBm" instead. | ||
441 | */ | ||
442 | if (new_power_level > chan->max_power) | ||
443 | return -EINVAL; | ||
444 | } else { | ||
445 | /* | ||
446 | * Automatic power level setting, max being the value | ||
447 | * passed in from userland. | ||
448 | */ | ||
449 | if (data->txpower.value < 0) | ||
450 | new_power_level = -1; | ||
451 | else | ||
452 | new_power_level = data->txpower.value; | ||
453 | } | ||
454 | |||
455 | reconf = true; | ||
434 | 456 | ||
435 | local->user_power_level = new_power_level; | 457 | /* |
436 | if (local->hw.conf.power_level != new_power_level) | 458 | * ieee80211_hw_config() will limit to the channel's |
437 | reconf_flags |= IEEE80211_CONF_CHANGE_POWER; | 459 | * max power and possibly power constraint from AP. |
460 | */ | ||
461 | local->user_power_level = new_power_level; | ||
462 | } | ||
438 | 463 | ||
439 | if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) { | 464 | if (local->hw.conf.radio_enabled != !(data->txpower.disabled)) { |
440 | local->hw.conf.radio_enabled = !(data->txpower.disabled); | 465 | local->hw.conf.radio_enabled = !(data->txpower.disabled); |
@@ -442,7 +467,7 @@ static int ieee80211_ioctl_siwtxpower(struct net_device *dev, | |||
442 | ieee80211_led_radio(local, local->hw.conf.radio_enabled); | 467 | ieee80211_led_radio(local, local->hw.conf.radio_enabled); |
443 | } | 468 | } |
444 | 469 | ||
445 | if (reconf_flags) | 470 | if (reconf || reconf_flags) |
446 | ieee80211_hw_config(local, reconf_flags); | 471 | ieee80211_hw_config(local, reconf_flags); |
447 | 472 | ||
448 | return 0; | 473 | return 0; |
@@ -530,7 +555,7 @@ static int ieee80211_ioctl_giwfrag(struct net_device *dev, | |||
530 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); | 555 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
531 | 556 | ||
532 | frag->value = local->fragmentation_threshold; | 557 | frag->value = local->fragmentation_threshold; |
533 | frag->disabled = (frag->value >= IEEE80211_MAX_RTS_THRESHOLD); | 558 | frag->disabled = (frag->value >= IEEE80211_MAX_FRAG_THRESHOLD); |
534 | frag->fixed = 1; | 559 | frag->fixed = 1; |
535 | 560 | ||
536 | return 0; | 561 | return 0; |
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 2329c5f50551..881203c4a142 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -275,6 +275,8 @@ config NF_CT_NETLINK | |||
275 | help | 275 | help |
276 | This option enables support for a netlink-based userspace interface | 276 | This option enables support for a netlink-based userspace interface |
277 | 277 | ||
278 | endif # NF_CONNTRACK | ||
279 | |||
278 | # transparent proxy support | 280 | # transparent proxy support |
279 | config NETFILTER_TPROXY | 281 | config NETFILTER_TPROXY |
280 | tristate "Transparent proxying support (EXPERIMENTAL)" | 282 | tristate "Transparent proxying support (EXPERIMENTAL)" |
@@ -290,8 +292,6 @@ config NETFILTER_TPROXY | |||
290 | 292 | ||
291 | To compile it as a module, choose M here. If unsure, say N. | 293 | To compile it as a module, choose M here. If unsure, say N. |
292 | 294 | ||
293 | endif # NF_CONNTRACK | ||
294 | |||
295 | config NETFILTER_XTABLES | 295 | config NETFILTER_XTABLES |
296 | tristate "Netfilter Xtables support (required for ip_tables)" | 296 | tristate "Netfilter Xtables support (required for ip_tables)" |
297 | default m if NETFILTER_ADVANCED=n | 297 | default m if NETFILTER_ADVANCED=n |
diff --git a/net/netfilter/nf_conntrack_helper.c b/net/netfilter/nf_conntrack_helper.c index 30b8e9009f99..0fa5a422959f 100644 --- a/net/netfilter/nf_conntrack_helper.c +++ b/net/netfilter/nf_conntrack_helper.c | |||
@@ -176,7 +176,7 @@ static void __nf_conntrack_helper_unregister(struct nf_conntrack_helper *me, | |||
176 | } | 176 | } |
177 | 177 | ||
178 | /* Get rid of expecteds, set helpers to NULL. */ | 178 | /* Get rid of expecteds, set helpers to NULL. */ |
179 | hlist_for_each_entry(h, nn, &net->ct.unconfirmed, hnnode) | 179 | hlist_nulls_for_each_entry(h, nn, &net->ct.unconfirmed, hnnode) |
180 | unhelp(h, me); | 180 | unhelp(h, me); |
181 | for (i = 0; i < nf_conntrack_htable_size; i++) { | 181 | for (i = 0; i < nf_conntrack_htable_size; i++) { |
182 | hlist_nulls_for_each_entry(h, nn, &net->ct.hash[i], hnnode) | 182 | hlist_nulls_for_each_entry(h, nn, &net->ct.hash[i], hnnode) |
diff --git a/net/netfilter/nf_conntrack_netlink.c b/net/netfilter/nf_conntrack_netlink.c index c6439c77953c..f13fc57e1ecb 100644 --- a/net/netfilter/nf_conntrack_netlink.c +++ b/net/netfilter/nf_conntrack_netlink.c | |||
@@ -512,7 +512,7 @@ static int ctnetlink_conntrack_event(struct notifier_block *this, | |||
512 | 512 | ||
513 | skb = ctnetlink_alloc_skb(tuple(ct, IP_CT_DIR_ORIGINAL), GFP_ATOMIC); | 513 | skb = ctnetlink_alloc_skb(tuple(ct, IP_CT_DIR_ORIGINAL), GFP_ATOMIC); |
514 | if (!skb) | 514 | if (!skb) |
515 | return NOTIFY_DONE; | 515 | goto errout; |
516 | 516 | ||
517 | b = skb->tail; | 517 | b = skb->tail; |
518 | 518 | ||
@@ -591,8 +591,9 @@ static int ctnetlink_conntrack_event(struct notifier_block *this, | |||
591 | nla_put_failure: | 591 | nla_put_failure: |
592 | rcu_read_unlock(); | 592 | rcu_read_unlock(); |
593 | nlmsg_failure: | 593 | nlmsg_failure: |
594 | nfnetlink_set_err(0, group, -ENOBUFS); | ||
595 | kfree_skb(skb); | 594 | kfree_skb(skb); |
595 | errout: | ||
596 | nfnetlink_set_err(0, group, -ENOBUFS); | ||
596 | return NOTIFY_DONE; | 597 | return NOTIFY_DONE; |
597 | } | 598 | } |
598 | #endif /* CONFIG_NF_CONNTRACK_EVENTS */ | 599 | #endif /* CONFIG_NF_CONNTRACK_EVENTS */ |
@@ -987,7 +988,7 @@ ctnetlink_change_helper(struct nf_conn *ct, struct nlattr *cda[]) | |||
987 | { | 988 | { |
988 | struct nf_conntrack_helper *helper; | 989 | struct nf_conntrack_helper *helper; |
989 | struct nf_conn_help *help = nfct_help(ct); | 990 | struct nf_conn_help *help = nfct_help(ct); |
990 | char *helpname; | 991 | char *helpname = NULL; |
991 | int err; | 992 | int err; |
992 | 993 | ||
993 | /* don't change helper of sibling connections */ | 994 | /* don't change helper of sibling connections */ |
@@ -1230,7 +1231,7 @@ ctnetlink_create_conntrack(struct nlattr *cda[], | |||
1230 | 1231 | ||
1231 | rcu_read_lock(); | 1232 | rcu_read_lock(); |
1232 | if (cda[CTA_HELP]) { | 1233 | if (cda[CTA_HELP]) { |
1233 | char *helpname; | 1234 | char *helpname = NULL; |
1234 | 1235 | ||
1235 | err = ctnetlink_parse_help(cda[CTA_HELP], &helpname); | 1236 | err = ctnetlink_parse_help(cda[CTA_HELP], &helpname); |
1236 | if (err < 0) | 1237 | if (err < 0) |
@@ -1564,7 +1565,7 @@ static int ctnetlink_expect_event(struct notifier_block *this, | |||
1564 | 1565 | ||
1565 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC); | 1566 | skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC); |
1566 | if (!skb) | 1567 | if (!skb) |
1567 | return NOTIFY_DONE; | 1568 | goto errout; |
1568 | 1569 | ||
1569 | b = skb->tail; | 1570 | b = skb->tail; |
1570 | 1571 | ||
@@ -1589,8 +1590,9 @@ static int ctnetlink_expect_event(struct notifier_block *this, | |||
1589 | nla_put_failure: | 1590 | nla_put_failure: |
1590 | rcu_read_unlock(); | 1591 | rcu_read_unlock(); |
1591 | nlmsg_failure: | 1592 | nlmsg_failure: |
1592 | nfnetlink_set_err(0, 0, -ENOBUFS); | ||
1593 | kfree_skb(skb); | 1593 | kfree_skb(skb); |
1594 | errout: | ||
1595 | nfnetlink_set_err(0, 0, -ENOBUFS); | ||
1594 | return NOTIFY_DONE; | 1596 | return NOTIFY_DONE; |
1595 | } | 1597 | } |
1596 | #endif | 1598 | #endif |
diff --git a/net/netfilter/nf_conntrack_proto_dccp.c b/net/netfilter/nf_conntrack_proto_dccp.c index 50dac8dbe7d8..8e757dd53396 100644 --- a/net/netfilter/nf_conntrack_proto_dccp.c +++ b/net/netfilter/nf_conntrack_proto_dccp.c | |||
@@ -633,6 +633,8 @@ static int dccp_to_nlattr(struct sk_buff *skb, struct nlattr *nla, | |||
633 | if (!nest_parms) | 633 | if (!nest_parms) |
634 | goto nla_put_failure; | 634 | goto nla_put_failure; |
635 | NLA_PUT_U8(skb, CTA_PROTOINFO_DCCP_STATE, ct->proto.dccp.state); | 635 | NLA_PUT_U8(skb, CTA_PROTOINFO_DCCP_STATE, ct->proto.dccp.state); |
636 | NLA_PUT_U8(skb, CTA_PROTOINFO_DCCP_ROLE, | ||
637 | ct->proto.dccp.role[IP_CT_DIR_ORIGINAL]); | ||
636 | nla_nest_end(skb, nest_parms); | 638 | nla_nest_end(skb, nest_parms); |
637 | read_unlock_bh(&dccp_lock); | 639 | read_unlock_bh(&dccp_lock); |
638 | return 0; | 640 | return 0; |
@@ -644,6 +646,7 @@ nla_put_failure: | |||
644 | 646 | ||
645 | static const struct nla_policy dccp_nla_policy[CTA_PROTOINFO_DCCP_MAX + 1] = { | 647 | static const struct nla_policy dccp_nla_policy[CTA_PROTOINFO_DCCP_MAX + 1] = { |
646 | [CTA_PROTOINFO_DCCP_STATE] = { .type = NLA_U8 }, | 648 | [CTA_PROTOINFO_DCCP_STATE] = { .type = NLA_U8 }, |
649 | [CTA_PROTOINFO_DCCP_ROLE] = { .type = NLA_U8 }, | ||
647 | }; | 650 | }; |
648 | 651 | ||
649 | static int nlattr_to_dccp(struct nlattr *cda[], struct nf_conn *ct) | 652 | static int nlattr_to_dccp(struct nlattr *cda[], struct nf_conn *ct) |
@@ -661,11 +664,21 @@ static int nlattr_to_dccp(struct nlattr *cda[], struct nf_conn *ct) | |||
661 | return err; | 664 | return err; |
662 | 665 | ||
663 | if (!tb[CTA_PROTOINFO_DCCP_STATE] || | 666 | if (!tb[CTA_PROTOINFO_DCCP_STATE] || |
664 | nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]) >= CT_DCCP_IGNORE) | 667 | !tb[CTA_PROTOINFO_DCCP_ROLE] || |
668 | nla_get_u8(tb[CTA_PROTOINFO_DCCP_ROLE]) > CT_DCCP_ROLE_MAX || | ||
669 | nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]) >= CT_DCCP_IGNORE) { | ||
665 | return -EINVAL; | 670 | return -EINVAL; |
671 | } | ||
666 | 672 | ||
667 | write_lock_bh(&dccp_lock); | 673 | write_lock_bh(&dccp_lock); |
668 | ct->proto.dccp.state = nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]); | 674 | ct->proto.dccp.state = nla_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]); |
675 | if (nla_get_u8(tb[CTA_PROTOINFO_DCCP_ROLE]) == CT_DCCP_ROLE_CLIENT) { | ||
676 | ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_CLIENT; | ||
677 | ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_SERVER; | ||
678 | } else { | ||
679 | ct->proto.dccp.role[IP_CT_DIR_ORIGINAL] = CT_DCCP_ROLE_SERVER; | ||
680 | ct->proto.dccp.role[IP_CT_DIR_REPLY] = CT_DCCP_ROLE_CLIENT; | ||
681 | } | ||
669 | write_unlock_bh(&dccp_lock); | 682 | write_unlock_bh(&dccp_lock); |
670 | return 0; | 683 | return 0; |
671 | } | 684 | } |
@@ -777,6 +790,7 @@ static struct nf_conntrack_l4proto dccp_proto6 __read_mostly = { | |||
777 | .print_conntrack = dccp_print_conntrack, | 790 | .print_conntrack = dccp_print_conntrack, |
778 | #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE) | 791 | #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE) |
779 | .to_nlattr = dccp_to_nlattr, | 792 | .to_nlattr = dccp_to_nlattr, |
793 | .nlattr_size = dccp_nlattr_size, | ||
780 | .from_nlattr = nlattr_to_dccp, | 794 | .from_nlattr = nlattr_to_dccp, |
781 | .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr, | 795 | .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr, |
782 | .nlattr_tuple_size = nf_ct_port_nlattr_tuple_size, | 796 | .nlattr_tuple_size = nf_ct_port_nlattr_tuple_size, |
diff --git a/net/netfilter/nf_conntrack_proto_udplite.c b/net/netfilter/nf_conntrack_proto_udplite.c index 4614696c1b88..0badedc542d3 100644 --- a/net/netfilter/nf_conntrack_proto_udplite.c +++ b/net/netfilter/nf_conntrack_proto_udplite.c | |||
@@ -204,6 +204,7 @@ static struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite6 __read_mostly = | |||
204 | .error = udplite_error, | 204 | .error = udplite_error, |
205 | #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE) | 205 | #if defined(CONFIG_NF_CT_NETLINK) || defined(CONFIG_NF_CT_NETLINK_MODULE) |
206 | .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr, | 206 | .tuple_to_nlattr = nf_ct_port_tuple_to_nlattr, |
207 | .nlattr_tuple_size = nf_ct_port_nlattr_tuple_size, | ||
207 | .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple, | 208 | .nlattr_to_tuple = nf_ct_port_nlattr_to_tuple, |
208 | .nla_policy = nf_ct_port_nla_policy, | 209 | .nla_policy = nf_ct_port_nla_policy, |
209 | #endif | 210 | #endif |
diff --git a/net/netfilter/nf_log.c b/net/netfilter/nf_log.c index 8bb998fe098b..beb37311e1a5 100644 --- a/net/netfilter/nf_log.c +++ b/net/netfilter/nf_log.c | |||
@@ -36,10 +36,14 @@ static struct nf_logger *__find_logger(int pf, const char *str_logger) | |||
36 | int nf_log_register(u_int8_t pf, struct nf_logger *logger) | 36 | int nf_log_register(u_int8_t pf, struct nf_logger *logger) |
37 | { | 37 | { |
38 | const struct nf_logger *llog; | 38 | const struct nf_logger *llog; |
39 | int i; | ||
39 | 40 | ||
40 | if (pf >= ARRAY_SIZE(nf_loggers)) | 41 | if (pf >= ARRAY_SIZE(nf_loggers)) |
41 | return -EINVAL; | 42 | return -EINVAL; |
42 | 43 | ||
44 | for (i = 0; i < ARRAY_SIZE(logger->list); i++) | ||
45 | INIT_LIST_HEAD(&logger->list[i]); | ||
46 | |||
43 | mutex_lock(&nf_log_mutex); | 47 | mutex_lock(&nf_log_mutex); |
44 | 48 | ||
45 | if (pf == NFPROTO_UNSPEC) { | 49 | if (pf == NFPROTO_UNSPEC) { |
diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c index 2785d66a7e38..b8ab37ad7ed5 100644 --- a/net/netfilter/nfnetlink.c +++ b/net/netfilter/nfnetlink.c | |||
@@ -203,7 +203,7 @@ static int __init nfnetlink_init(void) | |||
203 | nfnetlink_rcv, NULL, THIS_MODULE); | 203 | nfnetlink_rcv, NULL, THIS_MODULE); |
204 | if (!nfnl) { | 204 | if (!nfnl) { |
205 | printk(KERN_ERR "cannot initialize nfnetlink!\n"); | 205 | printk(KERN_ERR "cannot initialize nfnetlink!\n"); |
206 | return -1; | 206 | return -ENOMEM; |
207 | } | 207 | } |
208 | 208 | ||
209 | return 0; | 209 | return 0; |
diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c index 509a95621f9f..150e5cf62f85 100644 --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c | |||
@@ -625,20 +625,6 @@ void xt_free_table_info(struct xt_table_info *info) | |||
625 | } | 625 | } |
626 | EXPORT_SYMBOL(xt_free_table_info); | 626 | EXPORT_SYMBOL(xt_free_table_info); |
627 | 627 | ||
628 | void xt_table_entry_swap_rcu(struct xt_table_info *oldinfo, | ||
629 | struct xt_table_info *newinfo) | ||
630 | { | ||
631 | unsigned int cpu; | ||
632 | |||
633 | for_each_possible_cpu(cpu) { | ||
634 | void *p = oldinfo->entries[cpu]; | ||
635 | rcu_assign_pointer(oldinfo->entries[cpu], newinfo->entries[cpu]); | ||
636 | newinfo->entries[cpu] = p; | ||
637 | } | ||
638 | |||
639 | } | ||
640 | EXPORT_SYMBOL_GPL(xt_table_entry_swap_rcu); | ||
641 | |||
642 | /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */ | 628 | /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */ |
643 | struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af, | 629 | struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af, |
644 | const char *name) | 630 | const char *name) |
@@ -676,32 +662,43 @@ void xt_compat_unlock(u_int8_t af) | |||
676 | EXPORT_SYMBOL_GPL(xt_compat_unlock); | 662 | EXPORT_SYMBOL_GPL(xt_compat_unlock); |
677 | #endif | 663 | #endif |
678 | 664 | ||
665 | DEFINE_PER_CPU(struct xt_info_lock, xt_info_locks); | ||
666 | EXPORT_PER_CPU_SYMBOL_GPL(xt_info_locks); | ||
667 | |||
668 | |||
679 | struct xt_table_info * | 669 | struct xt_table_info * |
680 | xt_replace_table(struct xt_table *table, | 670 | xt_replace_table(struct xt_table *table, |
681 | unsigned int num_counters, | 671 | unsigned int num_counters, |
682 | struct xt_table_info *newinfo, | 672 | struct xt_table_info *newinfo, |
683 | int *error) | 673 | int *error) |
684 | { | 674 | { |
685 | struct xt_table_info *oldinfo, *private; | 675 | struct xt_table_info *private; |
686 | 676 | ||
687 | /* Do the substitution. */ | 677 | /* Do the substitution. */ |
688 | mutex_lock(&table->lock); | 678 | local_bh_disable(); |
689 | private = table->private; | 679 | private = table->private; |
680 | |||
690 | /* Check inside lock: is the old number correct? */ | 681 | /* Check inside lock: is the old number correct? */ |
691 | if (num_counters != private->number) { | 682 | if (num_counters != private->number) { |
692 | duprintf("num_counters != table->private->number (%u/%u)\n", | 683 | duprintf("num_counters != table->private->number (%u/%u)\n", |
693 | num_counters, private->number); | 684 | num_counters, private->number); |
694 | mutex_unlock(&table->lock); | 685 | local_bh_enable(); |
695 | *error = -EAGAIN; | 686 | *error = -EAGAIN; |
696 | return NULL; | 687 | return NULL; |
697 | } | 688 | } |
698 | oldinfo = private; | ||
699 | rcu_assign_pointer(table->private, newinfo); | ||
700 | newinfo->initial_entries = oldinfo->initial_entries; | ||
701 | mutex_unlock(&table->lock); | ||
702 | 689 | ||
703 | synchronize_net(); | 690 | table->private = newinfo; |
704 | return oldinfo; | 691 | newinfo->initial_entries = private->initial_entries; |
692 | |||
693 | /* | ||
694 | * Even though table entries have now been swapped, other CPU's | ||
695 | * may still be using the old entries. This is okay, because | ||
696 | * resynchronization happens because of the locking done | ||
697 | * during the get_counters() routine. | ||
698 | */ | ||
699 | local_bh_enable(); | ||
700 | |||
701 | return private; | ||
705 | } | 702 | } |
706 | EXPORT_SYMBOL_GPL(xt_replace_table); | 703 | EXPORT_SYMBOL_GPL(xt_replace_table); |
707 | 704 | ||
@@ -734,7 +731,6 @@ struct xt_table *xt_register_table(struct net *net, struct xt_table *table, | |||
734 | 731 | ||
735 | /* Simplifies replace_table code. */ | 732 | /* Simplifies replace_table code. */ |
736 | table->private = bootstrap; | 733 | table->private = bootstrap; |
737 | mutex_init(&table->lock); | ||
738 | 734 | ||
739 | if (!xt_replace_table(table, 0, newinfo, &ret)) | 735 | if (!xt_replace_table(table, 0, newinfo, &ret)) |
740 | goto unlock; | 736 | goto unlock; |
@@ -1147,7 +1143,14 @@ static struct pernet_operations xt_net_ops = { | |||
1147 | 1143 | ||
1148 | static int __init xt_init(void) | 1144 | static int __init xt_init(void) |
1149 | { | 1145 | { |
1150 | int i, rv; | 1146 | unsigned int i; |
1147 | int rv; | ||
1148 | |||
1149 | for_each_possible_cpu(i) { | ||
1150 | struct xt_info_lock *lock = &per_cpu(xt_info_locks, i); | ||
1151 | spin_lock_init(&lock->lock); | ||
1152 | lock->readers = 0; | ||
1153 | } | ||
1151 | 1154 | ||
1152 | xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL); | 1155 | xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL); |
1153 | if (!xt) | 1156 | if (!xt) |
diff --git a/net/netfilter/xt_recent.c b/net/netfilter/xt_recent.c index 791e030ea903..eb0ceb846527 100644 --- a/net/netfilter/xt_recent.c +++ b/net/netfilter/xt_recent.c | |||
@@ -474,7 +474,7 @@ static ssize_t recent_old_proc_write(struct file *file, | |||
474 | struct recent_table *t = pde->data; | 474 | struct recent_table *t = pde->data; |
475 | struct recent_entry *e; | 475 | struct recent_entry *e; |
476 | char buf[sizeof("+255.255.255.255")], *c = buf; | 476 | char buf[sizeof("+255.255.255.255")], *c = buf; |
477 | __be32 addr; | 477 | union nf_inet_addr addr = {}; |
478 | int add; | 478 | int add; |
479 | 479 | ||
480 | if (size > sizeof(buf)) | 480 | if (size > sizeof(buf)) |
@@ -506,14 +506,13 @@ static ssize_t recent_old_proc_write(struct file *file, | |||
506 | add = 1; | 506 | add = 1; |
507 | break; | 507 | break; |
508 | } | 508 | } |
509 | addr = in_aton(c); | 509 | addr.ip = in_aton(c); |
510 | 510 | ||
511 | spin_lock_bh(&recent_lock); | 511 | spin_lock_bh(&recent_lock); |
512 | e = recent_entry_lookup(t, (const void *)&addr, NFPROTO_IPV4, 0); | 512 | e = recent_entry_lookup(t, &addr, NFPROTO_IPV4, 0); |
513 | if (e == NULL) { | 513 | if (e == NULL) { |
514 | if (add) | 514 | if (add) |
515 | recent_entry_init(t, (const void *)&addr, | 515 | recent_entry_init(t, &addr, NFPROTO_IPV4, 0); |
516 | NFPROTO_IPV4, 0); | ||
517 | } else { | 516 | } else { |
518 | if (add) | 517 | if (add) |
519 | recent_entry_update(t, e); | 518 | recent_entry_update(t, e); |
diff --git a/net/netlabel/netlabel_addrlist.c b/net/netlabel/netlabel_addrlist.c index 834c6eb7f484..c0519139679e 100644 --- a/net/netlabel/netlabel_addrlist.c +++ b/net/netlabel/netlabel_addrlist.c | |||
@@ -256,13 +256,11 @@ struct netlbl_af4list *netlbl_af4list_remove(__be32 addr, __be32 mask, | |||
256 | { | 256 | { |
257 | struct netlbl_af4list *entry; | 257 | struct netlbl_af4list *entry; |
258 | 258 | ||
259 | entry = netlbl_af4list_search(addr, head); | 259 | entry = netlbl_af4list_search_exact(addr, mask, head); |
260 | if (entry != NULL && entry->addr == addr && entry->mask == mask) { | 260 | if (entry == NULL) |
261 | netlbl_af4list_remove_entry(entry); | 261 | return NULL; |
262 | return entry; | 262 | netlbl_af4list_remove_entry(entry); |
263 | } | 263 | return entry; |
264 | |||
265 | return NULL; | ||
266 | } | 264 | } |
267 | 265 | ||
268 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 266 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
@@ -299,15 +297,11 @@ struct netlbl_af6list *netlbl_af6list_remove(const struct in6_addr *addr, | |||
299 | { | 297 | { |
300 | struct netlbl_af6list *entry; | 298 | struct netlbl_af6list *entry; |
301 | 299 | ||
302 | entry = netlbl_af6list_search(addr, head); | 300 | entry = netlbl_af6list_search_exact(addr, mask, head); |
303 | if (entry != NULL && | 301 | if (entry == NULL) |
304 | ipv6_addr_equal(&entry->addr, addr) && | 302 | return NULL; |
305 | ipv6_addr_equal(&entry->mask, mask)) { | 303 | netlbl_af6list_remove_entry(entry); |
306 | netlbl_af6list_remove_entry(entry); | 304 | return entry; |
307 | return entry; | ||
308 | } | ||
309 | |||
310 | return NULL; | ||
311 | } | 305 | } |
312 | #endif /* IPv6 */ | 306 | #endif /* IPv6 */ |
313 | 307 | ||
diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c index 4e705f87969f..3be0e016ab7d 100644 --- a/net/netrom/af_netrom.c +++ b/net/netrom/af_netrom.c | |||
@@ -1084,8 +1084,10 @@ static int nr_sendmsg(struct kiocb *iocb, struct socket *sock, | |||
1084 | 1084 | ||
1085 | /* Build a packet - the conventional user limit is 236 bytes. We can | 1085 | /* Build a packet - the conventional user limit is 236 bytes. We can |
1086 | do ludicrously large NetROM frames but must not overflow */ | 1086 | do ludicrously large NetROM frames but must not overflow */ |
1087 | if (len > 65536) | 1087 | if (len > 65536) { |
1088 | return -EMSGSIZE; | 1088 | err = -EMSGSIZE; |
1089 | goto out; | ||
1090 | } | ||
1089 | 1091 | ||
1090 | SOCK_DEBUG(sk, "NET/ROM: sendto: building packet.\n"); | 1092 | SOCK_DEBUG(sk, "NET/ROM: sendto: building packet.\n"); |
1091 | size = len + NR_NETWORK_LEN + NR_TRANSPORT_LEN; | 1093 | size = len + NR_NETWORK_LEN + NR_TRANSPORT_LEN; |
diff --git a/net/rds/rds.h b/net/rds/rds.h index 619f0a30a4e5..71794449ca4e 100644 --- a/net/rds/rds.h +++ b/net/rds/rds.h | |||
@@ -638,7 +638,7 @@ struct rds_message *rds_send_get_message(struct rds_connection *, | |||
638 | void rds_rdma_unuse(struct rds_sock *rs, u32 r_key, int force); | 638 | void rds_rdma_unuse(struct rds_sock *rs, u32 r_key, int force); |
639 | 639 | ||
640 | /* stats.c */ | 640 | /* stats.c */ |
641 | DECLARE_PER_CPU(struct rds_statistics, rds_stats); | 641 | DECLARE_PER_CPU_SHARED_ALIGNED(struct rds_statistics, rds_stats); |
642 | #define rds_stats_inc_which(which, member) do { \ | 642 | #define rds_stats_inc_which(which, member) do { \ |
643 | per_cpu(which, get_cpu()).member++; \ | 643 | per_cpu(which, get_cpu()).member++; \ |
644 | put_cpu(); \ | 644 | put_cpu(); \ |
diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c index d876b8734848..2b88295cb7b7 100644 --- a/net/sched/sch_netem.c +++ b/net/sched/sch_netem.c | |||
@@ -280,6 +280,14 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch) | |||
280 | if (unlikely(!skb)) | 280 | if (unlikely(!skb)) |
281 | return NULL; | 281 | return NULL; |
282 | 282 | ||
283 | #ifdef CONFIG_NET_CLS_ACT | ||
284 | /* | ||
285 | * If it's at ingress let's pretend the delay is | ||
286 | * from the network (tstamp will be updated). | ||
287 | */ | ||
288 | if (G_TC_FROM(skb->tc_verd) & AT_INGRESS) | ||
289 | skb->tstamp.tv64 = 0; | ||
290 | #endif | ||
283 | pr_debug("netem_dequeue: return skb=%p\n", skb); | 291 | pr_debug("netem_dequeue: return skb=%p\n", skb); |
284 | sch->q.qlen--; | 292 | sch->q.qlen--; |
285 | return skb; | 293 | return skb; |
diff --git a/net/wireless/core.h b/net/wireless/core.h index d43daa236ef9..0a592e4295f0 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h | |||
@@ -90,7 +90,7 @@ struct cfg80211_internal_bss { | |||
90 | struct rb_node rbn; | 90 | struct rb_node rbn; |
91 | unsigned long ts; | 91 | unsigned long ts; |
92 | struct kref ref; | 92 | struct kref ref; |
93 | bool hold; | 93 | bool hold, ies_allocated; |
94 | 94 | ||
95 | /* must be last because of priv member */ | 95 | /* must be last because of priv member */ |
96 | struct cfg80211_bss pub; | 96 | struct cfg80211_bss pub; |
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 353e1a4ece83..2456e4ee445e 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
@@ -3334,7 +3334,7 @@ static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev, | |||
3334 | struct sk_buff *msg; | 3334 | struct sk_buff *msg; |
3335 | void *hdr; | 3335 | void *hdr; |
3336 | 3336 | ||
3337 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL); | 3337 | msg = nlmsg_new(NLMSG_GOODSIZE, GFP_ATOMIC); |
3338 | if (!msg) | 3338 | if (!msg) |
3339 | return; | 3339 | return; |
3340 | 3340 | ||
@@ -3353,7 +3353,7 @@ static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev, | |||
3353 | return; | 3353 | return; |
3354 | } | 3354 | } |
3355 | 3355 | ||
3356 | genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_KERNEL); | 3356 | genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, GFP_ATOMIC); |
3357 | return; | 3357 | return; |
3358 | 3358 | ||
3359 | nla_put_failure: | 3359 | nla_put_failure: |
diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 6327e1617acb..6c1993d99902 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c | |||
@@ -2095,11 +2095,12 @@ int set_regdom(const struct ieee80211_regdomain *rd) | |||
2095 | /* Caller must hold cfg80211_mutex */ | 2095 | /* Caller must hold cfg80211_mutex */ |
2096 | void reg_device_remove(struct wiphy *wiphy) | 2096 | void reg_device_remove(struct wiphy *wiphy) |
2097 | { | 2097 | { |
2098 | struct wiphy *request_wiphy; | 2098 | struct wiphy *request_wiphy = NULL; |
2099 | 2099 | ||
2100 | assert_cfg80211_lock(); | 2100 | assert_cfg80211_lock(); |
2101 | 2101 | ||
2102 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); | 2102 | if (last_request) |
2103 | request_wiphy = wiphy_idx_to_wiphy(last_request->wiphy_idx); | ||
2103 | 2104 | ||
2104 | kfree(wiphy->regd); | 2105 | kfree(wiphy->regd); |
2105 | if (!last_request || !request_wiphy) | 2106 | if (!last_request || !request_wiphy) |
diff --git a/net/wireless/scan.c b/net/wireless/scan.c index 2a00e362f5fe..2ae65b39b529 100644 --- a/net/wireless/scan.c +++ b/net/wireless/scan.c | |||
@@ -58,6 +58,10 @@ static void bss_release(struct kref *ref) | |||
58 | bss = container_of(ref, struct cfg80211_internal_bss, ref); | 58 | bss = container_of(ref, struct cfg80211_internal_bss, ref); |
59 | if (bss->pub.free_priv) | 59 | if (bss->pub.free_priv) |
60 | bss->pub.free_priv(&bss->pub); | 60 | bss->pub.free_priv(&bss->pub); |
61 | |||
62 | if (bss->ies_allocated) | ||
63 | kfree(bss->pub.information_elements); | ||
64 | |||
61 | kfree(bss); | 65 | kfree(bss); |
62 | } | 66 | } |
63 | 67 | ||
@@ -360,19 +364,41 @@ cfg80211_bss_update(struct cfg80211_registered_device *dev, | |||
360 | 364 | ||
361 | found = rb_find_bss(dev, res); | 365 | found = rb_find_bss(dev, res); |
362 | 366 | ||
363 | if (found && overwrite) { | 367 | if (found) { |
364 | list_replace(&found->list, &res->list); | ||
365 | rb_replace_node(&found->rbn, &res->rbn, | ||
366 | &dev->bss_tree); | ||
367 | kref_put(&found->ref, bss_release); | ||
368 | found = res; | ||
369 | } else if (found) { | ||
370 | kref_get(&found->ref); | 368 | kref_get(&found->ref); |
371 | found->pub.beacon_interval = res->pub.beacon_interval; | 369 | found->pub.beacon_interval = res->pub.beacon_interval; |
372 | found->pub.tsf = res->pub.tsf; | 370 | found->pub.tsf = res->pub.tsf; |
373 | found->pub.signal = res->pub.signal; | 371 | found->pub.signal = res->pub.signal; |
374 | found->pub.capability = res->pub.capability; | 372 | found->pub.capability = res->pub.capability; |
375 | found->ts = res->ts; | 373 | found->ts = res->ts; |
374 | |||
375 | /* overwrite IEs */ | ||
376 | if (overwrite) { | ||
377 | size_t used = dev->wiphy.bss_priv_size + sizeof(*res); | ||
378 | size_t ielen = res->pub.len_information_elements; | ||
379 | |||
380 | if (ksize(found) >= used + ielen) { | ||
381 | memcpy(found->pub.information_elements, | ||
382 | res->pub.information_elements, ielen); | ||
383 | found->pub.len_information_elements = ielen; | ||
384 | } else { | ||
385 | u8 *ies = found->pub.information_elements; | ||
386 | |||
387 | if (found->ies_allocated) { | ||
388 | if (ksize(ies) < ielen) | ||
389 | ies = krealloc(ies, ielen, | ||
390 | GFP_ATOMIC); | ||
391 | } else | ||
392 | ies = kmalloc(ielen, GFP_ATOMIC); | ||
393 | |||
394 | if (ies) { | ||
395 | memcpy(ies, res->pub.information_elements, ielen); | ||
396 | found->ies_allocated = true; | ||
397 | found->pub.information_elements = ies; | ||
398 | } | ||
399 | } | ||
400 | } | ||
401 | |||
376 | kref_put(&res->ref, bss_release); | 402 | kref_put(&res->ref, bss_release); |
377 | } else { | 403 | } else { |
378 | /* this "consumes" the reference */ | 404 | /* this "consumes" the reference */ |
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c index 82271720d970..5f1f86565f16 100644 --- a/net/xfrm/xfrm_state.c +++ b/net/xfrm/xfrm_state.c | |||
@@ -794,7 +794,7 @@ xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr, | |||
794 | { | 794 | { |
795 | static xfrm_address_t saddr_wildcard = { }; | 795 | static xfrm_address_t saddr_wildcard = { }; |
796 | struct net *net = xp_net(pol); | 796 | struct net *net = xp_net(pol); |
797 | unsigned int h; | 797 | unsigned int h, h_wildcard; |
798 | struct hlist_node *entry; | 798 | struct hlist_node *entry; |
799 | struct xfrm_state *x, *x0, *to_put; | 799 | struct xfrm_state *x, *x0, *to_put; |
800 | int acquire_in_progress = 0; | 800 | int acquire_in_progress = 0; |
@@ -819,8 +819,8 @@ xfrm_state_find(xfrm_address_t *daddr, xfrm_address_t *saddr, | |||
819 | if (best) | 819 | if (best) |
820 | goto found; | 820 | goto found; |
821 | 821 | ||
822 | h = xfrm_dst_hash(net, daddr, &saddr_wildcard, tmpl->reqid, family); | 822 | h_wildcard = xfrm_dst_hash(net, daddr, &saddr_wildcard, tmpl->reqid, family); |
823 | hlist_for_each_entry(x, entry, net->xfrm.state_bydst+h, bydst) { | 823 | hlist_for_each_entry(x, entry, net->xfrm.state_bydst+h_wildcard, bydst) { |
824 | if (x->props.family == family && | 824 | if (x->props.family == family && |
825 | x->props.reqid == tmpl->reqid && | 825 | x->props.reqid == tmpl->reqid && |
826 | !(x->props.flags & XFRM_STATE_WILDRECV) && | 826 | !(x->props.flags & XFRM_STATE_WILDRECV) && |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index df6e6286a065..8d46ea7d6715 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -794,15 +794,6 @@ static const char *init_exit_sections[] = | |||
794 | /* data section */ | 794 | /* data section */ |
795 | static const char *data_sections[] = { DATA_SECTIONS, NULL }; | 795 | static const char *data_sections[] = { DATA_SECTIONS, NULL }; |
796 | 796 | ||
797 | /* sections that may refer to an init/exit section with no warning */ | ||
798 | static const char *initref_sections[] = | ||
799 | { | ||
800 | ".text.init.refok*", | ||
801 | ".exit.text.refok*", | ||
802 | ".data.init.refok*", | ||
803 | NULL | ||
804 | }; | ||
805 | |||
806 | 797 | ||
807 | /* symbols in .data that may refer to init/exit sections */ | 798 | /* symbols in .data that may refer to init/exit sections */ |
808 | static const char *symbol_white_list[] = | 799 | static const char *symbol_white_list[] = |
@@ -915,11 +906,6 @@ static int section_mismatch(const char *fromsec, const char *tosec) | |||
915 | /** | 906 | /** |
916 | * Whitelist to allow certain references to pass with no warning. | 907 | * Whitelist to allow certain references to pass with no warning. |
917 | * | 908 | * |
918 | * Pattern 0: | ||
919 | * Do not warn if funtion/data are marked with __init_refok/__initdata_refok. | ||
920 | * The pattern is identified by: | ||
921 | * fromsec = .text.init.refok* | .data.init.refok* | ||
922 | * | ||
923 | * Pattern 1: | 909 | * Pattern 1: |
924 | * If a module parameter is declared __initdata and permissions=0 | 910 | * If a module parameter is declared __initdata and permissions=0 |
925 | * then this is legal despite the warning generated. | 911 | * then this is legal despite the warning generated. |
@@ -958,10 +944,6 @@ static int section_mismatch(const char *fromsec, const char *tosec) | |||
958 | static int secref_whitelist(const char *fromsec, const char *fromsym, | 944 | static int secref_whitelist(const char *fromsec, const char *fromsym, |
959 | const char *tosec, const char *tosym) | 945 | const char *tosec, const char *tosym) |
960 | { | 946 | { |
961 | /* Check for pattern 0 */ | ||
962 | if (match(fromsec, initref_sections)) | ||
963 | return 0; | ||
964 | |||
965 | /* Check for pattern 1 */ | 947 | /* Check for pattern 1 */ |
966 | if (match(tosec, init_data_sections) && | 948 | if (match(tosec, init_data_sections) && |
967 | match(fromsec, data_sections) && | 949 | match(fromsec, data_sections) && |
diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c index 15500b9d2da0..84bb07d39a7f 100644 --- a/sound/aoa/codecs/onyx.c +++ b/sound/aoa/codecs/onyx.c | |||
@@ -47,7 +47,7 @@ MODULE_DESCRIPTION("pcm3052 (onyx) codec driver for snd-aoa"); | |||
47 | struct onyx { | 47 | struct onyx { |
48 | /* cache registers 65 to 80, they are write-only! */ | 48 | /* cache registers 65 to 80, they are write-only! */ |
49 | u8 cache[16]; | 49 | u8 cache[16]; |
50 | struct i2c_client i2c; | 50 | struct i2c_client *i2c; |
51 | struct aoa_codec codec; | 51 | struct aoa_codec codec; |
52 | u32 initialised:1, | 52 | u32 initialised:1, |
53 | spdif_locked:1, | 53 | spdif_locked:1, |
@@ -72,7 +72,7 @@ static int onyx_read_register(struct onyx *onyx, u8 reg, u8 *value) | |||
72 | *value = onyx->cache[reg-FIRSTREGISTER]; | 72 | *value = onyx->cache[reg-FIRSTREGISTER]; |
73 | return 0; | 73 | return 0; |
74 | } | 74 | } |
75 | v = i2c_smbus_read_byte_data(&onyx->i2c, reg); | 75 | v = i2c_smbus_read_byte_data(onyx->i2c, reg); |
76 | if (v < 0) | 76 | if (v < 0) |
77 | return -1; | 77 | return -1; |
78 | *value = (u8)v; | 78 | *value = (u8)v; |
@@ -84,7 +84,7 @@ static int onyx_write_register(struct onyx *onyx, u8 reg, u8 value) | |||
84 | { | 84 | { |
85 | int result; | 85 | int result; |
86 | 86 | ||
87 | result = i2c_smbus_write_byte_data(&onyx->i2c, reg, value); | 87 | result = i2c_smbus_write_byte_data(onyx->i2c, reg, value); |
88 | if (!result) | 88 | if (!result) |
89 | onyx->cache[reg-FIRSTREGISTER] = value; | 89 | onyx->cache[reg-FIRSTREGISTER] = value; |
90 | return result; | 90 | return result; |
@@ -996,12 +996,45 @@ static void onyx_exit_codec(struct aoa_codec *codec) | |||
996 | onyx->codec.soundbus_dev->detach_codec(onyx->codec.soundbus_dev, onyx); | 996 | onyx->codec.soundbus_dev->detach_codec(onyx->codec.soundbus_dev, onyx); |
997 | } | 997 | } |
998 | 998 | ||
999 | static struct i2c_driver onyx_driver; | ||
1000 | |||
1001 | static int onyx_create(struct i2c_adapter *adapter, | 999 | static int onyx_create(struct i2c_adapter *adapter, |
1002 | struct device_node *node, | 1000 | struct device_node *node, |
1003 | int addr) | 1001 | int addr) |
1004 | { | 1002 | { |
1003 | struct i2c_board_info info; | ||
1004 | struct i2c_client *client; | ||
1005 | |||
1006 | memset(&info, 0, sizeof(struct i2c_board_info)); | ||
1007 | strlcpy(info.type, "aoa_codec_onyx", I2C_NAME_SIZE); | ||
1008 | info.addr = addr; | ||
1009 | info.platform_data = node; | ||
1010 | client = i2c_new_device(adapter, &info); | ||
1011 | if (!client) | ||
1012 | return -ENODEV; | ||
1013 | |||
1014 | /* | ||
1015 | * We know the driver is already loaded, so the device should be | ||
1016 | * already bound. If not it means binding failed, which suggests | ||
1017 | * the device doesn't really exist and should be deleted. | ||
1018 | * Ideally this would be replaced by better checks _before_ | ||
1019 | * instantiating the device. | ||
1020 | */ | ||
1021 | if (!client->driver) { | ||
1022 | i2c_unregister_device(client); | ||
1023 | return -ENODEV; | ||
1024 | } | ||
1025 | |||
1026 | /* | ||
1027 | * Let i2c-core delete that device on driver removal. | ||
1028 | * This is safe because i2c-core holds the core_lock mutex for us. | ||
1029 | */ | ||
1030 | list_add_tail(&client->detected, &client->driver->clients); | ||
1031 | return 0; | ||
1032 | } | ||
1033 | |||
1034 | static int onyx_i2c_probe(struct i2c_client *client, | ||
1035 | const struct i2c_device_id *id) | ||
1036 | { | ||
1037 | struct device_node *node = client->dev.platform_data; | ||
1005 | struct onyx *onyx; | 1038 | struct onyx *onyx; |
1006 | u8 dummy; | 1039 | u8 dummy; |
1007 | 1040 | ||
@@ -1011,20 +1044,12 @@ static int onyx_create(struct i2c_adapter *adapter, | |||
1011 | return -ENOMEM; | 1044 | return -ENOMEM; |
1012 | 1045 | ||
1013 | mutex_init(&onyx->mutex); | 1046 | mutex_init(&onyx->mutex); |
1014 | onyx->i2c.driver = &onyx_driver; | 1047 | onyx->i2c = client; |
1015 | onyx->i2c.adapter = adapter; | 1048 | i2c_set_clientdata(client, onyx); |
1016 | onyx->i2c.addr = addr & 0x7f; | ||
1017 | strlcpy(onyx->i2c.name, "onyx audio codec", I2C_NAME_SIZE); | ||
1018 | |||
1019 | if (i2c_attach_client(&onyx->i2c)) { | ||
1020 | printk(KERN_ERR PFX "failed to attach to i2c\n"); | ||
1021 | goto fail; | ||
1022 | } | ||
1023 | 1049 | ||
1024 | /* we try to read from register ONYX_REG_CONTROL | 1050 | /* we try to read from register ONYX_REG_CONTROL |
1025 | * to check if the codec is present */ | 1051 | * to check if the codec is present */ |
1026 | if (onyx_read_register(onyx, ONYX_REG_CONTROL, &dummy) != 0) { | 1052 | if (onyx_read_register(onyx, ONYX_REG_CONTROL, &dummy) != 0) { |
1027 | i2c_detach_client(&onyx->i2c); | ||
1028 | printk(KERN_ERR PFX "failed to read control register\n"); | 1053 | printk(KERN_ERR PFX "failed to read control register\n"); |
1029 | goto fail; | 1054 | goto fail; |
1030 | } | 1055 | } |
@@ -1036,14 +1061,14 @@ static int onyx_create(struct i2c_adapter *adapter, | |||
1036 | onyx->codec.node = of_node_get(node); | 1061 | onyx->codec.node = of_node_get(node); |
1037 | 1062 | ||
1038 | if (aoa_codec_register(&onyx->codec)) { | 1063 | if (aoa_codec_register(&onyx->codec)) { |
1039 | i2c_detach_client(&onyx->i2c); | ||
1040 | goto fail; | 1064 | goto fail; |
1041 | } | 1065 | } |
1042 | printk(KERN_DEBUG PFX "created and attached onyx instance\n"); | 1066 | printk(KERN_DEBUG PFX "created and attached onyx instance\n"); |
1043 | return 0; | 1067 | return 0; |
1044 | fail: | 1068 | fail: |
1069 | i2c_set_clientdata(client, NULL); | ||
1045 | kfree(onyx); | 1070 | kfree(onyx); |
1046 | return -EINVAL; | 1071 | return -ENODEV; |
1047 | } | 1072 | } |
1048 | 1073 | ||
1049 | static int onyx_i2c_attach(struct i2c_adapter *adapter) | 1074 | static int onyx_i2c_attach(struct i2c_adapter *adapter) |
@@ -1080,28 +1105,33 @@ static int onyx_i2c_attach(struct i2c_adapter *adapter) | |||
1080 | return onyx_create(adapter, NULL, 0x47); | 1105 | return onyx_create(adapter, NULL, 0x47); |
1081 | } | 1106 | } |
1082 | 1107 | ||
1083 | static int onyx_i2c_detach(struct i2c_client *client) | 1108 | static int onyx_i2c_remove(struct i2c_client *client) |
1084 | { | 1109 | { |
1085 | struct onyx *onyx = container_of(client, struct onyx, i2c); | 1110 | struct onyx *onyx = i2c_get_clientdata(client); |
1086 | int err; | ||
1087 | 1111 | ||
1088 | if ((err = i2c_detach_client(client))) | ||
1089 | return err; | ||
1090 | aoa_codec_unregister(&onyx->codec); | 1112 | aoa_codec_unregister(&onyx->codec); |
1091 | of_node_put(onyx->codec.node); | 1113 | of_node_put(onyx->codec.node); |
1092 | if (onyx->codec_info) | 1114 | if (onyx->codec_info) |
1093 | kfree(onyx->codec_info); | 1115 | kfree(onyx->codec_info); |
1116 | i2c_set_clientdata(client, onyx); | ||
1094 | kfree(onyx); | 1117 | kfree(onyx); |
1095 | return 0; | 1118 | return 0; |
1096 | } | 1119 | } |
1097 | 1120 | ||
1121 | static const struct i2c_device_id onyx_i2c_id[] = { | ||
1122 | { "aoa_codec_onyx", 0 }, | ||
1123 | { } | ||
1124 | }; | ||
1125 | |||
1098 | static struct i2c_driver onyx_driver = { | 1126 | static struct i2c_driver onyx_driver = { |
1099 | .driver = { | 1127 | .driver = { |
1100 | .name = "aoa_codec_onyx", | 1128 | .name = "aoa_codec_onyx", |
1101 | .owner = THIS_MODULE, | 1129 | .owner = THIS_MODULE, |
1102 | }, | 1130 | }, |
1103 | .attach_adapter = onyx_i2c_attach, | 1131 | .attach_adapter = onyx_i2c_attach, |
1104 | .detach_client = onyx_i2c_detach, | 1132 | .probe = onyx_i2c_probe, |
1133 | .remove = onyx_i2c_remove, | ||
1134 | .id_table = onyx_i2c_id, | ||
1105 | }; | 1135 | }; |
1106 | 1136 | ||
1107 | static int __init onyx_init(void) | 1137 | static int __init onyx_init(void) |
diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index 008e0f85097d..f0ebc971c686 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c | |||
@@ -82,7 +82,7 @@ MODULE_DESCRIPTION("tas codec driver for snd-aoa"); | |||
82 | 82 | ||
83 | struct tas { | 83 | struct tas { |
84 | struct aoa_codec codec; | 84 | struct aoa_codec codec; |
85 | struct i2c_client i2c; | 85 | struct i2c_client *i2c; |
86 | u32 mute_l:1, mute_r:1 , | 86 | u32 mute_l:1, mute_r:1 , |
87 | controls_created:1 , | 87 | controls_created:1 , |
88 | drc_enabled:1, | 88 | drc_enabled:1, |
@@ -108,9 +108,9 @@ static struct tas *codec_to_tas(struct aoa_codec *codec) | |||
108 | static inline int tas_write_reg(struct tas *tas, u8 reg, u8 len, u8 *data) | 108 | static inline int tas_write_reg(struct tas *tas, u8 reg, u8 len, u8 *data) |
109 | { | 109 | { |
110 | if (len == 1) | 110 | if (len == 1) |
111 | return i2c_smbus_write_byte_data(&tas->i2c, reg, *data); | 111 | return i2c_smbus_write_byte_data(tas->i2c, reg, *data); |
112 | else | 112 | else |
113 | return i2c_smbus_write_i2c_block_data(&tas->i2c, reg, len, data); | 113 | return i2c_smbus_write_i2c_block_data(tas->i2c, reg, len, data); |
114 | } | 114 | } |
115 | 115 | ||
116 | static void tas3004_set_drc(struct tas *tas) | 116 | static void tas3004_set_drc(struct tas *tas) |
@@ -882,12 +882,34 @@ static void tas_exit_codec(struct aoa_codec *codec) | |||
882 | } | 882 | } |
883 | 883 | ||
884 | 884 | ||
885 | static struct i2c_driver tas_driver; | ||
886 | |||
887 | static int tas_create(struct i2c_adapter *adapter, | 885 | static int tas_create(struct i2c_adapter *adapter, |
888 | struct device_node *node, | 886 | struct device_node *node, |
889 | int addr) | 887 | int addr) |
890 | { | 888 | { |
889 | struct i2c_board_info info; | ||
890 | struct i2c_client *client; | ||
891 | |||
892 | memset(&info, 0, sizeof(struct i2c_board_info)); | ||
893 | strlcpy(info.type, "aoa_codec_tas", I2C_NAME_SIZE); | ||
894 | info.addr = addr; | ||
895 | info.platform_data = node; | ||
896 | |||
897 | client = i2c_new_device(adapter, &info); | ||
898 | if (!client) | ||
899 | return -ENODEV; | ||
900 | |||
901 | /* | ||
902 | * Let i2c-core delete that device on driver removal. | ||
903 | * This is safe because i2c-core holds the core_lock mutex for us. | ||
904 | */ | ||
905 | list_add_tail(&client->detected, &client->driver->clients); | ||
906 | return 0; | ||
907 | } | ||
908 | |||
909 | static int tas_i2c_probe(struct i2c_client *client, | ||
910 | const struct i2c_device_id *id) | ||
911 | { | ||
912 | struct device_node *node = client->dev.platform_data; | ||
891 | struct tas *tas; | 913 | struct tas *tas; |
892 | 914 | ||
893 | tas = kzalloc(sizeof(struct tas), GFP_KERNEL); | 915 | tas = kzalloc(sizeof(struct tas), GFP_KERNEL); |
@@ -896,17 +918,11 @@ static int tas_create(struct i2c_adapter *adapter, | |||
896 | return -ENOMEM; | 918 | return -ENOMEM; |
897 | 919 | ||
898 | mutex_init(&tas->mtx); | 920 | mutex_init(&tas->mtx); |
899 | tas->i2c.driver = &tas_driver; | 921 | tas->i2c = client; |
900 | tas->i2c.adapter = adapter; | 922 | i2c_set_clientdata(client, tas); |
901 | tas->i2c.addr = addr; | 923 | |
902 | /* seems that half is a saner default */ | 924 | /* seems that half is a saner default */ |
903 | tas->drc_range = TAS3004_DRC_MAX / 2; | 925 | tas->drc_range = TAS3004_DRC_MAX / 2; |
904 | strlcpy(tas->i2c.name, "tas audio codec", I2C_NAME_SIZE); | ||
905 | |||
906 | if (i2c_attach_client(&tas->i2c)) { | ||
907 | printk(KERN_ERR PFX "failed to attach to i2c\n"); | ||
908 | goto fail; | ||
909 | } | ||
910 | 926 | ||
911 | strlcpy(tas->codec.name, "tas", MAX_CODEC_NAME_LEN); | 927 | strlcpy(tas->codec.name, "tas", MAX_CODEC_NAME_LEN); |
912 | tas->codec.owner = THIS_MODULE; | 928 | tas->codec.owner = THIS_MODULE; |
@@ -915,14 +931,12 @@ static int tas_create(struct i2c_adapter *adapter, | |||
915 | tas->codec.node = of_node_get(node); | 931 | tas->codec.node = of_node_get(node); |
916 | 932 | ||
917 | if (aoa_codec_register(&tas->codec)) { | 933 | if (aoa_codec_register(&tas->codec)) { |
918 | goto detach; | 934 | goto fail; |
919 | } | 935 | } |
920 | printk(KERN_DEBUG | 936 | printk(KERN_DEBUG |
921 | "snd-aoa-codec-tas: tas found, addr 0x%02x on %s\n", | 937 | "snd-aoa-codec-tas: tas found, addr 0x%02x on %s\n", |
922 | addr, node->full_name); | 938 | (unsigned int)client->addr, node->full_name); |
923 | return 0; | 939 | return 0; |
924 | detach: | ||
925 | i2c_detach_client(&tas->i2c); | ||
926 | fail: | 940 | fail: |
927 | mutex_destroy(&tas->mtx); | 941 | mutex_destroy(&tas->mtx); |
928 | kfree(tas); | 942 | kfree(tas); |
@@ -970,14 +984,11 @@ static int tas_i2c_attach(struct i2c_adapter *adapter) | |||
970 | return -ENODEV; | 984 | return -ENODEV; |
971 | } | 985 | } |
972 | 986 | ||
973 | static int tas_i2c_detach(struct i2c_client *client) | 987 | static int tas_i2c_remove(struct i2c_client *client) |
974 | { | 988 | { |
975 | struct tas *tas = container_of(client, struct tas, i2c); | 989 | struct tas *tas = i2c_get_clientdata(client); |
976 | int err; | ||
977 | u8 tmp = TAS_ACR_ANALOG_PDOWN; | 990 | u8 tmp = TAS_ACR_ANALOG_PDOWN; |
978 | 991 | ||
979 | if ((err = i2c_detach_client(client))) | ||
980 | return err; | ||
981 | aoa_codec_unregister(&tas->codec); | 992 | aoa_codec_unregister(&tas->codec); |
982 | of_node_put(tas->codec.node); | 993 | of_node_put(tas->codec.node); |
983 | 994 | ||
@@ -989,13 +1000,20 @@ static int tas_i2c_detach(struct i2c_client *client) | |||
989 | return 0; | 1000 | return 0; |
990 | } | 1001 | } |
991 | 1002 | ||
1003 | static const struct i2c_device_id tas_i2c_id[] = { | ||
1004 | { "aoa_codec_tas", 0 }, | ||
1005 | { } | ||
1006 | }; | ||
1007 | |||
992 | static struct i2c_driver tas_driver = { | 1008 | static struct i2c_driver tas_driver = { |
993 | .driver = { | 1009 | .driver = { |
994 | .name = "aoa_codec_tas", | 1010 | .name = "aoa_codec_tas", |
995 | .owner = THIS_MODULE, | 1011 | .owner = THIS_MODULE, |
996 | }, | 1012 | }, |
997 | .attach_adapter = tas_i2c_attach, | 1013 | .attach_adapter = tas_i2c_attach, |
998 | .detach_client = tas_i2c_detach, | 1014 | .probe = tas_i2c_probe, |
1015 | .remove = tas_i2c_remove, | ||
1016 | .id_table = tas_i2c_id, | ||
999 | }; | 1017 | }; |
1000 | 1018 | ||
1001 | static int __init tas_init(void) | 1019 | static int __init tas_init(void) |
diff --git a/sound/arm/pxa2xx-ac97-lib.c b/sound/arm/pxa2xx-ac97-lib.c index 0afd1a8226fb..a2c12d105c9a 100644 --- a/sound/arm/pxa2xx-ac97-lib.c +++ b/sound/arm/pxa2xx-ac97-lib.c | |||
@@ -364,7 +364,7 @@ EXPORT_SYMBOL_GPL(pxa2xx_ac97_hw_resume); | |||
364 | int __devinit pxa2xx_ac97_hw_probe(struct platform_device *dev) | 364 | int __devinit pxa2xx_ac97_hw_probe(struct platform_device *dev) |
365 | { | 365 | { |
366 | int ret; | 366 | int ret; |
367 | struct pxa2xx_ac97_platform_data *pdata = dev->dev.platform_data; | 367 | pxa2xx_audio_ops_t *pdata = dev->dev.platform_data; |
368 | 368 | ||
369 | if (pdata) { | 369 | if (pdata) { |
370 | switch (pdata->reset_gpio) { | 370 | switch (pdata->reset_gpio) { |
diff --git a/sound/pci/ac97/ac97_codec.c b/sound/pci/ac97/ac97_codec.c index 97ee127ac33d..78288dbfc17a 100644 --- a/sound/pci/ac97/ac97_codec.c +++ b/sound/pci/ac97/ac97_codec.c | |||
@@ -2122,7 +2122,7 @@ int snd_ac97_mixer(struct snd_ac97_bus *bus, struct snd_ac97_template *template, | |||
2122 | } | 2122 | } |
2123 | /* nothing should be in powerdown mode */ | 2123 | /* nothing should be in powerdown mode */ |
2124 | snd_ac97_write_cache(ac97, AC97_GENERAL_PURPOSE, 0); | 2124 | snd_ac97_write_cache(ac97, AC97_GENERAL_PURPOSE, 0); |
2125 | end_time = jiffies + msecs_to_jiffies(100); | 2125 | end_time = jiffies + msecs_to_jiffies(120); |
2126 | do { | 2126 | do { |
2127 | if ((snd_ac97_read(ac97, AC97_POWERDOWN) & 0x0f) == 0x0f) | 2127 | if ((snd_ac97_read(ac97, AC97_POWERDOWN) & 0x0f) == 0x0f) |
2128 | goto __ready_ok; | 2128 | goto __ready_ok; |
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index 9ce8548c03e4..71515ddb4593 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c | |||
@@ -1393,6 +1393,12 @@ static struct ac97_quirk ac97_quirks[] __devinitdata = { | |||
1393 | .name = "HP nx6125", | 1393 | .name = "HP nx6125", |
1394 | .type = AC97_TUNE_MUTE_LED | 1394 | .type = AC97_TUNE_MUTE_LED |
1395 | }, | 1395 | }, |
1396 | { | ||
1397 | .subvendor = 0x103c, | ||
1398 | .subdevice = 0x3091, | ||
1399 | .name = "unknown HP", | ||
1400 | .type = AC97_TUNE_MUTE_LED | ||
1401 | }, | ||
1396 | { } /* terminator */ | 1402 | { } /* terminator */ |
1397 | }; | 1403 | }; |
1398 | 1404 | ||
diff --git a/sound/pci/cmipci.c b/sound/pci/cmipci.c index c7899c32aba1..449fe02f666e 100644 --- a/sound/pci/cmipci.c +++ b/sound/pci/cmipci.c | |||
@@ -3014,7 +3014,7 @@ static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pc | |||
3014 | .dev_free = snd_cmipci_dev_free, | 3014 | .dev_free = snd_cmipci_dev_free, |
3015 | }; | 3015 | }; |
3016 | unsigned int val; | 3016 | unsigned int val; |
3017 | long iomidi; | 3017 | long iomidi = 0; |
3018 | int integrated_midi = 0; | 3018 | int integrated_midi = 0; |
3019 | char modelstr[16]; | 3019 | char modelstr[16]; |
3020 | int pcm_index, pcm_spdif_index; | 3020 | int pcm_index, pcm_spdif_index; |
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index 9bcd8ab5a27f..84cc49ca9148 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c | |||
@@ -3817,6 +3817,49 @@ static struct hda_verb ad1884a_laptop_verbs[] = { | |||
3817 | { } /* end */ | 3817 | { } /* end */ |
3818 | }; | 3818 | }; |
3819 | 3819 | ||
3820 | static struct hda_verb ad1884a_mobile_verbs[] = { | ||
3821 | /* DACs; unmute as default */ | ||
3822 | {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0x27}, /* 0dB */ | ||
3823 | {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x27}, /* 0dB */ | ||
3824 | /* Port-A (HP) mixer - route only from analog mixer */ | ||
3825 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
3826 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
3827 | /* Port-A pin */ | ||
3828 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
3829 | /* Port-A (HP) pin - always unmuted */ | ||
3830 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
3831 | /* Port-B (mic jack) pin */ | ||
3832 | {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | ||
3833 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7002}, /* raise mic as default */ | ||
3834 | /* Port-C (int mic) pin */ | ||
3835 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | ||
3836 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x7002}, /* raise mic as default */ | ||
3837 | /* Port-F (int speaker) mixer - route only from analog mixer */ | ||
3838 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
3839 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
3840 | /* Port-F pin */ | ||
3841 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
3842 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
3843 | /* Analog mixer; mute as default */ | ||
3844 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
3845 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
3846 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
3847 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
3848 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, | ||
3849 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, | ||
3850 | /* Analog Mix output amp */ | ||
3851 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
3852 | /* capture sources */ | ||
3853 | /* {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0}, */ /* set via unsol */ | ||
3854 | {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
3855 | {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0}, | ||
3856 | {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
3857 | /* unsolicited event for pin-sense */ | ||
3858 | {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1884A_HP_EVENT}, | ||
3859 | {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1884A_MIC_EVENT}, | ||
3860 | { } /* end */ | ||
3861 | }; | ||
3862 | |||
3820 | /* | 3863 | /* |
3821 | * Thinkpad X300 | 3864 | * Thinkpad X300 |
3822 | * 0x11 - HP | 3865 | * 0x11 - HP |
@@ -3988,7 +4031,7 @@ static int patch_ad1884a(struct hda_codec *codec) | |||
3988 | break; | 4031 | break; |
3989 | case AD1884A_MOBILE: | 4032 | case AD1884A_MOBILE: |
3990 | spec->mixers[0] = ad1884a_mobile_mixers; | 4033 | spec->mixers[0] = ad1884a_mobile_mixers; |
3991 | spec->init_verbs[spec->num_init_verbs++] = ad1884a_laptop_verbs; | 4034 | spec->init_verbs[0] = ad1884a_mobile_verbs; |
3992 | spec->multiout.dig_out_nid = 0; | 4035 | spec->multiout.dig_out_nid = 0; |
3993 | codec->patch_ops.unsol_event = ad1884a_hp_unsol_event; | 4036 | codec->patch_ops.unsol_event = ad1884a_hp_unsol_event; |
3994 | codec->patch_ops.init = ad1884a_hp_init; | 4037 | codec->patch_ops.init = ad1884a_hp_init; |
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 6ed787eedd06..b8a0d3e79272 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -188,6 +188,8 @@ enum { | |||
188 | ALC663_ASUS_MODE4, | 188 | ALC663_ASUS_MODE4, |
189 | ALC663_ASUS_MODE5, | 189 | ALC663_ASUS_MODE5, |
190 | ALC663_ASUS_MODE6, | 190 | ALC663_ASUS_MODE6, |
191 | ALC272_DELL, | ||
192 | ALC272_DELL_ZM1, | ||
191 | ALC662_AUTO, | 193 | ALC662_AUTO, |
192 | ALC662_MODEL_LAST, | 194 | ALC662_MODEL_LAST, |
193 | }; | 195 | }; |
@@ -12976,10 +12978,17 @@ static struct snd_pci_quirk alc269_cfg_tbl[] = { | |||
12976 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1), | 12978 | SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1), |
12977 | SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", | 12979 | SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", |
12978 | ALC269_ASUS_EEEPC_P703), | 12980 | ALC269_ASUS_EEEPC_P703), |
12981 | SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_ASUS_EEEPC_P703), | ||
12982 | SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_ASUS_EEEPC_P703), | ||
12983 | SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_ASUS_EEEPC_P703), | ||
12984 | SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_ASUS_EEEPC_P703), | ||
12985 | SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_ASUS_EEEPC_P703), | ||
12986 | SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_ASUS_EEEPC_P703), | ||
12979 | SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901", | 12987 | SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901", |
12980 | ALC269_ASUS_EEEPC_P901), | 12988 | ALC269_ASUS_EEEPC_P901), |
12981 | SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101", | 12989 | SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101", |
12982 | ALC269_ASUS_EEEPC_P901), | 12990 | ALC269_ASUS_EEEPC_P901), |
12991 | SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_ASUS_EEEPC_P901), | ||
12983 | SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU), | 12992 | SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU), |
12984 | SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK), | 12993 | SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK), |
12985 | {} | 12994 | {} |
@@ -15210,12 +15219,23 @@ static hda_nid_t alc662_dac_nids[4] = { | |||
15210 | 0x02, 0x03, 0x04 | 15219 | 0x02, 0x03, 0x04 |
15211 | }; | 15220 | }; |
15212 | 15221 | ||
15222 | static hda_nid_t alc272_dac_nids[2] = { | ||
15223 | 0x02, 0x03 | ||
15224 | }; | ||
15225 | |||
15213 | static hda_nid_t alc662_adc_nids[1] = { | 15226 | static hda_nid_t alc662_adc_nids[1] = { |
15214 | /* ADC1-2 */ | 15227 | /* ADC1-2 */ |
15215 | 0x09, | 15228 | 0x09, |
15216 | }; | 15229 | }; |
15217 | 15230 | ||
15231 | static hda_nid_t alc272_adc_nids[1] = { | ||
15232 | /* ADC1-2 */ | ||
15233 | 0x08, | ||
15234 | }; | ||
15235 | |||
15218 | static hda_nid_t alc662_capsrc_nids[1] = { 0x22 }; | 15236 | static hda_nid_t alc662_capsrc_nids[1] = { 0x22 }; |
15237 | static hda_nid_t alc272_capsrc_nids[1] = { 0x23 }; | ||
15238 | |||
15219 | 15239 | ||
15220 | /* input MUX */ | 15240 | /* input MUX */ |
15221 | /* FIXME: should be a matrix-type input source selection */ | 15241 | /* FIXME: should be a matrix-type input source selection */ |
@@ -15641,14 +15661,7 @@ static struct hda_verb alc662_init_verbs[] = { | |||
15641 | /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */ | 15661 | /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */ |
15642 | /* Input mixer */ | 15662 | /* Input mixer */ |
15643 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | 15663 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
15644 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
15645 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)}, | ||
15646 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)}, | ||
15647 | |||
15648 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | 15664 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, |
15649 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
15650 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)}, | ||
15651 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)}, | ||
15652 | 15665 | ||
15653 | /* always trun on EAPD */ | 15666 | /* always trun on EAPD */ |
15654 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2}, | 15667 | {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2}, |
@@ -15843,12 +15856,48 @@ static struct hda_verb alc662_ecs_init_verbs[] = { | |||
15843 | {} | 15856 | {} |
15844 | }; | 15857 | }; |
15845 | 15858 | ||
15859 | static struct hda_verb alc272_dell_zm1_init_verbs[] = { | ||
15860 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15861 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15862 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15863 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15864 | {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
15865 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
15866 | {0x21, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */ | ||
15867 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
15868 | {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(9)}, | ||
15869 | {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT}, | ||
15870 | {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT}, | ||
15871 | {} | ||
15872 | }; | ||
15873 | |||
15874 | static struct hda_verb alc272_dell_init_verbs[] = { | ||
15875 | {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15876 | {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15877 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15878 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
15879 | {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
15880 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
15881 | {0x21, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */ | ||
15882 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
15883 | {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(9)}, | ||
15884 | {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT}, | ||
15885 | {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT}, | ||
15886 | {} | ||
15887 | }; | ||
15888 | |||
15846 | static struct snd_kcontrol_new alc662_auto_capture_mixer[] = { | 15889 | static struct snd_kcontrol_new alc662_auto_capture_mixer[] = { |
15847 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT), | 15890 | HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT), |
15848 | HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT), | 15891 | HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT), |
15849 | { } /* end */ | 15892 | { } /* end */ |
15850 | }; | 15893 | }; |
15851 | 15894 | ||
15895 | static struct snd_kcontrol_new alc272_auto_capture_mixer[] = { | ||
15896 | HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT), | ||
15897 | HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT), | ||
15898 | { } /* end */ | ||
15899 | }; | ||
15900 | |||
15852 | static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec) | 15901 | static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec) |
15853 | { | 15902 | { |
15854 | unsigned int present; | 15903 | unsigned int present; |
@@ -16360,6 +16409,8 @@ static const char *alc662_models[ALC662_MODEL_LAST] = { | |||
16360 | 16409 | ||
16361 | static struct snd_pci_quirk alc662_cfg_tbl[] = { | 16410 | static struct snd_pci_quirk alc662_cfg_tbl[] = { |
16362 | SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS), | 16411 | SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS), |
16412 | SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL), | ||
16413 | SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1), | ||
16363 | SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1), | 16414 | SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1), |
16364 | SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3), | 16415 | SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3), |
16365 | SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3), | 16416 | SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3), |
@@ -16372,26 +16423,36 @@ static struct snd_pci_quirk alc662_cfg_tbl[] = { | |||
16372 | SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6), | 16423 | SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6), |
16373 | SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6), | 16424 | SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6), |
16374 | SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2), | 16425 | SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2), |
16426 | SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3), | ||
16427 | SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA), | ||
16428 | SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2), | ||
16375 | SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2), | 16429 | SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2), |
16376 | SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5), | 16430 | SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5), |
16377 | SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6), | 16431 | SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6), |
16378 | SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2), | 16432 | SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2), |
16433 | SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1), | ||
16379 | SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2), | 16434 | SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2), |
16380 | SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2), | 16435 | SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2), |
16381 | SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA), | 16436 | SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA), |
16382 | /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/ | 16437 | /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/ |
16383 | SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3), | 16438 | SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3), |
16384 | SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3), | 16439 | SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3), |
16440 | SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1), | ||
16441 | SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1), | ||
16442 | SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1), | ||
16385 | SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1), | 16443 | SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1), |
16386 | SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2), | 16444 | SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2), |
16387 | SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2), | 16445 | SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2), |
16446 | SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1), | ||
16388 | SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1), | 16447 | SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1), |
16389 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3), | 16448 | SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3), |
16449 | SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1), | ||
16390 | SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1), | 16450 | SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1), |
16391 | SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V), | 16451 | SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V), |
16392 | /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/ | 16452 | /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/ |
16393 | SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1), | 16453 | SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1), |
16394 | SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2), | 16454 | SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2), |
16455 | SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA), | ||
16395 | SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1), | 16456 | SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1), |
16396 | SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4), | 16457 | SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4), |
16397 | SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG), | 16458 | SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG), |
@@ -16403,6 +16464,7 @@ static struct snd_pci_quirk alc662_cfg_tbl[] = { | |||
16403 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L", | 16464 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L", |
16404 | ALC662_3ST_6ch_DIG), | 16465 | ALC662_3ST_6ch_DIG), |
16405 | SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG), | 16466 | SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG), |
16467 | SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA), | ||
16406 | SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E), | 16468 | SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E), |
16407 | SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0", | 16469 | SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0", |
16408 | ALC662_3ST_6ch_DIG), | 16470 | ALC662_3ST_6ch_DIG), |
@@ -16640,6 +16702,36 @@ static struct alc_config_preset alc662_presets[] = { | |||
16640 | .unsol_event = alc663_mode6_unsol_event, | 16702 | .unsol_event = alc663_mode6_unsol_event, |
16641 | .init_hook = alc663_mode6_inithook, | 16703 | .init_hook = alc663_mode6_inithook, |
16642 | }, | 16704 | }, |
16705 | [ALC272_DELL] = { | ||
16706 | .mixers = { alc663_m51va_mixer }, | ||
16707 | .cap_mixer = alc272_auto_capture_mixer, | ||
16708 | .init_verbs = { alc662_init_verbs, alc272_dell_init_verbs }, | ||
16709 | .num_dacs = ARRAY_SIZE(alc272_dac_nids), | ||
16710 | .dac_nids = alc662_dac_nids, | ||
16711 | .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes), | ||
16712 | .adc_nids = alc272_adc_nids, | ||
16713 | .num_adc_nids = ARRAY_SIZE(alc272_adc_nids), | ||
16714 | .capsrc_nids = alc272_capsrc_nids, | ||
16715 | .channel_mode = alc662_3ST_2ch_modes, | ||
16716 | .input_mux = &alc663_m51va_capture_source, | ||
16717 | .unsol_event = alc663_m51va_unsol_event, | ||
16718 | .init_hook = alc663_m51va_inithook, | ||
16719 | }, | ||
16720 | [ALC272_DELL_ZM1] = { | ||
16721 | .mixers = { alc663_m51va_mixer }, | ||
16722 | .cap_mixer = alc662_auto_capture_mixer, | ||
16723 | .init_verbs = { alc662_init_verbs, alc272_dell_zm1_init_verbs }, | ||
16724 | .num_dacs = ARRAY_SIZE(alc272_dac_nids), | ||
16725 | .dac_nids = alc662_dac_nids, | ||
16726 | .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes), | ||
16727 | .adc_nids = alc662_adc_nids, | ||
16728 | .num_adc_nids = ARRAY_SIZE(alc662_adc_nids), | ||
16729 | .capsrc_nids = alc662_capsrc_nids, | ||
16730 | .channel_mode = alc662_3ST_2ch_modes, | ||
16731 | .input_mux = &alc663_m51va_capture_source, | ||
16732 | .unsol_event = alc663_m51va_unsol_event, | ||
16733 | .init_hook = alc663_m51va_inithook, | ||
16734 | }, | ||
16643 | }; | 16735 | }; |
16644 | 16736 | ||
16645 | 16737 | ||
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c index 8042d5398892..173bebf9f51d 100644 --- a/sound/pci/intel8x0.c +++ b/sound/pci/intel8x0.c | |||
@@ -2751,11 +2751,12 @@ static void __devinit intel8x0_measure_ac97_clock(struct intel8x0 *chip) | |||
2751 | if (pos == 0) { | 2751 | if (pos == 0) { |
2752 | snd_printk(KERN_ERR "intel8x0: measure - unreliable DMA position..\n"); | 2752 | snd_printk(KERN_ERR "intel8x0: measure - unreliable DMA position..\n"); |
2753 | __retry: | 2753 | __retry: |
2754 | if (attempt < 2) { | 2754 | if (attempt < 3) { |
2755 | msleep(300); | ||
2755 | attempt++; | 2756 | attempt++; |
2756 | goto __again; | 2757 | goto __again; |
2757 | } | 2758 | } |
2758 | return; | 2759 | goto __end; |
2759 | } | 2760 | } |
2760 | 2761 | ||
2761 | pos /= 4; | 2762 | pos /= 4; |
@@ -2782,6 +2783,7 @@ static void __devinit intel8x0_measure_ac97_clock(struct intel8x0 *chip) | |||
2782 | else if (pos < 47500 || pos > 48500) | 2783 | else if (pos < 47500 || pos > 48500) |
2783 | /* not 48000Hz, tuning the clock.. */ | 2784 | /* not 48000Hz, tuning the clock.. */ |
2784 | chip->ac97_bus->clock = (chip->ac97_bus->clock * 48000) / pos; | 2785 | chip->ac97_bus->clock = (chip->ac97_bus->clock * 48000) / pos; |
2786 | __end: | ||
2785 | printk(KERN_INFO "intel8x0: clocking to %d\n", chip->ac97_bus->clock); | 2787 | printk(KERN_INFO "intel8x0: clocking to %d\n", chip->ac97_bus->clock); |
2786 | snd_ac97_update_power(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 0); | 2788 | snd_ac97_update_power(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 0); |
2787 | } | 2789 | } |
diff --git a/sound/ppc/keywest.c b/sound/ppc/keywest.c index 6ff99ed77516..a5afb2682e7f 100644 --- a/sound/ppc/keywest.c +++ b/sound/ppc/keywest.c | |||
@@ -33,26 +33,25 @@ | |||
33 | static struct pmac_keywest *keywest_ctx; | 33 | static struct pmac_keywest *keywest_ctx; |
34 | 34 | ||
35 | 35 | ||
36 | static int keywest_attach_adapter(struct i2c_adapter *adapter); | ||
37 | static int keywest_detach_client(struct i2c_client *client); | ||
38 | |||
39 | struct i2c_driver keywest_driver = { | ||
40 | .driver = { | ||
41 | .name = "PMac Keywest Audio", | ||
42 | }, | ||
43 | .attach_adapter = &keywest_attach_adapter, | ||
44 | .detach_client = &keywest_detach_client, | ||
45 | }; | ||
46 | |||
47 | |||
48 | #ifndef i2c_device_name | 36 | #ifndef i2c_device_name |
49 | #define i2c_device_name(x) ((x)->name) | 37 | #define i2c_device_name(x) ((x)->name) |
50 | #endif | 38 | #endif |
51 | 39 | ||
40 | static int keywest_probe(struct i2c_client *client, | ||
41 | const struct i2c_device_id *id) | ||
42 | { | ||
43 | i2c_set_clientdata(client, keywest_ctx); | ||
44 | return 0; | ||
45 | } | ||
46 | |||
47 | /* | ||
48 | * This is kind of a hack, best would be to turn powermac to fixed i2c | ||
49 | * bus numbers and declare the sound device as part of platform | ||
50 | * initialization | ||
51 | */ | ||
52 | static int keywest_attach_adapter(struct i2c_adapter *adapter) | 52 | static int keywest_attach_adapter(struct i2c_adapter *adapter) |
53 | { | 53 | { |
54 | int err; | 54 | struct i2c_board_info info; |
55 | struct i2c_client *new_client; | ||
56 | 55 | ||
57 | if (! keywest_ctx) | 56 | if (! keywest_ctx) |
58 | return -EINVAL; | 57 | return -EINVAL; |
@@ -60,46 +59,47 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter) | |||
60 | if (strncmp(i2c_device_name(adapter), "mac-io", 6)) | 59 | if (strncmp(i2c_device_name(adapter), "mac-io", 6)) |
61 | return 0; /* ignored */ | 60 | return 0; /* ignored */ |
62 | 61 | ||
63 | new_client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL); | 62 | memset(&info, 0, sizeof(struct i2c_board_info)); |
64 | if (! new_client) | 63 | strlcpy(info.type, "keywest", I2C_NAME_SIZE); |
65 | return -ENOMEM; | 64 | info.addr = keywest_ctx->addr; |
66 | 65 | keywest_ctx->client = i2c_new_device(adapter, &info); | |
67 | new_client->addr = keywest_ctx->addr; | ||
68 | i2c_set_clientdata(new_client, keywest_ctx); | ||
69 | new_client->adapter = adapter; | ||
70 | new_client->driver = &keywest_driver; | ||
71 | new_client->flags = 0; | ||
72 | |||
73 | strcpy(i2c_device_name(new_client), keywest_ctx->name); | ||
74 | keywest_ctx->client = new_client; | ||
75 | 66 | ||
76 | /* Tell the i2c layer a new client has arrived */ | 67 | /* |
77 | if (i2c_attach_client(new_client)) { | 68 | * Let i2c-core delete that device on driver removal. |
78 | snd_printk(KERN_ERR "tumbler: cannot attach i2c client\n"); | 69 | * This is safe because i2c-core holds the core_lock mutex for us. |
79 | err = -ENODEV; | 70 | */ |
80 | goto __err; | 71 | list_add_tail(&keywest_ctx->client->detected, |
81 | } | 72 | &keywest_ctx->client->driver->clients); |
82 | |||
83 | return 0; | 73 | return 0; |
84 | |||
85 | __err: | ||
86 | kfree(new_client); | ||
87 | keywest_ctx->client = NULL; | ||
88 | return err; | ||
89 | } | 74 | } |
90 | 75 | ||
91 | static int keywest_detach_client(struct i2c_client *client) | 76 | static int keywest_remove(struct i2c_client *client) |
92 | { | 77 | { |
78 | i2c_set_clientdata(client, NULL); | ||
93 | if (! keywest_ctx) | 79 | if (! keywest_ctx) |
94 | return 0; | 80 | return 0; |
95 | if (client == keywest_ctx->client) | 81 | if (client == keywest_ctx->client) |
96 | keywest_ctx->client = NULL; | 82 | keywest_ctx->client = NULL; |
97 | 83 | ||
98 | i2c_detach_client(client); | ||
99 | kfree(client); | ||
100 | return 0; | 84 | return 0; |
101 | } | 85 | } |
102 | 86 | ||
87 | |||
88 | static const struct i2c_device_id keywest_i2c_id[] = { | ||
89 | { "keywest", 0 }, | ||
90 | { } | ||
91 | }; | ||
92 | |||
93 | struct i2c_driver keywest_driver = { | ||
94 | .driver = { | ||
95 | .name = "PMac Keywest Audio", | ||
96 | }, | ||
97 | .attach_adapter = keywest_attach_adapter, | ||
98 | .probe = keywest_probe, | ||
99 | .remove = keywest_remove, | ||
100 | .id_table = keywest_i2c_id, | ||
101 | }; | ||
102 | |||
103 | /* exported */ | 103 | /* exported */ |
104 | void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c) | 104 | void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c) |
105 | { | 105 | { |
diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile index 030d2454725f..f2653803ede8 100644 --- a/sound/soc/codecs/Makefile +++ b/sound/soc/codecs/Makefile | |||
@@ -56,7 +56,6 @@ obj-$(CONFIG_SND_SOC_WM8900) += snd-soc-wm8900.o | |||
56 | obj-$(CONFIG_SND_SOC_WM8903) += snd-soc-wm8903.o | 56 | obj-$(CONFIG_SND_SOC_WM8903) += snd-soc-wm8903.o |
57 | obj-$(CONFIG_SND_SOC_WM8971) += snd-soc-wm8971.o | 57 | obj-$(CONFIG_SND_SOC_WM8971) += snd-soc-wm8971.o |
58 | obj-$(CONFIG_SND_SOC_WM8990) += snd-soc-wm8990.o | 58 | obj-$(CONFIG_SND_SOC_WM8990) += snd-soc-wm8990.o |
59 | obj-$(CONFIG_SND_SOC_WM8991) += snd-soc-wm8991.o | ||
60 | obj-$(CONFIG_SND_SOC_WM9705) += snd-soc-wm9705.o | 59 | obj-$(CONFIG_SND_SOC_WM9705) += snd-soc-wm9705.o |
61 | obj-$(CONFIG_SND_SOC_WM9712) += snd-soc-wm9712.o | 60 | obj-$(CONFIG_SND_SOC_WM9712) += snd-soc-wm9712.o |
62 | obj-$(CONFIG_SND_SOC_WM9713) += snd-soc-wm9713.o | 61 | obj-$(CONFIG_SND_SOC_WM9713) += snd-soc-wm9713.o |
diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c index 442ea6f160fc..9f6be3d31ac0 100644 --- a/sound/soc/codecs/wm8580.c +++ b/sound/soc/codecs/wm8580.c | |||
@@ -268,9 +268,11 @@ static const DECLARE_TLV_DB_SCALE(dac_tlv, -12750, 50, 1); | |||
268 | static int wm8580_out_vu(struct snd_kcontrol *kcontrol, | 268 | static int wm8580_out_vu(struct snd_kcontrol *kcontrol, |
269 | struct snd_ctl_elem_value *ucontrol) | 269 | struct snd_ctl_elem_value *ucontrol) |
270 | { | 270 | { |
271 | struct soc_mixer_control *mc = | ||
272 | (struct soc_mixer_control *)kcontrol->private_value; | ||
271 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); | 273 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
272 | int reg = kcontrol->private_value & 0xff; | 274 | unsigned int reg = mc->reg; |
273 | int reg2 = (kcontrol->private_value >> 24) & 0xff; | 275 | unsigned int reg2 = mc->rreg; |
274 | int ret; | 276 | int ret; |
275 | u16 val; | 277 | u16 val; |
276 | 278 | ||
@@ -292,15 +294,17 @@ static int wm8580_out_vu(struct snd_kcontrol *kcontrol, | |||
292 | return 0; | 294 | return 0; |
293 | } | 295 | } |
294 | 296 | ||
295 | #define SOC_WM8580_OUT_DOUBLE_R_TLV(xname, reg_left, reg_right, shift, max, invert, tlv_array) \ | 297 | #define SOC_WM8580_OUT_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, \ |
298 | xinvert, tlv_array) \ | ||
296 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ | 299 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ |
297 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ | 300 | .access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ |
298 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ | 301 | SNDRV_CTL_ELEM_ACCESS_READWRITE, \ |
299 | .tlv.p = (tlv_array), \ | 302 | .tlv.p = (tlv_array), \ |
300 | .info = snd_soc_info_volsw_2r, \ | 303 | .info = snd_soc_info_volsw_2r, \ |
301 | .get = snd_soc_get_volsw_2r, .put = wm8580_out_vu, \ | 304 | .get = snd_soc_get_volsw_2r, .put = wm8580_out_vu, \ |
302 | .private_value = (reg_left) | ((shift) << 8) | \ | 305 | .private_value = (unsigned long)&(struct soc_mixer_control) \ |
303 | ((max) << 12) | ((invert) << 20) | ((reg_right) << 24) } | 306 | {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ |
307 | .max = xmax, .invert = xinvert} } | ||
304 | 308 | ||
305 | static const struct snd_kcontrol_new wm8580_snd_controls[] = { | 309 | static const struct snd_kcontrol_new wm8580_snd_controls[] = { |
306 | SOC_WM8580_OUT_DOUBLE_R_TLV("DAC1 Playback Volume", | 310 | SOC_WM8580_OUT_DOUBLE_R_TLV("DAC1 Playback Volume", |
@@ -522,7 +526,7 @@ static int wm8580_set_dai_pll(struct snd_soc_dai *codec_dai, | |||
522 | reg = wm8580_read(codec, WM8580_PLLA4 + offset); | 526 | reg = wm8580_read(codec, WM8580_PLLA4 + offset); |
523 | reg &= ~0x3f; | 527 | reg &= ~0x3f; |
524 | reg |= pll_div.prescale | pll_div.postscale << 1 | | 528 | reg |= pll_div.prescale | pll_div.postscale << 1 | |
525 | pll_div.freqmode << 4; | 529 | pll_div.freqmode << 3; |
526 | 530 | ||
527 | wm8580_write(codec, WM8580_PLLA4 + offset, reg); | 531 | wm8580_write(codec, WM8580_PLLA4 + offset, reg); |
528 | 532 | ||
diff --git a/sound/soc/codecs/wm9705.c b/sound/soc/codecs/wm9705.c index 6e23a81dba78..c2d1a7a18fa3 100644 --- a/sound/soc/codecs/wm9705.c +++ b/sound/soc/codecs/wm9705.c | |||
@@ -318,7 +318,7 @@ static int wm9705_reset(struct snd_soc_codec *codec) | |||
318 | } | 318 | } |
319 | 319 | ||
320 | #ifdef CONFIG_PM | 320 | #ifdef CONFIG_PM |
321 | static int wm9705_soc_suspend(struct platform_device *pdev) | 321 | static int wm9705_soc_suspend(struct platform_device *pdev, pm_message_t msg) |
322 | { | 322 | { |
323 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 323 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
324 | struct snd_soc_codec *codec = socdev->card->codec; | 324 | struct snd_soc_codec *codec = socdev->card->codec; |
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index a6d1178ce128..91ef17992de5 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jarkko.nikula@nokia.com> | 6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or | 8 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 9 | * modify it under the terms of the GNU General Public License |
@@ -417,6 +417,6 @@ static void __exit n810_soc_exit(void) | |||
417 | module_init(n810_soc_init); | 417 | module_init(n810_soc_init); |
418 | module_exit(n810_soc_exit); | 418 | module_exit(n810_soc_exit); |
419 | 419 | ||
420 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>"); | 420 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); |
421 | MODULE_DESCRIPTION("ALSA SoC Nokia N810"); | 421 | MODULE_DESCRIPTION("ALSA SoC Nokia N810"); |
422 | MODULE_LICENSE("GPL"); | 422 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-mcbsp.c b/sound/soc/omap/omap-mcbsp.c index 90f4df7fd906..912614283848 100644 --- a/sound/soc/omap/omap-mcbsp.c +++ b/sound/soc/omap/omap-mcbsp.c | |||
@@ -3,7 +3,8 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jarkko.nikula@nokia.com> | 6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
7 | * | 8 | * |
8 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
@@ -532,6 +533,6 @@ static void __exit snd_omap_mcbsp_exit(void) | |||
532 | } | 533 | } |
533 | module_exit(snd_omap_mcbsp_exit); | 534 | module_exit(snd_omap_mcbsp_exit); |
534 | 535 | ||
535 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>"); | 536 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); |
536 | MODULE_DESCRIPTION("OMAP I2S SoC Interface"); | 537 | MODULE_DESCRIPTION("OMAP I2S SoC Interface"); |
537 | MODULE_LICENSE("GPL"); | 538 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-mcbsp.h b/sound/soc/omap/omap-mcbsp.h index df7ad13ba73d..c8147aace813 100644 --- a/sound/soc/omap/omap-mcbsp.h +++ b/sound/soc/omap/omap-mcbsp.h | |||
@@ -3,7 +3,8 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jarkko.nikula@nokia.com> | 6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
7 | * | 8 | * |
8 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
diff --git a/sound/soc/omap/omap-pcm.c b/sound/soc/omap/omap-pcm.c index 1bdbb0427183..07cf7f46b584 100644 --- a/sound/soc/omap/omap-pcm.c +++ b/sound/soc/omap/omap-pcm.c | |||
@@ -3,7 +3,8 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jarkko.nikula@nokia.com> | 6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
7 | * | 8 | * |
8 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
@@ -367,6 +368,6 @@ static void __exit omap_soc_platform_exit(void) | |||
367 | } | 368 | } |
368 | module_exit(omap_soc_platform_exit); | 369 | module_exit(omap_soc_platform_exit); |
369 | 370 | ||
370 | MODULE_AUTHOR("Jarkko Nikula <jarkko.nikula@nokia.com>"); | 371 | MODULE_AUTHOR("Jarkko Nikula <jhnikula@gmail.com>"); |
371 | MODULE_DESCRIPTION("OMAP PCM DMA module"); | 372 | MODULE_DESCRIPTION("OMAP PCM DMA module"); |
372 | MODULE_LICENSE("GPL"); | 373 | MODULE_LICENSE("GPL"); |
diff --git a/sound/soc/omap/omap-pcm.h b/sound/soc/omap/omap-pcm.h index e4369bdfd77d..8d9d26916b05 100644 --- a/sound/soc/omap/omap-pcm.h +++ b/sound/soc/omap/omap-pcm.h | |||
@@ -3,7 +3,8 @@ | |||
3 | * | 3 | * |
4 | * Copyright (C) 2008 Nokia Corporation | 4 | * Copyright (C) 2008 Nokia Corporation |
5 | * | 5 | * |
6 | * Contact: Jarkko Nikula <jarkko.nikula@nokia.com> | 6 | * Contact: Jarkko Nikula <jhnikula@gmail.com> |
7 | * Peter Ujfalusi <peter.ujfalusi@nokia.com> | ||
7 | * | 8 | * |
8 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
9 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
diff --git a/sound/soc/pxa/palm27x.c b/sound/soc/pxa/palm27x.c index 48a73f64500b..44fcc4e01e08 100644 --- a/sound/soc/pxa/palm27x.c +++ b/sound/soc/pxa/palm27x.c | |||
@@ -200,7 +200,7 @@ static struct snd_soc_device palm27x_snd_devdata = { | |||
200 | 200 | ||
201 | static struct platform_device *palm27x_snd_device; | 201 | static struct platform_device *palm27x_snd_device; |
202 | 202 | ||
203 | static int __init palm27x_asoc_init(void) | 203 | static int palm27x_asoc_probe(struct platform_device *pdev) |
204 | { | 204 | { |
205 | int ret; | 205 | int ret; |
206 | 206 | ||
@@ -208,6 +208,10 @@ static int __init palm27x_asoc_init(void) | |||
208 | machine_is_palmld())) | 208 | machine_is_palmld())) |
209 | return -ENODEV; | 209 | return -ENODEV; |
210 | 210 | ||
211 | if (pdev->dev.platform_data) | ||
212 | palm27x_ep_gpio = ((struct palm27x_asoc_info *) | ||
213 | (pdev->dev.platform_data))->jack_gpio; | ||
214 | |||
211 | ret = gpio_request(palm27x_ep_gpio, "Headphone Jack"); | 215 | ret = gpio_request(palm27x_ep_gpio, "Headphone Jack"); |
212 | if (ret) | 216 | if (ret) |
213 | return ret; | 217 | return ret; |
@@ -245,16 +249,31 @@ err_alloc: | |||
245 | return ret; | 249 | return ret; |
246 | } | 250 | } |
247 | 251 | ||
248 | static void __exit palm27x_asoc_exit(void) | 252 | static int __devexit palm27x_asoc_remove(struct platform_device *pdev) |
249 | { | 253 | { |
250 | free_irq(gpio_to_irq(palm27x_ep_gpio), NULL); | 254 | free_irq(gpio_to_irq(palm27x_ep_gpio), NULL); |
251 | gpio_free(palm27x_ep_gpio); | 255 | gpio_free(palm27x_ep_gpio); |
252 | platform_device_unregister(palm27x_snd_device); | 256 | platform_device_unregister(palm27x_snd_device); |
257 | return 0; | ||
253 | } | 258 | } |
254 | 259 | ||
255 | void __init palm27x_asoc_set_pdata(struct palm27x_asoc_info *data) | 260 | static struct platform_driver palm27x_wm9712_driver = { |
261 | .probe = palm27x_asoc_probe, | ||
262 | .remove = __devexit_p(palm27x_asoc_remove), | ||
263 | .driver = { | ||
264 | .name = "palm27x-asoc", | ||
265 | .owner = THIS_MODULE, | ||
266 | }, | ||
267 | }; | ||
268 | |||
269 | static int __init palm27x_asoc_init(void) | ||
270 | { | ||
271 | return platform_driver_register(&palm27x_wm9712_driver); | ||
272 | } | ||
273 | |||
274 | static void __exit palm27x_asoc_exit(void) | ||
256 | { | 275 | { |
257 | palm27x_ep_gpio = data->jack_gpio; | 276 | platform_driver_unregister(&palm27x_wm9712_driver); |
258 | } | 277 | } |
259 | 278 | ||
260 | module_init(palm27x_asoc_init); | 279 | module_init(palm27x_asoc_init); |
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index de2254475d52..286be31545df 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c | |||
@@ -280,12 +280,33 @@ static int pxa_ssp_resume(struct snd_soc_dai *cpu_dai) | |||
280 | * ssp_set_clkdiv - set SSP clock divider | 280 | * ssp_set_clkdiv - set SSP clock divider |
281 | * @div: serial clock rate divider | 281 | * @div: serial clock rate divider |
282 | */ | 282 | */ |
283 | static void ssp_set_scr(struct ssp_dev *dev, u32 div) | 283 | static void ssp_set_scr(struct ssp_device *ssp, u32 div) |
284 | { | 284 | { |
285 | struct ssp_device *ssp = dev->ssp; | 285 | u32 sscr0 = ssp_read_reg(ssp, SSCR0); |
286 | u32 sscr0 = ssp_read_reg(dev->ssp, SSCR0) & ~SSCR0_SCR; | 286 | |
287 | if (cpu_is_pxa25x() && ssp->type == PXA25x_SSP) { | ||
288 | sscr0 &= ~0x0000ff00; | ||
289 | sscr0 |= ((div - 2)/2) << 8; /* 2..512 */ | ||
290 | } else { | ||
291 | sscr0 &= ~0x000fff00; | ||
292 | sscr0 |= (div - 1) << 8; /* 1..4096 */ | ||
293 | } | ||
294 | ssp_write_reg(ssp, SSCR0, sscr0); | ||
295 | } | ||
296 | |||
297 | /** | ||
298 | * ssp_get_clkdiv - get SSP clock divider | ||
299 | */ | ||
300 | static u32 ssp_get_scr(struct ssp_device *ssp) | ||
301 | { | ||
302 | u32 sscr0 = ssp_read_reg(ssp, SSCR0); | ||
303 | u32 div; | ||
287 | 304 | ||
288 | ssp_write_reg(ssp, SSCR0, (sscr0 | SSCR0_SerClkDiv(div))); | 305 | if (cpu_is_pxa25x() && ssp->type == PXA25x_SSP) |
306 | div = ((sscr0 >> 8) & 0xff) * 2 + 2; | ||
307 | else | ||
308 | div = ((sscr0 >> 8) & 0xfff) + 1; | ||
309 | return div; | ||
289 | } | 310 | } |
290 | 311 | ||
291 | /* | 312 | /* |
@@ -326,7 +347,7 @@ static int pxa_ssp_set_dai_sysclk(struct snd_soc_dai *cpu_dai, | |||
326 | break; | 347 | break; |
327 | case PXA_SSP_CLK_AUDIO: | 348 | case PXA_SSP_CLK_AUDIO: |
328 | priv->sysclk = 0; | 349 | priv->sysclk = 0; |
329 | ssp_set_scr(&priv->dev, 1); | 350 | ssp_set_scr(ssp, 1); |
330 | sscr0 |= SSCR0_ACS; | 351 | sscr0 |= SSCR0_ACS; |
331 | break; | 352 | break; |
332 | default: | 353 | default: |
@@ -387,7 +408,7 @@ static int pxa_ssp_set_dai_clkdiv(struct snd_soc_dai *cpu_dai, | |||
387 | ssp_write_reg(ssp, SSACD, val); | 408 | ssp_write_reg(ssp, SSACD, val); |
388 | break; | 409 | break; |
389 | case PXA_SSP_DIV_SCR: | 410 | case PXA_SSP_DIV_SCR: |
390 | ssp_set_scr(&priv->dev, div); | 411 | ssp_set_scr(ssp, div); |
391 | break; | 412 | break; |
392 | default: | 413 | default: |
393 | return -ENODEV; | 414 | return -ENODEV; |
@@ -674,8 +695,7 @@ static int pxa_ssp_hw_params(struct snd_pcm_substream *substream, | |||
674 | case SND_SOC_DAIFMT_I2S: | 695 | case SND_SOC_DAIFMT_I2S: |
675 | sspsp = ssp_read_reg(ssp, SSPSP); | 696 | sspsp = ssp_read_reg(ssp, SSPSP); |
676 | 697 | ||
677 | if (((sscr0 & SSCR0_SCR) == SSCR0_SerClkDiv(4)) && | 698 | if ((ssp_get_scr(ssp) == 4) && (width == 16)) { |
678 | (width == 16)) { | ||
679 | /* This is a special case where the bitclk is 64fs | 699 | /* This is a special case where the bitclk is 64fs |
680 | * and we're not dealing with 2*32 bits of audio | 700 | * and we're not dealing with 2*32 bits of audio |
681 | * samples. | 701 | * samples. |
diff --git a/sound/soc/s3c24xx/s3c-i2s-v2.c b/sound/soc/s3c24xx/s3c-i2s-v2.c index 689ffcd17e1f..ab680aac3fcb 100644 --- a/sound/soc/s3c24xx/s3c-i2s-v2.c +++ b/sound/soc/s3c24xx/s3c-i2s-v2.c | |||
@@ -636,5 +636,6 @@ int s3c_i2sv2_register_dai(struct snd_soc_dai *dai) | |||
636 | 636 | ||
637 | return snd_soc_register_dai(dai); | 637 | return snd_soc_register_dai(dai); |
638 | } | 638 | } |
639 | |||
640 | EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai); | 639 | EXPORT_SYMBOL_GPL(s3c_i2sv2_register_dai); |
640 | |||
641 | MODULE_LICENSE("GPL"); | ||
diff --git a/sound/usb/caiaq/audio.c b/sound/usb/caiaq/audio.c index 3f45c0fe61ab..b13ce767ac72 100644 --- a/sound/usb/caiaq/audio.c +++ b/sound/usb/caiaq/audio.c | |||
@@ -195,11 +195,14 @@ static int snd_usb_caiaq_pcm_prepare(struct snd_pcm_substream *substream) | |||
195 | 195 | ||
196 | debug("%s(%p)\n", __func__, substream); | 196 | debug("%s(%p)\n", __func__, substream); |
197 | 197 | ||
198 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 198 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
199 | dev->period_out_count[index] = BYTES_PER_SAMPLE + 1; | ||
199 | dev->audio_out_buf_pos[index] = BYTES_PER_SAMPLE + 1; | 200 | dev->audio_out_buf_pos[index] = BYTES_PER_SAMPLE + 1; |
200 | else | 201 | } else { |
202 | dev->period_in_count[index] = BYTES_PER_SAMPLE; | ||
201 | dev->audio_in_buf_pos[index] = BYTES_PER_SAMPLE; | 203 | dev->audio_in_buf_pos[index] = BYTES_PER_SAMPLE; |
202 | 204 | } | |
205 | |||
203 | if (dev->streaming) | 206 | if (dev->streaming) |
204 | return 0; | 207 | return 0; |
205 | 208 | ||
@@ -300,8 +303,7 @@ static void check_for_elapsed_periods(struct snd_usb_caiaqdev *dev, | |||
300 | if (!sub) | 303 | if (!sub) |
301 | continue; | 304 | continue; |
302 | 305 | ||
303 | pb = frames_to_bytes(sub->runtime, | 306 | pb = snd_pcm_lib_period_bytes(sub); |
304 | sub->runtime->period_size); | ||
305 | cnt = (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) ? | 307 | cnt = (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) ? |
306 | &dev->period_out_count[stream] : | 308 | &dev->period_out_count[stream] : |
307 | &dev->period_in_count[stream]; | 309 | &dev->period_in_count[stream]; |
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c index 6d517705da0e..515de1cd2a3e 100644 --- a/sound/usb/caiaq/device.c +++ b/sound/usb/caiaq/device.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include "input.h" | 35 | #include "input.h" |
36 | 36 | ||
37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); | 37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); |
38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.13"); | 38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.14"); |
39 | MODULE_LICENSE("GPL"); | 39 | MODULE_LICENSE("GPL"); |
40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," | 40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," |
41 | "{Native Instruments, RigKontrol3}," | 41 | "{Native Instruments, RigKontrol3}," |
diff --git a/sound/usb/usx2y/us122l.c b/sound/usb/usx2y/us122l.c index 012ff1f6f8af..a5aae9d67f31 100644 --- a/sound/usb/usx2y/us122l.c +++ b/sound/usb/usx2y/us122l.c | |||
@@ -474,6 +474,14 @@ static bool us122l_create_card(struct snd_card *card) | |||
474 | return true; | 474 | return true; |
475 | } | 475 | } |
476 | 476 | ||
477 | static void snd_us122l_free(struct snd_card *card) | ||
478 | { | ||
479 | struct us122l *us122l = US122L(card); | ||
480 | int index = us122l->chip.index; | ||
481 | if (index >= 0 && index < SNDRV_CARDS) | ||
482 | snd_us122l_card_used[index] = 0; | ||
483 | } | ||
484 | |||
477 | static int usx2y_create_card(struct usb_device *device, struct snd_card **cardp) | 485 | static int usx2y_create_card(struct usb_device *device, struct snd_card **cardp) |
478 | { | 486 | { |
479 | int dev; | 487 | int dev; |
@@ -490,7 +498,7 @@ static int usx2y_create_card(struct usb_device *device, struct snd_card **cardp) | |||
490 | if (err < 0) | 498 | if (err < 0) |
491 | return err; | 499 | return err; |
492 | snd_us122l_card_used[US122L(card)->chip.index = dev] = 1; | 500 | snd_us122l_card_used[US122L(card)->chip.index = dev] = 1; |
493 | 501 | card->private_free = snd_us122l_free; | |
494 | US122L(card)->chip.dev = device; | 502 | US122L(card)->chip.dev = device; |
495 | US122L(card)->chip.card = card; | 503 | US122L(card)->chip.card = card; |
496 | mutex_init(&US122L(card)->mutex); | 504 | mutex_init(&US122L(card)->mutex); |
@@ -584,7 +592,7 @@ static void snd_us122l_disconnect(struct usb_interface *intf) | |||
584 | } | 592 | } |
585 | 593 | ||
586 | usb_put_intf(intf); | 594 | usb_put_intf(intf); |
587 | usb_put_dev(US122L(card)->chip.dev); | 595 | usb_put_dev(us122l->chip.dev); |
588 | 596 | ||
589 | while (atomic_read(&us122l->mmap_count)) | 597 | while (atomic_read(&us122l->mmap_count)) |
590 | msleep(500); | 598 | msleep(500); |
diff --git a/sound/usb/usx2y/usb_stream.c b/sound/usb/usx2y/usb_stream.c index 24393dafcb6e..12ae0340adc0 100644 --- a/sound/usb/usx2y/usb_stream.c +++ b/sound/usb/usx2y/usb_stream.c | |||
@@ -33,32 +33,26 @@ static unsigned usb_stream_next_packet_size(struct usb_stream_kernel *sk) | |||
33 | static void playback_prep_freqn(struct usb_stream_kernel *sk, struct urb *urb) | 33 | static void playback_prep_freqn(struct usb_stream_kernel *sk, struct urb *urb) |
34 | { | 34 | { |
35 | struct usb_stream *s = sk->s; | 35 | struct usb_stream *s = sk->s; |
36 | unsigned l = 0; | 36 | int pack, lb = 0; |
37 | int pack; | 37 | |
38 | 38 | for (pack = 0; pack < sk->n_o_ps; pack++) { | |
39 | urb->iso_frame_desc[0].offset = 0; | 39 | int l = usb_stream_next_packet_size(sk); |
40 | urb->iso_frame_desc[0].length = usb_stream_next_packet_size(sk); | 40 | if (s->idle_outsize + lb + l > s->period_size) |
41 | sk->out_phase = sk->out_phase_peeked; | ||
42 | urb->transfer_buffer_length = urb->iso_frame_desc[0].length; | ||
43 | |||
44 | for (pack = 1; pack < sk->n_o_ps; pack++) { | ||
45 | l = usb_stream_next_packet_size(sk); | ||
46 | if (s->idle_outsize + urb->transfer_buffer_length + l > | ||
47 | s->period_size) | ||
48 | goto check; | 41 | goto check; |
49 | 42 | ||
50 | sk->out_phase = sk->out_phase_peeked; | 43 | sk->out_phase = sk->out_phase_peeked; |
51 | urb->iso_frame_desc[pack].offset = urb->transfer_buffer_length; | 44 | urb->iso_frame_desc[pack].offset = lb; |
52 | urb->iso_frame_desc[pack].length = l; | 45 | urb->iso_frame_desc[pack].length = l; |
53 | urb->transfer_buffer_length += l; | 46 | lb += l; |
54 | } | 47 | } |
55 | snd_printdd(KERN_DEBUG "%i\n", urb->transfer_buffer_length); | 48 | snd_printdd(KERN_DEBUG "%i\n", lb); |
56 | 49 | ||
57 | check: | 50 | check: |
58 | urb->number_of_packets = pack; | 51 | urb->number_of_packets = pack; |
59 | s->idle_outsize += urb->transfer_buffer_length - s->period_size; | 52 | urb->transfer_buffer_length = lb; |
53 | s->idle_outsize += lb - s->period_size; | ||
60 | snd_printdd(KERN_DEBUG "idle=%i ul=%i ps=%i\n", s->idle_outsize, | 54 | snd_printdd(KERN_DEBUG "idle=%i ul=%i ps=%i\n", s->idle_outsize, |
61 | urb->transfer_buffer_length, s->period_size); | 55 | lb, s->period_size); |
62 | } | 56 | } |
63 | 57 | ||
64 | static void init_pipe_urbs(struct usb_stream_kernel *sk, unsigned use_packsize, | 58 | static void init_pipe_urbs(struct usb_stream_kernel *sk, unsigned use_packsize, |
@@ -282,21 +276,20 @@ static int usb_stream_prepare_playback(struct usb_stream_kernel *sk, | |||
282 | struct usb_stream *s = sk->s; | 276 | struct usb_stream *s = sk->s; |
283 | struct urb *io; | 277 | struct urb *io; |
284 | struct usb_iso_packet_descriptor *id, *od; | 278 | struct usb_iso_packet_descriptor *id, *od; |
285 | int p, l = 0; | 279 | int p = 0, lb = 0, l = 0; |
286 | 280 | ||
287 | io = sk->idle_outurb; | 281 | io = sk->idle_outurb; |
288 | od = io->iso_frame_desc; | 282 | od = io->iso_frame_desc; |
289 | io->transfer_buffer_length = 0; | ||
290 | 283 | ||
291 | for (p = 0; s->sync_packet < 0; ++p, ++s->sync_packet) { | 284 | for (; s->sync_packet < 0; ++p, ++s->sync_packet) { |
292 | struct urb *ii = sk->completed_inurb; | 285 | struct urb *ii = sk->completed_inurb; |
293 | id = ii->iso_frame_desc + | 286 | id = ii->iso_frame_desc + |
294 | ii->number_of_packets + s->sync_packet; | 287 | ii->number_of_packets + s->sync_packet; |
295 | l = id->actual_length; | 288 | l = id->actual_length; |
296 | 289 | ||
297 | od[p].length = l; | 290 | od[p].length = l; |
298 | od[p].offset = io->transfer_buffer_length; | 291 | od[p].offset = lb; |
299 | io->transfer_buffer_length += l; | 292 | lb += l; |
300 | } | 293 | } |
301 | 294 | ||
302 | for (; | 295 | for (; |
@@ -304,38 +297,38 @@ static int usb_stream_prepare_playback(struct usb_stream_kernel *sk, | |||
304 | ++p, ++s->sync_packet) { | 297 | ++p, ++s->sync_packet) { |
305 | l = inurb->iso_frame_desc[s->sync_packet].actual_length; | 298 | l = inurb->iso_frame_desc[s->sync_packet].actual_length; |
306 | 299 | ||
307 | if (s->idle_outsize + io->transfer_buffer_length + l > | 300 | if (s->idle_outsize + lb + l > s->period_size) |
308 | s->period_size) | ||
309 | goto check_ok; | 301 | goto check_ok; |
310 | 302 | ||
311 | od[p].length = l; | 303 | od[p].length = l; |
312 | od[p].offset = io->transfer_buffer_length; | 304 | od[p].offset = lb; |
313 | io->transfer_buffer_length += l; | 305 | lb += l; |
314 | } | 306 | } |
315 | 307 | ||
316 | check_ok: | 308 | check_ok: |
317 | s->sync_packet -= inurb->number_of_packets; | 309 | s->sync_packet -= inurb->number_of_packets; |
318 | if (s->sync_packet < -2 || s->sync_packet > 0) { | 310 | if (unlikely(s->sync_packet < -2 || s->sync_packet > 0)) { |
319 | snd_printk(KERN_WARNING "invalid sync_packet = %i;" | 311 | snd_printk(KERN_WARNING "invalid sync_packet = %i;" |
320 | " p=%i nop=%i %i %x %x %x > %x\n", | 312 | " p=%i nop=%i %i %x %x %x > %x\n", |
321 | s->sync_packet, p, inurb->number_of_packets, | 313 | s->sync_packet, p, inurb->number_of_packets, |
322 | s->idle_outsize + io->transfer_buffer_length + l, | 314 | s->idle_outsize + lb + l, |
323 | s->idle_outsize, io->transfer_buffer_length, l, | 315 | s->idle_outsize, lb, l, |
324 | s->period_size); | 316 | s->period_size); |
325 | return -1; | 317 | return -1; |
326 | } | 318 | } |
327 | if (io->transfer_buffer_length % s->cfg.frame_size) { | 319 | if (unlikely(lb % s->cfg.frame_size)) { |
328 | snd_printk(KERN_WARNING"invalid outsize = %i\n", | 320 | snd_printk(KERN_WARNING"invalid outsize = %i\n", |
329 | io->transfer_buffer_length); | 321 | lb); |
330 | return -1; | 322 | return -1; |
331 | } | 323 | } |
332 | s->idle_outsize += io->transfer_buffer_length - s->period_size; | 324 | s->idle_outsize += lb - s->period_size; |
333 | io->number_of_packets = p; | 325 | io->number_of_packets = p; |
334 | if (s->idle_outsize > 0) { | 326 | io->transfer_buffer_length = lb; |
335 | snd_printk(KERN_WARNING "idle=%i\n", s->idle_outsize); | 327 | if (s->idle_outsize <= 0) |
336 | return -1; | 328 | return 0; |
337 | } | 329 | |
338 | return 0; | 330 | snd_printk(KERN_WARNING "idle=%i\n", s->idle_outsize); |
331 | return -1; | ||
339 | } | 332 | } |
340 | 333 | ||
341 | static void prepare_inurb(int number_of_packets, struct urb *iu) | 334 | static void prepare_inurb(int number_of_packets, struct urb *iu) |
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 605697e9c4dd..1ecbe2391c8b 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -920,6 +920,7 @@ int __kvm_set_memory_region(struct kvm *kvm, | |||
920 | int r; | 920 | int r; |
921 | gfn_t base_gfn; | 921 | gfn_t base_gfn; |
922 | unsigned long npages; | 922 | unsigned long npages; |
923 | int largepages; | ||
923 | unsigned long i; | 924 | unsigned long i; |
924 | struct kvm_memory_slot *memslot; | 925 | struct kvm_memory_slot *memslot; |
925 | struct kvm_memory_slot old, new; | 926 | struct kvm_memory_slot old, new; |
@@ -960,7 +961,7 @@ int __kvm_set_memory_region(struct kvm *kvm, | |||
960 | for (i = 0; i < KVM_MEMORY_SLOTS; ++i) { | 961 | for (i = 0; i < KVM_MEMORY_SLOTS; ++i) { |
961 | struct kvm_memory_slot *s = &kvm->memslots[i]; | 962 | struct kvm_memory_slot *s = &kvm->memslots[i]; |
962 | 963 | ||
963 | if (s == memslot) | 964 | if (s == memslot || !s->npages) |
964 | continue; | 965 | continue; |
965 | if (!((base_gfn + npages <= s->base_gfn) || | 966 | if (!((base_gfn + npages <= s->base_gfn) || |
966 | (base_gfn >= s->base_gfn + s->npages))) | 967 | (base_gfn >= s->base_gfn + s->npages))) |
@@ -995,11 +996,8 @@ int __kvm_set_memory_region(struct kvm *kvm, | |||
995 | new.userspace_addr = 0; | 996 | new.userspace_addr = 0; |
996 | } | 997 | } |
997 | if (npages && !new.lpage_info) { | 998 | if (npages && !new.lpage_info) { |
998 | int largepages = npages / KVM_PAGES_PER_HPAGE; | 999 | largepages = 1 + (base_gfn + npages - 1) / KVM_PAGES_PER_HPAGE; |
999 | if (npages % KVM_PAGES_PER_HPAGE) | 1000 | largepages -= base_gfn / KVM_PAGES_PER_HPAGE; |
1000 | largepages++; | ||
1001 | if (base_gfn % KVM_PAGES_PER_HPAGE) | ||
1002 | largepages++; | ||
1003 | 1001 | ||
1004 | new.lpage_info = vmalloc(largepages * sizeof(*new.lpage_info)); | 1002 | new.lpage_info = vmalloc(largepages * sizeof(*new.lpage_info)); |
1005 | 1003 | ||
@@ -1985,6 +1983,7 @@ static long kvm_dev_ioctl_check_extension_generic(long arg) | |||
1985 | switch (arg) { | 1983 | switch (arg) { |
1986 | case KVM_CAP_USER_MEMORY: | 1984 | case KVM_CAP_USER_MEMORY: |
1987 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: | 1985 | case KVM_CAP_DESTROY_MEMORY_REGION_WORKS: |
1986 | case KVM_CAP_JOIN_MEMORY_REGIONS_WORKS: | ||
1988 | return 1; | 1987 | return 1; |
1989 | #ifdef CONFIG_HAVE_KVM_IRQCHIP | 1988 | #ifdef CONFIG_HAVE_KVM_IRQCHIP |
1990 | case KVM_CAP_IRQ_ROUTING: | 1989 | case KVM_CAP_IRQ_ROUTING: |