diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-02-15 13:36:30 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-02-15 13:36:30 -0500 |
commit | 52833e897fd8c6f62b3e5e27291fa9bc803f7460 (patch) | |
tree | cfe90047ee6c7402674a29ec7258319142b96ff1 | |
parent | 8d042218b075de3cdbe066198515b3521553746e (diff) | |
parent | 4ee29f6a52158cea526b16a44ae38643946103ec (diff) |
Merge branch 'linus_origin' into hotfixes
271 files changed, 5317 insertions, 3432 deletions
diff --git a/Documentation/00-INDEX b/Documentation/00-INDEX index 8d556707bb68..30b327a116ea 100644 --- a/Documentation/00-INDEX +++ b/Documentation/00-INDEX | |||
@@ -109,6 +109,8 @@ cpu-hotplug.txt | |||
109 | - document describing CPU hotplug support in the Linux kernel. | 109 | - document describing CPU hotplug support in the Linux kernel. |
110 | cpu-load.txt | 110 | cpu-load.txt |
111 | - document describing how CPU load statistics are collected. | 111 | - document describing how CPU load statistics are collected. |
112 | cpuidle/ | ||
113 | - info on CPU_IDLE, CPU idle state management subsystem. | ||
112 | cpusets.txt | 114 | cpusets.txt |
113 | - documents the cpusets feature; assign CPUs and Mem to a set of tasks. | 115 | - documents the cpusets feature; assign CPUs and Mem to a set of tasks. |
114 | cputopology.txt | 116 | cputopology.txt |
diff --git a/Documentation/cpuidle/core.txt b/Documentation/cpuidle/core.txt new file mode 100644 index 000000000000..63ecc5dc9d8a --- /dev/null +++ b/Documentation/cpuidle/core.txt | |||
@@ -0,0 +1,23 @@ | |||
1 | |||
2 | Supporting multiple CPU idle levels in kernel | ||
3 | |||
4 | cpuidle | ||
5 | |||
6 | General Information: | ||
7 | |||
8 | Various CPUs today support multiple idle levels that are differentiated | ||
9 | by varying exit latencies and power consumption during idle. | ||
10 | cpuidle is a generic in-kernel infrastructure that separates | ||
11 | idle policy (governor) from idle mechanism (driver) and provides a | ||
12 | standardized infrastructure to support independent development of | ||
13 | governors and drivers. | ||
14 | |||
15 | cpuidle resides under drivers/cpuidle. | ||
16 | |||
17 | Boot options: | ||
18 | "cpuidle_sysfs_switch" | ||
19 | enables current_governor interface in /sys/devices/system/cpu/cpuidle/, | ||
20 | which can be used to switch governors at run time. This boot option | ||
21 | is meant for developer testing only. In normal usage, kernel picks the | ||
22 | best governor based on governor ratings. | ||
23 | SEE ALSO: sysfs.txt in this directory. | ||
diff --git a/Documentation/cpuidle/driver.txt b/Documentation/cpuidle/driver.txt new file mode 100644 index 000000000000..7a9e09ece931 --- /dev/null +++ b/Documentation/cpuidle/driver.txt | |||
@@ -0,0 +1,31 @@ | |||
1 | |||
2 | |||
3 | Supporting multiple CPU idle levels in kernel | ||
4 | |||
5 | cpuidle drivers | ||
6 | |||
7 | |||
8 | |||
9 | |||
10 | cpuidle driver hooks into the cpuidle infrastructure and handles the | ||
11 | architecture/platform dependent part of CPU idle states. Driver | ||
12 | provides the platform idle state detection capability and also | ||
13 | has mechanisms in place to support actual entry-exit into CPU idle states. | ||
14 | |||
15 | cpuidle driver initializes the cpuidle_device structure for each CPU device | ||
16 | and registers with cpuidle using cpuidle_register_device. | ||
17 | |||
18 | It can also support the dynamic changes (like battery <-> AC), by using | ||
19 | cpuidle_pause_and_lock, cpuidle_disable_device and cpuidle_enable_device, | ||
20 | cpuidle_resume_and_unlock. | ||
21 | |||
22 | Interfaces: | ||
23 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); | ||
24 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); | ||
25 | extern int cpuidle_register_device(struct cpuidle_device *dev); | ||
26 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); | ||
27 | |||
28 | extern void cpuidle_pause_and_lock(void); | ||
29 | extern void cpuidle_resume_and_unlock(void); | ||
30 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | ||
31 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | ||
diff --git a/Documentation/cpuidle/governor.txt b/Documentation/cpuidle/governor.txt new file mode 100644 index 000000000000..12c6bd50c9f6 --- /dev/null +++ b/Documentation/cpuidle/governor.txt | |||
@@ -0,0 +1,29 @@ | |||
1 | |||
2 | |||
3 | |||
4 | Supporting multiple CPU idle levels in kernel | ||
5 | |||
6 | cpuidle governors | ||
7 | |||
8 | |||
9 | |||
10 | |||
11 | cpuidle governor is policy routine that decides what idle state to enter at | ||
12 | any given time. cpuidle core uses different callbacks to the governor. | ||
13 | |||
14 | * enable() to enable governor for a particular device | ||
15 | * disable() to disable governor for a particular device | ||
16 | * select() to select an idle state to enter | ||
17 | * reflect() called after returning from the idle state, which can be used | ||
18 | by the governor for some record keeping. | ||
19 | |||
20 | More than one governor can be registered at the same time and | ||
21 | users can switch between drivers using /sysfs interface (when enabled). | ||
22 | More than one governor part is supported for developers to easily experiment | ||
23 | with different governors. By default, most optimal governor based on your | ||
24 | kernel configuration and platform will be selected by cpuidle. | ||
25 | |||
26 | Interfaces: | ||
27 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); | ||
28 | extern void cpuidle_unregister_governor(struct cpuidle_governor *gov); | ||
29 | struct cpuidle_governor | ||
diff --git a/Documentation/cpuidle/sysfs.txt b/Documentation/cpuidle/sysfs.txt new file mode 100644 index 000000000000..50d7b1642759 --- /dev/null +++ b/Documentation/cpuidle/sysfs.txt | |||
@@ -0,0 +1,79 @@ | |||
1 | |||
2 | |||
3 | Supporting multiple CPU idle levels in kernel | ||
4 | |||
5 | cpuidle sysfs | ||
6 | |||
7 | System global cpuidle related information and tunables are under | ||
8 | /sys/devices/system/cpu/cpuidle | ||
9 | |||
10 | The current interfaces in this directory has self-explanatory names: | ||
11 | * current_driver | ||
12 | * current_governor_ro | ||
13 | |||
14 | With cpuidle_sysfs_switch boot option (meant for developer testing) | ||
15 | following objects are visible instead. | ||
16 | * current_driver | ||
17 | * available_governors | ||
18 | * current_governor | ||
19 | In this case users can switch the governor at run time by writing | ||
20 | to current_governor. | ||
21 | |||
22 | |||
23 | Per logical CPU specific cpuidle information are under | ||
24 | /sys/devices/system/cpu/cpuX/cpuidle | ||
25 | for each online cpu X | ||
26 | |||
27 | -------------------------------------------------------------------------------- | ||
28 | # ls -lR /sys/devices/system/cpu/cpu0/cpuidle/ | ||
29 | /sys/devices/system/cpu/cpu0/cpuidle/: | ||
30 | total 0 | ||
31 | drwxr-xr-x 2 root root 0 Feb 8 10:42 state0 | ||
32 | drwxr-xr-x 2 root root 0 Feb 8 10:42 state1 | ||
33 | drwxr-xr-x 2 root root 0 Feb 8 10:42 state2 | ||
34 | drwxr-xr-x 2 root root 0 Feb 8 10:42 state3 | ||
35 | |||
36 | /sys/devices/system/cpu/cpu0/cpuidle/state0: | ||
37 | total 0 | ||
38 | -r--r--r-- 1 root root 4096 Feb 8 10:42 desc | ||
39 | -r--r--r-- 1 root root 4096 Feb 8 10:42 latency | ||
40 | -r--r--r-- 1 root root 4096 Feb 8 10:42 name | ||
41 | -r--r--r-- 1 root root 4096 Feb 8 10:42 power | ||
42 | -r--r--r-- 1 root root 4096 Feb 8 10:42 time | ||
43 | -r--r--r-- 1 root root 4096 Feb 8 10:42 usage | ||
44 | |||
45 | /sys/devices/system/cpu/cpu0/cpuidle/state1: | ||
46 | total 0 | ||
47 | -r--r--r-- 1 root root 4096 Feb 8 10:42 desc | ||
48 | -r--r--r-- 1 root root 4096 Feb 8 10:42 latency | ||
49 | -r--r--r-- 1 root root 4096 Feb 8 10:42 name | ||
50 | -r--r--r-- 1 root root 4096 Feb 8 10:42 power | ||
51 | -r--r--r-- 1 root root 4096 Feb 8 10:42 time | ||
52 | -r--r--r-- 1 root root 4096 Feb 8 10:42 usage | ||
53 | |||
54 | /sys/devices/system/cpu/cpu0/cpuidle/state2: | ||
55 | total 0 | ||
56 | -r--r--r-- 1 root root 4096 Feb 8 10:42 desc | ||
57 | -r--r--r-- 1 root root 4096 Feb 8 10:42 latency | ||
58 | -r--r--r-- 1 root root 4096 Feb 8 10:42 name | ||
59 | -r--r--r-- 1 root root 4096 Feb 8 10:42 power | ||
60 | -r--r--r-- 1 root root 4096 Feb 8 10:42 time | ||
61 | -r--r--r-- 1 root root 4096 Feb 8 10:42 usage | ||
62 | |||
63 | /sys/devices/system/cpu/cpu0/cpuidle/state3: | ||
64 | total 0 | ||
65 | -r--r--r-- 1 root root 4096 Feb 8 10:42 desc | ||
66 | -r--r--r-- 1 root root 4096 Feb 8 10:42 latency | ||
67 | -r--r--r-- 1 root root 4096 Feb 8 10:42 name | ||
68 | -r--r--r-- 1 root root 4096 Feb 8 10:42 power | ||
69 | -r--r--r-- 1 root root 4096 Feb 8 10:42 time | ||
70 | -r--r--r-- 1 root root 4096 Feb 8 10:42 usage | ||
71 | -------------------------------------------------------------------------------- | ||
72 | |||
73 | |||
74 | * desc : Small description about the idle state (string) | ||
75 | * latency : Latency to exit out of this idle state (in microseconds) | ||
76 | * name : Name of the idle state (string) | ||
77 | * power : Power consumed while in this idle state (in milliwatts) | ||
78 | * time : Total time spent in this idle state (in microseconds) | ||
79 | * usage : Number of times this state was entered (count) | ||
diff --git a/MAINTAINERS b/MAINTAINERS index 6680ec44779e..1d2edb491b34 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -1255,8 +1255,8 @@ W: http://linux-net.osdl.org/index.php/DCCP | |||
1255 | S: Maintained | 1255 | S: Maintained |
1256 | 1256 | ||
1257 | DECnet NETWORK LAYER | 1257 | DECnet NETWORK LAYER |
1258 | P: Patrick Caulfield | 1258 | P: Christine Caulfield |
1259 | M: patrick@tykepenguin.com | 1259 | M: christine.caulfield@googlemail.com |
1260 | W: http://linux-decnet.sourceforge.net | 1260 | W: http://linux-decnet.sourceforge.net |
1261 | L: linux-decnet-user@lists.sourceforge.net | 1261 | L: linux-decnet-user@lists.sourceforge.net |
1262 | S: Maintained | 1262 | S: Maintained |
@@ -1318,8 +1318,8 @@ L: linux-kernel@vger.kernel.org | |||
1318 | S: Maintained | 1318 | S: Maintained |
1319 | 1319 | ||
1320 | DISTRIBUTED LOCK MANAGER | 1320 | DISTRIBUTED LOCK MANAGER |
1321 | P: Patrick Caulfield | 1321 | P: Christine Caulfield |
1322 | M: pcaulfie@redhat.com | 1322 | M: ccaulfie@redhat.com |
1323 | P: David Teigland | 1323 | P: David Teigland |
1324 | M: teigland@redhat.com | 1324 | M: teigland@redhat.com |
1325 | L: cluster-devel@redhat.com | 1325 | L: cluster-devel@redhat.com |
@@ -1616,6 +1616,7 @@ S: Maintained | |||
1616 | FILESYSTEMS (VFS and infrastructure) | 1616 | FILESYSTEMS (VFS and infrastructure) |
1617 | P: Alexander Viro | 1617 | P: Alexander Viro |
1618 | M: viro@zeniv.linux.org.uk | 1618 | M: viro@zeniv.linux.org.uk |
1619 | L: linux-fsdevel@vger.kernel.org | ||
1619 | S: Maintained | 1620 | S: Maintained |
1620 | 1621 | ||
1621 | FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>) | 1622 | FIREWIRE SUBSYSTEM (drivers/firewire, <linux/firewire*.h>) |
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index 973c5c3705e3..8c71daf94a59 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c | |||
@@ -259,8 +259,8 @@ osf_statfs(char __user *path, struct osf_statfs __user *buffer, unsigned long bu | |||
259 | 259 | ||
260 | retval = user_path_walk(path, &nd); | 260 | retval = user_path_walk(path, &nd); |
261 | if (!retval) { | 261 | if (!retval) { |
262 | retval = do_osf_statfs(nd.dentry, buffer, bufsiz); | 262 | retval = do_osf_statfs(nd.path.dentry, buffer, bufsiz); |
263 | path_release(&nd); | 263 | path_put(&nd.path); |
264 | } | 264 | } |
265 | return retval; | 265 | return retval; |
266 | } | 266 | } |
diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c index 58717cb19707..56a67ab698c7 100644 --- a/arch/blackfin/kernel/traps.c +++ b/arch/blackfin/kernel/traps.c | |||
@@ -126,15 +126,13 @@ static void decode_address(char *buf, unsigned long address) | |||
126 | struct vm_area_struct *vma = vml->vma; | 126 | struct vm_area_struct *vma = vml->vma; |
127 | 127 | ||
128 | if (address >= vma->vm_start && address < vma->vm_end) { | 128 | if (address >= vma->vm_start && address < vma->vm_end) { |
129 | char _tmpbuf[256]; | ||
129 | char *name = p->comm; | 130 | char *name = p->comm; |
130 | struct file *file = vma->vm_file; | 131 | struct file *file = vma->vm_file; |
131 | if (file) { | 132 | |
132 | char _tmpbuf[256]; | 133 | if (file) |
133 | name = d_path(file->f_dentry, | 134 | name = d_path(&file->f_path, _tmpbuf, |
134 | file->f_vfsmnt, | 135 | sizeof(_tmpbuf)); |
135 | _tmpbuf, | ||
136 | sizeof(_tmpbuf)); | ||
137 | } | ||
138 | 136 | ||
139 | /* FLAT does not have its text aligned to the start of | 137 | /* FLAT does not have its text aligned to the start of |
140 | * the map while FDPIC ELF does ... | 138 | * the map while FDPIC ELF does ... |
diff --git a/arch/cris/arch-v10/lib/memset.c b/arch/cris/arch-v10/lib/memset.c index 42c1101043a3..c94ea9b3ec29 100644 --- a/arch/cris/arch-v10/lib/memset.c +++ b/arch/cris/arch-v10/lib/memset.c | |||
@@ -1,252 +1,259 @@ | |||
1 | /*#************************************************************************#*/ | 1 | /* A memset for CRIS. |
2 | /*#-------------------------------------------------------------------------*/ | 2 | Copyright (C) 1999-2005 Axis Communications. |
3 | /*# */ | 3 | All rights reserved. |
4 | /*# FUNCTION NAME: memset() */ | 4 | |
5 | /*# */ | 5 | Redistribution and use in source and binary forms, with or without |
6 | /*# PARAMETERS: void* dst; Destination address. */ | 6 | modification, are permitted provided that the following conditions |
7 | /*# int c; Value of byte to write. */ | 7 | are met: |
8 | /*# int len; Number of bytes to write. */ | 8 | |
9 | /*# */ | 9 | 1. Redistributions of source code must retain the above copyright |
10 | /*# RETURNS: dst. */ | 10 | notice, this list of conditions and the following disclaimer. |
11 | /*# */ | 11 | |
12 | /*# DESCRIPTION: Sets the memory dst of length len bytes to c, as standard. */ | 12 | 2. Neither the name of Axis Communications nor the names of its |
13 | /*# Framework taken from memcpy. This routine is */ | 13 | contributors may be used to endorse or promote products derived |
14 | /*# very sensitive to compiler changes in register allocation. */ | 14 | from this software without specific prior written permission. |
15 | /*# Should really be rewritten to avoid this problem. */ | 15 | |
16 | /*# */ | 16 | THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS |
17 | /*#-------------------------------------------------------------------------*/ | 17 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 | /*# */ | 18 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 | /*# HISTORY */ | 19 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS |
20 | /*# */ | 20 | COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
21 | /*# DATE NAME CHANGES */ | 21 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
22 | /*# ---- ---- ------- */ | 22 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
23 | /*# 990713 HP Tired of watching this function (or */ | 23 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
24 | /*# really, the nonoptimized generic */ | 24 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
25 | /*# implementation) take up 90% of simulator */ | 25 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
26 | /*# output. Measurements needed. */ | 26 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 | /*# */ | 27 | POSSIBILITY OF SUCH DAMAGE. */ |
28 | /*#-------------------------------------------------------------------------*/ | 28 | |
29 | 29 | /* FIXME: This file should really only be used for reference, as the | |
30 | #include <linux/types.h> | 30 | result is somewhat depending on gcc generating what we expect rather |
31 | 31 | than what we describe. An assembly file should be used instead. */ | |
32 | /* No, there's no macro saying 12*4, since it is "hard" to get it into | 32 | |
33 | the asm in a good way. Thus better to expose the problem everywhere. | 33 | /* Note the multiple occurrence of the expression "12*4", including the |
34 | */ | 34 | asm. It is hard to get it into the asm in a good way. Thus better to |
35 | 35 | expose the problem everywhere: no macro. */ | |
36 | /* Assuming 1 cycle per dword written or read (ok, not really true), and | 36 | |
37 | one per instruction, then 43+3*(n/48-1) <= 24+24*(n/48-1) | 37 | /* Assuming one cycle per dword written or read (ok, not really true; the |
38 | so n >= 45.7; n >= 0.9; we win on the first full 48-byte block to set. */ | 38 | world is not ideal), and one cycle per instruction, then 43+3*(n/48-1) |
39 | 39 | <= 24+24*(n/48-1) so n >= 45.7; n >= 0.9; we win on the first full | |
40 | #define ZERO_BLOCK_SIZE (1*12*4) | 40 | 48-byte block to set. */ |
41 | 41 | ||
42 | void *memset(void *pdst, | 42 | #define MEMSET_BY_BLOCK_THRESHOLD (1 * 48) |
43 | int c, | 43 | |
44 | size_t plen) | 44 | /* No name ambiguities in this file. */ |
45 | __asm__ (".syntax no_register_prefix"); | ||
46 | |||
47 | void *memset(void *pdst, int c, unsigned int plen) | ||
45 | { | 48 | { |
46 | /* Ok. Now we want the parameters put in special registers. | 49 | /* Now we want the parameters in special registers. Make sure the |
47 | Make sure the compiler is able to make something useful of this. */ | 50 | compiler does something usable with this. */ |
48 | 51 | ||
49 | register char *return_dst __asm__ ("r10") = pdst; | 52 | register char *return_dst __asm__ ("r10") = pdst; |
50 | register int n __asm__ ("r12") = plen; | 53 | register int n __asm__ ("r12") = plen; |
51 | register int lc __asm__ ("r11") = c; | 54 | register int lc __asm__ ("r11") = c; |
52 | 55 | ||
53 | /* Most apps use memset sanely. Only those memsetting about 3..4 | 56 | /* Most apps use memset sanely. Memsetting about 3..4 bytes or less get |
54 | bytes or less get penalized compared to the generic implementation | 57 | penalized here compared to the generic implementation. */ |
55 | - and that's not really sane use. */ | ||
56 | 58 | ||
57 | /* Ugh. This is fragile at best. Check with newer GCC releases, if | 59 | /* This is fragile performancewise at best. Check with newer GCC |
58 | they compile cascaded "x |= x << 8" sanely! */ | 60 | releases, if they compile cascaded "x |= x << 8" to sane code. */ |
59 | __asm__("movu.b %0,$r13\n\t" | 61 | __asm__("movu.b %0,r13 \n\ |
60 | "lslq 8,$r13\n\t" | 62 | lslq 8,r13 \n\ |
61 | "move.b %0,$r13\n\t" | 63 | move.b %0,r13 \n\ |
62 | "move.d $r13,%0\n\t" | 64 | move.d r13,%0 \n\ |
63 | "lslq 16,$r13\n\t" | 65 | lslq 16,r13 \n\ |
64 | "or.d $r13,%0" | 66 | or.d r13,%0" |
65 | : "=r" (lc) : "0" (lc) : "r13"); | 67 | : "=r" (lc) /* Inputs. */ |
68 | : "0" (lc) /* Outputs. */ | ||
69 | : "r13"); /* Trash. */ | ||
66 | 70 | ||
67 | { | 71 | { |
68 | register char *dst __asm__ ("r13") = pdst; | 72 | register char *dst __asm__ ("r13") = pdst; |
69 | 73 | ||
70 | /* This is NONPORTABLE, but since this whole routine is */ | 74 | if (((unsigned long) pdst & 3) != 0 |
71 | /* grossly nonportable that doesn't matter. */ | 75 | /* Oops! n = 0 must be a valid call, regardless of alignment. */ |
76 | && n >= 3) | ||
77 | { | ||
78 | if ((unsigned long) dst & 1) | ||
79 | { | ||
80 | *dst = (char) lc; | ||
81 | n--; | ||
82 | dst++; | ||
83 | } | ||
72 | 84 | ||
73 | if (((unsigned long) pdst & 3) != 0 | 85 | if ((unsigned long) dst & 2) |
74 | /* Oops! n=0 must be a legal call, regardless of alignment. */ | 86 | { |
75 | && n >= 3) | 87 | *(short *) dst = lc; |
76 | { | 88 | n -= 2; |
77 | if ((unsigned long)dst & 1) | 89 | dst += 2; |
78 | { | 90 | } |
79 | *dst = (char) lc; | 91 | } |
80 | n--; | ||
81 | dst++; | ||
82 | } | ||
83 | |||
84 | if ((unsigned long)dst & 2) | ||
85 | { | ||
86 | *(short *)dst = lc; | ||
87 | n -= 2; | ||
88 | dst += 2; | ||
89 | } | ||
90 | } | ||
91 | 92 | ||
92 | /* Now the fun part. For the threshold value of this, check the equation | 93 | /* Decide which setting method to use. */ |
93 | above. */ | 94 | if (n >= MEMSET_BY_BLOCK_THRESHOLD) |
94 | /* Decide which copying method to use. */ | 95 | { |
95 | if (n >= ZERO_BLOCK_SIZE) | 96 | /* It is not optimal to tell the compiler about clobbering any |
96 | { | 97 | registers; that will move the saving/restoring of those registers |
97 | /* For large copies we use 'movem' */ | 98 | to the function prologue/epilogue, and make non-block sizes |
98 | 99 | suboptimal. */ | |
99 | /* It is not optimal to tell the compiler about clobbering any | 100 | __asm__ volatile |
100 | registers; that will move the saving/restoring of those registers | 101 | ("\ |
101 | to the function prologue/epilogue, and make non-movem sizes | 102 | ;; GCC does promise correct register allocations, but let's \n\ |
102 | suboptimal. | 103 | ;; make sure it keeps its promises. \n\ |
103 | 104 | .ifnc %0-%1-%4,$r13-$r12-$r11 \n\ | |
104 | This method is not foolproof; it assumes that the "asm reg" | 105 | .error \"GCC reg alloc bug: %0-%1-%4 != $r13-$r12-$r11\" \n\ |
105 | declarations at the beginning of the function really are used | 106 | .endif \n\ |
106 | here (beware: they may be moved to temporary registers). | 107 | \n\ |
107 | This way, we do not have to save/move the registers around into | 108 | ;; Save the registers we'll clobber in the movem process \n\ |
108 | temporaries; we can safely use them straight away. | 109 | ;; on the stack. Don't mention them to gcc, it will only be \n\ |
109 | 110 | ;; upset. \n\ | |
110 | If you want to check that the allocation was right; then | 111 | subq 11*4,sp \n\ |
111 | check the equalities in the first comment. It should say | 112 | movem r10,[sp] \n\ |
112 | "r13=r13, r12=r12, r11=r11" */ | ||
113 | __asm__ volatile ("\n\ | ||
114 | ;; Check that the following is true (same register names on \n\ | ||
115 | ;; both sides of equal sign, as in r8=r8): \n\ | ||
116 | ;; %0=r13, %1=r12, %4=r11 \n\ | ||
117 | ;; \n\ | ||
118 | ;; Save the registers we'll clobber in the movem process \n\ | ||
119 | ;; on the stack. Don't mention them to gcc, it will only be \n\ | ||
120 | ;; upset. \n\ | ||
121 | subq 11*4,$sp \n\ | ||
122 | movem $r10,[$sp] \n\ | ||
123 | \n\ | 113 | \n\ |
124 | move.d $r11,$r0 \n\ | 114 | move.d r11,r0 \n\ |
125 | move.d $r11,$r1 \n\ | 115 | move.d r11,r1 \n\ |
126 | move.d $r11,$r2 \n\ | 116 | move.d r11,r2 \n\ |
127 | move.d $r11,$r3 \n\ | 117 | move.d r11,r3 \n\ |
128 | move.d $r11,$r4 \n\ | 118 | move.d r11,r4 \n\ |
129 | move.d $r11,$r5 \n\ | 119 | move.d r11,r5 \n\ |
130 | move.d $r11,$r6 \n\ | 120 | move.d r11,r6 \n\ |
131 | move.d $r11,$r7 \n\ | 121 | move.d r11,r7 \n\ |
132 | move.d $r11,$r8 \n\ | 122 | move.d r11,r8 \n\ |
133 | move.d $r11,$r9 \n\ | 123 | move.d r11,r9 \n\ |
134 | move.d $r11,$r10 \n\ | 124 | move.d r11,r10 \n\ |
135 | \n\ | 125 | \n\ |
136 | ;; Now we've got this: \n\ | 126 | ;; Now we've got this: \n\ |
137 | ;; r13 - dst \n\ | 127 | ;; r13 - dst \n\ |
138 | ;; r12 - n \n\ | 128 | ;; r12 - n \n\ |
139 | \n\ | 129 | \n\ |
140 | ;; Update n for the first loop \n\ | 130 | ;; Update n for the first loop \n\ |
141 | subq 12*4,$r12 \n\ | 131 | subq 12*4,r12 \n\ |
142 | 0: \n\ | 132 | 0: \n\ |
143 | subq 12*4,$r12 \n\ | 133 | " |
144 | bge 0b \n\ | 134 | #ifdef __arch_common_v10_v32 |
145 | movem $r11,[$r13+] \n\ | 135 | /* Cater to branch offset difference between v32 and v10. We |
136 | assume the branch below has an 8-bit offset. */ | ||
137 | " setf\n" | ||
138 | #endif | ||
139 | " subq 12*4,r12 \n\ | ||
140 | bge 0b \n\ | ||
141 | movem r11,[r13+] \n\ | ||
146 | \n\ | 142 | \n\ |
147 | addq 12*4,$r12 ;; compensate for last loop underflowing n \n\ | 143 | ;; Compensate for last loop underflowing n. \n\ |
144 | addq 12*4,r12 \n\ | ||
148 | \n\ | 145 | \n\ |
149 | ;; Restore registers from stack \n\ | 146 | ;; Restore registers from stack. \n\ |
150 | movem [$sp+],$r10" | 147 | movem [sp+],r10" |
151 | 148 | ||
152 | /* Outputs */ : "=r" (dst), "=r" (n) | 149 | /* Outputs. */ |
153 | /* Inputs */ : "0" (dst), "1" (n), "r" (lc)); | 150 | : "=r" (dst), "=r" (n) |
154 | 151 | ||
155 | } | 152 | /* Inputs. */ |
153 | : "0" (dst), "1" (n), "r" (lc)); | ||
154 | } | ||
155 | |||
156 | /* An ad-hoc unroll, used for 4*12-1..16 bytes. */ | ||
157 | while (n >= 16) | ||
158 | { | ||
159 | *(long *) dst = lc; dst += 4; | ||
160 | *(long *) dst = lc; dst += 4; | ||
161 | *(long *) dst = lc; dst += 4; | ||
162 | *(long *) dst = lc; dst += 4; | ||
163 | n -= 16; | ||
164 | } | ||
156 | 165 | ||
157 | /* Either we directly starts copying, using dword copying | ||
158 | in a loop, or we copy as much as possible with 'movem' | ||
159 | and then the last block (<44 bytes) is copied here. | ||
160 | This will work since 'movem' will have updated src,dst,n. */ | ||
161 | |||
162 | while ( n >= 16 ) | ||
163 | { | ||
164 | *((long*)dst)++ = lc; | ||
165 | *((long*)dst)++ = lc; | ||
166 | *((long*)dst)++ = lc; | ||
167 | *((long*)dst)++ = lc; | ||
168 | n -= 16; | ||
169 | } | ||
170 | |||
171 | /* A switch() is definitely the fastest although it takes a LOT of code. | ||
172 | * Particularly if you inline code this. | ||
173 | */ | ||
174 | switch (n) | 166 | switch (n) |
175 | { | 167 | { |
176 | case 0: | 168 | case 0: |
177 | break; | 169 | break; |
170 | |||
178 | case 1: | 171 | case 1: |
179 | *(char*)dst = (char) lc; | 172 | *dst = (char) lc; |
180 | break; | 173 | break; |
174 | |||
181 | case 2: | 175 | case 2: |
182 | *(short*)dst = (short) lc; | 176 | *(short *) dst = (short) lc; |
183 | break; | 177 | break; |
178 | |||
184 | case 3: | 179 | case 3: |
185 | *((short*)dst)++ = (short) lc; | 180 | *(short *) dst = (short) lc; dst += 2; |
186 | *(char*)dst = (char) lc; | 181 | *dst = (char) lc; |
187 | break; | 182 | break; |
183 | |||
188 | case 4: | 184 | case 4: |
189 | *((long*)dst)++ = lc; | 185 | *(long *) dst = lc; |
190 | break; | 186 | break; |
187 | |||
191 | case 5: | 188 | case 5: |
192 | *((long*)dst)++ = lc; | 189 | *(long *) dst = lc; dst += 4; |
193 | *(char*)dst = (char) lc; | 190 | *dst = (char) lc; |
194 | break; | 191 | break; |
192 | |||
195 | case 6: | 193 | case 6: |
196 | *((long*)dst)++ = lc; | 194 | *(long *) dst = lc; dst += 4; |
197 | *(short*)dst = (short) lc; | 195 | *(short *) dst = (short) lc; |
198 | break; | 196 | break; |
197 | |||
199 | case 7: | 198 | case 7: |
200 | *((long*)dst)++ = lc; | 199 | *(long *) dst = lc; dst += 4; |
201 | *((short*)dst)++ = (short) lc; | 200 | *(short *) dst = (short) lc; dst += 2; |
202 | *(char*)dst = (char) lc; | 201 | *dst = (char) lc; |
203 | break; | 202 | break; |
203 | |||
204 | case 8: | 204 | case 8: |
205 | *((long*)dst)++ = lc; | 205 | *(long *) dst = lc; dst += 4; |
206 | *((long*)dst)++ = lc; | 206 | *(long *) dst = lc; |
207 | break; | 207 | break; |
208 | |||
208 | case 9: | 209 | case 9: |
209 | *((long*)dst)++ = lc; | 210 | *(long *) dst = lc; dst += 4; |
210 | *((long*)dst)++ = lc; | 211 | *(long *) dst = lc; dst += 4; |
211 | *(char*)dst = (char) lc; | 212 | *dst = (char) lc; |
212 | break; | 213 | break; |
214 | |||
213 | case 10: | 215 | case 10: |
214 | *((long*)dst)++ = lc; | 216 | *(long *) dst = lc; dst += 4; |
215 | *((long*)dst)++ = lc; | 217 | *(long *) dst = lc; dst += 4; |
216 | *(short*)dst = (short) lc; | 218 | *(short *) dst = (short) lc; |
217 | break; | 219 | break; |
220 | |||
218 | case 11: | 221 | case 11: |
219 | *((long*)dst)++ = lc; | 222 | *(long *) dst = lc; dst += 4; |
220 | *((long*)dst)++ = lc; | 223 | *(long *) dst = lc; dst += 4; |
221 | *((short*)dst)++ = (short) lc; | 224 | *(short *) dst = (short) lc; dst += 2; |
222 | *(char*)dst = (char) lc; | 225 | *dst = (char) lc; |
223 | break; | 226 | break; |
227 | |||
224 | case 12: | 228 | case 12: |
225 | *((long*)dst)++ = lc; | 229 | *(long *) dst = lc; dst += 4; |
226 | *((long*)dst)++ = lc; | 230 | *(long *) dst = lc; dst += 4; |
227 | *((long*)dst)++ = lc; | 231 | *(long *) dst = lc; |
228 | break; | 232 | break; |
233 | |||
229 | case 13: | 234 | case 13: |
230 | *((long*)dst)++ = lc; | 235 | *(long *) dst = lc; dst += 4; |
231 | *((long*)dst)++ = lc; | 236 | *(long *) dst = lc; dst += 4; |
232 | *((long*)dst)++ = lc; | 237 | *(long *) dst = lc; dst += 4; |
233 | *(char*)dst = (char) lc; | 238 | *dst = (char) lc; |
234 | break; | 239 | break; |
240 | |||
235 | case 14: | 241 | case 14: |
236 | *((long*)dst)++ = lc; | 242 | *(long *) dst = lc; dst += 4; |
237 | *((long*)dst)++ = lc; | 243 | *(long *) dst = lc; dst += 4; |
238 | *((long*)dst)++ = lc; | 244 | *(long *) dst = lc; dst += 4; |
239 | *(short*)dst = (short) lc; | 245 | *(short *) dst = (short) lc; |
240 | break; | 246 | break; |
247 | |||
241 | case 15: | 248 | case 15: |
242 | *((long*)dst)++ = lc; | 249 | *(long *) dst = lc; dst += 4; |
243 | *((long*)dst)++ = lc; | 250 | *(long *) dst = lc; dst += 4; |
244 | *((long*)dst)++ = lc; | 251 | *(long *) dst = lc; dst += 4; |
245 | *((short*)dst)++ = (short) lc; | 252 | *(short *) dst = (short) lc; dst += 2; |
246 | *(char*)dst = (char) lc; | 253 | *dst = (char) lc; |
247 | break; | 254 | break; |
248 | } | 255 | } |
249 | } | 256 | } |
250 | 257 | ||
251 | return return_dst; /* destination pointer. */ | 258 | return return_dst; |
252 | } /* memset() */ | 259 | } |
diff --git a/arch/cris/arch-v32/lib/memset.c b/arch/cris/arch-v32/lib/memset.c index ffca1214674e..c94ea9b3ec29 100644 --- a/arch/cris/arch-v32/lib/memset.c +++ b/arch/cris/arch-v32/lib/memset.c | |||
@@ -1,253 +1,259 @@ | |||
1 | /*#************************************************************************#*/ | 1 | /* A memset for CRIS. |
2 | /*#-------------------------------------------------------------------------*/ | 2 | Copyright (C) 1999-2005 Axis Communications. |
3 | /*# */ | 3 | All rights reserved. |
4 | /*# FUNCTION NAME: memset() */ | 4 | |
5 | /*# */ | 5 | Redistribution and use in source and binary forms, with or without |
6 | /*# PARAMETERS: void* dst; Destination address. */ | 6 | modification, are permitted provided that the following conditions |
7 | /*# int c; Value of byte to write. */ | 7 | are met: |
8 | /*# int len; Number of bytes to write. */ | 8 | |
9 | /*# */ | 9 | 1. Redistributions of source code must retain the above copyright |
10 | /*# RETURNS: dst. */ | 10 | notice, this list of conditions and the following disclaimer. |
11 | /*# */ | 11 | |
12 | /*# DESCRIPTION: Sets the memory dst of length len bytes to c, as standard. */ | 12 | 2. Neither the name of Axis Communications nor the names of its |
13 | /*# Framework taken from memcpy. This routine is */ | 13 | contributors may be used to endorse or promote products derived |
14 | /*# very sensitive to compiler changes in register allocation. */ | 14 | from this software without specific prior written permission. |
15 | /*# Should really be rewritten to avoid this problem. */ | 15 | |
16 | /*# */ | 16 | THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS |
17 | /*#-------------------------------------------------------------------------*/ | 17 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 | /*# */ | 18 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 | /*# HISTORY */ | 19 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS |
20 | /*# */ | 20 | COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
21 | /*# DATE NAME CHANGES */ | 21 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
22 | /*# ---- ---- ------- */ | 22 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
23 | /*# 990713 HP Tired of watching this function (or */ | 23 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
24 | /*# really, the nonoptimized generic */ | 24 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
25 | /*# implementation) take up 90% of simulator */ | 25 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
26 | /*# output. Measurements needed. */ | 26 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 | /*# */ | 27 | POSSIBILITY OF SUCH DAMAGE. */ |
28 | /*#-------------------------------------------------------------------------*/ | 28 | |
29 | 29 | /* FIXME: This file should really only be used for reference, as the | |
30 | #include <linux/types.h> | 30 | result is somewhat depending on gcc generating what we expect rather |
31 | 31 | than what we describe. An assembly file should be used instead. */ | |
32 | /* No, there's no macro saying 12*4, since it is "hard" to get it into | 32 | |
33 | the asm in a good way. Thus better to expose the problem everywhere. | 33 | /* Note the multiple occurrence of the expression "12*4", including the |
34 | */ | 34 | asm. It is hard to get it into the asm in a good way. Thus better to |
35 | 35 | expose the problem everywhere: no macro. */ | |
36 | /* Assuming 1 cycle per dword written or read (ok, not really true), and | 36 | |
37 | one per instruction, then 43+3*(n/48-1) <= 24+24*(n/48-1) | 37 | /* Assuming one cycle per dword written or read (ok, not really true; the |
38 | so n >= 45.7; n >= 0.9; we win on the first full 48-byte block to set. */ | 38 | world is not ideal), and one cycle per instruction, then 43+3*(n/48-1) |
39 | 39 | <= 24+24*(n/48-1) so n >= 45.7; n >= 0.9; we win on the first full | |
40 | #define ZERO_BLOCK_SIZE (1*12*4) | 40 | 48-byte block to set. */ |
41 | 41 | ||
42 | void *memset(void *pdst, | 42 | #define MEMSET_BY_BLOCK_THRESHOLD (1 * 48) |
43 | int c, | 43 | |
44 | size_t plen) | 44 | /* No name ambiguities in this file. */ |
45 | __asm__ (".syntax no_register_prefix"); | ||
46 | |||
47 | void *memset(void *pdst, int c, unsigned int plen) | ||
45 | { | 48 | { |
46 | /* Ok. Now we want the parameters put in special registers. | 49 | /* Now we want the parameters in special registers. Make sure the |
47 | Make sure the compiler is able to make something useful of this. */ | 50 | compiler does something usable with this. */ |
48 | 51 | ||
49 | register char *return_dst __asm__ ("r10") = pdst; | 52 | register char *return_dst __asm__ ("r10") = pdst; |
50 | register int n __asm__ ("r12") = plen; | 53 | register int n __asm__ ("r12") = plen; |
51 | register int lc __asm__ ("r11") = c; | 54 | register int lc __asm__ ("r11") = c; |
52 | 55 | ||
53 | /* Most apps use memset sanely. Only those memsetting about 3..4 | 56 | /* Most apps use memset sanely. Memsetting about 3..4 bytes or less get |
54 | bytes or less get penalized compared to the generic implementation | 57 | penalized here compared to the generic implementation. */ |
55 | - and that's not really sane use. */ | ||
56 | 58 | ||
57 | /* Ugh. This is fragile at best. Check with newer GCC releases, if | 59 | /* This is fragile performancewise at best. Check with newer GCC |
58 | they compile cascaded "x |= x << 8" sanely! */ | 60 | releases, if they compile cascaded "x |= x << 8" to sane code. */ |
59 | __asm__("movu.b %0,$r13 \n\ | 61 | __asm__("movu.b %0,r13 \n\ |
60 | lslq 8,$r13 \n\ | 62 | lslq 8,r13 \n\ |
61 | move.b %0,$r13 \n\ | 63 | move.b %0,r13 \n\ |
62 | move.d $r13,%0 \n\ | 64 | move.d r13,%0 \n\ |
63 | lslq 16,$r13 \n\ | 65 | lslq 16,r13 \n\ |
64 | or.d $r13,%0" | 66 | or.d r13,%0" |
65 | : "=r" (lc) : "0" (lc) : "r13"); | 67 | : "=r" (lc) /* Inputs. */ |
68 | : "0" (lc) /* Outputs. */ | ||
69 | : "r13"); /* Trash. */ | ||
66 | 70 | ||
67 | { | 71 | { |
68 | register char *dst __asm__ ("r13") = pdst; | 72 | register char *dst __asm__ ("r13") = pdst; |
69 | 73 | ||
70 | /* This is NONPORTABLE, but since this whole routine is */ | 74 | if (((unsigned long) pdst & 3) != 0 |
71 | /* grossly nonportable that doesn't matter. */ | 75 | /* Oops! n = 0 must be a valid call, regardless of alignment. */ |
76 | && n >= 3) | ||
77 | { | ||
78 | if ((unsigned long) dst & 1) | ||
79 | { | ||
80 | *dst = (char) lc; | ||
81 | n--; | ||
82 | dst++; | ||
83 | } | ||
72 | 84 | ||
73 | if (((unsigned long) pdst & 3) != 0 | 85 | if ((unsigned long) dst & 2) |
74 | /* Oops! n=0 must be a legal call, regardless of alignment. */ | 86 | { |
75 | && n >= 3) | 87 | *(short *) dst = lc; |
76 | { | 88 | n -= 2; |
77 | if ((unsigned long)dst & 1) | 89 | dst += 2; |
78 | { | 90 | } |
79 | *dst = (char) lc; | 91 | } |
80 | n--; | ||
81 | dst++; | ||
82 | } | ||
83 | |||
84 | if ((unsigned long)dst & 2) | ||
85 | { | ||
86 | *(short *)dst = lc; | ||
87 | n -= 2; | ||
88 | dst += 2; | ||
89 | } | ||
90 | } | ||
91 | 92 | ||
92 | /* Now the fun part. For the threshold value of this, check the equation | 93 | /* Decide which setting method to use. */ |
93 | above. */ | 94 | if (n >= MEMSET_BY_BLOCK_THRESHOLD) |
94 | /* Decide which copying method to use. */ | 95 | { |
95 | if (n >= ZERO_BLOCK_SIZE) | 96 | /* It is not optimal to tell the compiler about clobbering any |
96 | { | 97 | registers; that will move the saving/restoring of those registers |
97 | /* For large copies we use 'movem' */ | 98 | to the function prologue/epilogue, and make non-block sizes |
98 | 99 | suboptimal. */ | |
99 | /* It is not optimal to tell the compiler about clobbering any | 100 | __asm__ volatile |
100 | registers; that will move the saving/restoring of those registers | 101 | ("\ |
101 | to the function prologue/epilogue, and make non-movem sizes | 102 | ;; GCC does promise correct register allocations, but let's \n\ |
102 | suboptimal. | 103 | ;; make sure it keeps its promises. \n\ |
103 | 104 | .ifnc %0-%1-%4,$r13-$r12-$r11 \n\ | |
104 | This method is not foolproof; it assumes that the "asm reg" | 105 | .error \"GCC reg alloc bug: %0-%1-%4 != $r13-$r12-$r11\" \n\ |
105 | declarations at the beginning of the function really are used | 106 | .endif \n\ |
106 | here (beware: they may be moved to temporary registers). | ||
107 | This way, we do not have to save/move the registers around into | ||
108 | temporaries; we can safely use them straight away. | ||
109 | |||
110 | If you want to check that the allocation was right; then | ||
111 | check the equalities in the first comment. It should say | ||
112 | "r13=r13, r12=r12, r11=r11" */ | ||
113 | __asm__ volatile (" \n\ | ||
114 | ;; Check that the register asm declaration got right. \n\ | ||
115 | ;; The GCC manual says it will work, but there *has* been bugs. \n\ | ||
116 | .ifnc %0-%1-%4,$r13-$r12-$r11 \n\ | ||
117 | .err \n\ | ||
118 | .endif \n\ | ||
119 | \n\ | 107 | \n\ |
120 | ;; Save the registers we'll clobber in the movem process \n\ | 108 | ;; Save the registers we'll clobber in the movem process \n\ |
121 | ;; on the stack. Don't mention them to gcc, it will only be \n\ | 109 | ;; on the stack. Don't mention them to gcc, it will only be \n\ |
122 | ;; upset. \n\ | 110 | ;; upset. \n\ |
123 | subq 11*4,$sp \n\ | 111 | subq 11*4,sp \n\ |
124 | movem $r10,[$sp] \n\ | 112 | movem r10,[sp] \n\ |
125 | \n\ | 113 | \n\ |
126 | move.d $r11,$r0 \n\ | 114 | move.d r11,r0 \n\ |
127 | move.d $r11,$r1 \n\ | 115 | move.d r11,r1 \n\ |
128 | move.d $r11,$r2 \n\ | 116 | move.d r11,r2 \n\ |
129 | move.d $r11,$r3 \n\ | 117 | move.d r11,r3 \n\ |
130 | move.d $r11,$r4 \n\ | 118 | move.d r11,r4 \n\ |
131 | move.d $r11,$r5 \n\ | 119 | move.d r11,r5 \n\ |
132 | move.d $r11,$r6 \n\ | 120 | move.d r11,r6 \n\ |
133 | move.d $r11,$r7 \n\ | 121 | move.d r11,r7 \n\ |
134 | move.d $r11,$r8 \n\ | 122 | move.d r11,r8 \n\ |
135 | move.d $r11,$r9 \n\ | 123 | move.d r11,r9 \n\ |
136 | move.d $r11,$r10 \n\ | 124 | move.d r11,r10 \n\ |
137 | \n\ | 125 | \n\ |
138 | ;; Now we've got this: \n\ | 126 | ;; Now we've got this: \n\ |
139 | ;; r13 - dst \n\ | 127 | ;; r13 - dst \n\ |
140 | ;; r12 - n \n\ | 128 | ;; r12 - n \n\ |
141 | \n\ | 129 | \n\ |
142 | ;; Update n for the first loop \n\ | 130 | ;; Update n for the first loop \n\ |
143 | subq 12*4,$r12 \n\ | 131 | subq 12*4,r12 \n\ |
144 | 0: \n\ | 132 | 0: \n\ |
145 | subq 12*4,$r12 \n\ | 133 | " |
146 | bge 0b \n\ | 134 | #ifdef __arch_common_v10_v32 |
147 | movem $r11,[$r13+] \n\ | 135 | /* Cater to branch offset difference between v32 and v10. We |
136 | assume the branch below has an 8-bit offset. */ | ||
137 | " setf\n" | ||
138 | #endif | ||
139 | " subq 12*4,r12 \n\ | ||
140 | bge 0b \n\ | ||
141 | movem r11,[r13+] \n\ | ||
148 | \n\ | 142 | \n\ |
149 | addq 12*4,$r12 ;; compensate for last loop underflowing n \n\ | 143 | ;; Compensate for last loop underflowing n. \n\ |
144 | addq 12*4,r12 \n\ | ||
150 | \n\ | 145 | \n\ |
151 | ;; Restore registers from stack \n\ | 146 | ;; Restore registers from stack. \n\ |
152 | movem [$sp+],$r10" | 147 | movem [sp+],r10" |
153 | 148 | ||
154 | /* Outputs */ : "=r" (dst), "=r" (n) | 149 | /* Outputs. */ |
155 | /* Inputs */ : "0" (dst), "1" (n), "r" (lc)); | 150 | : "=r" (dst), "=r" (n) |
156 | } | 151 | |
152 | /* Inputs. */ | ||
153 | : "0" (dst), "1" (n), "r" (lc)); | ||
154 | } | ||
155 | |||
156 | /* An ad-hoc unroll, used for 4*12-1..16 bytes. */ | ||
157 | while (n >= 16) | ||
158 | { | ||
159 | *(long *) dst = lc; dst += 4; | ||
160 | *(long *) dst = lc; dst += 4; | ||
161 | *(long *) dst = lc; dst += 4; | ||
162 | *(long *) dst = lc; dst += 4; | ||
163 | n -= 16; | ||
164 | } | ||
157 | 165 | ||
158 | /* Either we directly starts copying, using dword copying | ||
159 | in a loop, or we copy as much as possible with 'movem' | ||
160 | and then the last block (<44 bytes) is copied here. | ||
161 | This will work since 'movem' will have updated src,dst,n. */ | ||
162 | |||
163 | while ( n >= 16 ) | ||
164 | { | ||
165 | *((long*)dst)++ = lc; | ||
166 | *((long*)dst)++ = lc; | ||
167 | *((long*)dst)++ = lc; | ||
168 | *((long*)dst)++ = lc; | ||
169 | n -= 16; | ||
170 | } | ||
171 | |||
172 | /* A switch() is definitely the fastest although it takes a LOT of code. | ||
173 | * Particularly if you inline code this. | ||
174 | */ | ||
175 | switch (n) | 166 | switch (n) |
176 | { | 167 | { |
177 | case 0: | 168 | case 0: |
178 | break; | 169 | break; |
170 | |||
179 | case 1: | 171 | case 1: |
180 | *(char*)dst = (char) lc; | 172 | *dst = (char) lc; |
181 | break; | 173 | break; |
174 | |||
182 | case 2: | 175 | case 2: |
183 | *(short*)dst = (short) lc; | 176 | *(short *) dst = (short) lc; |
184 | break; | 177 | break; |
178 | |||
185 | case 3: | 179 | case 3: |
186 | *((short*)dst)++ = (short) lc; | 180 | *(short *) dst = (short) lc; dst += 2; |
187 | *(char*)dst = (char) lc; | 181 | *dst = (char) lc; |
188 | break; | 182 | break; |
183 | |||
189 | case 4: | 184 | case 4: |
190 | *((long*)dst)++ = lc; | 185 | *(long *) dst = lc; |
191 | break; | 186 | break; |
187 | |||
192 | case 5: | 188 | case 5: |
193 | *((long*)dst)++ = lc; | 189 | *(long *) dst = lc; dst += 4; |
194 | *(char*)dst = (char) lc; | 190 | *dst = (char) lc; |
195 | break; | 191 | break; |
192 | |||
196 | case 6: | 193 | case 6: |
197 | *((long*)dst)++ = lc; | 194 | *(long *) dst = lc; dst += 4; |
198 | *(short*)dst = (short) lc; | 195 | *(short *) dst = (short) lc; |
199 | break; | 196 | break; |
197 | |||
200 | case 7: | 198 | case 7: |
201 | *((long*)dst)++ = lc; | 199 | *(long *) dst = lc; dst += 4; |
202 | *((short*)dst)++ = (short) lc; | 200 | *(short *) dst = (short) lc; dst += 2; |
203 | *(char*)dst = (char) lc; | 201 | *dst = (char) lc; |
204 | break; | 202 | break; |
203 | |||
205 | case 8: | 204 | case 8: |
206 | *((long*)dst)++ = lc; | 205 | *(long *) dst = lc; dst += 4; |
207 | *((long*)dst)++ = lc; | 206 | *(long *) dst = lc; |
208 | break; | 207 | break; |
208 | |||
209 | case 9: | 209 | case 9: |
210 | *((long*)dst)++ = lc; | 210 | *(long *) dst = lc; dst += 4; |
211 | *((long*)dst)++ = lc; | 211 | *(long *) dst = lc; dst += 4; |
212 | *(char*)dst = (char) lc; | 212 | *dst = (char) lc; |
213 | break; | 213 | break; |
214 | |||
214 | case 10: | 215 | case 10: |
215 | *((long*)dst)++ = lc; | 216 | *(long *) dst = lc; dst += 4; |
216 | *((long*)dst)++ = lc; | 217 | *(long *) dst = lc; dst += 4; |
217 | *(short*)dst = (short) lc; | 218 | *(short *) dst = (short) lc; |
218 | break; | 219 | break; |
220 | |||
219 | case 11: | 221 | case 11: |
220 | *((long*)dst)++ = lc; | 222 | *(long *) dst = lc; dst += 4; |
221 | *((long*)dst)++ = lc; | 223 | *(long *) dst = lc; dst += 4; |
222 | *((short*)dst)++ = (short) lc; | 224 | *(short *) dst = (short) lc; dst += 2; |
223 | *(char*)dst = (char) lc; | 225 | *dst = (char) lc; |
224 | break; | 226 | break; |
227 | |||
225 | case 12: | 228 | case 12: |
226 | *((long*)dst)++ = lc; | 229 | *(long *) dst = lc; dst += 4; |
227 | *((long*)dst)++ = lc; | 230 | *(long *) dst = lc; dst += 4; |
228 | *((long*)dst)++ = lc; | 231 | *(long *) dst = lc; |
229 | break; | 232 | break; |
233 | |||
230 | case 13: | 234 | case 13: |
231 | *((long*)dst)++ = lc; | 235 | *(long *) dst = lc; dst += 4; |
232 | *((long*)dst)++ = lc; | 236 | *(long *) dst = lc; dst += 4; |
233 | *((long*)dst)++ = lc; | 237 | *(long *) dst = lc; dst += 4; |
234 | *(char*)dst = (char) lc; | 238 | *dst = (char) lc; |
235 | break; | 239 | break; |
240 | |||
236 | case 14: | 241 | case 14: |
237 | *((long*)dst)++ = lc; | 242 | *(long *) dst = lc; dst += 4; |
238 | *((long*)dst)++ = lc; | 243 | *(long *) dst = lc; dst += 4; |
239 | *((long*)dst)++ = lc; | 244 | *(long *) dst = lc; dst += 4; |
240 | *(short*)dst = (short) lc; | 245 | *(short *) dst = (short) lc; |
241 | break; | 246 | break; |
247 | |||
242 | case 15: | 248 | case 15: |
243 | *((long*)dst)++ = lc; | 249 | *(long *) dst = lc; dst += 4; |
244 | *((long*)dst)++ = lc; | 250 | *(long *) dst = lc; dst += 4; |
245 | *((long*)dst)++ = lc; | 251 | *(long *) dst = lc; dst += 4; |
246 | *((short*)dst)++ = (short) lc; | 252 | *(short *) dst = (short) lc; dst += 2; |
247 | *(char*)dst = (char) lc; | 253 | *dst = (char) lc; |
248 | break; | 254 | break; |
249 | } | 255 | } |
250 | } | 256 | } |
251 | 257 | ||
252 | return return_dst; /* destination pointer. */ | 258 | return return_dst; |
253 | } /* memset() */ | 259 | } |
diff --git a/arch/m68knommu/platform/5206/Makefile b/arch/m68knommu/platform/5206/Makefile index c7bb0cef31a0..a439d9ab3f27 100644 --- a/arch/m68knommu/platform/5206/Makefile +++ b/arch/m68knommu/platform/5206/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/5206e/Makefile b/arch/m68knommu/platform/5206e/Makefile index c7bb0cef31a0..a439d9ab3f27 100644 --- a/arch/m68knommu/platform/5206e/Makefile +++ b/arch/m68knommu/platform/5206e/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/520x/Makefile b/arch/m68knommu/platform/520x/Makefile index 31b4eb51739d..a50e76acc8fd 100644 --- a/arch/m68knommu/platform/520x/Makefile +++ b/arch/m68knommu/platform/520x/Makefile | |||
@@ -12,8 +12,6 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
diff --git a/arch/m68knommu/platform/523x/Makefile b/arch/m68knommu/platform/523x/Makefile index ac9fbece8a4f..5694d593f029 100644 --- a/arch/m68knommu/platform/523x/Makefile +++ b/arch/m68knommu/platform/523x/Makefile | |||
@@ -12,8 +12,6 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
diff --git a/arch/m68knommu/platform/5249/Makefile b/arch/m68knommu/platform/5249/Makefile index c7bb0cef31a0..a439d9ab3f27 100644 --- a/arch/m68knommu/platform/5249/Makefile +++ b/arch/m68knommu/platform/5249/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/5272/Makefile b/arch/m68knommu/platform/5272/Makefile index 7475c38c3b4e..26135d92b34d 100644 --- a/arch/m68knommu/platform/5272/Makefile +++ b/arch/m68knommu/platform/5272/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/527x/Makefile b/arch/m68knommu/platform/527x/Makefile index 7475c38c3b4e..26135d92b34d 100644 --- a/arch/m68knommu/platform/527x/Makefile +++ b/arch/m68knommu/platform/527x/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/528x/Makefile b/arch/m68knommu/platform/528x/Makefile index 7475c38c3b4e..26135d92b34d 100644 --- a/arch/m68knommu/platform/528x/Makefile +++ b/arch/m68knommu/platform/528x/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/5307/Makefile b/arch/m68knommu/platform/5307/Makefile index 580fd6658d7c..cfd586860fd8 100644 --- a/arch/m68knommu/platform/5307/Makefile +++ b/arch/m68knommu/platform/5307/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y += config.o | 17 | obj-y += config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/532x/Makefile b/arch/m68knommu/platform/532x/Makefile index 475b92866a9b..e431912f5628 100644 --- a/arch/m68knommu/platform/532x/Makefile +++ b/arch/m68knommu/platform/532x/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | #obj-y := config.o usb-mcf532x.o spi-mcf532x.o | 17 | #obj-y := config.o usb-mcf532x.o spi-mcf532x.o |
20 | obj-y := config.o | 18 | obj-y := config.o |
diff --git a/arch/m68knommu/platform/5407/Makefile b/arch/m68knommu/platform/5407/Makefile index 68633b27df51..e6035e7a2d3f 100644 --- a/arch/m68knommu/platform/5407/Makefile +++ b/arch/m68knommu/platform/5407/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | EXTRA_AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-y := config.o | 17 | obj-y := config.o |
20 | 18 | ||
diff --git a/arch/m68knommu/platform/coldfire/Makefile b/arch/m68knommu/platform/coldfire/Makefile index e5fff297ae01..40cf20be1b90 100644 --- a/arch/m68knommu/platform/coldfire/Makefile +++ b/arch/m68knommu/platform/coldfire/Makefile | |||
@@ -12,9 +12,7 @@ | |||
12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT | 12 | # EXTRA_AFLAGS += -DTRAP_DBG_INTERRUPT |
13 | # | 13 | # |
14 | 14 | ||
15 | ifdef CONFIG_FULLDEBUG | 15 | asflags-$(CONFIG_FULLDEBUG) := -DDEBUGGER_COMPATIBLE_CACHE=1 |
16 | AFLAGS += -DDEBUGGER_COMPATIBLE_CACHE=1 | ||
17 | endif | ||
18 | 16 | ||
19 | obj-$(CONFIG_COLDFIRE) += dma.o entry.o vectors.o | 17 | obj-$(CONFIG_COLDFIRE) += dma.o entry.o vectors.o |
20 | obj-$(CONFIG_M5206) += timers.o | 18 | obj-$(CONFIG_M5206) += timers.o |
diff --git a/arch/m68knommu/platform/coldfire/entry.S b/arch/m68knommu/platform/coldfire/entry.S index b333731b875a..111b66dc737b 100644 --- a/arch/m68knommu/platform/coldfire/entry.S +++ b/arch/m68knommu/platform/coldfire/entry.S | |||
@@ -197,14 +197,13 @@ ENTRY(fasthandler) | |||
197 | RESTORE_LOCAL | 197 | RESTORE_LOCAL |
198 | 198 | ||
199 | ENTRY(ret_from_interrupt) | 199 | ENTRY(ret_from_interrupt) |
200 | jeq 2f | ||
201 | 1: | ||
202 | RESTORE_ALL | ||
203 | 2: | ||
204 | moveb %sp@(PT_SR),%d0 | 200 | moveb %sp@(PT_SR),%d0 |
205 | andl #0x7,%d0 | 201 | andl #0x7,%d0 |
206 | jhi 1b | 202 | jeq 1f |
207 | 203 | ||
204 | RESTORE_ALL | ||
205 | |||
206 | 1: | ||
208 | /* check if we need to do software interrupts */ | 207 | /* check if we need to do software interrupts */ |
209 | movel irq_stat+CPUSTAT_SOFTIRQ_PENDING,%d0 | 208 | movel irq_stat+CPUSTAT_SOFTIRQ_PENDING,%d0 |
210 | jeq ret_from_exception | 209 | jeq ret_from_exception |
diff --git a/arch/m68knommu/platform/coldfire/timers.c b/arch/m68knommu/platform/coldfire/timers.c index a60213e877ef..ba5a9f32ebd4 100644 --- a/arch/m68knommu/platform/coldfire/timers.c +++ b/arch/m68knommu/platform/coldfire/timers.c | |||
@@ -148,25 +148,32 @@ irqreturn_t coldfire_profile_tick(int irq, void *dummy) | |||
148 | /* Reset ColdFire timer2 */ | 148 | /* Reset ColdFire timer2 */ |
149 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER)); | 149 | __raw_writeb(MCFTIMER_TER_CAP | MCFTIMER_TER_REF, PA(MCFTIMER_TER)); |
150 | if (current->pid) | 150 | if (current->pid) |
151 | profile_tick(CPU_PROFILING, regs); | 151 | profile_tick(CPU_PROFILING); |
152 | return IRQ_HANDLED; | 152 | return IRQ_HANDLED; |
153 | } | 153 | } |
154 | 154 | ||
155 | /***************************************************************************/ | 155 | /***************************************************************************/ |
156 | 156 | ||
157 | static struct irqaction coldfire_profile_irq = { | ||
158 | .name = "profile timer", | ||
159 | .flags = IRQF_DISABLED | IRQF_TIMER, | ||
160 | .handler = coldfire_profile_tick, | ||
161 | }; | ||
162 | |||
157 | void coldfire_profile_init(void) | 163 | void coldfire_profile_init(void) |
158 | { | 164 | { |
159 | printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n", PROFILEHZ); | 165 | printk(KERN_INFO "PROFILE: lodging TIMER2 @ %dHz as profile timer\n", |
166 | PROFILEHZ); | ||
167 | |||
168 | setup_irq(mcf_profilevector, &coldfire_profile_irq); | ||
160 | 169 | ||
161 | /* Set up TIMER 2 as high speed profile clock */ | 170 | /* Set up TIMER 2 as high speed profile clock */ |
162 | __raw_writew(MCFTIMER_TMR_DISABLE, PA(MCFTIMER_TMR)); | 171 | __raw_writew(MCFTIMER_TMR_DISABLE, PA(MCFTIMER_TMR)); |
163 | 172 | ||
164 | __raw_writetrr(((MCF_CLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR)); | 173 | __raw_writetrr(((MCF_BUSCLK / 16) / PROFILEHZ), PA(MCFTIMER_TRR)); |
165 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | | 174 | __raw_writew(MCFTIMER_TMR_ENORI | MCFTIMER_TMR_CLK16 | |
166 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR)); | 175 | MCFTIMER_TMR_RESTART | MCFTIMER_TMR_ENABLE, PA(MCFTIMER_TMR)); |
167 | 176 | ||
168 | request_irq(mcf_profilevector, coldfire_profile_tick, | ||
169 | (IRQF_DISABLED | IRQ_FLG_FAST), "profile timer", NULL); | ||
170 | mcf_settimericr(2, 7); | 177 | mcf_settimericr(2, 7); |
171 | } | 178 | } |
172 | 179 | ||
diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c index d70c4e0e85fb..672fba84b2cc 100644 --- a/arch/mips/kernel/sysirix.c +++ b/arch/mips/kernel/sysirix.c | |||
@@ -694,7 +694,7 @@ asmlinkage int irix_statfs(const char __user *path, | |||
694 | if (error) | 694 | if (error) |
695 | goto out; | 695 | goto out; |
696 | 696 | ||
697 | error = vfs_statfs(nd.dentry, &kbuf); | 697 | error = vfs_statfs(nd.path.dentry, &kbuf); |
698 | if (error) | 698 | if (error) |
699 | goto dput_and_out; | 699 | goto dput_and_out; |
700 | 700 | ||
@@ -711,7 +711,7 @@ asmlinkage int irix_statfs(const char __user *path, | |||
711 | } | 711 | } |
712 | 712 | ||
713 | dput_and_out: | 713 | dput_and_out: |
714 | path_release(&nd); | 714 | path_put(&nd.path); |
715 | out: | 715 | out: |
716 | return error; | 716 | return error; |
717 | } | 717 | } |
@@ -1360,7 +1360,7 @@ asmlinkage int irix_statvfs(char __user *fname, struct irix_statvfs __user *buf) | |||
1360 | error = user_path_walk(fname, &nd); | 1360 | error = user_path_walk(fname, &nd); |
1361 | if (error) | 1361 | if (error) |
1362 | goto out; | 1362 | goto out; |
1363 | error = vfs_statfs(nd.dentry, &kbuf); | 1363 | error = vfs_statfs(nd.path.dentry, &kbuf); |
1364 | if (error) | 1364 | if (error) |
1365 | goto dput_and_out; | 1365 | goto dput_and_out; |
1366 | 1366 | ||
@@ -1385,7 +1385,7 @@ asmlinkage int irix_statvfs(char __user *fname, struct irix_statvfs __user *buf) | |||
1385 | error |= __put_user(0, &buf->f_fstr[i]); | 1385 | error |= __put_user(0, &buf->f_fstr[i]); |
1386 | 1386 | ||
1387 | dput_and_out: | 1387 | dput_and_out: |
1388 | path_release(&nd); | 1388 | path_put(&nd.path); |
1389 | out: | 1389 | out: |
1390 | return error; | 1390 | return error; |
1391 | } | 1391 | } |
@@ -1611,7 +1611,7 @@ asmlinkage int irix_statvfs64(char __user *fname, struct irix_statvfs64 __user * | |||
1611 | error = user_path_walk(fname, &nd); | 1611 | error = user_path_walk(fname, &nd); |
1612 | if (error) | 1612 | if (error) |
1613 | goto out; | 1613 | goto out; |
1614 | error = vfs_statfs(nd.dentry, &kbuf); | 1614 | error = vfs_statfs(nd.path.dentry, &kbuf); |
1615 | if (error) | 1615 | if (error) |
1616 | goto dput_and_out; | 1616 | goto dput_and_out; |
1617 | 1617 | ||
@@ -1636,7 +1636,7 @@ asmlinkage int irix_statvfs64(char __user *fname, struct irix_statvfs64 __user * | |||
1636 | error |= __put_user(0, &buf->f_fstr[i]); | 1636 | error |= __put_user(0, &buf->f_fstr[i]); |
1637 | 1637 | ||
1638 | dput_and_out: | 1638 | dput_and_out: |
1639 | path_release(&nd); | 1639 | path_put(&nd.path); |
1640 | out: | 1640 | out: |
1641 | return error; | 1641 | return error; |
1642 | } | 1642 | } |
diff --git a/arch/parisc/hpux/sys_hpux.c b/arch/parisc/hpux/sys_hpux.c index 3e025df2dc86..0c5b9dabb475 100644 --- a/arch/parisc/hpux/sys_hpux.c +++ b/arch/parisc/hpux/sys_hpux.c | |||
@@ -219,10 +219,10 @@ asmlinkage long hpux_statfs(const char __user *path, | |||
219 | error = user_path_walk(path, &nd); | 219 | error = user_path_walk(path, &nd); |
220 | if (!error) { | 220 | if (!error) { |
221 | struct hpux_statfs tmp; | 221 | struct hpux_statfs tmp; |
222 | error = vfs_statfs_hpux(nd.dentry, &tmp); | 222 | error = vfs_statfs_hpux(nd.path.dentry, &tmp); |
223 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) | 223 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) |
224 | error = -EFAULT; | 224 | error = -EFAULT; |
225 | path_release(&nd); | 225 | path_put(&nd.path); |
226 | } | 226 | } |
227 | return error; | 227 | return error; |
228 | } | 228 | } |
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 485513c9f1af..5b8d8382b762 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -442,10 +442,6 @@ config SECCOMP | |||
442 | 442 | ||
443 | If unsure, say Y. Only embedded should say N here. | 443 | If unsure, say Y. Only embedded should say N here. |
444 | 444 | ||
445 | config WANT_DEVICE_TREE | ||
446 | bool | ||
447 | default n | ||
448 | |||
449 | endmenu | 445 | endmenu |
450 | 446 | ||
451 | config ISA_DMA_API | 447 | config ISA_DMA_API |
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 49797a45416c..63d07ccbb9db 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -147,6 +147,8 @@ HOSTCFLAGS += -I$(src)/dtc-src/ -I$(src)/libfdt/ | |||
147 | targets += dtc-src/dtc-parser.tab.c | 147 | targets += dtc-src/dtc-parser.tab.c |
148 | targets += dtc-src/dtc-lexer.lex.c | 148 | targets += dtc-src/dtc-lexer.lex.c |
149 | 149 | ||
150 | clean-files += dtc-src/dtc-parser.tab.h | ||
151 | |||
150 | ifdef DTC_GENPARSER | 152 | ifdef DTC_GENPARSER |
151 | BISON = bison | 153 | BISON = bison |
152 | FLEX = flex | 154 | FLEX = flex |
diff --git a/arch/powerpc/boot/ps3-hvcall.S b/arch/powerpc/boot/ps3-hvcall.S index 585965f7e6a8..d6068f1829ca 100644 --- a/arch/powerpc/boot/ps3-hvcall.S +++ b/arch/powerpc/boot/ps3-hvcall.S | |||
@@ -145,7 +145,7 @@ | |||
145 | .macro STORE_REGS_5_2 | 145 | .macro STORE_REGS_5_2 |
146 | lwz r11, 16(r1) | 146 | lwz r11, 16(r1) |
147 | std r4, 0(r11) | 147 | std r4, 0(r11) |
148 | lwz r11, 24(r1) | 148 | lwz r11, 20(r1) |
149 | std r5, 0(r11) | 149 | std r5, 0(r11) |
150 | .endm | 150 | .endm |
151 | 151 | ||
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 0662ae46f724..c1baf9d5903f 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -104,3 +104,5 @@ quiet_cmd_systbl_chk = CALL $< | |||
104 | PHONY += systbl_chk | 104 | PHONY += systbl_chk |
105 | systbl_chk: $(src)/systbl_chk.sh $(obj)/systbl_chk.i | 105 | systbl_chk: $(src)/systbl_chk.sh $(obj)/systbl_chk.i |
106 | $(call cmd,systbl_chk) | 106 | $(call cmd,systbl_chk) |
107 | |||
108 | clean-files := vmlinux.lds | ||
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c index b9d88374f14f..4846bf543a8c 100644 --- a/arch/powerpc/kernel/process.c +++ b/arch/powerpc/kernel/process.c | |||
@@ -462,7 +462,7 @@ void show_regs(struct pt_regs * regs) | |||
462 | current, task_pid_nr(current), current->comm, task_thread_info(current)); | 462 | current, task_pid_nr(current), current->comm, task_thread_info(current)); |
463 | 463 | ||
464 | #ifdef CONFIG_SMP | 464 | #ifdef CONFIG_SMP |
465 | printk(" CPU: %d", smp_processor_id()); | 465 | printk(" CPU: %d", raw_smp_processor_id()); |
466 | #endif /* CONFIG_SMP */ | 466 | #endif /* CONFIG_SMP */ |
467 | 467 | ||
468 | for (i = 0; i < 32; i++) { | 468 | for (i = 0; i < 32; i++) { |
diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c index 3702df7dc567..d3437c4c4a6f 100644 --- a/arch/powerpc/kernel/vdso.c +++ b/arch/powerpc/kernel/vdso.c | |||
@@ -336,9 +336,9 @@ static unsigned long __init find_function32(struct lib32_elfinfo *lib, | |||
336 | return sym->st_value - VDSO32_LBASE; | 336 | return sym->st_value - VDSO32_LBASE; |
337 | } | 337 | } |
338 | 338 | ||
339 | static int vdso_do_func_patch32(struct lib32_elfinfo *v32, | 339 | static int __init vdso_do_func_patch32(struct lib32_elfinfo *v32, |
340 | struct lib64_elfinfo *v64, | 340 | struct lib64_elfinfo *v64, |
341 | const char *orig, const char *fix) | 341 | const char *orig, const char *fix) |
342 | { | 342 | { |
343 | Elf32_Sym *sym32_gen, *sym32_fix; | 343 | Elf32_Sym *sym32_gen, *sym32_fix; |
344 | 344 | ||
@@ -433,9 +433,9 @@ static unsigned long __init find_function64(struct lib64_elfinfo *lib, | |||
433 | #endif | 433 | #endif |
434 | } | 434 | } |
435 | 435 | ||
436 | static int vdso_do_func_patch64(struct lib32_elfinfo *v32, | 436 | static int __init vdso_do_func_patch64(struct lib32_elfinfo *v32, |
437 | struct lib64_elfinfo *v64, | 437 | struct lib64_elfinfo *v64, |
438 | const char *orig, const char *fix) | 438 | const char *orig, const char *fix) |
439 | { | 439 | { |
440 | Elf64_Sym *sym64_gen, *sym64_fix; | 440 | Elf64_Sym *sym64_gen, *sym64_fix; |
441 | 441 | ||
diff --git a/arch/powerpc/oprofile/cell/spu_task_sync.c b/arch/powerpc/oprofile/cell/spu_task_sync.c index 4a890cb42b98..257b13cb18af 100644 --- a/arch/powerpc/oprofile/cell/spu_task_sync.c +++ b/arch/powerpc/oprofile/cell/spu_task_sync.c | |||
@@ -198,14 +198,13 @@ out: | |||
198 | * dcookie user still being registered (namely, the reader | 198 | * dcookie user still being registered (namely, the reader |
199 | * of the event buffer). | 199 | * of the event buffer). |
200 | */ | 200 | */ |
201 | static inline unsigned long fast_get_dcookie(struct dentry *dentry, | 201 | static inline unsigned long fast_get_dcookie(struct path *path) |
202 | struct vfsmount *vfsmnt) | ||
203 | { | 202 | { |
204 | unsigned long cookie; | 203 | unsigned long cookie; |
205 | 204 | ||
206 | if (dentry->d_cookie) | 205 | if (path->dentry->d_cookie) |
207 | return (unsigned long)dentry; | 206 | return (unsigned long)path->dentry; |
208 | get_dcookie(dentry, vfsmnt, &cookie); | 207 | get_dcookie(path, &cookie); |
209 | return cookie; | 208 | return cookie; |
210 | } | 209 | } |
211 | 210 | ||
@@ -240,8 +239,7 @@ get_exec_dcookie_and_offset(struct spu *spu, unsigned int *offsetp, | |||
240 | continue; | 239 | continue; |
241 | if (!(vma->vm_flags & VM_EXECUTABLE)) | 240 | if (!(vma->vm_flags & VM_EXECUTABLE)) |
242 | continue; | 241 | continue; |
243 | app_cookie = fast_get_dcookie(vma->vm_file->f_dentry, | 242 | app_cookie = fast_get_dcookie(&vma->vm_file->f_path); |
244 | vma->vm_file->f_vfsmnt); | ||
245 | pr_debug("got dcookie for %s\n", | 243 | pr_debug("got dcookie for %s\n", |
246 | vma->vm_file->f_dentry->d_name.name); | 244 | vma->vm_file->f_dentry->d_name.name); |
247 | app = vma->vm_file; | 245 | app = vma->vm_file; |
@@ -262,8 +260,7 @@ get_exec_dcookie_and_offset(struct spu *spu, unsigned int *offsetp, | |||
262 | break; | 260 | break; |
263 | } | 261 | } |
264 | 262 | ||
265 | *spu_bin_dcookie = fast_get_dcookie(vma->vm_file->f_dentry, | 263 | *spu_bin_dcookie = fast_get_dcookie(&vma->vm_file->f_path); |
266 | vma->vm_file->f_vfsmnt); | ||
267 | pr_debug("got dcookie for %s\n", vma->vm_file->f_dentry->d_name.name); | 264 | pr_debug("got dcookie for %s\n", vma->vm_file->f_dentry->d_name.name); |
268 | 265 | ||
269 | up_read(&mm->mmap_sem); | 266 | up_read(&mm->mmap_sem); |
diff --git a/arch/powerpc/platforms/512x/Kconfig b/arch/powerpc/platforms/512x/Kconfig index c6fa49e23dc0..4c0da0c079e9 100644 --- a/arch/powerpc/platforms/512x/Kconfig +++ b/arch/powerpc/platforms/512x/Kconfig | |||
@@ -13,7 +13,6 @@ config MPC5121_ADS | |||
13 | bool "Freescale MPC5121E ADS" | 13 | bool "Freescale MPC5121E ADS" |
14 | depends on PPC_MULTIPLATFORM && PPC32 | 14 | depends on PPC_MULTIPLATFORM && PPC32 |
15 | select DEFAULT_UIMAGE | 15 | select DEFAULT_UIMAGE |
16 | select WANT_DEVICE_TREE | ||
17 | select PPC_MPC5121 | 16 | select PPC_MPC5121 |
18 | help | 17 | help |
19 | This option enables support for the MPC5121E ADS board. | 18 | This option enables support for the MPC5121E ADS board. |
diff --git a/arch/powerpc/platforms/52xx/Kconfig b/arch/powerpc/platforms/52xx/Kconfig index 515f244c90bb..cf945d55c276 100644 --- a/arch/powerpc/platforms/52xx/Kconfig +++ b/arch/powerpc/platforms/52xx/Kconfig | |||
@@ -8,7 +8,6 @@ config PPC_MPC5200_SIMPLE | |||
8 | bool "Generic support for simple MPC5200 based boards" | 8 | bool "Generic support for simple MPC5200 based boards" |
9 | depends on PPC_MPC52xx | 9 | depends on PPC_MPC52xx |
10 | select DEFAULT_UIMAGE | 10 | select DEFAULT_UIMAGE |
11 | select WANT_DEVICE_TREE | ||
12 | help | 11 | help |
13 | This option enables support for a simple MPC52xx based boards which | 12 | This option enables support for a simple MPC52xx based boards which |
14 | do not need a custom platform specific setup. Such boards are | 13 | do not need a custom platform specific setup. Such boards are |
@@ -35,7 +34,6 @@ config PPC_LITE5200 | |||
35 | bool "Freescale Lite5200 Eval Board" | 34 | bool "Freescale Lite5200 Eval Board" |
36 | depends on PPC_MPC52xx | 35 | depends on PPC_MPC52xx |
37 | select DEFAULT_UIMAGE | 36 | select DEFAULT_UIMAGE |
38 | select WANT_DEVICE_TREE | ||
39 | 37 | ||
40 | config PPC_MPC5200_BUGFIX | 38 | config PPC_MPC5200_BUGFIX |
41 | bool "MPC5200 (L25R) bugfix support" | 39 | bool "MPC5200 (L25R) bugfix support" |
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index fcedbec07f94..0afd22595546 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig | |||
@@ -15,7 +15,6 @@ config PPC_MULTIPLATFORM | |||
15 | config PPC_82xx | 15 | config PPC_82xx |
16 | bool "Freescale 82xx" | 16 | bool "Freescale 82xx" |
17 | depends on 6xx | 17 | depends on 6xx |
18 | select WANT_DEVICE_TREE | ||
19 | 18 | ||
20 | config PPC_83xx | 19 | config PPC_83xx |
21 | bool "Freescale 83xx" | 20 | bool "Freescale 83xx" |
@@ -23,7 +22,6 @@ config PPC_83xx | |||
23 | select FSL_SOC | 22 | select FSL_SOC |
24 | select MPC83xx | 23 | select MPC83xx |
25 | select IPIC | 24 | select IPIC |
26 | select WANT_DEVICE_TREE | ||
27 | select FSL_EMB_PERFMON | 25 | select FSL_EMB_PERFMON |
28 | 26 | ||
29 | config PPC_86xx | 27 | config PPC_86xx |
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index 69941ba70975..73d81ce14b67 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype | |||
@@ -29,26 +29,22 @@ config PPC_85xx | |||
29 | bool "Freescale 85xx" | 29 | bool "Freescale 85xx" |
30 | select E500 | 30 | select E500 |
31 | select FSL_SOC | 31 | select FSL_SOC |
32 | select WANT_DEVICE_TREE | ||
33 | select MPC85xx | 32 | select MPC85xx |
34 | 33 | ||
35 | config PPC_8xx | 34 | config PPC_8xx |
36 | bool "Freescale 8xx" | 35 | bool "Freescale 8xx" |
37 | select FSL_SOC | 36 | select FSL_SOC |
38 | select 8xx | 37 | select 8xx |
39 | select WANT_DEVICE_TREE | ||
40 | select PPC_LIB_RHEAP | 38 | select PPC_LIB_RHEAP |
41 | 39 | ||
42 | config 40x | 40 | config 40x |
43 | bool "AMCC 40x" | 41 | bool "AMCC 40x" |
44 | select PPC_DCR_NATIVE | 42 | select PPC_DCR_NATIVE |
45 | select WANT_DEVICE_TREE | ||
46 | select PPC_UDBG_16550 | 43 | select PPC_UDBG_16550 |
47 | 44 | ||
48 | config 44x | 45 | config 44x |
49 | bool "AMCC 44x" | 46 | bool "AMCC 44x" |
50 | select PPC_DCR_NATIVE | 47 | select PPC_DCR_NATIVE |
51 | select WANT_DEVICE_TREE | ||
52 | select PPC_UDBG_16550 | 48 | select PPC_UDBG_16550 |
53 | 49 | ||
54 | config E200 | 50 | config E200 |
diff --git a/arch/powerpc/platforms/cell/ras.c b/arch/powerpc/platforms/cell/ras.c index b2494ebcdbe9..e43024c0392e 100644 --- a/arch/powerpc/platforms/cell/ras.c +++ b/arch/powerpc/platforms/cell/ras.c | |||
@@ -1,4 +1,13 @@ | |||
1 | #define DEBUG | 1 | /* |
2 | * Copyright 2006-2008, IBM Corporation. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | */ | ||
9 | |||
10 | #undef DEBUG | ||
2 | 11 | ||
3 | #include <linux/types.h> | 12 | #include <linux/types.h> |
4 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
diff --git a/arch/powerpc/platforms/cell/spufs/inode.c b/arch/powerpc/platforms/cell/spufs/inode.c index e6e6559c55ed..6d1228c66c5e 100644 --- a/arch/powerpc/platforms/cell/spufs/inode.c +++ b/arch/powerpc/platforms/cell/spufs/inode.c | |||
@@ -1,3 +1,4 @@ | |||
1 | |||
1 | /* | 2 | /* |
2 | * SPU file system | 3 | * SPU file system |
3 | * | 4 | * |
@@ -592,7 +593,7 @@ long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode, | |||
592 | 593 | ||
593 | ret = -EINVAL; | 594 | ret = -EINVAL; |
594 | /* check if we are on spufs */ | 595 | /* check if we are on spufs */ |
595 | if (nd->dentry->d_sb->s_type != &spufs_type) | 596 | if (nd->path.dentry->d_sb->s_type != &spufs_type) |
596 | goto out; | 597 | goto out; |
597 | 598 | ||
598 | /* don't accept undefined flags */ | 599 | /* don't accept undefined flags */ |
@@ -600,9 +601,9 @@ long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode, | |||
600 | goto out; | 601 | goto out; |
601 | 602 | ||
602 | /* only threads can be underneath a gang */ | 603 | /* only threads can be underneath a gang */ |
603 | if (nd->dentry != nd->dentry->d_sb->s_root) { | 604 | if (nd->path.dentry != nd->path.dentry->d_sb->s_root) { |
604 | if ((flags & SPU_CREATE_GANG) || | 605 | if ((flags & SPU_CREATE_GANG) || |
605 | !SPUFS_I(nd->dentry->d_inode)->i_gang) | 606 | !SPUFS_I(nd->path.dentry->d_inode)->i_gang) |
606 | goto out; | 607 | goto out; |
607 | } | 608 | } |
608 | 609 | ||
@@ -618,16 +619,17 @@ long spufs_create(struct nameidata *nd, unsigned int flags, mode_t mode, | |||
618 | mode &= ~current->fs->umask; | 619 | mode &= ~current->fs->umask; |
619 | 620 | ||
620 | if (flags & SPU_CREATE_GANG) | 621 | if (flags & SPU_CREATE_GANG) |
621 | return spufs_create_gang(nd->dentry->d_inode, | 622 | return spufs_create_gang(nd->path.dentry->d_inode, |
622 | dentry, nd->mnt, mode); | 623 | dentry, nd->path.mnt, mode); |
623 | else | 624 | else |
624 | return spufs_create_context(nd->dentry->d_inode, | 625 | return spufs_create_context(nd->path.dentry->d_inode, |
625 | dentry, nd->mnt, flags, mode, filp); | 626 | dentry, nd->path.mnt, flags, mode, |
627 | filp); | ||
626 | 628 | ||
627 | out_dput: | 629 | out_dput: |
628 | dput(dentry); | 630 | dput(dentry); |
629 | out_dir: | 631 | out_dir: |
630 | mutex_unlock(&nd->dentry->d_inode->i_mutex); | 632 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); |
631 | out: | 633 | out: |
632 | return ret; | 634 | return ret; |
633 | } | 635 | } |
diff --git a/arch/powerpc/platforms/cell/spufs/syscalls.c b/arch/powerpc/platforms/cell/spufs/syscalls.c index 430404413178..49c87769b1f8 100644 --- a/arch/powerpc/platforms/cell/spufs/syscalls.c +++ b/arch/powerpc/platforms/cell/spufs/syscalls.c | |||
@@ -73,7 +73,7 @@ static long do_spu_create(const char __user *pathname, unsigned int flags, | |||
73 | LOOKUP_OPEN|LOOKUP_CREATE, &nd); | 73 | LOOKUP_OPEN|LOOKUP_CREATE, &nd); |
74 | if (!ret) { | 74 | if (!ret) { |
75 | ret = spufs_create(&nd, flags, mode, neighbor); | 75 | ret = spufs_create(&nd, flags, mode, neighbor); |
76 | path_release(&nd); | 76 | path_put(&nd.path); |
77 | } | 77 | } |
78 | putname(tmp); | 78 | putname(tmp); |
79 | } | 79 | } |
diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig b/arch/powerpc/platforms/embedded6xx/Kconfig index 6c8083757938..429088967813 100644 --- a/arch/powerpc/platforms/embedded6xx/Kconfig +++ b/arch/powerpc/platforms/embedded6xx/Kconfig | |||
@@ -24,7 +24,6 @@ config STORCENTER | |||
24 | select MPIC | 24 | select MPIC |
25 | select FSL_SOC | 25 | select FSL_SOC |
26 | select PPC_UDBG_16550 if SERIAL_8250 | 26 | select PPC_UDBG_16550 if SERIAL_8250 |
27 | select WANT_DEVICE_TREE | ||
28 | select MPC10X_OPENPIC | 27 | select MPC10X_OPENPIC |
29 | select MPC10X_BRIDGE | 28 | select MPC10X_BRIDGE |
30 | help | 29 | help |
@@ -37,7 +36,6 @@ config MPC7448HPC2 | |||
37 | select TSI108_BRIDGE | 36 | select TSI108_BRIDGE |
38 | select DEFAULT_UIMAGE | 37 | select DEFAULT_UIMAGE |
39 | select PPC_UDBG_16550 | 38 | select PPC_UDBG_16550 |
40 | select WANT_DEVICE_TREE | ||
41 | select TSI108_BRIDGE | 39 | select TSI108_BRIDGE |
42 | help | 40 | help |
43 | Select MPC7448HPC2 if configuring for Freescale MPC7448HPC2 (Taiga) | 41 | Select MPC7448HPC2 if configuring for Freescale MPC7448HPC2 (Taiga) |
@@ -48,7 +46,6 @@ config PPC_HOLLY | |||
48 | depends on EMBEDDED6xx | 46 | depends on EMBEDDED6xx |
49 | select TSI108_BRIDGE | 47 | select TSI108_BRIDGE |
50 | select PPC_UDBG_16550 | 48 | select PPC_UDBG_16550 |
51 | select WANT_DEVICE_TREE | ||
52 | select TSI108_BRIDGE | 49 | select TSI108_BRIDGE |
53 | help | 50 | help |
54 | Select PPC_HOLLY if configuring for an IBM 750GX/CL Eval | 51 | Select PPC_HOLLY if configuring for an IBM 750GX/CL Eval |
@@ -59,7 +56,6 @@ config PPC_PRPMC2800 | |||
59 | depends on EMBEDDED6xx | 56 | depends on EMBEDDED6xx |
60 | select MV64X60 | 57 | select MV64X60 |
61 | select NOT_COHERENT_CACHE | 58 | select NOT_COHERENT_CACHE |
62 | select WANT_DEVICE_TREE | ||
63 | help | 59 | help |
64 | This option enables support for the Motorola PrPMC2800 board | 60 | This option enables support for the Motorola PrPMC2800 board |
65 | 61 | ||
diff --git a/arch/powerpc/platforms/iseries/vio.c b/arch/powerpc/platforms/iseries/vio.c index be06cfd9fa3d..657b72f68493 100644 --- a/arch/powerpc/platforms/iseries/vio.c +++ b/arch/powerpc/platforms/iseries/vio.c | |||
@@ -75,7 +75,7 @@ static struct property *new_property(const char *name, int length, | |||
75 | return np; | 75 | return np; |
76 | } | 76 | } |
77 | 77 | ||
78 | static void __init free_property(struct property *np) | 78 | static void free_property(struct property *np) |
79 | { | 79 | { |
80 | kfree(np); | 80 | kfree(np); |
81 | } | 81 | } |
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index d87d4bf88803..b3400b5ad5c6 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -93,6 +93,9 @@ config ARCH_NO_VIRT_TO_BUS | |||
93 | config ARCH_SUPPORTS_AOUT | 93 | config ARCH_SUPPORTS_AOUT |
94 | def_bool y | 94 | def_bool y |
95 | 95 | ||
96 | config IO_TRAPPED | ||
97 | bool | ||
98 | |||
96 | source "init/Kconfig" | 99 | source "init/Kconfig" |
97 | 100 | ||
98 | menu "System type" | 101 | menu "System type" |
@@ -312,6 +315,13 @@ config CPU_SUBTYPE_SH7722 | |||
312 | select ARCH_SPARSEMEM_ENABLE | 315 | select ARCH_SPARSEMEM_ENABLE |
313 | select SYS_SUPPORTS_NUMA | 316 | select SYS_SUPPORTS_NUMA |
314 | 317 | ||
318 | config CPU_SUBTYPE_SH7366 | ||
319 | bool "Support SH7366 processor" | ||
320 | select CPU_SH4AL_DSP | ||
321 | select CPU_SHX2 | ||
322 | select ARCH_SPARSEMEM_ENABLE | ||
323 | select SYS_SUPPORTS_NUMA | ||
324 | |||
315 | # SH-5 Processor Support | 325 | # SH-5 Processor Support |
316 | 326 | ||
317 | config CPU_SUBTYPE_SH5_101 | 327 | config CPU_SUBTYPE_SH5_101 |
@@ -456,6 +466,7 @@ config SH_RTS7751R2D | |||
456 | bool "RTS7751R2D" | 466 | bool "RTS7751R2D" |
457 | depends on CPU_SUBTYPE_SH7751R | 467 | depends on CPU_SUBTYPE_SH7751R |
458 | select SYS_SUPPORTS_PCI | 468 | select SYS_SUPPORTS_PCI |
469 | select IO_TRAPPED | ||
459 | help | 470 | help |
460 | Select RTS7751R2D if configuring for a Renesas Technology | 471 | Select RTS7751R2D if configuring for a Renesas Technology |
461 | Sales SH-Graphics board. | 472 | Sales SH-Graphics board. |
@@ -472,6 +483,14 @@ config SH_HIGHLANDER | |||
472 | bool "Highlander" | 483 | bool "Highlander" |
473 | depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 | 484 | depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785 |
474 | select SYS_SUPPORTS_PCI | 485 | select SYS_SUPPORTS_PCI |
486 | select IO_TRAPPED | ||
487 | |||
488 | config SH_MIGOR | ||
489 | bool "Migo-R" | ||
490 | depends on CPU_SUBTYPE_SH7722 | ||
491 | help | ||
492 | Select Migo-R if configuring for the SH7722 Migo-R platform | ||
493 | by Renesas System Solutions Asia Pte. Ltd. | ||
475 | 494 | ||
476 | config SH_EDOSK7705 | 495 | config SH_EDOSK7705 |
477 | bool "EDOSK7705" | 496 | bool "EDOSK7705" |
diff --git a/arch/sh/Kconfig.cpu b/arch/sh/Kconfig.cpu index d850184d0694..0e27fe3b182b 100644 --- a/arch/sh/Kconfig.cpu +++ b/arch/sh/Kconfig.cpu | |||
@@ -12,6 +12,7 @@ config CPU_LITTLE_ENDIAN | |||
12 | 12 | ||
13 | config CPU_BIG_ENDIAN | 13 | config CPU_BIG_ENDIAN |
14 | bool "Big Endian" | 14 | bool "Big Endian" |
15 | depends on !CPU_SH5 | ||
15 | 16 | ||
16 | endchoice | 17 | endchoice |
17 | 18 | ||
@@ -87,9 +88,6 @@ config SH64_ID2815_WORKAROUND | |||
87 | config CPU_HAS_INTEVT | 88 | config CPU_HAS_INTEVT |
88 | bool | 89 | bool |
89 | 90 | ||
90 | config CPU_HAS_MASKREG_IRQ | ||
91 | bool | ||
92 | |||
93 | config CPU_HAS_IPR_IRQ | 91 | config CPU_HAS_IPR_IRQ |
94 | bool | 92 | bool |
95 | 93 | ||
diff --git a/arch/sh/Kconfig.debug b/arch/sh/Kconfig.debug index f7c716166ce8..5dcb74b947a9 100644 --- a/arch/sh/Kconfig.debug +++ b/arch/sh/Kconfig.debug | |||
@@ -29,7 +29,8 @@ config EARLY_SCIF_CONSOLE | |||
29 | config EARLY_SCIF_CONSOLE_PORT | 29 | config EARLY_SCIF_CONSOLE_PORT |
30 | hex | 30 | hex |
31 | depends on EARLY_SCIF_CONSOLE | 31 | depends on EARLY_SCIF_CONSOLE |
32 | default "0xffe00000" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7763 | 32 | default "0xffe00000" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7763 |
33 | default "0xffe00000" if CPU_SUBTYPE_SH7722 || CPU_SUBTYPE_SH7366 | ||
33 | default "0xffea0000" if CPU_SUBTYPE_SH7785 | 34 | default "0xffea0000" if CPU_SUBTYPE_SH7785 |
34 | default "0xfffe8000" if CPU_SUBTYPE_SH7203 | 35 | default "0xfffe8000" if CPU_SUBTYPE_SH7203 |
35 | default "0xfffe9800" if CPU_SUBTYPE_SH7206 || CPU_SUBTYPE_SH7263 | 36 | default "0xfffe9800" if CPU_SUBTYPE_SH7206 || CPU_SUBTYPE_SH7263 |
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index 17fc36186bf4..81381e5773c8 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
@@ -116,6 +116,7 @@ machdir-$(CONFIG_SH_RTS7751R2D) += renesas/rts7751r2d | |||
116 | machdir-$(CONFIG_SH_7751_SYSTEMH) += renesas/systemh | 116 | machdir-$(CONFIG_SH_7751_SYSTEMH) += renesas/systemh |
117 | machdir-$(CONFIG_SH_EDOSK7705) += renesas/edosk7705 | 117 | machdir-$(CONFIG_SH_EDOSK7705) += renesas/edosk7705 |
118 | machdir-$(CONFIG_SH_HIGHLANDER) += renesas/r7780rp | 118 | machdir-$(CONFIG_SH_HIGHLANDER) += renesas/r7780rp |
119 | machdir-$(CONFIG_SH_MIGOR) += renesas/migor | ||
119 | machdir-$(CONFIG_SH_SDK7780) += renesas/sdk7780 | 120 | machdir-$(CONFIG_SH_SDK7780) += renesas/sdk7780 |
120 | machdir-$(CONFIG_SH_7710VOIPGW) += renesas/sh7710voipgw | 121 | machdir-$(CONFIG_SH_7710VOIPGW) += renesas/sh7710voipgw |
121 | machdir-$(CONFIG_SH_X3PROTO) += renesas/x3proto | 122 | machdir-$(CONFIG_SH_X3PROTO) += renesas/x3proto |
diff --git a/arch/sh/boards/renesas/migor/Makefile b/arch/sh/boards/renesas/migor/Makefile new file mode 100644 index 000000000000..77037567633b --- /dev/null +++ b/arch/sh/boards/renesas/migor/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o | |||
diff --git a/arch/sh/boards/renesas/migor/setup.c b/arch/sh/boards/renesas/migor/setup.c new file mode 100644 index 000000000000..21ab8c8fb590 --- /dev/null +++ b/arch/sh/boards/renesas/migor/setup.c | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * Renesas System Solutions Asia Pte. Ltd - Migo-R | ||
3 | * | ||
4 | * Copyright (C) 2008 Magnus Damm | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/platform_device.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <asm/machvec.h> | ||
14 | #include <asm/io.h> | ||
15 | |||
16 | /* Address IRQ Size Bus Description | ||
17 | * 0x00000000 64MB 16 NOR Flash (SP29PL256N) | ||
18 | * 0x0c000000 64MB 64 SDRAM (2xK4M563233G) | ||
19 | * 0x10000000 IRQ0 16 Ethernet (SMC91C111) | ||
20 | * 0x14000000 IRQ4 16 USB 2.0 Host Controller (M66596) | ||
21 | * 0x18000000 8GB 8 NAND Flash (K9K8G08U0A) | ||
22 | */ | ||
23 | |||
24 | static struct resource smc91x_eth_resources[] = { | ||
25 | [0] = { | ||
26 | .name = "smc91x-regs" , | ||
27 | .start = P2SEGADDR(0x10000300), | ||
28 | .end = P2SEGADDR(0x1000030f), | ||
29 | .flags = IORESOURCE_MEM, | ||
30 | }, | ||
31 | [1] = { | ||
32 | .start = 32, /* IRQ0 */ | ||
33 | .flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH, | ||
34 | }, | ||
35 | }; | ||
36 | |||
37 | static struct platform_device smc91x_eth_device = { | ||
38 | .name = "smc91x", | ||
39 | .num_resources = ARRAY_SIZE(smc91x_eth_resources), | ||
40 | .resource = smc91x_eth_resources, | ||
41 | }; | ||
42 | |||
43 | static struct platform_device *migor_devices[] __initdata = { | ||
44 | &smc91x_eth_device, | ||
45 | }; | ||
46 | |||
47 | static int __init migor_devices_setup(void) | ||
48 | { | ||
49 | return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); | ||
50 | } | ||
51 | __initcall(migor_devices_setup); | ||
52 | |||
53 | static void __init migor_setup(char **cmdline_p) | ||
54 | { | ||
55 | ctrl_outw(0x1000, 0xa4050110); /* Enable IRQ0 in PJCR */ | ||
56 | } | ||
57 | |||
58 | static struct sh_machine_vector mv_migor __initmv = { | ||
59 | .mv_name = "Migo-R", | ||
60 | .mv_setup = migor_setup, | ||
61 | }; | ||
diff --git a/arch/sh/boards/renesas/r7780rp/setup.c b/arch/sh/boards/renesas/r7780rp/setup.c index f7a8d5c9d510..2f68bea7890c 100644 --- a/arch/sh/boards/renesas/r7780rp/setup.c +++ b/arch/sh/boards/renesas/r7780rp/setup.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/clock.h> | 23 | #include <asm/clock.h> |
24 | #include <asm/heartbeat.h> | 24 | #include <asm/heartbeat.h> |
25 | #include <asm/io.h> | 25 | #include <asm/io.h> |
26 | #include <asm/io_trapped.h> | ||
26 | 27 | ||
27 | static struct resource r8a66597_usb_host_resources[] = { | 28 | static struct resource r8a66597_usb_host_resources[] = { |
28 | [0] = { | 29 | [0] = { |
@@ -181,13 +182,27 @@ static struct platform_device *r7780rp_devices[] __initdata = { | |||
181 | &m66592_usb_peripheral_device, | 182 | &m66592_usb_peripheral_device, |
182 | &heartbeat_device, | 183 | &heartbeat_device, |
183 | #ifndef CONFIG_SH_R7780RP | 184 | #ifndef CONFIG_SH_R7780RP |
184 | &cf_ide_device, | ||
185 | &ax88796_device, | 185 | &ax88796_device, |
186 | #endif | 186 | #endif |
187 | }; | 187 | }; |
188 | 188 | ||
189 | /* | ||
190 | * The CF is connected using a 16-bit bus where 8-bit operations are | ||
191 | * unsupported. The linux ata driver is however using 8-bit operations, so | ||
192 | * insert a trapped io filter to convert 8-bit operations into 16-bit. | ||
193 | */ | ||
194 | static struct trapped_io cf_trapped_io = { | ||
195 | .resource = cf_ide_resources, | ||
196 | .num_resources = 2, | ||
197 | .minimum_bus_width = 16, | ||
198 | }; | ||
199 | |||
189 | static int __init r7780rp_devices_setup(void) | 200 | static int __init r7780rp_devices_setup(void) |
190 | { | 201 | { |
202 | #ifndef CONFIG_SH_R7780RP | ||
203 | if (register_trapped_io(&cf_trapped_io) == 0) | ||
204 | platform_device_register(&cf_ide_device); | ||
205 | #endif | ||
191 | return platform_add_devices(r7780rp_devices, | 206 | return platform_add_devices(r7780rp_devices, |
192 | ARRAY_SIZE(r7780rp_devices)); | 207 | ARRAY_SIZE(r7780rp_devices)); |
193 | } | 208 | } |
@@ -226,34 +241,6 @@ static void r7780rp_power_off(void) | |||
226 | ctrl_outw(0x0001, PA_POFF); | 241 | ctrl_outw(0x0001, PA_POFF); |
227 | } | 242 | } |
228 | 243 | ||
229 | static inline unsigned char is_ide_ioaddr(unsigned long addr) | ||
230 | { | ||
231 | return ((cf_ide_resources[0].start <= addr && | ||
232 | addr <= cf_ide_resources[0].end) || | ||
233 | (cf_ide_resources[1].start <= addr && | ||
234 | addr <= cf_ide_resources[1].end)); | ||
235 | } | ||
236 | |||
237 | void highlander_writeb(u8 b, void __iomem *addr) | ||
238 | { | ||
239 | unsigned long tmp = (unsigned long __force)addr; | ||
240 | |||
241 | if (is_ide_ioaddr(tmp)) | ||
242 | ctrl_outw((u16)b, tmp); | ||
243 | else | ||
244 | ctrl_outb(b, tmp); | ||
245 | } | ||
246 | |||
247 | u8 highlander_readb(void __iomem *addr) | ||
248 | { | ||
249 | unsigned long tmp = (unsigned long __force)addr; | ||
250 | |||
251 | if (is_ide_ioaddr(tmp)) | ||
252 | return ctrl_inw(tmp) & 0xff; | ||
253 | else | ||
254 | return ctrl_inb(tmp); | ||
255 | } | ||
256 | |||
257 | /* | 244 | /* |
258 | * Initialize the board | 245 | * Initialize the board |
259 | */ | 246 | */ |
@@ -338,6 +325,4 @@ static struct sh_machine_vector mv_highlander __initmv = { | |||
338 | .mv_setup = highlander_setup, | 325 | .mv_setup = highlander_setup, |
339 | .mv_init_irq = highlander_init_irq, | 326 | .mv_init_irq = highlander_init_irq, |
340 | .mv_irq_demux = highlander_irq_demux, | 327 | .mv_irq_demux = highlander_irq_demux, |
341 | .mv_readb = highlander_readb, | ||
342 | .mv_writeb = highlander_writeb, | ||
343 | }; | 328 | }; |
diff --git a/arch/sh/boards/renesas/rts7751r2d/setup.c b/arch/sh/boards/renesas/rts7751r2d/setup.c index a0ef81b7de37..f21ee49ef3a5 100644 --- a/arch/sh/boards/renesas/rts7751r2d/setup.c +++ b/arch/sh/boards/renesas/rts7751r2d/setup.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <asm/machvec.h> | 21 | #include <asm/machvec.h> |
22 | #include <asm/rts7751r2d.h> | 22 | #include <asm/rts7751r2d.h> |
23 | #include <asm/io.h> | 23 | #include <asm/io.h> |
24 | #include <asm/io_trapped.h> | ||
24 | #include <asm/spi.h> | 25 | #include <asm/spi.h> |
25 | 26 | ||
26 | static struct resource cf_ide_resources[] = { | 27 | static struct resource cf_ide_resources[] = { |
@@ -214,13 +215,25 @@ static struct platform_device *rts7751r2d_devices[] __initdata = { | |||
214 | &uart_device, | 215 | &uart_device, |
215 | &sm501_device, | 216 | &sm501_device, |
216 | #endif | 217 | #endif |
217 | &cf_ide_device, | ||
218 | &heartbeat_device, | 218 | &heartbeat_device, |
219 | &spi_sh_sci_device, | 219 | &spi_sh_sci_device, |
220 | }; | 220 | }; |
221 | 221 | ||
222 | /* | ||
223 | * The CF is connected with a 16-bit bus where 8-bit operations are | ||
224 | * unsupported. The linux ata driver is however using 8-bit operations, so | ||
225 | * insert a trapped io filter to convert 8-bit operations into 16-bit. | ||
226 | */ | ||
227 | static struct trapped_io cf_trapped_io = { | ||
228 | .resource = cf_ide_resources, | ||
229 | .num_resources = 2, | ||
230 | .minimum_bus_width = 16, | ||
231 | }; | ||
232 | |||
222 | static int __init rts7751r2d_devices_setup(void) | 233 | static int __init rts7751r2d_devices_setup(void) |
223 | { | 234 | { |
235 | if (register_trapped_io(&cf_trapped_io) == 0) | ||
236 | platform_device_register(&cf_ide_device); | ||
224 | spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus)); | 237 | spi_register_board_info(spi_bus, ARRAY_SIZE(spi_bus)); |
225 | return platform_add_devices(rts7751r2d_devices, | 238 | return platform_add_devices(rts7751r2d_devices, |
226 | ARRAY_SIZE(rts7751r2d_devices)); | 239 | ARRAY_SIZE(rts7751r2d_devices)); |
@@ -232,34 +245,6 @@ static void rts7751r2d_power_off(void) | |||
232 | ctrl_outw(0x0001, PA_POWOFF); | 245 | ctrl_outw(0x0001, PA_POWOFF); |
233 | } | 246 | } |
234 | 247 | ||
235 | static inline unsigned char is_ide_ioaddr(unsigned long addr) | ||
236 | { | ||
237 | return ((cf_ide_resources[0].start <= addr && | ||
238 | addr <= cf_ide_resources[0].end) || | ||
239 | (cf_ide_resources[1].start <= addr && | ||
240 | addr <= cf_ide_resources[1].end)); | ||
241 | } | ||
242 | |||
243 | void rts7751r2d_writeb(u8 b, void __iomem *addr) | ||
244 | { | ||
245 | unsigned long tmp = (unsigned long __force)addr; | ||
246 | |||
247 | if (is_ide_ioaddr(tmp)) | ||
248 | ctrl_outw((u16)b, tmp); | ||
249 | else | ||
250 | ctrl_outb(b, tmp); | ||
251 | } | ||
252 | |||
253 | u8 rts7751r2d_readb(void __iomem *addr) | ||
254 | { | ||
255 | unsigned long tmp = (unsigned long __force)addr; | ||
256 | |||
257 | if (is_ide_ioaddr(tmp)) | ||
258 | return ctrl_inw(tmp) & 0xff; | ||
259 | else | ||
260 | return ctrl_inb(tmp); | ||
261 | } | ||
262 | |||
263 | /* | 248 | /* |
264 | * Initialize the board | 249 | * Initialize the board |
265 | */ | 250 | */ |
@@ -310,6 +295,4 @@ static struct sh_machine_vector mv_rts7751r2d __initmv = { | |||
310 | .mv_setup = rts7751r2d_setup, | 295 | .mv_setup = rts7751r2d_setup, |
311 | .mv_init_irq = init_rts7751r2d_IRQ, | 296 | .mv_init_irq = init_rts7751r2d_IRQ, |
312 | .mv_irq_demux = rts7751r2d_irq_demux, | 297 | .mv_irq_demux = rts7751r2d_irq_demux, |
313 | .mv_writeb = rts7751r2d_writeb, | ||
314 | .mv_readb = rts7751r2d_readb, | ||
315 | }; | 298 | }; |
diff --git a/arch/sh/boards/renesas/sdk7780/Kconfig b/arch/sh/boards/renesas/sdk7780/Kconfig index e4f5b6985be1..065f1df09bf1 100644 --- a/arch/sh/boards/renesas/sdk7780/Kconfig +++ b/arch/sh/boards/renesas/sdk7780/Kconfig | |||
@@ -4,13 +4,6 @@ choice | |||
4 | prompt "SDK7780 options" | 4 | prompt "SDK7780 options" |
5 | default SH_SDK7780_BASE | 5 | default SH_SDK7780_BASE |
6 | 6 | ||
7 | config SH_SDK7780_STANDALONE | ||
8 | bool "SDK7780 board support" | ||
9 | depends on CPU_SUBTYPE_SH7780 | ||
10 | help | ||
11 | Selecting this option will enable support for the | ||
12 | standalone version of the SDK7780. If in doubt, say Y. | ||
13 | |||
14 | config SH_SDK7780_BASE | 7 | config SH_SDK7780_BASE |
15 | bool "SDK7780 with base-board support" | 8 | bool "SDK7780 with base-board support" |
16 | depends on CPU_SUBTYPE_SH7780 | 9 | depends on CPU_SUBTYPE_SH7780 |
diff --git a/arch/sh/cchips/hd6446x/hd64465/setup.c b/arch/sh/cchips/hd6446x/hd64465/setup.c index 5cef0db4018b..9b8820c36701 100644 --- a/arch/sh/cchips/hd6446x/hd64465/setup.c +++ b/arch/sh/cchips/hd6446x/hd64465/setup.c | |||
@@ -17,10 +17,8 @@ | |||
17 | #include <linux/interrupt.h> | 17 | #include <linux/interrupt.h> |
18 | #include <linux/init.h> | 18 | #include <linux/init.h> |
19 | #include <linux/irq.h> | 19 | #include <linux/irq.h> |
20 | |||
21 | #include <asm/io.h> | 20 | #include <asm/io.h> |
22 | #include <asm/irq.h> | 21 | #include <asm/irq.h> |
23 | |||
24 | #include <asm/hd64465/hd64465.h> | 22 | #include <asm/hd64465/hd64465.h> |
25 | 23 | ||
26 | static void disable_hd64465_irq(unsigned int irq) | 24 | static void disable_hd64465_irq(unsigned int irq) |
@@ -28,51 +26,45 @@ static void disable_hd64465_irq(unsigned int irq) | |||
28 | unsigned short nimr; | 26 | unsigned short nimr; |
29 | unsigned short mask = 1 << (irq - HD64465_IRQ_BASE); | 27 | unsigned short mask = 1 << (irq - HD64465_IRQ_BASE); |
30 | 28 | ||
31 | pr_debug("disable_hd64465_irq(%d): mask=%x\n", irq, mask); | 29 | pr_debug("disable_hd64465_irq(%d): mask=%x\n", irq, mask); |
32 | nimr = inw(HD64465_REG_NIMR); | 30 | nimr = inw(HD64465_REG_NIMR); |
33 | nimr |= mask; | 31 | nimr |= mask; |
34 | outw(nimr, HD64465_REG_NIMR); | 32 | outw(nimr, HD64465_REG_NIMR); |
35 | } | 33 | } |
36 | 34 | ||
37 | |||
38 | static void enable_hd64465_irq(unsigned int irq) | 35 | static void enable_hd64465_irq(unsigned int irq) |
39 | { | 36 | { |
40 | unsigned short nimr; | 37 | unsigned short nimr; |
41 | unsigned short mask = 1 << (irq - HD64465_IRQ_BASE); | 38 | unsigned short mask = 1 << (irq - HD64465_IRQ_BASE); |
42 | 39 | ||
43 | pr_debug("enable_hd64465_irq(%d): mask=%x\n", irq, mask); | 40 | pr_debug("enable_hd64465_irq(%d): mask=%x\n", irq, mask); |
44 | nimr = inw(HD64465_REG_NIMR); | 41 | nimr = inw(HD64465_REG_NIMR); |
45 | nimr &= ~mask; | 42 | nimr &= ~mask; |
46 | outw(nimr, HD64465_REG_NIMR); | 43 | outw(nimr, HD64465_REG_NIMR); |
47 | } | 44 | } |
48 | 45 | ||
49 | |||
50 | static void mask_and_ack_hd64465(unsigned int irq) | 46 | static void mask_and_ack_hd64465(unsigned int irq) |
51 | { | 47 | { |
52 | disable_hd64465_irq(irq); | 48 | disable_hd64465_irq(irq); |
53 | } | 49 | } |
54 | 50 | ||
55 | |||
56 | static void end_hd64465_irq(unsigned int irq) | 51 | static void end_hd64465_irq(unsigned int irq) |
57 | { | 52 | { |
58 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | 53 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) |
59 | enable_hd64465_irq(irq); | 54 | enable_hd64465_irq(irq); |
60 | } | 55 | } |
61 | 56 | ||
62 | |||
63 | static unsigned int startup_hd64465_irq(unsigned int irq) | 57 | static unsigned int startup_hd64465_irq(unsigned int irq) |
64 | { | 58 | { |
65 | enable_hd64465_irq(irq); | 59 | enable_hd64465_irq(irq); |
66 | return 0; | 60 | return 0; |
67 | } | 61 | } |
68 | 62 | ||
69 | |||
70 | static void shutdown_hd64465_irq(unsigned int irq) | 63 | static void shutdown_hd64465_irq(unsigned int irq) |
71 | { | 64 | { |
72 | disable_hd64465_irq(irq); | 65 | disable_hd64465_irq(irq); |
73 | } | 66 | } |
74 | 67 | ||
75 | |||
76 | static struct hw_interrupt_type hd64465_irq_type = { | 68 | static struct hw_interrupt_type hd64465_irq_type = { |
77 | .typename = "HD64465-IRQ", | 69 | .typename = "HD64465-IRQ", |
78 | .startup = startup_hd64465_irq, | 70 | .startup = startup_hd64465_irq, |
@@ -83,7 +75,6 @@ static struct hw_interrupt_type hd64465_irq_type = { | |||
83 | .end = end_hd64465_irq, | 75 | .end = end_hd64465_irq, |
84 | }; | 76 | }; |
85 | 77 | ||
86 | |||
87 | static irqreturn_t hd64465_interrupt(int irq, void *dev_id) | 78 | static irqreturn_t hd64465_interrupt(int irq, void *dev_id) |
88 | { | 79 | { |
89 | printk(KERN_INFO | 80 | printk(KERN_INFO |
@@ -93,9 +84,6 @@ static irqreturn_t hd64465_interrupt(int irq, void *dev_id) | |||
93 | return IRQ_NONE; | 84 | return IRQ_NONE; |
94 | } | 85 | } |
95 | 86 | ||
96 | |||
97 | /*====================================================*/ | ||
98 | |||
99 | /* | 87 | /* |
100 | * Support for a secondary IRQ demux step. This is necessary | 88 | * Support for a secondary IRQ demux step. This is necessary |
101 | * because the HD64465 presents a very thin interface to the | 89 | * because the HD64465 presents a very thin interface to the |
@@ -103,8 +91,7 @@ static irqreturn_t hd64465_interrupt(int irq, void *dev_id) | |||
103 | * normally done in hardware by other PCMCIA host bridges is | 91 | * normally done in hardware by other PCMCIA host bridges is |
104 | * instead done in software. | 92 | * instead done in software. |
105 | */ | 93 | */ |
106 | static struct | 94 | static struct { |
107 | { | ||
108 | int (*func)(int, void *); | 95 | int (*func)(int, void *); |
109 | void *dev; | 96 | void *dev; |
110 | } hd64465_demux[HD64465_IRQ_NUM]; | 97 | } hd64465_demux[HD64465_IRQ_NUM]; |
@@ -112,19 +99,17 @@ static struct | |||
112 | void hd64465_register_irq_demux(int irq, | 99 | void hd64465_register_irq_demux(int irq, |
113 | int (*demux)(int irq, void *dev), void *dev) | 100 | int (*demux)(int irq, void *dev), void *dev) |
114 | { | 101 | { |
115 | hd64465_demux[irq - HD64465_IRQ_BASE].func = demux; | 102 | hd64465_demux[irq - HD64465_IRQ_BASE].func = demux; |
116 | hd64465_demux[irq - HD64465_IRQ_BASE].dev = dev; | 103 | hd64465_demux[irq - HD64465_IRQ_BASE].dev = dev; |
117 | } | 104 | } |
118 | EXPORT_SYMBOL(hd64465_register_irq_demux); | 105 | EXPORT_SYMBOL(hd64465_register_irq_demux); |
119 | 106 | ||
120 | void hd64465_unregister_irq_demux(int irq) | 107 | void hd64465_unregister_irq_demux(int irq) |
121 | { | 108 | { |
122 | hd64465_demux[irq - HD64465_IRQ_BASE].func = 0; | 109 | hd64465_demux[irq - HD64465_IRQ_BASE].func = 0; |
123 | } | 110 | } |
124 | EXPORT_SYMBOL(hd64465_unregister_irq_demux); | 111 | EXPORT_SYMBOL(hd64465_unregister_irq_demux); |
125 | 112 | ||
126 | |||
127 | |||
128 | int hd64465_irq_demux(int irq) | 113 | int hd64465_irq_demux(int irq) |
129 | { | 114 | { |
130 | if (irq == CONFIG_HD64465_IRQ) { | 115 | if (irq == CONFIG_HD64465_IRQ) { |
@@ -132,16 +117,16 @@ int hd64465_irq_demux(int irq) | |||
132 | unsigned short nirr = inw(HD64465_REG_NIRR); | 117 | unsigned short nirr = inw(HD64465_REG_NIRR); |
133 | unsigned short nimr = inw(HD64465_REG_NIMR); | 118 | unsigned short nimr = inw(HD64465_REG_NIMR); |
134 | 119 | ||
135 | pr_debug("hd64465_irq_demux, nirr=%04x, nimr=%04x\n", nirr, nimr); | 120 | pr_debug("hd64465_irq_demux, nirr=%04x, nimr=%04x\n", nirr, nimr); |
136 | nirr &= ~nimr; | 121 | nirr &= ~nimr; |
137 | for (bit = 1, i = 0 ; i < HD64465_IRQ_NUM ; bit <<= 1, i++) | 122 | for (bit = 1, i = 0 ; i < HD64465_IRQ_NUM ; bit <<= 1, i++) |
138 | if (nirr & bit) | 123 | if (nirr & bit) |
139 | break; | 124 | break; |
140 | 125 | ||
141 | if (i < HD64465_IRQ_NUM) { | 126 | if (i < HD64465_IRQ_NUM) { |
142 | irq = HD64465_IRQ_BASE + i; | 127 | irq = HD64465_IRQ_BASE + i; |
143 | if (hd64465_demux[i].func != 0) | 128 | if (hd64465_demux[i].func != 0) |
144 | irq = hd64465_demux[i].func(irq, hd64465_demux[i].dev); | 129 | irq = hd64465_demux[i].func(irq, hd64465_demux[i].dev); |
145 | } | 130 | } |
146 | } | 131 | } |
147 | return irq; | 132 | return irq; |
@@ -154,7 +139,6 @@ static struct irqaction irq0 = { | |||
154 | .name = "HD64465", | 139 | .name = "HD64465", |
155 | }; | 140 | }; |
156 | 141 | ||
157 | |||
158 | static int __init setup_hd64465(void) | 142 | static int __init setup_hd64465(void) |
159 | { | 143 | { |
160 | int i; | 144 | int i; |
@@ -176,8 +160,8 @@ static int __init setup_hd64465(void) | |||
176 | 160 | ||
177 | rev = inw(HD64465_REG_SRR); | 161 | rev = inw(HD64465_REG_SRR); |
178 | printk(KERN_INFO "HD64465 hardware revision %d.%d\n", (rev >> 8) & 0xff, rev & 0xff); | 162 | printk(KERN_INFO "HD64465 hardware revision %d.%d\n", (rev >> 8) & 0xff, rev & 0xff); |
179 | 163 | ||
180 | outw(0xffff, HD64465_REG_NIMR); /* mask all interrupts */ | 164 | outw(0xffff, HD64465_REG_NIMR); /* mask all interrupts */ |
181 | 165 | ||
182 | for (i = 0; i < HD64465_IRQ_NUM ; i++) { | 166 | for (i = 0; i < HD64465_IRQ_NUM ; i++) { |
183 | irq_desc[HD64465_IRQ_BASE + i].chip = &hd64465_irq_type; | 167 | irq_desc[HD64465_IRQ_BASE + i].chip = &hd64465_irq_type; |
@@ -185,16 +169,13 @@ static int __init setup_hd64465(void) | |||
185 | 169 | ||
186 | setup_irq(CONFIG_HD64465_IRQ, &irq0); | 170 | setup_irq(CONFIG_HD64465_IRQ, &irq0); |
187 | 171 | ||
188 | #ifdef CONFIG_SERIAL | ||
189 | /* wake up the UART from STANDBY at this point */ | 172 | /* wake up the UART from STANDBY at this point */ |
190 | smscr = inw(HD64465_REG_SMSCR); | 173 | smscr = inw(HD64465_REG_SMSCR); |
191 | outw(smscr & (~HD64465_SMSCR_UARTST), HD64465_REG_SMSCR); | 174 | outw(smscr & (~HD64465_SMSCR_UARTST), HD64465_REG_SMSCR); |
192 | 175 | ||
193 | /* remap IO ports for first ISA serial port to HD64465 UART */ | 176 | /* remap IO ports for first ISA serial port to HD64465 UART */ |
194 | hd64465_port_map(0x3f8, 8, CONFIG_HD64465_IOBASE + 0x8000, 1); | 177 | hd64465_port_map(0x3f8, 8, CONFIG_HD64465_IOBASE + 0x8000, 1); |
195 | #endif | ||
196 | 178 | ||
197 | return 0; | 179 | return 0; |
198 | } | 180 | } |
199 | |||
200 | module_init(setup_hd64465); | 181 | module_init(setup_hd64465); |
diff --git a/arch/sh/configs/migor_defconfig b/arch/sh/configs/migor_defconfig new file mode 100644 index 000000000000..ee5900817f8f --- /dev/null +++ b/arch/sh/configs/migor_defconfig | |||
@@ -0,0 +1,824 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.24 | ||
4 | # Wed Feb 6 21:52:20 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
9 | CONFIG_GENERIC_BUG=y | ||
10 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
11 | CONFIG_GENERIC_HWEIGHT=y | ||
12 | CONFIG_GENERIC_HARDIRQS=y | ||
13 | CONFIG_GENERIC_IRQ_PROBE=y | ||
14 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
15 | CONFIG_GENERIC_TIME=y | ||
16 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
17 | CONFIG_SYS_SUPPORTS_NUMA=y | ||
18 | CONFIG_STACKTRACE_SUPPORT=y | ||
19 | CONFIG_LOCKDEP_SUPPORT=y | ||
20 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
21 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
22 | CONFIG_ARCH_NO_VIRT_TO_BUS=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_SWAP=y | ||
34 | CONFIG_SYSVIPC=y | ||
35 | CONFIG_SYSVIPC_SYSCTL=y | ||
36 | # CONFIG_POSIX_MQUEUE is not set | ||
37 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_USER_NS is not set | ||
40 | # CONFIG_PID_NS is not set | ||
41 | # CONFIG_AUDIT is not set | ||
42 | CONFIG_IKCONFIG=y | ||
43 | CONFIG_IKCONFIG_PROC=y | ||
44 | CONFIG_LOG_BUF_SHIFT=14 | ||
45 | # CONFIG_CGROUPS is not set | ||
46 | CONFIG_FAIR_GROUP_SCHED=y | ||
47 | CONFIG_FAIR_USER_SCHED=y | ||
48 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
49 | CONFIG_SYSFS_DEPRECATED=y | ||
50 | # CONFIG_RELAY is not set | ||
51 | CONFIG_BLK_DEV_INITRD=y | ||
52 | CONFIG_INITRAMFS_SOURCE="" | ||
53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
54 | CONFIG_SYSCTL=y | ||
55 | CONFIG_EMBEDDED=y | ||
56 | CONFIG_UID16=y | ||
57 | # CONFIG_SYSCTL_SYSCALL is not set | ||
58 | CONFIG_KALLSYMS=y | ||
59 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
60 | CONFIG_HOTPLUG=y | ||
61 | CONFIG_PRINTK=y | ||
62 | CONFIG_BUG=y | ||
63 | CONFIG_ELF_CORE=y | ||
64 | CONFIG_BASE_FULL=y | ||
65 | CONFIG_FUTEX=y | ||
66 | CONFIG_ANON_INODES=y | ||
67 | CONFIG_EPOLL=y | ||
68 | CONFIG_SIGNALFD=y | ||
69 | CONFIG_EVENTFD=y | ||
70 | CONFIG_SHMEM=y | ||
71 | CONFIG_VM_EVENT_COUNTERS=y | ||
72 | CONFIG_SLAB=y | ||
73 | # CONFIG_SLUB is not set | ||
74 | # CONFIG_SLOB is not set | ||
75 | CONFIG_PROFILING=y | ||
76 | # CONFIG_MARKERS is not set | ||
77 | CONFIG_OPROFILE=y | ||
78 | CONFIG_HAVE_OPROFILE=y | ||
79 | # CONFIG_HAVE_KPROBES is not set | ||
80 | CONFIG_SLABINFO=y | ||
81 | CONFIG_RT_MUTEXES=y | ||
82 | # CONFIG_TINY_SHMEM is not set | ||
83 | CONFIG_BASE_SMALL=0 | ||
84 | CONFIG_MODULES=y | ||
85 | # CONFIG_MODULE_UNLOAD is not set | ||
86 | # CONFIG_MODVERSIONS is not set | ||
87 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
88 | # CONFIG_KMOD is not set | ||
89 | CONFIG_BLOCK=y | ||
90 | # CONFIG_LBD is not set | ||
91 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
92 | # CONFIG_LSF is not set | ||
93 | # CONFIG_BLK_DEV_BSG is not set | ||
94 | |||
95 | # | ||
96 | # IO Schedulers | ||
97 | # | ||
98 | CONFIG_IOSCHED_NOOP=y | ||
99 | CONFIG_IOSCHED_AS=y | ||
100 | CONFIG_IOSCHED_DEADLINE=y | ||
101 | CONFIG_IOSCHED_CFQ=y | ||
102 | CONFIG_DEFAULT_AS=y | ||
103 | # CONFIG_DEFAULT_DEADLINE is not set | ||
104 | # CONFIG_DEFAULT_CFQ is not set | ||
105 | # CONFIG_DEFAULT_NOOP is not set | ||
106 | CONFIG_DEFAULT_IOSCHED="anticipatory" | ||
107 | CONFIG_CLASSIC_RCU=y | ||
108 | # CONFIG_PREEMPT_RCU is not set | ||
109 | |||
110 | # | ||
111 | # System type | ||
112 | # | ||
113 | CONFIG_CPU_SH4=y | ||
114 | CONFIG_CPU_SH4A=y | ||
115 | CONFIG_CPU_SH4AL_DSP=y | ||
116 | CONFIG_CPU_SHX2=y | ||
117 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
118 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
119 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
120 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
121 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
122 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
123 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
124 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
125 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
126 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
128 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
129 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
130 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
131 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
144 | CONFIG_CPU_SUBTYPE_SH7722=y | ||
145 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
147 | |||
148 | # | ||
149 | # Memory management options | ||
150 | # | ||
151 | CONFIG_QUICKLIST=y | ||
152 | CONFIG_MMU=y | ||
153 | CONFIG_PAGE_OFFSET=0x80000000 | ||
154 | CONFIG_MEMORY_START=0x0c000000 | ||
155 | CONFIG_MEMORY_SIZE=0x04000000 | ||
156 | CONFIG_29BIT=y | ||
157 | # CONFIG_X2TLB is not set | ||
158 | CONFIG_VSYSCALL=y | ||
159 | CONFIG_NUMA=y | ||
160 | CONFIG_NODES_SHIFT=1 | ||
161 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
162 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
163 | CONFIG_MAX_ACTIVE_REGIONS=2 | ||
164 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
165 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
166 | CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | ||
167 | CONFIG_PAGE_SIZE_4KB=y | ||
168 | # CONFIG_PAGE_SIZE_8KB is not set | ||
169 | # CONFIG_PAGE_SIZE_64KB is not set | ||
170 | CONFIG_SELECT_MEMORY_MODEL=y | ||
171 | # CONFIG_FLATMEM_MANUAL is not set | ||
172 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
173 | CONFIG_SPARSEMEM_MANUAL=y | ||
174 | CONFIG_SPARSEMEM=y | ||
175 | CONFIG_NEED_MULTIPLE_NODES=y | ||
176 | CONFIG_HAVE_MEMORY_PRESENT=y | ||
177 | CONFIG_SPARSEMEM_STATIC=y | ||
178 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
179 | # CONFIG_MEMORY_HOTPLUG is not set | ||
180 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
181 | # CONFIG_MIGRATION is not set | ||
182 | # CONFIG_RESOURCES_64BIT is not set | ||
183 | CONFIG_ZONE_DMA_FLAG=0 | ||
184 | CONFIG_NR_QUICK=2 | ||
185 | |||
186 | # | ||
187 | # Cache configuration | ||
188 | # | ||
189 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
190 | CONFIG_CACHE_WRITEBACK=y | ||
191 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
192 | # CONFIG_CACHE_OFF is not set | ||
193 | |||
194 | # | ||
195 | # Processor features | ||
196 | # | ||
197 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
198 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
199 | # CONFIG_SH_FPU_EMU is not set | ||
200 | CONFIG_SH_DSP=y | ||
201 | # CONFIG_SH_STORE_QUEUES is not set | ||
202 | CONFIG_CPU_HAS_INTEVT=y | ||
203 | CONFIG_CPU_HAS_SR_RB=y | ||
204 | CONFIG_CPU_HAS_PTEA=y | ||
205 | CONFIG_CPU_HAS_DSP=y | ||
206 | |||
207 | # | ||
208 | # Board support | ||
209 | # | ||
210 | # CONFIG_SH_7722_SOLUTION_ENGINE is not set | ||
211 | CONFIG_SH_MIGOR=y | ||
212 | |||
213 | # | ||
214 | # Timer and clock configuration | ||
215 | # | ||
216 | CONFIG_SH_TMU=y | ||
217 | CONFIG_SH_TIMER_IRQ=16 | ||
218 | CONFIG_SH_PCLK_FREQ=33333333 | ||
219 | # CONFIG_TICK_ONESHOT is not set | ||
220 | # CONFIG_NO_HZ is not set | ||
221 | # CONFIG_HIGH_RES_TIMERS is not set | ||
222 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
223 | |||
224 | # | ||
225 | # CPU Frequency scaling | ||
226 | # | ||
227 | # CONFIG_CPU_FREQ is not set | ||
228 | |||
229 | # | ||
230 | # DMA support | ||
231 | # | ||
232 | # CONFIG_SH_DMA is not set | ||
233 | |||
234 | # | ||
235 | # Companion Chips | ||
236 | # | ||
237 | |||
238 | # | ||
239 | # Additional SuperH Device Drivers | ||
240 | # | ||
241 | # CONFIG_HEARTBEAT is not set | ||
242 | # CONFIG_PUSH_SWITCH is not set | ||
243 | |||
244 | # | ||
245 | # Kernel features | ||
246 | # | ||
247 | # CONFIG_HZ_100 is not set | ||
248 | CONFIG_HZ_250=y | ||
249 | # CONFIG_HZ_300 is not set | ||
250 | # CONFIG_HZ_1000 is not set | ||
251 | CONFIG_HZ=250 | ||
252 | # CONFIG_SCHED_HRTICK is not set | ||
253 | # CONFIG_KEXEC is not set | ||
254 | # CONFIG_CRASH_DUMP is not set | ||
255 | CONFIG_PREEMPT_NONE=y | ||
256 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
257 | # CONFIG_PREEMPT is not set | ||
258 | CONFIG_RCU_TRACE=y | ||
259 | CONFIG_GUSA=y | ||
260 | |||
261 | # | ||
262 | # Boot options | ||
263 | # | ||
264 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
265 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
266 | CONFIG_CMDLINE_BOOL=y | ||
267 | CONFIG_CMDLINE="console=ttySC0,115200 earlyprintk=serial ip=on" | ||
268 | |||
269 | # | ||
270 | # Bus options | ||
271 | # | ||
272 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
273 | # CONFIG_PCCARD is not set | ||
274 | |||
275 | # | ||
276 | # Executable file formats | ||
277 | # | ||
278 | CONFIG_BINFMT_ELF=y | ||
279 | # CONFIG_BINFMT_MISC is not set | ||
280 | |||
281 | # | ||
282 | # Networking | ||
283 | # | ||
284 | CONFIG_NET=y | ||
285 | |||
286 | # | ||
287 | # Networking options | ||
288 | # | ||
289 | CONFIG_PACKET=y | ||
290 | # CONFIG_PACKET_MMAP is not set | ||
291 | CONFIG_UNIX=y | ||
292 | CONFIG_XFRM=y | ||
293 | # CONFIG_XFRM_USER is not set | ||
294 | # CONFIG_XFRM_SUB_POLICY is not set | ||
295 | # CONFIG_XFRM_MIGRATE is not set | ||
296 | # CONFIG_XFRM_STATISTICS is not set | ||
297 | # CONFIG_NET_KEY is not set | ||
298 | CONFIG_INET=y | ||
299 | # CONFIG_IP_MULTICAST is not set | ||
300 | # CONFIG_IP_ADVANCED_ROUTER is not set | ||
301 | CONFIG_IP_FIB_HASH=y | ||
302 | CONFIG_IP_PNP=y | ||
303 | CONFIG_IP_PNP_DHCP=y | ||
304 | # CONFIG_IP_PNP_BOOTP is not set | ||
305 | # CONFIG_IP_PNP_RARP is not set | ||
306 | # CONFIG_NET_IPIP is not set | ||
307 | # CONFIG_NET_IPGRE is not set | ||
308 | # CONFIG_ARPD is not set | ||
309 | # CONFIG_SYN_COOKIES is not set | ||
310 | # CONFIG_INET_AH is not set | ||
311 | # CONFIG_INET_ESP is not set | ||
312 | # CONFIG_INET_IPCOMP is not set | ||
313 | # CONFIG_INET_XFRM_TUNNEL is not set | ||
314 | # CONFIG_INET_TUNNEL is not set | ||
315 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
316 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
317 | CONFIG_INET_XFRM_MODE_BEET=y | ||
318 | # CONFIG_INET_LRO is not set | ||
319 | CONFIG_INET_DIAG=y | ||
320 | CONFIG_INET_TCP_DIAG=y | ||
321 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
322 | CONFIG_TCP_CONG_CUBIC=y | ||
323 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
324 | # CONFIG_TCP_MD5SIG is not set | ||
325 | # CONFIG_IPV6 is not set | ||
326 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
327 | # CONFIG_INET6_TUNNEL is not set | ||
328 | # CONFIG_NETWORK_SECMARK is not set | ||
329 | # CONFIG_NETFILTER is not set | ||
330 | # CONFIG_IP_DCCP is not set | ||
331 | # CONFIG_IP_SCTP is not set | ||
332 | # CONFIG_TIPC is not set | ||
333 | # CONFIG_ATM is not set | ||
334 | # CONFIG_BRIDGE is not set | ||
335 | # CONFIG_VLAN_8021Q is not set | ||
336 | # CONFIG_DECNET is not set | ||
337 | # CONFIG_LLC2 is not set | ||
338 | # CONFIG_IPX is not set | ||
339 | # CONFIG_ATALK is not set | ||
340 | # CONFIG_X25 is not set | ||
341 | # CONFIG_LAPB is not set | ||
342 | # CONFIG_ECONET is not set | ||
343 | # CONFIG_WAN_ROUTER is not set | ||
344 | # CONFIG_NET_SCHED is not set | ||
345 | |||
346 | # | ||
347 | # Network testing | ||
348 | # | ||
349 | # CONFIG_NET_PKTGEN is not set | ||
350 | # CONFIG_HAMRADIO is not set | ||
351 | # CONFIG_CAN is not set | ||
352 | # CONFIG_IRDA is not set | ||
353 | # CONFIG_BT is not set | ||
354 | # CONFIG_AF_RXRPC is not set | ||
355 | |||
356 | # | ||
357 | # Wireless | ||
358 | # | ||
359 | # CONFIG_CFG80211 is not set | ||
360 | CONFIG_WIRELESS_EXT=y | ||
361 | # CONFIG_MAC80211 is not set | ||
362 | # CONFIG_IEEE80211 is not set | ||
363 | # CONFIG_RFKILL is not set | ||
364 | # CONFIG_NET_9P is not set | ||
365 | |||
366 | # | ||
367 | # Device Drivers | ||
368 | # | ||
369 | |||
370 | # | ||
371 | # Generic Driver Options | ||
372 | # | ||
373 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
374 | CONFIG_STANDALONE=y | ||
375 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
376 | CONFIG_FW_LOADER=m | ||
377 | # CONFIG_SYS_HYPERVISOR is not set | ||
378 | # CONFIG_CONNECTOR is not set | ||
379 | # CONFIG_MTD is not set | ||
380 | # CONFIG_PARPORT is not set | ||
381 | CONFIG_BLK_DEV=y | ||
382 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
383 | # CONFIG_BLK_DEV_LOOP is not set | ||
384 | # CONFIG_BLK_DEV_NBD is not set | ||
385 | CONFIG_BLK_DEV_RAM=y | ||
386 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
387 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
388 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
389 | # CONFIG_CDROM_PKTCDVD is not set | ||
390 | # CONFIG_ATA_OVER_ETH is not set | ||
391 | CONFIG_MISC_DEVICES=y | ||
392 | # CONFIG_EEPROM_93CX6 is not set | ||
393 | # CONFIG_IDE is not set | ||
394 | |||
395 | # | ||
396 | # SCSI device support | ||
397 | # | ||
398 | # CONFIG_RAID_ATTRS is not set | ||
399 | CONFIG_SCSI=y | ||
400 | CONFIG_SCSI_DMA=y | ||
401 | # CONFIG_SCSI_TGT is not set | ||
402 | # CONFIG_SCSI_NETLINK is not set | ||
403 | CONFIG_SCSI_PROC_FS=y | ||
404 | |||
405 | # | ||
406 | # SCSI support type (disk, tape, CD-ROM) | ||
407 | # | ||
408 | CONFIG_BLK_DEV_SD=y | ||
409 | # CONFIG_CHR_DEV_ST is not set | ||
410 | # CONFIG_CHR_DEV_OSST is not set | ||
411 | # CONFIG_BLK_DEV_SR is not set | ||
412 | # CONFIG_CHR_DEV_SG is not set | ||
413 | # CONFIG_CHR_DEV_SCH is not set | ||
414 | |||
415 | # | ||
416 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
417 | # | ||
418 | # CONFIG_SCSI_MULTI_LUN is not set | ||
419 | # CONFIG_SCSI_CONSTANTS is not set | ||
420 | # CONFIG_SCSI_LOGGING is not set | ||
421 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
422 | CONFIG_SCSI_WAIT_SCAN=m | ||
423 | |||
424 | # | ||
425 | # SCSI Transports | ||
426 | # | ||
427 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
428 | # CONFIG_SCSI_FC_ATTRS is not set | ||
429 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
430 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
431 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
432 | CONFIG_SCSI_LOWLEVEL=y | ||
433 | # CONFIG_ISCSI_TCP is not set | ||
434 | # CONFIG_SCSI_DEBUG is not set | ||
435 | # CONFIG_ATA is not set | ||
436 | # CONFIG_MD is not set | ||
437 | CONFIG_NETDEVICES=y | ||
438 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
439 | # CONFIG_DUMMY is not set | ||
440 | # CONFIG_BONDING is not set | ||
441 | # CONFIG_MACVLAN is not set | ||
442 | # CONFIG_EQUALIZER is not set | ||
443 | # CONFIG_TUN is not set | ||
444 | # CONFIG_VETH is not set | ||
445 | # CONFIG_PHYLIB is not set | ||
446 | CONFIG_NET_ETHERNET=y | ||
447 | CONFIG_MII=y | ||
448 | # CONFIG_AX88796 is not set | ||
449 | # CONFIG_STNIC is not set | ||
450 | CONFIG_SMC91X=y | ||
451 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
452 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
453 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
454 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
455 | # CONFIG_B44 is not set | ||
456 | # CONFIG_NETDEV_1000 is not set | ||
457 | # CONFIG_NETDEV_10000 is not set | ||
458 | |||
459 | # | ||
460 | # Wireless LAN | ||
461 | # | ||
462 | # CONFIG_WLAN_PRE80211 is not set | ||
463 | # CONFIG_WLAN_80211 is not set | ||
464 | # CONFIG_WAN is not set | ||
465 | # CONFIG_PPP is not set | ||
466 | # CONFIG_SLIP is not set | ||
467 | # CONFIG_NETCONSOLE is not set | ||
468 | # CONFIG_NETPOLL is not set | ||
469 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
470 | # CONFIG_ISDN is not set | ||
471 | # CONFIG_PHONE is not set | ||
472 | |||
473 | # | ||
474 | # Input device support | ||
475 | # | ||
476 | CONFIG_INPUT=y | ||
477 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
478 | # CONFIG_INPUT_POLLDEV is not set | ||
479 | |||
480 | # | ||
481 | # Userland interfaces | ||
482 | # | ||
483 | # CONFIG_INPUT_MOUSEDEV is not set | ||
484 | # CONFIG_INPUT_JOYDEV is not set | ||
485 | # CONFIG_INPUT_EVDEV is not set | ||
486 | # CONFIG_INPUT_EVBUG is not set | ||
487 | |||
488 | # | ||
489 | # Input Device Drivers | ||
490 | # | ||
491 | # CONFIG_INPUT_KEYBOARD is not set | ||
492 | # CONFIG_INPUT_MOUSE is not set | ||
493 | # CONFIG_INPUT_JOYSTICK is not set | ||
494 | # CONFIG_INPUT_TABLET is not set | ||
495 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
496 | # CONFIG_INPUT_MISC is not set | ||
497 | |||
498 | # | ||
499 | # Hardware I/O ports | ||
500 | # | ||
501 | # CONFIG_SERIO is not set | ||
502 | # CONFIG_GAMEPORT is not set | ||
503 | |||
504 | # | ||
505 | # Character devices | ||
506 | # | ||
507 | CONFIG_VT=y | ||
508 | CONFIG_VT_CONSOLE=y | ||
509 | CONFIG_HW_CONSOLE=y | ||
510 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
511 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
512 | |||
513 | # | ||
514 | # Serial drivers | ||
515 | # | ||
516 | # CONFIG_SERIAL_8250 is not set | ||
517 | |||
518 | # | ||
519 | # Non-8250 serial port support | ||
520 | # | ||
521 | CONFIG_SERIAL_SH_SCI=y | ||
522 | CONFIG_SERIAL_SH_SCI_NR_UARTS=3 | ||
523 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
524 | CONFIG_SERIAL_CORE=y | ||
525 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
526 | CONFIG_UNIX98_PTYS=y | ||
527 | CONFIG_LEGACY_PTYS=y | ||
528 | CONFIG_LEGACY_PTY_COUNT=256 | ||
529 | # CONFIG_IPMI_HANDLER is not set | ||
530 | CONFIG_HW_RANDOM=y | ||
531 | # CONFIG_R3964 is not set | ||
532 | # CONFIG_RAW_DRIVER is not set | ||
533 | # CONFIG_TCG_TPM is not set | ||
534 | # CONFIG_I2C is not set | ||
535 | |||
536 | # | ||
537 | # SPI support | ||
538 | # | ||
539 | # CONFIG_SPI is not set | ||
540 | # CONFIG_SPI_MASTER is not set | ||
541 | # CONFIG_W1 is not set | ||
542 | # CONFIG_POWER_SUPPLY is not set | ||
543 | # CONFIG_HWMON is not set | ||
544 | # CONFIG_WATCHDOG is not set | ||
545 | |||
546 | # | ||
547 | # Sonics Silicon Backplane | ||
548 | # | ||
549 | CONFIG_SSB_POSSIBLE=y | ||
550 | # CONFIG_SSB is not set | ||
551 | |||
552 | # | ||
553 | # Multifunction device drivers | ||
554 | # | ||
555 | # CONFIG_MFD_SM501 is not set | ||
556 | |||
557 | # | ||
558 | # Multimedia devices | ||
559 | # | ||
560 | # CONFIG_VIDEO_DEV is not set | ||
561 | # CONFIG_DVB_CORE is not set | ||
562 | # CONFIG_DAB is not set | ||
563 | |||
564 | # | ||
565 | # Graphics support | ||
566 | # | ||
567 | # CONFIG_VGASTATE is not set | ||
568 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
569 | # CONFIG_FB is not set | ||
570 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
571 | |||
572 | # | ||
573 | # Display device support | ||
574 | # | ||
575 | # CONFIG_DISPLAY_SUPPORT is not set | ||
576 | |||
577 | # | ||
578 | # Console display driver support | ||
579 | # | ||
580 | CONFIG_DUMMY_CONSOLE=y | ||
581 | |||
582 | # | ||
583 | # Sound | ||
584 | # | ||
585 | # CONFIG_SOUND is not set | ||
586 | CONFIG_HID_SUPPORT=y | ||
587 | CONFIG_HID=y | ||
588 | # CONFIG_HID_DEBUG is not set | ||
589 | # CONFIG_HIDRAW is not set | ||
590 | CONFIG_USB_SUPPORT=y | ||
591 | CONFIG_USB_ARCH_HAS_HCD=y | ||
592 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
593 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
594 | # CONFIG_USB is not set | ||
595 | |||
596 | # | ||
597 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
598 | # | ||
599 | CONFIG_USB_GADGET=y | ||
600 | # CONFIG_USB_GADGET_DEBUG_FILES is not set | ||
601 | # CONFIG_USB_GADGET_DEBUG_FS is not set | ||
602 | CONFIG_USB_GADGET_SELECTED=y | ||
603 | # CONFIG_USB_GADGET_AMD5536UDC is not set | ||
604 | # CONFIG_USB_GADGET_ATMEL_USBA is not set | ||
605 | # CONFIG_USB_GADGET_FSL_USB2 is not set | ||
606 | # CONFIG_USB_GADGET_NET2280 is not set | ||
607 | # CONFIG_USB_GADGET_PXA2XX is not set | ||
608 | CONFIG_USB_GADGET_M66592=y | ||
609 | CONFIG_USB_M66592=y | ||
610 | CONFIG_SUPERH_BUILT_IN_M66592=y | ||
611 | # CONFIG_USB_GADGET_GOKU is not set | ||
612 | # CONFIG_USB_GADGET_LH7A40X is not set | ||
613 | # CONFIG_USB_GADGET_OMAP is not set | ||
614 | # CONFIG_USB_GADGET_S3C2410 is not set | ||
615 | # CONFIG_USB_GADGET_AT91 is not set | ||
616 | # CONFIG_USB_GADGET_DUMMY_HCD is not set | ||
617 | CONFIG_USB_GADGET_DUALSPEED=y | ||
618 | # CONFIG_USB_ZERO is not set | ||
619 | # CONFIG_USB_ETH is not set | ||
620 | # CONFIG_USB_GADGETFS is not set | ||
621 | # CONFIG_USB_FILE_STORAGE is not set | ||
622 | CONFIG_USB_G_SERIAL=y | ||
623 | # CONFIG_USB_MIDI_GADGET is not set | ||
624 | # CONFIG_USB_G_PRINTER is not set | ||
625 | # CONFIG_MMC is not set | ||
626 | # CONFIG_NEW_LEDS is not set | ||
627 | CONFIG_RTC_LIB=y | ||
628 | CONFIG_RTC_CLASS=y | ||
629 | CONFIG_RTC_HCTOSYS=y | ||
630 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
631 | # CONFIG_RTC_DEBUG is not set | ||
632 | |||
633 | # | ||
634 | # RTC interfaces | ||
635 | # | ||
636 | CONFIG_RTC_INTF_SYSFS=y | ||
637 | CONFIG_RTC_INTF_PROC=y | ||
638 | CONFIG_RTC_INTF_DEV=y | ||
639 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
640 | # CONFIG_RTC_DRV_TEST is not set | ||
641 | |||
642 | # | ||
643 | # SPI RTC drivers | ||
644 | # | ||
645 | |||
646 | # | ||
647 | # Platform RTC drivers | ||
648 | # | ||
649 | # CONFIG_RTC_DRV_DS1553 is not set | ||
650 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
651 | # CONFIG_RTC_DRV_DS1742 is not set | ||
652 | # CONFIG_RTC_DRV_M48T86 is not set | ||
653 | # CONFIG_RTC_DRV_M48T59 is not set | ||
654 | # CONFIG_RTC_DRV_V3020 is not set | ||
655 | |||
656 | # | ||
657 | # on-CPU RTC drivers | ||
658 | # | ||
659 | CONFIG_RTC_DRV_SH=y | ||
660 | |||
661 | # | ||
662 | # Userspace I/O | ||
663 | # | ||
664 | # CONFIG_UIO is not set | ||
665 | |||
666 | # | ||
667 | # File systems | ||
668 | # | ||
669 | # CONFIG_EXT2_FS is not set | ||
670 | # CONFIG_EXT3_FS is not set | ||
671 | # CONFIG_EXT4DEV_FS is not set | ||
672 | # CONFIG_REISERFS_FS is not set | ||
673 | # CONFIG_JFS_FS is not set | ||
674 | # CONFIG_FS_POSIX_ACL is not set | ||
675 | # CONFIG_XFS_FS is not set | ||
676 | # CONFIG_GFS2_FS is not set | ||
677 | # CONFIG_OCFS2_FS is not set | ||
678 | # CONFIG_MINIX_FS is not set | ||
679 | # CONFIG_ROMFS_FS is not set | ||
680 | # CONFIG_INOTIFY is not set | ||
681 | # CONFIG_QUOTA is not set | ||
682 | # CONFIG_DNOTIFY is not set | ||
683 | # CONFIG_AUTOFS_FS is not set | ||
684 | # CONFIG_AUTOFS4_FS is not set | ||
685 | # CONFIG_FUSE_FS is not set | ||
686 | |||
687 | # | ||
688 | # CD-ROM/DVD Filesystems | ||
689 | # | ||
690 | # CONFIG_ISO9660_FS is not set | ||
691 | # CONFIG_UDF_FS is not set | ||
692 | |||
693 | # | ||
694 | # DOS/FAT/NT Filesystems | ||
695 | # | ||
696 | # CONFIG_MSDOS_FS is not set | ||
697 | # CONFIG_VFAT_FS is not set | ||
698 | # CONFIG_NTFS_FS is not set | ||
699 | |||
700 | # | ||
701 | # Pseudo filesystems | ||
702 | # | ||
703 | CONFIG_PROC_FS=y | ||
704 | CONFIG_PROC_KCORE=y | ||
705 | CONFIG_PROC_SYSCTL=y | ||
706 | CONFIG_SYSFS=y | ||
707 | CONFIG_TMPFS=y | ||
708 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
709 | # CONFIG_HUGETLBFS is not set | ||
710 | # CONFIG_HUGETLB_PAGE is not set | ||
711 | # CONFIG_CONFIGFS_FS is not set | ||
712 | |||
713 | # | ||
714 | # Miscellaneous filesystems | ||
715 | # | ||
716 | # CONFIG_ADFS_FS is not set | ||
717 | # CONFIG_AFFS_FS is not set | ||
718 | # CONFIG_HFS_FS is not set | ||
719 | # CONFIG_HFSPLUS_FS is not set | ||
720 | # CONFIG_BEFS_FS is not set | ||
721 | # CONFIG_BFS_FS is not set | ||
722 | # CONFIG_EFS_FS is not set | ||
723 | # CONFIG_CRAMFS is not set | ||
724 | # CONFIG_VXFS_FS is not set | ||
725 | # CONFIG_HPFS_FS is not set | ||
726 | # CONFIG_QNX4FS_FS is not set | ||
727 | # CONFIG_SYSV_FS is not set | ||
728 | # CONFIG_UFS_FS is not set | ||
729 | # CONFIG_NETWORK_FILESYSTEMS is not set | ||
730 | |||
731 | # | ||
732 | # Partition Types | ||
733 | # | ||
734 | # CONFIG_PARTITION_ADVANCED is not set | ||
735 | CONFIG_MSDOS_PARTITION=y | ||
736 | # CONFIG_NLS is not set | ||
737 | # CONFIG_DLM is not set | ||
738 | |||
739 | # | ||
740 | # Kernel hacking | ||
741 | # | ||
742 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
743 | # CONFIG_PRINTK_TIME is not set | ||
744 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
745 | CONFIG_ENABLE_MUST_CHECK=y | ||
746 | # CONFIG_MAGIC_SYSRQ is not set | ||
747 | # CONFIG_UNUSED_SYMBOLS is not set | ||
748 | CONFIG_DEBUG_FS=y | ||
749 | # CONFIG_HEADERS_CHECK is not set | ||
750 | # CONFIG_DEBUG_KERNEL is not set | ||
751 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
752 | # CONFIG_SAMPLES is not set | ||
753 | # CONFIG_SH_STANDARD_BIOS is not set | ||
754 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
755 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 | ||
756 | CONFIG_EARLY_PRINTK=y | ||
757 | # CONFIG_SH_KGDB is not set | ||
758 | |||
759 | # | ||
760 | # Security options | ||
761 | # | ||
762 | # CONFIG_KEYS is not set | ||
763 | # CONFIG_SECURITY is not set | ||
764 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
765 | CONFIG_CRYPTO=y | ||
766 | # CONFIG_CRYPTO_SEQIV is not set | ||
767 | # CONFIG_CRYPTO_MANAGER is not set | ||
768 | # CONFIG_CRYPTO_HMAC is not set | ||
769 | # CONFIG_CRYPTO_XCBC is not set | ||
770 | # CONFIG_CRYPTO_NULL is not set | ||
771 | # CONFIG_CRYPTO_MD4 is not set | ||
772 | # CONFIG_CRYPTO_MD5 is not set | ||
773 | # CONFIG_CRYPTO_SHA1 is not set | ||
774 | # CONFIG_CRYPTO_SHA256 is not set | ||
775 | # CONFIG_CRYPTO_SHA512 is not set | ||
776 | # CONFIG_CRYPTO_WP512 is not set | ||
777 | # CONFIG_CRYPTO_TGR192 is not set | ||
778 | # CONFIG_CRYPTO_GF128MUL is not set | ||
779 | # CONFIG_CRYPTO_ECB is not set | ||
780 | # CONFIG_CRYPTO_CBC is not set | ||
781 | # CONFIG_CRYPTO_PCBC is not set | ||
782 | # CONFIG_CRYPTO_LRW is not set | ||
783 | # CONFIG_CRYPTO_XTS is not set | ||
784 | # CONFIG_CRYPTO_CTR is not set | ||
785 | # CONFIG_CRYPTO_GCM is not set | ||
786 | # CONFIG_CRYPTO_CCM is not set | ||
787 | # CONFIG_CRYPTO_CRYPTD is not set | ||
788 | # CONFIG_CRYPTO_DES is not set | ||
789 | # CONFIG_CRYPTO_FCRYPT is not set | ||
790 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
791 | # CONFIG_CRYPTO_TWOFISH is not set | ||
792 | # CONFIG_CRYPTO_SERPENT is not set | ||
793 | # CONFIG_CRYPTO_AES is not set | ||
794 | # CONFIG_CRYPTO_CAST5 is not set | ||
795 | # CONFIG_CRYPTO_CAST6 is not set | ||
796 | # CONFIG_CRYPTO_TEA is not set | ||
797 | # CONFIG_CRYPTO_ARC4 is not set | ||
798 | # CONFIG_CRYPTO_KHAZAD is not set | ||
799 | # CONFIG_CRYPTO_ANUBIS is not set | ||
800 | # CONFIG_CRYPTO_SEED is not set | ||
801 | # CONFIG_CRYPTO_SALSA20 is not set | ||
802 | # CONFIG_CRYPTO_DEFLATE is not set | ||
803 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
804 | # CONFIG_CRYPTO_CRC32C is not set | ||
805 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
806 | # CONFIG_CRYPTO_TEST is not set | ||
807 | # CONFIG_CRYPTO_AUTHENC is not set | ||
808 | # CONFIG_CRYPTO_LZO is not set | ||
809 | CONFIG_CRYPTO_HW=y | ||
810 | |||
811 | # | ||
812 | # Library routines | ||
813 | # | ||
814 | CONFIG_BITREVERSE=y | ||
815 | # CONFIG_CRC_CCITT is not set | ||
816 | # CONFIG_CRC16 is not set | ||
817 | # CONFIG_CRC_ITU_T is not set | ||
818 | CONFIG_CRC32=y | ||
819 | # CONFIG_CRC7 is not set | ||
820 | # CONFIG_LIBCRC32C is not set | ||
821 | CONFIG_PLIST=y | ||
822 | CONFIG_HAS_IOMEM=y | ||
823 | CONFIG_HAS_IOPORT=y | ||
824 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/configs/rts7751r2d1_defconfig b/arch/sh/configs/rts7751r2d1_defconfig index 2dc754e5b733..3a915fd436d9 100644 --- a/arch/sh/configs/rts7751r2d1_defconfig +++ b/arch/sh/configs/rts7751r2d1_defconfig | |||
@@ -1,9 +1,10 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.24 |
4 | # Tue Aug 14 18:04:44 2007 | 4 | # Thu Feb 7 16:25:55 2008 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
8 | CONFIG_GENERIC_BUG=y | 9 | CONFIG_GENERIC_BUG=y |
9 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 10 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
@@ -36,9 +37,14 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
36 | # CONFIG_BSD_PROCESS_ACCT is not set | 37 | # CONFIG_BSD_PROCESS_ACCT is not set |
37 | # CONFIG_TASKSTATS is not set | 38 | # CONFIG_TASKSTATS is not set |
38 | # CONFIG_USER_NS is not set | 39 | # CONFIG_USER_NS is not set |
40 | # CONFIG_PID_NS is not set | ||
39 | # CONFIG_AUDIT is not set | 41 | # CONFIG_AUDIT is not set |
40 | # CONFIG_IKCONFIG is not set | 42 | # CONFIG_IKCONFIG is not set |
41 | CONFIG_LOG_BUF_SHIFT=14 | 43 | CONFIG_LOG_BUF_SHIFT=14 |
44 | # CONFIG_CGROUPS is not set | ||
45 | CONFIG_FAIR_GROUP_SCHED=y | ||
46 | CONFIG_FAIR_USER_SCHED=y | ||
47 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
42 | CONFIG_SYSFS_DEPRECATED=y | 48 | CONFIG_SYSFS_DEPRECATED=y |
43 | # CONFIG_RELAY is not set | 49 | # CONFIG_RELAY is not set |
44 | # CONFIG_BLK_DEV_INITRD is not set | 50 | # CONFIG_BLK_DEV_INITRD is not set |
@@ -53,6 +59,7 @@ CONFIG_HOTPLUG=y | |||
53 | CONFIG_PRINTK=y | 59 | CONFIG_PRINTK=y |
54 | CONFIG_BUG=y | 60 | CONFIG_BUG=y |
55 | CONFIG_ELF_CORE=y | 61 | CONFIG_ELF_CORE=y |
62 | CONFIG_COMPAT_BRK=y | ||
56 | CONFIG_BASE_FULL=y | 63 | CONFIG_BASE_FULL=y |
57 | CONFIG_FUTEX=y | 64 | CONFIG_FUTEX=y |
58 | CONFIG_ANON_INODES=y | 65 | CONFIG_ANON_INODES=y |
@@ -65,6 +72,13 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
65 | CONFIG_SLAB=y | 72 | CONFIG_SLAB=y |
66 | # CONFIG_SLUB is not set | 73 | # CONFIG_SLUB is not set |
67 | # CONFIG_SLOB is not set | 74 | # CONFIG_SLOB is not set |
75 | CONFIG_PROFILING=y | ||
76 | # CONFIG_MARKERS is not set | ||
77 | CONFIG_OPROFILE=y | ||
78 | CONFIG_HAVE_OPROFILE=y | ||
79 | # CONFIG_HAVE_KPROBES is not set | ||
80 | CONFIG_PROC_PAGE_MONITOR=y | ||
81 | CONFIG_SLABINFO=y | ||
68 | CONFIG_RT_MUTEXES=y | 82 | CONFIG_RT_MUTEXES=y |
69 | # CONFIG_TINY_SHMEM is not set | 83 | # CONFIG_TINY_SHMEM is not set |
70 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
@@ -91,13 +105,17 @@ CONFIG_DEFAULT_AS=y | |||
91 | # CONFIG_DEFAULT_CFQ is not set | 105 | # CONFIG_DEFAULT_CFQ is not set |
92 | # CONFIG_DEFAULT_NOOP is not set | 106 | # CONFIG_DEFAULT_NOOP is not set |
93 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 107 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
108 | CONFIG_CLASSIC_RCU=y | ||
109 | # CONFIG_PREEMPT_RCU is not set | ||
94 | 110 | ||
95 | # | 111 | # |
96 | # System type | 112 | # System type |
97 | # | 113 | # |
98 | CONFIG_CPU_SH4=y | 114 | CONFIG_CPU_SH4=y |
99 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 115 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
116 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
100 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | 117 | # CONFIG_CPU_SUBTYPE_SH7206 is not set |
118 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
101 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | 119 | # CONFIG_CPU_SUBTYPE_SH7705 is not set |
102 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | 120 | # CONFIG_CPU_SUBTYPE_SH7706 is not set |
103 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | 121 | # CONFIG_CPU_SUBTYPE_SH7707 is not set |
@@ -105,6 +123,8 @@ CONFIG_CPU_SH4=y | |||
105 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | 123 | # CONFIG_CPU_SUBTYPE_SH7709 is not set |
106 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | 124 | # CONFIG_CPU_SUBTYPE_SH7710 is not set |
107 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | 125 | # CONFIG_CPU_SUBTYPE_SH7712 is not set |
126 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
108 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | 128 | # CONFIG_CPU_SUBTYPE_SH7750 is not set |
109 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | 129 | # CONFIG_CPU_SUBTYPE_SH7091 is not set |
110 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | 130 | # CONFIG_CPU_SUBTYPE_SH7750R is not set |
@@ -113,14 +133,15 @@ CONFIG_CPU_SH4=y | |||
113 | CONFIG_CPU_SUBTYPE_SH7751R=y | 133 | CONFIG_CPU_SUBTYPE_SH7751R=y |
114 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | 134 | # CONFIG_CPU_SUBTYPE_SH7760 is not set |
115 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | 135 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set |
116 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | 136 | # CONFIG_CPU_SUBTYPE_SH7763 is not set |
117 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
118 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 137 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
119 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 138 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
120 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
121 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 140 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
122 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 141 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
123 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 142 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
143 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
124 | 145 | ||
125 | # | 146 | # |
126 | # Memory management options | 147 | # Memory management options |
@@ -130,6 +151,7 @@ CONFIG_MMU=y | |||
130 | CONFIG_PAGE_OFFSET=0x80000000 | 151 | CONFIG_PAGE_OFFSET=0x80000000 |
131 | CONFIG_MEMORY_START=0x0c000000 | 152 | CONFIG_MEMORY_START=0x0c000000 |
132 | CONFIG_MEMORY_SIZE=0x04000000 | 153 | CONFIG_MEMORY_SIZE=0x04000000 |
154 | CONFIG_29BIT=y | ||
133 | CONFIG_VSYSCALL=y | 155 | CONFIG_VSYSCALL=y |
134 | CONFIG_ARCH_FLATMEM_ENABLE=y | 156 | CONFIG_ARCH_FLATMEM_ENABLE=y |
135 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 157 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
@@ -147,6 +169,7 @@ CONFIG_FLATMEM_MANUAL=y | |||
147 | CONFIG_FLATMEM=y | 169 | CONFIG_FLATMEM=y |
148 | CONFIG_FLAT_NODE_MEM_MAP=y | 170 | CONFIG_FLAT_NODE_MEM_MAP=y |
149 | CONFIG_SPARSEMEM_STATIC=y | 171 | CONFIG_SPARSEMEM_STATIC=y |
172 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
150 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 173 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
151 | # CONFIG_RESOURCES_64BIT is not set | 174 | # CONFIG_RESOURCES_64BIT is not set |
152 | CONFIG_ZONE_DMA_FLAG=0 | 175 | CONFIG_ZONE_DMA_FLAG=0 |
@@ -168,23 +191,22 @@ CONFIG_CPU_LITTLE_ENDIAN=y | |||
168 | CONFIG_SH_FPU=y | 191 | CONFIG_SH_FPU=y |
169 | # CONFIG_SH_STORE_QUEUES is not set | 192 | # CONFIG_SH_STORE_QUEUES is not set |
170 | CONFIG_CPU_HAS_INTEVT=y | 193 | CONFIG_CPU_HAS_INTEVT=y |
171 | CONFIG_CPU_HAS_INTC_IRQ=y | ||
172 | CONFIG_CPU_HAS_SR_RB=y | 194 | CONFIG_CPU_HAS_SR_RB=y |
173 | CONFIG_CPU_HAS_PTEA=y | 195 | CONFIG_CPU_HAS_PTEA=y |
196 | CONFIG_CPU_HAS_FPU=y | ||
174 | 197 | ||
175 | # | 198 | # |
176 | # Board support | 199 | # Board support |
177 | # | 200 | # |
178 | # CONFIG_SH_7751_SYSTEMH is not set | 201 | # CONFIG_SH_7751_SYSTEMH is not set |
179 | # CONFIG_SH_SECUREEDGE5410 is not set | 202 | # CONFIG_SH_SECUREEDGE5410 is not set |
180 | # CONFIG_SH_HS7751RVOIP is not set | ||
181 | CONFIG_SH_RTS7751R2D=y | 203 | CONFIG_SH_RTS7751R2D=y |
182 | # CONFIG_SH_LANDISK is not set | 204 | # CONFIG_SH_LANDISK is not set |
183 | # CONFIG_SH_TITAN is not set | 205 | # CONFIG_SH_TITAN is not set |
184 | # CONFIG_SH_LBOX_RE2 is not set | 206 | # CONFIG_SH_LBOX_RE2 is not set |
185 | 207 | ||
186 | # | 208 | # |
187 | # RTS7751R2D options | 209 | # RTS7751R2D Board Revision |
188 | # | 210 | # |
189 | # CONFIG_RTS7751R2D_PLUS is not set | 211 | # CONFIG_RTS7751R2D_PLUS is not set |
190 | CONFIG_RTS7751R2D_1=y | 212 | CONFIG_RTS7751R2D_1=y |
@@ -198,6 +220,7 @@ CONFIG_SH_PCLK_FREQ=60000000 | |||
198 | # CONFIG_TICK_ONESHOT is not set | 220 | # CONFIG_TICK_ONESHOT is not set |
199 | # CONFIG_NO_HZ is not set | 221 | # CONFIG_NO_HZ is not set |
200 | # CONFIG_HIGH_RES_TIMERS is not set | 222 | # CONFIG_HIGH_RES_TIMERS is not set |
223 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
201 | 224 | ||
202 | # | 225 | # |
203 | # CPU Frequency scaling | 226 | # CPU Frequency scaling |
@@ -227,11 +250,15 @@ CONFIG_HZ_250=y | |||
227 | # CONFIG_HZ_300 is not set | 250 | # CONFIG_HZ_300 is not set |
228 | # CONFIG_HZ_1000 is not set | 251 | # CONFIG_HZ_1000 is not set |
229 | CONFIG_HZ=250 | 252 | CONFIG_HZ=250 |
253 | # CONFIG_SCHED_HRTICK is not set | ||
230 | # CONFIG_KEXEC is not set | 254 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | 255 | # CONFIG_CRASH_DUMP is not set |
232 | CONFIG_PREEMPT_NONE=y | 256 | CONFIG_PREEMPT_NONE=y |
233 | # CONFIG_PREEMPT_VOLUNTARY is not set | 257 | # CONFIG_PREEMPT_VOLUNTARY is not set |
234 | # CONFIG_PREEMPT is not set | 258 | # CONFIG_PREEMPT is not set |
259 | CONFIG_RCU_TRACE=y | ||
260 | CONFIG_GUSA=y | ||
261 | # CONFIG_GUSA_RB is not set | ||
235 | 262 | ||
236 | # | 263 | # |
237 | # Boot options | 264 | # Boot options |
@@ -250,10 +277,7 @@ CONFIG_SH_PCIDMA_NONCOHERENT=y | |||
250 | CONFIG_PCI_AUTO=y | 277 | CONFIG_PCI_AUTO=y |
251 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | 278 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y |
252 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 279 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
253 | 280 | CONFIG_PCI_LEGACY=y | |
254 | # | ||
255 | # PCCARD (PCMCIA/CardBus) support | ||
256 | # | ||
257 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
258 | CONFIG_HOTPLUG_PCI=y | 282 | CONFIG_HOTPLUG_PCI=y |
259 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 283 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
@@ -281,6 +305,7 @@ CONFIG_XFRM=y | |||
281 | # CONFIG_XFRM_USER is not set | 305 | # CONFIG_XFRM_USER is not set |
282 | # CONFIG_XFRM_SUB_POLICY is not set | 306 | # CONFIG_XFRM_SUB_POLICY is not set |
283 | # CONFIG_XFRM_MIGRATE is not set | 307 | # CONFIG_XFRM_MIGRATE is not set |
308 | # CONFIG_XFRM_STATISTICS is not set | ||
284 | # CONFIG_NET_KEY is not set | 309 | # CONFIG_NET_KEY is not set |
285 | CONFIG_INET=y | 310 | CONFIG_INET=y |
286 | # CONFIG_IP_MULTICAST is not set | 311 | # CONFIG_IP_MULTICAST is not set |
@@ -299,6 +324,7 @@ CONFIG_IP_FIB_HASH=y | |||
299 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 324 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
300 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 325 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
301 | CONFIG_INET_XFRM_MODE_BEET=y | 326 | CONFIG_INET_XFRM_MODE_BEET=y |
327 | # CONFIG_INET_LRO is not set | ||
302 | CONFIG_INET_DIAG=y | 328 | CONFIG_INET_DIAG=y |
303 | CONFIG_INET_TCP_DIAG=y | 329 | CONFIG_INET_TCP_DIAG=y |
304 | # CONFIG_TCP_CONG_ADVANCED is not set | 330 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -324,10 +350,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_LAPB is not set | 350 | # CONFIG_LAPB is not set |
325 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
327 | |||
328 | # | ||
329 | # QoS and/or fair queueing | ||
330 | # | ||
331 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
332 | 354 | ||
333 | # | 355 | # |
@@ -335,6 +357,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
335 | # | 357 | # |
336 | # CONFIG_NET_PKTGEN is not set | 358 | # CONFIG_NET_PKTGEN is not set |
337 | # CONFIG_HAMRADIO is not set | 359 | # CONFIG_HAMRADIO is not set |
360 | # CONFIG_CAN is not set | ||
338 | # CONFIG_IRDA is not set | 361 | # CONFIG_IRDA is not set |
339 | # CONFIG_BT is not set | 362 | # CONFIG_BT is not set |
340 | # CONFIG_AF_RXRPC is not set | 363 | # CONFIG_AF_RXRPC is not set |
@@ -356,6 +379,7 @@ CONFIG_WIRELESS_EXT=y | |||
356 | # | 379 | # |
357 | # Generic Driver Options | 380 | # Generic Driver Options |
358 | # | 381 | # |
382 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
359 | CONFIG_STANDALONE=y | 383 | CONFIG_STANDALONE=y |
360 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 384 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
361 | CONFIG_FW_LOADER=m | 385 | CONFIG_FW_LOADER=m |
@@ -371,6 +395,7 @@ CONFIG_BLK_DEV=y | |||
371 | # CONFIG_BLK_DEV_LOOP is not set | 395 | # CONFIG_BLK_DEV_LOOP is not set |
372 | # CONFIG_BLK_DEV_NBD is not set | 396 | # CONFIG_BLK_DEV_NBD is not set |
373 | # CONFIG_BLK_DEV_SX8 is not set | 397 | # CONFIG_BLK_DEV_SX8 is not set |
398 | # CONFIG_BLK_DEV_UB is not set | ||
374 | CONFIG_BLK_DEV_RAM=y | 399 | CONFIG_BLK_DEV_RAM=y |
375 | CONFIG_BLK_DEV_RAM_COUNT=16 | 400 | CONFIG_BLK_DEV_RAM_COUNT=16 |
376 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 401 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
@@ -420,6 +445,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
420 | # CONFIG_SCSI_FC_ATTRS is not set | 445 | # CONFIG_SCSI_FC_ATTRS is not set |
421 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 446 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
422 | # CONFIG_SCSI_SAS_LIBSAS is not set | 447 | # CONFIG_SCSI_SAS_LIBSAS is not set |
448 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
423 | CONFIG_SCSI_LOWLEVEL=y | 449 | CONFIG_SCSI_LOWLEVEL=y |
424 | # CONFIG_ISCSI_TCP is not set | 450 | # CONFIG_ISCSI_TCP is not set |
425 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 451 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
@@ -493,7 +519,9 @@ CONFIG_ATA=y | |||
493 | # CONFIG_PATA_MPIIX is not set | 519 | # CONFIG_PATA_MPIIX is not set |
494 | # CONFIG_PATA_OLDPIIX is not set | 520 | # CONFIG_PATA_OLDPIIX is not set |
495 | # CONFIG_PATA_NETCELL is not set | 521 | # CONFIG_PATA_NETCELL is not set |
522 | # CONFIG_PATA_NINJA32 is not set | ||
496 | # CONFIG_PATA_NS87410 is not set | 523 | # CONFIG_PATA_NS87410 is not set |
524 | # CONFIG_PATA_NS87415 is not set | ||
497 | # CONFIG_PATA_OPTI is not set | 525 | # CONFIG_PATA_OPTI is not set |
498 | # CONFIG_PATA_OPTIDMA is not set | 526 | # CONFIG_PATA_OPTIDMA is not set |
499 | # CONFIG_PATA_PDC_OLD is not set | 527 | # CONFIG_PATA_PDC_OLD is not set |
@@ -508,14 +536,7 @@ CONFIG_ATA=y | |||
508 | # CONFIG_PATA_WINBOND is not set | 536 | # CONFIG_PATA_WINBOND is not set |
509 | CONFIG_PATA_PLATFORM=y | 537 | CONFIG_PATA_PLATFORM=y |
510 | # CONFIG_MD is not set | 538 | # CONFIG_MD is not set |
511 | |||
512 | # | ||
513 | # Fusion MPT device support | ||
514 | # | ||
515 | # CONFIG_FUSION is not set | 539 | # CONFIG_FUSION is not set |
516 | # CONFIG_FUSION_SPI is not set | ||
517 | # CONFIG_FUSION_FC is not set | ||
518 | # CONFIG_FUSION_SAS is not set | ||
519 | 540 | ||
520 | # | 541 | # |
521 | # IEEE 1394 (FireWire) support | 542 | # IEEE 1394 (FireWire) support |
@@ -530,25 +551,31 @@ CONFIG_NETDEVICES=y | |||
530 | # CONFIG_MACVLAN is not set | 551 | # CONFIG_MACVLAN is not set |
531 | # CONFIG_EQUALIZER is not set | 552 | # CONFIG_EQUALIZER is not set |
532 | # CONFIG_TUN is not set | 553 | # CONFIG_TUN is not set |
554 | # CONFIG_VETH is not set | ||
533 | # CONFIG_ARCNET is not set | 555 | # CONFIG_ARCNET is not set |
534 | # CONFIG_PHYLIB is not set | 556 | # CONFIG_PHYLIB is not set |
535 | CONFIG_NET_ETHERNET=y | 557 | CONFIG_NET_ETHERNET=y |
536 | CONFIG_MII=y | 558 | CONFIG_MII=y |
559 | # CONFIG_AX88796 is not set | ||
537 | # CONFIG_STNIC is not set | 560 | # CONFIG_STNIC is not set |
538 | # CONFIG_HAPPYMEAL is not set | 561 | # CONFIG_HAPPYMEAL is not set |
539 | # CONFIG_SUNGEM is not set | 562 | # CONFIG_SUNGEM is not set |
540 | # CONFIG_CASSINI is not set | 563 | # CONFIG_CASSINI is not set |
541 | # CONFIG_NET_VENDOR_3COM is not set | 564 | # CONFIG_NET_VENDOR_3COM is not set |
542 | # CONFIG_SMC91X is not set | 565 | # CONFIG_SMC91X is not set |
566 | # CONFIG_ENC28J60 is not set | ||
543 | # CONFIG_NET_TULIP is not set | 567 | # CONFIG_NET_TULIP is not set |
544 | # CONFIG_HP100 is not set | 568 | # CONFIG_HP100 is not set |
569 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
570 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
571 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
572 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
545 | CONFIG_NET_PCI=y | 573 | CONFIG_NET_PCI=y |
546 | # CONFIG_PCNET32 is not set | 574 | # CONFIG_PCNET32 is not set |
547 | # CONFIG_AMD8111_ETH is not set | 575 | # CONFIG_AMD8111_ETH is not set |
548 | # CONFIG_ADAPTEC_STARFIRE is not set | 576 | # CONFIG_ADAPTEC_STARFIRE is not set |
549 | # CONFIG_B44 is not set | 577 | # CONFIG_B44 is not set |
550 | # CONFIG_FORCEDETH is not set | 578 | # CONFIG_FORCEDETH is not set |
551 | # CONFIG_DGRS is not set | ||
552 | # CONFIG_EEPRO100 is not set | 579 | # CONFIG_EEPRO100 is not set |
553 | # CONFIG_E100 is not set | 580 | # CONFIG_E100 is not set |
554 | # CONFIG_FEALNX is not set | 581 | # CONFIG_FEALNX is not set |
@@ -560,6 +587,7 @@ CONFIG_8139TOO=y | |||
560 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 587 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
561 | # CONFIG_8139TOO_8129 is not set | 588 | # CONFIG_8139TOO_8129 is not set |
562 | # CONFIG_8139_OLD_RX_RESET is not set | 589 | # CONFIG_8139_OLD_RX_RESET is not set |
590 | # CONFIG_R6040 is not set | ||
563 | # CONFIG_SIS900 is not set | 591 | # CONFIG_SIS900 is not set |
564 | # CONFIG_EPIC100 is not set | 592 | # CONFIG_EPIC100 is not set |
565 | # CONFIG_SUNDANCE is not set | 593 | # CONFIG_SUNDANCE is not set |
@@ -570,6 +598,10 @@ CONFIG_NETDEV_1000=y | |||
570 | # CONFIG_ACENIC is not set | 598 | # CONFIG_ACENIC is not set |
571 | # CONFIG_DL2K is not set | 599 | # CONFIG_DL2K is not set |
572 | # CONFIG_E1000 is not set | 600 | # CONFIG_E1000 is not set |
601 | # CONFIG_E1000E is not set | ||
602 | # CONFIG_E1000E_ENABLED is not set | ||
603 | # CONFIG_IP1000 is not set | ||
604 | # CONFIG_IGB is not set | ||
573 | # CONFIG_NS83820 is not set | 605 | # CONFIG_NS83820 is not set |
574 | # CONFIG_HAMACHI is not set | 606 | # CONFIG_HAMACHI is not set |
575 | # CONFIG_YELLOWFIN is not set | 607 | # CONFIG_YELLOWFIN is not set |
@@ -577,6 +609,7 @@ CONFIG_NETDEV_1000=y | |||
577 | # CONFIG_SIS190 is not set | 609 | # CONFIG_SIS190 is not set |
578 | # CONFIG_SKGE is not set | 610 | # CONFIG_SKGE is not set |
579 | # CONFIG_SKY2 is not set | 611 | # CONFIG_SKY2 is not set |
612 | # CONFIG_SK98LIN is not set | ||
580 | # CONFIG_VIA_VELOCITY is not set | 613 | # CONFIG_VIA_VELOCITY is not set |
581 | # CONFIG_TIGON3 is not set | 614 | # CONFIG_TIGON3 is not set |
582 | # CONFIG_BNX2 is not set | 615 | # CONFIG_BNX2 is not set |
@@ -585,11 +618,15 @@ CONFIG_NETDEV_1000=y | |||
585 | CONFIG_NETDEV_10000=y | 618 | CONFIG_NETDEV_10000=y |
586 | # CONFIG_CHELSIO_T1 is not set | 619 | # CONFIG_CHELSIO_T1 is not set |
587 | # CONFIG_CHELSIO_T3 is not set | 620 | # CONFIG_CHELSIO_T3 is not set |
621 | # CONFIG_IXGBE is not set | ||
588 | # CONFIG_IXGB is not set | 622 | # CONFIG_IXGB is not set |
589 | # CONFIG_S2IO is not set | 623 | # CONFIG_S2IO is not set |
590 | # CONFIG_MYRI10GE is not set | 624 | # CONFIG_MYRI10GE is not set |
591 | # CONFIG_NETXEN_NIC is not set | 625 | # CONFIG_NETXEN_NIC is not set |
626 | # CONFIG_NIU is not set | ||
592 | # CONFIG_MLX4_CORE is not set | 627 | # CONFIG_MLX4_CORE is not set |
628 | # CONFIG_TEHUTI is not set | ||
629 | # CONFIG_BNX2X is not set | ||
593 | # CONFIG_TR is not set | 630 | # CONFIG_TR is not set |
594 | 631 | ||
595 | # | 632 | # |
@@ -597,13 +634,21 @@ CONFIG_NETDEV_10000=y | |||
597 | # | 634 | # |
598 | # CONFIG_WLAN_PRE80211 is not set | 635 | # CONFIG_WLAN_PRE80211 is not set |
599 | # CONFIG_WLAN_80211 is not set | 636 | # CONFIG_WLAN_80211 is not set |
637 | |||
638 | # | ||
639 | # USB Network Adapters | ||
640 | # | ||
641 | # CONFIG_USB_CATC is not set | ||
642 | # CONFIG_USB_KAWETH is not set | ||
643 | # CONFIG_USB_PEGASUS is not set | ||
644 | # CONFIG_USB_RTL8150 is not set | ||
645 | # CONFIG_USB_USBNET is not set | ||
600 | # CONFIG_WAN is not set | 646 | # CONFIG_WAN is not set |
601 | # CONFIG_FDDI is not set | 647 | # CONFIG_FDDI is not set |
602 | # CONFIG_HIPPI is not set | 648 | # CONFIG_HIPPI is not set |
603 | # CONFIG_PPP is not set | 649 | # CONFIG_PPP is not set |
604 | # CONFIG_SLIP is not set | 650 | # CONFIG_SLIP is not set |
605 | # CONFIG_NET_FC is not set | 651 | # CONFIG_NET_FC is not set |
606 | # CONFIG_SHAPER is not set | ||
607 | # CONFIG_NETCONSOLE is not set | 652 | # CONFIG_NETCONSOLE is not set |
608 | # CONFIG_NETPOLL is not set | 653 | # CONFIG_NETPOLL is not set |
609 | # CONFIG_NET_POLL_CONTROLLER is not set | 654 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -622,7 +667,6 @@ CONFIG_INPUT=y | |||
622 | # | 667 | # |
623 | # CONFIG_INPUT_MOUSEDEV is not set | 668 | # CONFIG_INPUT_MOUSEDEV is not set |
624 | # CONFIG_INPUT_JOYDEV is not set | 669 | # CONFIG_INPUT_JOYDEV is not set |
625 | # CONFIG_INPUT_TSDEV is not set | ||
626 | # CONFIG_INPUT_EVDEV is not set | 670 | # CONFIG_INPUT_EVDEV is not set |
627 | # CONFIG_INPUT_EVBUG is not set | 671 | # CONFIG_INPUT_EVBUG is not set |
628 | 672 | ||
@@ -650,6 +694,7 @@ CONFIG_VT_CONSOLE=y | |||
650 | CONFIG_HW_CONSOLE=y | 694 | CONFIG_HW_CONSOLE=y |
651 | CONFIG_VT_HW_CONSOLE_BINDING=y | 695 | CONFIG_VT_HW_CONSOLE_BINDING=y |
652 | # CONFIG_SERIAL_NONSTANDARD is not set | 696 | # CONFIG_SERIAL_NONSTANDARD is not set |
697 | # CONFIG_NOZOMI is not set | ||
653 | 698 | ||
654 | # | 699 | # |
655 | # Serial drivers | 700 | # Serial drivers |
@@ -674,11 +719,9 @@ CONFIG_UNIX98_PTYS=y | |||
674 | CONFIG_LEGACY_PTYS=y | 719 | CONFIG_LEGACY_PTYS=y |
675 | CONFIG_LEGACY_PTY_COUNT=256 | 720 | CONFIG_LEGACY_PTY_COUNT=256 |
676 | # CONFIG_IPMI_HANDLER is not set | 721 | # CONFIG_IPMI_HANDLER is not set |
677 | # CONFIG_WATCHDOG is not set | ||
678 | CONFIG_HW_RANDOM=y | 722 | CONFIG_HW_RANDOM=y |
679 | # CONFIG_R3964 is not set | 723 | # CONFIG_R3964 is not set |
680 | # CONFIG_APPLICOM is not set | 724 | # CONFIG_APPLICOM is not set |
681 | # CONFIG_DRM is not set | ||
682 | # CONFIG_RAW_DRIVER is not set | 725 | # CONFIG_RAW_DRIVER is not set |
683 | # CONFIG_TCG_TPM is not set | 726 | # CONFIG_TCG_TPM is not set |
684 | CONFIG_DEVPORT=y | 727 | CONFIG_DEVPORT=y |
@@ -687,16 +730,30 @@ CONFIG_DEVPORT=y | |||
687 | # | 730 | # |
688 | # SPI support | 731 | # SPI support |
689 | # | 732 | # |
690 | # CONFIG_SPI is not set | 733 | CONFIG_SPI=y |
691 | # CONFIG_SPI_MASTER is not set | 734 | CONFIG_SPI_MASTER=y |
735 | |||
736 | # | ||
737 | # SPI Master Controller Drivers | ||
738 | # | ||
739 | CONFIG_SPI_BITBANG=y | ||
740 | CONFIG_SPI_SH_SCI=y | ||
741 | |||
742 | # | ||
743 | # SPI Protocol Masters | ||
744 | # | ||
745 | # CONFIG_SPI_AT25 is not set | ||
746 | # CONFIG_SPI_SPIDEV is not set | ||
747 | # CONFIG_SPI_TLE62X0 is not set | ||
692 | # CONFIG_W1 is not set | 748 | # CONFIG_W1 is not set |
693 | # CONFIG_POWER_SUPPLY is not set | 749 | # CONFIG_POWER_SUPPLY is not set |
694 | CONFIG_HWMON=y | 750 | CONFIG_HWMON=y |
695 | # CONFIG_HWMON_VID is not set | 751 | # CONFIG_HWMON_VID is not set |
696 | # CONFIG_SENSORS_ABITUGURU is not set | 752 | # CONFIG_SENSORS_I5K_AMB is not set |
697 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
698 | # CONFIG_SENSORS_F71805F is not set | 753 | # CONFIG_SENSORS_F71805F is not set |
754 | # CONFIG_SENSORS_F71882FG is not set | ||
699 | # CONFIG_SENSORS_IT87 is not set | 755 | # CONFIG_SENSORS_IT87 is not set |
756 | # CONFIG_SENSORS_LM70 is not set | ||
700 | # CONFIG_SENSORS_PC87360 is not set | 757 | # CONFIG_SENSORS_PC87360 is not set |
701 | # CONFIG_SENSORS_PC87427 is not set | 758 | # CONFIG_SENSORS_PC87427 is not set |
702 | # CONFIG_SENSORS_SIS5595 is not set | 759 | # CONFIG_SENSORS_SIS5595 is not set |
@@ -708,6 +765,13 @@ CONFIG_HWMON=y | |||
708 | # CONFIG_SENSORS_W83627HF is not set | 765 | # CONFIG_SENSORS_W83627HF is not set |
709 | # CONFIG_SENSORS_W83627EHF is not set | 766 | # CONFIG_SENSORS_W83627EHF is not set |
710 | # CONFIG_HWMON_DEBUG_CHIP is not set | 767 | # CONFIG_HWMON_DEBUG_CHIP is not set |
768 | # CONFIG_WATCHDOG is not set | ||
769 | |||
770 | # | ||
771 | # Sonics Silicon Backplane | ||
772 | # | ||
773 | CONFIG_SSB_POSSIBLE=y | ||
774 | # CONFIG_SSB is not set | ||
711 | 775 | ||
712 | # | 776 | # |
713 | # Multifunction device drivers | 777 | # Multifunction device drivers |
@@ -720,16 +784,12 @@ CONFIG_MFD_SM501=y | |||
720 | # CONFIG_VIDEO_DEV is not set | 784 | # CONFIG_VIDEO_DEV is not set |
721 | # CONFIG_DVB_CORE is not set | 785 | # CONFIG_DVB_CORE is not set |
722 | CONFIG_DAB=y | 786 | CONFIG_DAB=y |
787 | # CONFIG_USB_DABUSB is not set | ||
723 | 788 | ||
724 | # | 789 | # |
725 | # Graphics support | 790 | # Graphics support |
726 | # | 791 | # |
727 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 792 | # CONFIG_DRM is not set |
728 | |||
729 | # | ||
730 | # Display device support | ||
731 | # | ||
732 | # CONFIG_DISPLAY_SUPPORT is not set | ||
733 | # CONFIG_VGASTATE is not set | 793 | # CONFIG_VGASTATE is not set |
734 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 794 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
735 | CONFIG_FB=y | 795 | CONFIG_FB=y |
@@ -738,6 +798,7 @@ CONFIG_FB=y | |||
738 | CONFIG_FB_CFB_FILLRECT=y | 798 | CONFIG_FB_CFB_FILLRECT=y |
739 | CONFIG_FB_CFB_COPYAREA=y | 799 | CONFIG_FB_CFB_COPYAREA=y |
740 | CONFIG_FB_CFB_IMAGEBLIT=y | 800 | CONFIG_FB_CFB_IMAGEBLIT=y |
801 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
741 | # CONFIG_FB_SYS_FILLRECT is not set | 802 | # CONFIG_FB_SYS_FILLRECT is not set |
742 | # CONFIG_FB_SYS_COPYAREA is not set | 803 | # CONFIG_FB_SYS_COPYAREA is not set |
743 | # CONFIG_FB_SYS_IMAGEBLIT is not set | 804 | # CONFIG_FB_SYS_IMAGEBLIT is not set |
@@ -777,6 +838,12 @@ CONFIG_FB_DEFERRED_IO=y | |||
777 | # CONFIG_FB_PM3 is not set | 838 | # CONFIG_FB_PM3 is not set |
778 | CONFIG_FB_SM501=y | 839 | CONFIG_FB_SM501=y |
779 | # CONFIG_FB_VIRTUAL is not set | 840 | # CONFIG_FB_VIRTUAL is not set |
841 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
842 | |||
843 | # | ||
844 | # Display device support | ||
845 | # | ||
846 | # CONFIG_DISPLAY_SUPPORT is not set | ||
780 | 847 | ||
781 | # | 848 | # |
782 | # Console display driver support | 849 | # Console display driver support |
@@ -844,6 +911,7 @@ CONFIG_SND_AC97_CODEC=m | |||
844 | # CONFIG_SND_BT87X is not set | 911 | # CONFIG_SND_BT87X is not set |
845 | # CONFIG_SND_CA0106 is not set | 912 | # CONFIG_SND_CA0106 is not set |
846 | # CONFIG_SND_CMIPCI is not set | 913 | # CONFIG_SND_CMIPCI is not set |
914 | # CONFIG_SND_OXYGEN is not set | ||
847 | # CONFIG_SND_CS4281 is not set | 915 | # CONFIG_SND_CS4281 is not set |
848 | # CONFIG_SND_CS46XX is not set | 916 | # CONFIG_SND_CS46XX is not set |
849 | # CONFIG_SND_DARLA20 is not set | 917 | # CONFIG_SND_DARLA20 is not set |
@@ -868,6 +936,7 @@ CONFIG_SND_AC97_CODEC=m | |||
868 | # CONFIG_SND_HDA_INTEL is not set | 936 | # CONFIG_SND_HDA_INTEL is not set |
869 | # CONFIG_SND_HDSP is not set | 937 | # CONFIG_SND_HDSP is not set |
870 | # CONFIG_SND_HDSPM is not set | 938 | # CONFIG_SND_HDSPM is not set |
939 | # CONFIG_SND_HIFIER is not set | ||
871 | # CONFIG_SND_ICE1712 is not set | 940 | # CONFIG_SND_ICE1712 is not set |
872 | # CONFIG_SND_ICE1724 is not set | 941 | # CONFIG_SND_ICE1724 is not set |
873 | # CONFIG_SND_INTEL8X0 is not set | 942 | # CONFIG_SND_INTEL8X0 is not set |
@@ -885,16 +954,27 @@ CONFIG_SND_AC97_CODEC=m | |||
885 | # CONFIG_SND_TRIDENT is not set | 954 | # CONFIG_SND_TRIDENT is not set |
886 | # CONFIG_SND_VIA82XX is not set | 955 | # CONFIG_SND_VIA82XX is not set |
887 | # CONFIG_SND_VIA82XX_MODEM is not set | 956 | # CONFIG_SND_VIA82XX_MODEM is not set |
957 | # CONFIG_SND_VIRTUOSO is not set | ||
888 | # CONFIG_SND_VX222 is not set | 958 | # CONFIG_SND_VX222 is not set |
889 | CONFIG_SND_YMFPCI=m | 959 | CONFIG_SND_YMFPCI=m |
890 | CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y | 960 | CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y |
891 | # CONFIG_SND_AC97_POWER_SAVE is not set | 961 | # CONFIG_SND_AC97_POWER_SAVE is not set |
892 | 962 | ||
893 | # | 963 | # |
964 | # SPI devices | ||
965 | # | ||
966 | |||
967 | # | ||
894 | # SUPERH devices | 968 | # SUPERH devices |
895 | # | 969 | # |
896 | 970 | ||
897 | # | 971 | # |
972 | # USB devices | ||
973 | # | ||
974 | # CONFIG_SND_USB_AUDIO is not set | ||
975 | # CONFIG_SND_USB_CAIAQ is not set | ||
976 | |||
977 | # | ||
898 | # System on Chip audio support | 978 | # System on Chip audio support |
899 | # | 979 | # |
900 | # CONFIG_SND_SOC is not set | 980 | # CONFIG_SND_SOC is not set |
@@ -904,6 +984,10 @@ CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y | |||
904 | # | 984 | # |
905 | 985 | ||
906 | # | 986 | # |
987 | # ALSA SoC audio for Freescale SOCs | ||
988 | # | ||
989 | |||
990 | # | ||
907 | # Open Sound System | 991 | # Open Sound System |
908 | # | 992 | # |
909 | CONFIG_SOUND_PRIME=m | 993 | CONFIG_SOUND_PRIME=m |
@@ -914,19 +998,104 @@ CONFIG_AC97_BUS=m | |||
914 | CONFIG_HID_SUPPORT=y | 998 | CONFIG_HID_SUPPORT=y |
915 | CONFIG_HID=y | 999 | CONFIG_HID=y |
916 | # CONFIG_HID_DEBUG is not set | 1000 | # CONFIG_HID_DEBUG is not set |
1001 | # CONFIG_HIDRAW is not set | ||
1002 | |||
1003 | # | ||
1004 | # USB Input Devices | ||
1005 | # | ||
1006 | CONFIG_USB_HID=y | ||
1007 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
1008 | # CONFIG_HID_FF is not set | ||
1009 | # CONFIG_USB_HIDDEV is not set | ||
917 | CONFIG_USB_SUPPORT=y | 1010 | CONFIG_USB_SUPPORT=y |
918 | CONFIG_USB_ARCH_HAS_HCD=y | 1011 | CONFIG_USB_ARCH_HAS_HCD=y |
919 | CONFIG_USB_ARCH_HAS_OHCI=y | 1012 | CONFIG_USB_ARCH_HAS_OHCI=y |
920 | CONFIG_USB_ARCH_HAS_EHCI=y | 1013 | CONFIG_USB_ARCH_HAS_EHCI=y |
921 | # CONFIG_USB is not set | 1014 | CONFIG_USB=y |
1015 | # CONFIG_USB_DEBUG is not set | ||
1016 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y | ||
1017 | |||
1018 | # | ||
1019 | # Miscellaneous USB options | ||
1020 | # | ||
1021 | # CONFIG_USB_DEVICEFS is not set | ||
1022 | CONFIG_USB_DEVICE_CLASS=y | ||
1023 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1024 | # CONFIG_USB_OTG is not set | ||
1025 | |||
1026 | # | ||
1027 | # USB Host Controller Drivers | ||
1028 | # | ||
1029 | # CONFIG_USB_EHCI_HCD is not set | ||
1030 | # CONFIG_USB_ISP116X_HCD is not set | ||
1031 | CONFIG_USB_OHCI_HCD=y | ||
1032 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
1033 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
1034 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1035 | # CONFIG_USB_UHCI_HCD is not set | ||
1036 | # CONFIG_USB_SL811_HCD is not set | ||
1037 | # CONFIG_USB_R8A66597_HCD is not set | ||
1038 | |||
1039 | # | ||
1040 | # USB Device Class drivers | ||
1041 | # | ||
1042 | # CONFIG_USB_ACM is not set | ||
1043 | # CONFIG_USB_PRINTER is not set | ||
922 | 1044 | ||
923 | # | 1045 | # |
924 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1046 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
925 | # | 1047 | # |
926 | 1048 | ||
927 | # | 1049 | # |
928 | # USB Gadget Support | 1050 | # may also be needed; see USB_STORAGE Help for more information |
1051 | # | ||
1052 | CONFIG_USB_STORAGE=y | ||
1053 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1054 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1055 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1056 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1057 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1058 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1059 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1060 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1061 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1062 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1063 | # CONFIG_USB_STORAGE_KARMA is not set | ||
1064 | CONFIG_USB_LIBUSUAL=y | ||
1065 | |||
1066 | # | ||
1067 | # USB Imaging devices | ||
1068 | # | ||
1069 | # CONFIG_USB_MDC800 is not set | ||
1070 | # CONFIG_USB_MICROTEK is not set | ||
1071 | # CONFIG_USB_MON is not set | ||
1072 | |||
1073 | # | ||
1074 | # USB port drivers | ||
1075 | # | ||
1076 | # CONFIG_USB_SERIAL is not set | ||
1077 | |||
1078 | # | ||
1079 | # USB Miscellaneous drivers | ||
929 | # | 1080 | # |
1081 | # CONFIG_USB_EMI62 is not set | ||
1082 | # CONFIG_USB_EMI26 is not set | ||
1083 | # CONFIG_USB_ADUTUX is not set | ||
1084 | # CONFIG_USB_AUERSWALD is not set | ||
1085 | # CONFIG_USB_RIO500 is not set | ||
1086 | # CONFIG_USB_LEGOTOWER is not set | ||
1087 | # CONFIG_USB_LCD is not set | ||
1088 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1089 | # CONFIG_USB_LED is not set | ||
1090 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1091 | # CONFIG_USB_CYTHERM is not set | ||
1092 | # CONFIG_USB_PHIDGET is not set | ||
1093 | # CONFIG_USB_IDMOUSE is not set | ||
1094 | # CONFIG_USB_FTDI_ELAN is not set | ||
1095 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1096 | # CONFIG_USB_LD is not set | ||
1097 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1098 | # CONFIG_USB_IOWARRIOR is not set | ||
930 | # CONFIG_USB_GADGET is not set | 1099 | # CONFIG_USB_GADGET is not set |
931 | # CONFIG_MMC is not set | 1100 | # CONFIG_MMC is not set |
932 | # CONFIG_NEW_LEDS is not set | 1101 | # CONFIG_NEW_LEDS is not set |
@@ -949,13 +1118,17 @@ CONFIG_RTC_INTF_DEV=y | |||
949 | # | 1118 | # |
950 | # SPI RTC drivers | 1119 | # SPI RTC drivers |
951 | # | 1120 | # |
1121 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1122 | CONFIG_RTC_DRV_R9701=y | ||
1123 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
952 | 1124 | ||
953 | # | 1125 | # |
954 | # Platform RTC drivers | 1126 | # Platform RTC drivers |
955 | # | 1127 | # |
1128 | # CONFIG_RTC_DRV_DS1511 is not set | ||
956 | # CONFIG_RTC_DRV_DS1553 is not set | 1129 | # CONFIG_RTC_DRV_DS1553 is not set |
957 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
958 | # CONFIG_RTC_DRV_DS1742 is not set | 1130 | # CONFIG_RTC_DRV_DS1742 is not set |
1131 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
959 | # CONFIG_RTC_DRV_M48T86 is not set | 1132 | # CONFIG_RTC_DRV_M48T86 is not set |
960 | # CONFIG_RTC_DRV_M48T59 is not set | 1133 | # CONFIG_RTC_DRV_M48T59 is not set |
961 | # CONFIG_RTC_DRV_V3020 is not set | 1134 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -963,20 +1136,7 @@ CONFIG_RTC_INTF_DEV=y | |||
963 | # | 1136 | # |
964 | # on-CPU RTC drivers | 1137 | # on-CPU RTC drivers |
965 | # | 1138 | # |
966 | CONFIG_RTC_DRV_SH=y | 1139 | # CONFIG_RTC_DRV_SH is not set |
967 | |||
968 | # | ||
969 | # DMA Engine support | ||
970 | # | ||
971 | # CONFIG_DMA_ENGINE is not set | ||
972 | |||
973 | # | ||
974 | # DMA Clients | ||
975 | # | ||
976 | |||
977 | # | ||
978 | # DMA Devices | ||
979 | # | ||
980 | 1140 | ||
981 | # | 1141 | # |
982 | # Userspace I/O | 1142 | # Userspace I/O |
@@ -1034,7 +1194,6 @@ CONFIG_TMPFS=y | |||
1034 | # CONFIG_TMPFS_POSIX_ACL is not set | 1194 | # CONFIG_TMPFS_POSIX_ACL is not set |
1035 | # CONFIG_HUGETLBFS is not set | 1195 | # CONFIG_HUGETLBFS is not set |
1036 | # CONFIG_HUGETLB_PAGE is not set | 1196 | # CONFIG_HUGETLB_PAGE is not set |
1037 | CONFIG_RAMFS=y | ||
1038 | # CONFIG_CONFIGFS_FS is not set | 1197 | # CONFIG_CONFIGFS_FS is not set |
1039 | 1198 | ||
1040 | # | 1199 | # |
@@ -1053,10 +1212,7 @@ CONFIG_RAMFS=y | |||
1053 | # CONFIG_QNX4FS_FS is not set | 1212 | # CONFIG_QNX4FS_FS is not set |
1054 | # CONFIG_SYSV_FS is not set | 1213 | # CONFIG_SYSV_FS is not set |
1055 | # CONFIG_UFS_FS is not set | 1214 | # CONFIG_UFS_FS is not set |
1056 | 1215 | CONFIG_NETWORK_FILESYSTEMS=y | |
1057 | # | ||
1058 | # Network File Systems | ||
1059 | # | ||
1060 | # CONFIG_NFS_FS is not set | 1216 | # CONFIG_NFS_FS is not set |
1061 | # CONFIG_NFSD is not set | 1217 | # CONFIG_NFSD is not set |
1062 | # CONFIG_SMB_FS is not set | 1218 | # CONFIG_SMB_FS is not set |
@@ -1070,10 +1226,6 @@ CONFIG_RAMFS=y | |||
1070 | # | 1226 | # |
1071 | # CONFIG_PARTITION_ADVANCED is not set | 1227 | # CONFIG_PARTITION_ADVANCED is not set |
1072 | CONFIG_MSDOS_PARTITION=y | 1228 | CONFIG_MSDOS_PARTITION=y |
1073 | |||
1074 | # | ||
1075 | # Native Language Support | ||
1076 | # | ||
1077 | CONFIG_NLS=y | 1229 | CONFIG_NLS=y |
1078 | CONFIG_NLS_DEFAULT="iso8859-1" | 1230 | CONFIG_NLS_DEFAULT="iso8859-1" |
1079 | # CONFIG_NLS_CODEPAGE_437 is not set | 1231 | # CONFIG_NLS_CODEPAGE_437 is not set |
@@ -1114,30 +1266,22 @@ CONFIG_NLS_CODEPAGE_932=y | |||
1114 | # CONFIG_NLS_KOI8_R is not set | 1266 | # CONFIG_NLS_KOI8_R is not set |
1115 | # CONFIG_NLS_KOI8_U is not set | 1267 | # CONFIG_NLS_KOI8_U is not set |
1116 | # CONFIG_NLS_UTF8 is not set | 1268 | # CONFIG_NLS_UTF8 is not set |
1117 | |||
1118 | # | ||
1119 | # Distributed Lock Manager | ||
1120 | # | ||
1121 | # CONFIG_DLM is not set | 1269 | # CONFIG_DLM is not set |
1122 | 1270 | ||
1123 | # | 1271 | # |
1124 | # Profiling support | ||
1125 | # | ||
1126 | CONFIG_PROFILING=y | ||
1127 | CONFIG_OPROFILE=y | ||
1128 | |||
1129 | # | ||
1130 | # Kernel hacking | 1272 | # Kernel hacking |
1131 | # | 1273 | # |
1132 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1274 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
1133 | # CONFIG_PRINTK_TIME is not set | 1275 | # CONFIG_PRINTK_TIME is not set |
1276 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1134 | CONFIG_ENABLE_MUST_CHECK=y | 1277 | CONFIG_ENABLE_MUST_CHECK=y |
1135 | # CONFIG_MAGIC_SYSRQ is not set | 1278 | # CONFIG_MAGIC_SYSRQ is not set |
1136 | # CONFIG_UNUSED_SYMBOLS is not set | 1279 | # CONFIG_UNUSED_SYMBOLS is not set |
1137 | # CONFIG_DEBUG_FS is not set | 1280 | CONFIG_DEBUG_FS=y |
1138 | # CONFIG_HEADERS_CHECK is not set | 1281 | # CONFIG_HEADERS_CHECK is not set |
1139 | # CONFIG_DEBUG_KERNEL is not set | 1282 | # CONFIG_DEBUG_KERNEL is not set |
1140 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1283 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1284 | # CONFIG_SAMPLES is not set | ||
1141 | # CONFIG_SH_STANDARD_BIOS is not set | 1285 | # CONFIG_SH_STANDARD_BIOS is not set |
1142 | CONFIG_EARLY_SCIF_CONSOLE=y | 1286 | CONFIG_EARLY_SCIF_CONSOLE=y |
1143 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 | 1287 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 |
@@ -1149,7 +1293,53 @@ CONFIG_EARLY_PRINTK=y | |||
1149 | # | 1293 | # |
1150 | # CONFIG_KEYS is not set | 1294 | # CONFIG_KEYS is not set |
1151 | # CONFIG_SECURITY is not set | 1295 | # CONFIG_SECURITY is not set |
1152 | # CONFIG_CRYPTO is not set | 1296 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1297 | CONFIG_CRYPTO=y | ||
1298 | # CONFIG_CRYPTO_SEQIV is not set | ||
1299 | # CONFIG_CRYPTO_MANAGER is not set | ||
1300 | # CONFIG_CRYPTO_HMAC is not set | ||
1301 | # CONFIG_CRYPTO_XCBC is not set | ||
1302 | # CONFIG_CRYPTO_NULL is not set | ||
1303 | # CONFIG_CRYPTO_MD4 is not set | ||
1304 | # CONFIG_CRYPTO_MD5 is not set | ||
1305 | # CONFIG_CRYPTO_SHA1 is not set | ||
1306 | # CONFIG_CRYPTO_SHA256 is not set | ||
1307 | # CONFIG_CRYPTO_SHA512 is not set | ||
1308 | # CONFIG_CRYPTO_WP512 is not set | ||
1309 | # CONFIG_CRYPTO_TGR192 is not set | ||
1310 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1311 | # CONFIG_CRYPTO_ECB is not set | ||
1312 | # CONFIG_CRYPTO_CBC is not set | ||
1313 | # CONFIG_CRYPTO_PCBC is not set | ||
1314 | # CONFIG_CRYPTO_LRW is not set | ||
1315 | # CONFIG_CRYPTO_XTS is not set | ||
1316 | # CONFIG_CRYPTO_CTR is not set | ||
1317 | # CONFIG_CRYPTO_GCM is not set | ||
1318 | # CONFIG_CRYPTO_CCM is not set | ||
1319 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1320 | # CONFIG_CRYPTO_DES is not set | ||
1321 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1322 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1323 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1324 | # CONFIG_CRYPTO_SERPENT is not set | ||
1325 | # CONFIG_CRYPTO_AES is not set | ||
1326 | # CONFIG_CRYPTO_CAST5 is not set | ||
1327 | # CONFIG_CRYPTO_CAST6 is not set | ||
1328 | # CONFIG_CRYPTO_TEA is not set | ||
1329 | # CONFIG_CRYPTO_ARC4 is not set | ||
1330 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1331 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1332 | # CONFIG_CRYPTO_SEED is not set | ||
1333 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1334 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1335 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1336 | # CONFIG_CRYPTO_CRC32C is not set | ||
1337 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1338 | # CONFIG_CRYPTO_TEST is not set | ||
1339 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1340 | # CONFIG_CRYPTO_LZO is not set | ||
1341 | CONFIG_CRYPTO_HW=y | ||
1342 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1153 | 1343 | ||
1154 | # | 1344 | # |
1155 | # Library routines | 1345 | # Library routines |
diff --git a/arch/sh/configs/rts7751r2dplus_defconfig b/arch/sh/configs/rts7751r2dplus_defconfig index 4ff5a752dcd9..0a6d3b9e648b 100644 --- a/arch/sh/configs/rts7751r2dplus_defconfig +++ b/arch/sh/configs/rts7751r2dplus_defconfig | |||
@@ -1,9 +1,10 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.23-rc2 | 3 | # Linux kernel version: 2.6.24 |
4 | # Tue Aug 14 16:33:08 2007 | 4 | # Thu Feb 7 16:17:47 2008 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | ||
7 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | 8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y |
8 | CONFIG_GENERIC_BUG=y | 9 | CONFIG_GENERIC_BUG=y |
9 | CONFIG_GENERIC_FIND_NEXT_BIT=y | 10 | CONFIG_GENERIC_FIND_NEXT_BIT=y |
@@ -36,9 +37,14 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
36 | # CONFIG_BSD_PROCESS_ACCT is not set | 37 | # CONFIG_BSD_PROCESS_ACCT is not set |
37 | # CONFIG_TASKSTATS is not set | 38 | # CONFIG_TASKSTATS is not set |
38 | # CONFIG_USER_NS is not set | 39 | # CONFIG_USER_NS is not set |
40 | # CONFIG_PID_NS is not set | ||
39 | # CONFIG_AUDIT is not set | 41 | # CONFIG_AUDIT is not set |
40 | # CONFIG_IKCONFIG is not set | 42 | # CONFIG_IKCONFIG is not set |
41 | CONFIG_LOG_BUF_SHIFT=14 | 43 | CONFIG_LOG_BUF_SHIFT=14 |
44 | # CONFIG_CGROUPS is not set | ||
45 | CONFIG_FAIR_GROUP_SCHED=y | ||
46 | CONFIG_FAIR_USER_SCHED=y | ||
47 | # CONFIG_FAIR_CGROUP_SCHED is not set | ||
42 | CONFIG_SYSFS_DEPRECATED=y | 48 | CONFIG_SYSFS_DEPRECATED=y |
43 | # CONFIG_RELAY is not set | 49 | # CONFIG_RELAY is not set |
44 | # CONFIG_BLK_DEV_INITRD is not set | 50 | # CONFIG_BLK_DEV_INITRD is not set |
@@ -53,6 +59,7 @@ CONFIG_HOTPLUG=y | |||
53 | CONFIG_PRINTK=y | 59 | CONFIG_PRINTK=y |
54 | CONFIG_BUG=y | 60 | CONFIG_BUG=y |
55 | CONFIG_ELF_CORE=y | 61 | CONFIG_ELF_CORE=y |
62 | CONFIG_COMPAT_BRK=y | ||
56 | CONFIG_BASE_FULL=y | 63 | CONFIG_BASE_FULL=y |
57 | CONFIG_FUTEX=y | 64 | CONFIG_FUTEX=y |
58 | CONFIG_ANON_INODES=y | 65 | CONFIG_ANON_INODES=y |
@@ -65,6 +72,13 @@ CONFIG_VM_EVENT_COUNTERS=y | |||
65 | CONFIG_SLAB=y | 72 | CONFIG_SLAB=y |
66 | # CONFIG_SLUB is not set | 73 | # CONFIG_SLUB is not set |
67 | # CONFIG_SLOB is not set | 74 | # CONFIG_SLOB is not set |
75 | CONFIG_PROFILING=y | ||
76 | # CONFIG_MARKERS is not set | ||
77 | CONFIG_OPROFILE=y | ||
78 | CONFIG_HAVE_OPROFILE=y | ||
79 | # CONFIG_HAVE_KPROBES is not set | ||
80 | CONFIG_PROC_PAGE_MONITOR=y | ||
81 | CONFIG_SLABINFO=y | ||
68 | CONFIG_RT_MUTEXES=y | 82 | CONFIG_RT_MUTEXES=y |
69 | # CONFIG_TINY_SHMEM is not set | 83 | # CONFIG_TINY_SHMEM is not set |
70 | CONFIG_BASE_SMALL=0 | 84 | CONFIG_BASE_SMALL=0 |
@@ -91,13 +105,17 @@ CONFIG_DEFAULT_AS=y | |||
91 | # CONFIG_DEFAULT_CFQ is not set | 105 | # CONFIG_DEFAULT_CFQ is not set |
92 | # CONFIG_DEFAULT_NOOP is not set | 106 | # CONFIG_DEFAULT_NOOP is not set |
93 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 107 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
108 | CONFIG_CLASSIC_RCU=y | ||
109 | # CONFIG_PREEMPT_RCU is not set | ||
94 | 110 | ||
95 | # | 111 | # |
96 | # System type | 112 | # System type |
97 | # | 113 | # |
98 | CONFIG_CPU_SH4=y | 114 | CONFIG_CPU_SH4=y |
99 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | 115 | # CONFIG_CPU_SUBTYPE_SH7619 is not set |
116 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
100 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | 117 | # CONFIG_CPU_SUBTYPE_SH7206 is not set |
118 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
101 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | 119 | # CONFIG_CPU_SUBTYPE_SH7705 is not set |
102 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | 120 | # CONFIG_CPU_SUBTYPE_SH7706 is not set |
103 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | 121 | # CONFIG_CPU_SUBTYPE_SH7707 is not set |
@@ -105,6 +123,8 @@ CONFIG_CPU_SH4=y | |||
105 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | 123 | # CONFIG_CPU_SUBTYPE_SH7709 is not set |
106 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | 124 | # CONFIG_CPU_SUBTYPE_SH7710 is not set |
107 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | 125 | # CONFIG_CPU_SUBTYPE_SH7712 is not set |
126 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
108 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | 128 | # CONFIG_CPU_SUBTYPE_SH7750 is not set |
109 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | 129 | # CONFIG_CPU_SUBTYPE_SH7091 is not set |
110 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | 130 | # CONFIG_CPU_SUBTYPE_SH7750R is not set |
@@ -113,14 +133,15 @@ CONFIG_CPU_SH4=y | |||
113 | CONFIG_CPU_SUBTYPE_SH7751R=y | 133 | CONFIG_CPU_SUBTYPE_SH7751R=y |
114 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | 134 | # CONFIG_CPU_SUBTYPE_SH7760 is not set |
115 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | 135 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set |
116 | # CONFIG_CPU_SUBTYPE_ST40STB1 is not set | 136 | # CONFIG_CPU_SUBTYPE_SH7763 is not set |
117 | # CONFIG_CPU_SUBTYPE_ST40GX1 is not set | ||
118 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | 137 | # CONFIG_CPU_SUBTYPE_SH7770 is not set |
119 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | 138 | # CONFIG_CPU_SUBTYPE_SH7780 is not set |
120 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | 139 | # CONFIG_CPU_SUBTYPE_SH7785 is not set |
121 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | 140 | # CONFIG_CPU_SUBTYPE_SHX3 is not set |
122 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | 141 | # CONFIG_CPU_SUBTYPE_SH7343 is not set |
123 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | 142 | # CONFIG_CPU_SUBTYPE_SH7722 is not set |
143 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
124 | 145 | ||
125 | # | 146 | # |
126 | # Memory management options | 147 | # Memory management options |
@@ -130,6 +151,7 @@ CONFIG_MMU=y | |||
130 | CONFIG_PAGE_OFFSET=0x80000000 | 151 | CONFIG_PAGE_OFFSET=0x80000000 |
131 | CONFIG_MEMORY_START=0x0c000000 | 152 | CONFIG_MEMORY_START=0x0c000000 |
132 | CONFIG_MEMORY_SIZE=0x04000000 | 153 | CONFIG_MEMORY_SIZE=0x04000000 |
154 | CONFIG_29BIT=y | ||
133 | CONFIG_VSYSCALL=y | 155 | CONFIG_VSYSCALL=y |
134 | CONFIG_ARCH_FLATMEM_ENABLE=y | 156 | CONFIG_ARCH_FLATMEM_ENABLE=y |
135 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 157 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
@@ -147,6 +169,7 @@ CONFIG_FLATMEM_MANUAL=y | |||
147 | CONFIG_FLATMEM=y | 169 | CONFIG_FLATMEM=y |
148 | CONFIG_FLAT_NODE_MEM_MAP=y | 170 | CONFIG_FLAT_NODE_MEM_MAP=y |
149 | CONFIG_SPARSEMEM_STATIC=y | 171 | CONFIG_SPARSEMEM_STATIC=y |
172 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
150 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 173 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
151 | # CONFIG_RESOURCES_64BIT is not set | 174 | # CONFIG_RESOURCES_64BIT is not set |
152 | CONFIG_ZONE_DMA_FLAG=0 | 175 | CONFIG_ZONE_DMA_FLAG=0 |
@@ -168,23 +191,22 @@ CONFIG_CPU_LITTLE_ENDIAN=y | |||
168 | CONFIG_SH_FPU=y | 191 | CONFIG_SH_FPU=y |
169 | # CONFIG_SH_STORE_QUEUES is not set | 192 | # CONFIG_SH_STORE_QUEUES is not set |
170 | CONFIG_CPU_HAS_INTEVT=y | 193 | CONFIG_CPU_HAS_INTEVT=y |
171 | CONFIG_CPU_HAS_INTC_IRQ=y | ||
172 | CONFIG_CPU_HAS_SR_RB=y | 194 | CONFIG_CPU_HAS_SR_RB=y |
173 | CONFIG_CPU_HAS_PTEA=y | 195 | CONFIG_CPU_HAS_PTEA=y |
196 | CONFIG_CPU_HAS_FPU=y | ||
174 | 197 | ||
175 | # | 198 | # |
176 | # Board support | 199 | # Board support |
177 | # | 200 | # |
178 | # CONFIG_SH_7751_SYSTEMH is not set | 201 | # CONFIG_SH_7751_SYSTEMH is not set |
179 | # CONFIG_SH_SECUREEDGE5410 is not set | 202 | # CONFIG_SH_SECUREEDGE5410 is not set |
180 | # CONFIG_SH_HS7751RVOIP is not set | ||
181 | CONFIG_SH_RTS7751R2D=y | 203 | CONFIG_SH_RTS7751R2D=y |
182 | # CONFIG_SH_LANDISK is not set | 204 | # CONFIG_SH_LANDISK is not set |
183 | # CONFIG_SH_TITAN is not set | 205 | # CONFIG_SH_TITAN is not set |
184 | # CONFIG_SH_LBOX_RE2 is not set | 206 | # CONFIG_SH_LBOX_RE2 is not set |
185 | 207 | ||
186 | # | 208 | # |
187 | # RTS7751R2D options | 209 | # RTS7751R2D Board Revision |
188 | # | 210 | # |
189 | CONFIG_RTS7751R2D_PLUS=y | 211 | CONFIG_RTS7751R2D_PLUS=y |
190 | # CONFIG_RTS7751R2D_1 is not set | 212 | # CONFIG_RTS7751R2D_1 is not set |
@@ -198,6 +220,7 @@ CONFIG_SH_PCLK_FREQ=60000000 | |||
198 | # CONFIG_TICK_ONESHOT is not set | 220 | # CONFIG_TICK_ONESHOT is not set |
199 | # CONFIG_NO_HZ is not set | 221 | # CONFIG_NO_HZ is not set |
200 | # CONFIG_HIGH_RES_TIMERS is not set | 222 | # CONFIG_HIGH_RES_TIMERS is not set |
223 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
201 | 224 | ||
202 | # | 225 | # |
203 | # CPU Frequency scaling | 226 | # CPU Frequency scaling |
@@ -227,11 +250,15 @@ CONFIG_HZ_250=y | |||
227 | # CONFIG_HZ_300 is not set | 250 | # CONFIG_HZ_300 is not set |
228 | # CONFIG_HZ_1000 is not set | 251 | # CONFIG_HZ_1000 is not set |
229 | CONFIG_HZ=250 | 252 | CONFIG_HZ=250 |
253 | # CONFIG_SCHED_HRTICK is not set | ||
230 | # CONFIG_KEXEC is not set | 254 | # CONFIG_KEXEC is not set |
231 | # CONFIG_CRASH_DUMP is not set | 255 | # CONFIG_CRASH_DUMP is not set |
232 | CONFIG_PREEMPT_NONE=y | 256 | CONFIG_PREEMPT_NONE=y |
233 | # CONFIG_PREEMPT_VOLUNTARY is not set | 257 | # CONFIG_PREEMPT_VOLUNTARY is not set |
234 | # CONFIG_PREEMPT is not set | 258 | # CONFIG_PREEMPT is not set |
259 | CONFIG_RCU_TRACE=y | ||
260 | CONFIG_GUSA=y | ||
261 | # CONFIG_GUSA_RB is not set | ||
235 | 262 | ||
236 | # | 263 | # |
237 | # Boot options | 264 | # Boot options |
@@ -250,10 +277,7 @@ CONFIG_SH_PCIDMA_NONCOHERENT=y | |||
250 | CONFIG_PCI_AUTO=y | 277 | CONFIG_PCI_AUTO=y |
251 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y | 278 | CONFIG_PCI_AUTO_UPDATE_RESOURCES=y |
252 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 279 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
253 | 280 | CONFIG_PCI_LEGACY=y | |
254 | # | ||
255 | # PCCARD (PCMCIA/CardBus) support | ||
256 | # | ||
257 | # CONFIG_PCCARD is not set | 281 | # CONFIG_PCCARD is not set |
258 | CONFIG_HOTPLUG_PCI=y | 282 | CONFIG_HOTPLUG_PCI=y |
259 | # CONFIG_HOTPLUG_PCI_FAKE is not set | 283 | # CONFIG_HOTPLUG_PCI_FAKE is not set |
@@ -281,6 +305,7 @@ CONFIG_XFRM=y | |||
281 | # CONFIG_XFRM_USER is not set | 305 | # CONFIG_XFRM_USER is not set |
282 | # CONFIG_XFRM_SUB_POLICY is not set | 306 | # CONFIG_XFRM_SUB_POLICY is not set |
283 | # CONFIG_XFRM_MIGRATE is not set | 307 | # CONFIG_XFRM_MIGRATE is not set |
308 | # CONFIG_XFRM_STATISTICS is not set | ||
284 | # CONFIG_NET_KEY is not set | 309 | # CONFIG_NET_KEY is not set |
285 | CONFIG_INET=y | 310 | CONFIG_INET=y |
286 | # CONFIG_IP_MULTICAST is not set | 311 | # CONFIG_IP_MULTICAST is not set |
@@ -299,6 +324,7 @@ CONFIG_IP_FIB_HASH=y | |||
299 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | 324 | CONFIG_INET_XFRM_MODE_TRANSPORT=y |
300 | CONFIG_INET_XFRM_MODE_TUNNEL=y | 325 | CONFIG_INET_XFRM_MODE_TUNNEL=y |
301 | CONFIG_INET_XFRM_MODE_BEET=y | 326 | CONFIG_INET_XFRM_MODE_BEET=y |
327 | # CONFIG_INET_LRO is not set | ||
302 | CONFIG_INET_DIAG=y | 328 | CONFIG_INET_DIAG=y |
303 | CONFIG_INET_TCP_DIAG=y | 329 | CONFIG_INET_TCP_DIAG=y |
304 | # CONFIG_TCP_CONG_ADVANCED is not set | 330 | # CONFIG_TCP_CONG_ADVANCED is not set |
@@ -324,10 +350,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
324 | # CONFIG_LAPB is not set | 350 | # CONFIG_LAPB is not set |
325 | # CONFIG_ECONET is not set | 351 | # CONFIG_ECONET is not set |
326 | # CONFIG_WAN_ROUTER is not set | 352 | # CONFIG_WAN_ROUTER is not set |
327 | |||
328 | # | ||
329 | # QoS and/or fair queueing | ||
330 | # | ||
331 | # CONFIG_NET_SCHED is not set | 353 | # CONFIG_NET_SCHED is not set |
332 | 354 | ||
333 | # | 355 | # |
@@ -335,6 +357,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
335 | # | 357 | # |
336 | # CONFIG_NET_PKTGEN is not set | 358 | # CONFIG_NET_PKTGEN is not set |
337 | # CONFIG_HAMRADIO is not set | 359 | # CONFIG_HAMRADIO is not set |
360 | # CONFIG_CAN is not set | ||
338 | # CONFIG_IRDA is not set | 361 | # CONFIG_IRDA is not set |
339 | # CONFIG_BT is not set | 362 | # CONFIG_BT is not set |
340 | # CONFIG_AF_RXRPC is not set | 363 | # CONFIG_AF_RXRPC is not set |
@@ -356,6 +379,7 @@ CONFIG_WIRELESS_EXT=y | |||
356 | # | 379 | # |
357 | # Generic Driver Options | 380 | # Generic Driver Options |
358 | # | 381 | # |
382 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
359 | CONFIG_STANDALONE=y | 383 | CONFIG_STANDALONE=y |
360 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 384 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
361 | CONFIG_FW_LOADER=m | 385 | CONFIG_FW_LOADER=m |
@@ -371,6 +395,7 @@ CONFIG_BLK_DEV=y | |||
371 | # CONFIG_BLK_DEV_LOOP is not set | 395 | # CONFIG_BLK_DEV_LOOP is not set |
372 | # CONFIG_BLK_DEV_NBD is not set | 396 | # CONFIG_BLK_DEV_NBD is not set |
373 | # CONFIG_BLK_DEV_SX8 is not set | 397 | # CONFIG_BLK_DEV_SX8 is not set |
398 | # CONFIG_BLK_DEV_UB is not set | ||
374 | CONFIG_BLK_DEV_RAM=y | 399 | CONFIG_BLK_DEV_RAM=y |
375 | CONFIG_BLK_DEV_RAM_COUNT=16 | 400 | CONFIG_BLK_DEV_RAM_COUNT=16 |
376 | CONFIG_BLK_DEV_RAM_SIZE=4096 | 401 | CONFIG_BLK_DEV_RAM_SIZE=4096 |
@@ -420,6 +445,7 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
420 | # CONFIG_SCSI_FC_ATTRS is not set | 445 | # CONFIG_SCSI_FC_ATTRS is not set |
421 | # CONFIG_SCSI_ISCSI_ATTRS is not set | 446 | # CONFIG_SCSI_ISCSI_ATTRS is not set |
422 | # CONFIG_SCSI_SAS_LIBSAS is not set | 447 | # CONFIG_SCSI_SAS_LIBSAS is not set |
448 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
423 | CONFIG_SCSI_LOWLEVEL=y | 449 | CONFIG_SCSI_LOWLEVEL=y |
424 | # CONFIG_ISCSI_TCP is not set | 450 | # CONFIG_ISCSI_TCP is not set |
425 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 451 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
@@ -493,7 +519,9 @@ CONFIG_ATA=y | |||
493 | # CONFIG_PATA_MPIIX is not set | 519 | # CONFIG_PATA_MPIIX is not set |
494 | # CONFIG_PATA_OLDPIIX is not set | 520 | # CONFIG_PATA_OLDPIIX is not set |
495 | # CONFIG_PATA_NETCELL is not set | 521 | # CONFIG_PATA_NETCELL is not set |
522 | # CONFIG_PATA_NINJA32 is not set | ||
496 | # CONFIG_PATA_NS87410 is not set | 523 | # CONFIG_PATA_NS87410 is not set |
524 | # CONFIG_PATA_NS87415 is not set | ||
497 | # CONFIG_PATA_OPTI is not set | 525 | # CONFIG_PATA_OPTI is not set |
498 | # CONFIG_PATA_OPTIDMA is not set | 526 | # CONFIG_PATA_OPTIDMA is not set |
499 | # CONFIG_PATA_PDC_OLD is not set | 527 | # CONFIG_PATA_PDC_OLD is not set |
@@ -508,14 +536,7 @@ CONFIG_ATA=y | |||
508 | # CONFIG_PATA_WINBOND is not set | 536 | # CONFIG_PATA_WINBOND is not set |
509 | CONFIG_PATA_PLATFORM=y | 537 | CONFIG_PATA_PLATFORM=y |
510 | # CONFIG_MD is not set | 538 | # CONFIG_MD is not set |
511 | |||
512 | # | ||
513 | # Fusion MPT device support | ||
514 | # | ||
515 | # CONFIG_FUSION is not set | 539 | # CONFIG_FUSION is not set |
516 | # CONFIG_FUSION_SPI is not set | ||
517 | # CONFIG_FUSION_FC is not set | ||
518 | # CONFIG_FUSION_SAS is not set | ||
519 | 540 | ||
520 | # | 541 | # |
521 | # IEEE 1394 (FireWire) support | 542 | # IEEE 1394 (FireWire) support |
@@ -530,25 +551,31 @@ CONFIG_NETDEVICES=y | |||
530 | # CONFIG_MACVLAN is not set | 551 | # CONFIG_MACVLAN is not set |
531 | # CONFIG_EQUALIZER is not set | 552 | # CONFIG_EQUALIZER is not set |
532 | # CONFIG_TUN is not set | 553 | # CONFIG_TUN is not set |
554 | # CONFIG_VETH is not set | ||
533 | # CONFIG_ARCNET is not set | 555 | # CONFIG_ARCNET is not set |
534 | # CONFIG_PHYLIB is not set | 556 | # CONFIG_PHYLIB is not set |
535 | CONFIG_NET_ETHERNET=y | 557 | CONFIG_NET_ETHERNET=y |
536 | CONFIG_MII=y | 558 | CONFIG_MII=y |
559 | # CONFIG_AX88796 is not set | ||
537 | # CONFIG_STNIC is not set | 560 | # CONFIG_STNIC is not set |
538 | # CONFIG_HAPPYMEAL is not set | 561 | # CONFIG_HAPPYMEAL is not set |
539 | # CONFIG_SUNGEM is not set | 562 | # CONFIG_SUNGEM is not set |
540 | # CONFIG_CASSINI is not set | 563 | # CONFIG_CASSINI is not set |
541 | # CONFIG_NET_VENDOR_3COM is not set | 564 | # CONFIG_NET_VENDOR_3COM is not set |
542 | # CONFIG_SMC91X is not set | 565 | # CONFIG_SMC91X is not set |
566 | # CONFIG_ENC28J60 is not set | ||
543 | # CONFIG_NET_TULIP is not set | 567 | # CONFIG_NET_TULIP is not set |
544 | # CONFIG_HP100 is not set | 568 | # CONFIG_HP100 is not set |
569 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | ||
570 | # CONFIG_IBM_NEW_EMAC_RGMII is not set | ||
571 | # CONFIG_IBM_NEW_EMAC_TAH is not set | ||
572 | # CONFIG_IBM_NEW_EMAC_EMAC4 is not set | ||
545 | CONFIG_NET_PCI=y | 573 | CONFIG_NET_PCI=y |
546 | # CONFIG_PCNET32 is not set | 574 | # CONFIG_PCNET32 is not set |
547 | # CONFIG_AMD8111_ETH is not set | 575 | # CONFIG_AMD8111_ETH is not set |
548 | # CONFIG_ADAPTEC_STARFIRE is not set | 576 | # CONFIG_ADAPTEC_STARFIRE is not set |
549 | # CONFIG_B44 is not set | 577 | # CONFIG_B44 is not set |
550 | # CONFIG_FORCEDETH is not set | 578 | # CONFIG_FORCEDETH is not set |
551 | # CONFIG_DGRS is not set | ||
552 | # CONFIG_EEPRO100 is not set | 579 | # CONFIG_EEPRO100 is not set |
553 | # CONFIG_E100 is not set | 580 | # CONFIG_E100 is not set |
554 | # CONFIG_FEALNX is not set | 581 | # CONFIG_FEALNX is not set |
@@ -560,6 +587,7 @@ CONFIG_8139TOO=y | |||
560 | # CONFIG_8139TOO_TUNE_TWISTER is not set | 587 | # CONFIG_8139TOO_TUNE_TWISTER is not set |
561 | # CONFIG_8139TOO_8129 is not set | 588 | # CONFIG_8139TOO_8129 is not set |
562 | # CONFIG_8139_OLD_RX_RESET is not set | 589 | # CONFIG_8139_OLD_RX_RESET is not set |
590 | # CONFIG_R6040 is not set | ||
563 | # CONFIG_SIS900 is not set | 591 | # CONFIG_SIS900 is not set |
564 | # CONFIG_EPIC100 is not set | 592 | # CONFIG_EPIC100 is not set |
565 | # CONFIG_SUNDANCE is not set | 593 | # CONFIG_SUNDANCE is not set |
@@ -570,6 +598,10 @@ CONFIG_NETDEV_1000=y | |||
570 | # CONFIG_ACENIC is not set | 598 | # CONFIG_ACENIC is not set |
571 | # CONFIG_DL2K is not set | 599 | # CONFIG_DL2K is not set |
572 | # CONFIG_E1000 is not set | 600 | # CONFIG_E1000 is not set |
601 | # CONFIG_E1000E is not set | ||
602 | # CONFIG_E1000E_ENABLED is not set | ||
603 | # CONFIG_IP1000 is not set | ||
604 | # CONFIG_IGB is not set | ||
573 | # CONFIG_NS83820 is not set | 605 | # CONFIG_NS83820 is not set |
574 | # CONFIG_HAMACHI is not set | 606 | # CONFIG_HAMACHI is not set |
575 | # CONFIG_YELLOWFIN is not set | 607 | # CONFIG_YELLOWFIN is not set |
@@ -577,6 +609,7 @@ CONFIG_NETDEV_1000=y | |||
577 | # CONFIG_SIS190 is not set | 609 | # CONFIG_SIS190 is not set |
578 | # CONFIG_SKGE is not set | 610 | # CONFIG_SKGE is not set |
579 | # CONFIG_SKY2 is not set | 611 | # CONFIG_SKY2 is not set |
612 | # CONFIG_SK98LIN is not set | ||
580 | # CONFIG_VIA_VELOCITY is not set | 613 | # CONFIG_VIA_VELOCITY is not set |
581 | # CONFIG_TIGON3 is not set | 614 | # CONFIG_TIGON3 is not set |
582 | # CONFIG_BNX2 is not set | 615 | # CONFIG_BNX2 is not set |
@@ -585,11 +618,15 @@ CONFIG_NETDEV_1000=y | |||
585 | CONFIG_NETDEV_10000=y | 618 | CONFIG_NETDEV_10000=y |
586 | # CONFIG_CHELSIO_T1 is not set | 619 | # CONFIG_CHELSIO_T1 is not set |
587 | # CONFIG_CHELSIO_T3 is not set | 620 | # CONFIG_CHELSIO_T3 is not set |
621 | # CONFIG_IXGBE is not set | ||
588 | # CONFIG_IXGB is not set | 622 | # CONFIG_IXGB is not set |
589 | # CONFIG_S2IO is not set | 623 | # CONFIG_S2IO is not set |
590 | # CONFIG_MYRI10GE is not set | 624 | # CONFIG_MYRI10GE is not set |
591 | # CONFIG_NETXEN_NIC is not set | 625 | # CONFIG_NETXEN_NIC is not set |
626 | # CONFIG_NIU is not set | ||
592 | # CONFIG_MLX4_CORE is not set | 627 | # CONFIG_MLX4_CORE is not set |
628 | # CONFIG_TEHUTI is not set | ||
629 | # CONFIG_BNX2X is not set | ||
593 | # CONFIG_TR is not set | 630 | # CONFIG_TR is not set |
594 | 631 | ||
595 | # | 632 | # |
@@ -597,13 +634,21 @@ CONFIG_NETDEV_10000=y | |||
597 | # | 634 | # |
598 | # CONFIG_WLAN_PRE80211 is not set | 635 | # CONFIG_WLAN_PRE80211 is not set |
599 | # CONFIG_WLAN_80211 is not set | 636 | # CONFIG_WLAN_80211 is not set |
637 | |||
638 | # | ||
639 | # USB Network Adapters | ||
640 | # | ||
641 | # CONFIG_USB_CATC is not set | ||
642 | # CONFIG_USB_KAWETH is not set | ||
643 | # CONFIG_USB_PEGASUS is not set | ||
644 | # CONFIG_USB_RTL8150 is not set | ||
645 | # CONFIG_USB_USBNET is not set | ||
600 | # CONFIG_WAN is not set | 646 | # CONFIG_WAN is not set |
601 | # CONFIG_FDDI is not set | 647 | # CONFIG_FDDI is not set |
602 | # CONFIG_HIPPI is not set | 648 | # CONFIG_HIPPI is not set |
603 | # CONFIG_PPP is not set | 649 | # CONFIG_PPP is not set |
604 | # CONFIG_SLIP is not set | 650 | # CONFIG_SLIP is not set |
605 | # CONFIG_NET_FC is not set | 651 | # CONFIG_NET_FC is not set |
606 | # CONFIG_SHAPER is not set | ||
607 | # CONFIG_NETCONSOLE is not set | 652 | # CONFIG_NETCONSOLE is not set |
608 | # CONFIG_NETPOLL is not set | 653 | # CONFIG_NETPOLL is not set |
609 | # CONFIG_NET_POLL_CONTROLLER is not set | 654 | # CONFIG_NET_POLL_CONTROLLER is not set |
@@ -622,7 +667,6 @@ CONFIG_INPUT=y | |||
622 | # | 667 | # |
623 | # CONFIG_INPUT_MOUSEDEV is not set | 668 | # CONFIG_INPUT_MOUSEDEV is not set |
624 | # CONFIG_INPUT_JOYDEV is not set | 669 | # CONFIG_INPUT_JOYDEV is not set |
625 | # CONFIG_INPUT_TSDEV is not set | ||
626 | # CONFIG_INPUT_EVDEV is not set | 670 | # CONFIG_INPUT_EVDEV is not set |
627 | # CONFIG_INPUT_EVBUG is not set | 671 | # CONFIG_INPUT_EVBUG is not set |
628 | 672 | ||
@@ -650,6 +694,7 @@ CONFIG_VT_CONSOLE=y | |||
650 | CONFIG_HW_CONSOLE=y | 694 | CONFIG_HW_CONSOLE=y |
651 | CONFIG_VT_HW_CONSOLE_BINDING=y | 695 | CONFIG_VT_HW_CONSOLE_BINDING=y |
652 | # CONFIG_SERIAL_NONSTANDARD is not set | 696 | # CONFIG_SERIAL_NONSTANDARD is not set |
697 | # CONFIG_NOZOMI is not set | ||
653 | 698 | ||
654 | # | 699 | # |
655 | # Serial drivers | 700 | # Serial drivers |
@@ -674,11 +719,9 @@ CONFIG_UNIX98_PTYS=y | |||
674 | CONFIG_LEGACY_PTYS=y | 719 | CONFIG_LEGACY_PTYS=y |
675 | CONFIG_LEGACY_PTY_COUNT=256 | 720 | CONFIG_LEGACY_PTY_COUNT=256 |
676 | # CONFIG_IPMI_HANDLER is not set | 721 | # CONFIG_IPMI_HANDLER is not set |
677 | # CONFIG_WATCHDOG is not set | ||
678 | CONFIG_HW_RANDOM=y | 722 | CONFIG_HW_RANDOM=y |
679 | # CONFIG_R3964 is not set | 723 | # CONFIG_R3964 is not set |
680 | # CONFIG_APPLICOM is not set | 724 | # CONFIG_APPLICOM is not set |
681 | # CONFIG_DRM is not set | ||
682 | # CONFIG_RAW_DRIVER is not set | 725 | # CONFIG_RAW_DRIVER is not set |
683 | # CONFIG_TCG_TPM is not set | 726 | # CONFIG_TCG_TPM is not set |
684 | CONFIG_DEVPORT=y | 727 | CONFIG_DEVPORT=y |
@@ -687,16 +730,30 @@ CONFIG_DEVPORT=y | |||
687 | # | 730 | # |
688 | # SPI support | 731 | # SPI support |
689 | # | 732 | # |
690 | # CONFIG_SPI is not set | 733 | CONFIG_SPI=y |
691 | # CONFIG_SPI_MASTER is not set | 734 | CONFIG_SPI_MASTER=y |
735 | |||
736 | # | ||
737 | # SPI Master Controller Drivers | ||
738 | # | ||
739 | CONFIG_SPI_BITBANG=y | ||
740 | CONFIG_SPI_SH_SCI=y | ||
741 | |||
742 | # | ||
743 | # SPI Protocol Masters | ||
744 | # | ||
745 | # CONFIG_SPI_AT25 is not set | ||
746 | # CONFIG_SPI_SPIDEV is not set | ||
747 | # CONFIG_SPI_TLE62X0 is not set | ||
692 | # CONFIG_W1 is not set | 748 | # CONFIG_W1 is not set |
693 | # CONFIG_POWER_SUPPLY is not set | 749 | # CONFIG_POWER_SUPPLY is not set |
694 | CONFIG_HWMON=y | 750 | CONFIG_HWMON=y |
695 | # CONFIG_HWMON_VID is not set | 751 | # CONFIG_HWMON_VID is not set |
696 | # CONFIG_SENSORS_ABITUGURU is not set | 752 | # CONFIG_SENSORS_I5K_AMB is not set |
697 | # CONFIG_SENSORS_ABITUGURU3 is not set | ||
698 | # CONFIG_SENSORS_F71805F is not set | 753 | # CONFIG_SENSORS_F71805F is not set |
754 | # CONFIG_SENSORS_F71882FG is not set | ||
699 | # CONFIG_SENSORS_IT87 is not set | 755 | # CONFIG_SENSORS_IT87 is not set |
756 | # CONFIG_SENSORS_LM70 is not set | ||
700 | # CONFIG_SENSORS_PC87360 is not set | 757 | # CONFIG_SENSORS_PC87360 is not set |
701 | # CONFIG_SENSORS_PC87427 is not set | 758 | # CONFIG_SENSORS_PC87427 is not set |
702 | # CONFIG_SENSORS_SIS5595 is not set | 759 | # CONFIG_SENSORS_SIS5595 is not set |
@@ -708,6 +765,13 @@ CONFIG_HWMON=y | |||
708 | # CONFIG_SENSORS_W83627HF is not set | 765 | # CONFIG_SENSORS_W83627HF is not set |
709 | # CONFIG_SENSORS_W83627EHF is not set | 766 | # CONFIG_SENSORS_W83627EHF is not set |
710 | # CONFIG_HWMON_DEBUG_CHIP is not set | 767 | # CONFIG_HWMON_DEBUG_CHIP is not set |
768 | # CONFIG_WATCHDOG is not set | ||
769 | |||
770 | # | ||
771 | # Sonics Silicon Backplane | ||
772 | # | ||
773 | CONFIG_SSB_POSSIBLE=y | ||
774 | # CONFIG_SSB is not set | ||
711 | 775 | ||
712 | # | 776 | # |
713 | # Multifunction device drivers | 777 | # Multifunction device drivers |
@@ -720,16 +784,12 @@ CONFIG_MFD_SM501=y | |||
720 | # CONFIG_VIDEO_DEV is not set | 784 | # CONFIG_VIDEO_DEV is not set |
721 | # CONFIG_DVB_CORE is not set | 785 | # CONFIG_DVB_CORE is not set |
722 | CONFIG_DAB=y | 786 | CONFIG_DAB=y |
787 | # CONFIG_USB_DABUSB is not set | ||
723 | 788 | ||
724 | # | 789 | # |
725 | # Graphics support | 790 | # Graphics support |
726 | # | 791 | # |
727 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | 792 | # CONFIG_DRM is not set |
728 | |||
729 | # | ||
730 | # Display device support | ||
731 | # | ||
732 | # CONFIG_DISPLAY_SUPPORT is not set | ||
733 | # CONFIG_VGASTATE is not set | 793 | # CONFIG_VGASTATE is not set |
734 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 794 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
735 | CONFIG_FB=y | 795 | CONFIG_FB=y |
@@ -738,6 +798,7 @@ CONFIG_FB=y | |||
738 | CONFIG_FB_CFB_FILLRECT=y | 798 | CONFIG_FB_CFB_FILLRECT=y |
739 | CONFIG_FB_CFB_COPYAREA=y | 799 | CONFIG_FB_CFB_COPYAREA=y |
740 | CONFIG_FB_CFB_IMAGEBLIT=y | 800 | CONFIG_FB_CFB_IMAGEBLIT=y |
801 | # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set | ||
741 | # CONFIG_FB_SYS_FILLRECT is not set | 802 | # CONFIG_FB_SYS_FILLRECT is not set |
742 | # CONFIG_FB_SYS_COPYAREA is not set | 803 | # CONFIG_FB_SYS_COPYAREA is not set |
743 | # CONFIG_FB_SYS_IMAGEBLIT is not set | 804 | # CONFIG_FB_SYS_IMAGEBLIT is not set |
@@ -777,6 +838,12 @@ CONFIG_FB_DEFERRED_IO=y | |||
777 | # CONFIG_FB_PM3 is not set | 838 | # CONFIG_FB_PM3 is not set |
778 | CONFIG_FB_SM501=y | 839 | CONFIG_FB_SM501=y |
779 | # CONFIG_FB_VIRTUAL is not set | 840 | # CONFIG_FB_VIRTUAL is not set |
841 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
842 | |||
843 | # | ||
844 | # Display device support | ||
845 | # | ||
846 | # CONFIG_DISPLAY_SUPPORT is not set | ||
780 | 847 | ||
781 | # | 848 | # |
782 | # Console display driver support | 849 | # Console display driver support |
@@ -844,6 +911,7 @@ CONFIG_SND_AC97_CODEC=m | |||
844 | # CONFIG_SND_BT87X is not set | 911 | # CONFIG_SND_BT87X is not set |
845 | # CONFIG_SND_CA0106 is not set | 912 | # CONFIG_SND_CA0106 is not set |
846 | # CONFIG_SND_CMIPCI is not set | 913 | # CONFIG_SND_CMIPCI is not set |
914 | # CONFIG_SND_OXYGEN is not set | ||
847 | # CONFIG_SND_CS4281 is not set | 915 | # CONFIG_SND_CS4281 is not set |
848 | # CONFIG_SND_CS46XX is not set | 916 | # CONFIG_SND_CS46XX is not set |
849 | # CONFIG_SND_DARLA20 is not set | 917 | # CONFIG_SND_DARLA20 is not set |
@@ -868,6 +936,7 @@ CONFIG_SND_AC97_CODEC=m | |||
868 | # CONFIG_SND_HDA_INTEL is not set | 936 | # CONFIG_SND_HDA_INTEL is not set |
869 | # CONFIG_SND_HDSP is not set | 937 | # CONFIG_SND_HDSP is not set |
870 | # CONFIG_SND_HDSPM is not set | 938 | # CONFIG_SND_HDSPM is not set |
939 | # CONFIG_SND_HIFIER is not set | ||
871 | # CONFIG_SND_ICE1712 is not set | 940 | # CONFIG_SND_ICE1712 is not set |
872 | # CONFIG_SND_ICE1724 is not set | 941 | # CONFIG_SND_ICE1724 is not set |
873 | # CONFIG_SND_INTEL8X0 is not set | 942 | # CONFIG_SND_INTEL8X0 is not set |
@@ -885,16 +954,27 @@ CONFIG_SND_AC97_CODEC=m | |||
885 | # CONFIG_SND_TRIDENT is not set | 954 | # CONFIG_SND_TRIDENT is not set |
886 | # CONFIG_SND_VIA82XX is not set | 955 | # CONFIG_SND_VIA82XX is not set |
887 | # CONFIG_SND_VIA82XX_MODEM is not set | 956 | # CONFIG_SND_VIA82XX_MODEM is not set |
957 | # CONFIG_SND_VIRTUOSO is not set | ||
888 | # CONFIG_SND_VX222 is not set | 958 | # CONFIG_SND_VX222 is not set |
889 | CONFIG_SND_YMFPCI=m | 959 | CONFIG_SND_YMFPCI=m |
890 | CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y | 960 | CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y |
891 | # CONFIG_SND_AC97_POWER_SAVE is not set | 961 | # CONFIG_SND_AC97_POWER_SAVE is not set |
892 | 962 | ||
893 | # | 963 | # |
964 | # SPI devices | ||
965 | # | ||
966 | |||
967 | # | ||
894 | # SUPERH devices | 968 | # SUPERH devices |
895 | # | 969 | # |
896 | 970 | ||
897 | # | 971 | # |
972 | # USB devices | ||
973 | # | ||
974 | # CONFIG_SND_USB_AUDIO is not set | ||
975 | # CONFIG_SND_USB_CAIAQ is not set | ||
976 | |||
977 | # | ||
898 | # System on Chip audio support | 978 | # System on Chip audio support |
899 | # | 979 | # |
900 | # CONFIG_SND_SOC is not set | 980 | # CONFIG_SND_SOC is not set |
@@ -904,6 +984,10 @@ CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL=y | |||
904 | # | 984 | # |
905 | 985 | ||
906 | # | 986 | # |
987 | # ALSA SoC audio for Freescale SOCs | ||
988 | # | ||
989 | |||
990 | # | ||
907 | # Open Sound System | 991 | # Open Sound System |
908 | # | 992 | # |
909 | CONFIG_SOUND_PRIME=m | 993 | CONFIG_SOUND_PRIME=m |
@@ -914,19 +998,104 @@ CONFIG_AC97_BUS=m | |||
914 | CONFIG_HID_SUPPORT=y | 998 | CONFIG_HID_SUPPORT=y |
915 | CONFIG_HID=y | 999 | CONFIG_HID=y |
916 | # CONFIG_HID_DEBUG is not set | 1000 | # CONFIG_HID_DEBUG is not set |
1001 | # CONFIG_HIDRAW is not set | ||
1002 | |||
1003 | # | ||
1004 | # USB Input Devices | ||
1005 | # | ||
1006 | CONFIG_USB_HID=y | ||
1007 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
1008 | # CONFIG_HID_FF is not set | ||
1009 | # CONFIG_USB_HIDDEV is not set | ||
917 | CONFIG_USB_SUPPORT=y | 1010 | CONFIG_USB_SUPPORT=y |
918 | CONFIG_USB_ARCH_HAS_HCD=y | 1011 | CONFIG_USB_ARCH_HAS_HCD=y |
919 | CONFIG_USB_ARCH_HAS_OHCI=y | 1012 | CONFIG_USB_ARCH_HAS_OHCI=y |
920 | CONFIG_USB_ARCH_HAS_EHCI=y | 1013 | CONFIG_USB_ARCH_HAS_EHCI=y |
921 | # CONFIG_USB is not set | 1014 | CONFIG_USB=y |
1015 | # CONFIG_USB_DEBUG is not set | ||
1016 | CONFIG_USB_ANNOUNCE_NEW_DEVICES=y | ||
1017 | |||
1018 | # | ||
1019 | # Miscellaneous USB options | ||
1020 | # | ||
1021 | # CONFIG_USB_DEVICEFS is not set | ||
1022 | CONFIG_USB_DEVICE_CLASS=y | ||
1023 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
1024 | # CONFIG_USB_OTG is not set | ||
1025 | |||
1026 | # | ||
1027 | # USB Host Controller Drivers | ||
1028 | # | ||
1029 | # CONFIG_USB_EHCI_HCD is not set | ||
1030 | # CONFIG_USB_ISP116X_HCD is not set | ||
1031 | CONFIG_USB_OHCI_HCD=y | ||
1032 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
1033 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
1034 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
1035 | # CONFIG_USB_UHCI_HCD is not set | ||
1036 | # CONFIG_USB_SL811_HCD is not set | ||
1037 | # CONFIG_USB_R8A66597_HCD is not set | ||
1038 | |||
1039 | # | ||
1040 | # USB Device Class drivers | ||
1041 | # | ||
1042 | # CONFIG_USB_ACM is not set | ||
1043 | # CONFIG_USB_PRINTER is not set | ||
922 | 1044 | ||
923 | # | 1045 | # |
924 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1046 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' |
925 | # | 1047 | # |
926 | 1048 | ||
927 | # | 1049 | # |
928 | # USB Gadget Support | 1050 | # may also be needed; see USB_STORAGE Help for more information |
1051 | # | ||
1052 | CONFIG_USB_STORAGE=y | ||
1053 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
1054 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
1055 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
1056 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
1057 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1058 | # CONFIG_USB_STORAGE_USBAT is not set | ||
1059 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
1060 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
1061 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
1062 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
1063 | # CONFIG_USB_STORAGE_KARMA is not set | ||
1064 | CONFIG_USB_LIBUSUAL=y | ||
1065 | |||
1066 | # | ||
1067 | # USB Imaging devices | ||
1068 | # | ||
1069 | # CONFIG_USB_MDC800 is not set | ||
1070 | # CONFIG_USB_MICROTEK is not set | ||
1071 | # CONFIG_USB_MON is not set | ||
1072 | |||
1073 | # | ||
1074 | # USB port drivers | ||
1075 | # | ||
1076 | # CONFIG_USB_SERIAL is not set | ||
1077 | |||
1078 | # | ||
1079 | # USB Miscellaneous drivers | ||
929 | # | 1080 | # |
1081 | # CONFIG_USB_EMI62 is not set | ||
1082 | # CONFIG_USB_EMI26 is not set | ||
1083 | # CONFIG_USB_ADUTUX is not set | ||
1084 | # CONFIG_USB_AUERSWALD is not set | ||
1085 | # CONFIG_USB_RIO500 is not set | ||
1086 | # CONFIG_USB_LEGOTOWER is not set | ||
1087 | # CONFIG_USB_LCD is not set | ||
1088 | # CONFIG_USB_BERRY_CHARGE is not set | ||
1089 | # CONFIG_USB_LED is not set | ||
1090 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
1091 | # CONFIG_USB_CYTHERM is not set | ||
1092 | # CONFIG_USB_PHIDGET is not set | ||
1093 | # CONFIG_USB_IDMOUSE is not set | ||
1094 | # CONFIG_USB_FTDI_ELAN is not set | ||
1095 | # CONFIG_USB_APPLEDISPLAY is not set | ||
1096 | # CONFIG_USB_LD is not set | ||
1097 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
1098 | # CONFIG_USB_IOWARRIOR is not set | ||
930 | # CONFIG_USB_GADGET is not set | 1099 | # CONFIG_USB_GADGET is not set |
931 | # CONFIG_MMC is not set | 1100 | # CONFIG_MMC is not set |
932 | # CONFIG_NEW_LEDS is not set | 1101 | # CONFIG_NEW_LEDS is not set |
@@ -949,13 +1118,17 @@ CONFIG_RTC_INTF_DEV=y | |||
949 | # | 1118 | # |
950 | # SPI RTC drivers | 1119 | # SPI RTC drivers |
951 | # | 1120 | # |
1121 | # CONFIG_RTC_DRV_MAX6902 is not set | ||
1122 | CONFIG_RTC_DRV_R9701=y | ||
1123 | # CONFIG_RTC_DRV_RS5C348 is not set | ||
952 | 1124 | ||
953 | # | 1125 | # |
954 | # Platform RTC drivers | 1126 | # Platform RTC drivers |
955 | # | 1127 | # |
1128 | # CONFIG_RTC_DRV_DS1511 is not set | ||
956 | # CONFIG_RTC_DRV_DS1553 is not set | 1129 | # CONFIG_RTC_DRV_DS1553 is not set |
957 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
958 | # CONFIG_RTC_DRV_DS1742 is not set | 1130 | # CONFIG_RTC_DRV_DS1742 is not set |
1131 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
959 | # CONFIG_RTC_DRV_M48T86 is not set | 1132 | # CONFIG_RTC_DRV_M48T86 is not set |
960 | # CONFIG_RTC_DRV_M48T59 is not set | 1133 | # CONFIG_RTC_DRV_M48T59 is not set |
961 | # CONFIG_RTC_DRV_V3020 is not set | 1134 | # CONFIG_RTC_DRV_V3020 is not set |
@@ -963,20 +1136,7 @@ CONFIG_RTC_INTF_DEV=y | |||
963 | # | 1136 | # |
964 | # on-CPU RTC drivers | 1137 | # on-CPU RTC drivers |
965 | # | 1138 | # |
966 | CONFIG_RTC_DRV_SH=y | 1139 | # CONFIG_RTC_DRV_SH is not set |
967 | |||
968 | # | ||
969 | # DMA Engine support | ||
970 | # | ||
971 | # CONFIG_DMA_ENGINE is not set | ||
972 | |||
973 | # | ||
974 | # DMA Clients | ||
975 | # | ||
976 | |||
977 | # | ||
978 | # DMA Devices | ||
979 | # | ||
980 | 1140 | ||
981 | # | 1141 | # |
982 | # Userspace I/O | 1142 | # Userspace I/O |
@@ -1034,7 +1194,6 @@ CONFIG_TMPFS=y | |||
1034 | # CONFIG_TMPFS_POSIX_ACL is not set | 1194 | # CONFIG_TMPFS_POSIX_ACL is not set |
1035 | # CONFIG_HUGETLBFS is not set | 1195 | # CONFIG_HUGETLBFS is not set |
1036 | # CONFIG_HUGETLB_PAGE is not set | 1196 | # CONFIG_HUGETLB_PAGE is not set |
1037 | CONFIG_RAMFS=y | ||
1038 | # CONFIG_CONFIGFS_FS is not set | 1197 | # CONFIG_CONFIGFS_FS is not set |
1039 | 1198 | ||
1040 | # | 1199 | # |
@@ -1053,10 +1212,7 @@ CONFIG_RAMFS=y | |||
1053 | # CONFIG_QNX4FS_FS is not set | 1212 | # CONFIG_QNX4FS_FS is not set |
1054 | # CONFIG_SYSV_FS is not set | 1213 | # CONFIG_SYSV_FS is not set |
1055 | # CONFIG_UFS_FS is not set | 1214 | # CONFIG_UFS_FS is not set |
1056 | 1215 | CONFIG_NETWORK_FILESYSTEMS=y | |
1057 | # | ||
1058 | # Network File Systems | ||
1059 | # | ||
1060 | # CONFIG_NFS_FS is not set | 1216 | # CONFIG_NFS_FS is not set |
1061 | # CONFIG_NFSD is not set | 1217 | # CONFIG_NFSD is not set |
1062 | # CONFIG_SMB_FS is not set | 1218 | # CONFIG_SMB_FS is not set |
@@ -1070,10 +1226,6 @@ CONFIG_RAMFS=y | |||
1070 | # | 1226 | # |
1071 | # CONFIG_PARTITION_ADVANCED is not set | 1227 | # CONFIG_PARTITION_ADVANCED is not set |
1072 | CONFIG_MSDOS_PARTITION=y | 1228 | CONFIG_MSDOS_PARTITION=y |
1073 | |||
1074 | # | ||
1075 | # Native Language Support | ||
1076 | # | ||
1077 | CONFIG_NLS=y | 1229 | CONFIG_NLS=y |
1078 | CONFIG_NLS_DEFAULT="iso8859-1" | 1230 | CONFIG_NLS_DEFAULT="iso8859-1" |
1079 | # CONFIG_NLS_CODEPAGE_437 is not set | 1231 | # CONFIG_NLS_CODEPAGE_437 is not set |
@@ -1114,30 +1266,22 @@ CONFIG_NLS_CODEPAGE_932=y | |||
1114 | # CONFIG_NLS_KOI8_R is not set | 1266 | # CONFIG_NLS_KOI8_R is not set |
1115 | # CONFIG_NLS_KOI8_U is not set | 1267 | # CONFIG_NLS_KOI8_U is not set |
1116 | # CONFIG_NLS_UTF8 is not set | 1268 | # CONFIG_NLS_UTF8 is not set |
1117 | |||
1118 | # | ||
1119 | # Distributed Lock Manager | ||
1120 | # | ||
1121 | # CONFIG_DLM is not set | 1269 | # CONFIG_DLM is not set |
1122 | 1270 | ||
1123 | # | 1271 | # |
1124 | # Profiling support | ||
1125 | # | ||
1126 | CONFIG_PROFILING=y | ||
1127 | CONFIG_OPROFILE=y | ||
1128 | |||
1129 | # | ||
1130 | # Kernel hacking | 1272 | # Kernel hacking |
1131 | # | 1273 | # |
1132 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | 1274 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y |
1133 | # CONFIG_PRINTK_TIME is not set | 1275 | # CONFIG_PRINTK_TIME is not set |
1276 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
1134 | CONFIG_ENABLE_MUST_CHECK=y | 1277 | CONFIG_ENABLE_MUST_CHECK=y |
1135 | # CONFIG_MAGIC_SYSRQ is not set | 1278 | # CONFIG_MAGIC_SYSRQ is not set |
1136 | # CONFIG_UNUSED_SYMBOLS is not set | 1279 | # CONFIG_UNUSED_SYMBOLS is not set |
1137 | # CONFIG_DEBUG_FS is not set | 1280 | CONFIG_DEBUG_FS=y |
1138 | # CONFIG_HEADERS_CHECK is not set | 1281 | # CONFIG_HEADERS_CHECK is not set |
1139 | # CONFIG_DEBUG_KERNEL is not set | 1282 | # CONFIG_DEBUG_KERNEL is not set |
1140 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1283 | # CONFIG_DEBUG_BUGVERBOSE is not set |
1284 | # CONFIG_SAMPLES is not set | ||
1141 | # CONFIG_SH_STANDARD_BIOS is not set | 1285 | # CONFIG_SH_STANDARD_BIOS is not set |
1142 | CONFIG_EARLY_SCIF_CONSOLE=y | 1286 | CONFIG_EARLY_SCIF_CONSOLE=y |
1143 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 | 1287 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 |
@@ -1149,7 +1293,53 @@ CONFIG_EARLY_PRINTK=y | |||
1149 | # | 1293 | # |
1150 | # CONFIG_KEYS is not set | 1294 | # CONFIG_KEYS is not set |
1151 | # CONFIG_SECURITY is not set | 1295 | # CONFIG_SECURITY is not set |
1152 | # CONFIG_CRYPTO is not set | 1296 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set |
1297 | CONFIG_CRYPTO=y | ||
1298 | # CONFIG_CRYPTO_SEQIV is not set | ||
1299 | # CONFIG_CRYPTO_MANAGER is not set | ||
1300 | # CONFIG_CRYPTO_HMAC is not set | ||
1301 | # CONFIG_CRYPTO_XCBC is not set | ||
1302 | # CONFIG_CRYPTO_NULL is not set | ||
1303 | # CONFIG_CRYPTO_MD4 is not set | ||
1304 | # CONFIG_CRYPTO_MD5 is not set | ||
1305 | # CONFIG_CRYPTO_SHA1 is not set | ||
1306 | # CONFIG_CRYPTO_SHA256 is not set | ||
1307 | # CONFIG_CRYPTO_SHA512 is not set | ||
1308 | # CONFIG_CRYPTO_WP512 is not set | ||
1309 | # CONFIG_CRYPTO_TGR192 is not set | ||
1310 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1311 | # CONFIG_CRYPTO_ECB is not set | ||
1312 | # CONFIG_CRYPTO_CBC is not set | ||
1313 | # CONFIG_CRYPTO_PCBC is not set | ||
1314 | # CONFIG_CRYPTO_LRW is not set | ||
1315 | # CONFIG_CRYPTO_XTS is not set | ||
1316 | # CONFIG_CRYPTO_CTR is not set | ||
1317 | # CONFIG_CRYPTO_GCM is not set | ||
1318 | # CONFIG_CRYPTO_CCM is not set | ||
1319 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1320 | # CONFIG_CRYPTO_DES is not set | ||
1321 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1322 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1323 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1324 | # CONFIG_CRYPTO_SERPENT is not set | ||
1325 | # CONFIG_CRYPTO_AES is not set | ||
1326 | # CONFIG_CRYPTO_CAST5 is not set | ||
1327 | # CONFIG_CRYPTO_CAST6 is not set | ||
1328 | # CONFIG_CRYPTO_TEA is not set | ||
1329 | # CONFIG_CRYPTO_ARC4 is not set | ||
1330 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1331 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1332 | # CONFIG_CRYPTO_SEED is not set | ||
1333 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1334 | # CONFIG_CRYPTO_DEFLATE is not set | ||
1335 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1336 | # CONFIG_CRYPTO_CRC32C is not set | ||
1337 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1338 | # CONFIG_CRYPTO_TEST is not set | ||
1339 | # CONFIG_CRYPTO_AUTHENC is not set | ||
1340 | # CONFIG_CRYPTO_LZO is not set | ||
1341 | CONFIG_CRYPTO_HW=y | ||
1342 | # CONFIG_CRYPTO_DEV_HIFN_795X is not set | ||
1153 | 1343 | ||
1154 | # | 1344 | # |
1155 | # Library routines | 1345 | # Library routines |
diff --git a/arch/sh/configs/se7705_defconfig b/arch/sh/configs/se7705_defconfig index 87ae5c1f8629..84717d854867 100644 --- a/arch/sh/configs/se7705_defconfig +++ b/arch/sh/configs/se7705_defconfig | |||
@@ -231,7 +231,6 @@ CONFIG_CPU_LITTLE_ENDIAN=y | |||
231 | # CONFIG_SH_DSP is not set | 231 | # CONFIG_SH_DSP is not set |
232 | # CONFIG_SH_ADC is not set | 232 | # CONFIG_SH_ADC is not set |
233 | CONFIG_CPU_HAS_INTEVT=y | 233 | CONFIG_CPU_HAS_INTEVT=y |
234 | CONFIG_CPU_HAS_PINT_IRQ=y | ||
235 | CONFIG_CPU_HAS_IPR_IRQ=y | 234 | CONFIG_CPU_HAS_IPR_IRQ=y |
236 | CONFIG_CPU_HAS_SR_RB=y | 235 | CONFIG_CPU_HAS_SR_RB=y |
237 | 236 | ||
diff --git a/arch/sh/drivers/dma/dma-api.c b/arch/sh/drivers/dma/dma-api.c index 76ed816d9a24..727126e907e3 100644 --- a/arch/sh/drivers/dma/dma-api.c +++ b/arch/sh/drivers/dma/dma-api.c | |||
@@ -350,7 +350,7 @@ int register_dmac(struct dma_info *info) | |||
350 | 350 | ||
351 | BUG_ON((info->flags & DMAC_CHANNELS_CONFIGURED) && !info->channels); | 351 | BUG_ON((info->flags & DMAC_CHANNELS_CONFIGURED) && !info->channels); |
352 | 352 | ||
353 | info->pdev = platform_device_register_simple((char *)info->name, -1, | 353 | info->pdev = platform_device_register_simple(info->name, -1, |
354 | NULL, 0); | 354 | NULL, 0); |
355 | if (IS_ERR(info->pdev)) | 355 | if (IS_ERR(info->pdev)) |
356 | return PTR_ERR(info->pdev); | 356 | return PTR_ERR(info->pdev); |
diff --git a/arch/sh/drivers/pci/fixups-lboxre2.c b/arch/sh/drivers/pci/fixups-lboxre2.c index 40b19bdfb891..1c1d41255ec0 100644 --- a/arch/sh/drivers/pci/fixups-lboxre2.c +++ b/arch/sh/drivers/pci/fixups-lboxre2.c | |||
@@ -18,7 +18,7 @@ int pci_fixup_pcic(void) | |||
18 | { | 18 | { |
19 | unsigned long bcr1, mcr; | 19 | unsigned long bcr1, mcr; |
20 | 20 | ||
21 | bcr1 = inl(SH7751_BCR1); | 21 | bcr1 = ctrl_inl(SH7751_BCR1); |
22 | bcr1 |= 0x40080000; /* Enable Bit 19 BREQEN, set PCIC to slave */ | 22 | bcr1 |= 0x40080000; /* Enable Bit 19 BREQEN, set PCIC to slave */ |
23 | pci_write_reg(bcr1, SH4_PCIBCR1); | 23 | pci_write_reg(bcr1, SH4_PCIBCR1); |
24 | 24 | ||
@@ -28,7 +28,7 @@ int pci_fixup_pcic(void) | |||
28 | pci_write_reg(0xfb900047, SH7751_PCICONF1); | 28 | pci_write_reg(0xfb900047, SH7751_PCICONF1); |
29 | pci_write_reg(0xab000001, SH7751_PCICONF4); | 29 | pci_write_reg(0xab000001, SH7751_PCICONF4); |
30 | 30 | ||
31 | mcr = inl(SH7751_MCR); | 31 | mcr = ctrl_inl(SH7751_MCR); |
32 | mcr = (mcr & PCIMCR_MRSET_OFF) & PCIMCR_RFSH_OFF; | 32 | mcr = (mcr & PCIMCR_MRSET_OFF) & PCIMCR_RFSH_OFF; |
33 | pci_write_reg(mcr, SH4_PCIMCR); | 33 | pci_write_reg(mcr, SH4_PCIMCR); |
34 | 34 | ||
diff --git a/arch/sh/drivers/pci/fixups-rts7751r2d.c b/arch/sh/drivers/pci/fixups-rts7751r2d.c index e72ceb560d5b..904bce8768d3 100644 --- a/arch/sh/drivers/pci/fixups-rts7751r2d.c +++ b/arch/sh/drivers/pci/fixups-rts7751r2d.c | |||
@@ -19,7 +19,7 @@ int pci_fixup_pcic(void) | |||
19 | { | 19 | { |
20 | unsigned long bcr1, mcr; | 20 | unsigned long bcr1, mcr; |
21 | 21 | ||
22 | bcr1 = inl(SH7751_BCR1); | 22 | bcr1 = ctrl_inl(SH7751_BCR1); |
23 | bcr1 |= 0x40080000; /* Enable Bit 19 BREQEN, set PCIC to slave */ | 23 | bcr1 |= 0x40080000; /* Enable Bit 19 BREQEN, set PCIC to slave */ |
24 | pci_write_reg(bcr1, SH4_PCIBCR1); | 24 | pci_write_reg(bcr1, SH4_PCIBCR1); |
25 | 25 | ||
@@ -30,7 +30,7 @@ int pci_fixup_pcic(void) | |||
30 | pci_write_reg(0xfb900047, SH7751_PCICONF1); | 30 | pci_write_reg(0xfb900047, SH7751_PCICONF1); |
31 | pci_write_reg(0xab000001, SH7751_PCICONF4); | 31 | pci_write_reg(0xab000001, SH7751_PCICONF4); |
32 | 32 | ||
33 | mcr = inl(SH7751_MCR); | 33 | mcr = ctrl_inl(SH7751_MCR); |
34 | mcr = (mcr & PCIMCR_MRSET_OFF) & PCIMCR_RFSH_OFF; | 34 | mcr = (mcr & PCIMCR_MRSET_OFF) & PCIMCR_RFSH_OFF; |
35 | pci_write_reg(mcr, SH4_PCIMCR); | 35 | pci_write_reg(mcr, SH4_PCIMCR); |
36 | 36 | ||
diff --git a/arch/sh/drivers/pci/ops-dreamcast.c b/arch/sh/drivers/pci/ops-dreamcast.c index e1284fc69361..0dac87b19624 100644 --- a/arch/sh/drivers/pci/ops-dreamcast.c +++ b/arch/sh/drivers/pci/ops-dreamcast.c | |||
@@ -83,9 +83,9 @@ static int gapspci_read(struct pci_bus *bus, unsigned int devfn, int where, int | |||
83 | return PCIBIOS_DEVICE_NOT_FOUND; | 83 | return PCIBIOS_DEVICE_NOT_FOUND; |
84 | 84 | ||
85 | switch (size) { | 85 | switch (size) { |
86 | case 1: *val = inb(GAPSPCI_BBA_CONFIG+where); break; | 86 | case 1: *val = ctrl_inb(GAPSPCI_BBA_CONFIG+where); break; |
87 | case 2: *val = inw(GAPSPCI_BBA_CONFIG+where); break; | 87 | case 2: *val = ctrl_inw(GAPSPCI_BBA_CONFIG+where); break; |
88 | case 4: *val = inl(GAPSPCI_BBA_CONFIG+where); break; | 88 | case 4: *val = ctrl_inl(GAPSPCI_BBA_CONFIG+where); break; |
89 | } | 89 | } |
90 | 90 | ||
91 | return PCIBIOS_SUCCESSFUL; | 91 | return PCIBIOS_SUCCESSFUL; |
@@ -97,9 +97,9 @@ static int gapspci_write(struct pci_bus *bus, unsigned int devfn, int where, int | |||
97 | return PCIBIOS_DEVICE_NOT_FOUND; | 97 | return PCIBIOS_DEVICE_NOT_FOUND; |
98 | 98 | ||
99 | switch (size) { | 99 | switch (size) { |
100 | case 1: outb(( u8)val, GAPSPCI_BBA_CONFIG+where); break; | 100 | case 1: ctrl_outb(( u8)val, GAPSPCI_BBA_CONFIG+where); break; |
101 | case 2: outw((u16)val, GAPSPCI_BBA_CONFIG+where); break; | 101 | case 2: ctrl_outw((u16)val, GAPSPCI_BBA_CONFIG+where); break; |
102 | case 4: outl((u32)val, GAPSPCI_BBA_CONFIG+where); break; | 102 | case 4: ctrl_outl((u32)val, GAPSPCI_BBA_CONFIG+where); break; |
103 | } | 103 | } |
104 | 104 | ||
105 | return PCIBIOS_SUCCESSFUL; | 105 | return PCIBIOS_SUCCESSFUL; |
@@ -127,36 +127,36 @@ int __init gapspci_init(void) | |||
127 | */ | 127 | */ |
128 | 128 | ||
129 | for (i=0; i<16; i++) | 129 | for (i=0; i<16; i++) |
130 | idbuf[i] = inb(GAPSPCI_REGS+i); | 130 | idbuf[i] = ctrl_inb(GAPSPCI_REGS+i); |
131 | 131 | ||
132 | if (strncmp(idbuf, "GAPSPCI_BRIDGE_2", 16)) | 132 | if (strncmp(idbuf, "GAPSPCI_BRIDGE_2", 16)) |
133 | return -ENODEV; | 133 | return -ENODEV; |
134 | 134 | ||
135 | outl(0x5a14a501, GAPSPCI_REGS+0x18); | 135 | ctrl_outl(0x5a14a501, GAPSPCI_REGS+0x18); |
136 | 136 | ||
137 | for (i=0; i<1000000; i++) | 137 | for (i=0; i<1000000; i++) |
138 | ; | 138 | ; |
139 | 139 | ||
140 | if (inl(GAPSPCI_REGS+0x18) != 1) | 140 | if (ctrl_inl(GAPSPCI_REGS+0x18) != 1) |
141 | return -EINVAL; | 141 | return -EINVAL; |
142 | 142 | ||
143 | outl(0x01000000, GAPSPCI_REGS+0x20); | 143 | ctrl_outl(0x01000000, GAPSPCI_REGS+0x20); |
144 | outl(0x01000000, GAPSPCI_REGS+0x24); | 144 | ctrl_outl(0x01000000, GAPSPCI_REGS+0x24); |
145 | 145 | ||
146 | outl(GAPSPCI_DMA_BASE, GAPSPCI_REGS+0x28); | 146 | ctrl_outl(GAPSPCI_DMA_BASE, GAPSPCI_REGS+0x28); |
147 | outl(GAPSPCI_DMA_BASE+GAPSPCI_DMA_SIZE, GAPSPCI_REGS+0x2c); | 147 | ctrl_outl(GAPSPCI_DMA_BASE+GAPSPCI_DMA_SIZE, GAPSPCI_REGS+0x2c); |
148 | 148 | ||
149 | outl(1, GAPSPCI_REGS+0x14); | 149 | ctrl_outl(1, GAPSPCI_REGS+0x14); |
150 | outl(1, GAPSPCI_REGS+0x34); | 150 | ctrl_outl(1, GAPSPCI_REGS+0x34); |
151 | 151 | ||
152 | /* Setting Broadband Adapter */ | 152 | /* Setting Broadband Adapter */ |
153 | outw(0xf900, GAPSPCI_BBA_CONFIG+0x06); | 153 | ctrl_outw(0xf900, GAPSPCI_BBA_CONFIG+0x06); |
154 | outl(0x00000000, GAPSPCI_BBA_CONFIG+0x30); | 154 | ctrl_outl(0x00000000, GAPSPCI_BBA_CONFIG+0x30); |
155 | outb(0x00, GAPSPCI_BBA_CONFIG+0x3c); | 155 | ctrl_outb(0x00, GAPSPCI_BBA_CONFIG+0x3c); |
156 | outb(0xf0, GAPSPCI_BBA_CONFIG+0x0d); | 156 | ctrl_outb(0xf0, GAPSPCI_BBA_CONFIG+0x0d); |
157 | outw(0x0006, GAPSPCI_BBA_CONFIG+0x04); | 157 | ctrl_outw(0x0006, GAPSPCI_BBA_CONFIG+0x04); |
158 | outl(0x00002001, GAPSPCI_BBA_CONFIG+0x10); | 158 | ctrl_outl(0x00002001, GAPSPCI_BBA_CONFIG+0x10); |
159 | outl(0x01000000, GAPSPCI_BBA_CONFIG+0x14); | 159 | ctrl_outl(0x01000000, GAPSPCI_BBA_CONFIG+0x14); |
160 | 160 | ||
161 | return 0; | 161 | return 0; |
162 | } | 162 | } |
diff --git a/arch/sh/drivers/pci/ops-rts7751r2d.c b/arch/sh/drivers/pci/ops-rts7751r2d.c index ec8430c8d2d1..b3fa3e2ef184 100644 --- a/arch/sh/drivers/pci/ops-rts7751r2d.c +++ b/arch/sh/drivers/pci/ops-rts7751r2d.c | |||
@@ -33,7 +33,7 @@ int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) | |||
33 | static struct resource sh7751_io_resource = { | 33 | static struct resource sh7751_io_resource = { |
34 | .name = "SH7751_IO", | 34 | .name = "SH7751_IO", |
35 | .start = 0x4000, | 35 | .start = 0x4000, |
36 | .end = 0x4000 + SH7751_PCI_IO_SIZE - 1, | 36 | .end = SH7751_PCI_IO_SIZE - 1, |
37 | .flags = IORESOURCE_IO | 37 | .flags = IORESOURCE_IO |
38 | }; | 38 | }; |
39 | 39 | ||
@@ -68,6 +68,7 @@ static struct sh4_pci_address_map sh7751_pci_map = { | |||
68 | 68 | ||
69 | int __init pcibios_init_platform(void) | 69 | int __init pcibios_init_platform(void) |
70 | { | 70 | { |
71 | __set_io_port_base(SH7751_PCI_IO_BASE); | ||
71 | return sh7751_pcic_init(&sh7751_pci_map); | 72 | return sh7751_pcic_init(&sh7751_pci_map); |
72 | } | 73 | } |
73 | 74 | ||
diff --git a/arch/sh/drivers/pci/pci-sh4.h b/arch/sh/drivers/pci/pci-sh4.h index 4925c79ea959..07e29506080f 100644 --- a/arch/sh/drivers/pci/pci-sh4.h +++ b/arch/sh/drivers/pci/pci-sh4.h | |||
@@ -172,11 +172,11 @@ struct sh4_pci_address_map { | |||
172 | 172 | ||
173 | static inline void pci_write_reg(unsigned long val, unsigned long reg) | 173 | static inline void pci_write_reg(unsigned long val, unsigned long reg) |
174 | { | 174 | { |
175 | outl(val, PCI_REG(reg)); | 175 | ctrl_outl(val, PCI_REG(reg)); |
176 | } | 176 | } |
177 | 177 | ||
178 | static inline unsigned long pci_read_reg(unsigned long reg) | 178 | static inline unsigned long pci_read_reg(unsigned long reg) |
179 | { | 179 | { |
180 | return inl(PCI_REG(reg)); | 180 | return ctrl_inl(PCI_REG(reg)); |
181 | } | 181 | } |
182 | #endif /* __PCI_SH4_H */ | 182 | #endif /* __PCI_SH4_H */ |
diff --git a/arch/sh/drivers/pci/pci-sh7751.c b/arch/sh/drivers/pci/pci-sh7751.c index 1aca7fe5783b..3065eb184f01 100644 --- a/arch/sh/drivers/pci/pci-sh7751.c +++ b/arch/sh/drivers/pci/pci-sh7751.c | |||
@@ -58,7 +58,7 @@ static int __init __area_sdram_check(unsigned int area) | |||
58 | { | 58 | { |
59 | u32 word; | 59 | u32 word; |
60 | 60 | ||
61 | word = inl(SH7751_BCR1); | 61 | word = ctrl_inl(SH7751_BCR1); |
62 | /* check BCR for SDRAM in area */ | 62 | /* check BCR for SDRAM in area */ |
63 | if (((word >> area) & 1) == 0) { | 63 | if (((word >> area) & 1) == 0) { |
64 | printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n", | 64 | printk("PCI: Area %d is not configured for SDRAM. BCR1=0x%x\n", |
@@ -67,7 +67,7 @@ static int __init __area_sdram_check(unsigned int area) | |||
67 | } | 67 | } |
68 | pci_write_reg(word, SH4_PCIBCR1); | 68 | pci_write_reg(word, SH4_PCIBCR1); |
69 | 69 | ||
70 | word = (u16)inw(SH7751_BCR2); | 70 | word = (u16)ctrl_inw(SH7751_BCR2); |
71 | /* check BCR2 for 32bit SDRAM interface*/ | 71 | /* check BCR2 for 32bit SDRAM interface*/ |
72 | if (((word >> (area << 1)) & 0x3) != 0x3) { | 72 | if (((word >> (area << 1)) & 0x3) != 0x3) { |
73 | printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n", | 73 | printk("PCI: Area %d is not 32 bit SDRAM. BCR2=0x%x\n", |
@@ -85,9 +85,9 @@ int __init sh7751_pcic_init(struct sh4_pci_address_map *map) | |||
85 | u32 word; | 85 | u32 word; |
86 | 86 | ||
87 | /* Set the BCR's to enable PCI access */ | 87 | /* Set the BCR's to enable PCI access */ |
88 | reg = inl(SH7751_BCR1); | 88 | reg = ctrl_inl(SH7751_BCR1); |
89 | reg |= 0x80000; | 89 | reg |= 0x80000; |
90 | outl(reg, SH7751_BCR1); | 90 | ctrl_outl(reg, SH7751_BCR1); |
91 | 91 | ||
92 | /* Turn the clocks back on (not done in reset)*/ | 92 | /* Turn the clocks back on (not done in reset)*/ |
93 | pci_write_reg(0, SH4_PCICLKR); | 93 | pci_write_reg(0, SH4_PCICLKR); |
@@ -179,13 +179,13 @@ int __init sh7751_pcic_init(struct sh4_pci_address_map *map) | |||
179 | return 0; | 179 | return 0; |
180 | 180 | ||
181 | /* configure the wait control registers */ | 181 | /* configure the wait control registers */ |
182 | word = inl(SH7751_WCR1); | 182 | word = ctrl_inl(SH7751_WCR1); |
183 | pci_write_reg(word, SH4_PCIWCR1); | 183 | pci_write_reg(word, SH4_PCIWCR1); |
184 | word = inl(SH7751_WCR2); | 184 | word = ctrl_inl(SH7751_WCR2); |
185 | pci_write_reg(word, SH4_PCIWCR2); | 185 | pci_write_reg(word, SH4_PCIWCR2); |
186 | word = inl(SH7751_WCR3); | 186 | word = ctrl_inl(SH7751_WCR3); |
187 | pci_write_reg(word, SH4_PCIWCR3); | 187 | pci_write_reg(word, SH4_PCIWCR3); |
188 | word = inl(SH7751_MCR); | 188 | word = ctrl_inl(SH7751_MCR); |
189 | pci_write_reg(word, SH4_PCIMCR); | 189 | pci_write_reg(word, SH4_PCIMCR); |
190 | 190 | ||
191 | /* NOTE: I'm ignoring the PCI error IRQs for now.. | 191 | /* NOTE: I'm ignoring the PCI error IRQs for now.. |
diff --git a/arch/sh/drivers/pci/pci-sh7780.c b/arch/sh/drivers/pci/pci-sh7780.c index 7d797f4de5e7..b2a2bfa3c1bd 100644 --- a/arch/sh/drivers/pci/pci-sh7780.c +++ b/arch/sh/drivers/pci/pci-sh7780.c | |||
@@ -52,7 +52,7 @@ static int __init sh7780_pci_init(void) | |||
52 | 52 | ||
53 | pr_debug("PCI: Starting intialization.\n"); | 53 | pr_debug("PCI: Starting intialization.\n"); |
54 | 54 | ||
55 | outl(0x00000001, SH7780_PCI_VCR2); /* Enable PCIC */ | 55 | ctrl_outl(0x00000001, SH7780_PCI_VCR2); /* Enable PCIC */ |
56 | 56 | ||
57 | /* check for SH7780/SH7780R hardware */ | 57 | /* check for SH7780/SH7780R hardware */ |
58 | id = pci_read_reg(SH7780_PCIVID); | 58 | id = pci_read_reg(SH7780_PCIVID); |
diff --git a/arch/sh/kernel/Makefile_32 b/arch/sh/kernel/Makefile_32 index c89289831053..62bf373266f7 100644 --- a/arch/sh/kernel/Makefile_32 +++ b/arch/sh/kernel/Makefile_32 | |||
@@ -22,5 +22,6 @@ obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | |||
22 | obj-$(CONFIG_PM) += pm.o | 22 | obj-$(CONFIG_PM) += pm.o |
23 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 23 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
24 | obj-$(CONFIG_BINFMT_ELF) += dump_task.o | 24 | obj-$(CONFIG_BINFMT_ELF) += dump_task.o |
25 | obj-$(CONFIG_IO_TRAPPED) += io_trapped.o | ||
25 | 26 | ||
26 | EXTRA_CFLAGS += -Werror | 27 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/sh/kernel/Makefile_64 b/arch/sh/kernel/Makefile_64 index 1ef21cc087f3..e01283d49cbf 100644 --- a/arch/sh/kernel/Makefile_64 +++ b/arch/sh/kernel/Makefile_64 | |||
@@ -18,5 +18,6 @@ obj-$(CONFIG_CRASH_DUMP) += crash_dump.o | |||
18 | obj-$(CONFIG_PM) += pm.o | 18 | obj-$(CONFIG_PM) += pm.o |
19 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 19 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
20 | obj-$(CONFIG_BINFMT_ELF) += dump_task.o | 20 | obj-$(CONFIG_BINFMT_ELF) += dump_task.o |
21 | obj-$(CONFIG_IO_TRAPPED) += io_trapped.o | ||
21 | 22 | ||
22 | EXTRA_CFLAGS += -Werror | 23 | EXTRA_CFLAGS += -Werror |
diff --git a/arch/sh/kernel/cpu/irq/Makefile b/arch/sh/kernel/cpu/irq/Makefile index cc1836e47a5d..462a8f6dfee2 100644 --- a/arch/sh/kernel/cpu/irq/Makefile +++ b/arch/sh/kernel/cpu/irq/Makefile | |||
@@ -6,4 +6,3 @@ obj-y += intc.o | |||
6 | obj-$(CONFIG_SUPERH32) += imask.o | 6 | obj-$(CONFIG_SUPERH32) += imask.o |
7 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o | 7 | obj-$(CONFIG_CPU_SH5) += intc-sh5.o |
8 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o | 8 | obj-$(CONFIG_CPU_HAS_IPR_IRQ) += ipr.o |
9 | obj-$(CONFIG_CPU_HAS_MASKREG_IRQ) += maskreg.o | ||
diff --git a/arch/sh/kernel/cpu/irq/intc-sh5.c b/arch/sh/kernel/cpu/irq/intc-sh5.c index 43ee7a9a4f0b..d6e0e2bdaad5 100644 --- a/arch/sh/kernel/cpu/irq/intc-sh5.c +++ b/arch/sh/kernel/cpu/irq/intc-sh5.c | |||
@@ -75,21 +75,6 @@ int intc_evt_to_irq[(0xE20/0x20)+1] = { | |||
75 | -1, -1 /* 0xE00 - 0xE20 */ | 75 | -1, -1 /* 0xE00 - 0xE20 */ |
76 | }; | 76 | }; |
77 | 77 | ||
78 | /* | ||
79 | * Opposite mapper. | ||
80 | */ | ||
81 | static int IRQ_to_vectorN[NR_INTC_IRQS] = { | ||
82 | 0x12, 0x15, 0x18, 0x1B, 0x40, 0x41, 0x42, 0x43, /* 0- 7 */ | ||
83 | -1, -1, -1, -1, 0x50, 0x51, 0x52, 0x53, /* 8-15 */ | ||
84 | 0x54, 0x55, 0x32, 0x33, 0x34, 0x35, 0x36, -1, /* 16-23 */ | ||
85 | -1, -1, -1, -1, -1, -1, -1, -1, /* 24-31 */ | ||
86 | 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x38, /* 32-39 */ | ||
87 | 0x39, 0x3A, 0x3B, -1, -1, -1, -1, -1, /* 40-47 */ | ||
88 | -1, -1, -1, -1, -1, -1, -1, -1, /* 48-55 */ | ||
89 | -1, -1, -1, -1, -1, -1, -1, 0x2B, /* 56-63 */ | ||
90 | |||
91 | }; | ||
92 | |||
93 | static unsigned long intc_virt; | 78 | static unsigned long intc_virt; |
94 | 79 | ||
95 | static unsigned int startup_intc_irq(unsigned int irq); | 80 | static unsigned int startup_intc_irq(unsigned int irq); |
@@ -176,6 +161,18 @@ void make_intc_irq(unsigned int irq) | |||
176 | } | 161 | } |
177 | 162 | ||
178 | #if defined(CONFIG_PROC_FS) && defined(CONFIG_SYSCTL) | 163 | #if defined(CONFIG_PROC_FS) && defined(CONFIG_SYSCTL) |
164 | static int IRQ_to_vectorN[NR_INTC_IRQS] = { | ||
165 | 0x12, 0x15, 0x18, 0x1B, 0x40, 0x41, 0x42, 0x43, /* 0- 7 */ | ||
166 | -1, -1, -1, -1, 0x50, 0x51, 0x52, 0x53, /* 8-15 */ | ||
167 | 0x54, 0x55, 0x32, 0x33, 0x34, 0x35, 0x36, -1, /* 16-23 */ | ||
168 | -1, -1, -1, -1, -1, -1, -1, -1, /* 24-31 */ | ||
169 | 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x38, /* 32-39 */ | ||
170 | 0x39, 0x3A, 0x3B, -1, -1, -1, -1, -1, /* 40-47 */ | ||
171 | -1, -1, -1, -1, -1, -1, -1, -1, /* 48-55 */ | ||
172 | -1, -1, -1, -1, -1, -1, -1, 0x2B, /* 56-63 */ | ||
173 | |||
174 | }; | ||
175 | |||
179 | int intc_irq_describe(char* p, int irq) | 176 | int intc_irq_describe(char* p, int irq) |
180 | { | 177 | { |
181 | if (irq < NR_INTC_IRQS) | 178 | if (irq < NR_INTC_IRQS) |
diff --git a/arch/sh/kernel/cpu/irq/maskreg.c b/arch/sh/kernel/cpu/irq/maskreg.c deleted file mode 100644 index 978992e367a5..000000000000 --- a/arch/sh/kernel/cpu/irq/maskreg.c +++ /dev/null | |||
@@ -1,93 +0,0 @@ | |||
1 | /* | ||
2 | * Interrupt handling for Simple external interrupt mask register | ||
3 | * | ||
4 | * Copyright (C) 2001 A&D Co., Ltd. <http://www.aandd.co.jp> | ||
5 | * | ||
6 | * This is for the machine which have single 16 bit register | ||
7 | * for masking external IRQ individually. | ||
8 | * Each bit of the register is for masking each interrupt. | ||
9 | * | ||
10 | * This file may be copied or modified under the terms of the GNU | ||
11 | * General Public License. See linux/COPYING for more information. | ||
12 | */ | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/init.h> | ||
15 | #include <linux/irq.h> | ||
16 | #include <asm/system.h> | ||
17 | #include <asm/io.h> | ||
18 | |||
19 | /* address of external interrupt mask register */ | ||
20 | unsigned long irq_mask_register; | ||
21 | |||
22 | /* forward declaration */ | ||
23 | static unsigned int startup_maskreg_irq(unsigned int irq); | ||
24 | static void shutdown_maskreg_irq(unsigned int irq); | ||
25 | static void enable_maskreg_irq(unsigned int irq); | ||
26 | static void disable_maskreg_irq(unsigned int irq); | ||
27 | static void mask_and_ack_maskreg(unsigned int); | ||
28 | static void end_maskreg_irq(unsigned int irq); | ||
29 | |||
30 | /* hw_interrupt_type */ | ||
31 | static struct hw_interrupt_type maskreg_irq_type = { | ||
32 | .typename = "Mask Register", | ||
33 | .startup = startup_maskreg_irq, | ||
34 | .shutdown = shutdown_maskreg_irq, | ||
35 | .enable = enable_maskreg_irq, | ||
36 | .disable = disable_maskreg_irq, | ||
37 | .ack = mask_and_ack_maskreg, | ||
38 | .end = end_maskreg_irq | ||
39 | }; | ||
40 | |||
41 | /* actual implementation */ | ||
42 | static unsigned int startup_maskreg_irq(unsigned int irq) | ||
43 | { | ||
44 | enable_maskreg_irq(irq); | ||
45 | return 0; /* never anything pending */ | ||
46 | } | ||
47 | |||
48 | static void shutdown_maskreg_irq(unsigned int irq) | ||
49 | { | ||
50 | disable_maskreg_irq(irq); | ||
51 | } | ||
52 | |||
53 | static void disable_maskreg_irq(unsigned int irq) | ||
54 | { | ||
55 | unsigned short val, mask = 0x01 << irq; | ||
56 | |||
57 | BUG_ON(!irq_mask_register); | ||
58 | |||
59 | /* Set "irq"th bit */ | ||
60 | val = ctrl_inw(irq_mask_register); | ||
61 | val |= mask; | ||
62 | ctrl_outw(val, irq_mask_register); | ||
63 | } | ||
64 | |||
65 | static void enable_maskreg_irq(unsigned int irq) | ||
66 | { | ||
67 | unsigned short val, mask = ~(0x01 << irq); | ||
68 | |||
69 | BUG_ON(!irq_mask_register); | ||
70 | |||
71 | /* Clear "irq"th bit */ | ||
72 | val = ctrl_inw(irq_mask_register); | ||
73 | val &= mask; | ||
74 | ctrl_outw(val, irq_mask_register); | ||
75 | } | ||
76 | |||
77 | static void mask_and_ack_maskreg(unsigned int irq) | ||
78 | { | ||
79 | disable_maskreg_irq(irq); | ||
80 | } | ||
81 | |||
82 | static void end_maskreg_irq(unsigned int irq) | ||
83 | { | ||
84 | if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) | ||
85 | enable_maskreg_irq(irq); | ||
86 | } | ||
87 | |||
88 | void make_maskreg_irq(unsigned int irq) | ||
89 | { | ||
90 | disable_irq_nosync(irq); | ||
91 | irq_desc[irq].handler = &maskreg_irq_type; | ||
92 | disable_maskreg_irq(irq); | ||
93 | } | ||
diff --git a/arch/sh/kernel/cpu/sh4/probe.c b/arch/sh/kernel/cpu/sh4/probe.c index f2b9238cda04..9e89984c4f1d 100644 --- a/arch/sh/kernel/cpu/sh4/probe.c +++ b/arch/sh/kernel/cpu/sh4/probe.c | |||
@@ -126,12 +126,18 @@ int __init detect_cpu_and_cache_system(void) | |||
126 | CPU_HAS_LLSC; | 126 | CPU_HAS_LLSC; |
127 | break; | 127 | break; |
128 | case 0x3008: | 128 | case 0x3008: |
129 | if (prr == 0xa0) { | 129 | if (prr == 0xa0 || prr == 0xa1) { |
130 | boot_cpu_data.type = CPU_SH7722; | 130 | boot_cpu_data.type = CPU_SH7722; |
131 | boot_cpu_data.icache.ways = 4; | 131 | boot_cpu_data.icache.ways = 4; |
132 | boot_cpu_data.dcache.ways = 4; | 132 | boot_cpu_data.dcache.ways = 4; |
133 | boot_cpu_data.flags |= CPU_HAS_LLSC; | 133 | boot_cpu_data.flags |= CPU_HAS_LLSC; |
134 | } | 134 | } |
135 | else if (prr == 0x70) { | ||
136 | boot_cpu_data.type = CPU_SH7366; | ||
137 | boot_cpu_data.icache.ways = 4; | ||
138 | boot_cpu_data.dcache.ways = 4; | ||
139 | boot_cpu_data.flags |= CPU_HAS_LLSC; | ||
140 | } | ||
135 | break; | 141 | break; |
136 | case 0x4000: /* 1st cut */ | 142 | case 0x4000: /* 1st cut */ |
137 | case 0x4001: /* 2nd cut */ | 143 | case 0x4001: /* 2nd cut */ |
diff --git a/arch/sh/kernel/cpu/sh4a/Makefile b/arch/sh/kernel/cpu/sh4a/Makefile index 08ac6387bf17..5d890ac8e793 100644 --- a/arch/sh/kernel/cpu/sh4a/Makefile +++ b/arch/sh/kernel/cpu/sh4a/Makefile | |||
@@ -9,6 +9,7 @@ obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o | |||
9 | obj-$(CONFIG_CPU_SUBTYPE_SH7785) += setup-sh7785.o | 9 | obj-$(CONFIG_CPU_SUBTYPE_SH7785) += setup-sh7785.o |
10 | obj-$(CONFIG_CPU_SUBTYPE_SH7343) += setup-sh7343.o | 10 | obj-$(CONFIG_CPU_SUBTYPE_SH7343) += setup-sh7343.o |
11 | obj-$(CONFIG_CPU_SUBTYPE_SH7722) += setup-sh7722.o | 11 | obj-$(CONFIG_CPU_SUBTYPE_SH7722) += setup-sh7722.o |
12 | obj-$(CONFIG_CPU_SUBTYPE_SH7366) += setup-sh7366.o | ||
12 | obj-$(CONFIG_CPU_SUBTYPE_SHX3) += setup-shx3.o | 13 | obj-$(CONFIG_CPU_SUBTYPE_SHX3) += setup-shx3.o |
13 | 14 | ||
14 | # SMP setup | 15 | # SMP setup |
@@ -21,6 +22,7 @@ clock-$(CONFIG_CPU_SUBTYPE_SH7780) := clock-sh7780.o | |||
21 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o | 22 | clock-$(CONFIG_CPU_SUBTYPE_SH7785) := clock-sh7785.o |
22 | clock-$(CONFIG_CPU_SUBTYPE_SH7343) := clock-sh7343.o | 23 | clock-$(CONFIG_CPU_SUBTYPE_SH7343) := clock-sh7343.o |
23 | clock-$(CONFIG_CPU_SUBTYPE_SH7722) := clock-sh7722.o | 24 | clock-$(CONFIG_CPU_SUBTYPE_SH7722) := clock-sh7722.o |
25 | clock-$(CONFIG_CPU_SUBTYPE_SH7366) := clock-sh7722.o | ||
24 | clock-$(CONFIG_CPU_SUBTYPE_SHX3) := clock-shx3.o | 26 | clock-$(CONFIG_CPU_SUBTYPE_SHX3) := clock-shx3.o |
25 | 27 | ||
26 | obj-y += $(clock-y) | 28 | obj-y += $(clock-y) |
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c index a0fd8bb21f7c..299138ebe160 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * arch/sh/kernel/cpu/sh4a/clock-sh7722.c | 2 | * arch/sh/kernel/cpu/sh4a/clock-sh7722.c |
3 | * | 3 | * |
4 | * SH7722 support for the clock framework | 4 | * SH7722 & SH7366 support for the clock framework |
5 | * | 5 | * |
6 | * Copyright (c) 2006-2007 Nomad Global Solutions Inc | 6 | * Copyright (c) 2006-2007 Nomad Global Solutions Inc |
7 | * Based on code for sh7343 by Paul Mundt | 7 | * Based on code for sh7343 by Paul Mundt |
@@ -417,15 +417,19 @@ static int sh7722_siu_which(struct clk *clk) | |||
417 | return 0; | 417 | return 0; |
418 | if (!strcmp(clk->name, "siu_b_clk")) | 418 | if (!strcmp(clk->name, "siu_b_clk")) |
419 | return 1; | 419 | return 1; |
420 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | ||
420 | if (!strcmp(clk->name, "irda_clk")) | 421 | if (!strcmp(clk->name, "irda_clk")) |
421 | return 2; | 422 | return 2; |
423 | #endif | ||
422 | return -EINVAL; | 424 | return -EINVAL; |
423 | } | 425 | } |
424 | 426 | ||
425 | static unsigned long sh7722_siu_regs[] = { | 427 | static unsigned long sh7722_siu_regs[] = { |
426 | [0] = SCLKACR, | 428 | [0] = SCLKACR, |
427 | [1] = SCLKBCR, | 429 | [1] = SCLKBCR, |
430 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | ||
428 | [2] = IrDACLKCR, | 431 | [2] = IrDACLKCR, |
432 | #endif | ||
429 | }; | 433 | }; |
430 | 434 | ||
431 | static int sh7722_siu_start_stop(struct clk *clk, int enable) | 435 | static int sh7722_siu_start_stop(struct clk *clk, int enable) |
@@ -571,10 +575,12 @@ static struct clk sh7722_siu_b_clock = { | |||
571 | .ops = &sh7722_siu_clk_ops, | 575 | .ops = &sh7722_siu_clk_ops, |
572 | }; | 576 | }; |
573 | 577 | ||
578 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | ||
574 | static struct clk sh7722_irda_clock = { | 579 | static struct clk sh7722_irda_clock = { |
575 | .name = "irda_clk", | 580 | .name = "irda_clk", |
576 | .ops = &sh7722_siu_clk_ops, | 581 | .ops = &sh7722_siu_clk_ops, |
577 | }; | 582 | }; |
583 | #endif | ||
578 | 584 | ||
579 | static struct clk sh7722_video_clock = { | 585 | static struct clk sh7722_video_clock = { |
580 | .name = "video_clk", | 586 | .name = "video_clk", |
@@ -588,7 +594,9 @@ static struct clk *sh7722_clocks[] = { | |||
588 | &sh7722_sdram_clock, | 594 | &sh7722_sdram_clock, |
589 | &sh7722_siu_a_clock, | 595 | &sh7722_siu_a_clock, |
590 | &sh7722_siu_b_clock, | 596 | &sh7722_siu_b_clock, |
597 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | ||
591 | &sh7722_irda_clock, | 598 | &sh7722_irda_clock, |
599 | #endif | ||
592 | &sh7722_video_clock, | 600 | &sh7722_video_clock, |
593 | }; | 601 | }; |
594 | 602 | ||
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7366.c b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c new file mode 100644 index 000000000000..967e8b69a2f8 --- /dev/null +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7366.c | |||
@@ -0,0 +1,177 @@ | |||
1 | /* | ||
2 | * SH7366 Setup | ||
3 | * | ||
4 | * Copyright (C) 2008 Renesas Solutions | ||
5 | * | ||
6 | * Based on linux/arch/sh/kernel/cpu/sh4a/setup-sh7722.c | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/serial.h> | ||
15 | #include <asm/sci.h> | ||
16 | |||
17 | static struct plat_sci_port sci_platform_data[] = { | ||
18 | { | ||
19 | .mapbase = 0xffe00000, | ||
20 | .flags = UPF_BOOT_AUTOCONF, | ||
21 | .type = PORT_SCIF, | ||
22 | .irqs = { 80, 80, 80, 80 }, | ||
23 | }, { | ||
24 | .flags = 0, | ||
25 | } | ||
26 | }; | ||
27 | |||
28 | static struct platform_device sci_device = { | ||
29 | .name = "sh-sci", | ||
30 | .id = -1, | ||
31 | .dev = { | ||
32 | .platform_data = sci_platform_data, | ||
33 | }, | ||
34 | }; | ||
35 | |||
36 | static struct platform_device *sh7366_devices[] __initdata = { | ||
37 | &sci_device, | ||
38 | }; | ||
39 | |||
40 | static int __init sh7366_devices_setup(void) | ||
41 | { | ||
42 | return platform_add_devices(sh7366_devices, | ||
43 | ARRAY_SIZE(sh7366_devices)); | ||
44 | } | ||
45 | __initcall(sh7366_devices_setup); | ||
46 | |||
47 | enum { | ||
48 | UNUSED=0, | ||
49 | |||
50 | /* interrupt sources */ | ||
51 | IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7, | ||
52 | ICB, | ||
53 | DMAC0, DMAC1, DMAC2, DMAC3, | ||
54 | VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU, | ||
55 | MFI, VPU, USB, | ||
56 | MMC_MMC1I, MMC_MMC2I, MMC_MMC3I, | ||
57 | DMAC4, DMAC5, DMAC_DADERR, | ||
58 | SCIF, SCIFA1, SCIFA2, | ||
59 | DENC, MSIOF, | ||
60 | FLCTL_FLSTEI, FLCTL_FLENDI, FLCTL_FLTREQ0I, FLCTL_FLTREQ1I, | ||
61 | I2C_ALI, I2C_TACKI, I2C_WAITI, I2C_DTEI, | ||
62 | SDHI0, SDHI1, SDHI2, SDHI3, | ||
63 | CMT, TSIF, SIU, | ||
64 | TMU0, TMU1, TMU2, | ||
65 | VEU2, LCDC, | ||
66 | |||
67 | /* interrupt groups */ | ||
68 | |||
69 | DMAC0123, VIOVOU, MMC, DMAC45, FLCTL, I2C, SDHI, | ||
70 | }; | ||
71 | |||
72 | static struct intc_vect vectors[] __initdata = { | ||
73 | INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620), | ||
74 | INTC_VECT(IRQ2, 0x640), INTC_VECT(IRQ3, 0x660), | ||
75 | INTC_VECT(IRQ4, 0x680), INTC_VECT(IRQ5, 0x6a0), | ||
76 | INTC_VECT(IRQ6, 0x6c0), INTC_VECT(IRQ7, 0x6e0), | ||
77 | INTC_VECT(ICB, 0x700), | ||
78 | INTC_VECT(DMAC0, 0x800), INTC_VECT(DMAC1, 0x820), | ||
79 | INTC_VECT(DMAC2, 0x840), INTC_VECT(DMAC3, 0x860), | ||
80 | INTC_VECT(VIO_CEUI, 0x880), INTC_VECT(VIO_BEUI, 0x8a0), | ||
81 | INTC_VECT(VIO_VEUI, 0x8c0), INTC_VECT(VOU, 0x8e0), | ||
82 | INTC_VECT(MFI, 0x900), INTC_VECT(VPU, 0x980), INTC_VECT(USB, 0xa20), | ||
83 | INTC_VECT(MMC_MMC1I, 0xb00), INTC_VECT(MMC_MMC2I, 0xb20), | ||
84 | INTC_VECT(MMC_MMC3I, 0xb40), | ||
85 | INTC_VECT(DMAC4, 0xb80), INTC_VECT(DMAC5, 0xba0), | ||
86 | INTC_VECT(DMAC_DADERR, 0xbc0), | ||
87 | INTC_VECT(SCIF, 0xc00), INTC_VECT(SCIFA1, 0xc20), | ||
88 | INTC_VECT(SCIFA2, 0xc40), | ||
89 | INTC_VECT(DENC, 0xc60), INTC_VECT(MSIOF, 0xc80), | ||
90 | INTC_VECT(FLCTL_FLSTEI, 0xd80), INTC_VECT(FLCTL_FLENDI, 0xda0), | ||
91 | INTC_VECT(FLCTL_FLTREQ0I, 0xdc0), INTC_VECT(FLCTL_FLTREQ1I, 0xde0), | ||
92 | INTC_VECT(I2C_ALI, 0xe00), INTC_VECT(I2C_TACKI, 0xe20), | ||
93 | INTC_VECT(I2C_WAITI, 0xe40), INTC_VECT(I2C_DTEI, 0xe60), | ||
94 | INTC_VECT(SDHI0, 0xe80), INTC_VECT(SDHI1, 0xea0), | ||
95 | INTC_VECT(SDHI2, 0xec0), INTC_VECT(SDHI3, 0xee0), | ||
96 | INTC_VECT(CMT, 0xf00), INTC_VECT(TSIF, 0xf20), | ||
97 | INTC_VECT(SIU, 0xf80), | ||
98 | INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420), | ||
99 | INTC_VECT(TMU2, 0x440), | ||
100 | INTC_VECT(VEU2, 0x580), INTC_VECT(LCDC, 0x580), | ||
101 | }; | ||
102 | |||
103 | static struct intc_group groups[] __initdata = { | ||
104 | INTC_GROUP(DMAC0123, DMAC0, DMAC1, DMAC2, DMAC3), | ||
105 | INTC_GROUP(VIOVOU, VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU), | ||
106 | INTC_GROUP(MMC, MMC_MMC1I, MMC_MMC2I, MMC_MMC3I), | ||
107 | INTC_GROUP(DMAC45, DMAC4, DMAC5, DMAC_DADERR), | ||
108 | INTC_GROUP(FLCTL, FLCTL_FLSTEI, FLCTL_FLENDI, | ||
109 | FLCTL_FLTREQ0I, FLCTL_FLTREQ1I), | ||
110 | INTC_GROUP(I2C, I2C_ALI, I2C_TACKI, I2C_WAITI, I2C_DTEI), | ||
111 | INTC_GROUP(SDHI, SDHI0, SDHI1, SDHI2, SDHI3), | ||
112 | }; | ||
113 | |||
114 | static struct intc_mask_reg mask_registers[] __initdata = { | ||
115 | { 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */ | ||
116 | { } }, | ||
117 | { 0xa4080084, 0xa40800c4, 8, /* IMR1 / IMCR1 */ | ||
118 | { VOU, VIO_VEUI, VIO_BEUI, VIO_CEUI, DMAC3, DMAC2, DMAC1, DMAC0 } }, | ||
119 | { 0xa4080088, 0xa40800c8, 8, /* IMR2 / IMCR2 */ | ||
120 | { 0, 0, 0, VPU, 0, 0, 0, MFI } }, | ||
121 | { 0xa408008c, 0xa40800cc, 8, /* IMR3 / IMCR3 */ | ||
122 | { 0, 0, 0, ICB } }, | ||
123 | { 0xa4080090, 0xa40800d0, 8, /* IMR4 / IMCR4 */ | ||
124 | { 0, TMU2, TMU1, TMU0, VEU2, 0, 0, LCDC } }, | ||
125 | { 0xa4080094, 0xa40800d4, 8, /* IMR5 / IMCR5 */ | ||
126 | { 0, DMAC_DADERR, DMAC5, DMAC4, DENC, SCIFA2, SCIFA1, SCIF } }, | ||
127 | { 0xa4080098, 0xa40800d8, 8, /* IMR6 / IMCR6 */ | ||
128 | { 0, 0, 0, 0, 0, 0, 0, MSIOF } }, | ||
129 | { 0xa408009c, 0xa40800dc, 8, /* IMR7 / IMCR7 */ | ||
130 | { I2C_DTEI, I2C_WAITI, I2C_TACKI, I2C_ALI, | ||
131 | FLCTL_FLTREQ1I, FLCTL_FLTREQ0I, FLCTL_FLENDI, FLCTL_FLSTEI } }, | ||
132 | { 0xa40800a0, 0xa40800e0, 8, /* IMR8 / IMCR8 */ | ||
133 | { SDHI3, SDHI2, SDHI1, SDHI0, 0, 0, 0, SIU } }, | ||
134 | { 0xa40800a4, 0xa40800e4, 8, /* IMR9 / IMCR9 */ | ||
135 | { 0, 0, 0, CMT, 0, USB, } }, | ||
136 | { 0xa40800a8, 0xa40800e8, 8, /* IMR10 / IMCR10 */ | ||
137 | { 0, MMC_MMC3I, MMC_MMC2I, MMC_MMC1I } }, | ||
138 | { 0xa40800ac, 0xa40800ec, 8, /* IMR11 / IMCR11 */ | ||
139 | { 0, 0, 0, 0, 0, 0, 0, TSIF } }, | ||
140 | { 0xa4140044, 0xa4140064, 8, /* INTMSK00 / INTMSKCLR00 */ | ||
141 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
142 | }; | ||
143 | |||
144 | static struct intc_prio_reg prio_registers[] __initdata = { | ||
145 | { 0xa4080000, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2 } }, | ||
146 | { 0xa4080004, 0, 16, 4, /* IPRB */ { VEU2, LCDC, ICB } }, | ||
147 | { 0xa4080008, 0, 16, 4, /* IPRC */ { } }, | ||
148 | { 0xa408000c, 0, 16, 4, /* IPRD */ { } }, | ||
149 | { 0xa4080010, 0, 16, 4, /* IPRE */ { DMAC0123, VIOVOU, MFI, VPU } }, | ||
150 | { 0xa4080014, 0, 16, 4, /* IPRF */ { 0, DMAC45, USB, CMT } }, | ||
151 | { 0xa4080018, 0, 16, 4, /* IPRG */ { SCIF, SCIFA1, SCIFA2, DENC } }, | ||
152 | { 0xa408001c, 0, 16, 4, /* IPRH */ { MSIOF, 0, FLCTL, I2C } }, | ||
153 | { 0xa4080020, 0, 16, 4, /* IPRI */ { 0, 0, TSIF, } }, | ||
154 | { 0xa4080024, 0, 16, 4, /* IPRJ */ { 0, 0, SIU } }, | ||
155 | { 0xa4080028, 0, 16, 4, /* IPRK */ { 0, MMC, 0, SDHI } }, | ||
156 | { 0xa408002c, 0, 16, 4, /* IPRL */ { } }, | ||
157 | { 0xa4140010, 0, 32, 4, /* INTPRI00 */ | ||
158 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
159 | }; | ||
160 | |||
161 | static struct intc_sense_reg sense_registers[] __initdata = { | ||
162 | { 0xa414001c, 16, 2, /* ICR1 */ | ||
163 | { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } }, | ||
164 | }; | ||
165 | |||
166 | static DECLARE_INTC_DESC(intc_desc, "sh7366", vectors, groups, | ||
167 | mask_registers, prio_registers, sense_registers); | ||
168 | |||
169 | void __init plat_irq_setup(void) | ||
170 | { | ||
171 | register_intc_controller(&intc_desc); | ||
172 | } | ||
173 | |||
174 | void __init plat_mem_setup(void) | ||
175 | { | ||
176 | /* TODO: Register Node 1 */ | ||
177 | } | ||
diff --git a/arch/sh/kernel/cpu/sh5/probe.c b/arch/sh/kernel/cpu/sh5/probe.c index 15d167fd0ae7..31f8cb0f6374 100644 --- a/arch/sh/kernel/cpu/sh5/probe.c +++ b/arch/sh/kernel/cpu/sh5/probe.c | |||
@@ -20,19 +20,18 @@ int __init detect_cpu_and_cache_system(void) | |||
20 | { | 20 | { |
21 | unsigned long long cir; | 21 | unsigned long long cir; |
22 | 22 | ||
23 | /* Do peeks in real mode to avoid having to set up a mapping for the | 23 | /* |
24 | WPC registers. On SH5-101 cut2, such a mapping would be exposed to | 24 | * Do peeks in real mode to avoid having to set up a mapping for |
25 | an address translation erratum which would make it hard to set up | 25 | * the WPC registers. On SH5-101 cut2, such a mapping would be |
26 | correctly. */ | 26 | * exposed to an address translation erratum which would make it |
27 | * hard to set up correctly. | ||
28 | */ | ||
27 | cir = peek_real_address_q(0x0d000008); | 29 | cir = peek_real_address_q(0x0d000008); |
28 | if ((cir & 0xffff) == 0x5103) { | 30 | if ((cir & 0xffff) == 0x5103) |
29 | boot_cpu_data.type = CPU_SH5_103; | 31 | boot_cpu_data.type = CPU_SH5_103; |
30 | } else if (((cir >> 32) & 0xffff) == 0x51e2) { | 32 | else if (((cir >> 32) & 0xffff) == 0x51e2) |
31 | /* CPU.VCR aliased at CIR address on SH5-101 */ | 33 | /* CPU.VCR aliased at CIR address on SH5-101 */ |
32 | boot_cpu_data.type = CPU_SH5_101; | 34 | boot_cpu_data.type = CPU_SH5_101; |
33 | } else { | ||
34 | boot_cpu_data.type = CPU_SH_NONE; | ||
35 | } | ||
36 | 35 | ||
37 | /* | 36 | /* |
38 | * First, setup some sane values for the I-cache. | 37 | * First, setup some sane values for the I-cache. |
@@ -40,37 +39,33 @@ int __init detect_cpu_and_cache_system(void) | |||
40 | boot_cpu_data.icache.ways = 4; | 39 | boot_cpu_data.icache.ways = 4; |
41 | boot_cpu_data.icache.sets = 256; | 40 | boot_cpu_data.icache.sets = 256; |
42 | boot_cpu_data.icache.linesz = L1_CACHE_BYTES; | 41 | boot_cpu_data.icache.linesz = L1_CACHE_BYTES; |
42 | boot_cpu_data.icache.way_incr = (1 << 13); | ||
43 | boot_cpu_data.icache.entry_shift = 5; | ||
44 | boot_cpu_data.icache.way_size = boot_cpu_data.icache.sets * | ||
45 | boot_cpu_data.icache.linesz; | ||
46 | boot_cpu_data.icache.entry_mask = 0x1fe0; | ||
47 | boot_cpu_data.icache.flags = 0; | ||
43 | 48 | ||
44 | #if 0 | ||
45 | /* | 49 | /* |
46 | * FIXME: This can probably be cleaned up a bit as well.. for example, | 50 | * Next, setup some sane values for the D-cache. |
47 | * do we really need the way shift _and_ the way_step_shift ?? Judging | 51 | * |
48 | * by the existing code, I would guess no.. is there any valid reason | 52 | * On the SH5, these are pretty consistent with the I-cache settings, |
49 | * why we need to be tracking this around? | 53 | * so we just copy over the existing definitions.. these can be fixed |
54 | * up later, especially if we add runtime CPU probing. | ||
55 | * | ||
56 | * Though in the meantime it saves us from having to duplicate all of | ||
57 | * the above definitions.. | ||
50 | */ | 58 | */ |
51 | boot_cpu_data.icache.way_shift = 13; | 59 | boot_cpu_data.dcache = boot_cpu_data.icache; |
52 | boot_cpu_data.icache.entry_shift = 5; | ||
53 | boot_cpu_data.icache.set_shift = 4; | ||
54 | boot_cpu_data.icache.way_step_shift = 16; | ||
55 | boot_cpu_data.icache.asid_shift = 2; | ||
56 | 60 | ||
57 | /* | 61 | /* |
58 | * way offset = cache size / associativity, so just don't factor in | 62 | * Setup any cache-related flags here |
59 | * associativity in the first place.. | ||
60 | */ | 63 | */ |
61 | boot_cpu_data.icache.way_ofs = boot_cpu_data.icache.sets * | 64 | #if defined(CONFIG_CACHE_WRITETHROUGH) |
62 | boot_cpu_data.icache.linesz; | 65 | set_bit(SH_CACHE_MODE_WT, &(boot_cpu_data.dcache.flags)); |
63 | 66 | #elif defined(CONFIG_CACHE_WRITEBACK) | |
64 | boot_cpu_data.icache.asid_mask = 0x3fc; | 67 | set_bit(SH_CACHE_MODE_WB, &(boot_cpu_data.dcache.flags)); |
65 | boot_cpu_data.icache.idx_mask = 0x1fe0; | ||
66 | boot_cpu_data.icache.epn_mask = 0xffffe000; | ||
67 | #endif | 68 | #endif |
68 | 69 | ||
69 | boot_cpu_data.icache.flags = 0; | ||
70 | |||
71 | /* A trivial starting point.. */ | ||
72 | memcpy(&boot_cpu_data.dcache, | ||
73 | &boot_cpu_data.icache, sizeof(struct cache_info)); | ||
74 | |||
75 | return 0; | 70 | return 0; |
76 | } | 71 | } |
diff --git a/arch/sh/kernel/io.c b/arch/sh/kernel/io.c index 71c9fde2fd90..2b8991229900 100644 --- a/arch/sh/kernel/io.c +++ b/arch/sh/kernel/io.c | |||
@@ -63,7 +63,13 @@ EXPORT_SYMBOL(memset_io); | |||
63 | 63 | ||
64 | void __iomem *ioport_map(unsigned long port, unsigned int nr) | 64 | void __iomem *ioport_map(unsigned long port, unsigned int nr) |
65 | { | 65 | { |
66 | return sh_mv.mv_ioport_map(port, nr); | 66 | void __iomem *ret; |
67 | |||
68 | ret = __ioport_map_trapped(port, nr); | ||
69 | if (ret) | ||
70 | return ret; | ||
71 | |||
72 | return __ioport_map(port, nr); | ||
67 | } | 73 | } |
68 | EXPORT_SYMBOL(ioport_map); | 74 | EXPORT_SYMBOL(ioport_map); |
69 | 75 | ||
diff --git a/arch/sh/kernel/io_generic.c b/arch/sh/kernel/io_generic.c index 771ea4230441..db769449f5a7 100644 --- a/arch/sh/kernel/io_generic.c +++ b/arch/sh/kernel/io_generic.c | |||
@@ -33,17 +33,17 @@ static inline void delay(void) | |||
33 | 33 | ||
34 | u8 generic_inb(unsigned long port) | 34 | u8 generic_inb(unsigned long port) |
35 | { | 35 | { |
36 | return ctrl_inb((unsigned long __force)ioport_map(port, 1)); | 36 | return ctrl_inb((unsigned long __force)__ioport_map(port, 1)); |
37 | } | 37 | } |
38 | 38 | ||
39 | u16 generic_inw(unsigned long port) | 39 | u16 generic_inw(unsigned long port) |
40 | { | 40 | { |
41 | return ctrl_inw((unsigned long __force)ioport_map(port, 2)); | 41 | return ctrl_inw((unsigned long __force)__ioport_map(port, 2)); |
42 | } | 42 | } |
43 | 43 | ||
44 | u32 generic_inl(unsigned long port) | 44 | u32 generic_inl(unsigned long port) |
45 | { | 45 | { |
46 | return ctrl_inl((unsigned long __force)ioport_map(port, 4)); | 46 | return ctrl_inl((unsigned long __force)__ioport_map(port, 4)); |
47 | } | 47 | } |
48 | 48 | ||
49 | u8 generic_inb_p(unsigned long port) | 49 | u8 generic_inb_p(unsigned long port) |
@@ -81,7 +81,7 @@ void generic_insb(unsigned long port, void *dst, unsigned long count) | |||
81 | volatile u8 *port_addr; | 81 | volatile u8 *port_addr; |
82 | u8 *buf = dst; | 82 | u8 *buf = dst; |
83 | 83 | ||
84 | port_addr = (volatile u8 *)ioport_map(port, 1); | 84 | port_addr = (volatile u8 *)__ioport_map(port, 1); |
85 | while (count--) | 85 | while (count--) |
86 | *buf++ = *port_addr; | 86 | *buf++ = *port_addr; |
87 | } | 87 | } |
@@ -91,7 +91,7 @@ void generic_insw(unsigned long port, void *dst, unsigned long count) | |||
91 | volatile u16 *port_addr; | 91 | volatile u16 *port_addr; |
92 | u16 *buf = dst; | 92 | u16 *buf = dst; |
93 | 93 | ||
94 | port_addr = (volatile u16 *)ioport_map(port, 2); | 94 | port_addr = (volatile u16 *)__ioport_map(port, 2); |
95 | while (count--) | 95 | while (count--) |
96 | *buf++ = *port_addr; | 96 | *buf++ = *port_addr; |
97 | 97 | ||
@@ -103,7 +103,7 @@ void generic_insl(unsigned long port, void *dst, unsigned long count) | |||
103 | volatile u32 *port_addr; | 103 | volatile u32 *port_addr; |
104 | u32 *buf = dst; | 104 | u32 *buf = dst; |
105 | 105 | ||
106 | port_addr = (volatile u32 *)ioport_map(port, 4); | 106 | port_addr = (volatile u32 *)__ioport_map(port, 4); |
107 | while (count--) | 107 | while (count--) |
108 | *buf++ = *port_addr; | 108 | *buf++ = *port_addr; |
109 | 109 | ||
@@ -112,17 +112,17 @@ void generic_insl(unsigned long port, void *dst, unsigned long count) | |||
112 | 112 | ||
113 | void generic_outb(u8 b, unsigned long port) | 113 | void generic_outb(u8 b, unsigned long port) |
114 | { | 114 | { |
115 | ctrl_outb(b, (unsigned long __force)ioport_map(port, 1)); | 115 | ctrl_outb(b, (unsigned long __force)__ioport_map(port, 1)); |
116 | } | 116 | } |
117 | 117 | ||
118 | void generic_outw(u16 b, unsigned long port) | 118 | void generic_outw(u16 b, unsigned long port) |
119 | { | 119 | { |
120 | ctrl_outw(b, (unsigned long __force)ioport_map(port, 2)); | 120 | ctrl_outw(b, (unsigned long __force)__ioport_map(port, 2)); |
121 | } | 121 | } |
122 | 122 | ||
123 | void generic_outl(u32 b, unsigned long port) | 123 | void generic_outl(u32 b, unsigned long port) |
124 | { | 124 | { |
125 | ctrl_outl(b, (unsigned long __force)ioport_map(port, 4)); | 125 | ctrl_outl(b, (unsigned long __force)__ioport_map(port, 4)); |
126 | } | 126 | } |
127 | 127 | ||
128 | void generic_outb_p(u8 b, unsigned long port) | 128 | void generic_outb_p(u8 b, unsigned long port) |
@@ -153,7 +153,7 @@ void generic_outsb(unsigned long port, const void *src, unsigned long count) | |||
153 | volatile u8 *port_addr; | 153 | volatile u8 *port_addr; |
154 | const u8 *buf = src; | 154 | const u8 *buf = src; |
155 | 155 | ||
156 | port_addr = (volatile u8 __force *)ioport_map(port, 1); | 156 | port_addr = (volatile u8 __force *)__ioport_map(port, 1); |
157 | 157 | ||
158 | while (count--) | 158 | while (count--) |
159 | *port_addr = *buf++; | 159 | *port_addr = *buf++; |
@@ -164,7 +164,7 @@ void generic_outsw(unsigned long port, const void *src, unsigned long count) | |||
164 | volatile u16 *port_addr; | 164 | volatile u16 *port_addr; |
165 | const u16 *buf = src; | 165 | const u16 *buf = src; |
166 | 166 | ||
167 | port_addr = (volatile u16 __force *)ioport_map(port, 2); | 167 | port_addr = (volatile u16 __force *)__ioport_map(port, 2); |
168 | 168 | ||
169 | while (count--) | 169 | while (count--) |
170 | *port_addr = *buf++; | 170 | *port_addr = *buf++; |
@@ -177,7 +177,7 @@ void generic_outsl(unsigned long port, const void *src, unsigned long count) | |||
177 | volatile u32 *port_addr; | 177 | volatile u32 *port_addr; |
178 | const u32 *buf = src; | 178 | const u32 *buf = src; |
179 | 179 | ||
180 | port_addr = (volatile u32 __force *)ioport_map(port, 4); | 180 | port_addr = (volatile u32 __force *)__ioport_map(port, 4); |
181 | while (count--) | 181 | while (count--) |
182 | *port_addr = *buf++; | 182 | *port_addr = *buf++; |
183 | 183 | ||
diff --git a/arch/sh/kernel/io_trapped.c b/arch/sh/kernel/io_trapped.c new file mode 100644 index 000000000000..86a665d92201 --- /dev/null +++ b/arch/sh/kernel/io_trapped.c | |||
@@ -0,0 +1,276 @@ | |||
1 | /* | ||
2 | * Trapped io support | ||
3 | * | ||
4 | * Copyright (C) 2008 Magnus Damm | ||
5 | * | ||
6 | * Intercept io operations by trapping. | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | */ | ||
12 | #include <linux/kernel.h> | ||
13 | #include <linux/mm.h> | ||
14 | #include <linux/bitops.h> | ||
15 | #include <linux/vmalloc.h> | ||
16 | #include <linux/module.h> | ||
17 | #include <asm/system.h> | ||
18 | #include <asm/mmu_context.h> | ||
19 | #include <asm/uaccess.h> | ||
20 | #include <asm/io.h> | ||
21 | #include <asm/io_trapped.h> | ||
22 | |||
23 | #define TRAPPED_PAGES_MAX 16 | ||
24 | |||
25 | #ifdef CONFIG_HAS_IOPORT | ||
26 | LIST_HEAD(trapped_io); | ||
27 | EXPORT_SYMBOL_GPL(trapped_io); | ||
28 | #endif | ||
29 | #ifdef CONFIG_HAS_IOMEM | ||
30 | LIST_HEAD(trapped_mem); | ||
31 | EXPORT_SYMBOL_GPL(trapped_mem); | ||
32 | #endif | ||
33 | static DEFINE_SPINLOCK(trapped_lock); | ||
34 | |||
35 | int __init register_trapped_io(struct trapped_io *tiop) | ||
36 | { | ||
37 | struct resource *res; | ||
38 | unsigned long len = 0, flags = 0; | ||
39 | struct page *pages[TRAPPED_PAGES_MAX]; | ||
40 | int k, n; | ||
41 | |||
42 | /* structure must be page aligned */ | ||
43 | if ((unsigned long)tiop & (PAGE_SIZE - 1)) | ||
44 | goto bad; | ||
45 | |||
46 | for (k = 0; k < tiop->num_resources; k++) { | ||
47 | res = tiop->resource + k; | ||
48 | len += roundup((res->end - res->start) + 1, PAGE_SIZE); | ||
49 | flags |= res->flags; | ||
50 | } | ||
51 | |||
52 | /* support IORESOURCE_IO _or_ MEM, not both */ | ||
53 | if (hweight_long(flags) != 1) | ||
54 | goto bad; | ||
55 | |||
56 | n = len >> PAGE_SHIFT; | ||
57 | |||
58 | if (n >= TRAPPED_PAGES_MAX) | ||
59 | goto bad; | ||
60 | |||
61 | for (k = 0; k < n; k++) | ||
62 | pages[k] = virt_to_page(tiop); | ||
63 | |||
64 | tiop->virt_base = vmap(pages, n, VM_MAP, PAGE_NONE); | ||
65 | if (!tiop->virt_base) | ||
66 | goto bad; | ||
67 | |||
68 | len = 0; | ||
69 | for (k = 0; k < tiop->num_resources; k++) { | ||
70 | res = tiop->resource + k; | ||
71 | pr_info("trapped io 0x%08lx overrides %s 0x%08lx\n", | ||
72 | (unsigned long)(tiop->virt_base + len), | ||
73 | res->flags & IORESOURCE_IO ? "io" : "mmio", | ||
74 | (unsigned long)res->start); | ||
75 | len += roundup((res->end - res->start) + 1, PAGE_SIZE); | ||
76 | } | ||
77 | |||
78 | tiop->magic = IO_TRAPPED_MAGIC; | ||
79 | INIT_LIST_HEAD(&tiop->list); | ||
80 | spin_lock_irq(&trapped_lock); | ||
81 | if (flags & IORESOURCE_IO) | ||
82 | list_add(&tiop->list, &trapped_io); | ||
83 | if (flags & IORESOURCE_MEM) | ||
84 | list_add(&tiop->list, &trapped_mem); | ||
85 | spin_unlock_irq(&trapped_lock); | ||
86 | |||
87 | return 0; | ||
88 | bad: | ||
89 | pr_warning("unable to install trapped io filter\n"); | ||
90 | return -1; | ||
91 | } | ||
92 | EXPORT_SYMBOL_GPL(register_trapped_io); | ||
93 | |||
94 | void __iomem *match_trapped_io_handler(struct list_head *list, | ||
95 | unsigned long offset, | ||
96 | unsigned long size) | ||
97 | { | ||
98 | unsigned long voffs; | ||
99 | struct trapped_io *tiop; | ||
100 | struct resource *res; | ||
101 | int k, len; | ||
102 | |||
103 | spin_lock_irq(&trapped_lock); | ||
104 | list_for_each_entry(tiop, list, list) { | ||
105 | voffs = 0; | ||
106 | for (k = 0; k < tiop->num_resources; k++) { | ||
107 | res = tiop->resource + k; | ||
108 | if (res->start == offset) { | ||
109 | spin_unlock_irq(&trapped_lock); | ||
110 | return tiop->virt_base + voffs; | ||
111 | } | ||
112 | |||
113 | len = (res->end - res->start) + 1; | ||
114 | voffs += roundup(len, PAGE_SIZE); | ||
115 | } | ||
116 | } | ||
117 | spin_unlock_irq(&trapped_lock); | ||
118 | return NULL; | ||
119 | } | ||
120 | EXPORT_SYMBOL_GPL(match_trapped_io_handler); | ||
121 | |||
122 | static struct trapped_io *lookup_tiop(unsigned long address) | ||
123 | { | ||
124 | pgd_t *pgd_k; | ||
125 | pud_t *pud_k; | ||
126 | pmd_t *pmd_k; | ||
127 | pte_t *pte_k; | ||
128 | pte_t entry; | ||
129 | |||
130 | pgd_k = swapper_pg_dir + pgd_index(address); | ||
131 | if (!pgd_present(*pgd_k)) | ||
132 | return NULL; | ||
133 | |||
134 | pud_k = pud_offset(pgd_k, address); | ||
135 | if (!pud_present(*pud_k)) | ||
136 | return NULL; | ||
137 | |||
138 | pmd_k = pmd_offset(pud_k, address); | ||
139 | if (!pmd_present(*pmd_k)) | ||
140 | return NULL; | ||
141 | |||
142 | pte_k = pte_offset_kernel(pmd_k, address); | ||
143 | entry = *pte_k; | ||
144 | |||
145 | return pfn_to_kaddr(pte_pfn(entry)); | ||
146 | } | ||
147 | |||
148 | static unsigned long lookup_address(struct trapped_io *tiop, | ||
149 | unsigned long address) | ||
150 | { | ||
151 | struct resource *res; | ||
152 | unsigned long vaddr = (unsigned long)tiop->virt_base; | ||
153 | unsigned long len; | ||
154 | int k; | ||
155 | |||
156 | for (k = 0; k < tiop->num_resources; k++) { | ||
157 | res = tiop->resource + k; | ||
158 | len = roundup((res->end - res->start) + 1, PAGE_SIZE); | ||
159 | if (address < (vaddr + len)) | ||
160 | return res->start + (address - vaddr); | ||
161 | vaddr += len; | ||
162 | } | ||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | static unsigned long long copy_word(unsigned long src_addr, int src_len, | ||
167 | unsigned long dst_addr, int dst_len) | ||
168 | { | ||
169 | unsigned long long tmp = 0; | ||
170 | |||
171 | switch (src_len) { | ||
172 | case 1: | ||
173 | tmp = ctrl_inb(src_addr); | ||
174 | break; | ||
175 | case 2: | ||
176 | tmp = ctrl_inw(src_addr); | ||
177 | break; | ||
178 | case 4: | ||
179 | tmp = ctrl_inl(src_addr); | ||
180 | break; | ||
181 | case 8: | ||
182 | tmp = ctrl_inq(src_addr); | ||
183 | break; | ||
184 | } | ||
185 | |||
186 | switch (dst_len) { | ||
187 | case 1: | ||
188 | ctrl_outb(tmp, dst_addr); | ||
189 | break; | ||
190 | case 2: | ||
191 | ctrl_outw(tmp, dst_addr); | ||
192 | break; | ||
193 | case 4: | ||
194 | ctrl_outl(tmp, dst_addr); | ||
195 | break; | ||
196 | case 8: | ||
197 | ctrl_outq(tmp, dst_addr); | ||
198 | break; | ||
199 | } | ||
200 | |||
201 | return tmp; | ||
202 | } | ||
203 | |||
204 | static unsigned long from_device(void *dst, const void *src, unsigned long cnt) | ||
205 | { | ||
206 | struct trapped_io *tiop; | ||
207 | unsigned long src_addr = (unsigned long)src; | ||
208 | unsigned long long tmp; | ||
209 | |||
210 | pr_debug("trapped io read 0x%08lx (%ld)\n", src_addr, cnt); | ||
211 | tiop = lookup_tiop(src_addr); | ||
212 | WARN_ON(!tiop || (tiop->magic != IO_TRAPPED_MAGIC)); | ||
213 | |||
214 | src_addr = lookup_address(tiop, src_addr); | ||
215 | if (!src_addr) | ||
216 | return cnt; | ||
217 | |||
218 | tmp = copy_word(src_addr, | ||
219 | max_t(unsigned long, cnt, | ||
220 | (tiop->minimum_bus_width / 8)), | ||
221 | (unsigned long)dst, cnt); | ||
222 | |||
223 | pr_debug("trapped io read 0x%08lx -> 0x%08llx\n", src_addr, tmp); | ||
224 | return 0; | ||
225 | } | ||
226 | |||
227 | static unsigned long to_device(void *dst, const void *src, unsigned long cnt) | ||
228 | { | ||
229 | struct trapped_io *tiop; | ||
230 | unsigned long dst_addr = (unsigned long)dst; | ||
231 | unsigned long long tmp; | ||
232 | |||
233 | pr_debug("trapped io write 0x%08lx (%ld)\n", dst_addr, cnt); | ||
234 | tiop = lookup_tiop(dst_addr); | ||
235 | WARN_ON(!tiop || (tiop->magic != IO_TRAPPED_MAGIC)); | ||
236 | |||
237 | dst_addr = lookup_address(tiop, dst_addr); | ||
238 | if (!dst_addr) | ||
239 | return cnt; | ||
240 | |||
241 | tmp = copy_word((unsigned long)src, cnt, | ||
242 | dst_addr, max_t(unsigned long, cnt, | ||
243 | (tiop->minimum_bus_width / 8))); | ||
244 | |||
245 | pr_debug("trapped io write 0x%08lx -> 0x%08llx\n", dst_addr, tmp); | ||
246 | return 0; | ||
247 | } | ||
248 | |||
249 | static struct mem_access trapped_io_access = { | ||
250 | from_device, | ||
251 | to_device, | ||
252 | }; | ||
253 | |||
254 | int handle_trapped_io(struct pt_regs *regs, unsigned long address) | ||
255 | { | ||
256 | mm_segment_t oldfs; | ||
257 | opcode_t instruction; | ||
258 | int tmp; | ||
259 | |||
260 | if (!lookup_tiop(address)) | ||
261 | return 0; | ||
262 | |||
263 | WARN_ON(user_mode(regs)); | ||
264 | |||
265 | oldfs = get_fs(); | ||
266 | set_fs(KERNEL_DS); | ||
267 | if (copy_from_user(&instruction, (void *)(regs->pc), | ||
268 | sizeof(instruction))) { | ||
269 | set_fs(oldfs); | ||
270 | return 0; | ||
271 | } | ||
272 | |||
273 | tmp = handle_unaligned_access(instruction, regs, &trapped_io_access); | ||
274 | set_fs(oldfs); | ||
275 | return tmp == 0; | ||
276 | } | ||
diff --git a/arch/sh/kernel/irq.c b/arch/sh/kernel/irq.c index 0586bc62ad96..9bf19b00696a 100644 --- a/arch/sh/kernel/irq.c +++ b/arch/sh/kernel/irq.c | |||
@@ -248,9 +248,6 @@ asmlinkage void do_softirq(void) | |||
248 | 248 | ||
249 | void __init init_IRQ(void) | 249 | void __init init_IRQ(void) |
250 | { | 250 | { |
251 | #ifdef CONFIG_CPU_HAS_PINT_IRQ | ||
252 | init_IRQ_pint(); | ||
253 | #endif | ||
254 | plat_irq_setup(); | 251 | plat_irq_setup(); |
255 | 252 | ||
256 | /* Perform the machine specific initialisation */ | 253 | /* Perform the machine specific initialisation */ |
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index cff3b7dc9c56..046999b1d1af 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c | |||
@@ -623,6 +623,7 @@ extern void interruptible_sleep_on(wait_queue_head_t *q); | |||
623 | 623 | ||
624 | #define mid_sched ((unsigned long) interruptible_sleep_on) | 624 | #define mid_sched ((unsigned long) interruptible_sleep_on) |
625 | 625 | ||
626 | #ifdef CONFIG_FRAME_POINTER | ||
626 | static int in_sh64_switch_to(unsigned long pc) | 627 | static int in_sh64_switch_to(unsigned long pc) |
627 | { | 628 | { |
628 | extern char __sh64_switch_to_end; | 629 | extern char __sh64_switch_to_end; |
@@ -631,12 +632,10 @@ static int in_sh64_switch_to(unsigned long pc) | |||
631 | return (pc >= (unsigned long) sh64_switch_to) && | 632 | return (pc >= (unsigned long) sh64_switch_to) && |
632 | (pc < (unsigned long) &__sh64_switch_to_end); | 633 | (pc < (unsigned long) &__sh64_switch_to_end); |
633 | } | 634 | } |
635 | #endif | ||
634 | 636 | ||
635 | unsigned long get_wchan(struct task_struct *p) | 637 | unsigned long get_wchan(struct task_struct *p) |
636 | { | 638 | { |
637 | unsigned long schedule_fp; | ||
638 | unsigned long sh64_switch_to_fp; | ||
639 | unsigned long schedule_caller_pc; | ||
640 | unsigned long pc; | 639 | unsigned long pc; |
641 | 640 | ||
642 | if (!p || p == current || p->state == TASK_RUNNING) | 641 | if (!p || p == current || p->state == TASK_RUNNING) |
@@ -649,6 +648,10 @@ unsigned long get_wchan(struct task_struct *p) | |||
649 | 648 | ||
650 | #ifdef CONFIG_FRAME_POINTER | 649 | #ifdef CONFIG_FRAME_POINTER |
651 | if (in_sh64_switch_to(pc)) { | 650 | if (in_sh64_switch_to(pc)) { |
651 | unsigned long schedule_fp; | ||
652 | unsigned long sh64_switch_to_fp; | ||
653 | unsigned long schedule_caller_pc; | ||
654 | |||
652 | sh64_switch_to_fp = (long) p->thread.sp; | 655 | sh64_switch_to_fp = (long) p->thread.sp; |
653 | /* r14 is saved at offset 4 in the sh64_switch_to frame */ | 656 | /* r14 is saved at offset 4 in the sh64_switch_to frame */ |
654 | schedule_fp = *(unsigned long *) (long)(sh64_switch_to_fp + 4); | 657 | schedule_fp = *(unsigned long *) (long)(sh64_switch_to_fp + 4); |
diff --git a/arch/sh/kernel/ptrace_32.c b/arch/sh/kernel/ptrace_32.c index ce0664a58b49..fddb547f3c2b 100644 --- a/arch/sh/kernel/ptrace_32.c +++ b/arch/sh/kernel/ptrace_32.c | |||
@@ -220,7 +220,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
220 | dp = ((unsigned long) child) + THREAD_SIZE - | 220 | dp = ((unsigned long) child) + THREAD_SIZE - |
221 | sizeof(struct pt_dspregs); | 221 | sizeof(struct pt_dspregs); |
222 | if (*((int *) (dp - 4)) == SR_FD) { | 222 | if (*((int *) (dp - 4)) == SR_FD) { |
223 | copy_to_user(addr, (void *) dp, | 223 | copy_to_user((void *)addr, (void *) dp, |
224 | sizeof(struct pt_dspregs)); | 224 | sizeof(struct pt_dspregs)); |
225 | ret = 0; | 225 | ret = 0; |
226 | } | 226 | } |
@@ -234,7 +234,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
234 | dp = ((unsigned long) child) + THREAD_SIZE - | 234 | dp = ((unsigned long) child) + THREAD_SIZE - |
235 | sizeof(struct pt_dspregs); | 235 | sizeof(struct pt_dspregs); |
236 | if (*((int *) (dp - 4)) == SR_FD) { | 236 | if (*((int *) (dp - 4)) == SR_FD) { |
237 | copy_from_user((void *) dp, addr, | 237 | copy_from_user((void *) dp, (void *)addr, |
238 | sizeof(struct pt_dspregs)); | 238 | sizeof(struct pt_dspregs)); |
239 | ret = 0; | 239 | ret = 0; |
240 | } | 240 | } |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 18a5baf2cbad..ff4f54a47c07 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -333,7 +333,7 @@ static const char *cpu_name[] = { | |||
333 | [CPU_SH7343] = "SH7343", [CPU_SH7785] = "SH7785", | 333 | [CPU_SH7343] = "SH7343", [CPU_SH7785] = "SH7785", |
334 | [CPU_SH7722] = "SH7722", [CPU_SHX3] = "SH-X3", | 334 | [CPU_SH7722] = "SH7722", [CPU_SHX3] = "SH-X3", |
335 | [CPU_SH5_101] = "SH5-101", [CPU_SH5_103] = "SH5-103", | 335 | [CPU_SH5_101] = "SH5-101", [CPU_SH5_103] = "SH5-103", |
336 | [CPU_SH_NONE] = "Unknown" | 336 | [CPU_SH7366] = "SH7366", [CPU_SH_NONE] = "Unknown" |
337 | }; | 337 | }; |
338 | 338 | ||
339 | const char *get_cpu_subtype(struct sh_cpuinfo *c) | 339 | const char *get_cpu_subtype(struct sh_cpuinfo *c) |
diff --git a/arch/sh/kernel/syscalls_32.S b/arch/sh/kernel/syscalls_32.S index 719e127a7c05..a46cc3a41148 100644 --- a/arch/sh/kernel/syscalls_32.S +++ b/arch/sh/kernel/syscalls_32.S | |||
@@ -338,6 +338,8 @@ ENTRY(sys_call_table) | |||
338 | .long sys_epoll_pwait | 338 | .long sys_epoll_pwait |
339 | .long sys_utimensat /* 320 */ | 339 | .long sys_utimensat /* 320 */ |
340 | .long sys_signalfd | 340 | .long sys_signalfd |
341 | .long sys_ni_syscall | 341 | .long sys_timerfd_create |
342 | .long sys_eventfd | 342 | .long sys_eventfd |
343 | .long sys_fallocate | 343 | .long sys_fallocate |
344 | .long sys_timerfd_settime /* 325 */ | ||
345 | .long sys_timerfd_gettime | ||
diff --git a/arch/sh/kernel/syscalls_64.S b/arch/sh/kernel/syscalls_64.S index 12c7340356ae..d5d7843aad94 100644 --- a/arch/sh/kernel/syscalls_64.S +++ b/arch/sh/kernel/syscalls_64.S | |||
@@ -376,6 +376,8 @@ sys_call_table: | |||
376 | .long sys_epoll_pwait | 376 | .long sys_epoll_pwait |
377 | .long sys_utimensat | 377 | .long sys_utimensat |
378 | .long sys_signalfd | 378 | .long sys_signalfd |
379 | .long sys_ni_syscall /* 350 */ | 379 | .long sys_timerfd_create /* 350 */ |
380 | .long sys_eventfd | 380 | .long sys_eventfd |
381 | .long sys_fallocate | 381 | .long sys_fallocate |
382 | .long sys_timerfd_settime | ||
383 | .long sys_timerfd_gettime | ||
diff --git a/arch/sh/kernel/time_32.c b/arch/sh/kernel/time_32.c index 2bc04bfee738..7281342c044d 100644 --- a/arch/sh/kernel/time_32.c +++ b/arch/sh/kernel/time_32.c | |||
@@ -120,10 +120,6 @@ static long last_rtc_update; | |||
120 | */ | 120 | */ |
121 | void handle_timer_tick(void) | 121 | void handle_timer_tick(void) |
122 | { | 122 | { |
123 | do_timer(1); | ||
124 | #ifndef CONFIG_SMP | ||
125 | update_process_times(user_mode(get_irq_regs())); | ||
126 | #endif | ||
127 | if (current->pid) | 123 | if (current->pid) |
128 | profile_tick(CPU_PROFILING); | 124 | profile_tick(CPU_PROFILING); |
129 | 125 | ||
@@ -133,6 +129,16 @@ void handle_timer_tick(void) | |||
133 | #endif | 129 | #endif |
134 | 130 | ||
135 | /* | 131 | /* |
132 | * Here we are in the timer irq handler. We just have irqs locally | ||
133 | * disabled but we don't know if the timer_bh is running on the other | ||
134 | * CPU. We need to avoid to SMP race with it. NOTE: we don' t need | ||
135 | * the irq version of write_lock because as just said we have irq | ||
136 | * locally disabled. -arca | ||
137 | */ | ||
138 | write_seqlock(&xtime_lock); | ||
139 | do_timer(1); | ||
140 | |||
141 | /* | ||
136 | * If we have an externally synchronized Linux clock, then update | 142 | * If we have an externally synchronized Linux clock, then update |
137 | * RTC clock accordingly every ~11 minutes. Set_rtc_mmss() has to be | 143 | * RTC clock accordingly every ~11 minutes. Set_rtc_mmss() has to be |
138 | * called as close as possible to 500 ms before the new second starts. | 144 | * called as close as possible to 500 ms before the new second starts. |
@@ -147,6 +153,11 @@ void handle_timer_tick(void) | |||
147 | /* do it again in 60s */ | 153 | /* do it again in 60s */ |
148 | last_rtc_update = xtime.tv_sec - 600; | 154 | last_rtc_update = xtime.tv_sec - 600; |
149 | } | 155 | } |
156 | write_sequnlock(&xtime_lock); | ||
157 | |||
158 | #ifndef CONFIG_SMP | ||
159 | update_process_times(user_mode(get_irq_regs())); | ||
160 | #endif | ||
150 | } | 161 | } |
151 | #endif /* !CONFIG_GENERIC_CLOCKEVENTS */ | 162 | #endif /* !CONFIG_GENERIC_CLOCKEVENTS */ |
152 | 163 | ||
diff --git a/arch/sh/kernel/time_64.c b/arch/sh/kernel/time_64.c index f819ba38a6ce..898977ee2030 100644 --- a/arch/sh/kernel/time_64.c +++ b/arch/sh/kernel/time_64.c | |||
@@ -229,15 +229,22 @@ static long last_rtc_update; | |||
229 | static inline void do_timer_interrupt(void) | 229 | static inline void do_timer_interrupt(void) |
230 | { | 230 | { |
231 | unsigned long long current_ctc; | 231 | unsigned long long current_ctc; |
232 | |||
233 | if (current->pid) | ||
234 | profile_tick(CPU_PROFILING); | ||
235 | |||
236 | /* | ||
237 | * Here we are in the timer irq handler. We just have irqs locally | ||
238 | * disabled but we don't know if the timer_bh is running on the other | ||
239 | * CPU. We need to avoid to SMP race with it. NOTE: we don' t need | ||
240 | * the irq version of write_lock because as just said we have irq | ||
241 | * locally disabled. -arca | ||
242 | */ | ||
243 | write_lock(&xtime_lock); | ||
232 | asm ("getcon cr62, %0" : "=r" (current_ctc)); | 244 | asm ("getcon cr62, %0" : "=r" (current_ctc)); |
233 | ctc_last_interrupt = (unsigned long) current_ctc; | 245 | ctc_last_interrupt = (unsigned long) current_ctc; |
234 | 246 | ||
235 | do_timer(1); | 247 | do_timer(1); |
236 | #ifndef CONFIG_SMP | ||
237 | update_process_times(user_mode(get_irq_regs())); | ||
238 | #endif | ||
239 | if (current->pid) | ||
240 | profile_tick(CPU_PROFILING); | ||
241 | 248 | ||
242 | #ifdef CONFIG_HEARTBEAT | 249 | #ifdef CONFIG_HEARTBEAT |
243 | if (sh_mv.mv_heartbeat != NULL) | 250 | if (sh_mv.mv_heartbeat != NULL) |
@@ -259,6 +266,11 @@ static inline void do_timer_interrupt(void) | |||
259 | /* do it again in 60 s */ | 266 | /* do it again in 60 s */ |
260 | last_rtc_update = xtime.tv_sec - 600; | 267 | last_rtc_update = xtime.tv_sec - 600; |
261 | } | 268 | } |
269 | write_unlock(&xtime_lock); | ||
270 | |||
271 | #ifndef CONFIG_SMP | ||
272 | update_process_times(user_mode(get_irq_regs())); | ||
273 | #endif | ||
262 | } | 274 | } |
263 | 275 | ||
264 | /* | 276 | /* |
@@ -275,16 +287,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
275 | timer_status &= ~0x100; | 287 | timer_status &= ~0x100; |
276 | ctrl_outw(timer_status, TMU0_TCR); | 288 | ctrl_outw(timer_status, TMU0_TCR); |
277 | 289 | ||
278 | /* | ||
279 | * Here we are in the timer irq handler. We just have irqs locally | ||
280 | * disabled but we don't know if the timer_bh is running on the other | ||
281 | * CPU. We need to avoid to SMP race with it. NOTE: we don' t need | ||
282 | * the irq version of write_lock because as just said we have irq | ||
283 | * locally disabled. -arca | ||
284 | */ | ||
285 | write_lock(&xtime_lock); | ||
286 | do_timer_interrupt(); | 290 | do_timer_interrupt(); |
287 | write_unlock(&xtime_lock); | ||
288 | 291 | ||
289 | return IRQ_HANDLED; | 292 | return IRQ_HANDLED; |
290 | } | 293 | } |
diff --git a/arch/sh/kernel/timers/timer-mtu2.c b/arch/sh/kernel/timers/timer-mtu2.c index 463cd08f9517..ade9d6eb29f9 100644 --- a/arch/sh/kernel/timers/timer-mtu2.c +++ b/arch/sh/kernel/timers/timer-mtu2.c | |||
@@ -154,7 +154,6 @@ static int mtu2_timer_stop(void) | |||
154 | 154 | ||
155 | static int mtu2_timer_init(void) | 155 | static int mtu2_timer_init(void) |
156 | { | 156 | { |
157 | u8 tmp; | ||
158 | unsigned long interval; | 157 | unsigned long interval; |
159 | 158 | ||
160 | setup_irq(CONFIG_SH_TIMER_IRQ, &mtu2_irq); | 159 | setup_irq(CONFIG_SH_TIMER_IRQ, &mtu2_irq); |
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index 2e58f7a6b746..baa4fa368dce 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c | |||
@@ -147,6 +147,36 @@ static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err) | |||
147 | return -EFAULT; | 147 | return -EFAULT; |
148 | } | 148 | } |
149 | 149 | ||
150 | static inline void sign_extend(unsigned int count, unsigned char *dst) | ||
151 | { | ||
152 | #ifdef __LITTLE_ENDIAN__ | ||
153 | if ((count == 1) && dst[0] & 0x80) { | ||
154 | dst[1] = 0xff; | ||
155 | dst[2] = 0xff; | ||
156 | dst[3] = 0xff; | ||
157 | } | ||
158 | if ((count == 2) && dst[1] & 0x80) { | ||
159 | dst[2] = 0xff; | ||
160 | dst[3] = 0xff; | ||
161 | } | ||
162 | #else | ||
163 | if ((count == 1) && dst[3] & 0x80) { | ||
164 | dst[2] = 0xff; | ||
165 | dst[1] = 0xff; | ||
166 | dst[0] = 0xff; | ||
167 | } | ||
168 | if ((count == 2) && dst[2] & 0x80) { | ||
169 | dst[1] = 0xff; | ||
170 | dst[0] = 0xff; | ||
171 | } | ||
172 | #endif | ||
173 | } | ||
174 | |||
175 | static struct mem_access user_mem_access = { | ||
176 | copy_from_user, | ||
177 | copy_to_user, | ||
178 | }; | ||
179 | |||
150 | /* | 180 | /* |
151 | * handle an instruction that does an unaligned memory access by emulating the | 181 | * handle an instruction that does an unaligned memory access by emulating the |
152 | * desired behaviour | 182 | * desired behaviour |
@@ -154,7 +184,8 @@ static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err) | |||
154 | * (if that instruction is in a branch delay slot) | 184 | * (if that instruction is in a branch delay slot) |
155 | * - return 0 if emulation okay, -EFAULT on existential error | 185 | * - return 0 if emulation okay, -EFAULT on existential error |
156 | */ | 186 | */ |
157 | static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | 187 | static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs, |
188 | struct mem_access *ma) | ||
158 | { | 189 | { |
159 | int ret, index, count; | 190 | int ret, index, count; |
160 | unsigned long *rm, *rn; | 191 | unsigned long *rm, *rn; |
@@ -178,25 +209,13 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
178 | dst = (unsigned char*) rn; | 209 | dst = (unsigned char*) rn; |
179 | *(unsigned long*)dst = 0; | 210 | *(unsigned long*)dst = 0; |
180 | 211 | ||
181 | #ifdef __LITTLE_ENDIAN__ | 212 | #if !defined(__LITTLE_ENDIAN__) |
182 | if (copy_from_user(dst, src, count)) | ||
183 | goto fetch_fault; | ||
184 | |||
185 | if ((count == 2) && dst[1] & 0x80) { | ||
186 | dst[2] = 0xff; | ||
187 | dst[3] = 0xff; | ||
188 | } | ||
189 | #else | ||
190 | dst += 4-count; | 213 | dst += 4-count; |
191 | 214 | #endif | |
192 | if (__copy_user(dst, src, count)) | 215 | if (ma->from(dst, src, count)) |
193 | goto fetch_fault; | 216 | goto fetch_fault; |
194 | 217 | ||
195 | if ((count == 2) && dst[2] & 0x80) { | 218 | sign_extend(count, dst); |
196 | dst[0] = 0xff; | ||
197 | dst[1] = 0xff; | ||
198 | } | ||
199 | #endif | ||
200 | } else { | 219 | } else { |
201 | /* to memory */ | 220 | /* to memory */ |
202 | src = (unsigned char*) rm; | 221 | src = (unsigned char*) rm; |
@@ -206,7 +225,7 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
206 | dst = (unsigned char*) *rn; | 225 | dst = (unsigned char*) *rn; |
207 | dst += regs->regs[0]; | 226 | dst += regs->regs[0]; |
208 | 227 | ||
209 | if (copy_to_user(dst, src, count)) | 228 | if (ma->to(dst, src, count)) |
210 | goto fetch_fault; | 229 | goto fetch_fault; |
211 | } | 230 | } |
212 | ret = 0; | 231 | ret = 0; |
@@ -217,7 +236,7 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
217 | dst = (unsigned char*) *rn; | 236 | dst = (unsigned char*) *rn; |
218 | dst += (instruction&0x000F)<<2; | 237 | dst += (instruction&0x000F)<<2; |
219 | 238 | ||
220 | if (copy_to_user(dst,src,4)) | 239 | if (ma->to(dst, src, 4)) |
221 | goto fetch_fault; | 240 | goto fetch_fault; |
222 | ret = 0; | 241 | ret = 0; |
223 | break; | 242 | break; |
@@ -230,7 +249,7 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
230 | #if !defined(__LITTLE_ENDIAN__) | 249 | #if !defined(__LITTLE_ENDIAN__) |
231 | src += 4-count; | 250 | src += 4-count; |
232 | #endif | 251 | #endif |
233 | if (copy_to_user(dst, src, count)) | 252 | if (ma->to(dst, src, count)) |
234 | goto fetch_fault; | 253 | goto fetch_fault; |
235 | ret = 0; | 254 | ret = 0; |
236 | break; | 255 | break; |
@@ -241,7 +260,7 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
241 | dst = (unsigned char*) rn; | 260 | dst = (unsigned char*) rn; |
242 | *(unsigned long*)dst = 0; | 261 | *(unsigned long*)dst = 0; |
243 | 262 | ||
244 | if (copy_from_user(dst,src,4)) | 263 | if (ma->from(dst, src, 4)) |
245 | goto fetch_fault; | 264 | goto fetch_fault; |
246 | ret = 0; | 265 | ret = 0; |
247 | break; | 266 | break; |
@@ -253,25 +272,12 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
253 | dst = (unsigned char*) rn; | 272 | dst = (unsigned char*) rn; |
254 | *(unsigned long*)dst = 0; | 273 | *(unsigned long*)dst = 0; |
255 | 274 | ||
256 | #ifdef __LITTLE_ENDIAN__ | 275 | #if !defined(__LITTLE_ENDIAN__) |
257 | if (copy_from_user(dst, src, count)) | ||
258 | goto fetch_fault; | ||
259 | |||
260 | if ((count == 2) && dst[1] & 0x80) { | ||
261 | dst[2] = 0xff; | ||
262 | dst[3] = 0xff; | ||
263 | } | ||
264 | #else | ||
265 | dst += 4-count; | 276 | dst += 4-count; |
266 | |||
267 | if (copy_from_user(dst, src, count)) | ||
268 | goto fetch_fault; | ||
269 | |||
270 | if ((count == 2) && dst[2] & 0x80) { | ||
271 | dst[0] = 0xff; | ||
272 | dst[1] = 0xff; | ||
273 | } | ||
274 | #endif | 277 | #endif |
278 | if (ma->from(dst, src, count)) | ||
279 | goto fetch_fault; | ||
280 | sign_extend(count, dst); | ||
275 | ret = 0; | 281 | ret = 0; |
276 | break; | 282 | break; |
277 | 283 | ||
@@ -285,7 +291,7 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
285 | dst = (unsigned char*) *rm; /* called Rn in the spec */ | 291 | dst = (unsigned char*) *rm; /* called Rn in the spec */ |
286 | dst += (instruction&0x000F)<<1; | 292 | dst += (instruction&0x000F)<<1; |
287 | 293 | ||
288 | if (copy_to_user(dst, src, 2)) | 294 | if (ma->to(dst, src, 2)) |
289 | goto fetch_fault; | 295 | goto fetch_fault; |
290 | ret = 0; | 296 | ret = 0; |
291 | break; | 297 | break; |
@@ -299,21 +305,9 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
299 | #if !defined(__LITTLE_ENDIAN__) | 305 | #if !defined(__LITTLE_ENDIAN__) |
300 | dst += 2; | 306 | dst += 2; |
301 | #endif | 307 | #endif |
302 | 308 | if (ma->from(dst, src, 2)) | |
303 | if (copy_from_user(dst, src, 2)) | ||
304 | goto fetch_fault; | 309 | goto fetch_fault; |
305 | 310 | sign_extend(2, dst); | |
306 | #ifdef __LITTLE_ENDIAN__ | ||
307 | if (dst[1] & 0x80) { | ||
308 | dst[2] = 0xff; | ||
309 | dst[3] = 0xff; | ||
310 | } | ||
311 | #else | ||
312 | if (dst[2] & 0x80) { | ||
313 | dst[0] = 0xff; | ||
314 | dst[1] = 0xff; | ||
315 | } | ||
316 | #endif | ||
317 | ret = 0; | 311 | ret = 0; |
318 | break; | 312 | break; |
319 | } | 313 | } |
@@ -332,11 +326,14 @@ static int handle_unaligned_ins(u16 instruction, struct pt_regs *regs) | |||
332 | * emulate the instruction in the delay slot | 326 | * emulate the instruction in the delay slot |
333 | * - fetches the instruction from PC+2 | 327 | * - fetches the instruction from PC+2 |
334 | */ | 328 | */ |
335 | static inline int handle_unaligned_delayslot(struct pt_regs *regs) | 329 | static inline int handle_delayslot(struct pt_regs *regs, |
330 | opcode_t old_instruction, | ||
331 | struct mem_access *ma) | ||
336 | { | 332 | { |
337 | u16 instruction; | 333 | opcode_t instruction; |
334 | void *addr = (void *)(regs->pc + instruction_size(old_instruction)); | ||
338 | 335 | ||
339 | if (copy_from_user(&instruction, (u16 *)(regs->pc+2), 2)) { | 336 | if (copy_from_user(&instruction, addr, sizeof(instruction))) { |
340 | /* the instruction-fetch faulted */ | 337 | /* the instruction-fetch faulted */ |
341 | if (user_mode(regs)) | 338 | if (user_mode(regs)) |
342 | return -EFAULT; | 339 | return -EFAULT; |
@@ -346,7 +343,7 @@ static inline int handle_unaligned_delayslot(struct pt_regs *regs) | |||
346 | regs, 0); | 343 | regs, 0); |
347 | } | 344 | } |
348 | 345 | ||
349 | return handle_unaligned_ins(instruction,regs); | 346 | return handle_unaligned_ins(instruction, regs, ma); |
350 | } | 347 | } |
351 | 348 | ||
352 | /* | 349 | /* |
@@ -369,10 +366,11 @@ static inline int handle_unaligned_delayslot(struct pt_regs *regs) | |||
369 | * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit | 366 | * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit |
370 | * opcodes.. | 367 | * opcodes.. |
371 | */ | 368 | */ |
372 | #ifndef CONFIG_CPU_SH2A | 369 | |
373 | static int handle_unaligned_notify_count = 10; | 370 | static int handle_unaligned_notify_count = 10; |
374 | 371 | ||
375 | static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | 372 | int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs, |
373 | struct mem_access *ma) | ||
376 | { | 374 | { |
377 | u_int rm; | 375 | u_int rm; |
378 | int ret, index; | 376 | int ret, index; |
@@ -387,7 +385,7 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
387 | printk(KERN_NOTICE "Fixing up unaligned userspace access " | 385 | printk(KERN_NOTICE "Fixing up unaligned userspace access " |
388 | "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", | 386 | "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", |
389 | current->comm, task_pid_nr(current), | 387 | current->comm, task_pid_nr(current), |
390 | (u16 *)regs->pc, instruction); | 388 | (void *)regs->pc, instruction); |
391 | } | 389 | } |
392 | 390 | ||
393 | ret = -EFAULT; | 391 | ret = -EFAULT; |
@@ -395,19 +393,19 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
395 | case 0x0000: | 393 | case 0x0000: |
396 | if (instruction==0x000B) { | 394 | if (instruction==0x000B) { |
397 | /* rts */ | 395 | /* rts */ |
398 | ret = handle_unaligned_delayslot(regs); | 396 | ret = handle_delayslot(regs, instruction, ma); |
399 | if (ret==0) | 397 | if (ret==0) |
400 | regs->pc = regs->pr; | 398 | regs->pc = regs->pr; |
401 | } | 399 | } |
402 | else if ((instruction&0x00FF)==0x0023) { | 400 | else if ((instruction&0x00FF)==0x0023) { |
403 | /* braf @Rm */ | 401 | /* braf @Rm */ |
404 | ret = handle_unaligned_delayslot(regs); | 402 | ret = handle_delayslot(regs, instruction, ma); |
405 | if (ret==0) | 403 | if (ret==0) |
406 | regs->pc += rm + 4; | 404 | regs->pc += rm + 4; |
407 | } | 405 | } |
408 | else if ((instruction&0x00FF)==0x0003) { | 406 | else if ((instruction&0x00FF)==0x0003) { |
409 | /* bsrf @Rm */ | 407 | /* bsrf @Rm */ |
410 | ret = handle_unaligned_delayslot(regs); | 408 | ret = handle_delayslot(regs, instruction, ma); |
411 | if (ret==0) { | 409 | if (ret==0) { |
412 | regs->pr = regs->pc + 4; | 410 | regs->pr = regs->pc + 4; |
413 | regs->pc += rm + 4; | 411 | regs->pc += rm + 4; |
@@ -428,13 +426,13 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
428 | case 0x4000: | 426 | case 0x4000: |
429 | if ((instruction&0x00FF)==0x002B) { | 427 | if ((instruction&0x00FF)==0x002B) { |
430 | /* jmp @Rm */ | 428 | /* jmp @Rm */ |
431 | ret = handle_unaligned_delayslot(regs); | 429 | ret = handle_delayslot(regs, instruction, ma); |
432 | if (ret==0) | 430 | if (ret==0) |
433 | regs->pc = rm; | 431 | regs->pc = rm; |
434 | } | 432 | } |
435 | else if ((instruction&0x00FF)==0x000B) { | 433 | else if ((instruction&0x00FF)==0x000B) { |
436 | /* jsr @Rm */ | 434 | /* jsr @Rm */ |
437 | ret = handle_unaligned_delayslot(regs); | 435 | ret = handle_delayslot(regs, instruction, ma); |
438 | if (ret==0) { | 436 | if (ret==0) { |
439 | regs->pr = regs->pc + 4; | 437 | regs->pr = regs->pc + 4; |
440 | regs->pc = rm; | 438 | regs->pc = rm; |
@@ -461,7 +459,7 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
461 | case 0x0B00: /* bf lab - no delayslot*/ | 459 | case 0x0B00: /* bf lab - no delayslot*/ |
462 | break; | 460 | break; |
463 | case 0x0F00: /* bf/s lab */ | 461 | case 0x0F00: /* bf/s lab */ |
464 | ret = handle_unaligned_delayslot(regs); | 462 | ret = handle_delayslot(regs, instruction, ma); |
465 | if (ret==0) { | 463 | if (ret==0) { |
466 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB) | 464 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB) |
467 | if ((regs->sr & 0x00000001) != 0) | 465 | if ((regs->sr & 0x00000001) != 0) |
@@ -474,7 +472,7 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
474 | case 0x0900: /* bt lab - no delayslot */ | 472 | case 0x0900: /* bt lab - no delayslot */ |
475 | break; | 473 | break; |
476 | case 0x0D00: /* bt/s lab */ | 474 | case 0x0D00: /* bt/s lab */ |
477 | ret = handle_unaligned_delayslot(regs); | 475 | ret = handle_delayslot(regs, instruction, ma); |
478 | if (ret==0) { | 476 | if (ret==0) { |
479 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB) | 477 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB) |
480 | if ((regs->sr & 0x00000001) == 0) | 478 | if ((regs->sr & 0x00000001) == 0) |
@@ -488,13 +486,13 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
488 | break; | 486 | break; |
489 | 487 | ||
490 | case 0xA000: /* bra label */ | 488 | case 0xA000: /* bra label */ |
491 | ret = handle_unaligned_delayslot(regs); | 489 | ret = handle_delayslot(regs, instruction, ma); |
492 | if (ret==0) | 490 | if (ret==0) |
493 | regs->pc += SH_PC_12BIT_OFFSET(instruction); | 491 | regs->pc += SH_PC_12BIT_OFFSET(instruction); |
494 | break; | 492 | break; |
495 | 493 | ||
496 | case 0xB000: /* bsr label */ | 494 | case 0xB000: /* bsr label */ |
497 | ret = handle_unaligned_delayslot(regs); | 495 | ret = handle_delayslot(regs, instruction, ma); |
498 | if (ret==0) { | 496 | if (ret==0) { |
499 | regs->pr = regs->pc + 4; | 497 | regs->pr = regs->pc + 4; |
500 | regs->pc += SH_PC_12BIT_OFFSET(instruction); | 498 | regs->pc += SH_PC_12BIT_OFFSET(instruction); |
@@ -505,12 +503,11 @@ static int handle_unaligned_access(u16 instruction, struct pt_regs *regs) | |||
505 | 503 | ||
506 | /* handle non-delay-slot instruction */ | 504 | /* handle non-delay-slot instruction */ |
507 | simple: | 505 | simple: |
508 | ret = handle_unaligned_ins(instruction,regs); | 506 | ret = handle_unaligned_ins(instruction, regs, ma); |
509 | if (ret==0) | 507 | if (ret==0) |
510 | regs->pc += instruction_size(instruction); | 508 | regs->pc += instruction_size(instruction); |
511 | return ret; | 509 | return ret; |
512 | } | 510 | } |
513 | #endif /* CONFIG_CPU_SH2A */ | ||
514 | 511 | ||
515 | #ifdef CONFIG_CPU_HAS_SR_RB | 512 | #ifdef CONFIG_CPU_HAS_SR_RB |
516 | #define lookup_exception_vector(x) \ | 513 | #define lookup_exception_vector(x) \ |
@@ -538,10 +535,8 @@ asmlinkage void do_address_error(struct pt_regs *regs, | |||
538 | unsigned long error_code = 0; | 535 | unsigned long error_code = 0; |
539 | mm_segment_t oldfs; | 536 | mm_segment_t oldfs; |
540 | siginfo_t info; | 537 | siginfo_t info; |
541 | #ifndef CONFIG_CPU_SH2A | 538 | opcode_t instruction; |
542 | u16 instruction; | ||
543 | int tmp; | 539 | int tmp; |
544 | #endif | ||
545 | 540 | ||
546 | /* Intentional ifdef */ | 541 | /* Intentional ifdef */ |
547 | #ifdef CONFIG_CPU_HAS_SR_RB | 542 | #ifdef CONFIG_CPU_HAS_SR_RB |
@@ -561,9 +556,9 @@ asmlinkage void do_address_error(struct pt_regs *regs, | |||
561 | goto uspace_segv; | 556 | goto uspace_segv; |
562 | } | 557 | } |
563 | 558 | ||
564 | #ifndef CONFIG_CPU_SH2A | ||
565 | set_fs(USER_DS); | 559 | set_fs(USER_DS); |
566 | if (copy_from_user(&instruction, (u16 *)(regs->pc), 2)) { | 560 | if (copy_from_user(&instruction, (void *)(regs->pc), |
561 | sizeof(instruction))) { | ||
567 | /* Argh. Fault on the instruction itself. | 562 | /* Argh. Fault on the instruction itself. |
568 | This should never happen non-SMP | 563 | This should never happen non-SMP |
569 | */ | 564 | */ |
@@ -571,13 +566,12 @@ asmlinkage void do_address_error(struct pt_regs *regs, | |||
571 | goto uspace_segv; | 566 | goto uspace_segv; |
572 | } | 567 | } |
573 | 568 | ||
574 | tmp = handle_unaligned_access(instruction, regs); | 569 | tmp = handle_unaligned_access(instruction, regs, |
570 | &user_mem_access); | ||
575 | set_fs(oldfs); | 571 | set_fs(oldfs); |
576 | 572 | ||
577 | if (tmp==0) | 573 | if (tmp==0) |
578 | return; /* sorted */ | 574 | return; /* sorted */ |
579 | #endif | ||
580 | |||
581 | uspace_segv: | 575 | uspace_segv: |
582 | printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned " | 576 | printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned " |
583 | "access (PC %lx PR %lx)\n", current->comm, regs->pc, | 577 | "access (PC %lx PR %lx)\n", current->comm, regs->pc, |
@@ -592,9 +586,9 @@ uspace_segv: | |||
592 | if (regs->pc & 1) | 586 | if (regs->pc & 1) |
593 | die("unaligned program counter", regs, error_code); | 587 | die("unaligned program counter", regs, error_code); |
594 | 588 | ||
595 | #ifndef CONFIG_CPU_SH2A | ||
596 | set_fs(KERNEL_DS); | 589 | set_fs(KERNEL_DS); |
597 | if (copy_from_user(&instruction, (u16 *)(regs->pc), 2)) { | 590 | if (copy_from_user(&instruction, (void *)(regs->pc), |
591 | sizeof(instruction))) { | ||
598 | /* Argh. Fault on the instruction itself. | 592 | /* Argh. Fault on the instruction itself. |
599 | This should never happen non-SMP | 593 | This should never happen non-SMP |
600 | */ | 594 | */ |
@@ -602,14 +596,8 @@ uspace_segv: | |||
602 | die("insn faulting in do_address_error", regs, 0); | 596 | die("insn faulting in do_address_error", regs, 0); |
603 | } | 597 | } |
604 | 598 | ||
605 | handle_unaligned_access(instruction, regs); | 599 | handle_unaligned_access(instruction, regs, &user_mem_access); |
606 | set_fs(oldfs); | 600 | set_fs(oldfs); |
607 | #else | ||
608 | printk(KERN_NOTICE "Killing process \"%s\" due to unaligned " | ||
609 | "access\n", current->comm); | ||
610 | |||
611 | force_sig(SIGSEGV, current); | ||
612 | #endif | ||
613 | } | 601 | } |
614 | } | 602 | } |
615 | 603 | ||
diff --git a/arch/sh/kernel/traps_64.c b/arch/sh/kernel/traps_64.c index c0b3c6f6edb5..a55ac81d795b 100644 --- a/arch/sh/kernel/traps_64.c +++ b/arch/sh/kernel/traps_64.c | |||
@@ -630,7 +630,7 @@ static int misaligned_fpu_load(struct pt_regs *regs, | |||
630 | current->thread.fpu.hard.fp_regs[destreg] = buflo; | 630 | current->thread.fpu.hard.fp_regs[destreg] = buflo; |
631 | current->thread.fpu.hard.fp_regs[destreg+1] = bufhi; | 631 | current->thread.fpu.hard.fp_regs[destreg+1] = bufhi; |
632 | } else { | 632 | } else { |
633 | #if defined(CONFIG_LITTLE_ENDIAN) | 633 | #if defined(CONFIG_CPU_LITTLE_ENDIAN) |
634 | current->thread.fpu.hard.fp_regs[destreg] = bufhi; | 634 | current->thread.fpu.hard.fp_regs[destreg] = bufhi; |
635 | current->thread.fpu.hard.fp_regs[destreg+1] = buflo; | 635 | current->thread.fpu.hard.fp_regs[destreg+1] = buflo; |
636 | #else | 636 | #else |
@@ -700,7 +700,7 @@ static int misaligned_fpu_store(struct pt_regs *regs, | |||
700 | buflo = current->thread.fpu.hard.fp_regs[srcreg]; | 700 | buflo = current->thread.fpu.hard.fp_regs[srcreg]; |
701 | bufhi = current->thread.fpu.hard.fp_regs[srcreg+1]; | 701 | bufhi = current->thread.fpu.hard.fp_regs[srcreg+1]; |
702 | } else { | 702 | } else { |
703 | #if defined(CONFIG_LITTLE_ENDIAN) | 703 | #if defined(CONFIG_CPU_LITTLE_ENDIAN) |
704 | bufhi = current->thread.fpu.hard.fp_regs[srcreg]; | 704 | bufhi = current->thread.fpu.hard.fp_regs[srcreg]; |
705 | buflo = current->thread.fpu.hard.fp_regs[srcreg+1]; | 705 | buflo = current->thread.fpu.hard.fp_regs[srcreg+1]; |
706 | #else | 706 | #else |
diff --git a/arch/sh/kernel/vmlinux_64.lds.S b/arch/sh/kernel/vmlinux_64.lds.S index 3f1bd6392bb3..d1e177009a41 100644 --- a/arch/sh/kernel/vmlinux_64.lds.S +++ b/arch/sh/kernel/vmlinux_64.lds.S | |||
@@ -51,7 +51,7 @@ SECTIONS | |||
51 | KPROBES_TEXT | 51 | KPROBES_TEXT |
52 | *(.fixup) | 52 | *(.fixup) |
53 | *(.gnu.warning) | 53 | *(.gnu.warning) |
54 | #ifdef CONFIG_LITTLE_ENDIAN | 54 | #ifdef CONFIG_CPU_LITTLE_ENDIAN |
55 | } = 0x6ff0fff0 | 55 | } = 0x6ff0fff0 |
56 | #else | 56 | #else |
57 | } = 0xf0fff06f | 57 | } = 0xf0fff06f |
diff --git a/arch/sh/mm/cache-sh5.c b/arch/sh/mm/cache-sh5.c index 4617e3aeee73..3877321fcede 100644 --- a/arch/sh/mm/cache-sh5.c +++ b/arch/sh/mm/cache-sh5.c | |||
@@ -1,10 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | * arch/sh/mm/cache-sh5.c | 2 | * arch/sh/mm/cache-sh5.c |
3 | * | 3 | * |
4 | * Original version Copyright (C) 2000, 2001 Paolo Alberelli | 4 | * Copyright (C) 2000, 2001 Paolo Alberelli |
5 | * Second version Copyright (C) benedict.gaster@superh.com 2002 | 5 | * Copyright (C) 2002 Benedict Gaster |
6 | * Third version Copyright Richard.Curnow@superh.com 2003 | 6 | * Copyright (C) 2003 Richard Curnow |
7 | * Hacks to third version Copyright (C) 2003 Paul Mundt | 7 | * Copyright (C) 2003 - 2008 Paul Mundt |
8 | * | 8 | * |
9 | * This file is subject to the terms and conditions of the GNU General Public | 9 | * This file is subject to the terms and conditions of the GNU General Public |
10 | * License. See the file "COPYING" in the main directory of this archive | 10 | * License. See the file "COPYING" in the main directory of this archive |
@@ -13,101 +13,20 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/mman.h> | 14 | #include <linux/mman.h> |
15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
16 | #include <linux/threads.h> | 16 | #include <asm/tlb.h> |
17 | #include <asm/page.h> | ||
18 | #include <asm/pgtable.h> | ||
19 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
20 | #include <asm/cache.h> | 18 | #include <asm/cache.h> |
21 | #include <asm/tlb.h> | 19 | #include <asm/pgalloc.h> |
22 | #include <asm/io.h> | ||
23 | #include <asm/uaccess.h> | 20 | #include <asm/uaccess.h> |
24 | #include <asm/mmu_context.h> | 21 | #include <asm/mmu_context.h> |
25 | #include <asm/pgalloc.h> /* for flush_itlb_range */ | ||
26 | |||
27 | #include <linux/proc_fs.h> | ||
28 | |||
29 | /* This function is in entry.S */ | ||
30 | extern unsigned long switch_and_save_asid(unsigned long new_asid); | ||
31 | 22 | ||
32 | /* Wired TLB entry for the D-cache */ | 23 | /* Wired TLB entry for the D-cache */ |
33 | static unsigned long long dtlb_cache_slot; | 24 | static unsigned long long dtlb_cache_slot; |
34 | 25 | ||
35 | /** | 26 | void __init p3_cache_init(void) |
36 | * sh64_cache_init() | ||
37 | * | ||
38 | * This is pretty much just a straightforward clone of the SH | ||
39 | * detect_cpu_and_cache_system(). | ||
40 | * | ||
41 | * This function is responsible for setting up all of the cache | ||
42 | * info dynamically as well as taking care of CPU probing and | ||
43 | * setting up the relevant subtype data. | ||
44 | * | ||
45 | * FIXME: For the time being, we only really support the SH5-101 | ||
46 | * out of the box, and don't support dynamic probing for things | ||
47 | * like the SH5-103 or even cut2 of the SH5-101. Implement this | ||
48 | * later! | ||
49 | */ | ||
50 | int __init sh64_cache_init(void) | ||
51 | { | 27 | { |
52 | /* | 28 | /* Reserve a slot for dcache colouring in the DTLB */ |
53 | * First, setup some sane values for the I-cache. | 29 | dtlb_cache_slot = sh64_get_wired_dtlb_entry(); |
54 | */ | ||
55 | cpu_data->icache.ways = 4; | ||
56 | cpu_data->icache.sets = 256; | ||
57 | cpu_data->icache.linesz = L1_CACHE_BYTES; | ||
58 | |||
59 | /* | ||
60 | * FIXME: This can probably be cleaned up a bit as well.. for example, | ||
61 | * do we really need the way shift _and_ the way_step_shift ?? Judging | ||
62 | * by the existing code, I would guess no.. is there any valid reason | ||
63 | * why we need to be tracking this around? | ||
64 | */ | ||
65 | cpu_data->icache.way_shift = 13; | ||
66 | cpu_data->icache.entry_shift = 5; | ||
67 | cpu_data->icache.set_shift = 4; | ||
68 | cpu_data->icache.way_step_shift = 16; | ||
69 | cpu_data->icache.asid_shift = 2; | ||
70 | |||
71 | /* | ||
72 | * way offset = cache size / associativity, so just don't factor in | ||
73 | * associativity in the first place.. | ||
74 | */ | ||
75 | cpu_data->icache.way_ofs = cpu_data->icache.sets * | ||
76 | cpu_data->icache.linesz; | ||
77 | |||
78 | cpu_data->icache.asid_mask = 0x3fc; | ||
79 | cpu_data->icache.idx_mask = 0x1fe0; | ||
80 | cpu_data->icache.epn_mask = 0xffffe000; | ||
81 | cpu_data->icache.flags = 0; | ||
82 | |||
83 | /* | ||
84 | * Next, setup some sane values for the D-cache. | ||
85 | * | ||
86 | * On the SH5, these are pretty consistent with the I-cache settings, | ||
87 | * so we just copy over the existing definitions.. these can be fixed | ||
88 | * up later, especially if we add runtime CPU probing. | ||
89 | * | ||
90 | * Though in the meantime it saves us from having to duplicate all of | ||
91 | * the above definitions.. | ||
92 | */ | ||
93 | cpu_data->dcache = cpu_data->icache; | ||
94 | |||
95 | /* | ||
96 | * Setup any cache-related flags here | ||
97 | */ | ||
98 | #if defined(CONFIG_DCACHE_WRITE_THROUGH) | ||
99 | set_bit(SH_CACHE_MODE_WT, &(cpu_data->dcache.flags)); | ||
100 | #elif defined(CONFIG_DCACHE_WRITE_BACK) | ||
101 | set_bit(SH_CACHE_MODE_WB, &(cpu_data->dcache.flags)); | ||
102 | #endif | ||
103 | |||
104 | /* | ||
105 | * We also need to reserve a slot for the D-cache in the DTLB, so we | ||
106 | * do this now .. | ||
107 | */ | ||
108 | dtlb_cache_slot = sh64_get_wired_dtlb_entry(); | ||
109 | |||
110 | return 0; | ||
111 | } | 30 | } |
112 | 31 | ||
113 | #ifdef CONFIG_DCACHE_DISABLED | 32 | #ifdef CONFIG_DCACHE_DISABLED |
@@ -116,73 +35,48 @@ int __init sh64_cache_init(void) | |||
116 | #define sh64_dcache_purge_user_range(mm, start, end) do { } while (0) | 35 | #define sh64_dcache_purge_user_range(mm, start, end) do { } while (0) |
117 | #define sh64_dcache_purge_phy_page(paddr) do { } while (0) | 36 | #define sh64_dcache_purge_phy_page(paddr) do { } while (0) |
118 | #define sh64_dcache_purge_virt_page(mm, eaddr) do { } while (0) | 37 | #define sh64_dcache_purge_virt_page(mm, eaddr) do { } while (0) |
119 | #define sh64_dcache_purge_kernel_range(start, end) do { } while (0) | ||
120 | #define sh64_dcache_wback_current_user_range(start, end) do { } while (0) | ||
121 | #endif | 38 | #endif |
122 | 39 | ||
123 | /*##########################################################################*/ | 40 | /* |
124 | 41 | * The following group of functions deal with mapping and unmapping a | |
125 | /* From here onwards, a rewrite of the implementation, | 42 | * temporary page into a DTLB slot that has been set aside for exclusive |
126 | by Richard.Curnow@superh.com. | 43 | * use. |
127 | 44 | */ | |
128 | The major changes in this compared to the old version are; | 45 | static inline void |
129 | 1. use more selective purging through OCBP instead of using ALLOCO to purge | 46 | sh64_setup_dtlb_cache_slot(unsigned long eaddr, unsigned long asid, |
130 | by natural replacement. This avoids purging out unrelated cache lines | 47 | unsigned long paddr) |
131 | that happen to be in the same set. | ||
132 | 2. exploit the APIs copy_user_page and clear_user_page better | ||
133 | 3. be more selective about I-cache purging, in particular use invalidate_all | ||
134 | more sparingly. | ||
135 | |||
136 | */ | ||
137 | |||
138 | /*########################################################################## | ||
139 | SUPPORT FUNCTIONS | ||
140 | ##########################################################################*/ | ||
141 | |||
142 | /****************************************************************************/ | ||
143 | /* The following group of functions deal with mapping and unmapping a temporary | ||
144 | page into the DTLB slot that have been set aside for our exclusive use. */ | ||
145 | /* In order to accomplish this, we use the generic interface for adding and | ||
146 | removing a wired slot entry as defined in arch/sh/mm/tlb-sh5.c */ | ||
147 | /****************************************************************************/ | ||
148 | |||
149 | static unsigned long slot_own_flags; | ||
150 | |||
151 | static inline void sh64_setup_dtlb_cache_slot(unsigned long eaddr, unsigned long asid, unsigned long paddr) | ||
152 | { | 48 | { |
153 | local_irq_save(slot_own_flags); | 49 | local_irq_disable(); |
154 | sh64_setup_tlb_slot(dtlb_cache_slot, eaddr, asid, paddr); | 50 | sh64_setup_tlb_slot(dtlb_cache_slot, eaddr, asid, paddr); |
155 | } | 51 | } |
156 | 52 | ||
157 | static inline void sh64_teardown_dtlb_cache_slot(void) | 53 | static inline void sh64_teardown_dtlb_cache_slot(void) |
158 | { | 54 | { |
159 | sh64_teardown_tlb_slot(dtlb_cache_slot); | 55 | sh64_teardown_tlb_slot(dtlb_cache_slot); |
160 | local_irq_restore(slot_own_flags); | 56 | local_irq_enable(); |
161 | } | 57 | } |
162 | 58 | ||
163 | /****************************************************************************/ | ||
164 | |||
165 | #ifndef CONFIG_ICACHE_DISABLED | 59 | #ifndef CONFIG_ICACHE_DISABLED |
166 | 60 | static inline void sh64_icache_inv_all(void) | |
167 | static void __inline__ sh64_icache_inv_all(void) | ||
168 | { | 61 | { |
169 | unsigned long long addr, flag, data; | 62 | unsigned long long addr, flag, data; |
170 | unsigned int flags; | 63 | unsigned int flags; |
171 | 64 | ||
172 | addr=ICCR0; | 65 | addr = ICCR0; |
173 | flag=ICCR0_ICI; | 66 | flag = ICCR0_ICI; |
174 | data=0; | 67 | data = 0; |
175 | 68 | ||
176 | /* Make this a critical section for safety (probably not strictly necessary.) */ | 69 | /* Make this a critical section for safety (probably not strictly necessary.) */ |
177 | local_irq_save(flags); | 70 | local_irq_save(flags); |
178 | 71 | ||
179 | /* Without %1 it gets unexplicably wrong */ | 72 | /* Without %1 it gets unexplicably wrong */ |
180 | asm volatile("getcfg %3, 0, %0\n\t" | 73 | __asm__ __volatile__ ( |
181 | "or %0, %2, %0\n\t" | 74 | "getcfg %3, 0, %0\n\t" |
182 | "putcfg %3, 0, %0\n\t" | 75 | "or %0, %2, %0\n\t" |
183 | "synci" | 76 | "putcfg %3, 0, %0\n\t" |
184 | : "=&r" (data) | 77 | "synci" |
185 | : "0" (data), "r" (flag), "r" (addr)); | 78 | : "=&r" (data) |
79 | : "0" (data), "r" (flag), "r" (addr)); | ||
186 | 80 | ||
187 | local_irq_restore(flags); | 81 | local_irq_restore(flags); |
188 | } | 82 | } |
@@ -193,20 +87,12 @@ static void sh64_icache_inv_kernel_range(unsigned long start, unsigned long end) | |||
193 | * the addresses lie in the kernel superpage. */ | 87 | * the addresses lie in the kernel superpage. */ |
194 | 88 | ||
195 | unsigned long long ullend, addr, aligned_start; | 89 | unsigned long long ullend, addr, aligned_start; |
196 | #if (NEFF == 32) | ||
197 | aligned_start = (unsigned long long)(signed long long)(signed long) start; | 90 | aligned_start = (unsigned long long)(signed long long)(signed long) start; |
198 | #else | 91 | addr = L1_CACHE_ALIGN(aligned_start); |
199 | #error "NEFF != 32" | ||
200 | #endif | ||
201 | aligned_start &= L1_CACHE_ALIGN_MASK; | ||
202 | addr = aligned_start; | ||
203 | #if (NEFF == 32) | ||
204 | ullend = (unsigned long long) (signed long long) (signed long) end; | 92 | ullend = (unsigned long long) (signed long long) (signed long) end; |
205 | #else | 93 | |
206 | #error "NEFF != 32" | ||
207 | #endif | ||
208 | while (addr <= ullend) { | 94 | while (addr <= ullend) { |
209 | asm __volatile__ ("icbi %0, 0" : : "r" (addr)); | 95 | __asm__ __volatile__ ("icbi %0, 0" : : "r" (addr)); |
210 | addr += L1_CACHE_BYTES; | 96 | addr += L1_CACHE_BYTES; |
211 | } | 97 | } |
212 | } | 98 | } |
@@ -215,7 +101,7 @@ static void sh64_icache_inv_user_page(struct vm_area_struct *vma, unsigned long | |||
215 | { | 101 | { |
216 | /* If we get called, we know that vma->vm_flags contains VM_EXEC. | 102 | /* If we get called, we know that vma->vm_flags contains VM_EXEC. |
217 | Also, eaddr is page-aligned. */ | 103 | Also, eaddr is page-aligned. */ |
218 | 104 | unsigned int cpu = smp_processor_id(); | |
219 | unsigned long long addr, end_addr; | 105 | unsigned long long addr, end_addr; |
220 | unsigned long flags = 0; | 106 | unsigned long flags = 0; |
221 | unsigned long running_asid, vma_asid; | 107 | unsigned long running_asid, vma_asid; |
@@ -237,17 +123,17 @@ static void sh64_icache_inv_user_page(struct vm_area_struct *vma, unsigned long | |||
237 | */ | 123 | */ |
238 | 124 | ||
239 | running_asid = get_asid(); | 125 | running_asid = get_asid(); |
240 | vma_asid = (vma->vm_mm->context & MMU_CONTEXT_ASID_MASK); | 126 | vma_asid = cpu_asid(cpu, vma->vm_mm); |
241 | if (running_asid != vma_asid) { | 127 | if (running_asid != vma_asid) { |
242 | local_irq_save(flags); | 128 | local_irq_save(flags); |
243 | switch_and_save_asid(vma_asid); | 129 | switch_and_save_asid(vma_asid); |
244 | } | 130 | } |
245 | while (addr < end_addr) { | 131 | while (addr < end_addr) { |
246 | /* Worth unrolling a little */ | 132 | /* Worth unrolling a little */ |
247 | asm __volatile__("icbi %0, 0" : : "r" (addr)); | 133 | __asm__ __volatile__("icbi %0, 0" : : "r" (addr)); |
248 | asm __volatile__("icbi %0, 32" : : "r" (addr)); | 134 | __asm__ __volatile__("icbi %0, 32" : : "r" (addr)); |
249 | asm __volatile__("icbi %0, 64" : : "r" (addr)); | 135 | __asm__ __volatile__("icbi %0, 64" : : "r" (addr)); |
250 | asm __volatile__("icbi %0, 96" : : "r" (addr)); | 136 | __asm__ __volatile__("icbi %0, 96" : : "r" (addr)); |
251 | addr += 128; | 137 | addr += 128; |
252 | } | 138 | } |
253 | if (running_asid != vma_asid) { | 139 | if (running_asid != vma_asid) { |
@@ -256,8 +142,6 @@ static void sh64_icache_inv_user_page(struct vm_area_struct *vma, unsigned long | |||
256 | } | 142 | } |
257 | } | 143 | } |
258 | 144 | ||
259 | /****************************************************************************/ | ||
260 | |||
261 | static void sh64_icache_inv_user_page_range(struct mm_struct *mm, | 145 | static void sh64_icache_inv_user_page_range(struct mm_struct *mm, |
262 | unsigned long start, unsigned long end) | 146 | unsigned long start, unsigned long end) |
263 | { | 147 | { |
@@ -275,10 +159,10 @@ static void sh64_icache_inv_user_page_range(struct mm_struct *mm, | |||
275 | possible with the D-cache. Just assume 64 for now as a working | 159 | possible with the D-cache. Just assume 64 for now as a working |
276 | figure. | 160 | figure. |
277 | */ | 161 | */ |
278 | |||
279 | int n_pages; | 162 | int n_pages; |
280 | 163 | ||
281 | if (!mm) return; | 164 | if (!mm) |
165 | return; | ||
282 | 166 | ||
283 | n_pages = ((end - start) >> PAGE_SHIFT); | 167 | n_pages = ((end - start) >> PAGE_SHIFT); |
284 | if (n_pages >= 64) { | 168 | if (n_pages >= 64) { |
@@ -290,7 +174,7 @@ static void sh64_icache_inv_user_page_range(struct mm_struct *mm, | |||
290 | unsigned long mm_asid, current_asid; | 174 | unsigned long mm_asid, current_asid; |
291 | unsigned long long flags = 0ULL; | 175 | unsigned long long flags = 0ULL; |
292 | 176 | ||
293 | mm_asid = mm->context & MMU_CONTEXT_ASID_MASK; | 177 | mm_asid = cpu_asid(smp_processor_id(), mm); |
294 | current_asid = get_asid(); | 178 | current_asid = get_asid(); |
295 | 179 | ||
296 | if (mm_asid != current_asid) { | 180 | if (mm_asid != current_asid) { |
@@ -322,6 +206,7 @@ static void sh64_icache_inv_user_page_range(struct mm_struct *mm, | |||
322 | } | 206 | } |
323 | aligned_start = vma->vm_end; /* Skip to start of next region */ | 207 | aligned_start = vma->vm_end; /* Skip to start of next region */ |
324 | } | 208 | } |
209 | |||
325 | if (mm_asid != current_asid) { | 210 | if (mm_asid != current_asid) { |
326 | switch_and_save_asid(current_asid); | 211 | switch_and_save_asid(current_asid); |
327 | local_irq_restore(flags); | 212 | local_irq_restore(flags); |
@@ -329,47 +214,46 @@ static void sh64_icache_inv_user_page_range(struct mm_struct *mm, | |||
329 | } | 214 | } |
330 | } | 215 | } |
331 | 216 | ||
217 | /* | ||
218 | * Invalidate a small range of user context I-cache, not necessarily page | ||
219 | * (or even cache-line) aligned. | ||
220 | * | ||
221 | * Since this is used inside ptrace, the ASID in the mm context typically | ||
222 | * won't match current_asid. We'll have to switch ASID to do this. For | ||
223 | * safety, and given that the range will be small, do all this under cli. | ||
224 | * | ||
225 | * Note, there is a hazard that the ASID in mm->context is no longer | ||
226 | * actually associated with mm, i.e. if the mm->context has started a new | ||
227 | * cycle since mm was last active. However, this is just a performance | ||
228 | * issue: all that happens is that we invalidate lines belonging to | ||
229 | * another mm, so the owning process has to refill them when that mm goes | ||
230 | * live again. mm itself can't have any cache entries because there will | ||
231 | * have been a flush_cache_all when the new mm->context cycle started. | ||
232 | */ | ||
332 | static void sh64_icache_inv_user_small_range(struct mm_struct *mm, | 233 | static void sh64_icache_inv_user_small_range(struct mm_struct *mm, |
333 | unsigned long start, int len) | 234 | unsigned long start, int len) |
334 | { | 235 | { |
335 | |||
336 | /* Invalidate a small range of user context I-cache, not necessarily | ||
337 | page (or even cache-line) aligned. */ | ||
338 | |||
339 | unsigned long long eaddr = start; | 236 | unsigned long long eaddr = start; |
340 | unsigned long long eaddr_end = start + len; | 237 | unsigned long long eaddr_end = start + len; |
341 | unsigned long current_asid, mm_asid; | 238 | unsigned long current_asid, mm_asid; |
342 | unsigned long long flags; | 239 | unsigned long long flags; |
343 | unsigned long long epage_start; | 240 | unsigned long long epage_start; |
344 | 241 | ||
345 | /* Since this is used inside ptrace, the ASID in the mm context | 242 | /* |
346 | typically won't match current_asid. We'll have to switch ASID to do | 243 | * Align to start of cache line. Otherwise, suppose len==8 and |
347 | this. For safety, and given that the range will be small, do all | 244 | * start was at 32N+28 : the last 4 bytes wouldn't get invalidated. |
348 | this under cli. | 245 | */ |
349 | 246 | eaddr = L1_CACHE_ALIGN(start); | |
350 | Note, there is a hazard that the ASID in mm->context is no longer | ||
351 | actually associated with mm, i.e. if the mm->context has started a | ||
352 | new cycle since mm was last active. However, this is just a | ||
353 | performance issue: all that happens is that we invalidate lines | ||
354 | belonging to another mm, so the owning process has to refill them | ||
355 | when that mm goes live again. mm itself can't have any cache | ||
356 | entries because there will have been a flush_cache_all when the new | ||
357 | mm->context cycle started. */ | ||
358 | |||
359 | /* Align to start of cache line. Otherwise, suppose len==8 and start | ||
360 | was at 32N+28 : the last 4 bytes wouldn't get invalidated. */ | ||
361 | eaddr = start & L1_CACHE_ALIGN_MASK; | ||
362 | eaddr_end = start + len; | 247 | eaddr_end = start + len; |
363 | 248 | ||
249 | mm_asid = cpu_asid(smp_processor_id(), mm); | ||
364 | local_irq_save(flags); | 250 | local_irq_save(flags); |
365 | mm_asid = mm->context & MMU_CONTEXT_ASID_MASK; | ||
366 | current_asid = switch_and_save_asid(mm_asid); | 251 | current_asid = switch_and_save_asid(mm_asid); |
367 | 252 | ||
368 | epage_start = eaddr & PAGE_MASK; | 253 | epage_start = eaddr & PAGE_MASK; |
369 | 254 | ||
370 | while (eaddr < eaddr_end) | 255 | while (eaddr < eaddr_end) { |
371 | { | 256 | __asm__ __volatile__("icbi %0, 0" : : "r" (eaddr)); |
372 | asm __volatile__("icbi %0, 0" : : "r" (eaddr)); | ||
373 | eaddr += L1_CACHE_BYTES; | 257 | eaddr += L1_CACHE_BYTES; |
374 | } | 258 | } |
375 | switch_and_save_asid(current_asid); | 259 | switch_and_save_asid(current_asid); |
@@ -394,30 +278,24 @@ static void sh64_icache_inv_current_user_range(unsigned long start, unsigned lon | |||
394 | been recycled since we were last active in which case we might just | 278 | been recycled since we were last active in which case we might just |
395 | invalidate another processes I-cache entries : no worries, just a | 279 | invalidate another processes I-cache entries : no worries, just a |
396 | performance drop for him. */ | 280 | performance drop for him. */ |
397 | aligned_start = start & L1_CACHE_ALIGN_MASK; | 281 | aligned_start = L1_CACHE_ALIGN(start); |
398 | addr = aligned_start; | 282 | addr = aligned_start; |
399 | while (addr < ull_end) { | 283 | while (addr < ull_end) { |
400 | asm __volatile__ ("icbi %0, 0" : : "r" (addr)); | 284 | __asm__ __volatile__ ("icbi %0, 0" : : "r" (addr)); |
401 | asm __volatile__ ("nop"); | 285 | __asm__ __volatile__ ("nop"); |
402 | asm __volatile__ ("nop"); | 286 | __asm__ __volatile__ ("nop"); |
403 | addr += L1_CACHE_BYTES; | 287 | addr += L1_CACHE_BYTES; |
404 | } | 288 | } |
405 | } | 289 | } |
406 | |||
407 | #endif /* !CONFIG_ICACHE_DISABLED */ | 290 | #endif /* !CONFIG_ICACHE_DISABLED */ |
408 | 291 | ||
409 | /****************************************************************************/ | ||
410 | |||
411 | #ifndef CONFIG_DCACHE_DISABLED | 292 | #ifndef CONFIG_DCACHE_DISABLED |
412 | |||
413 | /* Buffer used as the target of alloco instructions to purge data from cache | 293 | /* Buffer used as the target of alloco instructions to purge data from cache |
414 | sets by natural eviction. -- RPC */ | 294 | sets by natural eviction. -- RPC */ |
415 | #define DUMMY_ALLOCO_AREA_SIZE L1_CACHE_SIZE_BYTES + (1024 * 4) | 295 | #define DUMMY_ALLOCO_AREA_SIZE ((L1_CACHE_BYTES << 10) + (1024 * 4)) |
416 | static unsigned char dummy_alloco_area[DUMMY_ALLOCO_AREA_SIZE] __cacheline_aligned = { 0, }; | 296 | static unsigned char dummy_alloco_area[DUMMY_ALLOCO_AREA_SIZE] __cacheline_aligned = { 0, }; |
417 | 297 | ||
418 | /****************************************************************************/ | 298 | static void inline sh64_dcache_purge_sets(int sets_to_purge_base, int n_sets) |
419 | |||
420 | static void __inline__ sh64_dcache_purge_sets(int sets_to_purge_base, int n_sets) | ||
421 | { | 299 | { |
422 | /* Purge all ways in a particular block of sets, specified by the base | 300 | /* Purge all ways in a particular block of sets, specified by the base |
423 | set number and number of sets. Can handle wrap-around, if that's | 301 | set number and number of sets. Can handle wrap-around, if that's |
@@ -428,102 +306,86 @@ static void __inline__ sh64_dcache_purge_sets(int sets_to_purge_base, int n_sets | |||
428 | int j; | 306 | int j; |
429 | int set_offset; | 307 | int set_offset; |
430 | 308 | ||
431 | dummy_buffer_base_set = ((int)&dummy_alloco_area & cpu_data->dcache.idx_mask) >> cpu_data->dcache.entry_shift; | 309 | dummy_buffer_base_set = ((int)&dummy_alloco_area & |
310 | cpu_data->dcache.entry_mask) >> | ||
311 | cpu_data->dcache.entry_shift; | ||
432 | set_offset = sets_to_purge_base - dummy_buffer_base_set; | 312 | set_offset = sets_to_purge_base - dummy_buffer_base_set; |
433 | 313 | ||
434 | for (j=0; j<n_sets; j++, set_offset++) { | 314 | for (j = 0; j < n_sets; j++, set_offset++) { |
435 | set_offset &= (cpu_data->dcache.sets - 1); | 315 | set_offset &= (cpu_data->dcache.sets - 1); |
436 | eaddr0 = (unsigned long long)dummy_alloco_area + (set_offset << cpu_data->dcache.entry_shift); | 316 | eaddr0 = (unsigned long long)dummy_alloco_area + |
437 | 317 | (set_offset << cpu_data->dcache.entry_shift); | |
438 | /* Do one alloco which hits the required set per cache way. For | 318 | |
439 | write-back mode, this will purge the #ways resident lines. There's | 319 | /* |
440 | little point unrolling this loop because the allocos stall more if | 320 | * Do one alloco which hits the required set per cache |
441 | they're too close together. */ | 321 | * way. For write-back mode, this will purge the #ways |
442 | eaddr1 = eaddr0 + cpu_data->dcache.way_ofs * cpu_data->dcache.ways; | 322 | * resident lines. There's little point unrolling this |
443 | for (eaddr=eaddr0; eaddr<eaddr1; eaddr+=cpu_data->dcache.way_ofs) { | 323 | * loop because the allocos stall more if they're too |
444 | asm __volatile__ ("alloco %0, 0" : : "r" (eaddr)); | 324 | * close together. |
445 | asm __volatile__ ("synco"); /* TAKum03020 */ | 325 | */ |
326 | eaddr1 = eaddr0 + cpu_data->dcache.way_size * | ||
327 | cpu_data->dcache.ways; | ||
328 | |||
329 | for (eaddr = eaddr0; eaddr < eaddr1; | ||
330 | eaddr += cpu_data->dcache.way_size) { | ||
331 | __asm__ __volatile__ ("alloco %0, 0" : : "r" (eaddr)); | ||
332 | __asm__ __volatile__ ("synco"); /* TAKum03020 */ | ||
446 | } | 333 | } |
447 | 334 | ||
448 | eaddr1 = eaddr0 + cpu_data->dcache.way_ofs * cpu_data->dcache.ways; | 335 | eaddr1 = eaddr0 + cpu_data->dcache.way_size * |
449 | for (eaddr=eaddr0; eaddr<eaddr1; eaddr+=cpu_data->dcache.way_ofs) { | 336 | cpu_data->dcache.ways; |
450 | /* Load from each address. Required because alloco is a NOP if | 337 | |
451 | the cache is write-through. Write-through is a config option. */ | 338 | for (eaddr = eaddr0; eaddr < eaddr1; |
339 | eaddr += cpu_data->dcache.way_size) { | ||
340 | /* | ||
341 | * Load from each address. Required because | ||
342 | * alloco is a NOP if the cache is write-through. | ||
343 | */ | ||
452 | if (test_bit(SH_CACHE_MODE_WT, &(cpu_data->dcache.flags))) | 344 | if (test_bit(SH_CACHE_MODE_WT, &(cpu_data->dcache.flags))) |
453 | *(volatile unsigned char *)(int)eaddr; | 345 | ctrl_inb(eaddr); |
454 | } | 346 | } |
455 | } | 347 | } |
456 | 348 | ||
457 | /* Don't use OCBI to invalidate the lines. That costs cycles directly. | 349 | /* |
458 | If the dummy block is just left resident, it will naturally get | 350 | * Don't use OCBI to invalidate the lines. That costs cycles |
459 | evicted as required. */ | 351 | * directly. If the dummy block is just left resident, it will |
460 | 352 | * naturally get evicted as required. | |
461 | return; | 353 | */ |
462 | } | 354 | } |
463 | 355 | ||
464 | /****************************************************************************/ | 356 | /* |
465 | 357 | * Purge the entire contents of the dcache. The most efficient way to | |
358 | * achieve this is to use alloco instructions on a region of unused | ||
359 | * memory equal in size to the cache, thereby causing the current | ||
360 | * contents to be discarded by natural eviction. The alternative, namely | ||
361 | * reading every tag, setting up a mapping for the corresponding page and | ||
362 | * doing an OCBP for the line, would be much more expensive. | ||
363 | */ | ||
466 | static void sh64_dcache_purge_all(void) | 364 | static void sh64_dcache_purge_all(void) |
467 | { | 365 | { |
468 | /* Purge the entire contents of the dcache. The most efficient way to | ||
469 | achieve this is to use alloco instructions on a region of unused | ||
470 | memory equal in size to the cache, thereby causing the current | ||
471 | contents to be discarded by natural eviction. The alternative, | ||
472 | namely reading every tag, setting up a mapping for the corresponding | ||
473 | page and doing an OCBP for the line, would be much more expensive. | ||
474 | */ | ||
475 | 366 | ||
476 | sh64_dcache_purge_sets(0, cpu_data->dcache.sets); | 367 | sh64_dcache_purge_sets(0, cpu_data->dcache.sets); |
477 | |||
478 | return; | ||
479 | |||
480 | } | 368 | } |
481 | 369 | ||
482 | /****************************************************************************/ | ||
483 | |||
484 | static void sh64_dcache_purge_kernel_range(unsigned long start, unsigned long end) | ||
485 | { | ||
486 | /* Purge the range of addresses [start,end] from the D-cache. The | ||
487 | addresses lie in the superpage mapping. There's no harm if we | ||
488 | overpurge at either end - just a small performance loss. */ | ||
489 | unsigned long long ullend, addr, aligned_start; | ||
490 | #if (NEFF == 32) | ||
491 | aligned_start = (unsigned long long)(signed long long)(signed long) start; | ||
492 | #else | ||
493 | #error "NEFF != 32" | ||
494 | #endif | ||
495 | aligned_start &= L1_CACHE_ALIGN_MASK; | ||
496 | addr = aligned_start; | ||
497 | #if (NEFF == 32) | ||
498 | ullend = (unsigned long long) (signed long long) (signed long) end; | ||
499 | #else | ||
500 | #error "NEFF != 32" | ||
501 | #endif | ||
502 | while (addr <= ullend) { | ||
503 | asm __volatile__ ("ocbp %0, 0" : : "r" (addr)); | ||
504 | addr += L1_CACHE_BYTES; | ||
505 | } | ||
506 | return; | ||
507 | } | ||
508 | 370 | ||
509 | /* Assumes this address (+ (2**n_synbits) pages up from it) aren't used for | 371 | /* Assumes this address (+ (2**n_synbits) pages up from it) aren't used for |
510 | anything else in the kernel */ | 372 | anything else in the kernel */ |
511 | #define MAGIC_PAGE0_START 0xffffffffec000000ULL | 373 | #define MAGIC_PAGE0_START 0xffffffffec000000ULL |
512 | 374 | ||
513 | static void sh64_dcache_purge_coloured_phy_page(unsigned long paddr, unsigned long eaddr) | 375 | /* Purge the physical page 'paddr' from the cache. It's known that any |
376 | * cache lines requiring attention have the same page colour as the the | ||
377 | * address 'eaddr'. | ||
378 | * | ||
379 | * This relies on the fact that the D-cache matches on physical tags when | ||
380 | * no virtual tag matches. So we create an alias for the original page | ||
381 | * and purge through that. (Alternatively, we could have done this by | ||
382 | * switching ASID to match the original mapping and purged through that, | ||
383 | * but that involves ASID switching cost + probably a TLBMISS + refill | ||
384 | * anyway.) | ||
385 | */ | ||
386 | static void sh64_dcache_purge_coloured_phy_page(unsigned long paddr, | ||
387 | unsigned long eaddr) | ||
514 | { | 388 | { |
515 | /* Purge the physical page 'paddr' from the cache. It's known that any | ||
516 | cache lines requiring attention have the same page colour as the the | ||
517 | address 'eaddr'. | ||
518 | |||
519 | This relies on the fact that the D-cache matches on physical tags | ||
520 | when no virtual tag matches. So we create an alias for the original | ||
521 | page and purge through that. (Alternatively, we could have done | ||
522 | this by switching ASID to match the original mapping and purged | ||
523 | through that, but that involves ASID switching cost + probably a | ||
524 | TLBMISS + refill anyway.) | ||
525 | */ | ||
526 | |||
527 | unsigned long long magic_page_start; | 389 | unsigned long long magic_page_start; |
528 | unsigned long long magic_eaddr, magic_eaddr_end; | 390 | unsigned long long magic_eaddr, magic_eaddr_end; |
529 | 391 | ||
@@ -531,47 +393,45 @@ static void sh64_dcache_purge_coloured_phy_page(unsigned long paddr, unsigned lo | |||
531 | 393 | ||
532 | /* As long as the kernel is not pre-emptible, this doesn't need to be | 394 | /* As long as the kernel is not pre-emptible, this doesn't need to be |
533 | under cli/sti. */ | 395 | under cli/sti. */ |
534 | |||
535 | sh64_setup_dtlb_cache_slot(magic_page_start, get_asid(), paddr); | 396 | sh64_setup_dtlb_cache_slot(magic_page_start, get_asid(), paddr); |
536 | 397 | ||
537 | magic_eaddr = magic_page_start; | 398 | magic_eaddr = magic_page_start; |
538 | magic_eaddr_end = magic_eaddr + PAGE_SIZE; | 399 | magic_eaddr_end = magic_eaddr + PAGE_SIZE; |
400 | |||
539 | while (magic_eaddr < magic_eaddr_end) { | 401 | while (magic_eaddr < magic_eaddr_end) { |
540 | /* Little point in unrolling this loop - the OCBPs are blocking | 402 | /* Little point in unrolling this loop - the OCBPs are blocking |
541 | and won't go any quicker (i.e. the loop overhead is parallel | 403 | and won't go any quicker (i.e. the loop overhead is parallel |
542 | to part of the OCBP execution.) */ | 404 | to part of the OCBP execution.) */ |
543 | asm __volatile__ ("ocbp %0, 0" : : "r" (magic_eaddr)); | 405 | __asm__ __volatile__ ("ocbp %0, 0" : : "r" (magic_eaddr)); |
544 | magic_eaddr += L1_CACHE_BYTES; | 406 | magic_eaddr += L1_CACHE_BYTES; |
545 | } | 407 | } |
546 | 408 | ||
547 | sh64_teardown_dtlb_cache_slot(); | 409 | sh64_teardown_dtlb_cache_slot(); |
548 | } | 410 | } |
549 | 411 | ||
550 | /****************************************************************************/ | 412 | /* |
551 | 413 | * Purge a page given its physical start address, by creating a temporary | |
414 | * 1 page mapping and purging across that. Even if we know the virtual | ||
415 | * address (& vma or mm) of the page, the method here is more elegant | ||
416 | * because it avoids issues of coping with page faults on the purge | ||
417 | * instructions (i.e. no special-case code required in the critical path | ||
418 | * in the TLB miss handling). | ||
419 | */ | ||
552 | static void sh64_dcache_purge_phy_page(unsigned long paddr) | 420 | static void sh64_dcache_purge_phy_page(unsigned long paddr) |
553 | { | 421 | { |
554 | /* Pure a page given its physical start address, by creating a | ||
555 | temporary 1 page mapping and purging across that. Even if we know | ||
556 | the virtual address (& vma or mm) of the page, the method here is | ||
557 | more elegant because it avoids issues of coping with page faults on | ||
558 | the purge instructions (i.e. no special-case code required in the | ||
559 | critical path in the TLB miss handling). */ | ||
560 | |||
561 | unsigned long long eaddr_start, eaddr, eaddr_end; | 422 | unsigned long long eaddr_start, eaddr, eaddr_end; |
562 | int i; | 423 | int i; |
563 | 424 | ||
564 | /* As long as the kernel is not pre-emptible, this doesn't need to be | 425 | /* As long as the kernel is not pre-emptible, this doesn't need to be |
565 | under cli/sti. */ | 426 | under cli/sti. */ |
566 | |||
567 | eaddr_start = MAGIC_PAGE0_START; | 427 | eaddr_start = MAGIC_PAGE0_START; |
568 | for (i=0; i < (1 << CACHE_OC_N_SYNBITS); i++) { | 428 | for (i = 0; i < (1 << CACHE_OC_N_SYNBITS); i++) { |
569 | sh64_setup_dtlb_cache_slot(eaddr_start, get_asid(), paddr); | 429 | sh64_setup_dtlb_cache_slot(eaddr_start, get_asid(), paddr); |
570 | 430 | ||
571 | eaddr = eaddr_start; | 431 | eaddr = eaddr_start; |
572 | eaddr_end = eaddr + PAGE_SIZE; | 432 | eaddr_end = eaddr + PAGE_SIZE; |
573 | while (eaddr < eaddr_end) { | 433 | while (eaddr < eaddr_end) { |
574 | asm __volatile__ ("ocbp %0, 0" : : "r" (eaddr)); | 434 | __asm__ __volatile__ ("ocbp %0, 0" : : "r" (eaddr)); |
575 | eaddr += L1_CACHE_BYTES; | 435 | eaddr += L1_CACHE_BYTES; |
576 | } | 436 | } |
577 | 437 | ||
@@ -584,6 +444,7 @@ static void sh64_dcache_purge_user_pages(struct mm_struct *mm, | |||
584 | unsigned long addr, unsigned long end) | 444 | unsigned long addr, unsigned long end) |
585 | { | 445 | { |
586 | pgd_t *pgd; | 446 | pgd_t *pgd; |
447 | pud_t *pud; | ||
587 | pmd_t *pmd; | 448 | pmd_t *pmd; |
588 | pte_t *pte; | 449 | pte_t *pte; |
589 | pte_t entry; | 450 | pte_t entry; |
@@ -597,7 +458,11 @@ static void sh64_dcache_purge_user_pages(struct mm_struct *mm, | |||
597 | if (pgd_bad(*pgd)) | 458 | if (pgd_bad(*pgd)) |
598 | return; | 459 | return; |
599 | 460 | ||
600 | pmd = pmd_offset(pgd, addr); | 461 | pud = pud_offset(pgd, addr); |
462 | if (pud_none(*pud) || pud_bad(*pud)) | ||
463 | return; | ||
464 | |||
465 | pmd = pmd_offset(pud, addr); | ||
601 | if (pmd_none(*pmd) || pmd_bad(*pmd)) | 466 | if (pmd_none(*pmd) || pmd_bad(*pmd)) |
602 | return; | 467 | return; |
603 | 468 | ||
@@ -611,419 +476,357 @@ static void sh64_dcache_purge_user_pages(struct mm_struct *mm, | |||
611 | } while (pte++, addr += PAGE_SIZE, addr != end); | 476 | } while (pte++, addr += PAGE_SIZE, addr != end); |
612 | pte_unmap_unlock(pte - 1, ptl); | 477 | pte_unmap_unlock(pte - 1, ptl); |
613 | } | 478 | } |
614 | /****************************************************************************/ | ||
615 | 479 | ||
480 | /* | ||
481 | * There are at least 5 choices for the implementation of this, with | ||
482 | * pros (+), cons(-), comments(*): | ||
483 | * | ||
484 | * 1. ocbp each line in the range through the original user's ASID | ||
485 | * + no lines spuriously evicted | ||
486 | * - tlbmiss handling (must either handle faults on demand => extra | ||
487 | * special-case code in tlbmiss critical path), or map the page in | ||
488 | * advance (=> flush_tlb_range in advance to avoid multiple hits) | ||
489 | * - ASID switching | ||
490 | * - expensive for large ranges | ||
491 | * | ||
492 | * 2. temporarily map each page in the range to a special effective | ||
493 | * address and ocbp through the temporary mapping; relies on the | ||
494 | * fact that SH-5 OCB* always do TLB lookup and match on ptags (they | ||
495 | * never look at the etags) | ||
496 | * + no spurious evictions | ||
497 | * - expensive for large ranges | ||
498 | * * surely cheaper than (1) | ||
499 | * | ||
500 | * 3. walk all the lines in the cache, check the tags, if a match | ||
501 | * occurs create a page mapping to ocbp the line through | ||
502 | * + no spurious evictions | ||
503 | * - tag inspection overhead | ||
504 | * - (especially for small ranges) | ||
505 | * - potential cost of setting up/tearing down page mapping for | ||
506 | * every line that matches the range | ||
507 | * * cost partly independent of range size | ||
508 | * | ||
509 | * 4. walk all the lines in the cache, check the tags, if a match | ||
510 | * occurs use 4 * alloco to purge the line (+3 other probably | ||
511 | * innocent victims) by natural eviction | ||
512 | * + no tlb mapping overheads | ||
513 | * - spurious evictions | ||
514 | * - tag inspection overhead | ||
515 | * | ||
516 | * 5. implement like flush_cache_all | ||
517 | * + no tag inspection overhead | ||
518 | * - spurious evictions | ||
519 | * - bad for small ranges | ||
520 | * | ||
521 | * (1) can be ruled out as more expensive than (2). (2) appears best | ||
522 | * for small ranges. The choice between (3), (4) and (5) for large | ||
523 | * ranges and the range size for the large/small boundary need | ||
524 | * benchmarking to determine. | ||
525 | * | ||
526 | * For now use approach (2) for small ranges and (5) for large ones. | ||
527 | */ | ||
616 | static void sh64_dcache_purge_user_range(struct mm_struct *mm, | 528 | static void sh64_dcache_purge_user_range(struct mm_struct *mm, |
617 | unsigned long start, unsigned long end) | 529 | unsigned long start, unsigned long end) |
618 | { | 530 | { |
619 | /* There are at least 5 choices for the implementation of this, with | 531 | int n_pages = ((end - start) >> PAGE_SHIFT); |
620 | pros (+), cons(-), comments(*): | ||
621 | |||
622 | 1. ocbp each line in the range through the original user's ASID | ||
623 | + no lines spuriously evicted | ||
624 | - tlbmiss handling (must either handle faults on demand => extra | ||
625 | special-case code in tlbmiss critical path), or map the page in | ||
626 | advance (=> flush_tlb_range in advance to avoid multiple hits) | ||
627 | - ASID switching | ||
628 | - expensive for large ranges | ||
629 | |||
630 | 2. temporarily map each page in the range to a special effective | ||
631 | address and ocbp through the temporary mapping; relies on the | ||
632 | fact that SH-5 OCB* always do TLB lookup and match on ptags (they | ||
633 | never look at the etags) | ||
634 | + no spurious evictions | ||
635 | - expensive for large ranges | ||
636 | * surely cheaper than (1) | ||
637 | |||
638 | 3. walk all the lines in the cache, check the tags, if a match | ||
639 | occurs create a page mapping to ocbp the line through | ||
640 | + no spurious evictions | ||
641 | - tag inspection overhead | ||
642 | - (especially for small ranges) | ||
643 | - potential cost of setting up/tearing down page mapping for | ||
644 | every line that matches the range | ||
645 | * cost partly independent of range size | ||
646 | |||
647 | 4. walk all the lines in the cache, check the tags, if a match | ||
648 | occurs use 4 * alloco to purge the line (+3 other probably | ||
649 | innocent victims) by natural eviction | ||
650 | + no tlb mapping overheads | ||
651 | - spurious evictions | ||
652 | - tag inspection overhead | ||
653 | |||
654 | 5. implement like flush_cache_all | ||
655 | + no tag inspection overhead | ||
656 | - spurious evictions | ||
657 | - bad for small ranges | ||
658 | |||
659 | (1) can be ruled out as more expensive than (2). (2) appears best | ||
660 | for small ranges. The choice between (3), (4) and (5) for large | ||
661 | ranges and the range size for the large/small boundary need | ||
662 | benchmarking to determine. | ||
663 | |||
664 | For now use approach (2) for small ranges and (5) for large ones. | ||
665 | |||
666 | */ | ||
667 | |||
668 | int n_pages; | ||
669 | 532 | ||
670 | n_pages = ((end - start) >> PAGE_SHIFT); | ||
671 | if (n_pages >= 64 || ((start ^ (end - 1)) & PMD_MASK)) { | 533 | if (n_pages >= 64 || ((start ^ (end - 1)) & PMD_MASK)) { |
672 | #if 1 | ||
673 | sh64_dcache_purge_all(); | 534 | sh64_dcache_purge_all(); |
674 | #else | ||
675 | unsigned long long set, way; | ||
676 | unsigned long mm_asid = mm->context & MMU_CONTEXT_ASID_MASK; | ||
677 | for (set = 0; set < cpu_data->dcache.sets; set++) { | ||
678 | unsigned long long set_base_config_addr = CACHE_OC_ADDRESS_ARRAY + (set << cpu_data->dcache.set_shift); | ||
679 | for (way = 0; way < cpu_data->dcache.ways; way++) { | ||
680 | unsigned long long config_addr = set_base_config_addr + (way << cpu_data->dcache.way_step_shift); | ||
681 | unsigned long long tag0; | ||
682 | unsigned long line_valid; | ||
683 | |||
684 | asm __volatile__("getcfg %1, 0, %0" : "=r" (tag0) : "r" (config_addr)); | ||
685 | line_valid = tag0 & SH_CACHE_VALID; | ||
686 | if (line_valid) { | ||
687 | unsigned long cache_asid; | ||
688 | unsigned long epn; | ||
689 | |||
690 | cache_asid = (tag0 & cpu_data->dcache.asid_mask) >> cpu_data->dcache.asid_shift; | ||
691 | /* The next line needs some | ||
692 | explanation. The virtual tags | ||
693 | encode bits [31:13] of the virtual | ||
694 | address, bit [12] of the 'tag' being | ||
695 | implied by the cache set index. */ | ||
696 | epn = (tag0 & cpu_data->dcache.epn_mask) | ((set & 0x80) << cpu_data->dcache.entry_shift); | ||
697 | |||
698 | if ((cache_asid == mm_asid) && (start <= epn) && (epn < end)) { | ||
699 | /* TODO : could optimise this | ||
700 | call by batching multiple | ||
701 | adjacent sets together. */ | ||
702 | sh64_dcache_purge_sets(set, 1); | ||
703 | break; /* Don't waste time inspecting other ways for this set */ | ||
704 | } | ||
705 | } | ||
706 | } | ||
707 | } | ||
708 | #endif | ||
709 | } else { | 535 | } else { |
710 | /* Small range, covered by a single page table page */ | 536 | /* Small range, covered by a single page table page */ |
711 | start &= PAGE_MASK; /* should already be so */ | 537 | start &= PAGE_MASK; /* should already be so */ |
712 | end = PAGE_ALIGN(end); /* should already be so */ | 538 | end = PAGE_ALIGN(end); /* should already be so */ |
713 | sh64_dcache_purge_user_pages(mm, start, end); | 539 | sh64_dcache_purge_user_pages(mm, start, end); |
714 | } | 540 | } |
715 | return; | ||
716 | } | 541 | } |
717 | 542 | ||
718 | static void sh64_dcache_wback_current_user_range(unsigned long start, unsigned long end) | 543 | /* |
544 | * Purge the range of addresses from the D-cache. | ||
545 | * | ||
546 | * The addresses lie in the superpage mapping. There's no harm if we | ||
547 | * overpurge at either end - just a small performance loss. | ||
548 | */ | ||
549 | void __flush_purge_region(void *start, int size) | ||
719 | { | 550 | { |
720 | unsigned long long aligned_start; | 551 | unsigned long long ullend, addr, aligned_start; |
721 | unsigned long long ull_end; | ||
722 | unsigned long long addr; | ||
723 | |||
724 | ull_end = end; | ||
725 | 552 | ||
726 | /* Just wback over the range using the natural addresses. TLB miss | 553 | aligned_start = (unsigned long long)(signed long long)(signed long) start; |
727 | handling will be OK (TBC) : the range has just been written to by | 554 | addr = L1_CACHE_ALIGN(aligned_start); |
728 | the signal frame setup code, so the PTEs must exist. | 555 | ullend = (unsigned long long) (signed long long) (signed long) start + size; |
729 | 556 | ||
730 | Note, if we have CONFIG_PREEMPT and get preempted inside this loop, | 557 | while (addr <= ullend) { |
731 | it doesn't matter, even if the pid->ASID mapping changes whilst | 558 | __asm__ __volatile__ ("ocbp %0, 0" : : "r" (addr)); |
732 | we're away. In that case the cache will have been flushed when the | ||
733 | mapping was renewed. So the writebacks below will be nugatory (and | ||
734 | we'll doubtless have to fault the TLB entry/ies in again with the | ||
735 | new ASID), but it's a rare case. | ||
736 | */ | ||
737 | aligned_start = start & L1_CACHE_ALIGN_MASK; | ||
738 | addr = aligned_start; | ||
739 | while (addr < ull_end) { | ||
740 | asm __volatile__ ("ocbwb %0, 0" : : "r" (addr)); | ||
741 | addr += L1_CACHE_BYTES; | 559 | addr += L1_CACHE_BYTES; |
742 | } | 560 | } |
743 | } | 561 | } |
744 | 562 | ||
745 | /****************************************************************************/ | 563 | void __flush_wback_region(void *start, int size) |
746 | |||
747 | /* These *MUST* lie in an area of virtual address space that's otherwise unused. */ | ||
748 | #define UNIQUE_EADDR_START 0xe0000000UL | ||
749 | #define UNIQUE_EADDR_END 0xe8000000UL | ||
750 | |||
751 | static unsigned long sh64_make_unique_eaddr(unsigned long user_eaddr, unsigned long paddr) | ||
752 | { | 564 | { |
753 | /* Given a physical address paddr, and a user virtual address | 565 | unsigned long long ullend, addr, aligned_start; |
754 | user_eaddr which will eventually be mapped to it, create a one-off | ||
755 | kernel-private eaddr mapped to the same paddr. This is used for | ||
756 | creating special destination pages for copy_user_page and | ||
757 | clear_user_page */ | ||
758 | 566 | ||
759 | static unsigned long current_pointer = UNIQUE_EADDR_START; | 567 | aligned_start = (unsigned long long)(signed long long)(signed long) start; |
760 | unsigned long coloured_pointer; | 568 | addr = L1_CACHE_ALIGN(aligned_start); |
569 | ullend = (unsigned long long) (signed long long) (signed long) start + size; | ||
761 | 570 | ||
762 | if (current_pointer == UNIQUE_EADDR_END) { | 571 | while (addr < ullend) { |
763 | sh64_dcache_purge_all(); | 572 | __asm__ __volatile__ ("ocbwb %0, 0" : : "r" (addr)); |
764 | current_pointer = UNIQUE_EADDR_START; | 573 | addr += L1_CACHE_BYTES; |
765 | } | 574 | } |
766 | |||
767 | coloured_pointer = (current_pointer & ~CACHE_OC_SYN_MASK) | (user_eaddr & CACHE_OC_SYN_MASK); | ||
768 | sh64_setup_dtlb_cache_slot(coloured_pointer, get_asid(), paddr); | ||
769 | |||
770 | current_pointer += (PAGE_SIZE << CACHE_OC_N_SYNBITS); | ||
771 | |||
772 | return coloured_pointer; | ||
773 | } | ||
774 | |||
775 | /****************************************************************************/ | ||
776 | |||
777 | static void sh64_copy_user_page_coloured(void *to, void *from, unsigned long address) | ||
778 | { | ||
779 | void *coloured_to; | ||
780 | |||
781 | /* Discard any existing cache entries of the wrong colour. These are | ||
782 | present quite often, if the kernel has recently used the page | ||
783 | internally, then given it up, then it's been allocated to the user. | ||
784 | */ | ||
785 | sh64_dcache_purge_coloured_phy_page(__pa(to), (unsigned long) to); | ||
786 | |||
787 | coloured_to = (void *) sh64_make_unique_eaddr(address, __pa(to)); | ||
788 | sh64_page_copy(from, coloured_to); | ||
789 | |||
790 | sh64_teardown_dtlb_cache_slot(); | ||
791 | } | 575 | } |
792 | 576 | ||
793 | static void sh64_clear_user_page_coloured(void *to, unsigned long address) | 577 | void __flush_invalidate_region(void *start, int size) |
794 | { | 578 | { |
795 | void *coloured_to; | 579 | unsigned long long ullend, addr, aligned_start; |
796 | |||
797 | /* Discard any existing kernel-originated lines of the wrong colour (as | ||
798 | above) */ | ||
799 | sh64_dcache_purge_coloured_phy_page(__pa(to), (unsigned long) to); | ||
800 | 580 | ||
801 | coloured_to = (void *) sh64_make_unique_eaddr(address, __pa(to)); | 581 | aligned_start = (unsigned long long)(signed long long)(signed long) start; |
802 | sh64_page_clear(coloured_to); | 582 | addr = L1_CACHE_ALIGN(aligned_start); |
583 | ullend = (unsigned long long) (signed long long) (signed long) start + size; | ||
803 | 584 | ||
804 | sh64_teardown_dtlb_cache_slot(); | 585 | while (addr < ullend) { |
586 | __asm__ __volatile__ ("ocbi %0, 0" : : "r" (addr)); | ||
587 | addr += L1_CACHE_BYTES; | ||
588 | } | ||
805 | } | 589 | } |
806 | |||
807 | #endif /* !CONFIG_DCACHE_DISABLED */ | 590 | #endif /* !CONFIG_DCACHE_DISABLED */ |
808 | 591 | ||
809 | /****************************************************************************/ | 592 | /* |
810 | 593 | * Invalidate the entire contents of both caches, after writing back to | |
811 | /*########################################################################## | 594 | * memory any dirty data from the D-cache. |
812 | EXTERNALLY CALLABLE API. | 595 | */ |
813 | ##########################################################################*/ | ||
814 | |||
815 | /* These functions are described in Documentation/cachetlb.txt. | ||
816 | Each one of these functions varies in behaviour depending on whether the | ||
817 | I-cache and/or D-cache are configured out. | ||
818 | |||
819 | Note that the Linux term 'flush' corresponds to what is termed 'purge' in | ||
820 | the sh/sh64 jargon for the D-cache, i.e. write back dirty data then | ||
821 | invalidate the cache lines, and 'invalidate' for the I-cache. | ||
822 | */ | ||
823 | |||
824 | #undef FLUSH_TRACE | ||
825 | |||
826 | void flush_cache_all(void) | 596 | void flush_cache_all(void) |
827 | { | 597 | { |
828 | /* Invalidate the entire contents of both caches, after writing back to | ||
829 | memory any dirty data from the D-cache. */ | ||
830 | sh64_dcache_purge_all(); | 598 | sh64_dcache_purge_all(); |
831 | sh64_icache_inv_all(); | 599 | sh64_icache_inv_all(); |
832 | } | 600 | } |
833 | 601 | ||
834 | /****************************************************************************/ | 602 | /* |
835 | 603 | * Invalidate an entire user-address space from both caches, after | |
604 | * writing back dirty data (e.g. for shared mmap etc). | ||
605 | * | ||
606 | * This could be coded selectively by inspecting all the tags then | ||
607 | * doing 4*alloco on any set containing a match (as for | ||
608 | * flush_cache_range), but fork/exit/execve (where this is called from) | ||
609 | * are expensive anyway. | ||
610 | * | ||
611 | * Have to do a purge here, despite the comments re I-cache below. | ||
612 | * There could be odd-coloured dirty data associated with the mm still | ||
613 | * in the cache - if this gets written out through natural eviction | ||
614 | * after the kernel has reused the page there will be chaos. | ||
615 | * | ||
616 | * The mm being torn down won't ever be active again, so any Icache | ||
617 | * lines tagged with its ASID won't be visible for the rest of the | ||
618 | * lifetime of this ASID cycle. Before the ASID gets reused, there | ||
619 | * will be a flush_cache_all. Hence we don't need to touch the | ||
620 | * I-cache. This is similar to the lack of action needed in | ||
621 | * flush_tlb_mm - see fault.c. | ||
622 | */ | ||
836 | void flush_cache_mm(struct mm_struct *mm) | 623 | void flush_cache_mm(struct mm_struct *mm) |
837 | { | 624 | { |
838 | /* Invalidate an entire user-address space from both caches, after | ||
839 | writing back dirty data (e.g. for shared mmap etc). */ | ||
840 | |||
841 | /* This could be coded selectively by inspecting all the tags then | ||
842 | doing 4*alloco on any set containing a match (as for | ||
843 | flush_cache_range), but fork/exit/execve (where this is called from) | ||
844 | are expensive anyway. */ | ||
845 | |||
846 | /* Have to do a purge here, despite the comments re I-cache below. | ||
847 | There could be odd-coloured dirty data associated with the mm still | ||
848 | in the cache - if this gets written out through natural eviction | ||
849 | after the kernel has reused the page there will be chaos. | ||
850 | */ | ||
851 | |||
852 | sh64_dcache_purge_all(); | 625 | sh64_dcache_purge_all(); |
853 | |||
854 | /* The mm being torn down won't ever be active again, so any Icache | ||
855 | lines tagged with its ASID won't be visible for the rest of the | ||
856 | lifetime of this ASID cycle. Before the ASID gets reused, there | ||
857 | will be a flush_cache_all. Hence we don't need to touch the | ||
858 | I-cache. This is similar to the lack of action needed in | ||
859 | flush_tlb_mm - see fault.c. */ | ||
860 | } | 626 | } |
861 | 627 | ||
862 | /****************************************************************************/ | 628 | /* |
863 | 629 | * Invalidate (from both caches) the range [start,end) of virtual | |
630 | * addresses from the user address space specified by mm, after writing | ||
631 | * back any dirty data. | ||
632 | * | ||
633 | * Note, 'end' is 1 byte beyond the end of the range to flush. | ||
634 | */ | ||
864 | void flush_cache_range(struct vm_area_struct *vma, unsigned long start, | 635 | void flush_cache_range(struct vm_area_struct *vma, unsigned long start, |
865 | unsigned long end) | 636 | unsigned long end) |
866 | { | 637 | { |
867 | struct mm_struct *mm = vma->vm_mm; | 638 | struct mm_struct *mm = vma->vm_mm; |
868 | 639 | ||
869 | /* Invalidate (from both caches) the range [start,end) of virtual | ||
870 | addresses from the user address space specified by mm, after writing | ||
871 | back any dirty data. | ||
872 | |||
873 | Note, 'end' is 1 byte beyond the end of the range to flush. */ | ||
874 | |||
875 | sh64_dcache_purge_user_range(mm, start, end); | 640 | sh64_dcache_purge_user_range(mm, start, end); |
876 | sh64_icache_inv_user_page_range(mm, start, end); | 641 | sh64_icache_inv_user_page_range(mm, start, end); |
877 | } | 642 | } |
878 | 643 | ||
879 | /****************************************************************************/ | 644 | /* |
880 | 645 | * Invalidate any entries in either cache for the vma within the user | |
881 | void flush_cache_page(struct vm_area_struct *vma, unsigned long eaddr, unsigned long pfn) | 646 | * address space vma->vm_mm for the page starting at virtual address |
647 | * 'eaddr'. This seems to be used primarily in breaking COW. Note, | ||
648 | * the I-cache must be searched too in case the page in question is | ||
649 | * both writable and being executed from (e.g. stack trampolines.) | ||
650 | * | ||
651 | * Note, this is called with pte lock held. | ||
652 | */ | ||
653 | void flush_cache_page(struct vm_area_struct *vma, unsigned long eaddr, | ||
654 | unsigned long pfn) | ||
882 | { | 655 | { |
883 | /* Invalidate any entries in either cache for the vma within the user | ||
884 | address space vma->vm_mm for the page starting at virtual address | ||
885 | 'eaddr'. This seems to be used primarily in breaking COW. Note, | ||
886 | the I-cache must be searched too in case the page in question is | ||
887 | both writable and being executed from (e.g. stack trampolines.) | ||
888 | |||
889 | Note, this is called with pte lock held. | ||
890 | */ | ||
891 | |||
892 | sh64_dcache_purge_phy_page(pfn << PAGE_SHIFT); | 656 | sh64_dcache_purge_phy_page(pfn << PAGE_SHIFT); |
893 | 657 | ||
894 | if (vma->vm_flags & VM_EXEC) { | 658 | if (vma->vm_flags & VM_EXEC) |
895 | sh64_icache_inv_user_page(vma, eaddr); | 659 | sh64_icache_inv_user_page(vma, eaddr); |
896 | } | ||
897 | } | 660 | } |
898 | 661 | ||
899 | /****************************************************************************/ | 662 | void flush_dcache_page(struct page *page) |
663 | { | ||
664 | sh64_dcache_purge_phy_page(page_to_phys(page)); | ||
665 | wmb(); | ||
666 | } | ||
900 | 667 | ||
901 | #ifndef CONFIG_DCACHE_DISABLED | 668 | /* |
669 | * Flush the range [start,end] of kernel virtual adddress space from | ||
670 | * the I-cache. The corresponding range must be purged from the | ||
671 | * D-cache also because the SH-5 doesn't have cache snooping between | ||
672 | * the caches. The addresses will be visible through the superpage | ||
673 | * mapping, therefore it's guaranteed that there no cache entries for | ||
674 | * the range in cache sets of the wrong colour. | ||
675 | */ | ||
676 | void flush_icache_range(unsigned long start, unsigned long end) | ||
677 | { | ||
678 | __flush_purge_region((void *)start, end); | ||
679 | wmb(); | ||
680 | sh64_icache_inv_kernel_range(start, end); | ||
681 | } | ||
902 | 682 | ||
903 | void copy_user_page(void *to, void *from, unsigned long address, struct page *page) | 683 | /* |
684 | * Flush the range of user (defined by vma->vm_mm) address space starting | ||
685 | * at 'addr' for 'len' bytes from the cache. The range does not straddle | ||
686 | * a page boundary, the unique physical page containing the range is | ||
687 | * 'page'. This seems to be used mainly for invalidating an address | ||
688 | * range following a poke into the program text through the ptrace() call | ||
689 | * from another process (e.g. for BRK instruction insertion). | ||
690 | */ | ||
691 | void flush_icache_user_range(struct vm_area_struct *vma, | ||
692 | struct page *page, unsigned long addr, int len) | ||
904 | { | 693 | { |
905 | /* 'from' and 'to' are kernel virtual addresses (within the superpage | ||
906 | mapping of the physical RAM). 'address' is the user virtual address | ||
907 | where the copy 'to' will be mapped after. This allows a custom | ||
908 | mapping to be used to ensure that the new copy is placed in the | ||
909 | right cache sets for the user to see it without having to bounce it | ||
910 | out via memory. Note however : the call to flush_page_to_ram in | ||
911 | (generic)/mm/memory.c:(break_cow) undoes all this good work in that one | ||
912 | very important case! | ||
913 | |||
914 | TBD : can we guarantee that on every call, any cache entries for | ||
915 | 'from' are in the same colour sets as 'address' also? i.e. is this | ||
916 | always used just to deal with COW? (I suspect not). */ | ||
917 | |||
918 | /* There are two possibilities here for when the page 'from' was last accessed: | ||
919 | * by the kernel : this is OK, no purge required. | ||
920 | * by the/a user (e.g. for break_COW) : need to purge. | ||
921 | |||
922 | If the potential user mapping at 'address' is the same colour as | ||
923 | 'from' there is no need to purge any cache lines from the 'from' | ||
924 | page mapped into cache sets of colour 'address'. (The copy will be | ||
925 | accessing the page through 'from'). | ||
926 | */ | ||
927 | 694 | ||
928 | if (((address ^ (unsigned long) from) & CACHE_OC_SYN_MASK) != 0) { | 695 | sh64_dcache_purge_coloured_phy_page(page_to_phys(page), addr); |
929 | sh64_dcache_purge_coloured_phy_page(__pa(from), address); | 696 | mb(); |
930 | } | ||
931 | 697 | ||
932 | if (((address ^ (unsigned long) to) & CACHE_OC_SYN_MASK) == 0) { | 698 | if (vma->vm_flags & VM_EXEC) |
933 | /* No synonym problem on destination */ | 699 | sh64_icache_inv_user_small_range(vma->vm_mm, addr, len); |
934 | sh64_page_copy(from, to); | 700 | } |
935 | } else { | 701 | |
936 | sh64_copy_user_page_coloured(to, from, address); | 702 | /* |
937 | } | 703 | * For the address range [start,end), write back the data from the |
704 | * D-cache and invalidate the corresponding region of the I-cache for the | ||
705 | * current process. Used to flush signal trampolines on the stack to | ||
706 | * make them executable. | ||
707 | */ | ||
708 | void flush_cache_sigtramp(unsigned long vaddr) | ||
709 | { | ||
710 | unsigned long end = vaddr + L1_CACHE_BYTES; | ||
938 | 711 | ||
939 | /* Note, don't need to flush 'from' page from the cache again - it's | 712 | __flush_wback_region((void *)vaddr, L1_CACHE_BYTES); |
940 | done anyway by the generic code */ | 713 | wmb(); |
714 | sh64_icache_inv_current_user_range(vaddr, end); | ||
941 | } | 715 | } |
942 | 716 | ||
943 | void clear_user_page(void *to, unsigned long address, struct page *page) | 717 | /* |
718 | * These *MUST* lie in an area of virtual address space that's otherwise | ||
719 | * unused. | ||
720 | */ | ||
721 | #define UNIQUE_EADDR_START 0xe0000000UL | ||
722 | #define UNIQUE_EADDR_END 0xe8000000UL | ||
723 | |||
724 | /* | ||
725 | * Given a physical address paddr, and a user virtual address user_eaddr | ||
726 | * which will eventually be mapped to it, create a one-off kernel-private | ||
727 | * eaddr mapped to the same paddr. This is used for creating special | ||
728 | * destination pages for copy_user_page and clear_user_page. | ||
729 | */ | ||
730 | static unsigned long sh64_make_unique_eaddr(unsigned long user_eaddr, | ||
731 | unsigned long paddr) | ||
944 | { | 732 | { |
945 | /* 'to' is a kernel virtual address (within the superpage | 733 | static unsigned long current_pointer = UNIQUE_EADDR_START; |
946 | mapping of the physical RAM). 'address' is the user virtual address | 734 | unsigned long coloured_pointer; |
947 | where the 'to' page will be mapped after. This allows a custom | ||
948 | mapping to be used to ensure that the new copy is placed in the | ||
949 | right cache sets for the user to see it without having to bounce it | ||
950 | out via memory. | ||
951 | */ | ||
952 | 735 | ||
953 | if (((address ^ (unsigned long) to) & CACHE_OC_SYN_MASK) == 0) { | 736 | if (current_pointer == UNIQUE_EADDR_END) { |
954 | /* No synonym problem on destination */ | 737 | sh64_dcache_purge_all(); |
955 | sh64_page_clear(to); | 738 | current_pointer = UNIQUE_EADDR_START; |
956 | } else { | ||
957 | sh64_clear_user_page_coloured(to, address); | ||
958 | } | 739 | } |
959 | } | ||
960 | 740 | ||
961 | #endif /* !CONFIG_DCACHE_DISABLED */ | 741 | coloured_pointer = (current_pointer & ~CACHE_OC_SYN_MASK) | |
742 | (user_eaddr & CACHE_OC_SYN_MASK); | ||
743 | sh64_setup_dtlb_cache_slot(coloured_pointer, get_asid(), paddr); | ||
962 | 744 | ||
963 | /****************************************************************************/ | 745 | current_pointer += (PAGE_SIZE << CACHE_OC_N_SYNBITS); |
964 | 746 | ||
965 | void flush_dcache_page(struct page *page) | 747 | return coloured_pointer; |
966 | { | ||
967 | sh64_dcache_purge_phy_page(page_to_phys(page)); | ||
968 | wmb(); | ||
969 | } | 748 | } |
970 | 749 | ||
971 | /****************************************************************************/ | 750 | static void sh64_copy_user_page_coloured(void *to, void *from, |
972 | 751 | unsigned long address) | |
973 | void flush_icache_range(unsigned long start, unsigned long end) | ||
974 | { | 752 | { |
975 | /* Flush the range [start,end] of kernel virtual adddress space from | 753 | void *coloured_to; |
976 | the I-cache. The corresponding range must be purged from the | ||
977 | D-cache also because the SH-5 doesn't have cache snooping between | ||
978 | the caches. The addresses will be visible through the superpage | ||
979 | mapping, therefore it's guaranteed that there no cache entries for | ||
980 | the range in cache sets of the wrong colour. | ||
981 | 754 | ||
982 | Primarily used for cohering the I-cache after a module has | 755 | /* |
983 | been loaded. */ | 756 | * Discard any existing cache entries of the wrong colour. These are |
757 | * present quite often, if the kernel has recently used the page | ||
758 | * internally, then given it up, then it's been allocated to the user. | ||
759 | */ | ||
760 | sh64_dcache_purge_coloured_phy_page(__pa(to), (unsigned long)to); | ||
984 | 761 | ||
985 | /* We also make sure to purge the same range from the D-cache since | 762 | coloured_to = (void *)sh64_make_unique_eaddr(address, __pa(to)); |
986 | flush_page_to_ram() won't be doing this for us! */ | 763 | copy_page(from, coloured_to); |
987 | 764 | ||
988 | sh64_dcache_purge_kernel_range(start, end); | 765 | sh64_teardown_dtlb_cache_slot(); |
989 | wmb(); | ||
990 | sh64_icache_inv_kernel_range(start, end); | ||
991 | } | 766 | } |
992 | 767 | ||
993 | /****************************************************************************/ | 768 | static void sh64_clear_user_page_coloured(void *to, unsigned long address) |
994 | |||
995 | void flush_icache_user_range(struct vm_area_struct *vma, | ||
996 | struct page *page, unsigned long addr, int len) | ||
997 | { | 769 | { |
998 | /* Flush the range of user (defined by vma->vm_mm) address space | 770 | void *coloured_to; |
999 | starting at 'addr' for 'len' bytes from the cache. The range does | ||
1000 | not straddle a page boundary, the unique physical page containing | ||
1001 | the range is 'page'. This seems to be used mainly for invalidating | ||
1002 | an address range following a poke into the program text through the | ||
1003 | ptrace() call from another process (e.g. for BRK instruction | ||
1004 | insertion). */ | ||
1005 | 771 | ||
1006 | sh64_dcache_purge_coloured_phy_page(page_to_phys(page), addr); | 772 | /* |
1007 | mb(); | 773 | * Discard any existing kernel-originated lines of the wrong |
774 | * colour (as above) | ||
775 | */ | ||
776 | sh64_dcache_purge_coloured_phy_page(__pa(to), (unsigned long)to); | ||
1008 | 777 | ||
1009 | if (vma->vm_flags & VM_EXEC) { | 778 | coloured_to = (void *)sh64_make_unique_eaddr(address, __pa(to)); |
1010 | sh64_icache_inv_user_small_range(vma->vm_mm, addr, len); | 779 | clear_page(coloured_to); |
1011 | } | ||
1012 | } | ||
1013 | 780 | ||
1014 | /*########################################################################## | 781 | sh64_teardown_dtlb_cache_slot(); |
1015 | ARCH/SH64 PRIVATE CALLABLE API. | 782 | } |
1016 | ##########################################################################*/ | ||
1017 | 783 | ||
1018 | void flush_cache_sigtramp(unsigned long start, unsigned long end) | 784 | /* |
785 | * 'from' and 'to' are kernel virtual addresses (within the superpage | ||
786 | * mapping of the physical RAM). 'address' is the user virtual address | ||
787 | * where the copy 'to' will be mapped after. This allows a custom | ||
788 | * mapping to be used to ensure that the new copy is placed in the | ||
789 | * right cache sets for the user to see it without having to bounce it | ||
790 | * out via memory. Note however : the call to flush_page_to_ram in | ||
791 | * (generic)/mm/memory.c:(break_cow) undoes all this good work in that one | ||
792 | * very important case! | ||
793 | * | ||
794 | * TBD : can we guarantee that on every call, any cache entries for | ||
795 | * 'from' are in the same colour sets as 'address' also? i.e. is this | ||
796 | * always used just to deal with COW? (I suspect not). | ||
797 | * | ||
798 | * There are two possibilities here for when the page 'from' was last accessed: | ||
799 | * - by the kernel : this is OK, no purge required. | ||
800 | * - by the/a user (e.g. for break_COW) : need to purge. | ||
801 | * | ||
802 | * If the potential user mapping at 'address' is the same colour as | ||
803 | * 'from' there is no need to purge any cache lines from the 'from' | ||
804 | * page mapped into cache sets of colour 'address'. (The copy will be | ||
805 | * accessing the page through 'from'). | ||
806 | */ | ||
807 | void copy_user_page(void *to, void *from, unsigned long address, | ||
808 | struct page *page) | ||
1019 | { | 809 | { |
1020 | /* For the address range [start,end), write back the data from the | 810 | if (((address ^ (unsigned long) from) & CACHE_OC_SYN_MASK) != 0) |
1021 | D-cache and invalidate the corresponding region of the I-cache for | 811 | sh64_dcache_purge_coloured_phy_page(__pa(from), address); |
1022 | the current process. Used to flush signal trampolines on the stack | ||
1023 | to make them executable. */ | ||
1024 | 812 | ||
1025 | sh64_dcache_wback_current_user_range(start, end); | 813 | if (((address ^ (unsigned long) to) & CACHE_OC_SYN_MASK) == 0) |
1026 | wmb(); | 814 | copy_page(to, from); |
1027 | sh64_icache_inv_current_user_range(start, end); | 815 | else |
816 | sh64_copy_user_page_coloured(to, from, address); | ||
1028 | } | 817 | } |
1029 | 818 | ||
819 | /* | ||
820 | * 'to' is a kernel virtual address (within the superpage mapping of the | ||
821 | * physical RAM). 'address' is the user virtual address where the 'to' | ||
822 | * page will be mapped after. This allows a custom mapping to be used to | ||
823 | * ensure that the new copy is placed in the right cache sets for the | ||
824 | * user to see it without having to bounce it out via memory. | ||
825 | */ | ||
826 | void clear_user_page(void *to, unsigned long address, struct page *page) | ||
827 | { | ||
828 | if (((address ^ (unsigned long) to) & CACHE_OC_SYN_MASK) == 0) | ||
829 | clear_page(to); | ||
830 | else | ||
831 | sh64_clear_user_page_coloured(to, address); | ||
832 | } | ||
diff --git a/arch/sh/mm/consistent.c b/arch/sh/mm/consistent.c index 7b2131c9eeda..d3c33fc5b1c2 100644 --- a/arch/sh/mm/consistent.c +++ b/arch/sh/mm/consistent.c | |||
@@ -26,7 +26,7 @@ struct dma_coherent_mem { | |||
26 | void *dma_alloc_coherent(struct device *dev, size_t size, | 26 | void *dma_alloc_coherent(struct device *dev, size_t size, |
27 | dma_addr_t *dma_handle, gfp_t gfp) | 27 | dma_addr_t *dma_handle, gfp_t gfp) |
28 | { | 28 | { |
29 | void *ret; | 29 | void *ret, *ret_nocache; |
30 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; | 30 | struct dma_coherent_mem *mem = dev ? dev->dma_mem : NULL; |
31 | int order = get_order(size); | 31 | int order = get_order(size); |
32 | 32 | ||
@@ -44,17 +44,24 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
44 | } | 44 | } |
45 | 45 | ||
46 | ret = (void *)__get_free_pages(gfp, order); | 46 | ret = (void *)__get_free_pages(gfp, order); |
47 | 47 | if (!ret) | |
48 | if (ret != NULL) { | 48 | return NULL; |
49 | memset(ret, 0, size); | 49 | |
50 | /* | 50 | memset(ret, 0, size); |
51 | * Pages from the page allocator may have data present in | 51 | /* |
52 | * cache. So flush the cache before using uncached memory. | 52 | * Pages from the page allocator may have data present in |
53 | */ | 53 | * cache. So flush the cache before using uncached memory. |
54 | dma_cache_sync(NULL, ret, size, DMA_BIDIRECTIONAL); | 54 | */ |
55 | *dma_handle = virt_to_phys(ret); | 55 | dma_cache_sync(dev, ret, size, DMA_BIDIRECTIONAL); |
56 | |||
57 | ret_nocache = ioremap_nocache(virt_to_phys(ret), size); | ||
58 | if (!ret_nocache) { | ||
59 | free_pages((unsigned long)ret, order); | ||
60 | return NULL; | ||
56 | } | 61 | } |
57 | return ret; | 62 | |
63 | *dma_handle = virt_to_phys(ret); | ||
64 | return ret_nocache; | ||
58 | } | 65 | } |
59 | EXPORT_SYMBOL(dma_alloc_coherent); | 66 | EXPORT_SYMBOL(dma_alloc_coherent); |
60 | 67 | ||
@@ -71,7 +78,8 @@ void dma_free_coherent(struct device *dev, size_t size, | |||
71 | } else { | 78 | } else { |
72 | WARN_ON(irqs_disabled()); /* for portability */ | 79 | WARN_ON(irqs_disabled()); /* for portability */ |
73 | BUG_ON(mem && mem->flags & DMA_MEMORY_EXCLUSIVE); | 80 | BUG_ON(mem && mem->flags & DMA_MEMORY_EXCLUSIVE); |
74 | free_pages((unsigned long)vaddr, order); | 81 | free_pages((unsigned long)phys_to_virt(dma_handle), order); |
82 | iounmap(vaddr); | ||
75 | } | 83 | } |
76 | } | 84 | } |
77 | EXPORT_SYMBOL(dma_free_coherent); | 85 | EXPORT_SYMBOL(dma_free_coherent); |
diff --git a/arch/sh/mm/fault_32.c b/arch/sh/mm/fault_32.c index 33b43d20e9f6..d1fa27594c6e 100644 --- a/arch/sh/mm/fault_32.c +++ b/arch/sh/mm/fault_32.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
16 | #include <linux/hardirq.h> | 16 | #include <linux/hardirq.h> |
17 | #include <linux/kprobes.h> | 17 | #include <linux/kprobes.h> |
18 | #include <asm/io_trapped.h> | ||
18 | #include <asm/system.h> | 19 | #include <asm/system.h> |
19 | #include <asm/mmu_context.h> | 20 | #include <asm/mmu_context.h> |
20 | #include <asm/tlbflush.h> | 21 | #include <asm/tlbflush.h> |
@@ -163,6 +164,8 @@ no_context: | |||
163 | if (fixup_exception(regs)) | 164 | if (fixup_exception(regs)) |
164 | return; | 165 | return; |
165 | 166 | ||
167 | if (handle_trapped_io(regs, address)) | ||
168 | return; | ||
166 | /* | 169 | /* |
167 | * Oops. The kernel tried to access some bad page. We'll have to | 170 | * Oops. The kernel tried to access some bad page. We'll have to |
168 | * terminate things with extreme prejudice. | 171 | * terminate things with extreme prejudice. |
@@ -296,6 +299,14 @@ asmlinkage int __kprobes __do_page_fault(struct pt_regs *regs, | |||
296 | entry = pte_mkdirty(entry); | 299 | entry = pte_mkdirty(entry); |
297 | entry = pte_mkyoung(entry); | 300 | entry = pte_mkyoung(entry); |
298 | 301 | ||
302 | #if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SMP) | ||
303 | /* | ||
304 | * ITLB is not affected by "ldtlb" instruction. | ||
305 | * So, we need to flush the entry by ourselves. | ||
306 | */ | ||
307 | local_flush_tlb_one(get_asid(), address & PAGE_MASK); | ||
308 | #endif | ||
309 | |||
299 | set_pte(pte, entry); | 310 | set_pte(pte, entry); |
300 | update_mmu_cache(NULL, address, entry); | 311 | update_mmu_cache(NULL, address, entry); |
301 | 312 | ||
diff --git a/arch/sh/mm/init.c b/arch/sh/mm/init.c index 2918c6b14659..e2ed6dd252b9 100644 --- a/arch/sh/mm/init.c +++ b/arch/sh/mm/init.c | |||
@@ -203,6 +203,7 @@ void __init paging_init(void) | |||
203 | 203 | ||
204 | free_area_init_nodes(max_zone_pfns); | 204 | free_area_init_nodes(max_zone_pfns); |
205 | 205 | ||
206 | #ifdef CONFIG_SUPERH32 | ||
206 | /* Set up the uncached fixmap */ | 207 | /* Set up the uncached fixmap */ |
207 | set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start)); | 208 | set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start)); |
208 | 209 | ||
@@ -214,6 +215,7 @@ void __init paging_init(void) | |||
214 | */ | 215 | */ |
215 | cached_to_uncached = P2SEG - P1SEG; | 216 | cached_to_uncached = P2SEG - P1SEG; |
216 | #endif | 217 | #endif |
218 | #endif | ||
217 | } | 219 | } |
218 | 220 | ||
219 | static struct kcore_list kcore_mem, kcore_vmalloc; | 221 | static struct kcore_list kcore_mem, kcore_vmalloc; |
diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types index 25810670a0fa..67997af25c0c 100644 --- a/arch/sh/tools/mach-types +++ b/arch/sh/tools/mach-types | |||
@@ -45,3 +45,5 @@ MAGICPANELR2 SH_MAGIC_PANEL_R2 | |||
45 | R2D_PLUS RTS7751R2D_PLUS | 45 | R2D_PLUS RTS7751R2D_PLUS |
46 | R2D_1 RTS7751R2D_1 | 46 | R2D_1 RTS7751R2D_1 |
47 | CAYMAN SH_CAYMAN | 47 | CAYMAN SH_CAYMAN |
48 | SDK7780 SH_SDK7780 | ||
49 | MIGOR SH_MIGOR | ||
diff --git a/arch/sparc64/solaris/fs.c b/arch/sparc64/solaris/fs.c index 9311bfe4f2f7..7d035f0d3ae1 100644 --- a/arch/sparc64/solaris/fs.c +++ b/arch/sparc64/solaris/fs.c | |||
@@ -434,9 +434,9 @@ asmlinkage int solaris_statvfs(u32 path, u32 buf) | |||
434 | 434 | ||
435 | error = user_path_walk(A(path),&nd); | 435 | error = user_path_walk(A(path),&nd); |
436 | if (!error) { | 436 | if (!error) { |
437 | struct inode * inode = nd.dentry->d_inode; | 437 | struct inode *inode = nd.path.dentry->d_inode; |
438 | error = report_statvfs(nd.mnt, inode, buf); | 438 | error = report_statvfs(nd.path.mnt, inode, buf); |
439 | path_release(&nd); | 439 | path_put(&nd.path); |
440 | } | 440 | } |
441 | return error; | 441 | return error; |
442 | } | 442 | } |
@@ -464,9 +464,9 @@ asmlinkage int solaris_statvfs64(u32 path, u32 buf) | |||
464 | lock_kernel(); | 464 | lock_kernel(); |
465 | error = user_path_walk(A(path), &nd); | 465 | error = user_path_walk(A(path), &nd); |
466 | if (!error) { | 466 | if (!error) { |
467 | struct inode * inode = nd.dentry->d_inode; | 467 | struct inode *inode = nd.path.dentry->d_inode; |
468 | error = report_statvfs64(nd.mnt, inode, buf); | 468 | error = report_statvfs64(nd.path.mnt, inode, buf); |
469 | path_release(&nd); | 469 | path_put(&nd.path); |
470 | } | 470 | } |
471 | unlock_kernel(); | 471 | unlock_kernel(); |
472 | return error; | 472 | return error; |
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index ebb265c07e4d..19d579d74d27 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c | |||
@@ -145,8 +145,8 @@ void mconsole_proc(struct mc_request *req) | |||
145 | } | 145 | } |
146 | up_write(&super->s_umount); | 146 | up_write(&super->s_umount); |
147 | 147 | ||
148 | nd.dentry = super->s_root; | 148 | nd.path.dentry = super->s_root; |
149 | nd.mnt = NULL; | 149 | nd.path.mnt = NULL; |
150 | nd.flags = O_RDONLY + 1; | 150 | nd.flags = O_RDONLY + 1; |
151 | nd.last_type = LAST_ROOT; | 151 | nd.last_type = LAST_ROOT; |
152 | 152 | ||
@@ -159,7 +159,7 @@ void mconsole_proc(struct mc_request *req) | |||
159 | goto out_kill; | 159 | goto out_kill; |
160 | } | 160 | } |
161 | 161 | ||
162 | file = dentry_open(nd.dentry, nd.mnt, O_RDONLY); | 162 | file = dentry_open(nd.path.dentry, nd.path.mnt, O_RDONLY); |
163 | if (IS_ERR(file)) { | 163 | if (IS_ERR(file)) { |
164 | mconsole_reply(req, "Failed to open file", 1, 0); | 164 | mconsole_reply(req, "Failed to open file", 1, 0); |
165 | goto out_kill; | 165 | goto out_kill; |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index aaed1a3b92d6..3be2305709b7 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -21,6 +21,8 @@ config X86 | |||
21 | select HAVE_IDE | 21 | select HAVE_IDE |
22 | select HAVE_OPROFILE | 22 | select HAVE_OPROFILE |
23 | select HAVE_KPROBES | 23 | select HAVE_KPROBES |
24 | select HAVE_KVM | ||
25 | |||
24 | 26 | ||
25 | config GENERIC_LOCKBREAK | 27 | config GENERIC_LOCKBREAK |
26 | def_bool n | 28 | def_bool n |
@@ -119,8 +121,6 @@ config ARCH_HAS_CPU_RELAX | |||
119 | config HAVE_SETUP_PER_CPU_AREA | 121 | config HAVE_SETUP_PER_CPU_AREA |
120 | def_bool X86_64 | 122 | def_bool X86_64 |
121 | 123 | ||
122 | select HAVE_KVM | ||
123 | |||
124 | config ARCH_HIBERNATION_POSSIBLE | 124 | config ARCH_HIBERNATION_POSSIBLE |
125 | def_bool y | 125 | def_bool y |
126 | depends on !SMP || !X86_VOYAGER | 126 | depends on !SMP || !X86_VOYAGER |
diff --git a/arch/x86/kernel/acpi/cstate.c b/arch/x86/kernel/acpi/cstate.c index 10b67170b133..8ca3557a6d59 100644 --- a/arch/x86/kernel/acpi/cstate.c +++ b/arch/x86/kernel/acpi/cstate.c | |||
@@ -126,6 +126,8 @@ int acpi_processor_ffh_cstate_probe(unsigned int cpu, | |||
126 | printk(KERN_DEBUG "Monitor-Mwait will be used to enter C-%d " | 126 | printk(KERN_DEBUG "Monitor-Mwait will be used to enter C-%d " |
127 | "state\n", cx->type); | 127 | "state\n", cx->type); |
128 | } | 128 | } |
129 | snprintf(cx->desc, ACPI_CX_DESC_LEN, "ACPI FFH INTEL MWAIT 0x%x", | ||
130 | cx->address); | ||
129 | 131 | ||
130 | out: | 132 | out: |
131 | set_cpus_allowed(current, saved_mask); | 133 | set_cpus_allowed(current, saved_mask); |
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index cbdf9bacc575..0c0eeb163d90 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
@@ -391,7 +391,7 @@ static void __init runtime_code_page_mkexec(void) | |||
391 | if (md->type != EFI_RUNTIME_SERVICES_CODE) | 391 | if (md->type != EFI_RUNTIME_SERVICES_CODE) |
392 | continue; | 392 | continue; |
393 | 393 | ||
394 | set_memory_x(md->virt_addr, md->num_pages << EFI_PAGE_SHIFT); | 394 | set_memory_x(md->virt_addr, md->num_pages); |
395 | } | 395 | } |
396 | } | 396 | } |
397 | 397 | ||
@@ -434,7 +434,7 @@ void __init efi_enter_virtual_mode(void) | |||
434 | } | 434 | } |
435 | 435 | ||
436 | if (!(md->attribute & EFI_MEMORY_WB)) | 436 | if (!(md->attribute & EFI_MEMORY_WB)) |
437 | set_memory_uc(md->virt_addr, size); | 437 | set_memory_uc(md->virt_addr, md->num_pages); |
438 | 438 | ||
439 | systab = (u64) (unsigned long) efi_phys.systab; | 439 | systab = (u64) (unsigned long) efi_phys.systab; |
440 | if (md->phys_addr <= systab && systab < end) { | 440 | if (md->phys_addr <= systab && systab < end) { |
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index 65f6acb025c8..faf3229f8fb3 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c | |||
@@ -749,6 +749,15 @@ void __init gart_iommu_init(void) | |||
749 | */ | 749 | */ |
750 | set_memory_np((unsigned long)__va(iommu_bus_base), | 750 | set_memory_np((unsigned long)__va(iommu_bus_base), |
751 | iommu_size >> PAGE_SHIFT); | 751 | iommu_size >> PAGE_SHIFT); |
752 | /* | ||
753 | * Tricky. The GART table remaps the physical memory range, | ||
754 | * so the CPU wont notice potential aliases and if the memory | ||
755 | * is remapped to UC later on, we might surprise the PCI devices | ||
756 | * with a stray writeout of a cacheline. So play it sure and | ||
757 | * do an explicit, full-scale wbinvd() _after_ having marked all | ||
758 | * the pages as Not-Present: | ||
759 | */ | ||
760 | wbinvd(); | ||
752 | 761 | ||
753 | /* | 762 | /* |
754 | * Try to workaround a bug (thanks to BenH) | 763 | * Try to workaround a bug (thanks to BenH) |
diff --git a/arch/x86/kernel/test_rodata.c b/arch/x86/kernel/test_rodata.c index 4c163772000e..c29e235792af 100644 --- a/arch/x86/kernel/test_rodata.c +++ b/arch/x86/kernel/test_rodata.c | |||
@@ -10,8 +10,8 @@ | |||
10 | * of the License. | 10 | * of the License. |
11 | */ | 11 | */ |
12 | #include <linux/module.h> | 12 | #include <linux/module.h> |
13 | #include <asm/cacheflush.h> | ||
13 | #include <asm/sections.h> | 14 | #include <asm/sections.h> |
14 | extern int rodata_test_data; | ||
15 | 15 | ||
16 | int rodata_test(void) | 16 | int rodata_test(void) |
17 | { | 17 | { |
diff --git a/arch/x86/kernel/traps_64.c b/arch/x86/kernel/traps_64.c index efc66df728b6..045466681911 100644 --- a/arch/x86/kernel/traps_64.c +++ b/arch/x86/kernel/traps_64.c | |||
@@ -84,7 +84,7 @@ static inline void conditional_sti(struct pt_regs *regs) | |||
84 | 84 | ||
85 | static inline void preempt_conditional_sti(struct pt_regs *regs) | 85 | static inline void preempt_conditional_sti(struct pt_regs *regs) |
86 | { | 86 | { |
87 | preempt_disable(); | 87 | inc_preempt_count(); |
88 | if (regs->flags & X86_EFLAGS_IF) | 88 | if (regs->flags & X86_EFLAGS_IF) |
89 | local_irq_enable(); | 89 | local_irq_enable(); |
90 | } | 90 | } |
@@ -95,7 +95,7 @@ static inline void preempt_conditional_cli(struct pt_regs *regs) | |||
95 | local_irq_disable(); | 95 | local_irq_disable(); |
96 | /* Make sure to not schedule here because we could be running | 96 | /* Make sure to not schedule here because we could be running |
97 | on an exception stack. */ | 97 | on an exception stack. */ |
98 | preempt_enable_no_resched(); | 98 | dec_preempt_count(); |
99 | } | 99 | } |
100 | 100 | ||
101 | int kstack_depth_to_print = 12; | 101 | int kstack_depth_to_print = 12; |
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index 621afb6343dc..fdc667422df9 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c | |||
@@ -186,7 +186,7 @@ static int bad_address(void *p) | |||
186 | } | 186 | } |
187 | #endif | 187 | #endif |
188 | 188 | ||
189 | void dump_pagetable(unsigned long address) | 189 | static void dump_pagetable(unsigned long address) |
190 | { | 190 | { |
191 | #ifdef CONFIG_X86_32 | 191 | #ifdef CONFIG_X86_32 |
192 | __typeof__(pte_val(__pte(0))) page; | 192 | __typeof__(pte_val(__pte(0))) page; |
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index 8106bba41ecb..ee1091a46964 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -47,6 +47,7 @@ | |||
47 | #include <asm/sections.h> | 47 | #include <asm/sections.h> |
48 | #include <asm/paravirt.h> | 48 | #include <asm/paravirt.h> |
49 | #include <asm/setup.h> | 49 | #include <asm/setup.h> |
50 | #include <asm/cacheflush.h> | ||
50 | 51 | ||
51 | unsigned int __VMALLOC_RESERVE = 128 << 20; | 52 | unsigned int __VMALLOC_RESERVE = 128 << 20; |
52 | 53 | ||
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index b59fc238151f..a4a9cccdd4f2 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <asm/sections.h> | 45 | #include <asm/sections.h> |
46 | #include <asm/kdebug.h> | 46 | #include <asm/kdebug.h> |
47 | #include <asm/numa.h> | 47 | #include <asm/numa.h> |
48 | #include <asm/cacheflush.h> | ||
48 | 49 | ||
49 | const struct dma_mapping_ops *dma_ops; | 50 | const struct dma_mapping_ops *dma_ops; |
50 | EXPORT_SYMBOL(dma_ops); | 51 | EXPORT_SYMBOL(dma_ops); |
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index bd61ed13f9cf..4119379f80ff 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -688,6 +688,15 @@ static int change_page_attr_set_clr(unsigned long addr, int numpages, | |||
688 | if (!pgprot_val(mask_set) && !pgprot_val(mask_clr)) | 688 | if (!pgprot_val(mask_set) && !pgprot_val(mask_clr)) |
689 | return 0; | 689 | return 0; |
690 | 690 | ||
691 | /* Ensure we are PAGE_SIZE aligned */ | ||
692 | if (addr & ~PAGE_MASK) { | ||
693 | addr &= PAGE_MASK; | ||
694 | /* | ||
695 | * People should not be passing in unaligned addresses: | ||
696 | */ | ||
697 | WARN_ON_ONCE(1); | ||
698 | } | ||
699 | |||
691 | cpa.vaddr = addr; | 700 | cpa.vaddr = addr; |
692 | cpa.numpages = numpages; | 701 | cpa.numpages = numpages; |
693 | cpa.mask_set = mask_set; | 702 | cpa.mask_set = mask_set; |
@@ -861,8 +870,12 @@ void kernel_map_pages(struct page *page, int numpages, int enable) | |||
861 | return; | 870 | return; |
862 | 871 | ||
863 | /* | 872 | /* |
864 | * The return value is ignored - the calls cannot fail, | 873 | * The return value is ignored as the calls cannot fail. |
865 | * large pages are disabled at boot time: | 874 | * Large pages are kept enabled at boot time, and are |
875 | * split up quickly with DEBUG_PAGEALLOC. If a splitup | ||
876 | * fails here (due to temporary memory shortage) no damage | ||
877 | * is done because we just keep the largepage intact up | ||
878 | * to the next attempt when it will likely be split up: | ||
866 | */ | 879 | */ |
867 | if (enable) | 880 | if (enable) |
868 | __set_pages_p(page, numpages); | 881 | __set_pages_p(page, numpages); |
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index 9ce983ed60f0..ea92bac42c53 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c | |||
@@ -186,6 +186,12 @@ static int __init dmi_unknown_osi_linux(const struct dmi_system_id *d) | |||
186 | acpi_dmi_osi_linux(-1, d); /* unknown */ | 186 | acpi_dmi_osi_linux(-1, d); /* unknown */ |
187 | return 0; | 187 | return 0; |
188 | } | 188 | } |
189 | static int __init dmi_disable_osi_vista(const struct dmi_system_id *d) | ||
190 | { | ||
191 | printk(KERN_NOTICE PREFIX "DMI detected: %s\n", d->ident); | ||
192 | acpi_osi_setup("!Windows 2006"); | ||
193 | return 0; | ||
194 | } | ||
189 | 195 | ||
190 | /* | 196 | /* |
191 | * Most BIOS that invoke OSI(Linux) do nothing with it. | 197 | * Most BIOS that invoke OSI(Linux) do nothing with it. |
@@ -228,10 +234,10 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
228 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 5520"), | 234 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 5520"), |
229 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 6460"), | 235 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 6460"), |
230 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 7510"), | 236 | * DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate 7510"), |
231 | * DMI_MATCH(DMI_PRODUCT_NAME, "Extensa 5220"), | ||
232 | * | 237 | * |
233 | * _OSI(Linux) is a NOP: | 238 | * _OSI(Linux) is a NOP: |
234 | * DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"), | 239 | * DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"), |
240 | * DMI_MATCH(DMI_PRODUCT_NAME, "Extensa 5220"), | ||
235 | */ | 241 | */ |
236 | { | 242 | { |
237 | .callback = dmi_disable_osi_linux, | 243 | .callback = dmi_disable_osi_linux, |
@@ -327,12 +333,20 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
327 | }, | 333 | }, |
328 | { /* OSI(Linux) effect unknown */ | 334 | { /* OSI(Linux) effect unknown */ |
329 | .callback = dmi_unknown_osi_linux, | 335 | .callback = dmi_unknown_osi_linux, |
330 | .ident = "Dell OP GX620", | 336 | .ident = "Dell OptiPlex GX620", |
331 | .matches = { | 337 | .matches = { |
332 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | 338 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
333 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex GX620"), | 339 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex GX620"), |
334 | }, | 340 | }, |
335 | }, | 341 | }, |
342 | { /* OSI(Linux) causes some USB initialization to not run */ | ||
343 | .callback = dmi_unknown_osi_linux, | ||
344 | .ident = "Dell OptiPlex 755", | ||
345 | .matches = { | ||
346 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
347 | DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex 755"), | ||
348 | }, | ||
349 | }, | ||
336 | { /* OSI(Linux) effect unknown */ | 350 | { /* OSI(Linux) effect unknown */ |
337 | .callback = dmi_unknown_osi_linux, | 351 | .callback = dmi_unknown_osi_linux, |
338 | .ident = "Dell PE 1900", | 352 | .ident = "Dell PE 1900", |
@@ -342,6 +356,14 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
342 | }, | 356 | }, |
343 | }, | 357 | }, |
344 | { /* OSI(Linux) is a NOP */ | 358 | { /* OSI(Linux) is a NOP */ |
359 | .callback = dmi_unknown_osi_linux, | ||
360 | .ident = "Dell PE 1950", | ||
361 | .matches = { | ||
362 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
363 | DMI_MATCH(DMI_PRODUCT_NAME, "PowerEdge 1950"), | ||
364 | }, | ||
365 | }, | ||
366 | { /* OSI(Linux) is a NOP */ | ||
345 | .callback = dmi_disable_osi_linux, | 367 | .callback = dmi_disable_osi_linux, |
346 | .ident = "Dell PE R200", | 368 | .ident = "Dell PE R200", |
347 | .matches = { | 369 | .matches = { |
@@ -357,6 +379,22 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
357 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation 390"), | 379 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation 390"), |
358 | }, | 380 | }, |
359 | }, | 381 | }, |
382 | { /* OSI(Linux) touches USB */ | ||
383 | .callback = dmi_unknown_osi_linux, | ||
384 | .ident = "Dell PR 390", | ||
385 | .matches = { | ||
386 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
387 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision WorkStation 690"), | ||
388 | }, | ||
389 | }, | ||
390 | { /* OSI(Linux) unknown - ASL looks benign, but may effect dock/SMM */ | ||
391 | .callback = dmi_unknown_osi_linux, | ||
392 | .ident = "Dell PR M4300", | ||
393 | .matches = { | ||
394 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
395 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision M4300"), | ||
396 | }, | ||
397 | }, | ||
360 | { /* OSI(Linux) is a NOP */ | 398 | { /* OSI(Linux) is a NOP */ |
361 | .callback = dmi_disable_osi_linux, | 399 | .callback = dmi_disable_osi_linux, |
362 | .ident = "Dell Vostro 1000", | 400 | .ident = "Dell Vostro 1000", |
@@ -390,10 +428,10 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
390 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pi 1536"), | 428 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pi 1536"), |
391 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pi 1556"), | 429 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Pi 1556"), |
392 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 1546"), | 430 | * DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 1546"), |
431 | * DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile V5505"), | ||
393 | * _OSI(Linux) unknown effect: | 432 | * _OSI(Linux) unknown effect: |
394 | * DMI_MATCH(DMI_PRODUCT_NAME, "Amilo M1425"), | 433 | * DMI_MATCH(DMI_PRODUCT_NAME, "Amilo M1425"), |
395 | * DMI_MATCH(DMI_PRODUCT_NAME, "Amilo Si 1520"), | 434 | * DMI_MATCH(DMI_PRODUCT_NAME, "Amilo Si 1520"), |
396 | * DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile V5505"), | ||
397 | */ | 435 | */ |
398 | { | 436 | { |
399 | .callback = dmi_disable_osi_linux, | 437 | .callback = dmi_disable_osi_linux, |
@@ -402,6 +440,14 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
402 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | 440 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
403 | }, | 441 | }, |
404 | }, | 442 | }, |
443 | { | ||
444 | .callback = dmi_disable_osi_vista, | ||
445 | .ident = "Fujitsu Siemens", | ||
446 | .matches = { | ||
447 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | ||
448 | DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile V5505"), | ||
449 | }, | ||
450 | }, | ||
405 | /* | 451 | /* |
406 | * Disable OSI(Linux) warnings on all "Hewlett-Packard" | 452 | * Disable OSI(Linux) warnings on all "Hewlett-Packard" |
407 | * | 453 | * |
@@ -443,10 +489,11 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
443 | * _OSI(Linux) helps sound | 489 | * _OSI(Linux) helps sound |
444 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad R61"), | 490 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad R61"), |
445 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T61"), | 491 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T61"), |
492 | * _OSI(Linux) has Linux specific hooks | ||
493 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), | ||
446 | * _OSI(Linux) is a NOP: | 494 | * _OSI(Linux) is a NOP: |
447 | * DMI_MATCH(DMI_PRODUCT_VERSION, "3000 N100"), | 495 | * DMI_MATCH(DMI_PRODUCT_VERSION, "3000 N100"), |
448 | * _OSI(Linux) effect unknown | 496 | * DMI_MATCH(DMI_PRODUCT_VERSION, "LENOVO3000 V100"), |
449 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), | ||
450 | */ | 497 | */ |
451 | { | 498 | { |
452 | .callback = dmi_enable_osi_linux, | 499 | .callback = dmi_enable_osi_linux, |
@@ -465,7 +512,7 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
465 | }, | 512 | }, |
466 | }, | 513 | }, |
467 | { | 514 | { |
468 | .callback = dmi_unknown_osi_linux, | 515 | .callback = dmi_enable_osi_linux, |
469 | .ident = "Lenovo ThinkPad X61", | 516 | .ident = "Lenovo ThinkPad X61", |
470 | .matches = { | 517 | .matches = { |
471 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | 518 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), |
@@ -473,7 +520,7 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
473 | }, | 520 | }, |
474 | }, | 521 | }, |
475 | { | 522 | { |
476 | .callback = dmi_unknown_osi_linux, | 523 | .callback = dmi_disable_osi_linux, |
477 | .ident = "Lenovo 3000 V100", | 524 | .ident = "Lenovo 3000 V100", |
478 | .matches = { | 525 | .matches = { |
479 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | 526 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), |
@@ -543,8 +590,9 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
543 | * Disable OSI(Linux) warnings on all "Sony Corporation" | 590 | * Disable OSI(Linux) warnings on all "Sony Corporation" |
544 | * | 591 | * |
545 | * _OSI(Linux) is a NOP: | 592 | * _OSI(Linux) is a NOP: |
546 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SZ650N"), | 593 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NR11S_S"), |
547 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SZ38GP_C"), | 594 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SZ38GP_C"), |
595 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SZ650N"), | ||
548 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-TZ21MN_N"), | 596 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-TZ21MN_N"), |
549 | * _OSI(Linux) unknown effect: | 597 | * _OSI(Linux) unknown effect: |
550 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ11M"), | 598 | * DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FZ11M"), |
diff --git a/drivers/acpi/event.c b/drivers/acpi/event.c index 5479dc0eeeec..abec1ca94cf4 100644 --- a/drivers/acpi/event.c +++ b/drivers/acpi/event.c | |||
@@ -110,7 +110,7 @@ static const struct file_operations acpi_system_event_ops = { | |||
110 | #endif /* CONFIG_ACPI_PROC_EVENT */ | 110 | #endif /* CONFIG_ACPI_PROC_EVENT */ |
111 | 111 | ||
112 | /* ACPI notifier chain */ | 112 | /* ACPI notifier chain */ |
113 | BLOCKING_NOTIFIER_HEAD(acpi_chain_head); | 113 | static BLOCKING_NOTIFIER_HEAD(acpi_chain_head); |
114 | 114 | ||
115 | int acpi_notifier_call_chain(struct acpi_device *dev, u32 type, u32 data) | 115 | int acpi_notifier_call_chain(struct acpi_device *dev, u32 type, u32 data) |
116 | { | 116 | { |
diff --git a/drivers/acpi/hardware/hwsleep.c b/drivers/acpi/hardware/hwsleep.c index 058d0be5cbe2..4290e0193097 100644 --- a/drivers/acpi/hardware/hwsleep.c +++ b/drivers/acpi/hardware/hwsleep.c | |||
@@ -616,6 +616,7 @@ acpi_status acpi_leave_sleep_state(u8 sleep_state) | |||
616 | return_ACPI_STATUS(status); | 616 | return_ACPI_STATUS(status); |
617 | } | 617 | } |
618 | 618 | ||
619 | arg.integer.value = sleep_state; | ||
619 | status = acpi_evaluate_object(NULL, METHOD_NAME__WAK, &arg_list, NULL); | 620 | status = acpi_evaluate_object(NULL, METHOD_NAME__WAK, &arg_list, NULL); |
620 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { | 621 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { |
621 | ACPI_EXCEPTION((AE_INFO, status, "During Method _WAK")); | 622 | ACPI_EXCEPTION((AE_INFO, status, "During Method _WAK")); |
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 15e602377655..8edba7b678eb 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -325,7 +325,7 @@ acpi_os_predefined_override(const struct acpi_predefined_names *init_val, | |||
325 | } | 325 | } |
326 | 326 | ||
327 | #ifdef CONFIG_ACPI_CUSTOM_DSDT_INITRD | 327 | #ifdef CONFIG_ACPI_CUSTOM_DSDT_INITRD |
328 | struct acpi_table_header *acpi_find_dsdt_initrd(void) | 328 | static struct acpi_table_header *acpi_find_dsdt_initrd(void) |
329 | { | 329 | { |
330 | struct file *firmware_file; | 330 | struct file *firmware_file; |
331 | mm_segment_t oldfs; | 331 | mm_segment_t oldfs; |
@@ -419,7 +419,7 @@ acpi_os_table_override(struct acpi_table_header * existing_table, | |||
419 | } | 419 | } |
420 | 420 | ||
421 | #ifdef CONFIG_ACPI_CUSTOM_DSDT_INITRD | 421 | #ifdef CONFIG_ACPI_CUSTOM_DSDT_INITRD |
422 | int __init acpi_no_initrd_override_setup(char *s) | 422 | static int __init acpi_no_initrd_override_setup(char *s) |
423 | { | 423 | { |
424 | acpi_no_initrd_override = 1; | 424 | acpi_no_initrd_override = 1; |
425 | return 1; | 425 | return 1; |
@@ -1109,7 +1109,7 @@ void __init acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d) | |||
1109 | * string starting with '!' disables that string | 1109 | * string starting with '!' disables that string |
1110 | * otherwise string is added to list, augmenting built-in strings | 1110 | * otherwise string is added to list, augmenting built-in strings |
1111 | */ | 1111 | */ |
1112 | static int __init acpi_osi_setup(char *str) | 1112 | int __init acpi_osi_setup(char *str) |
1113 | { | 1113 | { |
1114 | if (str == NULL || *str == '\0') { | 1114 | if (str == NULL || *str == '\0') { |
1115 | printk(KERN_INFO PREFIX "_OSI method disabled\n"); | 1115 | printk(KERN_INFO PREFIX "_OSI method disabled\n"); |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 32003fdc91e8..980e1c33e6c5 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -945,11 +945,16 @@ static int acpi_processor_get_power_info_cst(struct acpi_processor *pr) | |||
945 | * Otherwise, ignore this info and continue. | 945 | * Otherwise, ignore this info and continue. |
946 | */ | 946 | */ |
947 | cx.entry_method = ACPI_CSTATE_HALT; | 947 | cx.entry_method = ACPI_CSTATE_HALT; |
948 | snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI HLT"); | ||
948 | } else { | 949 | } else { |
949 | continue; | 950 | continue; |
950 | } | 951 | } |
952 | } else { | ||
953 | snprintf(cx.desc, ACPI_CX_DESC_LEN, "ACPI IOPORT 0x%x", | ||
954 | cx.address); | ||
951 | } | 955 | } |
952 | 956 | ||
957 | |||
953 | obj = &(element->package.elements[2]); | 958 | obj = &(element->package.elements[2]); |
954 | if (obj->type != ACPI_TYPE_INTEGER) | 959 | if (obj->type != ACPI_TYPE_INTEGER) |
955 | continue; | 960 | continue; |
@@ -1420,6 +1425,14 @@ static int acpi_idle_enter_c1(struct cpuidle_device *dev, | |||
1420 | return 0; | 1425 | return 0; |
1421 | 1426 | ||
1422 | local_irq_disable(); | 1427 | local_irq_disable(); |
1428 | |||
1429 | /* Do not access any ACPI IO ports in suspend path */ | ||
1430 | if (acpi_idle_suspend) { | ||
1431 | acpi_safe_halt(); | ||
1432 | local_irq_enable(); | ||
1433 | return 0; | ||
1434 | } | ||
1435 | |||
1423 | if (pr->flags.bm_check) | 1436 | if (pr->flags.bm_check) |
1424 | acpi_idle_update_bm_rld(pr, cx); | 1437 | acpi_idle_update_bm_rld(pr, cx); |
1425 | 1438 | ||
@@ -1643,6 +1656,11 @@ static int acpi_processor_setup_cpuidle(struct acpi_processor *pr) | |||
1643 | return -EINVAL; | 1656 | return -EINVAL; |
1644 | } | 1657 | } |
1645 | 1658 | ||
1659 | for (i = 0; i < CPUIDLE_STATE_MAX; i++) { | ||
1660 | dev->states[i].name[0] = '\0'; | ||
1661 | dev->states[i].desc[0] = '\0'; | ||
1662 | } | ||
1663 | |||
1646 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) { | 1664 | for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) { |
1647 | cx = &pr->power.states[i]; | 1665 | cx = &pr->power.states[i]; |
1648 | state = &dev->states[count]; | 1666 | state = &dev->states[count]; |
@@ -1659,6 +1677,7 @@ static int acpi_processor_setup_cpuidle(struct acpi_processor *pr) | |||
1659 | cpuidle_set_statedata(state, cx); | 1677 | cpuidle_set_statedata(state, cx); |
1660 | 1678 | ||
1661 | snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i); | 1679 | snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i); |
1680 | strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN); | ||
1662 | state->exit_latency = cx->latency; | 1681 | state->exit_latency = cx->latency; |
1663 | state->target_residency = cx->latency * latency_factor; | 1682 | state->target_residency = cx->latency * latency_factor; |
1664 | state->power_usage = cx->power; | 1683 | state->power_usage = cx->power; |
diff --git a/drivers/block/swim3.c b/drivers/block/swim3.c index b4e462f154ea..730ccea78e45 100644 --- a/drivers/block/swim3.c +++ b/drivers/block/swim3.c | |||
@@ -251,10 +251,6 @@ static int floppy_release(struct inode *inode, struct file *filp); | |||
251 | static int floppy_check_change(struct gendisk *disk); | 251 | static int floppy_check_change(struct gendisk *disk); |
252 | static int floppy_revalidate(struct gendisk *disk); | 252 | static int floppy_revalidate(struct gendisk *disk); |
253 | 253 | ||
254 | #ifndef CONFIG_PMAC_MEDIABAY | ||
255 | #define check_media_bay(which, what) 1 | ||
256 | #endif | ||
257 | |||
258 | static void swim3_select(struct floppy_state *fs, int sel) | 254 | static void swim3_select(struct floppy_state *fs, int sel) |
259 | { | 255 | { |
260 | struct swim3 __iomem *sw = fs->swim3; | 256 | struct swim3 __iomem *sw = fs->swim3; |
diff --git a/drivers/char/hvc_rtas.c b/drivers/char/hvc_rtas.c index bb09413d5a21..88590d040046 100644 --- a/drivers/char/hvc_rtas.c +++ b/drivers/char/hvc_rtas.c | |||
@@ -76,7 +76,7 @@ static struct hv_ops hvc_rtas_get_put_ops = { | |||
76 | .put_chars = hvc_rtas_write_console, | 76 | .put_chars = hvc_rtas_write_console, |
77 | }; | 77 | }; |
78 | 78 | ||
79 | static int hvc_rtas_init(void) | 79 | static int __init hvc_rtas_init(void) |
80 | { | 80 | { |
81 | struct hvc_struct *hp; | 81 | struct hvc_struct *hp; |
82 | 82 | ||
diff --git a/drivers/cpuidle/cpuidle.c b/drivers/cpuidle/cpuidle.c index 60f71e6345e3..d73663a52324 100644 --- a/drivers/cpuidle/cpuidle.c +++ b/drivers/cpuidle/cpuidle.c | |||
@@ -219,7 +219,8 @@ static void poll_idle_init(struct cpuidle_device *dev) | |||
219 | 219 | ||
220 | cpuidle_set_statedata(state, NULL); | 220 | cpuidle_set_statedata(state, NULL); |
221 | 221 | ||
222 | snprintf(state->name, CPUIDLE_NAME_LEN, "C0 (poll idle)"); | 222 | snprintf(state->name, CPUIDLE_NAME_LEN, "C0"); |
223 | snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE"); | ||
223 | state->exit_latency = 0; | 224 | state->exit_latency = 0; |
224 | state->target_residency = 0; | 225 | state->target_residency = 0; |
225 | state->power_usage = -1; | 226 | state->power_usage = -1; |
diff --git a/drivers/cpuidle/sysfs.c b/drivers/cpuidle/sysfs.c index 088ea74edd34..69102ca05685 100644 --- a/drivers/cpuidle/sysfs.c +++ b/drivers/cpuidle/sysfs.c | |||
@@ -218,16 +218,23 @@ static ssize_t show_state_##_name(struct cpuidle_state *state, char *buf) \ | |||
218 | return sprintf(buf, "%u\n", state->_name);\ | 218 | return sprintf(buf, "%u\n", state->_name);\ |
219 | } | 219 | } |
220 | 220 | ||
221 | static ssize_t show_state_name(struct cpuidle_state *state, char *buf) | 221 | #define define_show_state_str_function(_name) \ |
222 | { | 222 | static ssize_t show_state_##_name(struct cpuidle_state *state, char *buf) \ |
223 | return sprintf(buf, "%s\n", state->name); | 223 | { \ |
224 | if (state->_name[0] == '\0')\ | ||
225 | return sprintf(buf, "<null>\n");\ | ||
226 | return sprintf(buf, "%s\n", state->_name);\ | ||
224 | } | 227 | } |
225 | 228 | ||
226 | define_show_state_function(exit_latency) | 229 | define_show_state_function(exit_latency) |
227 | define_show_state_function(power_usage) | 230 | define_show_state_function(power_usage) |
228 | define_show_state_function(usage) | 231 | define_show_state_function(usage) |
229 | define_show_state_function(time) | 232 | define_show_state_function(time) |
233 | define_show_state_str_function(name) | ||
234 | define_show_state_str_function(desc) | ||
235 | |||
230 | define_one_state_ro(name, show_state_name); | 236 | define_one_state_ro(name, show_state_name); |
237 | define_one_state_ro(desc, show_state_desc); | ||
231 | define_one_state_ro(latency, show_state_exit_latency); | 238 | define_one_state_ro(latency, show_state_exit_latency); |
232 | define_one_state_ro(power, show_state_power_usage); | 239 | define_one_state_ro(power, show_state_power_usage); |
233 | define_one_state_ro(usage, show_state_usage); | 240 | define_one_state_ro(usage, show_state_usage); |
@@ -235,6 +242,7 @@ define_one_state_ro(time, show_state_time); | |||
235 | 242 | ||
236 | static struct attribute *cpuidle_state_default_attrs[] = { | 243 | static struct attribute *cpuidle_state_default_attrs[] = { |
237 | &attr_name.attr, | 244 | &attr_name.attr, |
245 | &attr_desc.attr, | ||
238 | &attr_latency.attr, | 246 | &attr_latency.attr, |
239 | &attr_power.attr, | 247 | &attr_power.attr, |
240 | &attr_usage.attr, | 248 | &attr_usage.attr, |
diff --git a/drivers/hid/hid-input-quirks.c b/drivers/hid/hid-input-quirks.c index a870ba58faa3..dceadd0c1419 100644 --- a/drivers/hid/hid-input-quirks.c +++ b/drivers/hid/hid-input-quirks.c | |||
@@ -352,7 +352,7 @@ int hidinput_mapping_quirks(struct hid_usage *usage, | |||
352 | return 0; | 352 | return 0; |
353 | } | 353 | } |
354 | 354 | ||
355 | void hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value) | 355 | int hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, struct hid_usage *usage, __s32 value) |
356 | { | 356 | { |
357 | struct input_dev *input; | 357 | struct input_dev *input; |
358 | 358 | ||
@@ -362,34 +362,34 @@ void hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, stru | |||
362 | || ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_7) && (usage->hid == 0x00090007))) { | 362 | || ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_7) && (usage->hid == 0x00090007))) { |
363 | if (value) hid->quirks |= HID_QUIRK_2WHEEL_MOUSE_HACK_ON; | 363 | if (value) hid->quirks |= HID_QUIRK_2WHEEL_MOUSE_HACK_ON; |
364 | else hid->quirks &= ~HID_QUIRK_2WHEEL_MOUSE_HACK_ON; | 364 | else hid->quirks &= ~HID_QUIRK_2WHEEL_MOUSE_HACK_ON; |
365 | return; | 365 | return 1; |
366 | } | 366 | } |
367 | 367 | ||
368 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_B8) && | 368 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_B8) && |
369 | (usage->type == EV_REL) && | 369 | (usage->type == EV_REL) && |
370 | (usage->code == REL_WHEEL)) { | 370 | (usage->code == REL_WHEEL)) { |
371 | hid->delayed_value = value; | 371 | hid->delayed_value = value; |
372 | return; | 372 | return 1; |
373 | } | 373 | } |
374 | 374 | ||
375 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_B8) && | 375 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_B8) && |
376 | (usage->hid == 0x000100b8)) { | 376 | (usage->hid == 0x000100b8)) { |
377 | input_event(input, EV_REL, value ? REL_HWHEEL : REL_WHEEL, hid->delayed_value); | 377 | input_event(input, EV_REL, value ? REL_HWHEEL : REL_WHEEL, hid->delayed_value); |
378 | return; | 378 | return 1; |
379 | } | 379 | } |
380 | 380 | ||
381 | if ((hid->quirks & HID_QUIRK_INVERT_HWHEEL) && (usage->code == REL_HWHEEL)) { | 381 | if ((hid->quirks & HID_QUIRK_INVERT_HWHEEL) && (usage->code == REL_HWHEEL)) { |
382 | input_event(input, usage->type, usage->code, -value); | 382 | input_event(input, usage->type, usage->code, -value); |
383 | return; | 383 | return 1; |
384 | } | 384 | } |
385 | 385 | ||
386 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_ON) && (usage->code == REL_WHEEL)) { | 386 | if ((hid->quirks & HID_QUIRK_2WHEEL_MOUSE_HACK_ON) && (usage->code == REL_WHEEL)) { |
387 | input_event(input, usage->type, REL_HWHEEL, value); | 387 | input_event(input, usage->type, REL_HWHEEL, value); |
388 | return; | 388 | return 1; |
389 | } | 389 | } |
390 | 390 | ||
391 | if ((hid->quirks & HID_QUIRK_APPLE_HAS_FN) && hidinput_apple_event(hid, input, usage, value)) | 391 | if ((hid->quirks & HID_QUIRK_APPLE_HAS_FN) && hidinput_apple_event(hid, input, usage, value)) |
392 | return; | 392 | return 1; |
393 | 393 | ||
394 | /* Handling MS keyboards special buttons */ | 394 | /* Handling MS keyboards special buttons */ |
395 | if (hid->quirks & HID_QUIRK_MICROSOFT_KEYS && | 395 | if (hid->quirks & HID_QUIRK_MICROSOFT_KEYS && |
@@ -416,8 +416,9 @@ void hidinput_event_quirks(struct hid_device *hid, struct hid_field *field, stru | |||
416 | if (hid->quirks & HID_QUIRK_HWHEEL_WHEEL_INVERT && | 416 | if (hid->quirks & HID_QUIRK_HWHEEL_WHEEL_INVERT && |
417 | usage->type == EV_REL && usage->code == REL_HWHEEL) { | 417 | usage->type == EV_REL && usage->code == REL_HWHEEL) { |
418 | input_event(input, usage->type, REL_WHEEL, -value); | 418 | input_event(input, usage->type, REL_WHEEL, -value); |
419 | return; | 419 | return 1; |
420 | } | 420 | } |
421 | return 0; | ||
421 | } | 422 | } |
422 | 423 | ||
423 | 424 | ||
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 5325d98b4328..5a38fb27d69f 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c | |||
@@ -97,6 +97,7 @@ struct hidinput_key_translation { | |||
97 | #define APPLE_FLAG_FKEY 0x01 | 97 | #define APPLE_FLAG_FKEY 0x01 |
98 | 98 | ||
99 | static struct hidinput_key_translation apple_fn_keys[] = { | 99 | static struct hidinput_key_translation apple_fn_keys[] = { |
100 | { KEY_BACKSPACE, KEY_DELETE }, | ||
100 | { KEY_F1, KEY_BRIGHTNESSDOWN, APPLE_FLAG_FKEY }, | 101 | { KEY_F1, KEY_BRIGHTNESSDOWN, APPLE_FLAG_FKEY }, |
101 | { KEY_F2, KEY_BRIGHTNESSUP, APPLE_FLAG_FKEY }, | 102 | { KEY_F2, KEY_BRIGHTNESSUP, APPLE_FLAG_FKEY }, |
102 | { KEY_F3, KEY_CYCLEWINDOWS, APPLE_FLAG_FKEY }, /* Exposé */ | 103 | { KEY_F3, KEY_CYCLEWINDOWS, APPLE_FLAG_FKEY }, /* Exposé */ |
@@ -109,6 +110,10 @@ static struct hidinput_key_translation apple_fn_keys[] = { | |||
109 | { KEY_F10, KEY_MUTE, APPLE_FLAG_FKEY }, | 110 | { KEY_F10, KEY_MUTE, APPLE_FLAG_FKEY }, |
110 | { KEY_F11, KEY_VOLUMEDOWN, APPLE_FLAG_FKEY }, | 111 | { KEY_F11, KEY_VOLUMEDOWN, APPLE_FLAG_FKEY }, |
111 | { KEY_F12, KEY_VOLUMEUP, APPLE_FLAG_FKEY }, | 112 | { KEY_F12, KEY_VOLUMEUP, APPLE_FLAG_FKEY }, |
113 | { KEY_UP, KEY_PAGEUP }, | ||
114 | { KEY_DOWN, KEY_PAGEDOWN }, | ||
115 | { KEY_LEFT, KEY_HOME }, | ||
116 | { KEY_RIGHT, KEY_END }, | ||
112 | { } | 117 | { } |
113 | }; | 118 | }; |
114 | 119 | ||
@@ -854,7 +859,8 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct | |||
854 | return; | 859 | return; |
855 | 860 | ||
856 | /* handle input events for quirky devices */ | 861 | /* handle input events for quirky devices */ |
857 | hidinput_event_quirks(hid, field, usage, value); | 862 | if (hidinput_event_quirks(hid, field, usage, value)) |
863 | return; | ||
858 | 864 | ||
859 | if (usage->hat_min < usage->hat_max || usage->hat_dir) { | 865 | if (usage->hat_min < usage->hat_max || usage->hat_dir) { |
860 | int hat_dir = usage->hat_dir; | 866 | int hat_dir = usage->hat_dir; |
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c index b77b61e0cd7b..e6d05f6b1c1c 100644 --- a/drivers/hid/usbhid/hid-quirks.c +++ b/drivers/hid/usbhid/hid-quirks.c | |||
@@ -66,6 +66,12 @@ | |||
66 | #define USB_DEVICE_ID_APPLE_ALU_ANSI 0x0220 | 66 | #define USB_DEVICE_ID_APPLE_ALU_ANSI 0x0220 |
67 | #define USB_DEVICE_ID_APPLE_ALU_ISO 0x0221 | 67 | #define USB_DEVICE_ID_APPLE_ALU_ISO 0x0221 |
68 | #define USB_DEVICE_ID_APPLE_ALU_JIS 0x0222 | 68 | #define USB_DEVICE_ID_APPLE_ALU_JIS 0x0222 |
69 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI 0x0229 | ||
70 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO 0x022a | ||
71 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS 0x022b | ||
72 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI 0x022c | ||
73 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO 0x022d | ||
74 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS 0x022e | ||
69 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a | 75 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a |
70 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b | 76 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b |
71 | #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 | 77 | #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 |
@@ -193,6 +199,17 @@ | |||
193 | #define USB_DEVICE_ID_GTCO_502 0x0502 | 199 | #define USB_DEVICE_ID_GTCO_502 0x0502 |
194 | #define USB_DEVICE_ID_GTCO_503 0x0503 | 200 | #define USB_DEVICE_ID_GTCO_503 0x0503 |
195 | #define USB_DEVICE_ID_GTCO_504 0x0504 | 201 | #define USB_DEVICE_ID_GTCO_504 0x0504 |
202 | #define USB_DEVICE_ID_GTCO_600 0x0600 | ||
203 | #define USB_DEVICE_ID_GTCO_601 0x0601 | ||
204 | #define USB_DEVICE_ID_GTCO_602 0x0602 | ||
205 | #define USB_DEVICE_ID_GTCO_603 0x0603 | ||
206 | #define USB_DEVICE_ID_GTCO_604 0x0604 | ||
207 | #define USB_DEVICE_ID_GTCO_605 0x0605 | ||
208 | #define USB_DEVICE_ID_GTCO_606 0x0606 | ||
209 | #define USB_DEVICE_ID_GTCO_607 0x0607 | ||
210 | #define USB_DEVICE_ID_GTCO_608 0x0608 | ||
211 | #define USB_DEVICE_ID_GTCO_609 0x0609 | ||
212 | #define USB_DEVICE_ID_GTCO_609 0x0609 | ||
196 | #define USB_DEVICE_ID_GTCO_1000 0x1000 | 213 | #define USB_DEVICE_ID_GTCO_1000 0x1000 |
197 | #define USB_DEVICE_ID_GTCO_1001 0x1001 | 214 | #define USB_DEVICE_ID_GTCO_1001 0x1001 |
198 | #define USB_DEVICE_ID_GTCO_1002 0x1002 | 215 | #define USB_DEVICE_ID_GTCO_1002 0x1002 |
@@ -200,7 +217,7 @@ | |||
200 | #define USB_DEVICE_ID_GTCO_1004 0x1004 | 217 | #define USB_DEVICE_ID_GTCO_1004 0x1004 |
201 | #define USB_DEVICE_ID_GTCO_1005 0x1005 | 218 | #define USB_DEVICE_ID_GTCO_1005 0x1005 |
202 | #define USB_DEVICE_ID_GTCO_1006 0x1006 | 219 | #define USB_DEVICE_ID_GTCO_1006 0x1006 |
203 | 220 | #define USB_DEVICE_ID_GTCO_1007 0x1007 | |
204 | #define USB_VENDOR_ID_HAPP 0x078b | 221 | #define USB_VENDOR_ID_HAPP 0x078b |
205 | #define USB_DEVICE_ID_UGCI_DRIVING 0x0010 | 222 | #define USB_DEVICE_ID_UGCI_DRIVING 0x0010 |
206 | #define USB_DEVICE_ID_UGCI_FLYING 0x0020 | 223 | #define USB_DEVICE_ID_UGCI_FLYING 0x0020 |
@@ -368,6 +385,7 @@ | |||
368 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 | 385 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 |
369 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 | 386 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 |
370 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 | 387 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 |
388 | #define USB_DEVICE_ID_VERNIER_LCSPEC 0x0006 | ||
371 | 389 | ||
372 | #define USB_VENDOR_ID_WACOM 0x056a | 390 | #define USB_VENDOR_ID_WACOM 0x056a |
373 | 391 | ||
@@ -496,6 +514,16 @@ static const struct hid_blacklist { | |||
496 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502, HID_QUIRK_IGNORE }, | 514 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502, HID_QUIRK_IGNORE }, |
497 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503, HID_QUIRK_IGNORE }, | 515 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503, HID_QUIRK_IGNORE }, |
498 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504, HID_QUIRK_IGNORE }, | 516 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504, HID_QUIRK_IGNORE }, |
517 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_600, HID_QUIRK_IGNORE }, | ||
518 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_601, HID_QUIRK_IGNORE }, | ||
519 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_602, HID_QUIRK_IGNORE }, | ||
520 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_603, HID_QUIRK_IGNORE }, | ||
521 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_604, HID_QUIRK_IGNORE }, | ||
522 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_605, HID_QUIRK_IGNORE }, | ||
523 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_606, HID_QUIRK_IGNORE }, | ||
524 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_607, HID_QUIRK_IGNORE }, | ||
525 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_608, HID_QUIRK_IGNORE }, | ||
526 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_609, HID_QUIRK_IGNORE }, | ||
499 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000, HID_QUIRK_IGNORE }, | 527 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000, HID_QUIRK_IGNORE }, |
500 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001, HID_QUIRK_IGNORE }, | 528 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001, HID_QUIRK_IGNORE }, |
501 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002, HID_QUIRK_IGNORE }, | 529 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002, HID_QUIRK_IGNORE }, |
@@ -503,6 +531,7 @@ static const struct hid_blacklist { | |||
503 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, | 531 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, |
504 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, | 532 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, |
505 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, | 533 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, |
534 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007, HID_QUIRK_IGNORE }, | ||
506 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, | 535 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, |
507 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, | 536 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, |
508 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, | 537 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, |
@@ -541,6 +570,7 @@ static const struct hid_blacklist { | |||
541 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP, HID_QUIRK_IGNORE }, | 570 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP, HID_QUIRK_IGNORE }, |
542 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP, HID_QUIRK_IGNORE }, | 571 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP, HID_QUIRK_IGNORE }, |
543 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS, HID_QUIRK_IGNORE }, | 572 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS, HID_QUIRK_IGNORE }, |
573 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC, HID_QUIRK_IGNORE }, | ||
544 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, | 574 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, |
545 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, | 575 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, |
546 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT, HID_QUIRK_IGNORE }, | 576 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT, HID_QUIRK_IGNORE }, |
@@ -593,6 +623,12 @@ static const struct hid_blacklist { | |||
593 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI, HID_QUIRK_APPLE_HAS_FN }, | 623 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI, HID_QUIRK_APPLE_HAS_FN }, |
594 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD }, | 624 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD }, |
595 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS, HID_QUIRK_APPLE_HAS_FN }, | 625 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS, HID_QUIRK_APPLE_HAS_FN }, |
626 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
627 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_APPLE_ISO_KEYBOARD }, | ||
628 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
629 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI, HID_QUIRK_APPLE_HAS_FN }, | ||
630 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD }, | ||
631 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS, HID_QUIRK_APPLE_HAS_FN }, | ||
596 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | 632 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
597 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | 633 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, |
598 | 634 | ||
diff --git a/drivers/infiniband/core/cm.c b/drivers/infiniband/core/cm.c index 638b727d42e0..b10ade92efed 100644 --- a/drivers/infiniband/core/cm.c +++ b/drivers/infiniband/core/cm.c | |||
@@ -3587,8 +3587,6 @@ static void cm_release_port_obj(struct kobject *obj) | |||
3587 | { | 3587 | { |
3588 | struct cm_port *cm_port; | 3588 | struct cm_port *cm_port; |
3589 | 3589 | ||
3590 | printk(KERN_ERR "free cm port\n"); | ||
3591 | |||
3592 | cm_port = container_of(obj, struct cm_port, port_obj); | 3590 | cm_port = container_of(obj, struct cm_port, port_obj); |
3593 | kfree(cm_port); | 3591 | kfree(cm_port); |
3594 | } | 3592 | } |
@@ -3601,8 +3599,6 @@ static void cm_release_dev_obj(struct kobject *obj) | |||
3601 | { | 3599 | { |
3602 | struct cm_device *cm_dev; | 3600 | struct cm_device *cm_dev; |
3603 | 3601 | ||
3604 | printk(KERN_ERR "free cm dev\n"); | ||
3605 | |||
3606 | cm_dev = container_of(obj, struct cm_device, dev_obj); | 3602 | cm_dev = container_of(obj, struct cm_device, dev_obj); |
3607 | kfree(cm_dev); | 3603 | kfree(cm_dev); |
3608 | } | 3604 | } |
@@ -3616,18 +3612,12 @@ struct class cm_class = { | |||
3616 | }; | 3612 | }; |
3617 | EXPORT_SYMBOL(cm_class); | 3613 | EXPORT_SYMBOL(cm_class); |
3618 | 3614 | ||
3619 | static void cm_remove_fs_obj(struct kobject *obj) | ||
3620 | { | ||
3621 | kobject_put(obj->parent); | ||
3622 | kobject_put(obj); | ||
3623 | } | ||
3624 | |||
3625 | static int cm_create_port_fs(struct cm_port *port) | 3615 | static int cm_create_port_fs(struct cm_port *port) |
3626 | { | 3616 | { |
3627 | int i, ret; | 3617 | int i, ret; |
3628 | 3618 | ||
3629 | ret = kobject_init_and_add(&port->port_obj, &cm_port_obj_type, | 3619 | ret = kobject_init_and_add(&port->port_obj, &cm_port_obj_type, |
3630 | kobject_get(&port->cm_dev->dev_obj), | 3620 | &port->cm_dev->dev_obj, |
3631 | "%d", port->port_num); | 3621 | "%d", port->port_num); |
3632 | if (ret) { | 3622 | if (ret) { |
3633 | kfree(port); | 3623 | kfree(port); |
@@ -3637,7 +3627,7 @@ static int cm_create_port_fs(struct cm_port *port) | |||
3637 | for (i = 0; i < CM_COUNTER_GROUPS; i++) { | 3627 | for (i = 0; i < CM_COUNTER_GROUPS; i++) { |
3638 | ret = kobject_init_and_add(&port->counter_group[i].obj, | 3628 | ret = kobject_init_and_add(&port->counter_group[i].obj, |
3639 | &cm_counter_obj_type, | 3629 | &cm_counter_obj_type, |
3640 | kobject_get(&port->port_obj), | 3630 | &port->port_obj, |
3641 | "%s", counter_group_names[i]); | 3631 | "%s", counter_group_names[i]); |
3642 | if (ret) | 3632 | if (ret) |
3643 | goto error; | 3633 | goto error; |
@@ -3647,8 +3637,8 @@ static int cm_create_port_fs(struct cm_port *port) | |||
3647 | 3637 | ||
3648 | error: | 3638 | error: |
3649 | while (i--) | 3639 | while (i--) |
3650 | cm_remove_fs_obj(&port->counter_group[i].obj); | 3640 | kobject_put(&port->counter_group[i].obj); |
3651 | cm_remove_fs_obj(&port->port_obj); | 3641 | kobject_put(&port->port_obj); |
3652 | return ret; | 3642 | return ret; |
3653 | 3643 | ||
3654 | } | 3644 | } |
@@ -3658,9 +3648,9 @@ static void cm_remove_port_fs(struct cm_port *port) | |||
3658 | int i; | 3648 | int i; |
3659 | 3649 | ||
3660 | for (i = 0; i < CM_COUNTER_GROUPS; i++) | 3650 | for (i = 0; i < CM_COUNTER_GROUPS; i++) |
3661 | cm_remove_fs_obj(&port->counter_group[i].obj); | 3651 | kobject_put(&port->counter_group[i].obj); |
3662 | 3652 | ||
3663 | cm_remove_fs_obj(&port->port_obj); | 3653 | kobject_put(&port->port_obj); |
3664 | } | 3654 | } |
3665 | 3655 | ||
3666 | static void cm_add_one(struct ib_device *device) | 3656 | static void cm_add_one(struct ib_device *device) |
@@ -3744,7 +3734,7 @@ error1: | |||
3744 | ib_unregister_mad_agent(port->mad_agent); | 3734 | ib_unregister_mad_agent(port->mad_agent); |
3745 | cm_remove_port_fs(port); | 3735 | cm_remove_port_fs(port); |
3746 | } | 3736 | } |
3747 | cm_remove_fs_obj(&cm_dev->dev_obj); | 3737 | kobject_put(&cm_dev->dev_obj); |
3748 | } | 3738 | } |
3749 | 3739 | ||
3750 | static void cm_remove_one(struct ib_device *device) | 3740 | static void cm_remove_one(struct ib_device *device) |
@@ -3771,7 +3761,7 @@ static void cm_remove_one(struct ib_device *device) | |||
3771 | ib_unregister_mad_agent(port->mad_agent); | 3761 | ib_unregister_mad_agent(port->mad_agent); |
3772 | cm_remove_port_fs(port); | 3762 | cm_remove_port_fs(port); |
3773 | } | 3763 | } |
3774 | cm_remove_fs_obj(&cm_dev->dev_obj); | 3764 | kobject_put(&cm_dev->dev_obj); |
3775 | } | 3765 | } |
3776 | 3766 | ||
3777 | static int __init ib_cm_init(void) | 3767 | static int __init ib_cm_init(void) |
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 1eff1b2c0e08..34507daaf9b6 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c | |||
@@ -1107,7 +1107,6 @@ static int cma_req_handler(struct ib_cm_id *cm_id, struct ib_cm_event *ib_event) | |||
1107 | event.param.ud.private_data_len = | 1107 | event.param.ud.private_data_len = |
1108 | IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE - offset; | 1108 | IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE - offset; |
1109 | } else { | 1109 | } else { |
1110 | ib_send_cm_mra(cm_id, CMA_CM_MRA_SETTING, NULL, 0); | ||
1111 | conn_id = cma_new_conn_id(&listen_id->id, ib_event); | 1110 | conn_id = cma_new_conn_id(&listen_id->id, ib_event); |
1112 | cma_set_req_event_data(&event, &ib_event->param.req_rcvd, | 1111 | cma_set_req_event_data(&event, &ib_event->param.req_rcvd, |
1113 | ib_event->private_data, offset); | 1112 | ib_event->private_data, offset); |
@@ -1130,6 +1129,15 @@ static int cma_req_handler(struct ib_cm_id *cm_id, struct ib_cm_event *ib_event) | |||
1130 | 1129 | ||
1131 | ret = conn_id->id.event_handler(&conn_id->id, &event); | 1130 | ret = conn_id->id.event_handler(&conn_id->id, &event); |
1132 | if (!ret) { | 1131 | if (!ret) { |
1132 | /* | ||
1133 | * Acquire mutex to prevent user executing rdma_destroy_id() | ||
1134 | * while we're accessing the cm_id. | ||
1135 | */ | ||
1136 | mutex_lock(&lock); | ||
1137 | if (cma_comp(conn_id, CMA_CONNECT) && | ||
1138 | !cma_is_ud_ps(conn_id->id.ps)) | ||
1139 | ib_send_cm_mra(cm_id, CMA_CM_MRA_SETTING, NULL, 0); | ||
1140 | mutex_unlock(&lock); | ||
1133 | cma_enable_remove(conn_id); | 1141 | cma_enable_remove(conn_id); |
1134 | goto out; | 1142 | goto out; |
1135 | } | 1143 | } |
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index e9a08fa3dffe..320f2b6ddee6 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_cm.c +++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/skbuff.h> | 35 | #include <linux/skbuff.h> |
36 | #include <linux/timer.h> | 36 | #include <linux/timer.h> |
37 | #include <linux/notifier.h> | 37 | #include <linux/notifier.h> |
38 | #include <linux/inetdevice.h> | ||
38 | 39 | ||
39 | #include <net/neighbour.h> | 40 | #include <net/neighbour.h> |
40 | #include <net/netevent.h> | 41 | #include <net/netevent.h> |
@@ -1784,6 +1785,17 @@ err: | |||
1784 | return err; | 1785 | return err; |
1785 | } | 1786 | } |
1786 | 1787 | ||
1788 | static int is_loopback_dst(struct iw_cm_id *cm_id) | ||
1789 | { | ||
1790 | struct net_device *dev; | ||
1791 | |||
1792 | dev = ip_dev_find(&init_net, cm_id->remote_addr.sin_addr.s_addr); | ||
1793 | if (!dev) | ||
1794 | return 0; | ||
1795 | dev_put(dev); | ||
1796 | return 1; | ||
1797 | } | ||
1798 | |||
1787 | int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | 1799 | int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) |
1788 | { | 1800 | { |
1789 | int err = 0; | 1801 | int err = 0; |
@@ -1791,6 +1803,11 @@ int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param) | |||
1791 | struct iwch_ep *ep; | 1803 | struct iwch_ep *ep; |
1792 | struct rtable *rt; | 1804 | struct rtable *rt; |
1793 | 1805 | ||
1806 | if (is_loopback_dst(cm_id)) { | ||
1807 | err = -ENOSYS; | ||
1808 | goto out; | ||
1809 | } | ||
1810 | |||
1794 | ep = alloc_ep(sizeof(*ep), GFP_KERNEL); | 1811 | ep = alloc_ep(sizeof(*ep), GFP_KERNEL); |
1795 | if (!ep) { | 1812 | if (!ep) { |
1796 | printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __FUNCTION__); | 1813 | printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __FUNCTION__); |
diff --git a/drivers/infiniband/hw/mlx4/mr.c b/drivers/infiniband/hw/mlx4/mr.c index 7dc91a3e712d..fe2c2e94a5f8 100644 --- a/drivers/infiniband/hw/mlx4/mr.c +++ b/drivers/infiniband/hw/mlx4/mr.c | |||
@@ -199,7 +199,7 @@ struct ib_fmr *mlx4_ib_fmr_alloc(struct ib_pd *pd, int acc, | |||
199 | if (err) | 199 | if (err) |
200 | goto err_free; | 200 | goto err_free; |
201 | 201 | ||
202 | err = mlx4_mr_enable(to_mdev(pd->device)->dev, &fmr->mfmr.mr); | 202 | err = mlx4_fmr_enable(to_mdev(pd->device)->dev, &fmr->mfmr); |
203 | if (err) | 203 | if (err) |
204 | goto err_mr; | 204 | goto err_mr; |
205 | 205 | ||
diff --git a/drivers/infiniband/hw/mthca/mthca_cq.c b/drivers/infiniband/hw/mthca/mthca_cq.c index 6bd9f1393349..1e1e336d3ef9 100644 --- a/drivers/infiniband/hw/mthca/mthca_cq.c +++ b/drivers/infiniband/hw/mthca/mthca_cq.c | |||
@@ -473,7 +473,7 @@ static void handle_error_cqe(struct mthca_dev *dev, struct mthca_cq *cq, | |||
473 | if (!(new_wqe & cpu_to_be32(0x3f)) || (!cqe->db_cnt && dbd)) | 473 | if (!(new_wqe & cpu_to_be32(0x3f)) || (!cqe->db_cnt && dbd)) |
474 | return; | 474 | return; |
475 | 475 | ||
476 | cqe->db_cnt = cpu_to_be16(be16_to_cpu(cqe->db_cnt) - dbd); | 476 | be16_add_cpu(&cqe->db_cnt, -dbd); |
477 | cqe->wqe = new_wqe; | 477 | cqe->wqe = new_wqe; |
478 | cqe->syndrome = SYNDROME_WR_FLUSH_ERR; | 478 | cqe->syndrome = SYNDROME_WR_FLUSH_ERR; |
479 | 479 | ||
diff --git a/drivers/infiniband/hw/mthca/mthca_memfree.c b/drivers/infiniband/hw/mthca/mthca_memfree.c index 1f4d27d7c16d..252db0822f6c 100644 --- a/drivers/infiniband/hw/mthca/mthca_memfree.c +++ b/drivers/infiniband/hw/mthca/mthca_memfree.c | |||
@@ -542,6 +542,7 @@ struct mthca_user_db_table *mthca_init_user_db_tab(struct mthca_dev *dev) | |||
542 | for (i = 0; i < npages; ++i) { | 542 | for (i = 0; i < npages; ++i) { |
543 | db_tab->page[i].refcount = 0; | 543 | db_tab->page[i].refcount = 0; |
544 | db_tab->page[i].uvirt = 0; | 544 | db_tab->page[i].uvirt = 0; |
545 | sg_init_table(&db_tab->page[i].mem, 1); | ||
545 | } | 546 | } |
546 | 547 | ||
547 | return db_tab; | 548 | return db_tab; |
diff --git a/drivers/infiniband/ulp/ipoib/ipoib.h b/drivers/infiniband/ulp/ipoib/ipoib.h index f9b7caa54143..054fab8e27a0 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib.h +++ b/drivers/infiniband/ulp/ipoib/ipoib.h | |||
@@ -209,7 +209,6 @@ struct ipoib_cm_tx { | |||
209 | unsigned tx_tail; | 209 | unsigned tx_tail; |
210 | unsigned long flags; | 210 | unsigned long flags; |
211 | u32 mtu; | 211 | u32 mtu; |
212 | struct ib_wc ibwc[IPOIB_NUM_WC]; | ||
213 | }; | 212 | }; |
214 | 213 | ||
215 | struct ipoib_cm_rx_buf { | 214 | struct ipoib_cm_rx_buf { |
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ib.c b/drivers/infiniband/ulp/ipoib/ipoib_ib.c index 9d3e778dc56d..08c4396cf418 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_ib.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_ib.c | |||
@@ -780,6 +780,7 @@ static void __ipoib_ib_dev_flush(struct ipoib_dev_priv *priv, int pkey_event) | |||
780 | if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &new_index)) { | 780 | if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &new_index)) { |
781 | clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); | 781 | clear_bit(IPOIB_PKEY_ASSIGNED, &priv->flags); |
782 | ipoib_ib_dev_down(dev, 0); | 782 | ipoib_ib_dev_down(dev, 0); |
783 | ipoib_ib_dev_stop(dev, 0); | ||
783 | ipoib_pkey_dev_delay_open(dev); | 784 | ipoib_pkey_dev_delay_open(dev); |
784 | return; | 785 | return; |
785 | } | 786 | } |
diff --git a/drivers/macintosh/mediabay.c b/drivers/macintosh/mediabay.c index 936788272a5f..51a112815f46 100644 --- a/drivers/macintosh/mediabay.c +++ b/drivers/macintosh/mediabay.c | |||
@@ -416,7 +416,6 @@ static void poll_media_bay(struct media_bay_info* bay) | |||
416 | } | 416 | } |
417 | } | 417 | } |
418 | 418 | ||
419 | #ifdef CONFIG_MAC_FLOPPY | ||
420 | int check_media_bay(struct device_node *which_bay, int what) | 419 | int check_media_bay(struct device_node *which_bay, int what) |
421 | { | 420 | { |
422 | int i; | 421 | int i; |
@@ -431,7 +430,6 @@ int check_media_bay(struct device_node *which_bay, int what) | |||
431 | return -ENODEV; | 430 | return -ENODEV; |
432 | } | 431 | } |
433 | EXPORT_SYMBOL(check_media_bay); | 432 | EXPORT_SYMBOL(check_media_bay); |
434 | #endif /* CONFIG_MAC_FLOPPY */ | ||
435 | 433 | ||
436 | #ifdef CONFIG_BLK_DEV_IDE_PMAC | 434 | #ifdef CONFIG_BLK_DEV_IDE_PMAC |
437 | int check_media_bay_by_base(unsigned long base, int what) | 435 | int check_media_bay_by_base(unsigned long base, int what) |
diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c index a0585fb6da94..7aeceedcf7d4 100644 --- a/drivers/md/bitmap.c +++ b/drivers/md/bitmap.c | |||
@@ -206,16 +206,10 @@ static void bitmap_checkfree(struct bitmap *bitmap, unsigned long page) | |||
206 | /* copy the pathname of a file to a buffer */ | 206 | /* copy the pathname of a file to a buffer */ |
207 | char *file_path(struct file *file, char *buf, int count) | 207 | char *file_path(struct file *file, char *buf, int count) |
208 | { | 208 | { |
209 | struct dentry *d; | ||
210 | struct vfsmount *v; | ||
211 | |||
212 | if (!buf) | 209 | if (!buf) |
213 | return NULL; | 210 | return NULL; |
214 | 211 | ||
215 | d = file->f_path.dentry; | 212 | buf = d_path(&file->f_path, buf, count); |
216 | v = file->f_path.mnt; | ||
217 | |||
218 | buf = d_path(d, v, buf, count); | ||
219 | 213 | ||
220 | return IS_ERR(buf) ? NULL : buf; | 214 | return IS_ERR(buf) ? NULL : buf; |
221 | } | 215 | } |
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index f16062982383..e75b1437b58b 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c | |||
@@ -361,7 +361,7 @@ static int lookup_device(const char *path, dev_t *dev) | |||
361 | if ((r = path_lookup(path, LOOKUP_FOLLOW, &nd))) | 361 | if ((r = path_lookup(path, LOOKUP_FOLLOW, &nd))) |
362 | return r; | 362 | return r; |
363 | 363 | ||
364 | inode = nd.dentry->d_inode; | 364 | inode = nd.path.dentry->d_inode; |
365 | if (!inode) { | 365 | if (!inode) { |
366 | r = -ENOENT; | 366 | r = -ENOENT; |
367 | goto out; | 367 | goto out; |
@@ -375,7 +375,7 @@ static int lookup_device(const char *path, dev_t *dev) | |||
375 | *dev = inode->i_rdev; | 375 | *dev = inode->i_rdev; |
376 | 376 | ||
377 | out: | 377 | out: |
378 | path_release(&nd); | 378 | path_put(&nd.path); |
379 | return r; | 379 | return r; |
380 | } | 380 | } |
381 | 381 | ||
diff --git a/drivers/md/md.c b/drivers/md/md.c index 5fc326d3970e..7da6ec244e15 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -5197,8 +5197,7 @@ static int md_seq_show(struct seq_file *seq, void *v) | |||
5197 | chunk_kb ? "KB" : "B"); | 5197 | chunk_kb ? "KB" : "B"); |
5198 | if (bitmap->file) { | 5198 | if (bitmap->file) { |
5199 | seq_printf(seq, ", file: "); | 5199 | seq_printf(seq, ", file: "); |
5200 | seq_path(seq, bitmap->file->f_path.mnt, | 5200 | seq_path(seq, &bitmap->file->f_path, " \t\n"); |
5201 | bitmap->file->f_path.dentry," \t\n"); | ||
5202 | } | 5201 | } |
5203 | 5202 | ||
5204 | seq_printf(seq, "\n"); | 5203 | seq_printf(seq, "\n"); |
diff --git a/drivers/misc/thinkpad_acpi.c b/drivers/misc/thinkpad_acpi.c index 7ba1acad5402..e2c7edd206a6 100644 --- a/drivers/misc/thinkpad_acpi.c +++ b/drivers/misc/thinkpad_acpi.c | |||
@@ -1689,7 +1689,7 @@ static ssize_t hotkey_wakeup_reason_show(struct device *dev, | |||
1689 | static struct device_attribute dev_attr_hotkey_wakeup_reason = | 1689 | static struct device_attribute dev_attr_hotkey_wakeup_reason = |
1690 | __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL); | 1690 | __ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL); |
1691 | 1691 | ||
1692 | void hotkey_wakeup_reason_notify_change(void) | 1692 | static void hotkey_wakeup_reason_notify_change(void) |
1693 | { | 1693 | { |
1694 | if (tp_features.hotkey_mask) | 1694 | if (tp_features.hotkey_mask) |
1695 | sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, | 1695 | sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, |
@@ -1708,7 +1708,7 @@ static struct device_attribute dev_attr_hotkey_wakeup_hotunplug_complete = | |||
1708 | __ATTR(wakeup_hotunplug_complete, S_IRUGO, | 1708 | __ATTR(wakeup_hotunplug_complete, S_IRUGO, |
1709 | hotkey_wakeup_hotunplug_complete_show, NULL); | 1709 | hotkey_wakeup_hotunplug_complete_show, NULL); |
1710 | 1710 | ||
1711 | void hotkey_wakeup_hotunplug_complete_notify_change(void) | 1711 | static void hotkey_wakeup_hotunplug_complete_notify_change(void) |
1712 | { | 1712 | { |
1713 | if (tp_features.hotkey_mask) | 1713 | if (tp_features.hotkey_mask) |
1714 | sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, | 1714 | sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, |
diff --git a/drivers/mtd/mtdsuper.c b/drivers/mtd/mtdsuper.c index 9b430f20b640..28cc6787a800 100644 --- a/drivers/mtd/mtdsuper.c +++ b/drivers/mtd/mtdsuper.c | |||
@@ -184,26 +184,26 @@ int get_sb_mtd(struct file_system_type *fs_type, int flags, | |||
184 | ret = path_lookup(dev_name, LOOKUP_FOLLOW, &nd); | 184 | ret = path_lookup(dev_name, LOOKUP_FOLLOW, &nd); |
185 | 185 | ||
186 | DEBUG(1, "MTDSB: path_lookup() returned %d, inode %p\n", | 186 | DEBUG(1, "MTDSB: path_lookup() returned %d, inode %p\n", |
187 | ret, nd.dentry ? nd.dentry->d_inode : NULL); | 187 | ret, nd.path.dentry ? nd.path.dentry->d_inode : NULL); |
188 | 188 | ||
189 | if (ret) | 189 | if (ret) |
190 | return ret; | 190 | return ret; |
191 | 191 | ||
192 | ret = -EINVAL; | 192 | ret = -EINVAL; |
193 | 193 | ||
194 | if (!S_ISBLK(nd.dentry->d_inode->i_mode)) | 194 | if (!S_ISBLK(nd.path.dentry->d_inode->i_mode)) |
195 | goto out; | 195 | goto out; |
196 | 196 | ||
197 | if (nd.mnt->mnt_flags & MNT_NODEV) { | 197 | if (nd.path.mnt->mnt_flags & MNT_NODEV) { |
198 | ret = -EACCES; | 198 | ret = -EACCES; |
199 | goto out; | 199 | goto out; |
200 | } | 200 | } |
201 | 201 | ||
202 | if (imajor(nd.dentry->d_inode) != MTD_BLOCK_MAJOR) | 202 | if (imajor(nd.path.dentry->d_inode) != MTD_BLOCK_MAJOR) |
203 | goto not_an_MTD_device; | 203 | goto not_an_MTD_device; |
204 | 204 | ||
205 | mtdnr = iminor(nd.dentry->d_inode); | 205 | mtdnr = iminor(nd.path.dentry->d_inode); |
206 | path_release(&nd); | 206 | path_put(&nd.path); |
207 | 207 | ||
208 | return get_sb_mtd_nr(fs_type, flags, dev_name, data, mtdnr, fill_super, | 208 | return get_sb_mtd_nr(fs_type, flags, dev_name, data, mtdnr, fill_super, |
209 | mnt); | 209 | mnt); |
@@ -214,7 +214,7 @@ not_an_MTD_device: | |||
214 | "MTD: Attempt to mount non-MTD device \"%s\"\n", | 214 | "MTD: Attempt to mount non-MTD device \"%s\"\n", |
215 | dev_name); | 215 | dev_name); |
216 | out: | 216 | out: |
217 | path_release(&nd); | 217 | path_put(&nd.path); |
218 | return ret; | 218 | return ret; |
219 | 219 | ||
220 | } | 220 | } |
diff --git a/drivers/net/mlx4/mr.c b/drivers/net/mlx4/mr.c index 679dfdb6807f..79b317b88c86 100644 --- a/drivers/net/mlx4/mr.c +++ b/drivers/net/mlx4/mr.c | |||
@@ -578,13 +578,6 @@ int mlx4_fmr_alloc(struct mlx4_dev *dev, u32 pd, u32 access, int max_pages, | |||
578 | goto err_free; | 578 | goto err_free; |
579 | } | 579 | } |
580 | 580 | ||
581 | fmr->mpt = mlx4_table_find(&priv->mr_table.dmpt_table, | ||
582 | key_to_hw_index(fmr->mr.key), NULL); | ||
583 | if (!fmr->mpt) { | ||
584 | err = -ENOMEM; | ||
585 | goto err_free; | ||
586 | } | ||
587 | |||
588 | return 0; | 581 | return 0; |
589 | 582 | ||
590 | err_free: | 583 | err_free: |
@@ -595,7 +588,19 @@ EXPORT_SYMBOL_GPL(mlx4_fmr_alloc); | |||
595 | 588 | ||
596 | int mlx4_fmr_enable(struct mlx4_dev *dev, struct mlx4_fmr *fmr) | 589 | int mlx4_fmr_enable(struct mlx4_dev *dev, struct mlx4_fmr *fmr) |
597 | { | 590 | { |
598 | return mlx4_mr_enable(dev, &fmr->mr); | 591 | struct mlx4_priv *priv = mlx4_priv(dev); |
592 | int err; | ||
593 | |||
594 | err = mlx4_mr_enable(dev, &fmr->mr); | ||
595 | if (err) | ||
596 | return err; | ||
597 | |||
598 | fmr->mpt = mlx4_table_find(&priv->mr_table.dmpt_table, | ||
599 | key_to_hw_index(fmr->mr.key), NULL); | ||
600 | if (!fmr->mpt) | ||
601 | return -ENOMEM; | ||
602 | |||
603 | return 0; | ||
599 | } | 604 | } |
600 | EXPORT_SYMBOL_GPL(mlx4_fmr_enable); | 605 | EXPORT_SYMBOL_GPL(mlx4_fmr_enable); |
601 | 606 | ||
diff --git a/drivers/oprofile/buffer_sync.c b/drivers/oprofile/buffer_sync.c index 8134c7e198a5..b07ba2a14119 100644 --- a/drivers/oprofile/buffer_sync.c +++ b/drivers/oprofile/buffer_sync.c | |||
@@ -187,23 +187,22 @@ void sync_stop(void) | |||
187 | end_sync(); | 187 | end_sync(); |
188 | } | 188 | } |
189 | 189 | ||
190 | 190 | ||
191 | /* Optimisation. We can manage without taking the dcookie sem | 191 | /* Optimisation. We can manage without taking the dcookie sem |
192 | * because we cannot reach this code without at least one | 192 | * because we cannot reach this code without at least one |
193 | * dcookie user still being registered (namely, the reader | 193 | * dcookie user still being registered (namely, the reader |
194 | * of the event buffer). */ | 194 | * of the event buffer). */ |
195 | static inline unsigned long fast_get_dcookie(struct dentry * dentry, | 195 | static inline unsigned long fast_get_dcookie(struct path *path) |
196 | struct vfsmount * vfsmnt) | ||
197 | { | 196 | { |
198 | unsigned long cookie; | 197 | unsigned long cookie; |
199 | 198 | ||
200 | if (dentry->d_cookie) | 199 | if (path->dentry->d_cookie) |
201 | return (unsigned long)dentry; | 200 | return (unsigned long)path->dentry; |
202 | get_dcookie(dentry, vfsmnt, &cookie); | 201 | get_dcookie(path, &cookie); |
203 | return cookie; | 202 | return cookie; |
204 | } | 203 | } |
205 | 204 | ||
206 | 205 | ||
207 | /* Look up the dcookie for the task's first VM_EXECUTABLE mapping, | 206 | /* Look up the dcookie for the task's first VM_EXECUTABLE mapping, |
208 | * which corresponds loosely to "application name". This is | 207 | * which corresponds loosely to "application name". This is |
209 | * not strictly necessary but allows oprofile to associate | 208 | * not strictly necessary but allows oprofile to associate |
@@ -222,8 +221,7 @@ static unsigned long get_exec_dcookie(struct mm_struct * mm) | |||
222 | continue; | 221 | continue; |
223 | if (!(vma->vm_flags & VM_EXECUTABLE)) | 222 | if (!(vma->vm_flags & VM_EXECUTABLE)) |
224 | continue; | 223 | continue; |
225 | cookie = fast_get_dcookie(vma->vm_file->f_path.dentry, | 224 | cookie = fast_get_dcookie(&vma->vm_file->f_path); |
226 | vma->vm_file->f_path.mnt); | ||
227 | break; | 225 | break; |
228 | } | 226 | } |
229 | 227 | ||
@@ -248,8 +246,7 @@ static unsigned long lookup_dcookie(struct mm_struct * mm, unsigned long addr, o | |||
248 | continue; | 246 | continue; |
249 | 247 | ||
250 | if (vma->vm_file) { | 248 | if (vma->vm_file) { |
251 | cookie = fast_get_dcookie(vma->vm_file->f_path.dentry, | 249 | cookie = fast_get_dcookie(&vma->vm_file->f_path); |
252 | vma->vm_file->f_path.mnt); | ||
253 | *offset = (vma->vm_pgoff << PAGE_SHIFT) + addr - | 250 | *offset = (vma->vm_pgoff << PAGE_SHIFT) + addr - |
254 | vma->vm_start; | 251 | vma->vm_start; |
255 | } else { | 252 | } else { |
diff --git a/drivers/pnp/pnpacpi/core.c b/drivers/pnp/pnpacpi/core.c index 662b4c279cfc..c283a9a70d83 100644 --- a/drivers/pnp/pnpacpi/core.c +++ b/drivers/pnp/pnpacpi/core.c | |||
@@ -36,7 +36,7 @@ static int num = 0; | |||
36 | * have irqs (PIC, Timer) because we call acpi_register_gsi. | 36 | * have irqs (PIC, Timer) because we call acpi_register_gsi. |
37 | * Finally, only devices that have a CRS method need to be in this list. | 37 | * Finally, only devices that have a CRS method need to be in this list. |
38 | */ | 38 | */ |
39 | static struct __initdata acpi_device_id excluded_id_list[] = { | 39 | static struct acpi_device_id excluded_id_list[] __initdata = { |
40 | {"PNP0C09", 0}, /* EC */ | 40 | {"PNP0C09", 0}, /* EC */ |
41 | {"PNP0C0F", 0}, /* Link device */ | 41 | {"PNP0C0F", 0}, /* Link device */ |
42 | {"PNP0000", 0}, /* PIC */ | 42 | {"PNP0000", 0}, /* PIC */ |
diff --git a/drivers/pnp/pnpbios/core.c b/drivers/pnp/pnpbios/core.c index f7e67197a568..a8a51500e1e9 100644 --- a/drivers/pnp/pnpbios/core.c +++ b/drivers/pnp/pnpbios/core.c | |||
@@ -105,8 +105,6 @@ static int pnp_dock_event(int dock, struct pnp_docking_station_info *info) | |||
105 | char *argv[3], **envp, *buf, *scratch; | 105 | char *argv[3], **envp, *buf, *scratch; |
106 | int i = 0, value; | 106 | int i = 0, value; |
107 | 107 | ||
108 | if (!current->fs->root) | ||
109 | return -EAGAIN; | ||
110 | if (!(envp = kcalloc(20, sizeof(char *), GFP_KERNEL))) | 108 | if (!(envp = kcalloc(20, sizeof(char *), GFP_KERNEL))) |
111 | return -ENOMEM; | 109 | return -ENOMEM; |
112 | if (!(buf = kzalloc(256, GFP_KERNEL))) { | 110 | if (!(buf = kzalloc(256, GFP_KERNEL))) { |
diff --git a/drivers/ps3/ps3-lpm.c b/drivers/ps3/ps3-lpm.c index 4c066545d176..6c9592ce4996 100644 --- a/drivers/ps3/ps3-lpm.c +++ b/drivers/ps3/ps3-lpm.c | |||
@@ -76,7 +76,6 @@ | |||
76 | * | 76 | * |
77 | * @pm_control: Shadow of the processor's pm_control register. | 77 | * @pm_control: Shadow of the processor's pm_control register. |
78 | * @pm_start_stop: Shadow of the processor's pm_start_stop register. | 78 | * @pm_start_stop: Shadow of the processor's pm_start_stop register. |
79 | * @pm_interval: Shadow of the processor's pm_interval register. | ||
80 | * @group_control: Shadow of the processor's group_control register. | 79 | * @group_control: Shadow of the processor's group_control register. |
81 | * @debug_bus_control: Shadow of the processor's debug_bus_control register. | 80 | * @debug_bus_control: Shadow of the processor's debug_bus_control register. |
82 | * | 81 | * |
@@ -91,7 +90,6 @@ | |||
91 | struct ps3_lpm_shadow_regs { | 90 | struct ps3_lpm_shadow_regs { |
92 | u64 pm_control; | 91 | u64 pm_control; |
93 | u64 pm_start_stop; | 92 | u64 pm_start_stop; |
94 | u64 pm_interval; | ||
95 | u64 group_control; | 93 | u64 group_control; |
96 | u64 debug_bus_control; | 94 | u64 debug_bus_control; |
97 | }; | 95 | }; |
@@ -181,9 +179,9 @@ void ps3_set_bookmark(u64 bookmark) | |||
181 | * includes cycles before the call. | 179 | * includes cycles before the call. |
182 | */ | 180 | */ |
183 | 181 | ||
184 | asm volatile("or 29, 29, 29;"); /* db10cyc */ | 182 | asm volatile("nop;nop;nop;nop;nop;nop;nop;nop;nop;"); |
185 | mtspr(SPRN_BKMK, bookmark); | 183 | mtspr(SPRN_BKMK, bookmark); |
186 | asm volatile("or 29, 29, 29;"); /* db10cyc */ | 184 | asm volatile("nop;nop;nop;nop;nop;nop;nop;nop;nop;"); |
187 | } | 185 | } |
188 | EXPORT_SYMBOL_GPL(ps3_set_bookmark); | 186 | EXPORT_SYMBOL_GPL(ps3_set_bookmark); |
189 | 187 | ||
@@ -408,7 +406,14 @@ u32 ps3_read_pm(u32 cpu, enum pm_reg_name reg) | |||
408 | case pm_start_stop: | 406 | case pm_start_stop: |
409 | return lpm_priv->shadow.pm_start_stop; | 407 | return lpm_priv->shadow.pm_start_stop; |
410 | case pm_interval: | 408 | case pm_interval: |
411 | return lpm_priv->shadow.pm_interval; | 409 | result = lv1_set_lpm_interval(lpm_priv->lpm_id, 0, 0, &val); |
410 | if (result) { | ||
411 | val = 0; | ||
412 | dev_dbg(sbd_core(), "%s:%u: lv1 set_inteval failed: " | ||
413 | "reg %u, %s\n", __func__, __LINE__, reg, | ||
414 | ps3_result(result)); | ||
415 | } | ||
416 | return (u32)val; | ||
412 | case group_control: | 417 | case group_control: |
413 | return lpm_priv->shadow.group_control; | 418 | return lpm_priv->shadow.group_control; |
414 | case debug_bus_control: | 419 | case debug_bus_control: |
@@ -475,10 +480,8 @@ void ps3_write_pm(u32 cpu, enum pm_reg_name reg, u32 val) | |||
475 | lpm_priv->shadow.pm_control = val; | 480 | lpm_priv->shadow.pm_control = val; |
476 | break; | 481 | break; |
477 | case pm_interval: | 482 | case pm_interval: |
478 | if (val != lpm_priv->shadow.pm_interval) | 483 | result = lv1_set_lpm_interval(lpm_priv->lpm_id, val, |
479 | result = lv1_set_lpm_interval(lpm_priv->lpm_id, val, | 484 | PS3_WRITE_PM_MASK, &dummy); |
480 | PS3_WRITE_PM_MASK, &dummy); | ||
481 | lpm_priv->shadow.pm_interval = val; | ||
482 | break; | 485 | break; |
483 | case pm_start_stop: | 486 | case pm_start_stop: |
484 | if (val != lpm_priv->shadow.pm_start_stop) | 487 | if (val != lpm_priv->shadow.pm_start_stop) |
@@ -1140,7 +1143,6 @@ int ps3_lpm_open(enum ps3_lpm_tb_type tb_type, void *tb_cache, | |||
1140 | 1143 | ||
1141 | lpm_priv->shadow.pm_control = PS3_LPM_SHADOW_REG_INIT; | 1144 | lpm_priv->shadow.pm_control = PS3_LPM_SHADOW_REG_INIT; |
1142 | lpm_priv->shadow.pm_start_stop = PS3_LPM_SHADOW_REG_INIT; | 1145 | lpm_priv->shadow.pm_start_stop = PS3_LPM_SHADOW_REG_INIT; |
1143 | lpm_priv->shadow.pm_interval = PS3_LPM_SHADOW_REG_INIT; | ||
1144 | lpm_priv->shadow.group_control = PS3_LPM_SHADOW_REG_INIT; | 1146 | lpm_priv->shadow.group_control = PS3_LPM_SHADOW_REG_INIT; |
1145 | lpm_priv->shadow.debug_bus_control = PS3_LPM_SHADOW_REG_INIT; | 1147 | lpm_priv->shadow.debug_bus_control = PS3_LPM_SHADOW_REG_INIT; |
1146 | 1148 | ||
diff --git a/drivers/ps3/ps3-sys-manager.c b/drivers/ps3/ps3-sys-manager.c index c3c3aba3ffce..d4f6f960dd18 100644 --- a/drivers/ps3/ps3-sys-manager.c +++ b/drivers/ps3/ps3-sys-manager.c | |||
@@ -28,10 +28,6 @@ | |||
28 | 28 | ||
29 | #include "vuart.h" | 29 | #include "vuart.h" |
30 | 30 | ||
31 | MODULE_AUTHOR("Sony Corporation"); | ||
32 | MODULE_LICENSE("GPL v2"); | ||
33 | MODULE_DESCRIPTION("PS3 System Manager"); | ||
34 | |||
35 | /** | 31 | /** |
36 | * ps3_sys_manager - PS3 system manager driver. | 32 | * ps3_sys_manager - PS3 system manager driver. |
37 | * | 33 | * |
@@ -142,9 +138,11 @@ enum ps3_sys_manager_attr { | |||
142 | 138 | ||
143 | /** | 139 | /** |
144 | * enum ps3_sys_manager_event - External event type, reported by system manager. | 140 | * enum ps3_sys_manager_event - External event type, reported by system manager. |
145 | * @PS3_SM_EVENT_POWER_PRESSED: payload.value not used. | 141 | * @PS3_SM_EVENT_POWER_PRESSED: payload.value = |
142 | * enum ps3_sys_manager_button_event. | ||
146 | * @PS3_SM_EVENT_POWER_RELEASED: payload.value = time pressed in millisec. | 143 | * @PS3_SM_EVENT_POWER_RELEASED: payload.value = time pressed in millisec. |
147 | * @PS3_SM_EVENT_RESET_PRESSED: payload.value not used. | 144 | * @PS3_SM_EVENT_RESET_PRESSED: payload.value = |
145 | * enum ps3_sys_manager_button_event. | ||
148 | * @PS3_SM_EVENT_RESET_RELEASED: payload.value = time pressed in millisec. | 146 | * @PS3_SM_EVENT_RESET_RELEASED: payload.value = time pressed in millisec. |
149 | * @PS3_SM_EVENT_THERMAL_ALERT: payload.value = thermal zone id. | 147 | * @PS3_SM_EVENT_THERMAL_ALERT: payload.value = thermal zone id. |
150 | * @PS3_SM_EVENT_THERMAL_CLEARED: payload.value = thermal zone id. | 148 | * @PS3_SM_EVENT_THERMAL_CLEARED: payload.value = thermal zone id. |
@@ -162,6 +160,17 @@ enum ps3_sys_manager_event { | |||
162 | }; | 160 | }; |
163 | 161 | ||
164 | /** | 162 | /** |
163 | * enum ps3_sys_manager_button_event - Button event payload values. | ||
164 | * @PS3_SM_BUTTON_EVENT_HARD: Hardware generated event. | ||
165 | * @PS3_SM_BUTTON_EVENT_SOFT: Software generated event. | ||
166 | */ | ||
167 | |||
168 | enum ps3_sys_manager_button_event { | ||
169 | PS3_SM_BUTTON_EVENT_HARD = 0, | ||
170 | PS3_SM_BUTTON_EVENT_SOFT = 1, | ||
171 | }; | ||
172 | |||
173 | /** | ||
165 | * enum ps3_sys_manager_next_op - Operation to perform after lpar is destroyed. | 174 | * enum ps3_sys_manager_next_op - Operation to perform after lpar is destroyed. |
166 | */ | 175 | */ |
167 | 176 | ||
@@ -181,7 +190,9 @@ enum ps3_sys_manager_next_op { | |||
181 | * @PS3_SM_WAKE_P_O_R: Power on reset. | 190 | * @PS3_SM_WAKE_P_O_R: Power on reset. |
182 | * | 191 | * |
183 | * Additional wakeup sources when specifying PS3_SM_NEXT_OP_SYS_SHUTDOWN. | 192 | * Additional wakeup sources when specifying PS3_SM_NEXT_OP_SYS_SHUTDOWN. |
184 | * System will always wake from the PS3_SM_WAKE_DEFAULT sources. | 193 | * The system will always wake from the PS3_SM_WAKE_DEFAULT sources. |
194 | * Sources listed here are the only ones available to guests in the | ||
195 | * other-os lpar. | ||
185 | */ | 196 | */ |
186 | 197 | ||
187 | enum ps3_sys_manager_wake_source { | 198 | enum ps3_sys_manager_wake_source { |
@@ -189,7 +200,7 @@ enum ps3_sys_manager_wake_source { | |||
189 | PS3_SM_WAKE_DEFAULT = 0, | 200 | PS3_SM_WAKE_DEFAULT = 0, |
190 | PS3_SM_WAKE_RTC = 0x00000040, | 201 | PS3_SM_WAKE_RTC = 0x00000040, |
191 | PS3_SM_WAKE_RTC_ERROR = 0x00000080, | 202 | PS3_SM_WAKE_RTC_ERROR = 0x00000080, |
192 | PS3_SM_WAKE_P_O_R = 0x10000000, | 203 | PS3_SM_WAKE_P_O_R = 0x80000000, |
193 | }; | 204 | }; |
194 | 205 | ||
195 | /** | 206 | /** |
@@ -418,8 +429,10 @@ static int ps3_sys_manager_handle_event(struct ps3_system_bus_device *dev) | |||
418 | 429 | ||
419 | switch (event.type) { | 430 | switch (event.type) { |
420 | case PS3_SM_EVENT_POWER_PRESSED: | 431 | case PS3_SM_EVENT_POWER_PRESSED: |
421 | dev_dbg(&dev->core, "%s:%d: POWER_PRESSED\n", | 432 | dev_dbg(&dev->core, "%s:%d: POWER_PRESSED (%s)\n", |
422 | __func__, __LINE__); | 433 | __func__, __LINE__, |
434 | (event.value == PS3_SM_BUTTON_EVENT_SOFT ? "soft" | ||
435 | : "hard")); | ||
423 | ps3_sm_force_power_off = 1; | 436 | ps3_sm_force_power_off = 1; |
424 | /* | 437 | /* |
425 | * A memory barrier is use here to sync memory since | 438 | * A memory barrier is use here to sync memory since |
@@ -434,8 +447,10 @@ static int ps3_sys_manager_handle_event(struct ps3_system_bus_device *dev) | |||
434 | __func__, __LINE__, event.value); | 447 | __func__, __LINE__, event.value); |
435 | break; | 448 | break; |
436 | case PS3_SM_EVENT_RESET_PRESSED: | 449 | case PS3_SM_EVENT_RESET_PRESSED: |
437 | dev_dbg(&dev->core, "%s:%d: RESET_PRESSED\n", | 450 | dev_dbg(&dev->core, "%s:%d: RESET_PRESSED (%s)\n", |
438 | __func__, __LINE__); | 451 | __func__, __LINE__, |
452 | (event.value == PS3_SM_BUTTON_EVENT_SOFT ? "soft" | ||
453 | : "hard")); | ||
439 | ps3_sm_force_power_off = 0; | 454 | ps3_sm_force_power_off = 0; |
440 | /* | 455 | /* |
441 | * A memory barrier is use here to sync memory since | 456 | * A memory barrier is use here to sync memory since |
@@ -622,7 +637,7 @@ static void ps3_sys_manager_final_restart(struct ps3_system_bus_device *dev) | |||
622 | ps3_vuart_cancel_async(dev); | 637 | ps3_vuart_cancel_async(dev); |
623 | 638 | ||
624 | ps3_sys_manager_send_attr(dev, 0); | 639 | ps3_sys_manager_send_attr(dev, 0); |
625 | ps3_sys_manager_send_next_op(dev, PS3_SM_NEXT_OP_LPAR_REBOOT, | 640 | ps3_sys_manager_send_next_op(dev, PS3_SM_NEXT_OP_SYS_REBOOT, |
626 | PS3_SM_WAKE_DEFAULT); | 641 | PS3_SM_WAKE_DEFAULT); |
627 | ps3_sys_manager_send_request_shutdown(dev); | 642 | ps3_sys_manager_send_request_shutdown(dev); |
628 | 643 | ||
@@ -699,4 +714,7 @@ static int __init ps3_sys_manager_init(void) | |||
699 | module_init(ps3_sys_manager_init); | 714 | module_init(ps3_sys_manager_init); |
700 | /* Module remove not supported. */ | 715 | /* Module remove not supported. */ |
701 | 716 | ||
717 | MODULE_AUTHOR("Sony Corporation"); | ||
718 | MODULE_LICENSE("GPL v2"); | ||
719 | MODULE_DESCRIPTION("PS3 System Manager"); | ||
702 | MODULE_ALIAS(PS3_MODULE_ALIAS_SYSTEM_MANAGER); | 720 | MODULE_ALIAS(PS3_MODULE_ALIAS_SYSTEM_MANAGER); |
diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c index ddf639144538..9ce12cb2cebc 100644 --- a/drivers/serial/sh-sci.c +++ b/drivers/serial/sh-sci.c | |||
@@ -393,7 +393,7 @@ static void sci_init_pins_scif(struct uart_port *port, unsigned int cflag) | |||
393 | if (cflag & CRTSCTS) { | 393 | if (cflag & CRTSCTS) { |
394 | fcr_val |= SCFCR_MCE; | 394 | fcr_val |= SCFCR_MCE; |
395 | } else { | 395 | } else { |
396 | #ifdef CONFIG_CPU_SUBTYPE_SH7343 | 396 | #if defined(CONFIG_CPU_SUBTYPE_SH7343) || defined(CONFIG_CPU_SUBTYPE_SH7366) |
397 | /* Nothing */ | 397 | /* Nothing */ |
398 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 398 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
399 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ | 399 | defined(CONFIG_CPU_SUBTYPE_SH7780) || \ |
diff --git a/drivers/serial/sh-sci.h b/drivers/serial/sh-sci.h index f5764ebcfe07..01a9dd715f5d 100644 --- a/drivers/serial/sh-sci.h +++ b/drivers/serial/sh-sci.h | |||
@@ -97,13 +97,18 @@ | |||
97 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ | 97 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
98 | # define SCIF_ONLY | 98 | # define SCIF_ONLY |
99 | # define PORT_PSCR 0xA405011E | 99 | # define PORT_PSCR 0xA405011E |
100 | #elif defined(CONFIG_CPU_SUBTYPE_SH7366) | ||
101 | # define SCPDR0 0xA405013E /* 16 bit SCIF0 PSDR */ | ||
102 | # define SCSPTR0 SCPDR0 | ||
103 | # define SCIF_ORER 0x0001 /* overrun error bit */ | ||
104 | # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ | ||
105 | # define SCIF_ONLY | ||
100 | #elif defined(CONFIG_CPU_SUBTYPE_SH4_202) | 106 | #elif defined(CONFIG_CPU_SUBTYPE_SH4_202) |
101 | # define SCSPTR2 0xffe80020 /* 16 bit SCIF */ | 107 | # define SCSPTR2 0xffe80020 /* 16 bit SCIF */ |
102 | # define SCIF_ORER 0x0001 /* overrun error bit */ | 108 | # define SCIF_ORER 0x0001 /* overrun error bit */ |
103 | # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ | 109 | # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ |
104 | # define SCIF_ONLY | 110 | # define SCIF_ONLY |
105 | #elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103) | 111 | #elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103) |
106 | # include <asm/hardware.h> | ||
107 | # define SCIF_BASE_ADDR 0x01030000 | 112 | # define SCIF_BASE_ADDR 0x01030000 |
108 | # define SCIF_ADDR_SH5 PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR | 113 | # define SCIF_ADDR_SH5 PHYS_PERIPHERAL_BLOCK+SCIF_BASE_ADDR |
109 | # define SCIF_PTR2_OFFS 0x0000020 | 114 | # define SCIF_PTR2_OFFS 0x0000020 |
@@ -577,7 +582,7 @@ static inline int sci_rxd_in(struct uart_port *port) | |||
577 | return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */ | 582 | return ctrl_inw(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF */ |
578 | return 1; | 583 | return 1; |
579 | } | 584 | } |
580 | #elif defined(CONFIG_CPU_SUBTYPE_SH7722) | 585 | #elif defined(CONFIG_CPU_SUBTYPE_SH7722) || defined(CONFIG_CPU_SUBTYPE_SH7366) |
581 | static inline int sci_rxd_in(struct uart_port *port) | 586 | static inline int sci_rxd_in(struct uart_port *port) |
582 | { | 587 | { |
583 | if (port->mapbase == 0xffe00000) | 588 | if (port->mapbase == 0xffe00000) |
diff --git a/drivers/sh/maple/maple.c b/drivers/sh/maple/maple.c index e52a6296ca46..9cfcfd8dad5e 100644 --- a/drivers/sh/maple/maple.c +++ b/drivers/sh/maple/maple.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <asm/mach/dma.h> | 31 | #include <asm/mach/dma.h> |
32 | #include <asm/mach/sysasic.h> | 32 | #include <asm/mach/sysasic.h> |
33 | #include <asm/mach/maple.h> | 33 | #include <asm/mach/maple.h> |
34 | #include <linux/delay.h> | ||
34 | 35 | ||
35 | MODULE_AUTHOR("Yaegshi Takeshi, Paul Mundt, M.R. Brown, Adrian McMenamin"); | 36 | MODULE_AUTHOR("Yaegshi Takeshi, Paul Mundt, M.R. Brown, Adrian McMenamin"); |
36 | MODULE_DESCRIPTION("Maple bus driver for Dreamcast"); | 37 | MODULE_DESCRIPTION("Maple bus driver for Dreamcast"); |
@@ -53,12 +54,12 @@ static struct device maple_bus; | |||
53 | static int subdevice_map[MAPLE_PORTS]; | 54 | static int subdevice_map[MAPLE_PORTS]; |
54 | static unsigned long *maple_sendbuf, *maple_sendptr, *maple_lastptr; | 55 | static unsigned long *maple_sendbuf, *maple_sendptr, *maple_lastptr; |
55 | static unsigned long maple_pnp_time; | 56 | static unsigned long maple_pnp_time; |
56 | static int started, scanning, liststatus; | 57 | static int started, scanning, liststatus, realscan; |
57 | static struct kmem_cache *maple_queue_cache; | 58 | static struct kmem_cache *maple_queue_cache; |
58 | 59 | ||
59 | struct maple_device_specify { | 60 | struct maple_device_specify { |
60 | int port; | 61 | int port; |
61 | int unit; | 62 | int unit; |
62 | }; | 63 | }; |
63 | 64 | ||
64 | /** | 65 | /** |
@@ -68,22 +69,22 @@ struct maple_device_specify { | |||
68 | */ | 69 | */ |
69 | int maple_driver_register(struct device_driver *drv) | 70 | int maple_driver_register(struct device_driver *drv) |
70 | { | 71 | { |
71 | if (!drv) | 72 | if (!drv) |
72 | return -EINVAL; | 73 | return -EINVAL; |
73 | drv->bus = &maple_bus_type; | 74 | drv->bus = &maple_bus_type; |
74 | return driver_register(drv); | 75 | return driver_register(drv); |
75 | } | 76 | } |
76 | EXPORT_SYMBOL_GPL(maple_driver_register); | 77 | EXPORT_SYMBOL_GPL(maple_driver_register); |
77 | 78 | ||
78 | /* set hardware registers to enable next round of dma */ | 79 | /* set hardware registers to enable next round of dma */ |
79 | static void maplebus_dma_reset(void) | 80 | static void maplebus_dma_reset(void) |
80 | { | 81 | { |
81 | ctrl_outl(MAPLE_MAGIC, MAPLE_RESET); | 82 | ctrl_outl(MAPLE_MAGIC, MAPLE_RESET); |
82 | /* set trig type to 0 for software trigger, 1 for hardware (VBLANK) */ | 83 | /* set trig type to 0 for software trigger, 1 for hardware (VBLANK) */ |
83 | ctrl_outl(1, MAPLE_TRIGTYPE); | 84 | ctrl_outl(1, MAPLE_TRIGTYPE); |
84 | ctrl_outl(MAPLE_2MBPS | MAPLE_TIMEOUT(50000), MAPLE_SPEED); | 85 | ctrl_outl(MAPLE_2MBPS | MAPLE_TIMEOUT(50000), MAPLE_SPEED); |
85 | ctrl_outl(PHYSADDR(maple_sendbuf), MAPLE_DMAADDR); | 86 | ctrl_outl(PHYSADDR(maple_sendbuf), MAPLE_DMAADDR); |
86 | ctrl_outl(1, MAPLE_ENABLE); | 87 | ctrl_outl(1, MAPLE_ENABLE); |
87 | } | 88 | } |
88 | 89 | ||
89 | /** | 90 | /** |
@@ -94,27 +95,36 @@ static void maplebus_dma_reset(void) | |||
94 | * @function: the function code for the device | 95 | * @function: the function code for the device |
95 | */ | 96 | */ |
96 | void maple_getcond_callback(struct maple_device *dev, | 97 | void maple_getcond_callback(struct maple_device *dev, |
97 | void (*callback) (struct mapleq * mq), | 98 | void (*callback) (struct mapleq *mq), |
98 | unsigned long interval, unsigned long function) | 99 | unsigned long interval, unsigned long function) |
99 | { | 100 | { |
100 | dev->callback = callback; | 101 | dev->callback = callback; |
101 | dev->interval = interval; | 102 | dev->interval = interval; |
102 | dev->function = cpu_to_be32(function); | 103 | dev->function = cpu_to_be32(function); |
103 | dev->when = jiffies; | 104 | dev->when = jiffies; |
104 | } | 105 | } |
105 | EXPORT_SYMBOL_GPL(maple_getcond_callback); | 106 | EXPORT_SYMBOL_GPL(maple_getcond_callback); |
106 | 107 | ||
107 | static int maple_dma_done(void) | 108 | static int maple_dma_done(void) |
108 | { | 109 | { |
109 | return (ctrl_inl(MAPLE_STATE) & 1) == 0; | 110 | return (ctrl_inl(MAPLE_STATE) & 1) == 0; |
110 | } | 111 | } |
111 | 112 | ||
112 | static void maple_release_device(struct device *dev) | 113 | static void maple_release_device(struct device *dev) |
113 | { | 114 | { |
114 | if (dev->type) { | 115 | struct maple_device *mdev; |
115 | kfree(dev->type->name); | 116 | struct mapleq *mq; |
116 | kfree(dev->type); | 117 | if (!dev) |
117 | } | 118 | return; |
119 | mdev = to_maple_dev(dev); | ||
120 | mq = mdev->mq; | ||
121 | if (mq) { | ||
122 | if (mq->recvbufdcsp) | ||
123 | kmem_cache_free(maple_queue_cache, mq->recvbufdcsp); | ||
124 | kfree(mq); | ||
125 | mq = NULL; | ||
126 | } | ||
127 | kfree(mdev); | ||
118 | } | 128 | } |
119 | 129 | ||
120 | /** | 130 | /** |
@@ -123,60 +133,64 @@ static void maple_release_device(struct device *dev) | |||
123 | */ | 133 | */ |
124 | void maple_add_packet(struct mapleq *mq) | 134 | void maple_add_packet(struct mapleq *mq) |
125 | { | 135 | { |
126 | mutex_lock(&maple_list_lock); | 136 | mutex_lock(&maple_list_lock); |
127 | list_add(&mq->list, &maple_waitq); | 137 | list_add(&mq->list, &maple_waitq); |
128 | mutex_unlock(&maple_list_lock); | 138 | mutex_unlock(&maple_list_lock); |
129 | } | 139 | } |
130 | EXPORT_SYMBOL_GPL(maple_add_packet); | 140 | EXPORT_SYMBOL_GPL(maple_add_packet); |
131 | 141 | ||
132 | static struct mapleq *maple_allocq(struct maple_device *dev) | 142 | static struct mapleq *maple_allocq(struct maple_device *mdev) |
133 | { | 143 | { |
134 | struct mapleq *mq; | 144 | struct mapleq *mq; |
135 | 145 | ||
136 | mq = kmalloc(sizeof(*mq), GFP_KERNEL); | 146 | mq = kmalloc(sizeof(*mq), GFP_KERNEL); |
137 | if (!mq) | 147 | if (!mq) |
138 | return NULL; | 148 | return NULL; |
139 | 149 | ||
140 | mq->dev = dev; | 150 | mq->dev = mdev; |
141 | mq->recvbufdcsp = kmem_cache_zalloc(maple_queue_cache, GFP_KERNEL); | 151 | mq->recvbufdcsp = kmem_cache_zalloc(maple_queue_cache, GFP_KERNEL); |
142 | mq->recvbuf = (void *) P2SEGADDR(mq->recvbufdcsp); | 152 | mq->recvbuf = (void *) P2SEGADDR(mq->recvbufdcsp); |
143 | if (!mq->recvbuf) { | 153 | if (!mq->recvbuf) { |
144 | kfree(mq); | 154 | kfree(mq); |
145 | return NULL; | 155 | return NULL; |
146 | } | 156 | } |
147 | 157 | ||
148 | return mq; | 158 | return mq; |
149 | } | 159 | } |
150 | 160 | ||
151 | static struct maple_device *maple_alloc_dev(int port, int unit) | 161 | static struct maple_device *maple_alloc_dev(int port, int unit) |
152 | { | 162 | { |
153 | struct maple_device *dev; | 163 | struct maple_device *mdev; |
154 | 164 | ||
155 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); | 165 | mdev = kzalloc(sizeof(*mdev), GFP_KERNEL); |
156 | if (!dev) | 166 | if (!mdev) |
157 | return NULL; | 167 | return NULL; |
158 | 168 | ||
159 | dev->port = port; | 169 | mdev->port = port; |
160 | dev->unit = unit; | 170 | mdev->unit = unit; |
161 | dev->mq = maple_allocq(dev); | 171 | mdev->mq = maple_allocq(mdev); |
162 | 172 | ||
163 | if (!dev->mq) { | 173 | if (!mdev->mq) { |
164 | kfree(dev); | 174 | kfree(mdev); |
165 | return NULL; | 175 | return NULL; |
166 | } | 176 | } |
167 | 177 | mdev->dev.bus = &maple_bus_type; | |
168 | return dev; | 178 | mdev->dev.parent = &maple_bus; |
179 | mdev->function = 0; | ||
180 | return mdev; | ||
169 | } | 181 | } |
170 | 182 | ||
171 | static void maple_free_dev(struct maple_device *mdev) | 183 | static void maple_free_dev(struct maple_device *mdev) |
172 | { | 184 | { |
173 | if (!mdev) | 185 | if (!mdev) |
174 | return; | 186 | return; |
175 | if (mdev->mq) { | 187 | if (mdev->mq) { |
176 | kmem_cache_free(maple_queue_cache, mdev->mq->recvbufdcsp); | 188 | if (mdev->mq->recvbufdcsp) |
177 | kfree(mdev->mq); | 189 | kmem_cache_free(maple_queue_cache, |
178 | } | 190 | mdev->mq->recvbufdcsp); |
179 | kfree(mdev); | 191 | kfree(mdev->mq); |
192 | } | ||
193 | kfree(mdev); | ||
180 | } | 194 | } |
181 | 195 | ||
182 | /* process the command queue into a maple command block | 196 | /* process the command queue into a maple command block |
@@ -184,153 +198,162 @@ static void maple_free_dev(struct maple_device *mdev) | |||
184 | */ | 198 | */ |
185 | static void maple_build_block(struct mapleq *mq) | 199 | static void maple_build_block(struct mapleq *mq) |
186 | { | 200 | { |
187 | int port, unit, from, to, len; | 201 | int port, unit, from, to, len; |
188 | unsigned long *lsendbuf = mq->sendbuf; | 202 | unsigned long *lsendbuf = mq->sendbuf; |
189 | 203 | ||
190 | port = mq->dev->port & 3; | 204 | port = mq->dev->port & 3; |
191 | unit = mq->dev->unit; | 205 | unit = mq->dev->unit; |
192 | len = mq->length; | 206 | len = mq->length; |
193 | from = port << 6; | 207 | from = port << 6; |
194 | to = (port << 6) | (unit > 0 ? (1 << (unit - 1)) & 0x1f : 0x20); | 208 | to = (port << 6) | (unit > 0 ? (1 << (unit - 1)) & 0x1f : 0x20); |
195 | 209 | ||
196 | *maple_lastptr &= 0x7fffffff; | 210 | *maple_lastptr &= 0x7fffffff; |
197 | maple_lastptr = maple_sendptr; | 211 | maple_lastptr = maple_sendptr; |
198 | 212 | ||
199 | *maple_sendptr++ = (port << 16) | len | 0x80000000; | 213 | *maple_sendptr++ = (port << 16) | len | 0x80000000; |
200 | *maple_sendptr++ = PHYSADDR(mq->recvbuf); | 214 | *maple_sendptr++ = PHYSADDR(mq->recvbuf); |
201 | *maple_sendptr++ = | 215 | *maple_sendptr++ = |
202 | mq->command | (to << 8) | (from << 16) | (len << 24); | 216 | mq->command | (to << 8) | (from << 16) | (len << 24); |
203 | 217 | ||
204 | while (len-- > 0) | 218 | while (len-- > 0) |
205 | *maple_sendptr++ = *lsendbuf++; | 219 | *maple_sendptr++ = *lsendbuf++; |
206 | } | 220 | } |
207 | 221 | ||
208 | /* build up command queue */ | 222 | /* build up command queue */ |
209 | static void maple_send(void) | 223 | static void maple_send(void) |
210 | { | 224 | { |
211 | int i; | 225 | int i; |
212 | int maple_packets; | 226 | int maple_packets; |
213 | struct mapleq *mq, *nmq; | 227 | struct mapleq *mq, *nmq; |
214 | 228 | ||
215 | if (!list_empty(&maple_sentq)) | 229 | if (!list_empty(&maple_sentq)) |
216 | return; | 230 | return; |
217 | if (list_empty(&maple_waitq) || !maple_dma_done()) | 231 | if (list_empty(&maple_waitq) || !maple_dma_done()) |
218 | return; | 232 | return; |
219 | maple_packets = 0; | 233 | maple_packets = 0; |
220 | maple_sendptr = maple_lastptr = maple_sendbuf; | 234 | maple_sendptr = maple_lastptr = maple_sendbuf; |
221 | list_for_each_entry_safe(mq, nmq, &maple_waitq, list) { | 235 | list_for_each_entry_safe(mq, nmq, &maple_waitq, list) { |
222 | maple_build_block(mq); | 236 | maple_build_block(mq); |
223 | list_move(&mq->list, &maple_sentq); | 237 | list_move(&mq->list, &maple_sentq); |
224 | if (maple_packets++ > MAPLE_MAXPACKETS) | 238 | if (maple_packets++ > MAPLE_MAXPACKETS) |
225 | break; | 239 | break; |
226 | } | 240 | } |
227 | if (maple_packets > 0) { | 241 | if (maple_packets > 0) { |
228 | for (i = 0; i < (1 << MAPLE_DMA_PAGES); i++) | 242 | for (i = 0; i < (1 << MAPLE_DMA_PAGES); i++) |
229 | dma_cache_sync(0, maple_sendbuf + i * PAGE_SIZE, | 243 | dma_cache_sync(0, maple_sendbuf + i * PAGE_SIZE, |
230 | PAGE_SIZE, DMA_BIDIRECTIONAL); | 244 | PAGE_SIZE, DMA_BIDIRECTIONAL); |
231 | } | 245 | } |
232 | } | 246 | } |
233 | 247 | ||
234 | static int attach_matching_maple_driver(struct device_driver *driver, | 248 | static int attach_matching_maple_driver(struct device_driver *driver, |
235 | void *devptr) | 249 | void *devptr) |
236 | { | 250 | { |
237 | struct maple_driver *maple_drv; | 251 | struct maple_driver *maple_drv; |
238 | struct maple_device *mdev; | 252 | struct maple_device *mdev; |
239 | 253 | ||
240 | mdev = devptr; | 254 | mdev = devptr; |
241 | maple_drv = to_maple_driver(driver); | 255 | maple_drv = to_maple_driver(driver); |
242 | if (mdev->devinfo.function & be32_to_cpu(maple_drv->function)) { | 256 | if (mdev->devinfo.function & be32_to_cpu(maple_drv->function)) { |
243 | if (maple_drv->connect(mdev) == 0) { | 257 | if (maple_drv->connect(mdev) == 0) { |
244 | mdev->driver = maple_drv; | 258 | mdev->driver = maple_drv; |
245 | return 1; | 259 | return 1; |
246 | } | 260 | } |
247 | } | 261 | } |
248 | return 0; | 262 | return 0; |
249 | } | 263 | } |
250 | 264 | ||
251 | static void maple_detach_driver(struct maple_device *mdev) | 265 | static void maple_detach_driver(struct maple_device *mdev) |
252 | { | 266 | { |
253 | if (!mdev) | 267 | if (!mdev) |
254 | return; | 268 | return; |
255 | if (mdev->driver) { | 269 | if (mdev->driver) { |
256 | if (mdev->driver->disconnect) | 270 | if (mdev->driver->disconnect) |
257 | mdev->driver->disconnect(mdev); | 271 | mdev->driver->disconnect(mdev); |
258 | } | 272 | } |
259 | mdev->driver = NULL; | 273 | mdev->driver = NULL; |
260 | if (mdev->registered) { | 274 | device_unregister(&mdev->dev); |
261 | maple_release_device(&mdev->dev); | 275 | mdev = NULL; |
262 | device_unregister(&mdev->dev); | ||
263 | } | ||
264 | mdev->registered = 0; | ||
265 | maple_free_dev(mdev); | ||
266 | } | 276 | } |
267 | 277 | ||
268 | /* process initial MAPLE_COMMAND_DEVINFO for each device or port */ | 278 | /* process initial MAPLE_COMMAND_DEVINFO for each device or port */ |
269 | static void maple_attach_driver(struct maple_device *dev) | 279 | static void maple_attach_driver(struct maple_device *mdev) |
270 | { | 280 | { |
271 | char *p; | 281 | char *p, *recvbuf; |
272 | 282 | unsigned long function; | |
273 | char *recvbuf; | 283 | int matched, retval; |
274 | unsigned long function; | 284 | |
275 | int matched, retval; | 285 | recvbuf = mdev->mq->recvbuf; |
276 | 286 | /* copy the data as individual elements in | |
277 | recvbuf = dev->mq->recvbuf; | 287 | * case of memory optimisation */ |
278 | memcpy(&dev->devinfo, recvbuf + 4, sizeof(dev->devinfo)); | 288 | memcpy(&mdev->devinfo.function, recvbuf + 4, 4); |
279 | memcpy(dev->product_name, dev->devinfo.product_name, 30); | 289 | memcpy(&mdev->devinfo.function_data[0], recvbuf + 8, 12); |
280 | memcpy(dev->product_licence, dev->devinfo.product_licence, 60); | 290 | memcpy(&mdev->devinfo.area_code, recvbuf + 20, 1); |
281 | dev->product_name[30] = '\0'; | 291 | memcpy(&mdev->devinfo.connector_direction, recvbuf + 21, 1); |
282 | dev->product_licence[60] = '\0'; | 292 | memcpy(&mdev->devinfo.product_name[0], recvbuf + 22, 30); |
283 | 293 | memcpy(&mdev->devinfo.product_licence[0], recvbuf + 52, 60); | |
284 | for (p = dev->product_name + 29; dev->product_name <= p; p--) | 294 | memcpy(&mdev->devinfo.standby_power, recvbuf + 112, 2); |
285 | if (*p == ' ') | 295 | memcpy(&mdev->devinfo.max_power, recvbuf + 114, 2); |
286 | *p = '\0'; | 296 | memcpy(mdev->product_name, mdev->devinfo.product_name, 30); |
287 | else | 297 | mdev->product_name[30] = '\0'; |
288 | break; | 298 | memcpy(mdev->product_licence, mdev->devinfo.product_licence, 60); |
289 | 299 | mdev->product_licence[60] = '\0'; | |
290 | for (p = dev->product_licence + 59; dev->product_licence <= p; p--) | 300 | |
291 | if (*p == ' ') | 301 | for (p = mdev->product_name + 29; mdev->product_name <= p; p--) |
292 | *p = '\0'; | 302 | if (*p == ' ') |
293 | else | 303 | *p = '\0'; |
294 | break; | 304 | else |
295 | 305 | break; | |
296 | function = be32_to_cpu(dev->devinfo.function); | 306 | for (p = mdev->product_licence + 59; mdev->product_licence <= p; p--) |
297 | 307 | if (*p == ' ') | |
298 | if (function > 0x200) { | 308 | *p = '\0'; |
299 | /* Do this silently - as not a real device */ | 309 | else |
300 | function = 0; | 310 | break; |
301 | dev->driver = &maple_dummy_driver; | 311 | |
302 | sprintf(dev->dev.bus_id, "%d:0.port", dev->port); | 312 | if (realscan) { |
303 | } else { | 313 | printk(KERN_INFO "Maple device detected: %s\n", |
304 | printk(KERN_INFO | 314 | mdev->product_name); |
305 | "Maple bus at (%d, %d): Connected function 0x%lX\n", | 315 | printk(KERN_INFO "Maple device: %s\n", mdev->product_licence); |
306 | dev->port, dev->unit, function); | 316 | } |
307 | 317 | ||
308 | matched = | 318 | function = be32_to_cpu(mdev->devinfo.function); |
309 | bus_for_each_drv(&maple_bus_type, NULL, dev, | 319 | |
310 | attach_matching_maple_driver); | 320 | if (function > 0x200) { |
311 | 321 | /* Do this silently - as not a real device */ | |
312 | if (matched == 0) { | 322 | function = 0; |
313 | /* Driver does not exist yet */ | 323 | mdev->driver = &maple_dummy_driver; |
314 | printk(KERN_INFO | 324 | sprintf(mdev->dev.bus_id, "%d:0.port", mdev->port); |
315 | "No maple driver found for this device\n"); | 325 | } else { |
316 | dev->driver = &maple_dummy_driver; | 326 | if (realscan) |
317 | } | 327 | printk(KERN_INFO |
318 | 328 | "Maple bus at (%d, %d): Function 0x%lX\n", | |
319 | sprintf(dev->dev.bus_id, "%d:0%d.%lX", dev->port, | 329 | mdev->port, mdev->unit, function); |
320 | dev->unit, function); | 330 | |
321 | } | 331 | matched = |
322 | dev->function = function; | 332 | bus_for_each_drv(&maple_bus_type, NULL, mdev, |
323 | dev->dev.bus = &maple_bus_type; | 333 | attach_matching_maple_driver); |
324 | dev->dev.parent = &maple_bus; | 334 | |
325 | dev->dev.release = &maple_release_device; | 335 | if (matched == 0) { |
326 | retval = device_register(&dev->dev); | 336 | /* Driver does not exist yet */ |
327 | if (retval) { | 337 | if (realscan) |
328 | printk(KERN_INFO | 338 | printk(KERN_INFO |
329 | "Maple bus: Attempt to register device (%x, %x) failed.\n", | 339 | "No maple driver found.\n"); |
330 | dev->port, dev->unit); | 340 | mdev->driver = &maple_dummy_driver; |
331 | maple_free_dev(dev); | 341 | } |
332 | } | 342 | sprintf(mdev->dev.bus_id, "%d:0%d.%lX", mdev->port, |
333 | dev->registered = 1; | 343 | mdev->unit, function); |
344 | } | ||
345 | mdev->function = function; | ||
346 | mdev->dev.release = &maple_release_device; | ||
347 | retval = device_register(&mdev->dev); | ||
348 | if (retval) { | ||
349 | printk(KERN_INFO | ||
350 | "Maple bus: Attempt to register device" | ||
351 | " (%x, %x) failed.\n", | ||
352 | mdev->port, mdev->unit); | ||
353 | maple_free_dev(mdev); | ||
354 | mdev = NULL; | ||
355 | return; | ||
356 | } | ||
334 | } | 357 | } |
335 | 358 | ||
336 | /* | 359 | /* |
@@ -340,270 +363,262 @@ static void maple_attach_driver(struct maple_device *dev) | |||
340 | */ | 363 | */ |
341 | static int detach_maple_device(struct device *device, void *portptr) | 364 | static int detach_maple_device(struct device *device, void *portptr) |
342 | { | 365 | { |
343 | struct maple_device_specify *ds; | 366 | struct maple_device_specify *ds; |
344 | struct maple_device *mdev; | 367 | struct maple_device *mdev; |
345 | 368 | ||
346 | ds = portptr; | 369 | ds = portptr; |
347 | mdev = to_maple_dev(device); | 370 | mdev = to_maple_dev(device); |
348 | if (mdev->port == ds->port && mdev->unit == ds->unit) | 371 | if (mdev->port == ds->port && mdev->unit == ds->unit) |
349 | return 1; | 372 | return 1; |
350 | return 0; | 373 | return 0; |
351 | } | 374 | } |
352 | 375 | ||
353 | static int setup_maple_commands(struct device *device, void *ignored) | 376 | static int setup_maple_commands(struct device *device, void *ignored) |
354 | { | 377 | { |
355 | struct maple_device *maple_dev = to_maple_dev(device); | 378 | struct maple_device *maple_dev = to_maple_dev(device); |
356 | 379 | ||
357 | if ((maple_dev->interval > 0) | 380 | if ((maple_dev->interval > 0) |
358 | && time_after(jiffies, maple_dev->when)) { | 381 | && time_after(jiffies, maple_dev->when)) { |
359 | maple_dev->when = jiffies + maple_dev->interval; | 382 | maple_dev->when = jiffies + maple_dev->interval; |
360 | maple_dev->mq->command = MAPLE_COMMAND_GETCOND; | 383 | maple_dev->mq->command = MAPLE_COMMAND_GETCOND; |
361 | maple_dev->mq->sendbuf = &maple_dev->function; | 384 | maple_dev->mq->sendbuf = &maple_dev->function; |
362 | maple_dev->mq->length = 1; | 385 | maple_dev->mq->length = 1; |
363 | maple_add_packet(maple_dev->mq); | 386 | maple_add_packet(maple_dev->mq); |
364 | liststatus++; | 387 | liststatus++; |
365 | } else { | 388 | } else { |
366 | if (time_after(jiffies, maple_pnp_time)) { | 389 | if (time_after(jiffies, maple_pnp_time)) { |
367 | maple_dev->mq->command = MAPLE_COMMAND_DEVINFO; | 390 | maple_dev->mq->command = MAPLE_COMMAND_DEVINFO; |
368 | maple_dev->mq->length = 0; | 391 | maple_dev->mq->length = 0; |
369 | maple_add_packet(maple_dev->mq); | 392 | maple_add_packet(maple_dev->mq); |
370 | liststatus++; | 393 | liststatus++; |
371 | } | 394 | } |
372 | } | 395 | } |
373 | 396 | ||
374 | return 0; | 397 | return 0; |
375 | } | 398 | } |
376 | 399 | ||
377 | /* VBLANK bottom half - implemented via workqueue */ | 400 | /* VBLANK bottom half - implemented via workqueue */ |
378 | static void maple_vblank_handler(struct work_struct *work) | 401 | static void maple_vblank_handler(struct work_struct *work) |
379 | { | 402 | { |
380 | if (!maple_dma_done()) | 403 | if (!maple_dma_done()) |
381 | return; | 404 | return; |
382 | if (!list_empty(&maple_sentq)) | 405 | if (!list_empty(&maple_sentq)) |
383 | return; | 406 | return; |
384 | ctrl_outl(0, MAPLE_ENABLE); | 407 | ctrl_outl(0, MAPLE_ENABLE); |
385 | liststatus = 0; | 408 | liststatus = 0; |
386 | bus_for_each_dev(&maple_bus_type, NULL, NULL, | 409 | bus_for_each_dev(&maple_bus_type, NULL, NULL, |
387 | setup_maple_commands); | 410 | setup_maple_commands); |
388 | if (time_after(jiffies, maple_pnp_time)) | 411 | if (time_after(jiffies, maple_pnp_time)) |
389 | maple_pnp_time = jiffies + MAPLE_PNP_INTERVAL; | 412 | maple_pnp_time = jiffies + MAPLE_PNP_INTERVAL; |
390 | if (liststatus && list_empty(&maple_sentq)) { | 413 | if (liststatus && list_empty(&maple_sentq)) { |
391 | INIT_LIST_HEAD(&maple_sentq); | 414 | INIT_LIST_HEAD(&maple_sentq); |
392 | maple_send(); | 415 | maple_send(); |
393 | } | 416 | } |
394 | maplebus_dma_reset(); | 417 | maplebus_dma_reset(); |
395 | } | 418 | } |
396 | 419 | ||
397 | /* handle devices added via hotplugs - placing them on queue for DEVINFO*/ | 420 | /* handle devices added via hotplugs - placing them on queue for DEVINFO*/ |
398 | static void maple_map_subunits(struct maple_device *mdev, int submask) | 421 | static void maple_map_subunits(struct maple_device *mdev, int submask) |
399 | { | 422 | { |
400 | int retval, k, devcheck; | 423 | int retval, k, devcheck; |
401 | struct maple_device *mdev_add; | 424 | struct maple_device *mdev_add; |
402 | struct maple_device_specify ds; | 425 | struct maple_device_specify ds; |
403 | 426 | ||
404 | for (k = 0; k < 5; k++) { | 427 | for (k = 0; k < 5; k++) { |
405 | ds.port = mdev->port; | 428 | ds.port = mdev->port; |
406 | ds.unit = k + 1; | 429 | ds.unit = k + 1; |
407 | retval = | 430 | retval = |
408 | bus_for_each_dev(&maple_bus_type, NULL, &ds, | 431 | bus_for_each_dev(&maple_bus_type, NULL, &ds, |
409 | detach_maple_device); | 432 | detach_maple_device); |
410 | if (retval) { | 433 | if (retval) { |
411 | submask = submask >> 1; | 434 | submask = submask >> 1; |
412 | continue; | 435 | continue; |
413 | } | 436 | } |
414 | devcheck = submask & 0x01; | 437 | devcheck = submask & 0x01; |
415 | if (devcheck) { | 438 | if (devcheck) { |
416 | mdev_add = maple_alloc_dev(mdev->port, k + 1); | 439 | mdev_add = maple_alloc_dev(mdev->port, k + 1); |
417 | if (!mdev_add) | 440 | if (!mdev_add) |
418 | return; | 441 | return; |
419 | mdev_add->mq->command = MAPLE_COMMAND_DEVINFO; | 442 | mdev_add->mq->command = MAPLE_COMMAND_DEVINFO; |
420 | mdev_add->mq->length = 0; | 443 | mdev_add->mq->length = 0; |
421 | maple_add_packet(mdev_add->mq); | 444 | maple_add_packet(mdev_add->mq); |
422 | scanning = 1; | 445 | scanning = 1; |
423 | } | 446 | } |
424 | submask = submask >> 1; | 447 | submask = submask >> 1; |
425 | } | 448 | } |
426 | } | 449 | } |
427 | 450 | ||
428 | /* mark a device as removed */ | 451 | /* mark a device as removed */ |
429 | static void maple_clean_submap(struct maple_device *mdev) | 452 | static void maple_clean_submap(struct maple_device *mdev) |
430 | { | 453 | { |
431 | int killbit; | 454 | int killbit; |
432 | 455 | ||
433 | killbit = (mdev->unit > 0 ? (1 << (mdev->unit - 1)) & 0x1f : 0x20); | 456 | killbit = (mdev->unit > 0 ? (1 << (mdev->unit - 1)) & 0x1f : 0x20); |
434 | killbit = ~killbit; | 457 | killbit = ~killbit; |
435 | killbit &= 0xFF; | 458 | killbit &= 0xFF; |
436 | subdevice_map[mdev->port] = subdevice_map[mdev->port] & killbit; | 459 | subdevice_map[mdev->port] = subdevice_map[mdev->port] & killbit; |
437 | } | 460 | } |
438 | 461 | ||
439 | /* handle empty port or hotplug removal */ | 462 | /* handle empty port or hotplug removal */ |
440 | static void maple_response_none(struct maple_device *mdev, | 463 | static void maple_response_none(struct maple_device *mdev, |
441 | struct mapleq *mq) | 464 | struct mapleq *mq) |
442 | { | 465 | { |
443 | if (mdev->unit != 0) { | 466 | if (mdev->unit != 0) { |
444 | list_del(&mq->list); | 467 | list_del(&mq->list); |
445 | maple_clean_submap(mdev); | 468 | maple_clean_submap(mdev); |
446 | printk(KERN_INFO | 469 | printk(KERN_INFO |
447 | "Maple bus device detaching at (%d, %d)\n", | 470 | "Maple bus device detaching at (%d, %d)\n", |
448 | mdev->port, mdev->unit); | 471 | mdev->port, mdev->unit); |
449 | maple_detach_driver(mdev); | 472 | maple_detach_driver(mdev); |
450 | return; | 473 | return; |
451 | } | 474 | } |
452 | if (!started) { | 475 | if (!started) { |
453 | printk(KERN_INFO "No maple devices attached to port %d\n", | 476 | printk(KERN_INFO "No maple devices attached to port %d\n", |
454 | mdev->port); | 477 | mdev->port); |
455 | return; | 478 | return; |
456 | } | 479 | } |
457 | maple_clean_submap(mdev); | 480 | maple_clean_submap(mdev); |
458 | } | 481 | } |
459 | 482 | ||
460 | /* preprocess hotplugs or scans */ | 483 | /* preprocess hotplugs or scans */ |
461 | static void maple_response_devinfo(struct maple_device *mdev, | 484 | static void maple_response_devinfo(struct maple_device *mdev, |
462 | char *recvbuf) | 485 | char *recvbuf) |
463 | { | 486 | { |
464 | char submask; | 487 | char submask; |
465 | if ((!started) || (scanning == 2)) { | 488 | if ((!started) || (scanning == 2)) { |
466 | maple_attach_driver(mdev); | 489 | maple_attach_driver(mdev); |
467 | return; | 490 | return; |
468 | } | 491 | } |
469 | if (mdev->unit == 0) { | 492 | if (mdev->unit == 0) { |
470 | submask = recvbuf[2] & 0x1F; | 493 | submask = recvbuf[2] & 0x1F; |
471 | if (submask ^ subdevice_map[mdev->port]) { | 494 | if (submask ^ subdevice_map[mdev->port]) { |
472 | maple_map_subunits(mdev, submask); | 495 | maple_map_subunits(mdev, submask); |
473 | subdevice_map[mdev->port] = submask; | 496 | subdevice_map[mdev->port] = submask; |
474 | } | 497 | } |
475 | } | 498 | } |
476 | } | 499 | } |
477 | 500 | ||
478 | /* maple dma end bottom half - implemented via workqueue */ | 501 | /* maple dma end bottom half - implemented via workqueue */ |
479 | static void maple_dma_handler(struct work_struct *work) | 502 | static void maple_dma_handler(struct work_struct *work) |
480 | { | 503 | { |
481 | struct mapleq *mq, *nmq; | 504 | struct mapleq *mq, *nmq; |
482 | struct maple_device *dev; | 505 | struct maple_device *dev; |
483 | char *recvbuf; | 506 | char *recvbuf; |
484 | enum maple_code code; | 507 | enum maple_code code; |
485 | 508 | ||
486 | if (!maple_dma_done()) | 509 | if (!maple_dma_done()) |
487 | return; | 510 | return; |
488 | ctrl_outl(0, MAPLE_ENABLE); | 511 | ctrl_outl(0, MAPLE_ENABLE); |
489 | if (!list_empty(&maple_sentq)) { | 512 | if (!list_empty(&maple_sentq)) { |
490 | list_for_each_entry_safe(mq, nmq, &maple_sentq, list) { | 513 | list_for_each_entry_safe(mq, nmq, &maple_sentq, list) { |
491 | recvbuf = mq->recvbuf; | 514 | recvbuf = mq->recvbuf; |
492 | code = recvbuf[0]; | 515 | code = recvbuf[0]; |
493 | dev = mq->dev; | 516 | dev = mq->dev; |
494 | switch (code) { | 517 | switch (code) { |
495 | case MAPLE_RESPONSE_NONE: | 518 | case MAPLE_RESPONSE_NONE: |
496 | maple_response_none(dev, mq); | 519 | maple_response_none(dev, mq); |
497 | break; | 520 | break; |
498 | 521 | ||
499 | case MAPLE_RESPONSE_DEVINFO: | 522 | case MAPLE_RESPONSE_DEVINFO: |
500 | maple_response_devinfo(dev, recvbuf); | 523 | maple_response_devinfo(dev, recvbuf); |
501 | break; | 524 | break; |
502 | 525 | ||
503 | case MAPLE_RESPONSE_DATATRF: | 526 | case MAPLE_RESPONSE_DATATRF: |
504 | if (dev->callback) | 527 | if (dev->callback) |
505 | dev->callback(mq); | 528 | dev->callback(mq); |
506 | break; | 529 | break; |
507 | 530 | ||
508 | case MAPLE_RESPONSE_FILEERR: | 531 | case MAPLE_RESPONSE_FILEERR: |
509 | case MAPLE_RESPONSE_AGAIN: | 532 | case MAPLE_RESPONSE_AGAIN: |
510 | case MAPLE_RESPONSE_BADCMD: | 533 | case MAPLE_RESPONSE_BADCMD: |
511 | case MAPLE_RESPONSE_BADFUNC: | 534 | case MAPLE_RESPONSE_BADFUNC: |
512 | printk(KERN_DEBUG | 535 | printk(KERN_DEBUG |
513 | "Maple non-fatal error 0x%X\n", | 536 | "Maple non-fatal error 0x%X\n", |
514 | code); | 537 | code); |
515 | break; | 538 | break; |
516 | 539 | ||
517 | case MAPLE_RESPONSE_ALLINFO: | 540 | case MAPLE_RESPONSE_ALLINFO: |
518 | printk(KERN_DEBUG | 541 | printk(KERN_DEBUG |
519 | "Maple - extended device information not supported\n"); | 542 | "Maple - extended device information" |
520 | break; | 543 | " not supported\n"); |
521 | 544 | break; | |
522 | case MAPLE_RESPONSE_OK: | 545 | |
523 | break; | 546 | case MAPLE_RESPONSE_OK: |
524 | 547 | break; | |
525 | default: | 548 | |
526 | break; | 549 | default: |
527 | } | 550 | break; |
528 | } | 551 | } |
529 | INIT_LIST_HEAD(&maple_sentq); | 552 | } |
530 | if (scanning == 1) { | 553 | INIT_LIST_HEAD(&maple_sentq); |
531 | maple_send(); | 554 | if (scanning == 1) { |
532 | scanning = 2; | 555 | maple_send(); |
533 | } else | 556 | scanning = 2; |
534 | scanning = 0; | 557 | } else |
535 | 558 | scanning = 0; | |
536 | if (started == 0) | 559 | |
537 | started = 1; | 560 | if (started == 0) |
538 | } | 561 | started = 1; |
539 | maplebus_dma_reset(); | 562 | } |
563 | maplebus_dma_reset(); | ||
540 | } | 564 | } |
541 | 565 | ||
542 | static irqreturn_t maplebus_dma_interrupt(int irq, void *dev_id) | 566 | static irqreturn_t maplebus_dma_interrupt(int irq, void *dev_id) |
543 | { | 567 | { |
544 | /* Load everything into the bottom half */ | 568 | /* Load everything into the bottom half */ |
545 | schedule_work(&maple_dma_process); | 569 | schedule_work(&maple_dma_process); |
546 | return IRQ_HANDLED; | 570 | return IRQ_HANDLED; |
547 | } | 571 | } |
548 | 572 | ||
549 | static irqreturn_t maplebus_vblank_interrupt(int irq, void *dev_id) | 573 | static irqreturn_t maplebus_vblank_interrupt(int irq, void *dev_id) |
550 | { | 574 | { |
551 | schedule_work(&maple_vblank_process); | 575 | schedule_work(&maple_vblank_process); |
552 | return IRQ_HANDLED; | 576 | return IRQ_HANDLED; |
553 | } | 577 | } |
554 | 578 | ||
555 | static struct irqaction maple_dma_irq = { | ||
556 | .name = "maple bus DMA handler", | ||
557 | .handler = maplebus_dma_interrupt, | ||
558 | .flags = IRQF_SHARED, | ||
559 | }; | ||
560 | |||
561 | static struct irqaction maple_vblank_irq = { | ||
562 | .name = "maple bus VBLANK handler", | ||
563 | .handler = maplebus_vblank_interrupt, | ||
564 | .flags = IRQF_SHARED, | ||
565 | }; | ||
566 | |||
567 | static int maple_set_dma_interrupt_handler(void) | 579 | static int maple_set_dma_interrupt_handler(void) |
568 | { | 580 | { |
569 | return setup_irq(HW_EVENT_MAPLE_DMA, &maple_dma_irq); | 581 | return request_irq(HW_EVENT_MAPLE_DMA, maplebus_dma_interrupt, |
582 | IRQF_SHARED, "maple bus DMA", &maple_dummy_driver); | ||
570 | } | 583 | } |
571 | 584 | ||
572 | static int maple_set_vblank_interrupt_handler(void) | 585 | static int maple_set_vblank_interrupt_handler(void) |
573 | { | 586 | { |
574 | return setup_irq(HW_EVENT_VSYNC, &maple_vblank_irq); | 587 | return request_irq(HW_EVENT_VSYNC, maplebus_vblank_interrupt, |
588 | IRQF_SHARED, "maple bus VBLANK", &maple_dummy_driver); | ||
575 | } | 589 | } |
576 | 590 | ||
577 | static int maple_get_dma_buffer(void) | 591 | static int maple_get_dma_buffer(void) |
578 | { | 592 | { |
579 | maple_sendbuf = | 593 | maple_sendbuf = |
580 | (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO, | 594 | (void *) __get_free_pages(GFP_KERNEL | __GFP_ZERO, |
581 | MAPLE_DMA_PAGES); | 595 | MAPLE_DMA_PAGES); |
582 | if (!maple_sendbuf) | 596 | if (!maple_sendbuf) |
583 | return -ENOMEM; | 597 | return -ENOMEM; |
584 | return 0; | 598 | return 0; |
585 | } | 599 | } |
586 | 600 | ||
587 | static int match_maple_bus_driver(struct device *devptr, | 601 | static int match_maple_bus_driver(struct device *devptr, |
588 | struct device_driver *drvptr) | 602 | struct device_driver *drvptr) |
589 | { | 603 | { |
590 | struct maple_driver *maple_drv; | 604 | struct maple_driver *maple_drv; |
591 | struct maple_device *maple_dev; | 605 | struct maple_device *maple_dev; |
592 | 606 | ||
593 | maple_drv = container_of(drvptr, struct maple_driver, drv); | 607 | maple_drv = container_of(drvptr, struct maple_driver, drv); |
594 | maple_dev = container_of(devptr, struct maple_device, dev); | 608 | maple_dev = container_of(devptr, struct maple_device, dev); |
595 | /* Trap empty port case */ | 609 | /* Trap empty port case */ |
596 | if (maple_dev->devinfo.function == 0xFFFFFFFF) | 610 | if (maple_dev->devinfo.function == 0xFFFFFFFF) |
597 | return 0; | 611 | return 0; |
598 | else if (maple_dev->devinfo.function & | 612 | else if (maple_dev->devinfo.function & |
599 | be32_to_cpu(maple_drv->function)) | 613 | be32_to_cpu(maple_drv->function)) |
600 | return 1; | 614 | return 1; |
601 | return 0; | 615 | return 0; |
602 | } | 616 | } |
603 | 617 | ||
604 | static int maple_bus_uevent(struct device *dev, struct kobj_uevent_env *env) | 618 | static int maple_bus_uevent(struct device *dev, |
619 | struct kobj_uevent_env *env) | ||
605 | { | 620 | { |
606 | return 0; | 621 | return 0; |
607 | } | 622 | } |
608 | 623 | ||
609 | static void maple_bus_release(struct device *dev) | 624 | static void maple_bus_release(struct device *dev) |
@@ -611,124 +626,122 @@ static void maple_bus_release(struct device *dev) | |||
611 | } | 626 | } |
612 | 627 | ||
613 | static struct maple_driver maple_dummy_driver = { | 628 | static struct maple_driver maple_dummy_driver = { |
614 | .drv = { | 629 | .drv = { |
615 | .name = "maple_dummy_driver", | 630 | .name = "maple_dummy_driver", |
616 | .bus = &maple_bus_type, | 631 | .bus = &maple_bus_type, |
617 | }, | 632 | }, |
618 | }; | 633 | }; |
619 | 634 | ||
620 | struct bus_type maple_bus_type = { | 635 | struct bus_type maple_bus_type = { |
621 | .name = "maple", | 636 | .name = "maple", |
622 | .match = match_maple_bus_driver, | 637 | .match = match_maple_bus_driver, |
623 | .uevent = maple_bus_uevent, | 638 | .uevent = maple_bus_uevent, |
624 | }; | 639 | }; |
625 | EXPORT_SYMBOL_GPL(maple_bus_type); | 640 | EXPORT_SYMBOL_GPL(maple_bus_type); |
626 | 641 | ||
627 | static struct device maple_bus = { | 642 | static struct device maple_bus = { |
628 | .bus_id = "maple", | 643 | .bus_id = "maple", |
629 | .release = maple_bus_release, | 644 | .release = maple_bus_release, |
630 | }; | 645 | }; |
631 | 646 | ||
632 | static int __init maple_bus_init(void) | 647 | static int __init maple_bus_init(void) |
633 | { | 648 | { |
634 | int retval, i; | 649 | int retval, i; |
635 | struct maple_device *mdev[MAPLE_PORTS]; | 650 | struct maple_device *mdev[MAPLE_PORTS]; |
636 | ctrl_outl(0, MAPLE_STATE); | 651 | ctrl_outl(0, MAPLE_STATE); |
637 | 652 | ||
638 | retval = device_register(&maple_bus); | 653 | retval = device_register(&maple_bus); |
639 | if (retval) | 654 | if (retval) |
640 | goto cleanup; | 655 | goto cleanup; |
641 | 656 | ||
642 | retval = bus_register(&maple_bus_type); | 657 | retval = bus_register(&maple_bus_type); |
643 | if (retval) | 658 | if (retval) |
644 | goto cleanup_device; | 659 | goto cleanup_device; |
645 | 660 | ||
646 | retval = driver_register(&maple_dummy_driver.drv); | 661 | retval = driver_register(&maple_dummy_driver.drv); |
647 | 662 | if (retval) | |
648 | if (retval) | 663 | goto cleanup_bus; |
649 | goto cleanup_bus; | 664 | |
650 | 665 | /* allocate memory for maple bus dma */ | |
651 | /* allocate memory for maple bus dma */ | 666 | retval = maple_get_dma_buffer(); |
652 | retval = maple_get_dma_buffer(); | 667 | if (retval) { |
653 | if (retval) { | 668 | printk(KERN_INFO |
654 | printk(KERN_INFO | 669 | "Maple bus: Failed to allocate Maple DMA buffers\n"); |
655 | "Maple bus: Failed to allocate Maple DMA buffers\n"); | 670 | goto cleanup_basic; |
656 | goto cleanup_basic; | 671 | } |
657 | } | 672 | |
658 | 673 | /* set up DMA interrupt handler */ | |
659 | /* set up DMA interrupt handler */ | 674 | retval = maple_set_dma_interrupt_handler(); |
660 | retval = maple_set_dma_interrupt_handler(); | 675 | if (retval) { |
661 | if (retval) { | 676 | printk(KERN_INFO |
662 | printk(KERN_INFO | 677 | "Maple bus: Failed to grab maple DMA IRQ\n"); |
663 | "Maple bus: Failed to grab maple DMA IRQ\n"); | 678 | goto cleanup_dma; |
664 | goto cleanup_dma; | 679 | } |
665 | } | 680 | |
666 | 681 | /* set up VBLANK interrupt handler */ | |
667 | /* set up VBLANK interrupt handler */ | 682 | retval = maple_set_vblank_interrupt_handler(); |
668 | retval = maple_set_vblank_interrupt_handler(); | 683 | if (retval) { |
669 | if (retval) { | 684 | printk(KERN_INFO "Maple bus: Failed to grab VBLANK IRQ\n"); |
670 | printk(KERN_INFO "Maple bus: Failed to grab VBLANK IRQ\n"); | 685 | goto cleanup_irq; |
671 | goto cleanup_irq; | 686 | } |
672 | } | 687 | |
673 | 688 | maple_queue_cache = | |
674 | maple_queue_cache = | 689 | kmem_cache_create("maple_queue_cache", 0x400, 0, |
675 | kmem_cache_create("maple_queue_cache", 0x400, 0, | 690 | SLAB_POISON|SLAB_HWCACHE_ALIGN, NULL); |
676 | SLAB_HWCACHE_ALIGN, NULL); | 691 | |
677 | 692 | if (!maple_queue_cache) | |
678 | if (!maple_queue_cache) | 693 | goto cleanup_bothirqs; |
679 | goto cleanup_bothirqs; | 694 | |
680 | 695 | /* setup maple ports */ | |
681 | /* setup maple ports */ | 696 | for (i = 0; i < MAPLE_PORTS; i++) { |
682 | for (i = 0; i < MAPLE_PORTS; i++) { | 697 | mdev[i] = maple_alloc_dev(i, 0); |
683 | mdev[i] = maple_alloc_dev(i, 0); | 698 | if (!mdev[i]) { |
684 | if (!mdev[i]) { | 699 | while (i-- > 0) |
685 | while (i-- > 0) | 700 | maple_free_dev(mdev[i]); |
686 | maple_free_dev(mdev[i]); | 701 | goto cleanup_cache; |
687 | goto cleanup_cache; | 702 | } |
688 | } | 703 | mdev[i]->mq->command = MAPLE_COMMAND_DEVINFO; |
689 | mdev[i]->registered = 0; | 704 | mdev[i]->mq->length = 0; |
690 | mdev[i]->mq->command = MAPLE_COMMAND_DEVINFO; | 705 | maple_add_packet(mdev[i]->mq); |
691 | mdev[i]->mq->length = 0; | 706 | /* delay aids hardware detection */ |
692 | maple_attach_driver(mdev[i]); | 707 | mdelay(5); |
693 | maple_add_packet(mdev[i]->mq); | 708 | subdevice_map[i] = 0; |
694 | subdevice_map[i] = 0; | 709 | } |
695 | } | 710 | |
696 | 711 | realscan = 1; | |
697 | /* setup maplebus hardware */ | 712 | /* setup maplebus hardware */ |
698 | maplebus_dma_reset(); | 713 | maplebus_dma_reset(); |
699 | 714 | /* initial detection */ | |
700 | /* initial detection */ | 715 | maple_send(); |
701 | maple_send(); | 716 | maple_pnp_time = jiffies; |
702 | 717 | printk(KERN_INFO "Maple bus core now registered.\n"); | |
703 | maple_pnp_time = jiffies; | 718 | |
704 | 719 | return 0; | |
705 | printk(KERN_INFO "Maple bus core now registered.\n"); | ||
706 | |||
707 | return 0; | ||
708 | 720 | ||
709 | cleanup_cache: | 721 | cleanup_cache: |
710 | kmem_cache_destroy(maple_queue_cache); | 722 | kmem_cache_destroy(maple_queue_cache); |
711 | 723 | ||
712 | cleanup_bothirqs: | 724 | cleanup_bothirqs: |
713 | free_irq(HW_EVENT_VSYNC, 0); | 725 | free_irq(HW_EVENT_VSYNC, 0); |
714 | 726 | ||
715 | cleanup_irq: | 727 | cleanup_irq: |
716 | free_irq(HW_EVENT_MAPLE_DMA, 0); | 728 | free_irq(HW_EVENT_MAPLE_DMA, 0); |
717 | 729 | ||
718 | cleanup_dma: | 730 | cleanup_dma: |
719 | free_pages((unsigned long) maple_sendbuf, MAPLE_DMA_PAGES); | 731 | free_pages((unsigned long) maple_sendbuf, MAPLE_DMA_PAGES); |
720 | 732 | ||
721 | cleanup_basic: | 733 | cleanup_basic: |
722 | driver_unregister(&maple_dummy_driver.drv); | 734 | driver_unregister(&maple_dummy_driver.drv); |
723 | 735 | ||
724 | cleanup_bus: | 736 | cleanup_bus: |
725 | bus_unregister(&maple_bus_type); | 737 | bus_unregister(&maple_bus_type); |
726 | 738 | ||
727 | cleanup_device: | 739 | cleanup_device: |
728 | device_unregister(&maple_bus); | 740 | device_unregister(&maple_bus); |
729 | 741 | ||
730 | cleanup: | 742 | cleanup: |
731 | printk(KERN_INFO "Maple bus registration failed\n"); | 743 | printk(KERN_INFO "Maple bus registration failed\n"); |
732 | return retval; | 744 | return retval; |
733 | } | 745 | } |
734 | subsys_initcall(maple_bus_init); | 746 | /* Push init to later to ensure hardware gets detected */ |
747 | fs_initcall(maple_bus_init); | ||
diff --git a/drivers/usb/gadget/file_storage.c b/drivers/usb/gadget/file_storage.c index 3301167d4f2a..017a196d041f 100644 --- a/drivers/usb/gadget/file_storage.c +++ b/drivers/usb/gadget/file_storage.c | |||
@@ -3563,8 +3563,7 @@ static ssize_t show_file(struct device *dev, struct device_attribute *attr, | |||
3563 | 3563 | ||
3564 | down_read(&fsg->filesem); | 3564 | down_read(&fsg->filesem); |
3565 | if (backing_file_is_open(curlun)) { // Get the complete pathname | 3565 | if (backing_file_is_open(curlun)) { // Get the complete pathname |
3566 | p = d_path(curlun->filp->f_path.dentry, | 3566 | p = d_path(&curlun->filp->f_path, buf, PAGE_SIZE - 1); |
3567 | curlun->filp->f_path.mnt, buf, PAGE_SIZE - 1); | ||
3568 | if (IS_ERR(p)) | 3567 | if (IS_ERR(p)) |
3569 | rc = PTR_ERR(p); | 3568 | rc = PTR_ERR(p); |
3570 | else { | 3569 | else { |
@@ -3981,9 +3980,8 @@ static int __init fsg_bind(struct usb_gadget *gadget) | |||
3981 | if (backing_file_is_open(curlun)) { | 3980 | if (backing_file_is_open(curlun)) { |
3982 | p = NULL; | 3981 | p = NULL; |
3983 | if (pathbuf) { | 3982 | if (pathbuf) { |
3984 | p = d_path(curlun->filp->f_path.dentry, | 3983 | p = d_path(&curlun->filp->f_path, |
3985 | curlun->filp->f_path.mnt, | 3984 | pathbuf, PATH_MAX); |
3986 | pathbuf, PATH_MAX); | ||
3987 | if (IS_ERR(p)) | 3985 | if (IS_ERR(p)) |
3988 | p = NULL; | 3986 | p = NULL; |
3989 | } | 3987 | } |
diff --git a/fs/afs/mntpt.c b/fs/afs/mntpt.c index 5ce43b63c60e..a3510b8ba3e7 100644 --- a/fs/afs/mntpt.c +++ b/fs/afs/mntpt.c | |||
@@ -218,16 +218,16 @@ static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
218 | _enter("%p{%s},{%s:%p{%s},}", | 218 | _enter("%p{%s},{%s:%p{%s},}", |
219 | dentry, | 219 | dentry, |
220 | dentry->d_name.name, | 220 | dentry->d_name.name, |
221 | nd->mnt->mnt_devname, | 221 | nd->path.mnt->mnt_devname, |
222 | dentry, | 222 | dentry, |
223 | nd->dentry->d_name.name); | 223 | nd->path.dentry->d_name.name); |
224 | 224 | ||
225 | dput(nd->dentry); | 225 | dput(nd->path.dentry); |
226 | nd->dentry = dget(dentry); | 226 | nd->path.dentry = dget(dentry); |
227 | 227 | ||
228 | newmnt = afs_mntpt_do_automount(nd->dentry); | 228 | newmnt = afs_mntpt_do_automount(nd->path.dentry); |
229 | if (IS_ERR(newmnt)) { | 229 | if (IS_ERR(newmnt)) { |
230 | path_release(nd); | 230 | path_put(&nd->path); |
231 | return (void *)newmnt; | 231 | return (void *)newmnt; |
232 | } | 232 | } |
233 | 233 | ||
@@ -235,17 +235,16 @@ static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
235 | err = do_add_mount(newmnt, nd, MNT_SHRINKABLE, &afs_vfsmounts); | 235 | err = do_add_mount(newmnt, nd, MNT_SHRINKABLE, &afs_vfsmounts); |
236 | switch (err) { | 236 | switch (err) { |
237 | case 0: | 237 | case 0: |
238 | dput(nd->dentry); | 238 | path_put(&nd->path); |
239 | mntput(nd->mnt); | 239 | nd->path.mnt = newmnt; |
240 | nd->mnt = newmnt; | 240 | nd->path.dentry = dget(newmnt->mnt_root); |
241 | nd->dentry = dget(newmnt->mnt_root); | ||
242 | schedule_delayed_work(&afs_mntpt_expiry_timer, | 241 | schedule_delayed_work(&afs_mntpt_expiry_timer, |
243 | afs_mntpt_expiry_timeout * HZ); | 242 | afs_mntpt_expiry_timeout * HZ); |
244 | break; | 243 | break; |
245 | case -EBUSY: | 244 | case -EBUSY: |
246 | /* someone else made a mount here whilst we were busy */ | 245 | /* someone else made a mount here whilst we were busy */ |
247 | while (d_mountpoint(nd->dentry) && | 246 | while (d_mountpoint(nd->path.dentry) && |
248 | follow_down(&nd->mnt, &nd->dentry)) | 247 | follow_down(&nd->path.mnt, &nd->path.dentry)) |
249 | ; | 248 | ; |
250 | err = 0; | 249 | err = 0; |
251 | default: | 250 | default: |
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 2bbcc8151dc3..a54a946a50ae 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c | |||
@@ -368,7 +368,8 @@ static void *autofs4_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
368 | * so we don't need to follow the mount. | 368 | * so we don't need to follow the mount. |
369 | */ | 369 | */ |
370 | if (d_mountpoint(dentry)) { | 370 | if (d_mountpoint(dentry)) { |
371 | if (!autofs4_follow_mount(&nd->mnt, &nd->dentry)) { | 371 | if (!autofs4_follow_mount(&nd->path.mnt, |
372 | &nd->path.dentry)) { | ||
372 | status = -ENOENT; | 373 | status = -ENOENT; |
373 | goto out_error; | 374 | goto out_error; |
374 | } | 375 | } |
@@ -382,7 +383,7 @@ done: | |||
382 | return NULL; | 383 | return NULL; |
383 | 384 | ||
384 | out_error: | 385 | out_error: |
385 | path_release(nd); | 386 | path_put(&nd->path); |
386 | return ERR_PTR(status); | 387 | return ERR_PTR(status); |
387 | } | 388 | } |
388 | 389 | ||
diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c index d8a02f1e08cc..0498b181dd52 100644 --- a/fs/binfmt_flat.c +++ b/fs/binfmt_flat.c | |||
@@ -443,12 +443,12 @@ static int load_flat_file(struct linux_binprm * bprm, | |||
443 | 443 | ||
444 | if (strncmp(hdr->magic, "bFLT", 4)) { | 444 | if (strncmp(hdr->magic, "bFLT", 4)) { |
445 | /* | 445 | /* |
446 | * Previously, here was a printk to tell people | ||
447 | * "BINFMT_FLAT: bad header magic". | ||
448 | * But for the kernel which also use ELF FD-PIC format, this | ||
449 | * error message is confusing. | ||
446 | * because a lot of people do not manage to produce good | 450 | * because a lot of people do not manage to produce good |
447 | * flat binaries, we leave this printk to help them realise | ||
448 | * the problem. We only print the error if its not a script file | ||
449 | */ | 451 | */ |
450 | if (strncmp(hdr->magic, "#!", 2)) | ||
451 | printk("BINFMT_FLAT: bad header magic\n"); | ||
452 | ret = -ENOEXEC; | 452 | ret = -ENOEXEC; |
453 | goto err; | 453 | goto err; |
454 | } | 454 | } |
diff --git a/fs/block_dev.c b/fs/block_dev.c index e63067d25cdb..67fe72ce6ac7 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c | |||
@@ -1397,19 +1397,19 @@ struct block_device *lookup_bdev(const char *path) | |||
1397 | if (error) | 1397 | if (error) |
1398 | return ERR_PTR(error); | 1398 | return ERR_PTR(error); |
1399 | 1399 | ||
1400 | inode = nd.dentry->d_inode; | 1400 | inode = nd.path.dentry->d_inode; |
1401 | error = -ENOTBLK; | 1401 | error = -ENOTBLK; |
1402 | if (!S_ISBLK(inode->i_mode)) | 1402 | if (!S_ISBLK(inode->i_mode)) |
1403 | goto fail; | 1403 | goto fail; |
1404 | error = -EACCES; | 1404 | error = -EACCES; |
1405 | if (nd.mnt->mnt_flags & MNT_NODEV) | 1405 | if (nd.path.mnt->mnt_flags & MNT_NODEV) |
1406 | goto fail; | 1406 | goto fail; |
1407 | error = -ENOMEM; | 1407 | error = -ENOMEM; |
1408 | bdev = bd_acquire(inode); | 1408 | bdev = bd_acquire(inode); |
1409 | if (!bdev) | 1409 | if (!bdev) |
1410 | goto fail; | 1410 | goto fail; |
1411 | out: | 1411 | out: |
1412 | path_release(&nd); | 1412 | path_put(&nd.path); |
1413 | return bdev; | 1413 | return bdev; |
1414 | fail: | 1414 | fail: |
1415 | bdev = ERR_PTR(error); | 1415 | bdev = ERR_PTR(error); |
diff --git a/fs/cifs/cifs_dfs_ref.c b/fs/cifs/cifs_dfs_ref.c index 413ee2349d1a..6ad447529961 100644 --- a/fs/cifs/cifs_dfs_ref.c +++ b/fs/cifs/cifs_dfs_ref.c | |||
@@ -259,18 +259,18 @@ static int add_mount_helper(struct vfsmount *newmnt, struct nameidata *nd, | |||
259 | int err; | 259 | int err; |
260 | 260 | ||
261 | mntget(newmnt); | 261 | mntget(newmnt); |
262 | err = do_add_mount(newmnt, nd, nd->mnt->mnt_flags, mntlist); | 262 | err = do_add_mount(newmnt, nd, nd->path.mnt->mnt_flags, mntlist); |
263 | switch (err) { | 263 | switch (err) { |
264 | case 0: | 264 | case 0: |
265 | dput(nd->dentry); | 265 | dput(nd->path.dentry); |
266 | mntput(nd->mnt); | 266 | mntput(nd->path.mnt); |
267 | nd->mnt = newmnt; | 267 | nd->path.mnt = newmnt; |
268 | nd->dentry = dget(newmnt->mnt_root); | 268 | nd->path.dentry = dget(newmnt->mnt_root); |
269 | break; | 269 | break; |
270 | case -EBUSY: | 270 | case -EBUSY: |
271 | /* someone else made a mount here whilst we were busy */ | 271 | /* someone else made a mount here whilst we were busy */ |
272 | while (d_mountpoint(nd->dentry) && | 272 | while (d_mountpoint(nd->path.dentry) && |
273 | follow_down(&nd->mnt, &nd->dentry)) | 273 | follow_down(&nd->path.mnt, &nd->path.dentry)) |
274 | ; | 274 | ; |
275 | err = 0; | 275 | err = 0; |
276 | default: | 276 | default: |
@@ -307,8 +307,8 @@ cifs_dfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd) | |||
307 | 307 | ||
308 | xid = GetXid(); | 308 | xid = GetXid(); |
309 | 309 | ||
310 | dput(nd->dentry); | 310 | dput(nd->path.dentry); |
311 | nd->dentry = dget(dentry); | 311 | nd->path.dentry = dget(dentry); |
312 | 312 | ||
313 | cifs_sb = CIFS_SB(dentry->d_inode->i_sb); | 313 | cifs_sb = CIFS_SB(dentry->d_inode->i_sb); |
314 | ses = cifs_sb->tcon->ses; | 314 | ses = cifs_sb->tcon->ses; |
@@ -340,7 +340,8 @@ cifs_dfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd) | |||
340 | rc = -EINVAL; | 340 | rc = -EINVAL; |
341 | goto out_err; | 341 | goto out_err; |
342 | } | 342 | } |
343 | mnt = cifs_dfs_do_refmount(nd->mnt, nd->dentry, | 343 | mnt = cifs_dfs_do_refmount(nd->path.mnt, |
344 | nd->path.dentry, | ||
344 | referrals[i].node_name); | 345 | referrals[i].node_name); |
345 | cFYI(1, ("%s: cifs_dfs_do_refmount:%s , mnt:%p", | 346 | cFYI(1, ("%s: cifs_dfs_do_refmount:%s , mnt:%p", |
346 | __FUNCTION__, | 347 | __FUNCTION__, |
@@ -357,7 +358,7 @@ cifs_dfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd) | |||
357 | if (IS_ERR(mnt)) | 358 | if (IS_ERR(mnt)) |
358 | goto out_err; | 359 | goto out_err; |
359 | 360 | ||
360 | nd->mnt->mnt_flags |= MNT_SHRINKABLE; | 361 | nd->path.mnt->mnt_flags |= MNT_SHRINKABLE; |
361 | rc = add_mount_helper(mnt, nd, &cifs_dfs_automount_list); | 362 | rc = add_mount_helper(mnt, nd, &cifs_dfs_automount_list); |
362 | 363 | ||
363 | out: | 364 | out: |
@@ -367,7 +368,7 @@ out: | |||
367 | cFYI(1, ("leaving %s" , __FUNCTION__)); | 368 | cFYI(1, ("leaving %s" , __FUNCTION__)); |
368 | return ERR_PTR(rc); | 369 | return ERR_PTR(rc); |
369 | out_err: | 370 | out_err: |
370 | path_release(nd); | 371 | path_put(&nd->path); |
371 | goto out; | 372 | goto out; |
372 | } | 373 | } |
373 | 374 | ||
diff --git a/fs/coda/pioctl.c b/fs/coda/pioctl.c index 2bf3026adc80..c21a1f552a63 100644 --- a/fs/coda/pioctl.c +++ b/fs/coda/pioctl.c | |||
@@ -75,12 +75,12 @@ static int coda_pioctl(struct inode * inode, struct file * filp, | |||
75 | if ( error ) { | 75 | if ( error ) { |
76 | return error; | 76 | return error; |
77 | } else { | 77 | } else { |
78 | target_inode = nd.dentry->d_inode; | 78 | target_inode = nd.path.dentry->d_inode; |
79 | } | 79 | } |
80 | 80 | ||
81 | /* return if it is not a Coda inode */ | 81 | /* return if it is not a Coda inode */ |
82 | if ( target_inode->i_sb != inode->i_sb ) { | 82 | if ( target_inode->i_sb != inode->i_sb ) { |
83 | path_release(&nd); | 83 | path_put(&nd.path); |
84 | return -EINVAL; | 84 | return -EINVAL; |
85 | } | 85 | } |
86 | 86 | ||
@@ -89,7 +89,7 @@ static int coda_pioctl(struct inode * inode, struct file * filp, | |||
89 | 89 | ||
90 | error = venus_pioctl(inode->i_sb, &(cnp->c_fid), cmd, &data); | 90 | error = venus_pioctl(inode->i_sb, &(cnp->c_fid), cmd, &data); |
91 | 91 | ||
92 | path_release(&nd); | 92 | path_put(&nd.path); |
93 | return error; | 93 | return error; |
94 | } | 94 | } |
95 | 95 | ||
diff --git a/fs/compat.c b/fs/compat.c index 439292aa1ec6..2ce4456aad30 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
@@ -241,10 +241,10 @@ asmlinkage long compat_sys_statfs(const char __user *path, struct compat_statfs | |||
241 | error = user_path_walk(path, &nd); | 241 | error = user_path_walk(path, &nd); |
242 | if (!error) { | 242 | if (!error) { |
243 | struct kstatfs tmp; | 243 | struct kstatfs tmp; |
244 | error = vfs_statfs(nd.dentry, &tmp); | 244 | error = vfs_statfs(nd.path.dentry, &tmp); |
245 | if (!error) | 245 | if (!error) |
246 | error = put_compat_statfs(buf, &tmp); | 246 | error = put_compat_statfs(buf, &tmp); |
247 | path_release(&nd); | 247 | path_put(&nd.path); |
248 | } | 248 | } |
249 | return error; | 249 | return error; |
250 | } | 250 | } |
@@ -309,10 +309,10 @@ asmlinkage long compat_sys_statfs64(const char __user *path, compat_size_t sz, s | |||
309 | error = user_path_walk(path, &nd); | 309 | error = user_path_walk(path, &nd); |
310 | if (!error) { | 310 | if (!error) { |
311 | struct kstatfs tmp; | 311 | struct kstatfs tmp; |
312 | error = vfs_statfs(nd.dentry, &tmp); | 312 | error = vfs_statfs(nd.path.dentry, &tmp); |
313 | if (!error) | 313 | if (!error) |
314 | error = put_compat_statfs64(buf, &tmp); | 314 | error = put_compat_statfs64(buf, &tmp); |
315 | path_release(&nd); | 315 | path_put(&nd.path); |
316 | } | 316 | } |
317 | return error; | 317 | return error; |
318 | } | 318 | } |
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index ee32c0eac7c1..c6e72aebd16b 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -2853,7 +2853,7 @@ static void compat_ioctl_error(struct file *filp, unsigned int fd, | |||
2853 | /* find the name of the device. */ | 2853 | /* find the name of the device. */ |
2854 | path = (char *)__get_free_page(GFP_KERNEL); | 2854 | path = (char *)__get_free_page(GFP_KERNEL); |
2855 | if (path) { | 2855 | if (path) { |
2856 | fn = d_path(filp->f_path.dentry, filp->f_path.mnt, path, PAGE_SIZE); | 2856 | fn = d_path(&filp->f_path, path, PAGE_SIZE); |
2857 | if (IS_ERR(fn)) | 2857 | if (IS_ERR(fn)) |
2858 | fn = "?"; | 2858 | fn = "?"; |
2859 | } | 2859 | } |
diff --git a/fs/configfs/symlink.c b/fs/configfs/symlink.c index 22700d2857da..78929ea84ff2 100644 --- a/fs/configfs/symlink.c +++ b/fs/configfs/symlink.c | |||
@@ -99,11 +99,11 @@ static int get_target(const char *symname, struct nameidata *nd, | |||
99 | 99 | ||
100 | ret = path_lookup(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, nd); | 100 | ret = path_lookup(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, nd); |
101 | if (!ret) { | 101 | if (!ret) { |
102 | if (nd->dentry->d_sb == configfs_sb) { | 102 | if (nd->path.dentry->d_sb == configfs_sb) { |
103 | *target = configfs_get_config_item(nd->dentry); | 103 | *target = configfs_get_config_item(nd->path.dentry); |
104 | if (!*target) { | 104 | if (!*target) { |
105 | ret = -ENOENT; | 105 | ret = -ENOENT; |
106 | path_release(nd); | 106 | path_put(&nd->path); |
107 | } | 107 | } |
108 | } else | 108 | } else |
109 | ret = -EPERM; | 109 | ret = -EPERM; |
@@ -141,7 +141,7 @@ int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symna | |||
141 | ret = create_link(parent_item, target_item, dentry); | 141 | ret = create_link(parent_item, target_item, dentry); |
142 | 142 | ||
143 | config_item_put(target_item); | 143 | config_item_put(target_item); |
144 | path_release(&nd); | 144 | path_put(&nd.path); |
145 | 145 | ||
146 | out_put: | 146 | out_put: |
147 | config_item_put(parent_item); | 147 | config_item_put(parent_item); |
diff --git a/fs/dcache.c b/fs/dcache.c index 44f6cf23b70e..43455776711e 100644 --- a/fs/dcache.c +++ b/fs/dcache.c | |||
@@ -95,6 +95,14 @@ static void d_free(struct dentry *dentry) | |||
95 | call_rcu(&dentry->d_u.d_rcu, d_callback); | 95 | call_rcu(&dentry->d_u.d_rcu, d_callback); |
96 | } | 96 | } |
97 | 97 | ||
98 | static void dentry_lru_remove(struct dentry *dentry) | ||
99 | { | ||
100 | if (!list_empty(&dentry->d_lru)) { | ||
101 | list_del_init(&dentry->d_lru); | ||
102 | dentry_stat.nr_unused--; | ||
103 | } | ||
104 | } | ||
105 | |||
98 | /* | 106 | /* |
99 | * Release the dentry's inode, using the filesystem | 107 | * Release the dentry's inode, using the filesystem |
100 | * d_iput() operation if defined. | 108 | * d_iput() operation if defined. |
@@ -211,13 +219,7 @@ repeat: | |||
211 | unhash_it: | 219 | unhash_it: |
212 | __d_drop(dentry); | 220 | __d_drop(dentry); |
213 | kill_it: | 221 | kill_it: |
214 | /* If dentry was on d_lru list | 222 | dentry_lru_remove(dentry); |
215 | * delete it from there | ||
216 | */ | ||
217 | if (!list_empty(&dentry->d_lru)) { | ||
218 | list_del(&dentry->d_lru); | ||
219 | dentry_stat.nr_unused--; | ||
220 | } | ||
221 | dentry = d_kill(dentry); | 223 | dentry = d_kill(dentry); |
222 | if (dentry) | 224 | if (dentry) |
223 | goto repeat; | 225 | goto repeat; |
@@ -285,10 +287,7 @@ int d_invalidate(struct dentry * dentry) | |||
285 | static inline struct dentry * __dget_locked(struct dentry *dentry) | 287 | static inline struct dentry * __dget_locked(struct dentry *dentry) |
286 | { | 288 | { |
287 | atomic_inc(&dentry->d_count); | 289 | atomic_inc(&dentry->d_count); |
288 | if (!list_empty(&dentry->d_lru)) { | 290 | dentry_lru_remove(dentry); |
289 | dentry_stat.nr_unused--; | ||
290 | list_del_init(&dentry->d_lru); | ||
291 | } | ||
292 | return dentry; | 291 | return dentry; |
293 | } | 292 | } |
294 | 293 | ||
@@ -404,10 +403,7 @@ static void prune_one_dentry(struct dentry * dentry) | |||
404 | 403 | ||
405 | if (dentry->d_op && dentry->d_op->d_delete) | 404 | if (dentry->d_op && dentry->d_op->d_delete) |
406 | dentry->d_op->d_delete(dentry); | 405 | dentry->d_op->d_delete(dentry); |
407 | if (!list_empty(&dentry->d_lru)) { | 406 | dentry_lru_remove(dentry); |
408 | list_del(&dentry->d_lru); | ||
409 | dentry_stat.nr_unused--; | ||
410 | } | ||
411 | __d_drop(dentry); | 407 | __d_drop(dentry); |
412 | dentry = d_kill(dentry); | 408 | dentry = d_kill(dentry); |
413 | spin_lock(&dcache_lock); | 409 | spin_lock(&dcache_lock); |
@@ -596,10 +592,7 @@ static void shrink_dcache_for_umount_subtree(struct dentry *dentry) | |||
596 | 592 | ||
597 | /* detach this root from the system */ | 593 | /* detach this root from the system */ |
598 | spin_lock(&dcache_lock); | 594 | spin_lock(&dcache_lock); |
599 | if (!list_empty(&dentry->d_lru)) { | 595 | dentry_lru_remove(dentry); |
600 | dentry_stat.nr_unused--; | ||
601 | list_del_init(&dentry->d_lru); | ||
602 | } | ||
603 | __d_drop(dentry); | 596 | __d_drop(dentry); |
604 | spin_unlock(&dcache_lock); | 597 | spin_unlock(&dcache_lock); |
605 | 598 | ||
@@ -613,11 +606,7 @@ static void shrink_dcache_for_umount_subtree(struct dentry *dentry) | |||
613 | spin_lock(&dcache_lock); | 606 | spin_lock(&dcache_lock); |
614 | list_for_each_entry(loop, &dentry->d_subdirs, | 607 | list_for_each_entry(loop, &dentry->d_subdirs, |
615 | d_u.d_child) { | 608 | d_u.d_child) { |
616 | if (!list_empty(&loop->d_lru)) { | 609 | dentry_lru_remove(loop); |
617 | dentry_stat.nr_unused--; | ||
618 | list_del_init(&loop->d_lru); | ||
619 | } | ||
620 | |||
621 | __d_drop(loop); | 610 | __d_drop(loop); |
622 | cond_resched_lock(&dcache_lock); | 611 | cond_resched_lock(&dcache_lock); |
623 | } | 612 | } |
@@ -799,10 +788,7 @@ resume: | |||
799 | struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child); | 788 | struct dentry *dentry = list_entry(tmp, struct dentry, d_u.d_child); |
800 | next = tmp->next; | 789 | next = tmp->next; |
801 | 790 | ||
802 | if (!list_empty(&dentry->d_lru)) { | 791 | dentry_lru_remove(dentry); |
803 | dentry_stat.nr_unused--; | ||
804 | list_del_init(&dentry->d_lru); | ||
805 | } | ||
806 | /* | 792 | /* |
807 | * move only zero ref count dentries to the end | 793 | * move only zero ref count dentries to the end |
808 | * of the unused list for prune_dcache | 794 | * of the unused list for prune_dcache |
@@ -1776,9 +1762,8 @@ shouldnt_be_hashed: | |||
1776 | * | 1762 | * |
1777 | * "buflen" should be positive. Caller holds the dcache_lock. | 1763 | * "buflen" should be positive. Caller holds the dcache_lock. |
1778 | */ | 1764 | */ |
1779 | static char * __d_path( struct dentry *dentry, struct vfsmount *vfsmnt, | 1765 | static char *__d_path(struct dentry *dentry, struct vfsmount *vfsmnt, |
1780 | struct dentry *root, struct vfsmount *rootmnt, | 1766 | struct path *root, char *buffer, int buflen) |
1781 | char *buffer, int buflen) | ||
1782 | { | 1767 | { |
1783 | char * end = buffer+buflen; | 1768 | char * end = buffer+buflen; |
1784 | char * retval; | 1769 | char * retval; |
@@ -1803,7 +1788,7 @@ static char * __d_path( struct dentry *dentry, struct vfsmount *vfsmnt, | |||
1803 | for (;;) { | 1788 | for (;;) { |
1804 | struct dentry * parent; | 1789 | struct dentry * parent; |
1805 | 1790 | ||
1806 | if (dentry == root && vfsmnt == rootmnt) | 1791 | if (dentry == root->dentry && vfsmnt == root->mnt) |
1807 | break; | 1792 | break; |
1808 | if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) { | 1793 | if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) { |
1809 | /* Global root? */ | 1794 | /* Global root? */ |
@@ -1844,13 +1829,23 @@ Elong: | |||
1844 | return ERR_PTR(-ENAMETOOLONG); | 1829 | return ERR_PTR(-ENAMETOOLONG); |
1845 | } | 1830 | } |
1846 | 1831 | ||
1847 | /* write full pathname into buffer and return start of pathname */ | 1832 | /** |
1848 | char * d_path(struct dentry *dentry, struct vfsmount *vfsmnt, | 1833 | * d_path - return the path of a dentry |
1849 | char *buf, int buflen) | 1834 | * @path: path to report |
1835 | * @buf: buffer to return value in | ||
1836 | * @buflen: buffer length | ||
1837 | * | ||
1838 | * Convert a dentry into an ASCII path name. If the entry has been deleted | ||
1839 | * the string " (deleted)" is appended. Note that this is ambiguous. | ||
1840 | * | ||
1841 | * Returns the buffer or an error code if the path was too long. | ||
1842 | * | ||
1843 | * "buflen" should be positive. Caller holds the dcache_lock. | ||
1844 | */ | ||
1845 | char *d_path(struct path *path, char *buf, int buflen) | ||
1850 | { | 1846 | { |
1851 | char *res; | 1847 | char *res; |
1852 | struct vfsmount *rootmnt; | 1848 | struct path root; |
1853 | struct dentry *root; | ||
1854 | 1849 | ||
1855 | /* | 1850 | /* |
1856 | * We have various synthetic filesystems that never get mounted. On | 1851 | * We have various synthetic filesystems that never get mounted. On |
@@ -1859,18 +1854,17 @@ char * d_path(struct dentry *dentry, struct vfsmount *vfsmnt, | |||
1859 | * user wants to identify the object in /proc/pid/fd/. The little hack | 1854 | * user wants to identify the object in /proc/pid/fd/. The little hack |
1860 | * below allows us to generate a name for these objects on demand: | 1855 | * below allows us to generate a name for these objects on demand: |
1861 | */ | 1856 | */ |
1862 | if (dentry->d_op && dentry->d_op->d_dname) | 1857 | if (path->dentry->d_op && path->dentry->d_op->d_dname) |
1863 | return dentry->d_op->d_dname(dentry, buf, buflen); | 1858 | return path->dentry->d_op->d_dname(path->dentry, buf, buflen); |
1864 | 1859 | ||
1865 | read_lock(¤t->fs->lock); | 1860 | read_lock(¤t->fs->lock); |
1866 | rootmnt = mntget(current->fs->rootmnt); | 1861 | root = current->fs->root; |
1867 | root = dget(current->fs->root); | 1862 | path_get(¤t->fs->root); |
1868 | read_unlock(¤t->fs->lock); | 1863 | read_unlock(¤t->fs->lock); |
1869 | spin_lock(&dcache_lock); | 1864 | spin_lock(&dcache_lock); |
1870 | res = __d_path(dentry, vfsmnt, root, rootmnt, buf, buflen); | 1865 | res = __d_path(path->dentry, path->mnt, &root, buf, buflen); |
1871 | spin_unlock(&dcache_lock); | 1866 | spin_unlock(&dcache_lock); |
1872 | dput(root); | 1867 | path_put(&root); |
1873 | mntput(rootmnt); | ||
1874 | return res; | 1868 | return res; |
1875 | } | 1869 | } |
1876 | 1870 | ||
@@ -1916,28 +1910,27 @@ char *dynamic_dname(struct dentry *dentry, char *buffer, int buflen, | |||
1916 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size) | 1910 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size) |
1917 | { | 1911 | { |
1918 | int error; | 1912 | int error; |
1919 | struct vfsmount *pwdmnt, *rootmnt; | 1913 | struct path pwd, root; |
1920 | struct dentry *pwd, *root; | ||
1921 | char *page = (char *) __get_free_page(GFP_USER); | 1914 | char *page = (char *) __get_free_page(GFP_USER); |
1922 | 1915 | ||
1923 | if (!page) | 1916 | if (!page) |
1924 | return -ENOMEM; | 1917 | return -ENOMEM; |
1925 | 1918 | ||
1926 | read_lock(¤t->fs->lock); | 1919 | read_lock(¤t->fs->lock); |
1927 | pwdmnt = mntget(current->fs->pwdmnt); | 1920 | pwd = current->fs->pwd; |
1928 | pwd = dget(current->fs->pwd); | 1921 | path_get(¤t->fs->pwd); |
1929 | rootmnt = mntget(current->fs->rootmnt); | 1922 | root = current->fs->root; |
1930 | root = dget(current->fs->root); | 1923 | path_get(¤t->fs->root); |
1931 | read_unlock(¤t->fs->lock); | 1924 | read_unlock(¤t->fs->lock); |
1932 | 1925 | ||
1933 | error = -ENOENT; | 1926 | error = -ENOENT; |
1934 | /* Has the current directory has been unlinked? */ | 1927 | /* Has the current directory has been unlinked? */ |
1935 | spin_lock(&dcache_lock); | 1928 | spin_lock(&dcache_lock); |
1936 | if (pwd->d_parent == pwd || !d_unhashed(pwd)) { | 1929 | if (pwd.dentry->d_parent == pwd.dentry || !d_unhashed(pwd.dentry)) { |
1937 | unsigned long len; | 1930 | unsigned long len; |
1938 | char * cwd; | 1931 | char * cwd; |
1939 | 1932 | ||
1940 | cwd = __d_path(pwd, pwdmnt, root, rootmnt, page, PAGE_SIZE); | 1933 | cwd = __d_path(pwd.dentry, pwd.mnt, &root, page, PAGE_SIZE); |
1941 | spin_unlock(&dcache_lock); | 1934 | spin_unlock(&dcache_lock); |
1942 | 1935 | ||
1943 | error = PTR_ERR(cwd); | 1936 | error = PTR_ERR(cwd); |
@@ -1955,10 +1948,8 @@ asmlinkage long sys_getcwd(char __user *buf, unsigned long size) | |||
1955 | spin_unlock(&dcache_lock); | 1948 | spin_unlock(&dcache_lock); |
1956 | 1949 | ||
1957 | out: | 1950 | out: |
1958 | dput(pwd); | 1951 | path_put(&pwd); |
1959 | mntput(pwdmnt); | 1952 | path_put(&root); |
1960 | dput(root); | ||
1961 | mntput(rootmnt); | ||
1962 | free_page((unsigned long) page); | 1953 | free_page((unsigned long) page); |
1963 | return error; | 1954 | return error; |
1964 | } | 1955 | } |
diff --git a/fs/dcookies.c b/fs/dcookies.c index 792cbf55fa95..855d4b1d619a 100644 --- a/fs/dcookies.c +++ b/fs/dcookies.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/errno.h> | 24 | #include <linux/errno.h> |
25 | #include <linux/dcookies.h> | 25 | #include <linux/dcookies.h> |
26 | #include <linux/mutex.h> | 26 | #include <linux/mutex.h> |
27 | #include <linux/path.h> | ||
27 | #include <asm/uaccess.h> | 28 | #include <asm/uaccess.h> |
28 | 29 | ||
29 | /* The dcookies are allocated from a kmem_cache and | 30 | /* The dcookies are allocated from a kmem_cache and |
@@ -31,8 +32,7 @@ | |||
31 | * code here is particularly performance critical | 32 | * code here is particularly performance critical |
32 | */ | 33 | */ |
33 | struct dcookie_struct { | 34 | struct dcookie_struct { |
34 | struct dentry * dentry; | 35 | struct path path; |
35 | struct vfsmount * vfsmnt; | ||
36 | struct list_head hash_list; | 36 | struct list_head hash_list; |
37 | }; | 37 | }; |
38 | 38 | ||
@@ -51,7 +51,7 @@ static inline int is_live(void) | |||
51 | /* The dentry is locked, its address will do for the cookie */ | 51 | /* The dentry is locked, its address will do for the cookie */ |
52 | static inline unsigned long dcookie_value(struct dcookie_struct * dcs) | 52 | static inline unsigned long dcookie_value(struct dcookie_struct * dcs) |
53 | { | 53 | { |
54 | return (unsigned long)dcs->dentry; | 54 | return (unsigned long)dcs->path.dentry; |
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ||
@@ -89,19 +89,17 @@ static void hash_dcookie(struct dcookie_struct * dcs) | |||
89 | } | 89 | } |
90 | 90 | ||
91 | 91 | ||
92 | static struct dcookie_struct * alloc_dcookie(struct dentry * dentry, | 92 | static struct dcookie_struct *alloc_dcookie(struct path *path) |
93 | struct vfsmount * vfsmnt) | ||
94 | { | 93 | { |
95 | struct dcookie_struct * dcs = kmem_cache_alloc(dcookie_cache, GFP_KERNEL); | 94 | struct dcookie_struct *dcs = kmem_cache_alloc(dcookie_cache, |
95 | GFP_KERNEL); | ||
96 | if (!dcs) | 96 | if (!dcs) |
97 | return NULL; | 97 | return NULL; |
98 | 98 | ||
99 | dentry->d_cookie = dcs; | 99 | path->dentry->d_cookie = dcs; |
100 | 100 | dcs->path = *path; | |
101 | dcs->dentry = dget(dentry); | 101 | path_get(path); |
102 | dcs->vfsmnt = mntget(vfsmnt); | ||
103 | hash_dcookie(dcs); | 102 | hash_dcookie(dcs); |
104 | |||
105 | return dcs; | 103 | return dcs; |
106 | } | 104 | } |
107 | 105 | ||
@@ -109,8 +107,7 @@ static struct dcookie_struct * alloc_dcookie(struct dentry * dentry, | |||
109 | /* This is the main kernel-side routine that retrieves the cookie | 107 | /* This is the main kernel-side routine that retrieves the cookie |
110 | * value for a dentry/vfsmnt pair. | 108 | * value for a dentry/vfsmnt pair. |
111 | */ | 109 | */ |
112 | int get_dcookie(struct dentry * dentry, struct vfsmount * vfsmnt, | 110 | int get_dcookie(struct path *path, unsigned long *cookie) |
113 | unsigned long * cookie) | ||
114 | { | 111 | { |
115 | int err = 0; | 112 | int err = 0; |
116 | struct dcookie_struct * dcs; | 113 | struct dcookie_struct * dcs; |
@@ -122,10 +119,10 @@ int get_dcookie(struct dentry * dentry, struct vfsmount * vfsmnt, | |||
122 | goto out; | 119 | goto out; |
123 | } | 120 | } |
124 | 121 | ||
125 | dcs = dentry->d_cookie; | 122 | dcs = path->dentry->d_cookie; |
126 | 123 | ||
127 | if (!dcs) | 124 | if (!dcs) |
128 | dcs = alloc_dcookie(dentry, vfsmnt); | 125 | dcs = alloc_dcookie(path); |
129 | 126 | ||
130 | if (!dcs) { | 127 | if (!dcs) { |
131 | err = -ENOMEM; | 128 | err = -ENOMEM; |
@@ -174,7 +171,7 @@ asmlinkage long sys_lookup_dcookie(u64 cookie64, char __user * buf, size_t len) | |||
174 | goto out; | 171 | goto out; |
175 | 172 | ||
176 | /* FIXME: (deleted) ? */ | 173 | /* FIXME: (deleted) ? */ |
177 | path = d_path(dcs->dentry, dcs->vfsmnt, kbuf, PAGE_SIZE); | 174 | path = d_path(&dcs->path, kbuf, PAGE_SIZE); |
178 | 175 | ||
179 | if (IS_ERR(path)) { | 176 | if (IS_ERR(path)) { |
180 | err = PTR_ERR(path); | 177 | err = PTR_ERR(path); |
@@ -254,9 +251,8 @@ out_kmem: | |||
254 | 251 | ||
255 | static void free_dcookie(struct dcookie_struct * dcs) | 252 | static void free_dcookie(struct dcookie_struct * dcs) |
256 | { | 253 | { |
257 | dcs->dentry->d_cookie = NULL; | 254 | dcs->path.dentry->d_cookie = NULL; |
258 | dput(dcs->dentry); | 255 | path_put(&dcs->path); |
259 | mntput(dcs->vfsmnt); | ||
260 | kmem_cache_free(dcookie_cache, dcs); | 256 | kmem_cache_free(dcookie_cache, dcs); |
261 | } | 257 | } |
262 | 258 | ||
diff --git a/fs/dquot.c b/fs/dquot.c index def4e969df77..9c7feb62eed1 100644 --- a/fs/dquot.c +++ b/fs/dquot.c | |||
@@ -1633,16 +1633,17 @@ int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path) | |||
1633 | error = path_lookup(path, LOOKUP_FOLLOW, &nd); | 1633 | error = path_lookup(path, LOOKUP_FOLLOW, &nd); |
1634 | if (error < 0) | 1634 | if (error < 0) |
1635 | return error; | 1635 | return error; |
1636 | error = security_quota_on(nd.dentry); | 1636 | error = security_quota_on(nd.path.dentry); |
1637 | if (error) | 1637 | if (error) |
1638 | goto out_path; | 1638 | goto out_path; |
1639 | /* Quota file not on the same filesystem? */ | 1639 | /* Quota file not on the same filesystem? */ |
1640 | if (nd.mnt->mnt_sb != sb) | 1640 | if (nd.path.mnt->mnt_sb != sb) |
1641 | error = -EXDEV; | 1641 | error = -EXDEV; |
1642 | else | 1642 | else |
1643 | error = vfs_quota_on_inode(nd.dentry->d_inode, type, format_id); | 1643 | error = vfs_quota_on_inode(nd.path.dentry->d_inode, type, |
1644 | format_id); | ||
1644 | out_path: | 1645 | out_path: |
1645 | path_release(&nd); | 1646 | path_put(&nd.path); |
1646 | return error; | 1647 | return error; |
1647 | } | 1648 | } |
1648 | 1649 | ||
diff --git a/fs/ecryptfs/dentry.c b/fs/ecryptfs/dentry.c index cb20b964419f..841a032050a7 100644 --- a/fs/ecryptfs/dentry.c +++ b/fs/ecryptfs/dentry.c | |||
@@ -51,13 +51,13 @@ static int ecryptfs_d_revalidate(struct dentry *dentry, struct nameidata *nd) | |||
51 | 51 | ||
52 | if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate) | 52 | if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate) |
53 | goto out; | 53 | goto out; |
54 | dentry_save = nd->dentry; | 54 | dentry_save = nd->path.dentry; |
55 | vfsmount_save = nd->mnt; | 55 | vfsmount_save = nd->path.mnt; |
56 | nd->dentry = lower_dentry; | 56 | nd->path.dentry = lower_dentry; |
57 | nd->mnt = lower_mnt; | 57 | nd->path.mnt = lower_mnt; |
58 | rc = lower_dentry->d_op->d_revalidate(lower_dentry, nd); | 58 | rc = lower_dentry->d_op->d_revalidate(lower_dentry, nd); |
59 | nd->dentry = dentry_save; | 59 | nd->path.dentry = dentry_save; |
60 | nd->mnt = vfsmount_save; | 60 | nd->path.mnt = vfsmount_save; |
61 | if (dentry->d_inode) { | 61 | if (dentry->d_inode) { |
62 | struct inode *lower_inode = | 62 | struct inode *lower_inode = |
63 | ecryptfs_inode_to_lower(dentry->d_inode); | 63 | ecryptfs_inode_to_lower(dentry->d_inode); |
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index edd1e44e9d47..e23861152101 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c | |||
@@ -77,13 +77,13 @@ ecryptfs_create_underlying_file(struct inode *lower_dir_inode, | |||
77 | struct vfsmount *vfsmount_save; | 77 | struct vfsmount *vfsmount_save; |
78 | int rc; | 78 | int rc; |
79 | 79 | ||
80 | dentry_save = nd->dentry; | 80 | dentry_save = nd->path.dentry; |
81 | vfsmount_save = nd->mnt; | 81 | vfsmount_save = nd->path.mnt; |
82 | nd->dentry = lower_dentry; | 82 | nd->path.dentry = lower_dentry; |
83 | nd->mnt = lower_mnt; | 83 | nd->path.mnt = lower_mnt; |
84 | rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd); | 84 | rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd); |
85 | nd->dentry = dentry_save; | 85 | nd->path.dentry = dentry_save; |
86 | nd->mnt = vfsmount_save; | 86 | nd->path.mnt = vfsmount_save; |
87 | return rc; | 87 | return rc; |
88 | } | 88 | } |
89 | 89 | ||
@@ -819,14 +819,14 @@ ecryptfs_permission(struct inode *inode, int mask, struct nameidata *nd) | |||
819 | int rc; | 819 | int rc; |
820 | 820 | ||
821 | if (nd) { | 821 | if (nd) { |
822 | struct vfsmount *vfsmnt_save = nd->mnt; | 822 | struct vfsmount *vfsmnt_save = nd->path.mnt; |
823 | struct dentry *dentry_save = nd->dentry; | 823 | struct dentry *dentry_save = nd->path.dentry; |
824 | 824 | ||
825 | nd->mnt = ecryptfs_dentry_to_lower_mnt(nd->dentry); | 825 | nd->path.mnt = ecryptfs_dentry_to_lower_mnt(nd->path.dentry); |
826 | nd->dentry = ecryptfs_dentry_to_lower(nd->dentry); | 826 | nd->path.dentry = ecryptfs_dentry_to_lower(nd->path.dentry); |
827 | rc = permission(ecryptfs_inode_to_lower(inode), mask, nd); | 827 | rc = permission(ecryptfs_inode_to_lower(inode), mask, nd); |
828 | nd->mnt = vfsmnt_save; | 828 | nd->path.mnt = vfsmnt_save; |
829 | nd->dentry = dentry_save; | 829 | nd->path.dentry = dentry_save; |
830 | } else | 830 | } else |
831 | rc = permission(ecryptfs_inode_to_lower(inode), mask, NULL); | 831 | rc = permission(ecryptfs_inode_to_lower(inode), mask, NULL); |
832 | return rc; | 832 | return rc; |
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c index 778c420e4cac..d25ac9500a92 100644 --- a/fs/ecryptfs/main.c +++ b/fs/ecryptfs/main.c | |||
@@ -513,8 +513,8 @@ static int ecryptfs_read_super(struct super_block *sb, const char *dev_name) | |||
513 | ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n"); | 513 | ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n"); |
514 | goto out; | 514 | goto out; |
515 | } | 515 | } |
516 | lower_root = nd.dentry; | 516 | lower_root = nd.path.dentry; |
517 | lower_mnt = nd.mnt; | 517 | lower_mnt = nd.path.mnt; |
518 | ecryptfs_set_superblock_lower(sb, lower_root->d_sb); | 518 | ecryptfs_set_superblock_lower(sb, lower_root->d_sb); |
519 | sb->s_maxbytes = lower_root->d_sb->s_maxbytes; | 519 | sb->s_maxbytes = lower_root->d_sb->s_maxbytes; |
520 | sb->s_blocksize = lower_root->d_sb->s_blocksize; | 520 | sb->s_blocksize = lower_root->d_sb->s_blocksize; |
@@ -526,7 +526,7 @@ static int ecryptfs_read_super(struct super_block *sb, const char *dev_name) | |||
526 | rc = 0; | 526 | rc = 0; |
527 | goto out; | 527 | goto out; |
528 | out_free: | 528 | out_free: |
529 | path_release(&nd); | 529 | path_put(&nd.path); |
530 | out: | 530 | out: |
531 | return rc; | 531 | return rc; |
532 | } | 532 | } |
@@ -112,7 +112,7 @@ asmlinkage long sys_uselib(const char __user * library) | |||
112 | goto out; | 112 | goto out; |
113 | 113 | ||
114 | error = -EINVAL; | 114 | error = -EINVAL; |
115 | if (!S_ISREG(nd.dentry->d_inode->i_mode)) | 115 | if (!S_ISREG(nd.path.dentry->d_inode->i_mode)) |
116 | goto exit; | 116 | goto exit; |
117 | 117 | ||
118 | error = vfs_permission(&nd, MAY_READ | MAY_EXEC); | 118 | error = vfs_permission(&nd, MAY_READ | MAY_EXEC); |
@@ -148,7 +148,7 @@ out: | |||
148 | return error; | 148 | return error; |
149 | exit: | 149 | exit: |
150 | release_open_intent(&nd); | 150 | release_open_intent(&nd); |
151 | path_release(&nd); | 151 | path_put(&nd.path); |
152 | goto out; | 152 | goto out; |
153 | } | 153 | } |
154 | 154 | ||
@@ -652,7 +652,7 @@ struct file *open_exec(const char *name) | |||
652 | file = ERR_PTR(err); | 652 | file = ERR_PTR(err); |
653 | 653 | ||
654 | if (!err) { | 654 | if (!err) { |
655 | struct inode *inode = nd.dentry->d_inode; | 655 | struct inode *inode = nd.path.dentry->d_inode; |
656 | file = ERR_PTR(-EACCES); | 656 | file = ERR_PTR(-EACCES); |
657 | if (S_ISREG(inode->i_mode)) { | 657 | if (S_ISREG(inode->i_mode)) { |
658 | int err = vfs_permission(&nd, MAY_EXEC); | 658 | int err = vfs_permission(&nd, MAY_EXEC); |
@@ -672,7 +672,7 @@ out: | |||
672 | } | 672 | } |
673 | } | 673 | } |
674 | release_open_intent(&nd); | 674 | release_open_intent(&nd); |
675 | path_release(&nd); | 675 | path_put(&nd.path); |
676 | } | 676 | } |
677 | goto out; | 677 | goto out; |
678 | } | 678 | } |
diff --git a/fs/ext3/super.c b/fs/ext3/super.c index 8e02cbfb1123..18769cc32377 100644 --- a/fs/ext3/super.c +++ b/fs/ext3/super.c | |||
@@ -2758,16 +2758,16 @@ static int ext3_quota_on(struct super_block *sb, int type, int format_id, | |||
2758 | if (err) | 2758 | if (err) |
2759 | return err; | 2759 | return err; |
2760 | /* Quotafile not on the same filesystem? */ | 2760 | /* Quotafile not on the same filesystem? */ |
2761 | if (nd.mnt->mnt_sb != sb) { | 2761 | if (nd.path.mnt->mnt_sb != sb) { |
2762 | path_release(&nd); | 2762 | path_put(&nd.path); |
2763 | return -EXDEV; | 2763 | return -EXDEV; |
2764 | } | 2764 | } |
2765 | /* Quotafile not of fs root? */ | 2765 | /* Quotafile not of fs root? */ |
2766 | if (nd.dentry->d_parent->d_inode != sb->s_root->d_inode) | 2766 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) |
2767 | printk(KERN_WARNING | 2767 | printk(KERN_WARNING |
2768 | "EXT3-fs: Quota file not on filesystem root. " | 2768 | "EXT3-fs: Quota file not on filesystem root. " |
2769 | "Journalled quota will not work.\n"); | 2769 | "Journalled quota will not work.\n"); |
2770 | path_release(&nd); | 2770 | path_put(&nd.path); |
2771 | return vfs_quota_on(sb, type, format_id, path); | 2771 | return vfs_quota_on(sb, type, format_id, path); |
2772 | } | 2772 | } |
2773 | 2773 | ||
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 0072da75221f..13383ba18f1d 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -3158,16 +3158,16 @@ static int ext4_quota_on(struct super_block *sb, int type, int format_id, | |||
3158 | if (err) | 3158 | if (err) |
3159 | return err; | 3159 | return err; |
3160 | /* Quotafile not on the same filesystem? */ | 3160 | /* Quotafile not on the same filesystem? */ |
3161 | if (nd.mnt->mnt_sb != sb) { | 3161 | if (nd.path.mnt->mnt_sb != sb) { |
3162 | path_release(&nd); | 3162 | path_put(&nd.path); |
3163 | return -EXDEV; | 3163 | return -EXDEV; |
3164 | } | 3164 | } |
3165 | /* Quotafile not of fs root? */ | 3165 | /* Quotafile not of fs root? */ |
3166 | if (nd.dentry->d_parent->d_inode != sb->s_root->d_inode) | 3166 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) |
3167 | printk(KERN_WARNING | 3167 | printk(KERN_WARNING |
3168 | "EXT4-fs: Quota file not on filesystem root. " | 3168 | "EXT4-fs: Quota file not on filesystem root. " |
3169 | "Journalled quota will not work.\n"); | 3169 | "Journalled quota will not work.\n"); |
3170 | path_release(&nd); | 3170 | path_put(&nd.path); |
3171 | return vfs_quota_on(sb, type, format_id, path); | 3171 | return vfs_quota_on(sb, type, format_id, path); |
3172 | } | 3172 | } |
3173 | 3173 | ||
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index 43d511bba52d..4bee6aa845e4 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -884,12 +884,13 @@ static struct super_block* get_gfs2_sb(const char *dev_name) | |||
884 | dev_name); | 884 | dev_name); |
885 | goto out; | 885 | goto out; |
886 | } | 886 | } |
887 | error = vfs_getattr(nd.mnt, nd.dentry, &stat); | 887 | error = vfs_getattr(nd.path.mnt, nd.path.dentry, &stat); |
888 | 888 | ||
889 | fstype = get_fs_type("gfs2"); | 889 | fstype = get_fs_type("gfs2"); |
890 | list_for_each_entry(s, &fstype->fs_supers, s_instances) { | 890 | list_for_each_entry(s, &fstype->fs_supers, s_instances) { |
891 | if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) || | 891 | if ((S_ISBLK(stat.mode) && s->s_dev == stat.rdev) || |
892 | (S_ISDIR(stat.mode) && s == nd.dentry->d_inode->i_sb)) { | 892 | (S_ISDIR(stat.mode) && |
893 | s == nd.path.dentry->d_inode->i_sb)) { | ||
893 | sb = s; | 894 | sb = s; |
894 | goto free_nd; | 895 | goto free_nd; |
895 | } | 896 | } |
@@ -899,7 +900,7 @@ static struct super_block* get_gfs2_sb(const char *dev_name) | |||
899 | "mount point %s\n", dev_name); | 900 | "mount point %s\n", dev_name); |
900 | 901 | ||
901 | free_nd: | 902 | free_nd: |
902 | path_release(&nd); | 903 | path_put(&nd.path); |
903 | out: | 904 | out: |
904 | return sb; | 905 | return sb; |
905 | } | 906 | } |
diff --git a/fs/inotify_user.c b/fs/inotify_user.c index 3ab09a65c456..7b94a1e3c015 100644 --- a/fs/inotify_user.c +++ b/fs/inotify_user.c | |||
@@ -41,9 +41,9 @@ static struct kmem_cache *event_cachep __read_mostly; | |||
41 | static struct vfsmount *inotify_mnt __read_mostly; | 41 | static struct vfsmount *inotify_mnt __read_mostly; |
42 | 42 | ||
43 | /* these are configurable via /proc/sys/fs/inotify/ */ | 43 | /* these are configurable via /proc/sys/fs/inotify/ */ |
44 | int inotify_max_user_instances __read_mostly; | 44 | static int inotify_max_user_instances __read_mostly; |
45 | int inotify_max_user_watches __read_mostly; | 45 | static int inotify_max_user_watches __read_mostly; |
46 | int inotify_max_queued_events __read_mostly; | 46 | static int inotify_max_queued_events __read_mostly; |
47 | 47 | ||
48 | /* | 48 | /* |
49 | * Lock ordering: | 49 | * Lock ordering: |
@@ -367,7 +367,7 @@ static int find_inode(const char __user *dirname, struct nameidata *nd, | |||
367 | /* you can only watch an inode if you have read permissions on it */ | 367 | /* you can only watch an inode if you have read permissions on it */ |
368 | error = vfs_permission(nd, MAY_READ); | 368 | error = vfs_permission(nd, MAY_READ); |
369 | if (error) | 369 | if (error) |
370 | path_release(nd); | 370 | path_put(&nd->path); |
371 | return error; | 371 | return error; |
372 | } | 372 | } |
373 | 373 | ||
@@ -667,7 +667,7 @@ asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, u32 mask) | |||
667 | goto fput_and_out; | 667 | goto fput_and_out; |
668 | 668 | ||
669 | /* inode held in place by reference to nd; dev by fget on fd */ | 669 | /* inode held in place by reference to nd; dev by fget on fd */ |
670 | inode = nd.dentry->d_inode; | 670 | inode = nd.path.dentry->d_inode; |
671 | dev = filp->private_data; | 671 | dev = filp->private_data; |
672 | 672 | ||
673 | mutex_lock(&dev->up_mutex); | 673 | mutex_lock(&dev->up_mutex); |
@@ -676,7 +676,7 @@ asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, u32 mask) | |||
676 | ret = create_watch(dev, inode, mask); | 676 | ret = create_watch(dev, inode, mask); |
677 | mutex_unlock(&dev->up_mutex); | 677 | mutex_unlock(&dev->up_mutex); |
678 | 678 | ||
679 | path_release(&nd); | 679 | path_put(&nd.path); |
680 | fput_and_out: | 680 | fput_and_out: |
681 | fput_light(filp, fput_needed); | 681 | fput_light(filp, fput_needed); |
682 | return ret; | 682 | return ret; |
diff --git a/fs/namei.c b/fs/namei.c index 52703986323a..941c8e8228c0 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
@@ -231,7 +231,7 @@ int permission(struct inode *inode, int mask, struct nameidata *nd) | |||
231 | struct vfsmount *mnt = NULL; | 231 | struct vfsmount *mnt = NULL; |
232 | 232 | ||
233 | if (nd) | 233 | if (nd) |
234 | mnt = nd->mnt; | 234 | mnt = nd->path.mnt; |
235 | 235 | ||
236 | if (mask & MAY_WRITE) { | 236 | if (mask & MAY_WRITE) { |
237 | umode_t mode = inode->i_mode; | 237 | umode_t mode = inode->i_mode; |
@@ -296,7 +296,7 @@ int permission(struct inode *inode, int mask, struct nameidata *nd) | |||
296 | */ | 296 | */ |
297 | int vfs_permission(struct nameidata *nd, int mask) | 297 | int vfs_permission(struct nameidata *nd, int mask) |
298 | { | 298 | { |
299 | return permission(nd->dentry->d_inode, mask, nd); | 299 | return permission(nd->path.dentry->d_inode, mask, nd); |
300 | } | 300 | } |
301 | 301 | ||
302 | /** | 302 | /** |
@@ -362,21 +362,31 @@ int deny_write_access(struct file * file) | |||
362 | return 0; | 362 | return 0; |
363 | } | 363 | } |
364 | 364 | ||
365 | void path_release(struct nameidata *nd) | 365 | /** |
366 | * path_get - get a reference to a path | ||
367 | * @path: path to get the reference to | ||
368 | * | ||
369 | * Given a path increment the reference count to the dentry and the vfsmount. | ||
370 | */ | ||
371 | void path_get(struct path *path) | ||
366 | { | 372 | { |
367 | dput(nd->dentry); | 373 | mntget(path->mnt); |
368 | mntput(nd->mnt); | 374 | dget(path->dentry); |
369 | } | 375 | } |
376 | EXPORT_SYMBOL(path_get); | ||
370 | 377 | ||
371 | /* | 378 | /** |
372 | * umount() mustn't call path_release()/mntput() as that would clear | 379 | * path_put - put a reference to a path |
373 | * mnt_expiry_mark | 380 | * @path: path to put the reference to |
381 | * | ||
382 | * Given a path decrement the reference count to the dentry and the vfsmount. | ||
374 | */ | 383 | */ |
375 | void path_release_on_umount(struct nameidata *nd) | 384 | void path_put(struct path *path) |
376 | { | 385 | { |
377 | dput(nd->dentry); | 386 | dput(path->dentry); |
378 | mntput_no_expire(nd->mnt); | 387 | mntput(path->mnt); |
379 | } | 388 | } |
389 | EXPORT_SYMBOL(path_put); | ||
380 | 390 | ||
381 | /** | 391 | /** |
382 | * release_open_intent - free up open intent resources | 392 | * release_open_intent - free up open intent resources |
@@ -539,16 +549,16 @@ walk_init_root(const char *name, struct nameidata *nd) | |||
539 | struct fs_struct *fs = current->fs; | 549 | struct fs_struct *fs = current->fs; |
540 | 550 | ||
541 | read_lock(&fs->lock); | 551 | read_lock(&fs->lock); |
542 | if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) { | 552 | if (fs->altroot.dentry && !(nd->flags & LOOKUP_NOALT)) { |
543 | nd->mnt = mntget(fs->altrootmnt); | 553 | nd->path = fs->altroot; |
544 | nd->dentry = dget(fs->altroot); | 554 | path_get(&fs->altroot); |
545 | read_unlock(&fs->lock); | 555 | read_unlock(&fs->lock); |
546 | if (__emul_lookup_dentry(name,nd)) | 556 | if (__emul_lookup_dentry(name,nd)) |
547 | return 0; | 557 | return 0; |
548 | read_lock(&fs->lock); | 558 | read_lock(&fs->lock); |
549 | } | 559 | } |
550 | nd->mnt = mntget(fs->rootmnt); | 560 | nd->path = fs->root; |
551 | nd->dentry = dget(fs->root); | 561 | path_get(&fs->root); |
552 | read_unlock(&fs->lock); | 562 | read_unlock(&fs->lock); |
553 | return 1; | 563 | return 1; |
554 | } | 564 | } |
@@ -561,7 +571,7 @@ static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *l | |||
561 | goto fail; | 571 | goto fail; |
562 | 572 | ||
563 | if (*link == '/') { | 573 | if (*link == '/') { |
564 | path_release(nd); | 574 | path_put(&nd->path); |
565 | if (!walk_init_root(link, nd)) | 575 | if (!walk_init_root(link, nd)) |
566 | /* weird __emul_prefix() stuff did it */ | 576 | /* weird __emul_prefix() stuff did it */ |
567 | goto out; | 577 | goto out; |
@@ -577,31 +587,31 @@ out: | |||
577 | */ | 587 | */ |
578 | name = __getname(); | 588 | name = __getname(); |
579 | if (unlikely(!name)) { | 589 | if (unlikely(!name)) { |
580 | path_release(nd); | 590 | path_put(&nd->path); |
581 | return -ENOMEM; | 591 | return -ENOMEM; |
582 | } | 592 | } |
583 | strcpy(name, nd->last.name); | 593 | strcpy(name, nd->last.name); |
584 | nd->last.name = name; | 594 | nd->last.name = name; |
585 | return 0; | 595 | return 0; |
586 | fail: | 596 | fail: |
587 | path_release(nd); | 597 | path_put(&nd->path); |
588 | return PTR_ERR(link); | 598 | return PTR_ERR(link); |
589 | } | 599 | } |
590 | 600 | ||
591 | static inline void dput_path(struct path *path, struct nameidata *nd) | 601 | static void path_put_conditional(struct path *path, struct nameidata *nd) |
592 | { | 602 | { |
593 | dput(path->dentry); | 603 | dput(path->dentry); |
594 | if (path->mnt != nd->mnt) | 604 | if (path->mnt != nd->path.mnt) |
595 | mntput(path->mnt); | 605 | mntput(path->mnt); |
596 | } | 606 | } |
597 | 607 | ||
598 | static inline void path_to_nameidata(struct path *path, struct nameidata *nd) | 608 | static inline void path_to_nameidata(struct path *path, struct nameidata *nd) |
599 | { | 609 | { |
600 | dput(nd->dentry); | 610 | dput(nd->path.dentry); |
601 | if (nd->mnt != path->mnt) | 611 | if (nd->path.mnt != path->mnt) |
602 | mntput(nd->mnt); | 612 | mntput(nd->path.mnt); |
603 | nd->mnt = path->mnt; | 613 | nd->path.mnt = path->mnt; |
604 | nd->dentry = path->dentry; | 614 | nd->path.dentry = path->dentry; |
605 | } | 615 | } |
606 | 616 | ||
607 | static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd) | 617 | static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd) |
@@ -613,7 +623,7 @@ static __always_inline int __do_follow_link(struct path *path, struct nameidata | |||
613 | touch_atime(path->mnt, dentry); | 623 | touch_atime(path->mnt, dentry); |
614 | nd_set_link(nd, NULL); | 624 | nd_set_link(nd, NULL); |
615 | 625 | ||
616 | if (path->mnt != nd->mnt) { | 626 | if (path->mnt != nd->path.mnt) { |
617 | path_to_nameidata(path, nd); | 627 | path_to_nameidata(path, nd); |
618 | dget(dentry); | 628 | dget(dentry); |
619 | } | 629 | } |
@@ -628,8 +638,7 @@ static __always_inline int __do_follow_link(struct path *path, struct nameidata | |||
628 | if (dentry->d_inode->i_op->put_link) | 638 | if (dentry->d_inode->i_op->put_link) |
629 | dentry->d_inode->i_op->put_link(dentry, nd, cookie); | 639 | dentry->d_inode->i_op->put_link(dentry, nd, cookie); |
630 | } | 640 | } |
631 | dput(dentry); | 641 | path_put(path); |
632 | mntput(path->mnt); | ||
633 | 642 | ||
634 | return error; | 643 | return error; |
635 | } | 644 | } |
@@ -661,8 +670,8 @@ static inline int do_follow_link(struct path *path, struct nameidata *nd) | |||
661 | nd->depth--; | 670 | nd->depth--; |
662 | return err; | 671 | return err; |
663 | loop: | 672 | loop: |
664 | dput_path(path, nd); | 673 | path_put_conditional(path, nd); |
665 | path_release(nd); | 674 | path_put(&nd->path); |
666 | return err; | 675 | return err; |
667 | } | 676 | } |
668 | 677 | ||
@@ -743,37 +752,37 @@ static __always_inline void follow_dotdot(struct nameidata *nd) | |||
743 | 752 | ||
744 | while(1) { | 753 | while(1) { |
745 | struct vfsmount *parent; | 754 | struct vfsmount *parent; |
746 | struct dentry *old = nd->dentry; | 755 | struct dentry *old = nd->path.dentry; |
747 | 756 | ||
748 | read_lock(&fs->lock); | 757 | read_lock(&fs->lock); |
749 | if (nd->dentry == fs->root && | 758 | if (nd->path.dentry == fs->root.dentry && |
750 | nd->mnt == fs->rootmnt) { | 759 | nd->path.mnt == fs->root.mnt) { |
751 | read_unlock(&fs->lock); | 760 | read_unlock(&fs->lock); |
752 | break; | 761 | break; |
753 | } | 762 | } |
754 | read_unlock(&fs->lock); | 763 | read_unlock(&fs->lock); |
755 | spin_lock(&dcache_lock); | 764 | spin_lock(&dcache_lock); |
756 | if (nd->dentry != nd->mnt->mnt_root) { | 765 | if (nd->path.dentry != nd->path.mnt->mnt_root) { |
757 | nd->dentry = dget(nd->dentry->d_parent); | 766 | nd->path.dentry = dget(nd->path.dentry->d_parent); |
758 | spin_unlock(&dcache_lock); | 767 | spin_unlock(&dcache_lock); |
759 | dput(old); | 768 | dput(old); |
760 | break; | 769 | break; |
761 | } | 770 | } |
762 | spin_unlock(&dcache_lock); | 771 | spin_unlock(&dcache_lock); |
763 | spin_lock(&vfsmount_lock); | 772 | spin_lock(&vfsmount_lock); |
764 | parent = nd->mnt->mnt_parent; | 773 | parent = nd->path.mnt->mnt_parent; |
765 | if (parent == nd->mnt) { | 774 | if (parent == nd->path.mnt) { |
766 | spin_unlock(&vfsmount_lock); | 775 | spin_unlock(&vfsmount_lock); |
767 | break; | 776 | break; |
768 | } | 777 | } |
769 | mntget(parent); | 778 | mntget(parent); |
770 | nd->dentry = dget(nd->mnt->mnt_mountpoint); | 779 | nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint); |
771 | spin_unlock(&vfsmount_lock); | 780 | spin_unlock(&vfsmount_lock); |
772 | dput(old); | 781 | dput(old); |
773 | mntput(nd->mnt); | 782 | mntput(nd->path.mnt); |
774 | nd->mnt = parent; | 783 | nd->path.mnt = parent; |
775 | } | 784 | } |
776 | follow_mount(&nd->mnt, &nd->dentry); | 785 | follow_mount(&nd->path.mnt, &nd->path.dentry); |
777 | } | 786 | } |
778 | 787 | ||
779 | /* | 788 | /* |
@@ -784,8 +793,8 @@ static __always_inline void follow_dotdot(struct nameidata *nd) | |||
784 | static int do_lookup(struct nameidata *nd, struct qstr *name, | 793 | static int do_lookup(struct nameidata *nd, struct qstr *name, |
785 | struct path *path) | 794 | struct path *path) |
786 | { | 795 | { |
787 | struct vfsmount *mnt = nd->mnt; | 796 | struct vfsmount *mnt = nd->path.mnt; |
788 | struct dentry *dentry = __d_lookup(nd->dentry, name); | 797 | struct dentry *dentry = __d_lookup(nd->path.dentry, name); |
789 | 798 | ||
790 | if (!dentry) | 799 | if (!dentry) |
791 | goto need_lookup; | 800 | goto need_lookup; |
@@ -798,7 +807,7 @@ done: | |||
798 | return 0; | 807 | return 0; |
799 | 808 | ||
800 | need_lookup: | 809 | need_lookup: |
801 | dentry = real_lookup(nd->dentry, name, nd); | 810 | dentry = real_lookup(nd->path.dentry, name, nd); |
802 | if (IS_ERR(dentry)) | 811 | if (IS_ERR(dentry)) |
803 | goto fail; | 812 | goto fail; |
804 | goto done; | 813 | goto done; |
@@ -835,7 +844,7 @@ static int __link_path_walk(const char *name, struct nameidata *nd) | |||
835 | if (!*name) | 844 | if (!*name) |
836 | goto return_reval; | 845 | goto return_reval; |
837 | 846 | ||
838 | inode = nd->dentry->d_inode; | 847 | inode = nd->path.dentry->d_inode; |
839 | if (nd->depth) | 848 | if (nd->depth) |
840 | lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE); | 849 | lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE); |
841 | 850 | ||
@@ -883,7 +892,7 @@ static int __link_path_walk(const char *name, struct nameidata *nd) | |||
883 | if (this.name[1] != '.') | 892 | if (this.name[1] != '.') |
884 | break; | 893 | break; |
885 | follow_dotdot(nd); | 894 | follow_dotdot(nd); |
886 | inode = nd->dentry->d_inode; | 895 | inode = nd->path.dentry->d_inode; |
887 | /* fallthrough */ | 896 | /* fallthrough */ |
888 | case 1: | 897 | case 1: |
889 | continue; | 898 | continue; |
@@ -892,8 +901,9 @@ static int __link_path_walk(const char *name, struct nameidata *nd) | |||
892 | * See if the low-level filesystem might want | 901 | * See if the low-level filesystem might want |
893 | * to use its own hash.. | 902 | * to use its own hash.. |
894 | */ | 903 | */ |
895 | if (nd->dentry->d_op && nd->dentry->d_op->d_hash) { | 904 | if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) { |
896 | err = nd->dentry->d_op->d_hash(nd->dentry, &this); | 905 | err = nd->path.dentry->d_op->d_hash(nd->path.dentry, |
906 | &this); | ||
897 | if (err < 0) | 907 | if (err < 0) |
898 | break; | 908 | break; |
899 | } | 909 | } |
@@ -915,7 +925,7 @@ static int __link_path_walk(const char *name, struct nameidata *nd) | |||
915 | if (err) | 925 | if (err) |
916 | goto return_err; | 926 | goto return_err; |
917 | err = -ENOENT; | 927 | err = -ENOENT; |
918 | inode = nd->dentry->d_inode; | 928 | inode = nd->path.dentry->d_inode; |
919 | if (!inode) | 929 | if (!inode) |
920 | break; | 930 | break; |
921 | err = -ENOTDIR; | 931 | err = -ENOTDIR; |
@@ -943,13 +953,14 @@ last_component: | |||
943 | if (this.name[1] != '.') | 953 | if (this.name[1] != '.') |
944 | break; | 954 | break; |
945 | follow_dotdot(nd); | 955 | follow_dotdot(nd); |
946 | inode = nd->dentry->d_inode; | 956 | inode = nd->path.dentry->d_inode; |
947 | /* fallthrough */ | 957 | /* fallthrough */ |
948 | case 1: | 958 | case 1: |
949 | goto return_reval; | 959 | goto return_reval; |
950 | } | 960 | } |
951 | if (nd->dentry->d_op && nd->dentry->d_op->d_hash) { | 961 | if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) { |
952 | err = nd->dentry->d_op->d_hash(nd->dentry, &this); | 962 | err = nd->path.dentry->d_op->d_hash(nd->path.dentry, |
963 | &this); | ||
953 | if (err < 0) | 964 | if (err < 0) |
954 | break; | 965 | break; |
955 | } | 966 | } |
@@ -962,7 +973,7 @@ last_component: | |||
962 | err = do_follow_link(&next, nd); | 973 | err = do_follow_link(&next, nd); |
963 | if (err) | 974 | if (err) |
964 | goto return_err; | 975 | goto return_err; |
965 | inode = nd->dentry->d_inode; | 976 | inode = nd->path.dentry->d_inode; |
966 | } else | 977 | } else |
967 | path_to_nameidata(&next, nd); | 978 | path_to_nameidata(&next, nd); |
968 | err = -ENOENT; | 979 | err = -ENOENT; |
@@ -990,20 +1001,21 @@ return_reval: | |||
990 | * We bypassed the ordinary revalidation routines. | 1001 | * We bypassed the ordinary revalidation routines. |
991 | * We may need to check the cached dentry for staleness. | 1002 | * We may need to check the cached dentry for staleness. |
992 | */ | 1003 | */ |
993 | if (nd->dentry && nd->dentry->d_sb && | 1004 | if (nd->path.dentry && nd->path.dentry->d_sb && |
994 | (nd->dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) { | 1005 | (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) { |
995 | err = -ESTALE; | 1006 | err = -ESTALE; |
996 | /* Note: we do not d_invalidate() */ | 1007 | /* Note: we do not d_invalidate() */ |
997 | if (!nd->dentry->d_op->d_revalidate(nd->dentry, nd)) | 1008 | if (!nd->path.dentry->d_op->d_revalidate( |
1009 | nd->path.dentry, nd)) | ||
998 | break; | 1010 | break; |
999 | } | 1011 | } |
1000 | return_base: | 1012 | return_base: |
1001 | return 0; | 1013 | return 0; |
1002 | out_dput: | 1014 | out_dput: |
1003 | dput_path(&next, nd); | 1015 | path_put_conditional(&next, nd); |
1004 | break; | 1016 | break; |
1005 | } | 1017 | } |
1006 | path_release(nd); | 1018 | path_put(&nd->path); |
1007 | return_err: | 1019 | return_err: |
1008 | return err; | 1020 | return err; |
1009 | } | 1021 | } |
@@ -1021,20 +1033,19 @@ static int link_path_walk(const char *name, struct nameidata *nd) | |||
1021 | int result; | 1033 | int result; |
1022 | 1034 | ||
1023 | /* make sure the stuff we saved doesn't go away */ | 1035 | /* make sure the stuff we saved doesn't go away */ |
1024 | dget(save.dentry); | 1036 | dget(save.path.dentry); |
1025 | mntget(save.mnt); | 1037 | mntget(save.path.mnt); |
1026 | 1038 | ||
1027 | result = __link_path_walk(name, nd); | 1039 | result = __link_path_walk(name, nd); |
1028 | if (result == -ESTALE) { | 1040 | if (result == -ESTALE) { |
1029 | *nd = save; | 1041 | *nd = save; |
1030 | dget(nd->dentry); | 1042 | dget(nd->path.dentry); |
1031 | mntget(nd->mnt); | 1043 | mntget(nd->path.mnt); |
1032 | nd->flags |= LOOKUP_REVAL; | 1044 | nd->flags |= LOOKUP_REVAL; |
1033 | result = __link_path_walk(name, nd); | 1045 | result = __link_path_walk(name, nd); |
1034 | } | 1046 | } |
1035 | 1047 | ||
1036 | dput(save.dentry); | 1048 | path_put(&save.path); |
1037 | mntput(save.mnt); | ||
1038 | 1049 | ||
1039 | return result; | 1050 | return result; |
1040 | } | 1051 | } |
@@ -1054,9 +1065,9 @@ static int __emul_lookup_dentry(const char *name, struct nameidata *nd) | |||
1054 | if (path_walk(name, nd)) | 1065 | if (path_walk(name, nd)) |
1055 | return 0; /* something went wrong... */ | 1066 | return 0; /* something went wrong... */ |
1056 | 1067 | ||
1057 | if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) { | 1068 | if (!nd->path.dentry->d_inode || |
1058 | struct dentry *old_dentry = nd->dentry; | 1069 | S_ISDIR(nd->path.dentry->d_inode->i_mode)) { |
1059 | struct vfsmount *old_mnt = nd->mnt; | 1070 | struct path old_path = nd->path; |
1060 | struct qstr last = nd->last; | 1071 | struct qstr last = nd->last; |
1061 | int last_type = nd->last_type; | 1072 | int last_type = nd->last_type; |
1062 | struct fs_struct *fs = current->fs; | 1073 | struct fs_struct *fs = current->fs; |
@@ -1067,19 +1078,17 @@ static int __emul_lookup_dentry(const char *name, struct nameidata *nd) | |||
1067 | */ | 1078 | */ |
1068 | nd->last_type = LAST_ROOT; | 1079 | nd->last_type = LAST_ROOT; |
1069 | read_lock(&fs->lock); | 1080 | read_lock(&fs->lock); |
1070 | nd->mnt = mntget(fs->rootmnt); | 1081 | nd->path = fs->root; |
1071 | nd->dentry = dget(fs->root); | 1082 | path_get(&fs->root); |
1072 | read_unlock(&fs->lock); | 1083 | read_unlock(&fs->lock); |
1073 | if (path_walk(name, nd) == 0) { | 1084 | if (path_walk(name, nd) == 0) { |
1074 | if (nd->dentry->d_inode) { | 1085 | if (nd->path.dentry->d_inode) { |
1075 | dput(old_dentry); | 1086 | path_put(&old_path); |
1076 | mntput(old_mnt); | ||
1077 | return 1; | 1087 | return 1; |
1078 | } | 1088 | } |
1079 | path_release(nd); | 1089 | path_put(&nd->path); |
1080 | } | 1090 | } |
1081 | nd->dentry = old_dentry; | 1091 | nd->path = old_path; |
1082 | nd->mnt = old_mnt; | ||
1083 | nd->last = last; | 1092 | nd->last = last; |
1084 | nd->last_type = last_type; | 1093 | nd->last_type = last_type; |
1085 | } | 1094 | } |
@@ -1090,29 +1099,22 @@ void set_fs_altroot(void) | |||
1090 | { | 1099 | { |
1091 | char *emul = __emul_prefix(); | 1100 | char *emul = __emul_prefix(); |
1092 | struct nameidata nd; | 1101 | struct nameidata nd; |
1093 | struct vfsmount *mnt = NULL, *oldmnt; | 1102 | struct path path = {}, old_path; |
1094 | struct dentry *dentry = NULL, *olddentry; | ||
1095 | int err; | 1103 | int err; |
1096 | struct fs_struct *fs = current->fs; | 1104 | struct fs_struct *fs = current->fs; |
1097 | 1105 | ||
1098 | if (!emul) | 1106 | if (!emul) |
1099 | goto set_it; | 1107 | goto set_it; |
1100 | err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd); | 1108 | err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd); |
1101 | if (!err) { | 1109 | if (!err) |
1102 | mnt = nd.mnt; | 1110 | path = nd.path; |
1103 | dentry = nd.dentry; | ||
1104 | } | ||
1105 | set_it: | 1111 | set_it: |
1106 | write_lock(&fs->lock); | 1112 | write_lock(&fs->lock); |
1107 | oldmnt = fs->altrootmnt; | 1113 | old_path = fs->altroot; |
1108 | olddentry = fs->altroot; | 1114 | fs->altroot = path; |
1109 | fs->altrootmnt = mnt; | ||
1110 | fs->altroot = dentry; | ||
1111 | write_unlock(&fs->lock); | 1115 | write_unlock(&fs->lock); |
1112 | if (olddentry) { | 1116 | if (old_path.dentry) |
1113 | dput(olddentry); | 1117 | path_put(&old_path); |
1114 | mntput(oldmnt); | ||
1115 | } | ||
1116 | } | 1118 | } |
1117 | 1119 | ||
1118 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ | 1120 | /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */ |
@@ -1130,21 +1132,21 @@ static int do_path_lookup(int dfd, const char *name, | |||
1130 | 1132 | ||
1131 | if (*name=='/') { | 1133 | if (*name=='/') { |
1132 | read_lock(&fs->lock); | 1134 | read_lock(&fs->lock); |
1133 | if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) { | 1135 | if (fs->altroot.dentry && !(nd->flags & LOOKUP_NOALT)) { |
1134 | nd->mnt = mntget(fs->altrootmnt); | 1136 | nd->path = fs->altroot; |
1135 | nd->dentry = dget(fs->altroot); | 1137 | path_get(&fs->altroot); |
1136 | read_unlock(&fs->lock); | 1138 | read_unlock(&fs->lock); |
1137 | if (__emul_lookup_dentry(name,nd)) | 1139 | if (__emul_lookup_dentry(name,nd)) |
1138 | goto out; /* found in altroot */ | 1140 | goto out; /* found in altroot */ |
1139 | read_lock(&fs->lock); | 1141 | read_lock(&fs->lock); |
1140 | } | 1142 | } |
1141 | nd->mnt = mntget(fs->rootmnt); | 1143 | nd->path = fs->root; |
1142 | nd->dentry = dget(fs->root); | 1144 | path_get(&fs->root); |
1143 | read_unlock(&fs->lock); | 1145 | read_unlock(&fs->lock); |
1144 | } else if (dfd == AT_FDCWD) { | 1146 | } else if (dfd == AT_FDCWD) { |
1145 | read_lock(&fs->lock); | 1147 | read_lock(&fs->lock); |
1146 | nd->mnt = mntget(fs->pwdmnt); | 1148 | nd->path = fs->pwd; |
1147 | nd->dentry = dget(fs->pwd); | 1149 | path_get(&fs->pwd); |
1148 | read_unlock(&fs->lock); | 1150 | read_unlock(&fs->lock); |
1149 | } else { | 1151 | } else { |
1150 | struct dentry *dentry; | 1152 | struct dentry *dentry; |
@@ -1164,17 +1166,17 @@ static int do_path_lookup(int dfd, const char *name, | |||
1164 | if (retval) | 1166 | if (retval) |
1165 | goto fput_fail; | 1167 | goto fput_fail; |
1166 | 1168 | ||
1167 | nd->mnt = mntget(file->f_path.mnt); | 1169 | nd->path = file->f_path; |
1168 | nd->dentry = dget(dentry); | 1170 | path_get(&file->f_path); |
1169 | 1171 | ||
1170 | fput_light(file, fput_needed); | 1172 | fput_light(file, fput_needed); |
1171 | } | 1173 | } |
1172 | 1174 | ||
1173 | retval = path_walk(name, nd); | 1175 | retval = path_walk(name, nd); |
1174 | out: | 1176 | out: |
1175 | if (unlikely(!retval && !audit_dummy_context() && nd->dentry && | 1177 | if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry && |
1176 | nd->dentry->d_inode)) | 1178 | nd->path.dentry->d_inode)) |
1177 | audit_inode(name, nd->dentry); | 1179 | audit_inode(name, nd->path.dentry); |
1178 | out_fail: | 1180 | out_fail: |
1179 | return retval; | 1181 | return retval; |
1180 | 1182 | ||
@@ -1208,13 +1210,13 @@ int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt, | |||
1208 | nd->flags = flags; | 1210 | nd->flags = flags; |
1209 | nd->depth = 0; | 1211 | nd->depth = 0; |
1210 | 1212 | ||
1211 | nd->mnt = mntget(mnt); | 1213 | nd->path.mnt = mntget(mnt); |
1212 | nd->dentry = dget(dentry); | 1214 | nd->path.dentry = dget(dentry); |
1213 | 1215 | ||
1214 | retval = path_walk(name, nd); | 1216 | retval = path_walk(name, nd); |
1215 | if (unlikely(!retval && !audit_dummy_context() && nd->dentry && | 1217 | if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry && |
1216 | nd->dentry->d_inode)) | 1218 | nd->path.dentry->d_inode)) |
1217 | audit_inode(name, nd->dentry); | 1219 | audit_inode(name, nd->path.dentry); |
1218 | 1220 | ||
1219 | return retval; | 1221 | return retval; |
1220 | 1222 | ||
@@ -1236,7 +1238,7 @@ static int __path_lookup_intent_open(int dfd, const char *name, | |||
1236 | if (IS_ERR(nd->intent.open.file)) { | 1238 | if (IS_ERR(nd->intent.open.file)) { |
1237 | if (err == 0) { | 1239 | if (err == 0) { |
1238 | err = PTR_ERR(nd->intent.open.file); | 1240 | err = PTR_ERR(nd->intent.open.file); |
1239 | path_release(nd); | 1241 | path_put(&nd->path); |
1240 | } | 1242 | } |
1241 | } else if (err != 0) | 1243 | } else if (err != 0) |
1242 | release_open_intent(nd); | 1244 | release_open_intent(nd); |
@@ -1333,10 +1335,10 @@ static struct dentry *lookup_hash(struct nameidata *nd) | |||
1333 | { | 1335 | { |
1334 | int err; | 1336 | int err; |
1335 | 1337 | ||
1336 | err = permission(nd->dentry->d_inode, MAY_EXEC, nd); | 1338 | err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd); |
1337 | if (err) | 1339 | if (err) |
1338 | return ERR_PTR(err); | 1340 | return ERR_PTR(err); |
1339 | return __lookup_hash(&nd->last, nd->dentry, nd); | 1341 | return __lookup_hash(&nd->last, nd->path.dentry, nd); |
1340 | } | 1342 | } |
1341 | 1343 | ||
1342 | static int __lookup_one_len(const char *name, struct qstr *this, | 1344 | static int __lookup_one_len(const char *name, struct qstr *this, |
@@ -1595,7 +1597,7 @@ int vfs_create(struct inode *dir, struct dentry *dentry, int mode, | |||
1595 | 1597 | ||
1596 | int may_open(struct nameidata *nd, int acc_mode, int flag) | 1598 | int may_open(struct nameidata *nd, int acc_mode, int flag) |
1597 | { | 1599 | { |
1598 | struct dentry *dentry = nd->dentry; | 1600 | struct dentry *dentry = nd->path.dentry; |
1599 | struct inode *inode = dentry->d_inode; | 1601 | struct inode *inode = dentry->d_inode; |
1600 | int error; | 1602 | int error; |
1601 | 1603 | ||
@@ -1616,7 +1618,7 @@ int may_open(struct nameidata *nd, int acc_mode, int flag) | |||
1616 | if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { | 1618 | if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { |
1617 | flag &= ~O_TRUNC; | 1619 | flag &= ~O_TRUNC; |
1618 | } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) { | 1620 | } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) { |
1619 | if (nd->mnt->mnt_flags & MNT_NODEV) | 1621 | if (nd->path.mnt->mnt_flags & MNT_NODEV) |
1620 | return -EACCES; | 1622 | return -EACCES; |
1621 | 1623 | ||
1622 | flag &= ~O_TRUNC; | 1624 | flag &= ~O_TRUNC; |
@@ -1678,14 +1680,14 @@ static int open_namei_create(struct nameidata *nd, struct path *path, | |||
1678 | int flag, int mode) | 1680 | int flag, int mode) |
1679 | { | 1681 | { |
1680 | int error; | 1682 | int error; |
1681 | struct dentry *dir = nd->dentry; | 1683 | struct dentry *dir = nd->path.dentry; |
1682 | 1684 | ||
1683 | if (!IS_POSIXACL(dir->d_inode)) | 1685 | if (!IS_POSIXACL(dir->d_inode)) |
1684 | mode &= ~current->fs->umask; | 1686 | mode &= ~current->fs->umask; |
1685 | error = vfs_create(dir->d_inode, path->dentry, mode, nd); | 1687 | error = vfs_create(dir->d_inode, path->dentry, mode, nd); |
1686 | mutex_unlock(&dir->d_inode->i_mutex); | 1688 | mutex_unlock(&dir->d_inode->i_mutex); |
1687 | dput(nd->dentry); | 1689 | dput(nd->path.dentry); |
1688 | nd->dentry = path->dentry; | 1690 | nd->path.dentry = path->dentry; |
1689 | if (error) | 1691 | if (error) |
1690 | return error; | 1692 | return error; |
1691 | /* Don't check for write permission, don't truncate */ | 1693 | /* Don't check for write permission, don't truncate */ |
@@ -1752,11 +1754,11 @@ int open_namei(int dfd, const char *pathname, int flag, | |||
1752 | if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len]) | 1754 | if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len]) |
1753 | goto exit; | 1755 | goto exit; |
1754 | 1756 | ||
1755 | dir = nd->dentry; | 1757 | dir = nd->path.dentry; |
1756 | nd->flags &= ~LOOKUP_PARENT; | 1758 | nd->flags &= ~LOOKUP_PARENT; |
1757 | mutex_lock(&dir->d_inode->i_mutex); | 1759 | mutex_lock(&dir->d_inode->i_mutex); |
1758 | path.dentry = lookup_hash(nd); | 1760 | path.dentry = lookup_hash(nd); |
1759 | path.mnt = nd->mnt; | 1761 | path.mnt = nd->path.mnt; |
1760 | 1762 | ||
1761 | do_last: | 1763 | do_last: |
1762 | error = PTR_ERR(path.dentry); | 1764 | error = PTR_ERR(path.dentry); |
@@ -1812,11 +1814,11 @@ ok: | |||
1812 | return 0; | 1814 | return 0; |
1813 | 1815 | ||
1814 | exit_dput: | 1816 | exit_dput: |
1815 | dput_path(&path, nd); | 1817 | path_put_conditional(&path, nd); |
1816 | exit: | 1818 | exit: |
1817 | if (!IS_ERR(nd->intent.open.file)) | 1819 | if (!IS_ERR(nd->intent.open.file)) |
1818 | release_open_intent(nd); | 1820 | release_open_intent(nd); |
1819 | path_release(nd); | 1821 | path_put(&nd->path); |
1820 | return error; | 1822 | return error; |
1821 | 1823 | ||
1822 | do_link: | 1824 | do_link: |
@@ -1861,10 +1863,10 @@ do_link: | |||
1861 | __putname(nd->last.name); | 1863 | __putname(nd->last.name); |
1862 | goto exit; | 1864 | goto exit; |
1863 | } | 1865 | } |
1864 | dir = nd->dentry; | 1866 | dir = nd->path.dentry; |
1865 | mutex_lock(&dir->d_inode->i_mutex); | 1867 | mutex_lock(&dir->d_inode->i_mutex); |
1866 | path.dentry = lookup_hash(nd); | 1868 | path.dentry = lookup_hash(nd); |
1867 | path.mnt = nd->mnt; | 1869 | path.mnt = nd->path.mnt; |
1868 | __putname(nd->last.name); | 1870 | __putname(nd->last.name); |
1869 | goto do_last; | 1871 | goto do_last; |
1870 | } | 1872 | } |
@@ -1877,13 +1879,13 @@ do_link: | |||
1877 | * Simple function to lookup and return a dentry and create it | 1879 | * Simple function to lookup and return a dentry and create it |
1878 | * if it doesn't exist. Is SMP-safe. | 1880 | * if it doesn't exist. Is SMP-safe. |
1879 | * | 1881 | * |
1880 | * Returns with nd->dentry->d_inode->i_mutex locked. | 1882 | * Returns with nd->path.dentry->d_inode->i_mutex locked. |
1881 | */ | 1883 | */ |
1882 | struct dentry *lookup_create(struct nameidata *nd, int is_dir) | 1884 | struct dentry *lookup_create(struct nameidata *nd, int is_dir) |
1883 | { | 1885 | { |
1884 | struct dentry *dentry = ERR_PTR(-EEXIST); | 1886 | struct dentry *dentry = ERR_PTR(-EEXIST); |
1885 | 1887 | ||
1886 | mutex_lock_nested(&nd->dentry->d_inode->i_mutex, I_MUTEX_PARENT); | 1888 | mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
1887 | /* | 1889 | /* |
1888 | * Yucky last component or no last component at all? | 1890 | * Yucky last component or no last component at all? |
1889 | * (foo/., foo/.., /////) | 1891 | * (foo/., foo/.., /////) |
@@ -1962,19 +1964,19 @@ asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode, | |||
1962 | dentry = lookup_create(&nd, 0); | 1964 | dentry = lookup_create(&nd, 0); |
1963 | error = PTR_ERR(dentry); | 1965 | error = PTR_ERR(dentry); |
1964 | 1966 | ||
1965 | if (!IS_POSIXACL(nd.dentry->d_inode)) | 1967 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
1966 | mode &= ~current->fs->umask; | 1968 | mode &= ~current->fs->umask; |
1967 | if (!IS_ERR(dentry)) { | 1969 | if (!IS_ERR(dentry)) { |
1968 | switch (mode & S_IFMT) { | 1970 | switch (mode & S_IFMT) { |
1969 | case 0: case S_IFREG: | 1971 | case 0: case S_IFREG: |
1970 | error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd); | 1972 | error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd); |
1971 | break; | 1973 | break; |
1972 | case S_IFCHR: case S_IFBLK: | 1974 | case S_IFCHR: case S_IFBLK: |
1973 | error = vfs_mknod(nd.dentry->d_inode,dentry,mode, | 1975 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode, |
1974 | new_decode_dev(dev)); | 1976 | new_decode_dev(dev)); |
1975 | break; | 1977 | break; |
1976 | case S_IFIFO: case S_IFSOCK: | 1978 | case S_IFIFO: case S_IFSOCK: |
1977 | error = vfs_mknod(nd.dentry->d_inode,dentry,mode,0); | 1979 | error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0); |
1978 | break; | 1980 | break; |
1979 | case S_IFDIR: | 1981 | case S_IFDIR: |
1980 | error = -EPERM; | 1982 | error = -EPERM; |
@@ -1984,8 +1986,8 @@ asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode, | |||
1984 | } | 1986 | } |
1985 | dput(dentry); | 1987 | dput(dentry); |
1986 | } | 1988 | } |
1987 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 1989 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
1988 | path_release(&nd); | 1990 | path_put(&nd.path); |
1989 | out: | 1991 | out: |
1990 | putname(tmp); | 1992 | putname(tmp); |
1991 | 1993 | ||
@@ -2039,13 +2041,13 @@ asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode) | |||
2039 | if (IS_ERR(dentry)) | 2041 | if (IS_ERR(dentry)) |
2040 | goto out_unlock; | 2042 | goto out_unlock; |
2041 | 2043 | ||
2042 | if (!IS_POSIXACL(nd.dentry->d_inode)) | 2044 | if (!IS_POSIXACL(nd.path.dentry->d_inode)) |
2043 | mode &= ~current->fs->umask; | 2045 | mode &= ~current->fs->umask; |
2044 | error = vfs_mkdir(nd.dentry->d_inode, dentry, mode); | 2046 | error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode); |
2045 | dput(dentry); | 2047 | dput(dentry); |
2046 | out_unlock: | 2048 | out_unlock: |
2047 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 2049 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
2048 | path_release(&nd); | 2050 | path_put(&nd.path); |
2049 | out: | 2051 | out: |
2050 | putname(tmp); | 2052 | putname(tmp); |
2051 | out_err: | 2053 | out_err: |
@@ -2143,17 +2145,17 @@ static long do_rmdir(int dfd, const char __user *pathname) | |||
2143 | error = -EBUSY; | 2145 | error = -EBUSY; |
2144 | goto exit1; | 2146 | goto exit1; |
2145 | } | 2147 | } |
2146 | mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT); | 2148 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
2147 | dentry = lookup_hash(&nd); | 2149 | dentry = lookup_hash(&nd); |
2148 | error = PTR_ERR(dentry); | 2150 | error = PTR_ERR(dentry); |
2149 | if (IS_ERR(dentry)) | 2151 | if (IS_ERR(dentry)) |
2150 | goto exit2; | 2152 | goto exit2; |
2151 | error = vfs_rmdir(nd.dentry->d_inode, dentry); | 2153 | error = vfs_rmdir(nd.path.dentry->d_inode, dentry); |
2152 | dput(dentry); | 2154 | dput(dentry); |
2153 | exit2: | 2155 | exit2: |
2154 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 2156 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
2155 | exit1: | 2157 | exit1: |
2156 | path_release(&nd); | 2158 | path_put(&nd.path); |
2157 | exit: | 2159 | exit: |
2158 | putname(name); | 2160 | putname(name); |
2159 | return error; | 2161 | return error; |
@@ -2219,7 +2221,7 @@ static long do_unlinkat(int dfd, const char __user *pathname) | |||
2219 | error = -EISDIR; | 2221 | error = -EISDIR; |
2220 | if (nd.last_type != LAST_NORM) | 2222 | if (nd.last_type != LAST_NORM) |
2221 | goto exit1; | 2223 | goto exit1; |
2222 | mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT); | 2224 | mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
2223 | dentry = lookup_hash(&nd); | 2225 | dentry = lookup_hash(&nd); |
2224 | error = PTR_ERR(dentry); | 2226 | error = PTR_ERR(dentry); |
2225 | if (!IS_ERR(dentry)) { | 2227 | if (!IS_ERR(dentry)) { |
@@ -2229,15 +2231,15 @@ static long do_unlinkat(int dfd, const char __user *pathname) | |||
2229 | inode = dentry->d_inode; | 2231 | inode = dentry->d_inode; |
2230 | if (inode) | 2232 | if (inode) |
2231 | atomic_inc(&inode->i_count); | 2233 | atomic_inc(&inode->i_count); |
2232 | error = vfs_unlink(nd.dentry->d_inode, dentry); | 2234 | error = vfs_unlink(nd.path.dentry->d_inode, dentry); |
2233 | exit2: | 2235 | exit2: |
2234 | dput(dentry); | 2236 | dput(dentry); |
2235 | } | 2237 | } |
2236 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 2238 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
2237 | if (inode) | 2239 | if (inode) |
2238 | iput(inode); /* truncate the inode here */ | 2240 | iput(inode); /* truncate the inode here */ |
2239 | exit1: | 2241 | exit1: |
2240 | path_release(&nd); | 2242 | path_put(&nd.path); |
2241 | exit: | 2243 | exit: |
2242 | putname(name); | 2244 | putname(name); |
2243 | return error; | 2245 | return error; |
@@ -2310,11 +2312,11 @@ asmlinkage long sys_symlinkat(const char __user *oldname, | |||
2310 | if (IS_ERR(dentry)) | 2312 | if (IS_ERR(dentry)) |
2311 | goto out_unlock; | 2313 | goto out_unlock; |
2312 | 2314 | ||
2313 | error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO); | 2315 | error = vfs_symlink(nd.path.dentry->d_inode, dentry, from, S_IALLUGO); |
2314 | dput(dentry); | 2316 | dput(dentry); |
2315 | out_unlock: | 2317 | out_unlock: |
2316 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 2318 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
2317 | path_release(&nd); | 2319 | path_put(&nd.path); |
2318 | out: | 2320 | out: |
2319 | putname(to); | 2321 | putname(to); |
2320 | out_putname: | 2322 | out_putname: |
@@ -2399,20 +2401,20 @@ asmlinkage long sys_linkat(int olddfd, const char __user *oldname, | |||
2399 | if (error) | 2401 | if (error) |
2400 | goto out; | 2402 | goto out; |
2401 | error = -EXDEV; | 2403 | error = -EXDEV; |
2402 | if (old_nd.mnt != nd.mnt) | 2404 | if (old_nd.path.mnt != nd.path.mnt) |
2403 | goto out_release; | 2405 | goto out_release; |
2404 | new_dentry = lookup_create(&nd, 0); | 2406 | new_dentry = lookup_create(&nd, 0); |
2405 | error = PTR_ERR(new_dentry); | 2407 | error = PTR_ERR(new_dentry); |
2406 | if (IS_ERR(new_dentry)) | 2408 | if (IS_ERR(new_dentry)) |
2407 | goto out_unlock; | 2409 | goto out_unlock; |
2408 | error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry); | 2410 | error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry); |
2409 | dput(new_dentry); | 2411 | dput(new_dentry); |
2410 | out_unlock: | 2412 | out_unlock: |
2411 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 2413 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
2412 | out_release: | 2414 | out_release: |
2413 | path_release(&nd); | 2415 | path_put(&nd.path); |
2414 | out: | 2416 | out: |
2415 | path_release(&old_nd); | 2417 | path_put(&old_nd.path); |
2416 | exit: | 2418 | exit: |
2417 | putname(to); | 2419 | putname(to); |
2418 | 2420 | ||
@@ -2588,15 +2590,15 @@ static int do_rename(int olddfd, const char *oldname, | |||
2588 | goto exit1; | 2590 | goto exit1; |
2589 | 2591 | ||
2590 | error = -EXDEV; | 2592 | error = -EXDEV; |
2591 | if (oldnd.mnt != newnd.mnt) | 2593 | if (oldnd.path.mnt != newnd.path.mnt) |
2592 | goto exit2; | 2594 | goto exit2; |
2593 | 2595 | ||
2594 | old_dir = oldnd.dentry; | 2596 | old_dir = oldnd.path.dentry; |
2595 | error = -EBUSY; | 2597 | error = -EBUSY; |
2596 | if (oldnd.last_type != LAST_NORM) | 2598 | if (oldnd.last_type != LAST_NORM) |
2597 | goto exit2; | 2599 | goto exit2; |
2598 | 2600 | ||
2599 | new_dir = newnd.dentry; | 2601 | new_dir = newnd.path.dentry; |
2600 | if (newnd.last_type != LAST_NORM) | 2602 | if (newnd.last_type != LAST_NORM) |
2601 | goto exit2; | 2603 | goto exit2; |
2602 | 2604 | ||
@@ -2640,9 +2642,9 @@ exit4: | |||
2640 | exit3: | 2642 | exit3: |
2641 | unlock_rename(new_dir, old_dir); | 2643 | unlock_rename(new_dir, old_dir); |
2642 | exit2: | 2644 | exit2: |
2643 | path_release(&newnd); | 2645 | path_put(&newnd.path); |
2644 | exit1: | 2646 | exit1: |
2645 | path_release(&oldnd); | 2647 | path_put(&oldnd.path); |
2646 | exit: | 2648 | exit: |
2647 | return error; | 2649 | return error; |
2648 | } | 2650 | } |
@@ -2816,7 +2818,6 @@ EXPORT_SYMBOL(page_symlink); | |||
2816 | EXPORT_SYMBOL(page_symlink_inode_operations); | 2818 | EXPORT_SYMBOL(page_symlink_inode_operations); |
2817 | EXPORT_SYMBOL(path_lookup); | 2819 | EXPORT_SYMBOL(path_lookup); |
2818 | EXPORT_SYMBOL(vfs_path_lookup); | 2820 | EXPORT_SYMBOL(vfs_path_lookup); |
2819 | EXPORT_SYMBOL(path_release); | ||
2820 | EXPORT_SYMBOL(permission); | 2821 | EXPORT_SYMBOL(permission); |
2821 | EXPORT_SYMBOL(vfs_permission); | 2822 | EXPORT_SYMBOL(vfs_permission); |
2822 | EXPORT_SYMBOL(file_permission); | 2823 | EXPORT_SYMBOL(file_permission); |
diff --git a/fs/namespace.c b/fs/namespace.c index 63ced21c12dc..7953c96a2071 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -157,13 +157,13 @@ static void __touch_mnt_namespace(struct mnt_namespace *ns) | |||
157 | 157 | ||
158 | static void detach_mnt(struct vfsmount *mnt, struct nameidata *old_nd) | 158 | static void detach_mnt(struct vfsmount *mnt, struct nameidata *old_nd) |
159 | { | 159 | { |
160 | old_nd->dentry = mnt->mnt_mountpoint; | 160 | old_nd->path.dentry = mnt->mnt_mountpoint; |
161 | old_nd->mnt = mnt->mnt_parent; | 161 | old_nd->path.mnt = mnt->mnt_parent; |
162 | mnt->mnt_parent = mnt; | 162 | mnt->mnt_parent = mnt; |
163 | mnt->mnt_mountpoint = mnt->mnt_root; | 163 | mnt->mnt_mountpoint = mnt->mnt_root; |
164 | list_del_init(&mnt->mnt_child); | 164 | list_del_init(&mnt->mnt_child); |
165 | list_del_init(&mnt->mnt_hash); | 165 | list_del_init(&mnt->mnt_hash); |
166 | old_nd->dentry->d_mounted--; | 166 | old_nd->path.dentry->d_mounted--; |
167 | } | 167 | } |
168 | 168 | ||
169 | void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, | 169 | void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, |
@@ -176,10 +176,10 @@ void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, | |||
176 | 176 | ||
177 | static void attach_mnt(struct vfsmount *mnt, struct nameidata *nd) | 177 | static void attach_mnt(struct vfsmount *mnt, struct nameidata *nd) |
178 | { | 178 | { |
179 | mnt_set_mountpoint(nd->mnt, nd->dentry, mnt); | 179 | mnt_set_mountpoint(nd->path.mnt, nd->path.dentry, mnt); |
180 | list_add_tail(&mnt->mnt_hash, mount_hashtable + | 180 | list_add_tail(&mnt->mnt_hash, mount_hashtable + |
181 | hash(nd->mnt, nd->dentry)); | 181 | hash(nd->path.mnt, nd->path.dentry)); |
182 | list_add_tail(&mnt->mnt_child, &nd->mnt->mnt_mounts); | 182 | list_add_tail(&mnt->mnt_child, &nd->path.mnt->mnt_mounts); |
183 | } | 183 | } |
184 | 184 | ||
185 | /* | 185 | /* |
@@ -408,10 +408,11 @@ static int show_vfsmnt(struct seq_file *m, void *v) | |||
408 | { 0, NULL } | 408 | { 0, NULL } |
409 | }; | 409 | }; |
410 | struct proc_fs_info *fs_infop; | 410 | struct proc_fs_info *fs_infop; |
411 | struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt }; | ||
411 | 412 | ||
412 | mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none"); | 413 | mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none"); |
413 | seq_putc(m, ' '); | 414 | seq_putc(m, ' '); |
414 | seq_path(m, mnt, mnt->mnt_root, " \t\n\\"); | 415 | seq_path(m, &mnt_path, " \t\n\\"); |
415 | seq_putc(m, ' '); | 416 | seq_putc(m, ' '); |
416 | mangle(m, mnt->mnt_sb->s_type->name); | 417 | mangle(m, mnt->mnt_sb->s_type->name); |
417 | if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) { | 418 | if (mnt->mnt_sb->s_subtype && mnt->mnt_sb->s_subtype[0]) { |
@@ -443,6 +444,7 @@ struct seq_operations mounts_op = { | |||
443 | static int show_vfsstat(struct seq_file *m, void *v) | 444 | static int show_vfsstat(struct seq_file *m, void *v) |
444 | { | 445 | { |
445 | struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list); | 446 | struct vfsmount *mnt = list_entry(v, struct vfsmount, mnt_list); |
447 | struct path mnt_path = { .dentry = mnt->mnt_root, .mnt = mnt }; | ||
446 | int err = 0; | 448 | int err = 0; |
447 | 449 | ||
448 | /* device */ | 450 | /* device */ |
@@ -454,7 +456,7 @@ static int show_vfsstat(struct seq_file *m, void *v) | |||
454 | 456 | ||
455 | /* mount point */ | 457 | /* mount point */ |
456 | seq_puts(m, " mounted on "); | 458 | seq_puts(m, " mounted on "); |
457 | seq_path(m, mnt, mnt->mnt_root, " \t\n\\"); | 459 | seq_path(m, &mnt_path, " \t\n\\"); |
458 | seq_putc(m, ' '); | 460 | seq_putc(m, ' '); |
459 | 461 | ||
460 | /* file system type */ | 462 | /* file system type */ |
@@ -593,7 +595,7 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
593 | * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount] | 595 | * (2) the usage count == 1 [parent vfsmount] + 1 [sys_umount] |
594 | */ | 596 | */ |
595 | if (flags & MNT_EXPIRE) { | 597 | if (flags & MNT_EXPIRE) { |
596 | if (mnt == current->fs->rootmnt || | 598 | if (mnt == current->fs->root.mnt || |
597 | flags & (MNT_FORCE | MNT_DETACH)) | 599 | flags & (MNT_FORCE | MNT_DETACH)) |
598 | return -EINVAL; | 600 | return -EINVAL; |
599 | 601 | ||
@@ -628,7 +630,7 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
628 | * /reboot - static binary that would close all descriptors and | 630 | * /reboot - static binary that would close all descriptors and |
629 | * call reboot(9). Then init(8) could umount root and exec /reboot. | 631 | * call reboot(9). Then init(8) could umount root and exec /reboot. |
630 | */ | 632 | */ |
631 | if (mnt == current->fs->rootmnt && !(flags & MNT_DETACH)) { | 633 | if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) { |
632 | /* | 634 | /* |
633 | * Special case for "unmounting" root ... | 635 | * Special case for "unmounting" root ... |
634 | * we just try to remount it readonly. | 636 | * we just try to remount it readonly. |
@@ -679,18 +681,20 @@ asmlinkage long sys_umount(char __user * name, int flags) | |||
679 | if (retval) | 681 | if (retval) |
680 | goto out; | 682 | goto out; |
681 | retval = -EINVAL; | 683 | retval = -EINVAL; |
682 | if (nd.dentry != nd.mnt->mnt_root) | 684 | if (nd.path.dentry != nd.path.mnt->mnt_root) |
683 | goto dput_and_out; | 685 | goto dput_and_out; |
684 | if (!check_mnt(nd.mnt)) | 686 | if (!check_mnt(nd.path.mnt)) |
685 | goto dput_and_out; | 687 | goto dput_and_out; |
686 | 688 | ||
687 | retval = -EPERM; | 689 | retval = -EPERM; |
688 | if (!capable(CAP_SYS_ADMIN)) | 690 | if (!capable(CAP_SYS_ADMIN)) |
689 | goto dput_and_out; | 691 | goto dput_and_out; |
690 | 692 | ||
691 | retval = do_umount(nd.mnt, flags); | 693 | retval = do_umount(nd.path.mnt, flags); |
692 | dput_and_out: | 694 | dput_and_out: |
693 | path_release_on_umount(&nd); | 695 | /* we mustn't call path_put() as that would clear mnt_expiry_mark */ |
696 | dput(nd.path.dentry); | ||
697 | mntput_no_expire(nd.path.mnt); | ||
694 | out: | 698 | out: |
695 | return retval; | 699 | return retval; |
696 | } | 700 | } |
@@ -713,10 +717,10 @@ static int mount_is_safe(struct nameidata *nd) | |||
713 | return 0; | 717 | return 0; |
714 | return -EPERM; | 718 | return -EPERM; |
715 | #ifdef notyet | 719 | #ifdef notyet |
716 | if (S_ISLNK(nd->dentry->d_inode->i_mode)) | 720 | if (S_ISLNK(nd->path.dentry->d_inode->i_mode)) |
717 | return -EPERM; | 721 | return -EPERM; |
718 | if (nd->dentry->d_inode->i_mode & S_ISVTX) { | 722 | if (nd->path.dentry->d_inode->i_mode & S_ISVTX) { |
719 | if (current->uid != nd->dentry->d_inode->i_uid) | 723 | if (current->uid != nd->path.dentry->d_inode->i_uid) |
720 | return -EPERM; | 724 | return -EPERM; |
721 | } | 725 | } |
722 | if (vfs_permission(nd, MAY_WRITE)) | 726 | if (vfs_permission(nd, MAY_WRITE)) |
@@ -765,8 +769,8 @@ struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry, | |||
765 | q = q->mnt_parent; | 769 | q = q->mnt_parent; |
766 | } | 770 | } |
767 | p = s; | 771 | p = s; |
768 | nd.mnt = q; | 772 | nd.path.mnt = q; |
769 | nd.dentry = p->mnt_mountpoint; | 773 | nd.path.dentry = p->mnt_mountpoint; |
770 | q = clone_mnt(p, p->mnt_root, flag); | 774 | q = clone_mnt(p, p->mnt_root, flag); |
771 | if (!q) | 775 | if (!q) |
772 | goto Enomem; | 776 | goto Enomem; |
@@ -875,8 +879,8 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt, | |||
875 | struct nameidata *nd, struct nameidata *parent_nd) | 879 | struct nameidata *nd, struct nameidata *parent_nd) |
876 | { | 880 | { |
877 | LIST_HEAD(tree_list); | 881 | LIST_HEAD(tree_list); |
878 | struct vfsmount *dest_mnt = nd->mnt; | 882 | struct vfsmount *dest_mnt = nd->path.mnt; |
879 | struct dentry *dest_dentry = nd->dentry; | 883 | struct dentry *dest_dentry = nd->path.dentry; |
880 | struct vfsmount *child, *p; | 884 | struct vfsmount *child, *p; |
881 | 885 | ||
882 | if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list)) | 886 | if (propagate_mnt(dest_mnt, dest_dentry, source_mnt, &tree_list)) |
@@ -911,13 +915,13 @@ static int graft_tree(struct vfsmount *mnt, struct nameidata *nd) | |||
911 | if (mnt->mnt_sb->s_flags & MS_NOUSER) | 915 | if (mnt->mnt_sb->s_flags & MS_NOUSER) |
912 | return -EINVAL; | 916 | return -EINVAL; |
913 | 917 | ||
914 | if (S_ISDIR(nd->dentry->d_inode->i_mode) != | 918 | if (S_ISDIR(nd->path.dentry->d_inode->i_mode) != |
915 | S_ISDIR(mnt->mnt_root->d_inode->i_mode)) | 919 | S_ISDIR(mnt->mnt_root->d_inode->i_mode)) |
916 | return -ENOTDIR; | 920 | return -ENOTDIR; |
917 | 921 | ||
918 | err = -ENOENT; | 922 | err = -ENOENT; |
919 | mutex_lock(&nd->dentry->d_inode->i_mutex); | 923 | mutex_lock(&nd->path.dentry->d_inode->i_mutex); |
920 | if (IS_DEADDIR(nd->dentry->d_inode)) | 924 | if (IS_DEADDIR(nd->path.dentry->d_inode)) |
921 | goto out_unlock; | 925 | goto out_unlock; |
922 | 926 | ||
923 | err = security_sb_check_sb(mnt, nd); | 927 | err = security_sb_check_sb(mnt, nd); |
@@ -925,10 +929,10 @@ static int graft_tree(struct vfsmount *mnt, struct nameidata *nd) | |||
925 | goto out_unlock; | 929 | goto out_unlock; |
926 | 930 | ||
927 | err = -ENOENT; | 931 | err = -ENOENT; |
928 | if (IS_ROOT(nd->dentry) || !d_unhashed(nd->dentry)) | 932 | if (IS_ROOT(nd->path.dentry) || !d_unhashed(nd->path.dentry)) |
929 | err = attach_recursive_mnt(mnt, nd, NULL); | 933 | err = attach_recursive_mnt(mnt, nd, NULL); |
930 | out_unlock: | 934 | out_unlock: |
931 | mutex_unlock(&nd->dentry->d_inode->i_mutex); | 935 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); |
932 | if (!err) | 936 | if (!err) |
933 | security_sb_post_addmount(mnt, nd); | 937 | security_sb_post_addmount(mnt, nd); |
934 | return err; | 938 | return err; |
@@ -940,14 +944,14 @@ out_unlock: | |||
940 | */ | 944 | */ |
941 | static noinline int do_change_type(struct nameidata *nd, int flag) | 945 | static noinline int do_change_type(struct nameidata *nd, int flag) |
942 | { | 946 | { |
943 | struct vfsmount *m, *mnt = nd->mnt; | 947 | struct vfsmount *m, *mnt = nd->path.mnt; |
944 | int recurse = flag & MS_REC; | 948 | int recurse = flag & MS_REC; |
945 | int type = flag & ~MS_REC; | 949 | int type = flag & ~MS_REC; |
946 | 950 | ||
947 | if (!capable(CAP_SYS_ADMIN)) | 951 | if (!capable(CAP_SYS_ADMIN)) |
948 | return -EPERM; | 952 | return -EPERM; |
949 | 953 | ||
950 | if (nd->dentry != nd->mnt->mnt_root) | 954 | if (nd->path.dentry != nd->path.mnt->mnt_root) |
951 | return -EINVAL; | 955 | return -EINVAL; |
952 | 956 | ||
953 | down_write(&namespace_sem); | 957 | down_write(&namespace_sem); |
@@ -979,17 +983,17 @@ static noinline int do_loopback(struct nameidata *nd, char *old_name, | |||
979 | 983 | ||
980 | down_write(&namespace_sem); | 984 | down_write(&namespace_sem); |
981 | err = -EINVAL; | 985 | err = -EINVAL; |
982 | if (IS_MNT_UNBINDABLE(old_nd.mnt)) | 986 | if (IS_MNT_UNBINDABLE(old_nd.path.mnt)) |
983 | goto out; | 987 | goto out; |
984 | 988 | ||
985 | if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt)) | 989 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) |
986 | goto out; | 990 | goto out; |
987 | 991 | ||
988 | err = -ENOMEM; | 992 | err = -ENOMEM; |
989 | if (recurse) | 993 | if (recurse) |
990 | mnt = copy_tree(old_nd.mnt, old_nd.dentry, 0); | 994 | mnt = copy_tree(old_nd.path.mnt, old_nd.path.dentry, 0); |
991 | else | 995 | else |
992 | mnt = clone_mnt(old_nd.mnt, old_nd.dentry, 0); | 996 | mnt = clone_mnt(old_nd.path.mnt, old_nd.path.dentry, 0); |
993 | 997 | ||
994 | if (!mnt) | 998 | if (!mnt) |
995 | goto out; | 999 | goto out; |
@@ -1005,7 +1009,7 @@ static noinline int do_loopback(struct nameidata *nd, char *old_name, | |||
1005 | 1009 | ||
1006 | out: | 1010 | out: |
1007 | up_write(&namespace_sem); | 1011 | up_write(&namespace_sem); |
1008 | path_release(&old_nd); | 1012 | path_put(&old_nd.path); |
1009 | return err; | 1013 | return err; |
1010 | } | 1014 | } |
1011 | 1015 | ||
@@ -1019,24 +1023,24 @@ static noinline int do_remount(struct nameidata *nd, int flags, int mnt_flags, | |||
1019 | void *data) | 1023 | void *data) |
1020 | { | 1024 | { |
1021 | int err; | 1025 | int err; |
1022 | struct super_block *sb = nd->mnt->mnt_sb; | 1026 | struct super_block *sb = nd->path.mnt->mnt_sb; |
1023 | 1027 | ||
1024 | if (!capable(CAP_SYS_ADMIN)) | 1028 | if (!capable(CAP_SYS_ADMIN)) |
1025 | return -EPERM; | 1029 | return -EPERM; |
1026 | 1030 | ||
1027 | if (!check_mnt(nd->mnt)) | 1031 | if (!check_mnt(nd->path.mnt)) |
1028 | return -EINVAL; | 1032 | return -EINVAL; |
1029 | 1033 | ||
1030 | if (nd->dentry != nd->mnt->mnt_root) | 1034 | if (nd->path.dentry != nd->path.mnt->mnt_root) |
1031 | return -EINVAL; | 1035 | return -EINVAL; |
1032 | 1036 | ||
1033 | down_write(&sb->s_umount); | 1037 | down_write(&sb->s_umount); |
1034 | err = do_remount_sb(sb, flags, data, 0); | 1038 | err = do_remount_sb(sb, flags, data, 0); |
1035 | if (!err) | 1039 | if (!err) |
1036 | nd->mnt->mnt_flags = mnt_flags; | 1040 | nd->path.mnt->mnt_flags = mnt_flags; |
1037 | up_write(&sb->s_umount); | 1041 | up_write(&sb->s_umount); |
1038 | if (!err) | 1042 | if (!err) |
1039 | security_sb_post_remount(nd->mnt, flags, data); | 1043 | security_sb_post_remount(nd->path.mnt, flags, data); |
1040 | return err; | 1044 | return err; |
1041 | } | 1045 | } |
1042 | 1046 | ||
@@ -1067,61 +1071,65 @@ static noinline int do_move_mount(struct nameidata *nd, char *old_name) | |||
1067 | return err; | 1071 | return err; |
1068 | 1072 | ||
1069 | down_write(&namespace_sem); | 1073 | down_write(&namespace_sem); |
1070 | while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry)) | 1074 | while (d_mountpoint(nd->path.dentry) && |
1075 | follow_down(&nd->path.mnt, &nd->path.dentry)) | ||
1071 | ; | 1076 | ; |
1072 | err = -EINVAL; | 1077 | err = -EINVAL; |
1073 | if (!check_mnt(nd->mnt) || !check_mnt(old_nd.mnt)) | 1078 | if (!check_mnt(nd->path.mnt) || !check_mnt(old_nd.path.mnt)) |
1074 | goto out; | 1079 | goto out; |
1075 | 1080 | ||
1076 | err = -ENOENT; | 1081 | err = -ENOENT; |
1077 | mutex_lock(&nd->dentry->d_inode->i_mutex); | 1082 | mutex_lock(&nd->path.dentry->d_inode->i_mutex); |
1078 | if (IS_DEADDIR(nd->dentry->d_inode)) | 1083 | if (IS_DEADDIR(nd->path.dentry->d_inode)) |
1079 | goto out1; | 1084 | goto out1; |
1080 | 1085 | ||
1081 | if (!IS_ROOT(nd->dentry) && d_unhashed(nd->dentry)) | 1086 | if (!IS_ROOT(nd->path.dentry) && d_unhashed(nd->path.dentry)) |
1082 | goto out1; | 1087 | goto out1; |
1083 | 1088 | ||
1084 | err = -EINVAL; | 1089 | err = -EINVAL; |
1085 | if (old_nd.dentry != old_nd.mnt->mnt_root) | 1090 | if (old_nd.path.dentry != old_nd.path.mnt->mnt_root) |
1086 | goto out1; | 1091 | goto out1; |
1087 | 1092 | ||
1088 | if (old_nd.mnt == old_nd.mnt->mnt_parent) | 1093 | if (old_nd.path.mnt == old_nd.path.mnt->mnt_parent) |
1089 | goto out1; | 1094 | goto out1; |
1090 | 1095 | ||
1091 | if (S_ISDIR(nd->dentry->d_inode->i_mode) != | 1096 | if (S_ISDIR(nd->path.dentry->d_inode->i_mode) != |
1092 | S_ISDIR(old_nd.dentry->d_inode->i_mode)) | 1097 | S_ISDIR(old_nd.path.dentry->d_inode->i_mode)) |
1093 | goto out1; | 1098 | goto out1; |
1094 | /* | 1099 | /* |
1095 | * Don't move a mount residing in a shared parent. | 1100 | * Don't move a mount residing in a shared parent. |
1096 | */ | 1101 | */ |
1097 | if (old_nd.mnt->mnt_parent && IS_MNT_SHARED(old_nd.mnt->mnt_parent)) | 1102 | if (old_nd.path.mnt->mnt_parent && |
1103 | IS_MNT_SHARED(old_nd.path.mnt->mnt_parent)) | ||
1098 | goto out1; | 1104 | goto out1; |
1099 | /* | 1105 | /* |
1100 | * Don't move a mount tree containing unbindable mounts to a destination | 1106 | * Don't move a mount tree containing unbindable mounts to a destination |
1101 | * mount which is shared. | 1107 | * mount which is shared. |
1102 | */ | 1108 | */ |
1103 | if (IS_MNT_SHARED(nd->mnt) && tree_contains_unbindable(old_nd.mnt)) | 1109 | if (IS_MNT_SHARED(nd->path.mnt) && |
1110 | tree_contains_unbindable(old_nd.path.mnt)) | ||
1104 | goto out1; | 1111 | goto out1; |
1105 | err = -ELOOP; | 1112 | err = -ELOOP; |
1106 | for (p = nd->mnt; p->mnt_parent != p; p = p->mnt_parent) | 1113 | for (p = nd->path.mnt; p->mnt_parent != p; p = p->mnt_parent) |
1107 | if (p == old_nd.mnt) | 1114 | if (p == old_nd.path.mnt) |
1108 | goto out1; | 1115 | goto out1; |
1109 | 1116 | ||
1110 | if ((err = attach_recursive_mnt(old_nd.mnt, nd, &parent_nd))) | 1117 | err = attach_recursive_mnt(old_nd.path.mnt, nd, &parent_nd); |
1118 | if (err) | ||
1111 | goto out1; | 1119 | goto out1; |
1112 | 1120 | ||
1113 | spin_lock(&vfsmount_lock); | 1121 | spin_lock(&vfsmount_lock); |
1114 | /* if the mount is moved, it should no longer be expire | 1122 | /* if the mount is moved, it should no longer be expire |
1115 | * automatically */ | 1123 | * automatically */ |
1116 | list_del_init(&old_nd.mnt->mnt_expire); | 1124 | list_del_init(&old_nd.path.mnt->mnt_expire); |
1117 | spin_unlock(&vfsmount_lock); | 1125 | spin_unlock(&vfsmount_lock); |
1118 | out1: | 1126 | out1: |
1119 | mutex_unlock(&nd->dentry->d_inode->i_mutex); | 1127 | mutex_unlock(&nd->path.dentry->d_inode->i_mutex); |
1120 | out: | 1128 | out: |
1121 | up_write(&namespace_sem); | 1129 | up_write(&namespace_sem); |
1122 | if (!err) | 1130 | if (!err) |
1123 | path_release(&parent_nd); | 1131 | path_put(&parent_nd.path); |
1124 | path_release(&old_nd); | 1132 | path_put(&old_nd.path); |
1125 | return err; | 1133 | return err; |
1126 | } | 1134 | } |
1127 | 1135 | ||
@@ -1160,16 +1168,17 @@ int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd, | |||
1160 | 1168 | ||
1161 | down_write(&namespace_sem); | 1169 | down_write(&namespace_sem); |
1162 | /* Something was mounted here while we slept */ | 1170 | /* Something was mounted here while we slept */ |
1163 | while (d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry)) | 1171 | while (d_mountpoint(nd->path.dentry) && |
1172 | follow_down(&nd->path.mnt, &nd->path.dentry)) | ||
1164 | ; | 1173 | ; |
1165 | err = -EINVAL; | 1174 | err = -EINVAL; |
1166 | if (!check_mnt(nd->mnt)) | 1175 | if (!check_mnt(nd->path.mnt)) |
1167 | goto unlock; | 1176 | goto unlock; |
1168 | 1177 | ||
1169 | /* Refuse the same filesystem on the same mount point */ | 1178 | /* Refuse the same filesystem on the same mount point */ |
1170 | err = -EBUSY; | 1179 | err = -EBUSY; |
1171 | if (nd->mnt->mnt_sb == newmnt->mnt_sb && | 1180 | if (nd->path.mnt->mnt_sb == newmnt->mnt_sb && |
1172 | nd->mnt->mnt_root == nd->dentry) | 1181 | nd->path.mnt->mnt_root == nd->path.dentry) |
1173 | goto unlock; | 1182 | goto unlock; |
1174 | 1183 | ||
1175 | err = -EINVAL; | 1184 | err = -EINVAL; |
@@ -1505,7 +1514,7 @@ long do_mount(char *dev_name, char *dir_name, char *type_page, | |||
1505 | retval = do_new_mount(&nd, type_page, flags, mnt_flags, | 1514 | retval = do_new_mount(&nd, type_page, flags, mnt_flags, |
1506 | dev_name, data_page); | 1515 | dev_name, data_page); |
1507 | dput_out: | 1516 | dput_out: |
1508 | path_release(&nd); | 1517 | path_put(&nd.path); |
1509 | return retval; | 1518 | return retval; |
1510 | } | 1519 | } |
1511 | 1520 | ||
@@ -1552,17 +1561,17 @@ static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns, | |||
1552 | while (p) { | 1561 | while (p) { |
1553 | q->mnt_ns = new_ns; | 1562 | q->mnt_ns = new_ns; |
1554 | if (fs) { | 1563 | if (fs) { |
1555 | if (p == fs->rootmnt) { | 1564 | if (p == fs->root.mnt) { |
1556 | rootmnt = p; | 1565 | rootmnt = p; |
1557 | fs->rootmnt = mntget(q); | 1566 | fs->root.mnt = mntget(q); |
1558 | } | 1567 | } |
1559 | if (p == fs->pwdmnt) { | 1568 | if (p == fs->pwd.mnt) { |
1560 | pwdmnt = p; | 1569 | pwdmnt = p; |
1561 | fs->pwdmnt = mntget(q); | 1570 | fs->pwd.mnt = mntget(q); |
1562 | } | 1571 | } |
1563 | if (p == fs->altrootmnt) { | 1572 | if (p == fs->altroot.mnt) { |
1564 | altrootmnt = p; | 1573 | altrootmnt = p; |
1565 | fs->altrootmnt = mntget(q); | 1574 | fs->altroot.mnt = mntget(q); |
1566 | } | 1575 | } |
1567 | } | 1576 | } |
1568 | p = next_mnt(p, mnt_ns->root); | 1577 | p = next_mnt(p, mnt_ns->root); |
@@ -1643,44 +1652,35 @@ out1: | |||
1643 | * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. | 1652 | * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. |
1644 | * It can block. Requires the big lock held. | 1653 | * It can block. Requires the big lock held. |
1645 | */ | 1654 | */ |
1646 | void set_fs_root(struct fs_struct *fs, struct vfsmount *mnt, | 1655 | void set_fs_root(struct fs_struct *fs, struct path *path) |
1647 | struct dentry *dentry) | ||
1648 | { | 1656 | { |
1649 | struct dentry *old_root; | 1657 | struct path old_root; |
1650 | struct vfsmount *old_rootmnt; | 1658 | |
1651 | write_lock(&fs->lock); | 1659 | write_lock(&fs->lock); |
1652 | old_root = fs->root; | 1660 | old_root = fs->root; |
1653 | old_rootmnt = fs->rootmnt; | 1661 | fs->root = *path; |
1654 | fs->rootmnt = mntget(mnt); | 1662 | path_get(path); |
1655 | fs->root = dget(dentry); | ||
1656 | write_unlock(&fs->lock); | 1663 | write_unlock(&fs->lock); |
1657 | if (old_root) { | 1664 | if (old_root.dentry) |
1658 | dput(old_root); | 1665 | path_put(&old_root); |
1659 | mntput(old_rootmnt); | ||
1660 | } | ||
1661 | } | 1666 | } |
1662 | 1667 | ||
1663 | /* | 1668 | /* |
1664 | * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. | 1669 | * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. |
1665 | * It can block. Requires the big lock held. | 1670 | * It can block. Requires the big lock held. |
1666 | */ | 1671 | */ |
1667 | void set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt, | 1672 | void set_fs_pwd(struct fs_struct *fs, struct path *path) |
1668 | struct dentry *dentry) | ||
1669 | { | 1673 | { |
1670 | struct dentry *old_pwd; | 1674 | struct path old_pwd; |
1671 | struct vfsmount *old_pwdmnt; | ||
1672 | 1675 | ||
1673 | write_lock(&fs->lock); | 1676 | write_lock(&fs->lock); |
1674 | old_pwd = fs->pwd; | 1677 | old_pwd = fs->pwd; |
1675 | old_pwdmnt = fs->pwdmnt; | 1678 | fs->pwd = *path; |
1676 | fs->pwdmnt = mntget(mnt); | 1679 | path_get(path); |
1677 | fs->pwd = dget(dentry); | ||
1678 | write_unlock(&fs->lock); | 1680 | write_unlock(&fs->lock); |
1679 | 1681 | ||
1680 | if (old_pwd) { | 1682 | if (old_pwd.dentry) |
1681 | dput(old_pwd); | 1683 | path_put(&old_pwd); |
1682 | mntput(old_pwdmnt); | ||
1683 | } | ||
1684 | } | 1684 | } |
1685 | 1685 | ||
1686 | static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd) | 1686 | static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd) |
@@ -1695,12 +1695,12 @@ static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd) | |||
1695 | if (fs) { | 1695 | if (fs) { |
1696 | atomic_inc(&fs->count); | 1696 | atomic_inc(&fs->count); |
1697 | task_unlock(p); | 1697 | task_unlock(p); |
1698 | if (fs->root == old_nd->dentry | 1698 | if (fs->root.dentry == old_nd->path.dentry |
1699 | && fs->rootmnt == old_nd->mnt) | 1699 | && fs->root.mnt == old_nd->path.mnt) |
1700 | set_fs_root(fs, new_nd->mnt, new_nd->dentry); | 1700 | set_fs_root(fs, &new_nd->path); |
1701 | if (fs->pwd == old_nd->dentry | 1701 | if (fs->pwd.dentry == old_nd->path.dentry |
1702 | && fs->pwdmnt == old_nd->mnt) | 1702 | && fs->pwd.mnt == old_nd->path.mnt) |
1703 | set_fs_pwd(fs, new_nd->mnt, new_nd->dentry); | 1703 | set_fs_pwd(fs, &new_nd->path); |
1704 | put_fs_struct(fs); | 1704 | put_fs_struct(fs); |
1705 | } else | 1705 | } else |
1706 | task_unlock(p); | 1706 | task_unlock(p); |
@@ -1750,7 +1750,7 @@ asmlinkage long sys_pivot_root(const char __user * new_root, | |||
1750 | if (error) | 1750 | if (error) |
1751 | goto out0; | 1751 | goto out0; |
1752 | error = -EINVAL; | 1752 | error = -EINVAL; |
1753 | if (!check_mnt(new_nd.mnt)) | 1753 | if (!check_mnt(new_nd.path.mnt)) |
1754 | goto out1; | 1754 | goto out1; |
1755 | 1755 | ||
1756 | error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd); | 1756 | error = __user_walk(put_old, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &old_nd); |
@@ -1759,74 +1759,78 @@ asmlinkage long sys_pivot_root(const char __user * new_root, | |||
1759 | 1759 | ||
1760 | error = security_sb_pivotroot(&old_nd, &new_nd); | 1760 | error = security_sb_pivotroot(&old_nd, &new_nd); |
1761 | if (error) { | 1761 | if (error) { |
1762 | path_release(&old_nd); | 1762 | path_put(&old_nd.path); |
1763 | goto out1; | 1763 | goto out1; |
1764 | } | 1764 | } |
1765 | 1765 | ||
1766 | read_lock(¤t->fs->lock); | 1766 | read_lock(¤t->fs->lock); |
1767 | user_nd.mnt = mntget(current->fs->rootmnt); | 1767 | user_nd.path = current->fs->root; |
1768 | user_nd.dentry = dget(current->fs->root); | 1768 | path_get(¤t->fs->root); |
1769 | read_unlock(¤t->fs->lock); | 1769 | read_unlock(¤t->fs->lock); |
1770 | down_write(&namespace_sem); | 1770 | down_write(&namespace_sem); |
1771 | mutex_lock(&old_nd.dentry->d_inode->i_mutex); | 1771 | mutex_lock(&old_nd.path.dentry->d_inode->i_mutex); |
1772 | error = -EINVAL; | 1772 | error = -EINVAL; |
1773 | if (IS_MNT_SHARED(old_nd.mnt) || | 1773 | if (IS_MNT_SHARED(old_nd.path.mnt) || |
1774 | IS_MNT_SHARED(new_nd.mnt->mnt_parent) || | 1774 | IS_MNT_SHARED(new_nd.path.mnt->mnt_parent) || |
1775 | IS_MNT_SHARED(user_nd.mnt->mnt_parent)) | 1775 | IS_MNT_SHARED(user_nd.path.mnt->mnt_parent)) |
1776 | goto out2; | 1776 | goto out2; |
1777 | if (!check_mnt(user_nd.mnt)) | 1777 | if (!check_mnt(user_nd.path.mnt)) |
1778 | goto out2; | 1778 | goto out2; |
1779 | error = -ENOENT; | 1779 | error = -ENOENT; |
1780 | if (IS_DEADDIR(new_nd.dentry->d_inode)) | 1780 | if (IS_DEADDIR(new_nd.path.dentry->d_inode)) |
1781 | goto out2; | 1781 | goto out2; |
1782 | if (d_unhashed(new_nd.dentry) && !IS_ROOT(new_nd.dentry)) | 1782 | if (d_unhashed(new_nd.path.dentry) && !IS_ROOT(new_nd.path.dentry)) |
1783 | goto out2; | 1783 | goto out2; |
1784 | if (d_unhashed(old_nd.dentry) && !IS_ROOT(old_nd.dentry)) | 1784 | if (d_unhashed(old_nd.path.dentry) && !IS_ROOT(old_nd.path.dentry)) |
1785 | goto out2; | 1785 | goto out2; |
1786 | error = -EBUSY; | 1786 | error = -EBUSY; |
1787 | if (new_nd.mnt == user_nd.mnt || old_nd.mnt == user_nd.mnt) | 1787 | if (new_nd.path.mnt == user_nd.path.mnt || |
1788 | old_nd.path.mnt == user_nd.path.mnt) | ||
1788 | goto out2; /* loop, on the same file system */ | 1789 | goto out2; /* loop, on the same file system */ |
1789 | error = -EINVAL; | 1790 | error = -EINVAL; |
1790 | if (user_nd.mnt->mnt_root != user_nd.dentry) | 1791 | if (user_nd.path.mnt->mnt_root != user_nd.path.dentry) |
1791 | goto out2; /* not a mountpoint */ | 1792 | goto out2; /* not a mountpoint */ |
1792 | if (user_nd.mnt->mnt_parent == user_nd.mnt) | 1793 | if (user_nd.path.mnt->mnt_parent == user_nd.path.mnt) |
1793 | goto out2; /* not attached */ | 1794 | goto out2; /* not attached */ |
1794 | if (new_nd.mnt->mnt_root != new_nd.dentry) | 1795 | if (new_nd.path.mnt->mnt_root != new_nd.path.dentry) |
1795 | goto out2; /* not a mountpoint */ | 1796 | goto out2; /* not a mountpoint */ |
1796 | if (new_nd.mnt->mnt_parent == new_nd.mnt) | 1797 | if (new_nd.path.mnt->mnt_parent == new_nd.path.mnt) |
1797 | goto out2; /* not attached */ | 1798 | goto out2; /* not attached */ |
1798 | tmp = old_nd.mnt; /* make sure we can reach put_old from new_root */ | 1799 | /* make sure we can reach put_old from new_root */ |
1800 | tmp = old_nd.path.mnt; | ||
1799 | spin_lock(&vfsmount_lock); | 1801 | spin_lock(&vfsmount_lock); |
1800 | if (tmp != new_nd.mnt) { | 1802 | if (tmp != new_nd.path.mnt) { |
1801 | for (;;) { | 1803 | for (;;) { |
1802 | if (tmp->mnt_parent == tmp) | 1804 | if (tmp->mnt_parent == tmp) |
1803 | goto out3; /* already mounted on put_old */ | 1805 | goto out3; /* already mounted on put_old */ |
1804 | if (tmp->mnt_parent == new_nd.mnt) | 1806 | if (tmp->mnt_parent == new_nd.path.mnt) |
1805 | break; | 1807 | break; |
1806 | tmp = tmp->mnt_parent; | 1808 | tmp = tmp->mnt_parent; |
1807 | } | 1809 | } |
1808 | if (!is_subdir(tmp->mnt_mountpoint, new_nd.dentry)) | 1810 | if (!is_subdir(tmp->mnt_mountpoint, new_nd.path.dentry)) |
1809 | goto out3; | 1811 | goto out3; |
1810 | } else if (!is_subdir(old_nd.dentry, new_nd.dentry)) | 1812 | } else if (!is_subdir(old_nd.path.dentry, new_nd.path.dentry)) |
1811 | goto out3; | 1813 | goto out3; |
1812 | detach_mnt(new_nd.mnt, &parent_nd); | 1814 | detach_mnt(new_nd.path.mnt, &parent_nd); |
1813 | detach_mnt(user_nd.mnt, &root_parent); | 1815 | detach_mnt(user_nd.path.mnt, &root_parent); |
1814 | attach_mnt(user_nd.mnt, &old_nd); /* mount old root on put_old */ | 1816 | /* mount old root on put_old */ |
1815 | attach_mnt(new_nd.mnt, &root_parent); /* mount new_root on / */ | 1817 | attach_mnt(user_nd.path.mnt, &old_nd); |
1818 | /* mount new_root on / */ | ||
1819 | attach_mnt(new_nd.path.mnt, &root_parent); | ||
1816 | touch_mnt_namespace(current->nsproxy->mnt_ns); | 1820 | touch_mnt_namespace(current->nsproxy->mnt_ns); |
1817 | spin_unlock(&vfsmount_lock); | 1821 | spin_unlock(&vfsmount_lock); |
1818 | chroot_fs_refs(&user_nd, &new_nd); | 1822 | chroot_fs_refs(&user_nd, &new_nd); |
1819 | security_sb_post_pivotroot(&user_nd, &new_nd); | 1823 | security_sb_post_pivotroot(&user_nd, &new_nd); |
1820 | error = 0; | 1824 | error = 0; |
1821 | path_release(&root_parent); | 1825 | path_put(&root_parent.path); |
1822 | path_release(&parent_nd); | 1826 | path_put(&parent_nd.path); |
1823 | out2: | 1827 | out2: |
1824 | mutex_unlock(&old_nd.dentry->d_inode->i_mutex); | 1828 | mutex_unlock(&old_nd.path.dentry->d_inode->i_mutex); |
1825 | up_write(&namespace_sem); | 1829 | up_write(&namespace_sem); |
1826 | path_release(&user_nd); | 1830 | path_put(&user_nd.path); |
1827 | path_release(&old_nd); | 1831 | path_put(&old_nd.path); |
1828 | out1: | 1832 | out1: |
1829 | path_release(&new_nd); | 1833 | path_put(&new_nd.path); |
1830 | out0: | 1834 | out0: |
1831 | unlock_kernel(); | 1835 | unlock_kernel(); |
1832 | return error; | 1836 | return error; |
@@ -1839,6 +1843,7 @@ static void __init init_mount_tree(void) | |||
1839 | { | 1843 | { |
1840 | struct vfsmount *mnt; | 1844 | struct vfsmount *mnt; |
1841 | struct mnt_namespace *ns; | 1845 | struct mnt_namespace *ns; |
1846 | struct path root; | ||
1842 | 1847 | ||
1843 | mnt = do_kern_mount("rootfs", 0, "rootfs", NULL); | 1848 | mnt = do_kern_mount("rootfs", 0, "rootfs", NULL); |
1844 | if (IS_ERR(mnt)) | 1849 | if (IS_ERR(mnt)) |
@@ -1857,8 +1862,11 @@ static void __init init_mount_tree(void) | |||
1857 | init_task.nsproxy->mnt_ns = ns; | 1862 | init_task.nsproxy->mnt_ns = ns; |
1858 | get_mnt_ns(ns); | 1863 | get_mnt_ns(ns); |
1859 | 1864 | ||
1860 | set_fs_pwd(current->fs, ns->root, ns->root->mnt_root); | 1865 | root.mnt = ns->root; |
1861 | set_fs_root(current->fs, ns->root, ns->root->mnt_root); | 1866 | root.dentry = ns->root->mnt_root; |
1867 | |||
1868 | set_fs_pwd(current->fs, &root); | ||
1869 | set_fs_root(current->fs, &root); | ||
1862 | } | 1870 | } |
1863 | 1871 | ||
1864 | void __init mnt_init(void) | 1872 | void __init mnt_init(void) |
diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index be4ce1c3a3d8..607f6eb9cdb5 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c | |||
@@ -107,38 +107,40 @@ static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd) | |||
107 | 107 | ||
108 | BUG_ON(IS_ROOT(dentry)); | 108 | BUG_ON(IS_ROOT(dentry)); |
109 | dprintk("%s: enter\n", __FUNCTION__); | 109 | dprintk("%s: enter\n", __FUNCTION__); |
110 | dput(nd->dentry); | 110 | dput(nd->path.dentry); |
111 | nd->dentry = dget(dentry); | 111 | nd->path.dentry = dget(dentry); |
112 | 112 | ||
113 | /* Look it up again */ | 113 | /* Look it up again */ |
114 | parent = dget_parent(nd->dentry); | 114 | parent = dget_parent(nd->path.dentry); |
115 | err = server->nfs_client->rpc_ops->lookup(parent->d_inode, | 115 | err = server->nfs_client->rpc_ops->lookup(parent->d_inode, |
116 | &nd->dentry->d_name, | 116 | &nd->path.dentry->d_name, |
117 | &fh, &fattr); | 117 | &fh, &fattr); |
118 | dput(parent); | 118 | dput(parent); |
119 | if (err != 0) | 119 | if (err != 0) |
120 | goto out_err; | 120 | goto out_err; |
121 | 121 | ||
122 | if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL) | 122 | if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL) |
123 | mnt = nfs_do_refmount(nd->mnt, nd->dentry); | 123 | mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry); |
124 | else | 124 | else |
125 | mnt = nfs_do_submount(nd->mnt, nd->dentry, &fh, &fattr); | 125 | mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, &fh, |
126 | &fattr); | ||
126 | err = PTR_ERR(mnt); | 127 | err = PTR_ERR(mnt); |
127 | if (IS_ERR(mnt)) | 128 | if (IS_ERR(mnt)) |
128 | goto out_err; | 129 | goto out_err; |
129 | 130 | ||
130 | mntget(mnt); | 131 | mntget(mnt); |
131 | err = do_add_mount(mnt, nd, nd->mnt->mnt_flags|MNT_SHRINKABLE, &nfs_automount_list); | 132 | err = do_add_mount(mnt, nd, nd->path.mnt->mnt_flags|MNT_SHRINKABLE, |
133 | &nfs_automount_list); | ||
132 | if (err < 0) { | 134 | if (err < 0) { |
133 | mntput(mnt); | 135 | mntput(mnt); |
134 | if (err == -EBUSY) | 136 | if (err == -EBUSY) |
135 | goto out_follow; | 137 | goto out_follow; |
136 | goto out_err; | 138 | goto out_err; |
137 | } | 139 | } |
138 | mntput(nd->mnt); | 140 | mntput(nd->path.mnt); |
139 | dput(nd->dentry); | 141 | dput(nd->path.dentry); |
140 | nd->mnt = mnt; | 142 | nd->path.mnt = mnt; |
141 | nd->dentry = dget(mnt->mnt_root); | 143 | nd->path.dentry = dget(mnt->mnt_root); |
142 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); | 144 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); |
143 | out: | 145 | out: |
144 | dprintk("%s: done, returned %d\n", __FUNCTION__, err); | 146 | dprintk("%s: done, returned %d\n", __FUNCTION__, err); |
@@ -146,10 +148,11 @@ out: | |||
146 | dprintk("<-- nfs_follow_mountpoint() = %d\n", err); | 148 | dprintk("<-- nfs_follow_mountpoint() = %d\n", err); |
147 | return ERR_PTR(err); | 149 | return ERR_PTR(err); |
148 | out_err: | 150 | out_err: |
149 | path_release(nd); | 151 | path_put(&nd->path); |
150 | goto out; | 152 | goto out; |
151 | out_follow: | 153 | out_follow: |
152 | while(d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry)) | 154 | while (d_mountpoint(nd->path.dentry) && |
155 | follow_down(&nd->path.mnt, &nd->path.dentry)) | ||
153 | ; | 156 | ; |
154 | err = 0; | 157 | err = 0; |
155 | goto out; | 158 | goto out; |
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 027e1095256e..7ce07862c2fb 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -1384,11 +1384,11 @@ out_close: | |||
1384 | struct dentry * | 1384 | struct dentry * |
1385 | nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd) | 1385 | nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd) |
1386 | { | 1386 | { |
1387 | struct dentry *parent; | ||
1388 | struct path path = { | 1387 | struct path path = { |
1389 | .mnt = nd->mnt, | 1388 | .mnt = nd->path.mnt, |
1390 | .dentry = dentry, | 1389 | .dentry = dentry, |
1391 | }; | 1390 | }; |
1391 | struct dentry *parent; | ||
1392 | struct iattr attr; | 1392 | struct iattr attr; |
1393 | struct rpc_cred *cred; | 1393 | struct rpc_cred *cred; |
1394 | struct nfs4_state *state; | 1394 | struct nfs4_state *state; |
@@ -1433,7 +1433,7 @@ int | |||
1433 | nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd) | 1433 | nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, struct nameidata *nd) |
1434 | { | 1434 | { |
1435 | struct path path = { | 1435 | struct path path = { |
1436 | .mnt = nd->mnt, | 1436 | .mnt = nd->path.mnt, |
1437 | .dentry = dentry, | 1437 | .dentry = dentry, |
1438 | }; | 1438 | }; |
1439 | struct rpc_cred *cred; | 1439 | struct rpc_cred *cred; |
@@ -1885,7 +1885,7 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, | |||
1885 | int flags, struct nameidata *nd) | 1885 | int flags, struct nameidata *nd) |
1886 | { | 1886 | { |
1887 | struct path path = { | 1887 | struct path path = { |
1888 | .mnt = nd->mnt, | 1888 | .mnt = nd->path.mnt, |
1889 | .dentry = dentry, | 1889 | .dentry = dentry, |
1890 | }; | 1890 | }; |
1891 | struct nfs4_state *state; | 1891 | struct nfs4_state *state; |
diff --git a/fs/nfsctl.c b/fs/nfsctl.c index 51f1b31acbf6..aed8145d9087 100644 --- a/fs/nfsctl.c +++ b/fs/nfsctl.c | |||
@@ -41,9 +41,9 @@ static struct file *do_open(char *name, int flags) | |||
41 | error = may_open(&nd, MAY_WRITE, FMODE_WRITE); | 41 | error = may_open(&nd, MAY_WRITE, FMODE_WRITE); |
42 | 42 | ||
43 | if (!error) | 43 | if (!error) |
44 | return dentry_open(nd.dentry, nd.mnt, flags); | 44 | return dentry_open(nd.path.dentry, nd.path.mnt, flags); |
45 | 45 | ||
46 | path_release(&nd); | 46 | path_put(&nd.path); |
47 | return ERR_PTR(error); | 47 | return ERR_PTR(error); |
48 | } | 48 | } |
49 | 49 | ||
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 346570f6d848..8a6f7c924c75 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c | |||
@@ -63,10 +63,8 @@ static void expkey_put(struct kref *ref) | |||
63 | struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref); | 63 | struct svc_expkey *key = container_of(ref, struct svc_expkey, h.ref); |
64 | 64 | ||
65 | if (test_bit(CACHE_VALID, &key->h.flags) && | 65 | if (test_bit(CACHE_VALID, &key->h.flags) && |
66 | !test_bit(CACHE_NEGATIVE, &key->h.flags)) { | 66 | !test_bit(CACHE_NEGATIVE, &key->h.flags)) |
67 | dput(key->ek_dentry); | 67 | path_put(&key->ek_path); |
68 | mntput(key->ek_mnt); | ||
69 | } | ||
70 | auth_domain_put(key->ek_client); | 68 | auth_domain_put(key->ek_client); |
71 | kfree(key); | 69 | kfree(key); |
72 | } | 70 | } |
@@ -169,15 +167,14 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
169 | goto out; | 167 | goto out; |
170 | 168 | ||
171 | dprintk("Found the path %s\n", buf); | 169 | dprintk("Found the path %s\n", buf); |
172 | key.ek_mnt = nd.mnt; | 170 | key.ek_path = nd.path; |
173 | key.ek_dentry = nd.dentry; | 171 | |
174 | |||
175 | ek = svc_expkey_update(&key, ek); | 172 | ek = svc_expkey_update(&key, ek); |
176 | if (ek) | 173 | if (ek) |
177 | cache_put(&ek->h, &svc_expkey_cache); | 174 | cache_put(&ek->h, &svc_expkey_cache); |
178 | else | 175 | else |
179 | err = -ENOMEM; | 176 | err = -ENOMEM; |
180 | path_release(&nd); | 177 | path_put(&nd.path); |
181 | } | 178 | } |
182 | cache_flush(); | 179 | cache_flush(); |
183 | out: | 180 | out: |
@@ -206,7 +203,7 @@ static int expkey_show(struct seq_file *m, | |||
206 | if (test_bit(CACHE_VALID, &h->flags) && | 203 | if (test_bit(CACHE_VALID, &h->flags) && |
207 | !test_bit(CACHE_NEGATIVE, &h->flags)) { | 204 | !test_bit(CACHE_NEGATIVE, &h->flags)) { |
208 | seq_printf(m, " "); | 205 | seq_printf(m, " "); |
209 | seq_path(m, ek->ek_mnt, ek->ek_dentry, "\\ \t\n"); | 206 | seq_path(m, &ek->ek_path, "\\ \t\n"); |
210 | } | 207 | } |
211 | seq_printf(m, "\n"); | 208 | seq_printf(m, "\n"); |
212 | return 0; | 209 | return 0; |
@@ -243,8 +240,8 @@ static inline void expkey_update(struct cache_head *cnew, | |||
243 | struct svc_expkey *new = container_of(cnew, struct svc_expkey, h); | 240 | struct svc_expkey *new = container_of(cnew, struct svc_expkey, h); |
244 | struct svc_expkey *item = container_of(citem, struct svc_expkey, h); | 241 | struct svc_expkey *item = container_of(citem, struct svc_expkey, h); |
245 | 242 | ||
246 | new->ek_mnt = mntget(item->ek_mnt); | 243 | new->ek_path = item->ek_path; |
247 | new->ek_dentry = dget(item->ek_dentry); | 244 | path_get(&item->ek_path); |
248 | } | 245 | } |
249 | 246 | ||
250 | static struct cache_head *expkey_alloc(void) | 247 | static struct cache_head *expkey_alloc(void) |
@@ -332,10 +329,9 @@ static void nfsd4_fslocs_free(struct nfsd4_fs_locations *fsloc) | |||
332 | static void svc_export_put(struct kref *ref) | 329 | static void svc_export_put(struct kref *ref) |
333 | { | 330 | { |
334 | struct svc_export *exp = container_of(ref, struct svc_export, h.ref); | 331 | struct svc_export *exp = container_of(ref, struct svc_export, h.ref); |
335 | dput(exp->ex_dentry); | 332 | path_put(&exp->ex_path); |
336 | mntput(exp->ex_mnt); | ||
337 | auth_domain_put(exp->ex_client); | 333 | auth_domain_put(exp->ex_client); |
338 | kfree(exp->ex_path); | 334 | kfree(exp->ex_pathname); |
339 | nfsd4_fslocs_free(&exp->ex_fslocs); | 335 | nfsd4_fslocs_free(&exp->ex_fslocs); |
340 | kfree(exp); | 336 | kfree(exp); |
341 | } | 337 | } |
@@ -349,7 +345,7 @@ static void svc_export_request(struct cache_detail *cd, | |||
349 | char *pth; | 345 | char *pth; |
350 | 346 | ||
351 | qword_add(bpp, blen, exp->ex_client->name); | 347 | qword_add(bpp, blen, exp->ex_client->name); |
352 | pth = d_path(exp->ex_dentry, exp->ex_mnt, *bpp, *blen); | 348 | pth = d_path(&exp->ex_path, *bpp, *blen); |
353 | if (IS_ERR(pth)) { | 349 | if (IS_ERR(pth)) { |
354 | /* is this correct? */ | 350 | /* is this correct? */ |
355 | (*bpp)[0] = '\n'; | 351 | (*bpp)[0] = '\n'; |
@@ -507,8 +503,8 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
507 | struct svc_export exp, *expp; | 503 | struct svc_export exp, *expp; |
508 | int an_int; | 504 | int an_int; |
509 | 505 | ||
510 | nd.dentry = NULL; | 506 | nd.path.dentry = NULL; |
511 | exp.ex_path = NULL; | 507 | exp.ex_pathname = NULL; |
512 | 508 | ||
513 | /* fs locations */ | 509 | /* fs locations */ |
514 | exp.ex_fslocs.locations = NULL; | 510 | exp.ex_fslocs.locations = NULL; |
@@ -547,11 +543,11 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
547 | 543 | ||
548 | exp.h.flags = 0; | 544 | exp.h.flags = 0; |
549 | exp.ex_client = dom; | 545 | exp.ex_client = dom; |
550 | exp.ex_mnt = nd.mnt; | 546 | exp.ex_path.mnt = nd.path.mnt; |
551 | exp.ex_dentry = nd.dentry; | 547 | exp.ex_path.dentry = nd.path.dentry; |
552 | exp.ex_path = kstrdup(buf, GFP_KERNEL); | 548 | exp.ex_pathname = kstrdup(buf, GFP_KERNEL); |
553 | err = -ENOMEM; | 549 | err = -ENOMEM; |
554 | if (!exp.ex_path) | 550 | if (!exp.ex_pathname) |
555 | goto out; | 551 | goto out; |
556 | 552 | ||
557 | /* expiry */ | 553 | /* expiry */ |
@@ -610,7 +606,7 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
610 | goto out; | 606 | goto out; |
611 | } | 607 | } |
612 | 608 | ||
613 | err = check_export(nd.dentry->d_inode, exp.ex_flags, | 609 | err = check_export(nd.path.dentry->d_inode, exp.ex_flags, |
614 | exp.ex_uuid); | 610 | exp.ex_uuid); |
615 | if (err) goto out; | 611 | if (err) goto out; |
616 | } | 612 | } |
@@ -628,9 +624,9 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) | |||
628 | out: | 624 | out: |
629 | nfsd4_fslocs_free(&exp.ex_fslocs); | 625 | nfsd4_fslocs_free(&exp.ex_fslocs); |
630 | kfree(exp.ex_uuid); | 626 | kfree(exp.ex_uuid); |
631 | kfree(exp.ex_path); | 627 | kfree(exp.ex_pathname); |
632 | if (nd.dentry) | 628 | if (nd.path.dentry) |
633 | path_release(&nd); | 629 | path_put(&nd.path); |
634 | out_no_path: | 630 | out_no_path: |
635 | if (dom) | 631 | if (dom) |
636 | auth_domain_put(dom); | 632 | auth_domain_put(dom); |
@@ -653,7 +649,7 @@ static int svc_export_show(struct seq_file *m, | |||
653 | return 0; | 649 | return 0; |
654 | } | 650 | } |
655 | exp = container_of(h, struct svc_export, h); | 651 | exp = container_of(h, struct svc_export, h); |
656 | seq_path(m, exp->ex_mnt, exp->ex_dentry, " \t\n\\"); | 652 | seq_path(m, &exp->ex_path, " \t\n\\"); |
657 | seq_putc(m, '\t'); | 653 | seq_putc(m, '\t'); |
658 | seq_escape(m, exp->ex_client->name, " \t\n\\"); | 654 | seq_escape(m, exp->ex_client->name, " \t\n\\"); |
659 | seq_putc(m, '('); | 655 | seq_putc(m, '('); |
@@ -680,8 +676,8 @@ static int svc_export_match(struct cache_head *a, struct cache_head *b) | |||
680 | struct svc_export *orig = container_of(a, struct svc_export, h); | 676 | struct svc_export *orig = container_of(a, struct svc_export, h); |
681 | struct svc_export *new = container_of(b, struct svc_export, h); | 677 | struct svc_export *new = container_of(b, struct svc_export, h); |
682 | return orig->ex_client == new->ex_client && | 678 | return orig->ex_client == new->ex_client && |
683 | orig->ex_dentry == new->ex_dentry && | 679 | orig->ex_path.dentry == new->ex_path.dentry && |
684 | orig->ex_mnt == new->ex_mnt; | 680 | orig->ex_path.mnt == new->ex_path.mnt; |
685 | } | 681 | } |
686 | 682 | ||
687 | static void svc_export_init(struct cache_head *cnew, struct cache_head *citem) | 683 | static void svc_export_init(struct cache_head *cnew, struct cache_head *citem) |
@@ -691,9 +687,9 @@ static void svc_export_init(struct cache_head *cnew, struct cache_head *citem) | |||
691 | 687 | ||
692 | kref_get(&item->ex_client->ref); | 688 | kref_get(&item->ex_client->ref); |
693 | new->ex_client = item->ex_client; | 689 | new->ex_client = item->ex_client; |
694 | new->ex_dentry = dget(item->ex_dentry); | 690 | new->ex_path.dentry = dget(item->ex_path.dentry); |
695 | new->ex_mnt = mntget(item->ex_mnt); | 691 | new->ex_path.mnt = mntget(item->ex_path.mnt); |
696 | new->ex_path = NULL; | 692 | new->ex_pathname = NULL; |
697 | new->ex_fslocs.locations = NULL; | 693 | new->ex_fslocs.locations = NULL; |
698 | new->ex_fslocs.locations_count = 0; | 694 | new->ex_fslocs.locations_count = 0; |
699 | new->ex_fslocs.migrated = 0; | 695 | new->ex_fslocs.migrated = 0; |
@@ -711,8 +707,8 @@ static void export_update(struct cache_head *cnew, struct cache_head *citem) | |||
711 | new->ex_fsid = item->ex_fsid; | 707 | new->ex_fsid = item->ex_fsid; |
712 | new->ex_uuid = item->ex_uuid; | 708 | new->ex_uuid = item->ex_uuid; |
713 | item->ex_uuid = NULL; | 709 | item->ex_uuid = NULL; |
714 | new->ex_path = item->ex_path; | 710 | new->ex_pathname = item->ex_pathname; |
715 | item->ex_path = NULL; | 711 | item->ex_pathname = NULL; |
716 | new->ex_fslocs.locations = item->ex_fslocs.locations; | 712 | new->ex_fslocs.locations = item->ex_fslocs.locations; |
717 | item->ex_fslocs.locations = NULL; | 713 | item->ex_fslocs.locations = NULL; |
718 | new->ex_fslocs.locations_count = item->ex_fslocs.locations_count; | 714 | new->ex_fslocs.locations_count = item->ex_fslocs.locations_count; |
@@ -755,8 +751,8 @@ svc_export_lookup(struct svc_export *exp) | |||
755 | struct cache_head *ch; | 751 | struct cache_head *ch; |
756 | int hash; | 752 | int hash; |
757 | hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS); | 753 | hash = hash_ptr(exp->ex_client, EXPORT_HASHBITS); |
758 | hash ^= hash_ptr(exp->ex_dentry, EXPORT_HASHBITS); | 754 | hash ^= hash_ptr(exp->ex_path.dentry, EXPORT_HASHBITS); |
759 | hash ^= hash_ptr(exp->ex_mnt, EXPORT_HASHBITS); | 755 | hash ^= hash_ptr(exp->ex_path.mnt, EXPORT_HASHBITS); |
760 | 756 | ||
761 | ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h, | 757 | ch = sunrpc_cache_lookup(&svc_export_cache, &exp->h, |
762 | hash); | 758 | hash); |
@@ -772,8 +768,8 @@ svc_export_update(struct svc_export *new, struct svc_export *old) | |||
772 | struct cache_head *ch; | 768 | struct cache_head *ch; |
773 | int hash; | 769 | int hash; |
774 | hash = hash_ptr(old->ex_client, EXPORT_HASHBITS); | 770 | hash = hash_ptr(old->ex_client, EXPORT_HASHBITS); |
775 | hash ^= hash_ptr(old->ex_dentry, EXPORT_HASHBITS); | 771 | hash ^= hash_ptr(old->ex_path.dentry, EXPORT_HASHBITS); |
776 | hash ^= hash_ptr(old->ex_mnt, EXPORT_HASHBITS); | 772 | hash ^= hash_ptr(old->ex_path.mnt, EXPORT_HASHBITS); |
777 | 773 | ||
778 | ch = sunrpc_cache_update(&svc_export_cache, &new->h, | 774 | ch = sunrpc_cache_update(&svc_export_cache, &new->h, |
779 | &old->h, | 775 | &old->h, |
@@ -815,8 +811,7 @@ static int exp_set_key(svc_client *clp, int fsid_type, u32 *fsidv, | |||
815 | key.ek_client = clp; | 811 | key.ek_client = clp; |
816 | key.ek_fsidtype = fsid_type; | 812 | key.ek_fsidtype = fsid_type; |
817 | memcpy(key.ek_fsid, fsidv, key_len(fsid_type)); | 813 | memcpy(key.ek_fsid, fsidv, key_len(fsid_type)); |
818 | key.ek_mnt = exp->ex_mnt; | 814 | key.ek_path = exp->ex_path; |
819 | key.ek_dentry = exp->ex_dentry; | ||
820 | key.h.expiry_time = NEVER; | 815 | key.h.expiry_time = NEVER; |
821 | key.h.flags = 0; | 816 | key.h.flags = 0; |
822 | 817 | ||
@@ -865,13 +860,13 @@ static svc_export *exp_get_by_name(svc_client *clp, struct vfsmount *mnt, | |||
865 | { | 860 | { |
866 | struct svc_export *exp, key; | 861 | struct svc_export *exp, key; |
867 | int err; | 862 | int err; |
868 | 863 | ||
869 | if (!clp) | 864 | if (!clp) |
870 | return ERR_PTR(-ENOENT); | 865 | return ERR_PTR(-ENOENT); |
871 | 866 | ||
872 | key.ex_client = clp; | 867 | key.ex_client = clp; |
873 | key.ex_mnt = mnt; | 868 | key.ex_path.mnt = mnt; |
874 | key.ex_dentry = dentry; | 869 | key.ex_path.dentry = dentry; |
875 | 870 | ||
876 | exp = svc_export_lookup(&key); | 871 | exp = svc_export_lookup(&key); |
877 | if (exp == NULL) | 872 | if (exp == NULL) |
@@ -968,7 +963,7 @@ static int exp_fsid_hash(svc_client *clp, struct svc_export *exp) | |||
968 | static int exp_hash(struct auth_domain *clp, struct svc_export *exp) | 963 | static int exp_hash(struct auth_domain *clp, struct svc_export *exp) |
969 | { | 964 | { |
970 | u32 fsid[2]; | 965 | u32 fsid[2]; |
971 | struct inode *inode = exp->ex_dentry->d_inode; | 966 | struct inode *inode = exp->ex_path.dentry->d_inode; |
972 | dev_t dev = inode->i_sb->s_dev; | 967 | dev_t dev = inode->i_sb->s_dev; |
973 | 968 | ||
974 | if (old_valid_dev(dev)) { | 969 | if (old_valid_dev(dev)) { |
@@ -982,7 +977,7 @@ static int exp_hash(struct auth_domain *clp, struct svc_export *exp) | |||
982 | static void exp_unhash(struct svc_export *exp) | 977 | static void exp_unhash(struct svc_export *exp) |
983 | { | 978 | { |
984 | struct svc_expkey *ek; | 979 | struct svc_expkey *ek; |
985 | struct inode *inode = exp->ex_dentry->d_inode; | 980 | struct inode *inode = exp->ex_path.dentry->d_inode; |
986 | 981 | ||
987 | ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino); | 982 | ek = exp_get_key(exp->ex_client, inode->i_sb->s_dev, inode->i_ino); |
988 | if (!IS_ERR(ek)) { | 983 | if (!IS_ERR(ek)) { |
@@ -1030,15 +1025,16 @@ exp_export(struct nfsctl_export *nxp) | |||
1030 | goto out_unlock; | 1025 | goto out_unlock; |
1031 | err = -EINVAL; | 1026 | err = -EINVAL; |
1032 | 1027 | ||
1033 | exp = exp_get_by_name(clp, nd.mnt, nd.dentry, NULL); | 1028 | exp = exp_get_by_name(clp, nd.path.mnt, nd.path.dentry, NULL); |
1034 | 1029 | ||
1035 | memset(&new, 0, sizeof(new)); | 1030 | memset(&new, 0, sizeof(new)); |
1036 | 1031 | ||
1037 | /* must make sure there won't be an ex_fsid clash */ | 1032 | /* must make sure there won't be an ex_fsid clash */ |
1038 | if ((nxp->ex_flags & NFSEXP_FSID) && | 1033 | if ((nxp->ex_flags & NFSEXP_FSID) && |
1039 | (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) && | 1034 | (!IS_ERR(fsid_key = exp_get_fsid_key(clp, nxp->ex_dev))) && |
1040 | fsid_key->ek_mnt && | 1035 | fsid_key->ek_path.mnt && |
1041 | (fsid_key->ek_mnt != nd.mnt || fsid_key->ek_dentry != nd.dentry) ) | 1036 | (fsid_key->ek_path.mnt != nd.path.mnt || |
1037 | fsid_key->ek_path.dentry != nd.path.dentry)) | ||
1042 | goto finish; | 1038 | goto finish; |
1043 | 1039 | ||
1044 | if (!IS_ERR(exp)) { | 1040 | if (!IS_ERR(exp)) { |
@@ -1054,7 +1050,7 @@ exp_export(struct nfsctl_export *nxp) | |||
1054 | goto finish; | 1050 | goto finish; |
1055 | } | 1051 | } |
1056 | 1052 | ||
1057 | err = check_export(nd.dentry->d_inode, nxp->ex_flags, NULL); | 1053 | err = check_export(nd.path.dentry->d_inode, nxp->ex_flags, NULL); |
1058 | if (err) goto finish; | 1054 | if (err) goto finish; |
1059 | 1055 | ||
1060 | err = -ENOMEM; | 1056 | err = -ENOMEM; |
@@ -1063,12 +1059,11 @@ exp_export(struct nfsctl_export *nxp) | |||
1063 | 1059 | ||
1064 | new.h.expiry_time = NEVER; | 1060 | new.h.expiry_time = NEVER; |
1065 | new.h.flags = 0; | 1061 | new.h.flags = 0; |
1066 | new.ex_path = kstrdup(nxp->ex_path, GFP_KERNEL); | 1062 | new.ex_pathname = kstrdup(nxp->ex_path, GFP_KERNEL); |
1067 | if (!new.ex_path) | 1063 | if (!new.ex_pathname) |
1068 | goto finish; | 1064 | goto finish; |
1069 | new.ex_client = clp; | 1065 | new.ex_client = clp; |
1070 | new.ex_mnt = nd.mnt; | 1066 | new.ex_path = nd.path; |
1071 | new.ex_dentry = nd.dentry; | ||
1072 | new.ex_flags = nxp->ex_flags; | 1067 | new.ex_flags = nxp->ex_flags; |
1073 | new.ex_anon_uid = nxp->ex_anon_uid; | 1068 | new.ex_anon_uid = nxp->ex_anon_uid; |
1074 | new.ex_anon_gid = nxp->ex_anon_gid; | 1069 | new.ex_anon_gid = nxp->ex_anon_gid; |
@@ -1089,15 +1084,14 @@ exp_export(struct nfsctl_export *nxp) | |||
1089 | } else | 1084 | } else |
1090 | err = 0; | 1085 | err = 0; |
1091 | finish: | 1086 | finish: |
1092 | if (new.ex_path) | 1087 | kfree(new.ex_pathname); |
1093 | kfree(new.ex_path); | ||
1094 | if (exp) | 1088 | if (exp) |
1095 | exp_put(exp); | 1089 | exp_put(exp); |
1096 | if (fsid_key && !IS_ERR(fsid_key)) | 1090 | if (fsid_key && !IS_ERR(fsid_key)) |
1097 | cache_put(&fsid_key->h, &svc_expkey_cache); | 1091 | cache_put(&fsid_key->h, &svc_expkey_cache); |
1098 | if (clp) | 1092 | if (clp) |
1099 | auth_domain_put(clp); | 1093 | auth_domain_put(clp); |
1100 | path_release(&nd); | 1094 | path_put(&nd.path); |
1101 | out_unlock: | 1095 | out_unlock: |
1102 | exp_writeunlock(); | 1096 | exp_writeunlock(); |
1103 | out: | 1097 | out: |
@@ -1148,8 +1142,8 @@ exp_unexport(struct nfsctl_export *nxp) | |||
1148 | goto out_domain; | 1142 | goto out_domain; |
1149 | 1143 | ||
1150 | err = -EINVAL; | 1144 | err = -EINVAL; |
1151 | exp = exp_get_by_name(dom, nd.mnt, nd.dentry, NULL); | 1145 | exp = exp_get_by_name(dom, nd.path.mnt, nd.path.dentry, NULL); |
1152 | path_release(&nd); | 1146 | path_put(&nd.path); |
1153 | if (IS_ERR(exp)) | 1147 | if (IS_ERR(exp)) |
1154 | goto out_domain; | 1148 | goto out_domain; |
1155 | 1149 | ||
@@ -1185,12 +1179,12 @@ exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | |||
1185 | printk("nfsd: exp_rootfh path not found %s", path); | 1179 | printk("nfsd: exp_rootfh path not found %s", path); |
1186 | return err; | 1180 | return err; |
1187 | } | 1181 | } |
1188 | inode = nd.dentry->d_inode; | 1182 | inode = nd.path.dentry->d_inode; |
1189 | 1183 | ||
1190 | dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n", | 1184 | dprintk("nfsd: exp_rootfh(%s [%p] %s:%s/%ld)\n", |
1191 | path, nd.dentry, clp->name, | 1185 | path, nd.path.dentry, clp->name, |
1192 | inode->i_sb->s_id, inode->i_ino); | 1186 | inode->i_sb->s_id, inode->i_ino); |
1193 | exp = exp_parent(clp, nd.mnt, nd.dentry, NULL); | 1187 | exp = exp_parent(clp, nd.path.mnt, nd.path.dentry, NULL); |
1194 | if (IS_ERR(exp)) { | 1188 | if (IS_ERR(exp)) { |
1195 | err = PTR_ERR(exp); | 1189 | err = PTR_ERR(exp); |
1196 | goto out; | 1190 | goto out; |
@@ -1200,7 +1194,7 @@ exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | |||
1200 | * fh must be initialized before calling fh_compose | 1194 | * fh must be initialized before calling fh_compose |
1201 | */ | 1195 | */ |
1202 | fh_init(&fh, maxsize); | 1196 | fh_init(&fh, maxsize); |
1203 | if (fh_compose(&fh, exp, nd.dentry, NULL)) | 1197 | if (fh_compose(&fh, exp, nd.path.dentry, NULL)) |
1204 | err = -EINVAL; | 1198 | err = -EINVAL; |
1205 | else | 1199 | else |
1206 | err = 0; | 1200 | err = 0; |
@@ -1208,7 +1202,7 @@ exp_rootfh(svc_client *clp, char *path, struct knfsd_fh *f, int maxsize) | |||
1208 | fh_put(&fh); | 1202 | fh_put(&fh); |
1209 | exp_put(exp); | 1203 | exp_put(exp); |
1210 | out: | 1204 | out: |
1211 | path_release(&nd); | 1205 | path_put(&nd.path); |
1212 | return err; | 1206 | return err; |
1213 | } | 1207 | } |
1214 | 1208 | ||
@@ -1220,7 +1214,7 @@ static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type, | |||
1220 | if (IS_ERR(ek)) | 1214 | if (IS_ERR(ek)) |
1221 | return ERR_CAST(ek); | 1215 | return ERR_CAST(ek); |
1222 | 1216 | ||
1223 | exp = exp_get_by_name(clp, ek->ek_mnt, ek->ek_dentry, reqp); | 1217 | exp = exp_get_by_name(clp, ek->ek_path.mnt, ek->ek_path.dentry, reqp); |
1224 | cache_put(&ek->h, &svc_expkey_cache); | 1218 | cache_put(&ek->h, &svc_expkey_cache); |
1225 | 1219 | ||
1226 | if (IS_ERR(exp)) | 1220 | if (IS_ERR(exp)) |
@@ -1359,7 +1353,7 @@ exp_pseudoroot(struct svc_rqst *rqstp, struct svc_fh *fhp) | |||
1359 | exp = rqst_exp_find(rqstp, FSID_NUM, fsidv); | 1353 | exp = rqst_exp_find(rqstp, FSID_NUM, fsidv); |
1360 | if (IS_ERR(exp)) | 1354 | if (IS_ERR(exp)) |
1361 | return nfserrno(PTR_ERR(exp)); | 1355 | return nfserrno(PTR_ERR(exp)); |
1362 | rv = fh_compose(fhp, exp, exp->ex_dentry, NULL); | 1356 | rv = fh_compose(fhp, exp, exp->ex_path.dentry, NULL); |
1363 | if (rv) | 1357 | if (rv) |
1364 | goto out; | 1358 | goto out; |
1365 | rv = check_nfsd_access(exp, rqstp); | 1359 | rv = check_nfsd_access(exp, rqstp); |
diff --git a/fs/nfsd/nfs3proc.c b/fs/nfsd/nfs3proc.c index eac82830bfd7..c721a1e6e9dd 100644 --- a/fs/nfsd/nfs3proc.c +++ b/fs/nfsd/nfs3proc.c | |||
@@ -67,7 +67,7 @@ nfsd3_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle *argp, | |||
67 | if (nfserr) | 67 | if (nfserr) |
68 | RETURN_STATUS(nfserr); | 68 | RETURN_STATUS(nfserr); |
69 | 69 | ||
70 | err = vfs_getattr(resp->fh.fh_export->ex_mnt, | 70 | err = vfs_getattr(resp->fh.fh_export->ex_path.mnt, |
71 | resp->fh.fh_dentry, &resp->stat); | 71 | resp->fh.fh_dentry, &resp->stat); |
72 | nfserr = nfserrno(err); | 72 | nfserr = nfserrno(err); |
73 | 73 | ||
diff --git a/fs/nfsd/nfs3xdr.c b/fs/nfsd/nfs3xdr.c index d7647f70e02b..17d0dd997204 100644 --- a/fs/nfsd/nfs3xdr.c +++ b/fs/nfsd/nfs3xdr.c | |||
@@ -218,7 +218,7 @@ encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp) | |||
218 | int err; | 218 | int err; |
219 | struct kstat stat; | 219 | struct kstat stat; |
220 | 220 | ||
221 | err = vfs_getattr(fhp->fh_export->ex_mnt, dentry, &stat); | 221 | err = vfs_getattr(fhp->fh_export->ex_path.mnt, dentry, &stat); |
222 | if (!err) { | 222 | if (!err) { |
223 | *p++ = xdr_one; /* attributes follow */ | 223 | *p++ = xdr_one; /* attributes follow */ |
224 | lease_get_mtime(dentry->d_inode, &stat.mtime); | 224 | lease_get_mtime(dentry->d_inode, &stat.mtime); |
@@ -270,7 +270,7 @@ void fill_post_wcc(struct svc_fh *fhp) | |||
270 | if (fhp->fh_post_saved) | 270 | if (fhp->fh_post_saved) |
271 | printk("nfsd: inode locked twice during operation.\n"); | 271 | printk("nfsd: inode locked twice during operation.\n"); |
272 | 272 | ||
273 | err = vfs_getattr(fhp->fh_export->ex_mnt, fhp->fh_dentry, | 273 | err = vfs_getattr(fhp->fh_export->ex_path.mnt, fhp->fh_dentry, |
274 | &fhp->fh_post_attr); | 274 | &fhp->fh_post_attr); |
275 | if (err) | 275 | if (err) |
276 | fhp->fh_post_saved = 0; | 276 | fhp->fh_post_saved = 0; |
diff --git a/fs/nfsd/nfs4recover.c b/fs/nfsd/nfs4recover.c index 1602cd00dd45..1ff90625860f 100644 --- a/fs/nfsd/nfs4recover.c +++ b/fs/nfsd/nfs4recover.c | |||
@@ -120,9 +120,9 @@ out_no_tfm: | |||
120 | static void | 120 | static void |
121 | nfsd4_sync_rec_dir(void) | 121 | nfsd4_sync_rec_dir(void) |
122 | { | 122 | { |
123 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); | 123 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); |
124 | nfsd_sync_dir(rec_dir.dentry); | 124 | nfsd_sync_dir(rec_dir.path.dentry); |
125 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); | 125 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); |
126 | } | 126 | } |
127 | 127 | ||
128 | int | 128 | int |
@@ -142,9 +142,9 @@ nfsd4_create_clid_dir(struct nfs4_client *clp) | |||
142 | nfs4_save_user(&uid, &gid); | 142 | nfs4_save_user(&uid, &gid); |
143 | 143 | ||
144 | /* lock the parent */ | 144 | /* lock the parent */ |
145 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); | 145 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); |
146 | 146 | ||
147 | dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1); | 147 | dentry = lookup_one_len(dname, rec_dir.path.dentry, HEXDIR_LEN-1); |
148 | if (IS_ERR(dentry)) { | 148 | if (IS_ERR(dentry)) { |
149 | status = PTR_ERR(dentry); | 149 | status = PTR_ERR(dentry); |
150 | goto out_unlock; | 150 | goto out_unlock; |
@@ -154,11 +154,11 @@ nfsd4_create_clid_dir(struct nfs4_client *clp) | |||
154 | dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n"); | 154 | dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n"); |
155 | goto out_put; | 155 | goto out_put; |
156 | } | 156 | } |
157 | status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU); | 157 | status = vfs_mkdir(rec_dir.path.dentry->d_inode, dentry, S_IRWXU); |
158 | out_put: | 158 | out_put: |
159 | dput(dentry); | 159 | dput(dentry); |
160 | out_unlock: | 160 | out_unlock: |
161 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); | 161 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); |
162 | if (status == 0) { | 162 | if (status == 0) { |
163 | clp->cl_firststate = 1; | 163 | clp->cl_firststate = 1; |
164 | nfsd4_sync_rec_dir(); | 164 | nfsd4_sync_rec_dir(); |
@@ -221,7 +221,7 @@ nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) | |||
221 | 221 | ||
222 | nfs4_save_user(&uid, &gid); | 222 | nfs4_save_user(&uid, &gid); |
223 | 223 | ||
224 | filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY); | 224 | filp = dentry_open(dget(dir), mntget(rec_dir.path.mnt), O_RDONLY); |
225 | status = PTR_ERR(filp); | 225 | status = PTR_ERR(filp); |
226 | if (IS_ERR(filp)) | 226 | if (IS_ERR(filp)) |
227 | goto out; | 227 | goto out; |
@@ -286,9 +286,9 @@ nfsd4_unlink_clid_dir(char *name, int namlen) | |||
286 | 286 | ||
287 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); | 287 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); |
288 | 288 | ||
289 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); | 289 | mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex); |
290 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); | 290 | dentry = lookup_one_len(name, rec_dir.path.dentry, namlen); |
291 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); | 291 | mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex); |
292 | if (IS_ERR(dentry)) { | 292 | if (IS_ERR(dentry)) { |
293 | status = PTR_ERR(dentry); | 293 | status = PTR_ERR(dentry); |
294 | return status; | 294 | return status; |
@@ -297,7 +297,7 @@ nfsd4_unlink_clid_dir(char *name, int namlen) | |||
297 | if (!dentry->d_inode) | 297 | if (!dentry->d_inode) |
298 | goto out; | 298 | goto out; |
299 | 299 | ||
300 | status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry); | 300 | status = nfsd4_clear_clid_dir(rec_dir.path.dentry, dentry); |
301 | out: | 301 | out: |
302 | dput(dentry); | 302 | dput(dentry); |
303 | return status; | 303 | return status; |
@@ -347,12 +347,12 @@ nfsd4_recdir_purge_old(void) { | |||
347 | 347 | ||
348 | if (!rec_dir_init) | 348 | if (!rec_dir_init) |
349 | return; | 349 | return; |
350 | status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old); | 350 | status = nfsd4_list_rec_dir(rec_dir.path.dentry, purge_old); |
351 | if (status == 0) | 351 | if (status == 0) |
352 | nfsd4_sync_rec_dir(); | 352 | nfsd4_sync_rec_dir(); |
353 | if (status) | 353 | if (status) |
354 | printk("nfsd4: failed to purge old clients from recovery" | 354 | printk("nfsd4: failed to purge old clients from recovery" |
355 | " directory %s\n", rec_dir.dentry->d_name.name); | 355 | " directory %s\n", rec_dir.path.dentry->d_name.name); |
356 | return; | 356 | return; |
357 | } | 357 | } |
358 | 358 | ||
@@ -373,10 +373,10 @@ int | |||
373 | nfsd4_recdir_load(void) { | 373 | nfsd4_recdir_load(void) { |
374 | int status; | 374 | int status; |
375 | 375 | ||
376 | status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir); | 376 | status = nfsd4_list_rec_dir(rec_dir.path.dentry, load_recdir); |
377 | if (status) | 377 | if (status) |
378 | printk("nfsd4: failed loading clients from recovery" | 378 | printk("nfsd4: failed loading clients from recovery" |
379 | " directory %s\n", rec_dir.dentry->d_name.name); | 379 | " directory %s\n", rec_dir.path.dentry->d_name.name); |
380 | return status; | 380 | return status; |
381 | } | 381 | } |
382 | 382 | ||
@@ -415,5 +415,5 @@ nfsd4_shutdown_recdir(void) | |||
415 | if (!rec_dir_init) | 415 | if (!rec_dir_init) |
416 | return; | 416 | return; |
417 | rec_dir_init = 0; | 417 | rec_dir_init = 0; |
418 | path_release(&rec_dir); | 418 | path_put(&rec_dir.path); |
419 | } | 419 | } |
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index f6744bc03dae..bcb97d8e8b8b 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c | |||
@@ -3261,11 +3261,11 @@ nfs4_reset_recoverydir(char *recdir) | |||
3261 | if (status) | 3261 | if (status) |
3262 | return status; | 3262 | return status; |
3263 | status = -ENOTDIR; | 3263 | status = -ENOTDIR; |
3264 | if (S_ISDIR(nd.dentry->d_inode->i_mode)) { | 3264 | if (S_ISDIR(nd.path.dentry->d_inode->i_mode)) { |
3265 | nfs4_set_recdir(recdir); | 3265 | nfs4_set_recdir(recdir); |
3266 | status = 0; | 3266 | status = 0; |
3267 | } | 3267 | } |
3268 | path_release(&nd); | 3268 | path_put(&nd.path); |
3269 | return status; | 3269 | return status; |
3270 | } | 3270 | } |
3271 | 3271 | ||
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index b0592e7c378d..0e6a179eccaf 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c | |||
@@ -1330,9 +1330,9 @@ static char *nfsd4_path(struct svc_rqst *rqstp, struct svc_export *exp, __be32 * | |||
1330 | *stat = exp_pseudoroot(rqstp, &tmp_fh); | 1330 | *stat = exp_pseudoroot(rqstp, &tmp_fh); |
1331 | if (*stat) | 1331 | if (*stat) |
1332 | return NULL; | 1332 | return NULL; |
1333 | rootpath = tmp_fh.fh_export->ex_path; | 1333 | rootpath = tmp_fh.fh_export->ex_pathname; |
1334 | 1334 | ||
1335 | path = exp->ex_path; | 1335 | path = exp->ex_pathname; |
1336 | 1336 | ||
1337 | if (strncmp(path, rootpath, strlen(rootpath))) { | 1337 | if (strncmp(path, rootpath, strlen(rootpath))) { |
1338 | dprintk("nfsd: fs_locations failed;" | 1338 | dprintk("nfsd: fs_locations failed;" |
@@ -1481,7 +1481,7 @@ nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp, | |||
1481 | goto out; | 1481 | goto out; |
1482 | } | 1482 | } |
1483 | 1483 | ||
1484 | err = vfs_getattr(exp->ex_mnt, dentry, &stat); | 1484 | err = vfs_getattr(exp->ex_path.mnt, dentry, &stat); |
1485 | if (err) | 1485 | if (err) |
1486 | goto out_nfserr; | 1486 | goto out_nfserr; |
1487 | if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL | | 1487 | if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL | |
@@ -1838,9 +1838,9 @@ out_acl: | |||
1838 | * and this is the root of a cross-mounted filesystem. | 1838 | * and this is the root of a cross-mounted filesystem. |
1839 | */ | 1839 | */ |
1840 | if (ignore_crossmnt == 0 && | 1840 | if (ignore_crossmnt == 0 && |
1841 | exp->ex_mnt->mnt_root->d_inode == dentry->d_inode) { | 1841 | exp->ex_path.mnt->mnt_root->d_inode == dentry->d_inode) { |
1842 | err = vfs_getattr(exp->ex_mnt->mnt_parent, | 1842 | err = vfs_getattr(exp->ex_path.mnt->mnt_parent, |
1843 | exp->ex_mnt->mnt_mountpoint, &stat); | 1843 | exp->ex_path.mnt->mnt_mountpoint, &stat); |
1844 | if (err) | 1844 | if (err) |
1845 | goto out_nfserr; | 1845 | goto out_nfserr; |
1846 | } | 1846 | } |
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c index 8fbd2dc08a92..0130b345234d 100644 --- a/fs/nfsd/nfsfh.c +++ b/fs/nfsd/nfsfh.c | |||
@@ -47,7 +47,7 @@ static int nfsd_acceptable(void *expv, struct dentry *dentry) | |||
47 | return 1; | 47 | return 1; |
48 | 48 | ||
49 | tdentry = dget(dentry); | 49 | tdentry = dget(dentry); |
50 | while (tdentry != exp->ex_dentry && ! IS_ROOT(tdentry)) { | 50 | while (tdentry != exp->ex_path.dentry && !IS_ROOT(tdentry)) { |
51 | /* make sure parents give x permission to user */ | 51 | /* make sure parents give x permission to user */ |
52 | int err; | 52 | int err; |
53 | parent = dget_parent(tdentry); | 53 | parent = dget_parent(tdentry); |
@@ -59,9 +59,9 @@ static int nfsd_acceptable(void *expv, struct dentry *dentry) | |||
59 | dput(tdentry); | 59 | dput(tdentry); |
60 | tdentry = parent; | 60 | tdentry = parent; |
61 | } | 61 | } |
62 | if (tdentry != exp->ex_dentry) | 62 | if (tdentry != exp->ex_path.dentry) |
63 | dprintk("nfsd_acceptable failed at %p %s\n", tdentry, tdentry->d_name.name); | 63 | dprintk("nfsd_acceptable failed at %p %s\n", tdentry, tdentry->d_name.name); |
64 | rv = (tdentry == exp->ex_dentry); | 64 | rv = (tdentry == exp->ex_path.dentry); |
65 | dput(tdentry); | 65 | dput(tdentry); |
66 | return rv; | 66 | return rv; |
67 | } | 67 | } |
@@ -209,9 +209,9 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) | |||
209 | fileid_type = fh->fh_fileid_type; | 209 | fileid_type = fh->fh_fileid_type; |
210 | 210 | ||
211 | if (fileid_type == FILEID_ROOT) | 211 | if (fileid_type == FILEID_ROOT) |
212 | dentry = dget(exp->ex_dentry); | 212 | dentry = dget(exp->ex_path.dentry); |
213 | else { | 213 | else { |
214 | dentry = exportfs_decode_fh(exp->ex_mnt, fid, | 214 | dentry = exportfs_decode_fh(exp->ex_path.mnt, fid, |
215 | data_left, fileid_type, | 215 | data_left, fileid_type, |
216 | nfsd_acceptable, exp); | 216 | nfsd_acceptable, exp); |
217 | } | 217 | } |
@@ -299,7 +299,7 @@ out: | |||
299 | static void _fh_update(struct svc_fh *fhp, struct svc_export *exp, | 299 | static void _fh_update(struct svc_fh *fhp, struct svc_export *exp, |
300 | struct dentry *dentry) | 300 | struct dentry *dentry) |
301 | { | 301 | { |
302 | if (dentry != exp->ex_dentry) { | 302 | if (dentry != exp->ex_path.dentry) { |
303 | struct fid *fid = (struct fid *) | 303 | struct fid *fid = (struct fid *) |
304 | (fhp->fh_handle.fh_auth + fhp->fh_handle.fh_size/4 - 1); | 304 | (fhp->fh_handle.fh_auth + fhp->fh_handle.fh_size/4 - 1); |
305 | int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4; | 305 | int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4; |
@@ -344,12 +344,12 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, | |||
344 | struct inode * inode = dentry->d_inode; | 344 | struct inode * inode = dentry->d_inode; |
345 | struct dentry *parent = dentry->d_parent; | 345 | struct dentry *parent = dentry->d_parent; |
346 | __u32 *datap; | 346 | __u32 *datap; |
347 | dev_t ex_dev = exp->ex_dentry->d_inode->i_sb->s_dev; | 347 | dev_t ex_dev = exp->ex_path.dentry->d_inode->i_sb->s_dev; |
348 | int root_export = (exp->ex_dentry == exp->ex_dentry->d_sb->s_root); | 348 | int root_export = (exp->ex_path.dentry == exp->ex_path.dentry->d_sb->s_root); |
349 | 349 | ||
350 | dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %s/%s, ino=%ld)\n", | 350 | dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %s/%s, ino=%ld)\n", |
351 | MAJOR(ex_dev), MINOR(ex_dev), | 351 | MAJOR(ex_dev), MINOR(ex_dev), |
352 | (long) exp->ex_dentry->d_inode->i_ino, | 352 | (long) exp->ex_path.dentry->d_inode->i_ino, |
353 | parent->d_name.name, dentry->d_name.name, | 353 | parent->d_name.name, dentry->d_name.name, |
354 | (inode ? inode->i_ino : 0)); | 354 | (inode ? inode->i_ino : 0)); |
355 | 355 | ||
@@ -391,7 +391,7 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, | |||
391 | /* FALL THROUGH */ | 391 | /* FALL THROUGH */ |
392 | case FSID_MAJOR_MINOR: | 392 | case FSID_MAJOR_MINOR: |
393 | case FSID_ENCODE_DEV: | 393 | case FSID_ENCODE_DEV: |
394 | if (!(exp->ex_dentry->d_inode->i_sb->s_type->fs_flags | 394 | if (!(exp->ex_path.dentry->d_inode->i_sb->s_type->fs_flags |
395 | & FS_REQUIRES_DEV)) | 395 | & FS_REQUIRES_DEV)) |
396 | goto retry; | 396 | goto retry; |
397 | break; | 397 | break; |
@@ -454,7 +454,7 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, | |||
454 | fhp->fh_handle.ofh_dev = old_encode_dev(ex_dev); | 454 | fhp->fh_handle.ofh_dev = old_encode_dev(ex_dev); |
455 | fhp->fh_handle.ofh_xdev = fhp->fh_handle.ofh_dev; | 455 | fhp->fh_handle.ofh_xdev = fhp->fh_handle.ofh_dev; |
456 | fhp->fh_handle.ofh_xino = | 456 | fhp->fh_handle.ofh_xino = |
457 | ino_t_to_u32(exp->ex_dentry->d_inode->i_ino); | 457 | ino_t_to_u32(exp->ex_path.dentry->d_inode->i_ino); |
458 | fhp->fh_handle.ofh_dirino = ino_t_to_u32(parent_ino(dentry)); | 458 | fhp->fh_handle.ofh_dirino = ino_t_to_u32(parent_ino(dentry)); |
459 | if (inode) | 459 | if (inode) |
460 | _fh_update_old(dentry, exp, &fhp->fh_handle); | 460 | _fh_update_old(dentry, exp, &fhp->fh_handle); |
@@ -465,7 +465,7 @@ fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, | |||
465 | datap = fhp->fh_handle.fh_auth+0; | 465 | datap = fhp->fh_handle.fh_auth+0; |
466 | fhp->fh_handle.fh_fsid_type = fsid_type; | 466 | fhp->fh_handle.fh_fsid_type = fsid_type; |
467 | mk_fsid(fsid_type, datap, ex_dev, | 467 | mk_fsid(fsid_type, datap, ex_dev, |
468 | exp->ex_dentry->d_inode->i_ino, | 468 | exp->ex_path.dentry->d_inode->i_ino, |
469 | exp->ex_fsid, exp->ex_uuid); | 469 | exp->ex_fsid, exp->ex_uuid); |
470 | 470 | ||
471 | len = key_len(fsid_type); | 471 | len = key_len(fsid_type); |
@@ -571,7 +571,7 @@ enum fsid_source fsid_source(struct svc_fh *fhp) | |||
571 | case FSID_DEV: | 571 | case FSID_DEV: |
572 | case FSID_ENCODE_DEV: | 572 | case FSID_ENCODE_DEV: |
573 | case FSID_MAJOR_MINOR: | 573 | case FSID_MAJOR_MINOR: |
574 | if (fhp->fh_export->ex_dentry->d_inode->i_sb->s_type->fs_flags | 574 | if (fhp->fh_export->ex_path.dentry->d_inode->i_sb->s_type->fs_flags |
575 | & FS_REQUIRES_DEV) | 575 | & FS_REQUIRES_DEV) |
576 | return FSIDSOURCE_DEV; | 576 | return FSIDSOURCE_DEV; |
577 | break; | 577 | break; |
diff --git a/fs/nfsd/nfsproc.c b/fs/nfsd/nfsproc.c index 977a71f64e19..6cfc96a12483 100644 --- a/fs/nfsd/nfsproc.c +++ b/fs/nfsd/nfsproc.c | |||
@@ -41,7 +41,7 @@ static __be32 | |||
41 | nfsd_return_attrs(__be32 err, struct nfsd_attrstat *resp) | 41 | nfsd_return_attrs(__be32 err, struct nfsd_attrstat *resp) |
42 | { | 42 | { |
43 | if (err) return err; | 43 | if (err) return err; |
44 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_mnt, | 44 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_path.mnt, |
45 | resp->fh.fh_dentry, | 45 | resp->fh.fh_dentry, |
46 | &resp->stat)); | 46 | &resp->stat)); |
47 | } | 47 | } |
@@ -49,7 +49,7 @@ static __be32 | |||
49 | nfsd_return_dirop(__be32 err, struct nfsd_diropres *resp) | 49 | nfsd_return_dirop(__be32 err, struct nfsd_diropres *resp) |
50 | { | 50 | { |
51 | if (err) return err; | 51 | if (err) return err; |
52 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_mnt, | 52 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_path.mnt, |
53 | resp->fh.fh_dentry, | 53 | resp->fh.fh_dentry, |
54 | &resp->stat)); | 54 | &resp->stat)); |
55 | } | 55 | } |
@@ -164,7 +164,7 @@ nfsd_proc_read(struct svc_rqst *rqstp, struct nfsd_readargs *argp, | |||
164 | &resp->count); | 164 | &resp->count); |
165 | 165 | ||
166 | if (nfserr) return nfserr; | 166 | if (nfserr) return nfserr; |
167 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_mnt, | 167 | return nfserrno(vfs_getattr(resp->fh.fh_export->ex_path.mnt, |
168 | resp->fh.fh_dentry, | 168 | resp->fh.fh_dentry, |
169 | &resp->stat)); | 169 | &resp->stat)); |
170 | } | 170 | } |
diff --git a/fs/nfsd/nfsxdr.c b/fs/nfsd/nfsxdr.c index 61ad61743d94..afd08e2c90a5 100644 --- a/fs/nfsd/nfsxdr.c +++ b/fs/nfsd/nfsxdr.c | |||
@@ -207,7 +207,7 @@ encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, | |||
207 | __be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp) | 207 | __be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp) |
208 | { | 208 | { |
209 | struct kstat stat; | 209 | struct kstat stat; |
210 | vfs_getattr(fhp->fh_export->ex_mnt, fhp->fh_dentry, &stat); | 210 | vfs_getattr(fhp->fh_export->ex_path.mnt, fhp->fh_dentry, &stat); |
211 | return encode_fattr(rqstp, p, fhp, &stat); | 211 | return encode_fattr(rqstp, p, fhp, &stat); |
212 | } | 212 | } |
213 | 213 | ||
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index cc75e4fcd02b..46f59d5365a0 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -101,7 +101,7 @@ nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, | |||
101 | { | 101 | { |
102 | struct svc_export *exp = *expp, *exp2 = NULL; | 102 | struct svc_export *exp = *expp, *exp2 = NULL; |
103 | struct dentry *dentry = *dpp; | 103 | struct dentry *dentry = *dpp; |
104 | struct vfsmount *mnt = mntget(exp->ex_mnt); | 104 | struct vfsmount *mnt = mntget(exp->ex_path.mnt); |
105 | struct dentry *mounts = dget(dentry); | 105 | struct dentry *mounts = dget(dentry); |
106 | int err = 0; | 106 | int err = 0; |
107 | 107 | ||
@@ -156,15 +156,15 @@ nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp, | |||
156 | if (isdotent(name, len)) { | 156 | if (isdotent(name, len)) { |
157 | if (len==1) | 157 | if (len==1) |
158 | dentry = dget(dparent); | 158 | dentry = dget(dparent); |
159 | else if (dparent != exp->ex_dentry) { | 159 | else if (dparent != exp->ex_path.dentry) |
160 | dentry = dget_parent(dparent); | 160 | dentry = dget_parent(dparent); |
161 | } else if (!EX_NOHIDE(exp)) | 161 | else if (!EX_NOHIDE(exp)) |
162 | dentry = dget(dparent); /* .. == . just like at / */ | 162 | dentry = dget(dparent); /* .. == . just like at / */ |
163 | else { | 163 | else { |
164 | /* checking mountpoint crossing is very different when stepping up */ | 164 | /* checking mountpoint crossing is very different when stepping up */ |
165 | struct svc_export *exp2 = NULL; | 165 | struct svc_export *exp2 = NULL; |
166 | struct dentry *dp; | 166 | struct dentry *dp; |
167 | struct vfsmount *mnt = mntget(exp->ex_mnt); | 167 | struct vfsmount *mnt = mntget(exp->ex_path.mnt); |
168 | dentry = dget(dparent); | 168 | dentry = dget(dparent); |
169 | while(dentry == mnt->mnt_root && follow_up(&mnt, &dentry)) | 169 | while(dentry == mnt->mnt_root && follow_up(&mnt, &dentry)) |
170 | ; | 170 | ; |
@@ -721,7 +721,8 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, | |||
721 | 721 | ||
722 | DQUOT_INIT(inode); | 722 | DQUOT_INIT(inode); |
723 | } | 723 | } |
724 | *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_mnt), flags); | 724 | *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt), |
725 | flags); | ||
725 | if (IS_ERR(*filp)) | 726 | if (IS_ERR(*filp)) |
726 | host_err = PTR_ERR(*filp); | 727 | host_err = PTR_ERR(*filp); |
727 | out_nfserr: | 728 | out_nfserr: |
@@ -1462,7 +1463,7 @@ nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp) | |||
1462 | if (!inode->i_op || !inode->i_op->readlink) | 1463 | if (!inode->i_op || !inode->i_op->readlink) |
1463 | goto out; | 1464 | goto out; |
1464 | 1465 | ||
1465 | touch_atime(fhp->fh_export->ex_mnt, dentry); | 1466 | touch_atime(fhp->fh_export->ex_path.mnt, dentry); |
1466 | /* N.B. Why does this call need a get_fs()?? | 1467 | /* N.B. Why does this call need a get_fs()?? |
1467 | * Remove the set_fs and watch the fireworks:-) --okir | 1468 | * Remove the set_fs and watch the fireworks:-) --okir |
1468 | */ | 1469 | */ |
@@ -127,10 +127,10 @@ asmlinkage long sys_statfs(const char __user * path, struct statfs __user * buf) | |||
127 | error = user_path_walk(path, &nd); | 127 | error = user_path_walk(path, &nd); |
128 | if (!error) { | 128 | if (!error) { |
129 | struct statfs tmp; | 129 | struct statfs tmp; |
130 | error = vfs_statfs_native(nd.dentry, &tmp); | 130 | error = vfs_statfs_native(nd.path.dentry, &tmp); |
131 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) | 131 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) |
132 | error = -EFAULT; | 132 | error = -EFAULT; |
133 | path_release(&nd); | 133 | path_put(&nd.path); |
134 | } | 134 | } |
135 | return error; | 135 | return error; |
136 | } | 136 | } |
@@ -146,10 +146,10 @@ asmlinkage long sys_statfs64(const char __user *path, size_t sz, struct statfs64 | |||
146 | error = user_path_walk(path, &nd); | 146 | error = user_path_walk(path, &nd); |
147 | if (!error) { | 147 | if (!error) { |
148 | struct statfs64 tmp; | 148 | struct statfs64 tmp; |
149 | error = vfs_statfs64(nd.dentry, &tmp); | 149 | error = vfs_statfs64(nd.path.dentry, &tmp); |
150 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) | 150 | if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) |
151 | error = -EFAULT; | 151 | error = -EFAULT; |
152 | path_release(&nd); | 152 | path_put(&nd.path); |
153 | } | 153 | } |
154 | return error; | 154 | return error; |
155 | } | 155 | } |
@@ -233,7 +233,7 @@ static long do_sys_truncate(const char __user * path, loff_t length) | |||
233 | error = user_path_walk(path, &nd); | 233 | error = user_path_walk(path, &nd); |
234 | if (error) | 234 | if (error) |
235 | goto out; | 235 | goto out; |
236 | inode = nd.dentry->d_inode; | 236 | inode = nd.path.dentry->d_inode; |
237 | 237 | ||
238 | /* For directories it's -EISDIR, for other non-regulars - -EINVAL */ | 238 | /* For directories it's -EISDIR, for other non-regulars - -EINVAL */ |
239 | error = -EISDIR; | 239 | error = -EISDIR; |
@@ -271,13 +271,13 @@ static long do_sys_truncate(const char __user * path, loff_t length) | |||
271 | error = locks_verify_truncate(inode, NULL, length); | 271 | error = locks_verify_truncate(inode, NULL, length); |
272 | if (!error) { | 272 | if (!error) { |
273 | DQUOT_INIT(inode); | 273 | DQUOT_INIT(inode); |
274 | error = do_truncate(nd.dentry, length, 0, NULL); | 274 | error = do_truncate(nd.path.dentry, length, 0, NULL); |
275 | } | 275 | } |
276 | 276 | ||
277 | put_write_and_out: | 277 | put_write_and_out: |
278 | put_write_access(inode); | 278 | put_write_access(inode); |
279 | dput_and_out: | 279 | dput_and_out: |
280 | path_release(&nd); | 280 | path_put(&nd.path); |
281 | out: | 281 | out: |
282 | return error; | 282 | return error; |
283 | } | 283 | } |
@@ -455,14 +455,14 @@ asmlinkage long sys_faccessat(int dfd, const char __user *filename, int mode) | |||
455 | res = vfs_permission(&nd, mode); | 455 | res = vfs_permission(&nd, mode); |
456 | /* SuS v2 requires we report a read only fs too */ | 456 | /* SuS v2 requires we report a read only fs too */ |
457 | if(res || !(mode & S_IWOTH) || | 457 | if(res || !(mode & S_IWOTH) || |
458 | special_file(nd.dentry->d_inode->i_mode)) | 458 | special_file(nd.path.dentry->d_inode->i_mode)) |
459 | goto out_path_release; | 459 | goto out_path_release; |
460 | 460 | ||
461 | if(IS_RDONLY(nd.dentry->d_inode)) | 461 | if(IS_RDONLY(nd.path.dentry->d_inode)) |
462 | res = -EROFS; | 462 | res = -EROFS; |
463 | 463 | ||
464 | out_path_release: | 464 | out_path_release: |
465 | path_release(&nd); | 465 | path_put(&nd.path); |
466 | out: | 466 | out: |
467 | current->fsuid = old_fsuid; | 467 | current->fsuid = old_fsuid; |
468 | current->fsgid = old_fsgid; | 468 | current->fsgid = old_fsgid; |
@@ -490,10 +490,10 @@ asmlinkage long sys_chdir(const char __user * filename) | |||
490 | if (error) | 490 | if (error) |
491 | goto dput_and_out; | 491 | goto dput_and_out; |
492 | 492 | ||
493 | set_fs_pwd(current->fs, nd.mnt, nd.dentry); | 493 | set_fs_pwd(current->fs, &nd.path); |
494 | 494 | ||
495 | dput_and_out: | 495 | dput_and_out: |
496 | path_release(&nd); | 496 | path_put(&nd.path); |
497 | out: | 497 | out: |
498 | return error; | 498 | return error; |
499 | } | 499 | } |
@@ -501,9 +501,7 @@ out: | |||
501 | asmlinkage long sys_fchdir(unsigned int fd) | 501 | asmlinkage long sys_fchdir(unsigned int fd) |
502 | { | 502 | { |
503 | struct file *file; | 503 | struct file *file; |
504 | struct dentry *dentry; | ||
505 | struct inode *inode; | 504 | struct inode *inode; |
506 | struct vfsmount *mnt; | ||
507 | int error; | 505 | int error; |
508 | 506 | ||
509 | error = -EBADF; | 507 | error = -EBADF; |
@@ -511,9 +509,7 @@ asmlinkage long sys_fchdir(unsigned int fd) | |||
511 | if (!file) | 509 | if (!file) |
512 | goto out; | 510 | goto out; |
513 | 511 | ||
514 | dentry = file->f_path.dentry; | 512 | inode = file->f_path.dentry->d_inode; |
515 | mnt = file->f_path.mnt; | ||
516 | inode = dentry->d_inode; | ||
517 | 513 | ||
518 | error = -ENOTDIR; | 514 | error = -ENOTDIR; |
519 | if (!S_ISDIR(inode->i_mode)) | 515 | if (!S_ISDIR(inode->i_mode)) |
@@ -521,7 +517,7 @@ asmlinkage long sys_fchdir(unsigned int fd) | |||
521 | 517 | ||
522 | error = file_permission(file, MAY_EXEC); | 518 | error = file_permission(file, MAY_EXEC); |
523 | if (!error) | 519 | if (!error) |
524 | set_fs_pwd(current->fs, mnt, dentry); | 520 | set_fs_pwd(current->fs, &file->f_path); |
525 | out_putf: | 521 | out_putf: |
526 | fput(file); | 522 | fput(file); |
527 | out: | 523 | out: |
@@ -545,11 +541,11 @@ asmlinkage long sys_chroot(const char __user * filename) | |||
545 | if (!capable(CAP_SYS_CHROOT)) | 541 | if (!capable(CAP_SYS_CHROOT)) |
546 | goto dput_and_out; | 542 | goto dput_and_out; |
547 | 543 | ||
548 | set_fs_root(current->fs, nd.mnt, nd.dentry); | 544 | set_fs_root(current->fs, &nd.path); |
549 | set_fs_altroot(); | 545 | set_fs_altroot(); |
550 | error = 0; | 546 | error = 0; |
551 | dput_and_out: | 547 | dput_and_out: |
552 | path_release(&nd); | 548 | path_put(&nd.path); |
553 | out: | 549 | out: |
554 | return error; | 550 | return error; |
555 | } | 551 | } |
@@ -602,7 +598,7 @@ asmlinkage long sys_fchmodat(int dfd, const char __user *filename, | |||
602 | error = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW, &nd); | 598 | error = __user_walk_fd(dfd, filename, LOOKUP_FOLLOW, &nd); |
603 | if (error) | 599 | if (error) |
604 | goto out; | 600 | goto out; |
605 | inode = nd.dentry->d_inode; | 601 | inode = nd.path.dentry->d_inode; |
606 | 602 | ||
607 | error = -EROFS; | 603 | error = -EROFS; |
608 | if (IS_RDONLY(inode)) | 604 | if (IS_RDONLY(inode)) |
@@ -617,11 +613,11 @@ asmlinkage long sys_fchmodat(int dfd, const char __user *filename, | |||
617 | mode = inode->i_mode; | 613 | mode = inode->i_mode; |
618 | newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); | 614 | newattrs.ia_mode = (mode & S_IALLUGO) | (inode->i_mode & ~S_IALLUGO); |
619 | newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; | 615 | newattrs.ia_valid = ATTR_MODE | ATTR_CTIME; |
620 | error = notify_change(nd.dentry, &newattrs); | 616 | error = notify_change(nd.path.dentry, &newattrs); |
621 | mutex_unlock(&inode->i_mutex); | 617 | mutex_unlock(&inode->i_mutex); |
622 | 618 | ||
623 | dput_and_out: | 619 | dput_and_out: |
624 | path_release(&nd); | 620 | path_put(&nd.path); |
625 | out: | 621 | out: |
626 | return error; | 622 | return error; |
627 | } | 623 | } |
@@ -675,8 +671,8 @@ asmlinkage long sys_chown(const char __user * filename, uid_t user, gid_t group) | |||
675 | error = user_path_walk(filename, &nd); | 671 | error = user_path_walk(filename, &nd); |
676 | if (error) | 672 | if (error) |
677 | goto out; | 673 | goto out; |
678 | error = chown_common(nd.dentry, user, group); | 674 | error = chown_common(nd.path.dentry, user, group); |
679 | path_release(&nd); | 675 | path_put(&nd.path); |
680 | out: | 676 | out: |
681 | return error; | 677 | return error; |
682 | } | 678 | } |
@@ -695,8 +691,8 @@ asmlinkage long sys_fchownat(int dfd, const char __user *filename, uid_t user, | |||
695 | error = __user_walk_fd(dfd, filename, follow, &nd); | 691 | error = __user_walk_fd(dfd, filename, follow, &nd); |
696 | if (error) | 692 | if (error) |
697 | goto out; | 693 | goto out; |
698 | error = chown_common(nd.dentry, user, group); | 694 | error = chown_common(nd.path.dentry, user, group); |
699 | path_release(&nd); | 695 | path_put(&nd.path); |
700 | out: | 696 | out: |
701 | return error; | 697 | return error; |
702 | } | 698 | } |
@@ -709,8 +705,8 @@ asmlinkage long sys_lchown(const char __user * filename, uid_t user, gid_t group | |||
709 | error = user_path_walk_link(filename, &nd); | 705 | error = user_path_walk_link(filename, &nd); |
710 | if (error) | 706 | if (error) |
711 | goto out; | 707 | goto out; |
712 | error = chown_common(nd.dentry, user, group); | 708 | error = chown_common(nd.path.dentry, user, group); |
713 | path_release(&nd); | 709 | path_put(&nd.path); |
714 | out: | 710 | out: |
715 | return error; | 711 | return error; |
716 | } | 712 | } |
@@ -863,7 +859,7 @@ struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry | |||
863 | goto out; | 859 | goto out; |
864 | if (IS_ERR(dentry)) | 860 | if (IS_ERR(dentry)) |
865 | goto out_err; | 861 | goto out_err; |
866 | nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->mnt), | 862 | nd->intent.open.file = __dentry_open(dget(dentry), mntget(nd->path.mnt), |
867 | nd->intent.open.flags - 1, | 863 | nd->intent.open.flags - 1, |
868 | nd->intent.open.file, | 864 | nd->intent.open.file, |
869 | open); | 865 | open); |
@@ -891,9 +887,10 @@ struct file *nameidata_to_filp(struct nameidata *nd, int flags) | |||
891 | filp = nd->intent.open.file; | 887 | filp = nd->intent.open.file; |
892 | /* Has the filesystem initialised the file for us? */ | 888 | /* Has the filesystem initialised the file for us? */ |
893 | if (filp->f_path.dentry == NULL) | 889 | if (filp->f_path.dentry == NULL) |
894 | filp = __dentry_open(nd->dentry, nd->mnt, flags, filp, NULL); | 890 | filp = __dentry_open(nd->path.dentry, nd->path.mnt, flags, filp, |
891 | NULL); | ||
895 | else | 892 | else |
896 | path_release(nd); | 893 | path_put(&nd->path); |
897 | return filp; | 894 | return filp; |
898 | } | 895 | } |
899 | 896 | ||
diff --git a/fs/proc/base.c b/fs/proc/base.c index 7c6b4ec83cb7..88f8edf18258 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -153,7 +153,7 @@ static int get_nr_threads(struct task_struct *tsk) | |||
153 | return count; | 153 | return count; |
154 | } | 154 | } |
155 | 155 | ||
156 | static int proc_cwd_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt) | 156 | static int proc_cwd_link(struct inode *inode, struct path *path) |
157 | { | 157 | { |
158 | struct task_struct *task = get_proc_task(inode); | 158 | struct task_struct *task = get_proc_task(inode); |
159 | struct fs_struct *fs = NULL; | 159 | struct fs_struct *fs = NULL; |
@@ -165,8 +165,8 @@ static int proc_cwd_link(struct inode *inode, struct dentry **dentry, struct vfs | |||
165 | } | 165 | } |
166 | if (fs) { | 166 | if (fs) { |
167 | read_lock(&fs->lock); | 167 | read_lock(&fs->lock); |
168 | *mnt = mntget(fs->pwdmnt); | 168 | *path = fs->pwd; |
169 | *dentry = dget(fs->pwd); | 169 | path_get(&fs->pwd); |
170 | read_unlock(&fs->lock); | 170 | read_unlock(&fs->lock); |
171 | result = 0; | 171 | result = 0; |
172 | put_fs_struct(fs); | 172 | put_fs_struct(fs); |
@@ -174,7 +174,7 @@ static int proc_cwd_link(struct inode *inode, struct dentry **dentry, struct vfs | |||
174 | return result; | 174 | return result; |
175 | } | 175 | } |
176 | 176 | ||
177 | static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt) | 177 | static int proc_root_link(struct inode *inode, struct path *path) |
178 | { | 178 | { |
179 | struct task_struct *task = get_proc_task(inode); | 179 | struct task_struct *task = get_proc_task(inode); |
180 | struct fs_struct *fs = NULL; | 180 | struct fs_struct *fs = NULL; |
@@ -186,8 +186,8 @@ static int proc_root_link(struct inode *inode, struct dentry **dentry, struct vf | |||
186 | } | 186 | } |
187 | if (fs) { | 187 | if (fs) { |
188 | read_lock(&fs->lock); | 188 | read_lock(&fs->lock); |
189 | *mnt = mntget(fs->rootmnt); | 189 | *path = fs->root; |
190 | *dentry = dget(fs->root); | 190 | path_get(&fs->root); |
191 | read_unlock(&fs->lock); | 191 | read_unlock(&fs->lock); |
192 | result = 0; | 192 | result = 0; |
193 | put_fs_struct(fs); | 193 | put_fs_struct(fs); |
@@ -1164,39 +1164,36 @@ static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd) | |||
1164 | int error = -EACCES; | 1164 | int error = -EACCES; |
1165 | 1165 | ||
1166 | /* We don't need a base pointer in the /proc filesystem */ | 1166 | /* We don't need a base pointer in the /proc filesystem */ |
1167 | path_release(nd); | 1167 | path_put(&nd->path); |
1168 | 1168 | ||
1169 | /* Are we allowed to snoop on the tasks file descriptors? */ | 1169 | /* Are we allowed to snoop on the tasks file descriptors? */ |
1170 | if (!proc_fd_access_allowed(inode)) | 1170 | if (!proc_fd_access_allowed(inode)) |
1171 | goto out; | 1171 | goto out; |
1172 | 1172 | ||
1173 | error = PROC_I(inode)->op.proc_get_link(inode, &nd->dentry, &nd->mnt); | 1173 | error = PROC_I(inode)->op.proc_get_link(inode, &nd->path); |
1174 | nd->last_type = LAST_BIND; | 1174 | nd->last_type = LAST_BIND; |
1175 | out: | 1175 | out: |
1176 | return ERR_PTR(error); | 1176 | return ERR_PTR(error); |
1177 | } | 1177 | } |
1178 | 1178 | ||
1179 | static int do_proc_readlink(struct dentry *dentry, struct vfsmount *mnt, | 1179 | static int do_proc_readlink(struct path *path, char __user *buffer, int buflen) |
1180 | char __user *buffer, int buflen) | ||
1181 | { | 1180 | { |
1182 | struct inode * inode; | ||
1183 | char *tmp = (char*)__get_free_page(GFP_TEMPORARY); | 1181 | char *tmp = (char*)__get_free_page(GFP_TEMPORARY); |
1184 | char *path; | 1182 | char *pathname; |
1185 | int len; | 1183 | int len; |
1186 | 1184 | ||
1187 | if (!tmp) | 1185 | if (!tmp) |
1188 | return -ENOMEM; | 1186 | return -ENOMEM; |
1189 | 1187 | ||
1190 | inode = dentry->d_inode; | 1188 | pathname = d_path(path, tmp, PAGE_SIZE); |
1191 | path = d_path(dentry, mnt, tmp, PAGE_SIZE); | 1189 | len = PTR_ERR(pathname); |
1192 | len = PTR_ERR(path); | 1190 | if (IS_ERR(pathname)) |
1193 | if (IS_ERR(path)) | ||
1194 | goto out; | 1191 | goto out; |
1195 | len = tmp + PAGE_SIZE - 1 - path; | 1192 | len = tmp + PAGE_SIZE - 1 - pathname; |
1196 | 1193 | ||
1197 | if (len > buflen) | 1194 | if (len > buflen) |
1198 | len = buflen; | 1195 | len = buflen; |
1199 | if (copy_to_user(buffer, path, len)) | 1196 | if (copy_to_user(buffer, pathname, len)) |
1200 | len = -EFAULT; | 1197 | len = -EFAULT; |
1201 | out: | 1198 | out: |
1202 | free_page((unsigned long)tmp); | 1199 | free_page((unsigned long)tmp); |
@@ -1207,20 +1204,18 @@ static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int b | |||
1207 | { | 1204 | { |
1208 | int error = -EACCES; | 1205 | int error = -EACCES; |
1209 | struct inode *inode = dentry->d_inode; | 1206 | struct inode *inode = dentry->d_inode; |
1210 | struct dentry *de; | 1207 | struct path path; |
1211 | struct vfsmount *mnt = NULL; | ||
1212 | 1208 | ||
1213 | /* Are we allowed to snoop on the tasks file descriptors? */ | 1209 | /* Are we allowed to snoop on the tasks file descriptors? */ |
1214 | if (!proc_fd_access_allowed(inode)) | 1210 | if (!proc_fd_access_allowed(inode)) |
1215 | goto out; | 1211 | goto out; |
1216 | 1212 | ||
1217 | error = PROC_I(inode)->op.proc_get_link(inode, &de, &mnt); | 1213 | error = PROC_I(inode)->op.proc_get_link(inode, &path); |
1218 | if (error) | 1214 | if (error) |
1219 | goto out; | 1215 | goto out; |
1220 | 1216 | ||
1221 | error = do_proc_readlink(de, mnt, buffer, buflen); | 1217 | error = do_proc_readlink(&path, buffer, buflen); |
1222 | dput(de); | 1218 | path_put(&path); |
1223 | mntput(mnt); | ||
1224 | out: | 1219 | out: |
1225 | return error; | 1220 | return error; |
1226 | } | 1221 | } |
@@ -1447,8 +1442,7 @@ out: | |||
1447 | 1442 | ||
1448 | #define PROC_FDINFO_MAX 64 | 1443 | #define PROC_FDINFO_MAX 64 |
1449 | 1444 | ||
1450 | static int proc_fd_info(struct inode *inode, struct dentry **dentry, | 1445 | static int proc_fd_info(struct inode *inode, struct path *path, char *info) |
1451 | struct vfsmount **mnt, char *info) | ||
1452 | { | 1446 | { |
1453 | struct task_struct *task = get_proc_task(inode); | 1447 | struct task_struct *task = get_proc_task(inode); |
1454 | struct files_struct *files = NULL; | 1448 | struct files_struct *files = NULL; |
@@ -1467,10 +1461,10 @@ static int proc_fd_info(struct inode *inode, struct dentry **dentry, | |||
1467 | spin_lock(&files->file_lock); | 1461 | spin_lock(&files->file_lock); |
1468 | file = fcheck_files(files, fd); | 1462 | file = fcheck_files(files, fd); |
1469 | if (file) { | 1463 | if (file) { |
1470 | if (mnt) | 1464 | if (path) { |
1471 | *mnt = mntget(file->f_path.mnt); | 1465 | *path = file->f_path; |
1472 | if (dentry) | 1466 | path_get(&file->f_path); |
1473 | *dentry = dget(file->f_path.dentry); | 1467 | } |
1474 | if (info) | 1468 | if (info) |
1475 | snprintf(info, PROC_FDINFO_MAX, | 1469 | snprintf(info, PROC_FDINFO_MAX, |
1476 | "pos:\t%lli\n" | 1470 | "pos:\t%lli\n" |
@@ -1487,10 +1481,9 @@ static int proc_fd_info(struct inode *inode, struct dentry **dentry, | |||
1487 | return -ENOENT; | 1481 | return -ENOENT; |
1488 | } | 1482 | } |
1489 | 1483 | ||
1490 | static int proc_fd_link(struct inode *inode, struct dentry **dentry, | 1484 | static int proc_fd_link(struct inode *inode, struct path *path) |
1491 | struct vfsmount **mnt) | ||
1492 | { | 1485 | { |
1493 | return proc_fd_info(inode, dentry, mnt, NULL); | 1486 | return proc_fd_info(inode, path, NULL); |
1494 | } | 1487 | } |
1495 | 1488 | ||
1496 | static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) | 1489 | static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd) |
@@ -1684,7 +1677,7 @@ static ssize_t proc_fdinfo_read(struct file *file, char __user *buf, | |||
1684 | size_t len, loff_t *ppos) | 1677 | size_t len, loff_t *ppos) |
1685 | { | 1678 | { |
1686 | char tmp[PROC_FDINFO_MAX]; | 1679 | char tmp[PROC_FDINFO_MAX]; |
1687 | int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, NULL, tmp); | 1680 | int err = proc_fd_info(file->f_path.dentry->d_inode, NULL, tmp); |
1688 | if (!err) | 1681 | if (!err) |
1689 | err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); | 1682 | err = simple_read_from_buffer(buf, len, ppos, tmp, strlen(tmp)); |
1690 | return err; | 1683 | return err; |
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index ea496ffeabe7..1c81c8f1aeed 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h | |||
@@ -48,7 +48,7 @@ extern int maps_protect; | |||
48 | 48 | ||
49 | extern void create_seq_entry(char *name, mode_t mode, | 49 | extern void create_seq_entry(char *name, mode_t mode, |
50 | const struct file_operations *f); | 50 | const struct file_operations *f); |
51 | extern int proc_exe_link(struct inode *, struct dentry **, struct vfsmount **); | 51 | extern int proc_exe_link(struct inode *, struct path *); |
52 | extern int proc_tid_stat(struct seq_file *m, struct pid_namespace *ns, | 52 | extern int proc_tid_stat(struct seq_file *m, struct pid_namespace *ns, |
53 | struct pid *pid, struct task_struct *task); | 53 | struct pid *pid, struct task_struct *task); |
54 | extern int proc_tgid_stat(struct seq_file *m, struct pid_namespace *ns, | 54 | extern int proc_tgid_stat(struct seq_file *m, struct pid_namespace *ns, |
diff --git a/fs/proc/nommu.c b/fs/proc/nommu.c index 5d9147b9d738..941e95114b5a 100644 --- a/fs/proc/nommu.c +++ b/fs/proc/nommu.c | |||
@@ -67,7 +67,7 @@ int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma) | |||
67 | if (len < 1) | 67 | if (len < 1) |
68 | len = 1; | 68 | len = 1; |
69 | seq_printf(m, "%*c", len, ' '); | 69 | seq_printf(m, "%*c", len, ' '); |
70 | seq_path(m, file->f_path.mnt, file->f_path.dentry, ""); | 70 | seq_path(m, &file->f_path, ""); |
71 | } | 71 | } |
72 | 72 | ||
73 | seq_putc(m, '\n'); | 73 | seq_putc(m, '\n'); |
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index b9cb23c08f63..614c34b6d1c2 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c | |||
@@ -407,7 +407,7 @@ static int proc_sys_permission(struct inode *inode, int mask, struct nameidata * | |||
407 | if (!nd || !depth) | 407 | if (!nd || !depth) |
408 | goto out; | 408 | goto out; |
409 | 409 | ||
410 | dentry = nd->dentry; | 410 | dentry = nd->path.dentry; |
411 | table = do_proc_sys_lookup(dentry->d_parent, &dentry->d_name, &head); | 411 | table = do_proc_sys_lookup(dentry->d_parent, &dentry->d_name, &head); |
412 | 412 | ||
413 | /* If the entry does not exist deny permission */ | 413 | /* If the entry does not exist deny permission */ |
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index ae4d3f2c8cb2..49958cffbd8d 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -75,7 +75,7 @@ int task_statm(struct mm_struct *mm, int *shared, int *text, | |||
75 | return mm->total_vm; | 75 | return mm->total_vm; |
76 | } | 76 | } |
77 | 77 | ||
78 | int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt) | 78 | int proc_exe_link(struct inode *inode, struct path *path) |
79 | { | 79 | { |
80 | struct vm_area_struct * vma; | 80 | struct vm_area_struct * vma; |
81 | int result = -ENOENT; | 81 | int result = -ENOENT; |
@@ -98,8 +98,8 @@ int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount * | |||
98 | } | 98 | } |
99 | 99 | ||
100 | if (vma) { | 100 | if (vma) { |
101 | *mnt = mntget(vma->vm_file->f_path.mnt); | 101 | *path = vma->vm_file->f_path; |
102 | *dentry = dget(vma->vm_file->f_path.dentry); | 102 | path_get(&vma->vm_file->f_path); |
103 | result = 0; | 103 | result = 0; |
104 | } | 104 | } |
105 | 105 | ||
@@ -271,7 +271,7 @@ static int show_map(struct seq_file *m, void *v) | |||
271 | */ | 271 | */ |
272 | if (file) { | 272 | if (file) { |
273 | pad_len_spaces(m, len); | 273 | pad_len_spaces(m, len); |
274 | seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n"); | 274 | seq_path(m, &file->f_path, "\n"); |
275 | } else { | 275 | } else { |
276 | const char *name = arch_vma_name(vma); | 276 | const char *name = arch_vma_name(vma); |
277 | if (!name) { | 277 | if (!name) { |
diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c index abfc6f5e56ca..8011528518bd 100644 --- a/fs/proc/task_nommu.c +++ b/fs/proc/task_nommu.c | |||
@@ -103,7 +103,7 @@ int task_statm(struct mm_struct *mm, int *shared, int *text, | |||
103 | return size; | 103 | return size; |
104 | } | 104 | } |
105 | 105 | ||
106 | int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount **mnt) | 106 | int proc_exe_link(struct inode *inode, struct path *path) |
107 | { | 107 | { |
108 | struct vm_list_struct *vml; | 108 | struct vm_list_struct *vml; |
109 | struct vm_area_struct *vma; | 109 | struct vm_area_struct *vma; |
@@ -126,8 +126,8 @@ int proc_exe_link(struct inode *inode, struct dentry **dentry, struct vfsmount * | |||
126 | } | 126 | } |
127 | 127 | ||
128 | if (vma) { | 128 | if (vma) { |
129 | *mnt = mntget(vma->vm_file->f_path.mnt); | 129 | *path = vma->vm_file->f_path; |
130 | *dentry = dget(vma->vm_file->f_path.dentry); | 130 | path_get(&vma->vm_file->f_path); |
131 | result = 0; | 131 | result = 0; |
132 | } | 132 | } |
133 | 133 | ||
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 6033f0c3bd0b..6841452e0dea 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
@@ -2026,29 +2026,29 @@ static int reiserfs_quota_on(struct super_block *sb, int type, int format_id, | |||
2026 | if (err) | 2026 | if (err) |
2027 | return err; | 2027 | return err; |
2028 | /* Quotafile not on the same filesystem? */ | 2028 | /* Quotafile not on the same filesystem? */ |
2029 | if (nd.mnt->mnt_sb != sb) { | 2029 | if (nd.path.mnt->mnt_sb != sb) { |
2030 | path_release(&nd); | 2030 | path_put(&nd.path); |
2031 | return -EXDEV; | 2031 | return -EXDEV; |
2032 | } | 2032 | } |
2033 | /* We must not pack tails for quota files on reiserfs for quota IO to work */ | 2033 | /* We must not pack tails for quota files on reiserfs for quota IO to work */ |
2034 | if (!REISERFS_I(nd.dentry->d_inode)->i_flags & i_nopack_mask) { | 2034 | if (!REISERFS_I(nd.path.dentry->d_inode)->i_flags & i_nopack_mask) { |
2035 | reiserfs_warning(sb, | 2035 | reiserfs_warning(sb, |
2036 | "reiserfs: Quota file must have tail packing disabled."); | 2036 | "reiserfs: Quota file must have tail packing disabled."); |
2037 | path_release(&nd); | 2037 | path_put(&nd.path); |
2038 | return -EINVAL; | 2038 | return -EINVAL; |
2039 | } | 2039 | } |
2040 | /* Not journalling quota? No more tests needed... */ | 2040 | /* Not journalling quota? No more tests needed... */ |
2041 | if (!REISERFS_SB(sb)->s_qf_names[USRQUOTA] && | 2041 | if (!REISERFS_SB(sb)->s_qf_names[USRQUOTA] && |
2042 | !REISERFS_SB(sb)->s_qf_names[GRPQUOTA]) { | 2042 | !REISERFS_SB(sb)->s_qf_names[GRPQUOTA]) { |
2043 | path_release(&nd); | 2043 | path_put(&nd.path); |
2044 | return vfs_quota_on(sb, type, format_id, path); | 2044 | return vfs_quota_on(sb, type, format_id, path); |
2045 | } | 2045 | } |
2046 | /* Quotafile not of fs root? */ | 2046 | /* Quotafile not of fs root? */ |
2047 | if (nd.dentry->d_parent->d_inode != sb->s_root->d_inode) | 2047 | if (nd.path.dentry->d_parent->d_inode != sb->s_root->d_inode) |
2048 | reiserfs_warning(sb, | 2048 | reiserfs_warning(sb, |
2049 | "reiserfs: Quota file not on filesystem root. " | 2049 | "reiserfs: Quota file not on filesystem root. " |
2050 | "Journalled quota will not work."); | 2050 | "Journalled quota will not work."); |
2051 | path_release(&nd); | 2051 | path_put(&nd.path); |
2052 | return vfs_quota_on(sb, type, format_id, path); | 2052 | return vfs_quota_on(sb, type, format_id, path); |
2053 | } | 2053 | } |
2054 | 2054 | ||
diff --git a/fs/seq_file.c b/fs/seq_file.c index ca71c115bdaa..853770274f20 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -342,13 +342,11 @@ int seq_printf(struct seq_file *m, const char *f, ...) | |||
342 | } | 342 | } |
343 | EXPORT_SYMBOL(seq_printf); | 343 | EXPORT_SYMBOL(seq_printf); |
344 | 344 | ||
345 | int seq_path(struct seq_file *m, | 345 | int seq_path(struct seq_file *m, struct path *path, char *esc) |
346 | struct vfsmount *mnt, struct dentry *dentry, | ||
347 | char *esc) | ||
348 | { | 346 | { |
349 | if (m->count < m->size) { | 347 | if (m->count < m->size) { |
350 | char *s = m->buf + m->count; | 348 | char *s = m->buf + m->count; |
351 | char *p = d_path(dentry, mnt, s, m->size - m->count); | 349 | char *p = d_path(path, s, m->size - m->count); |
352 | if (!IS_ERR(p)) { | 350 | if (!IS_ERR(p)) { |
353 | while (s <= p) { | 351 | while (s <= p) { |
354 | char c = *p++; | 352 | char c = *p++; |
@@ -62,8 +62,8 @@ int vfs_stat_fd(int dfd, char __user *name, struct kstat *stat) | |||
62 | 62 | ||
63 | error = __user_walk_fd(dfd, name, LOOKUP_FOLLOW, &nd); | 63 | error = __user_walk_fd(dfd, name, LOOKUP_FOLLOW, &nd); |
64 | if (!error) { | 64 | if (!error) { |
65 | error = vfs_getattr(nd.mnt, nd.dentry, stat); | 65 | error = vfs_getattr(nd.path.mnt, nd.path.dentry, stat); |
66 | path_release(&nd); | 66 | path_put(&nd.path); |
67 | } | 67 | } |
68 | return error; | 68 | return error; |
69 | } | 69 | } |
@@ -82,8 +82,8 @@ int vfs_lstat_fd(int dfd, char __user *name, struct kstat *stat) | |||
82 | 82 | ||
83 | error = __user_walk_fd(dfd, name, 0, &nd); | 83 | error = __user_walk_fd(dfd, name, 0, &nd); |
84 | if (!error) { | 84 | if (!error) { |
85 | error = vfs_getattr(nd.mnt, nd.dentry, stat); | 85 | error = vfs_getattr(nd.path.mnt, nd.path.dentry, stat); |
86 | path_release(&nd); | 86 | path_put(&nd.path); |
87 | } | 87 | } |
88 | return error; | 88 | return error; |
89 | } | 89 | } |
@@ -302,17 +302,18 @@ asmlinkage long sys_readlinkat(int dfd, const char __user *path, | |||
302 | 302 | ||
303 | error = __user_walk_fd(dfd, path, 0, &nd); | 303 | error = __user_walk_fd(dfd, path, 0, &nd); |
304 | if (!error) { | 304 | if (!error) { |
305 | struct inode * inode = nd.dentry->d_inode; | 305 | struct inode *inode = nd.path.dentry->d_inode; |
306 | 306 | ||
307 | error = -EINVAL; | 307 | error = -EINVAL; |
308 | if (inode->i_op && inode->i_op->readlink) { | 308 | if (inode->i_op && inode->i_op->readlink) { |
309 | error = security_inode_readlink(nd.dentry); | 309 | error = security_inode_readlink(nd.path.dentry); |
310 | if (!error) { | 310 | if (!error) { |
311 | touch_atime(nd.mnt, nd.dentry); | 311 | touch_atime(nd.path.mnt, nd.path.dentry); |
312 | error = inode->i_op->readlink(nd.dentry, buf, bufsiz); | 312 | error = inode->i_op->readlink(nd.path.dentry, |
313 | buf, bufsiz); | ||
313 | } | 314 | } |
314 | } | 315 | } |
315 | path_release(&nd); | 316 | path_put(&nd.path); |
316 | } | 317 | } |
317 | return error; | 318 | return error; |
318 | } | 319 | } |
diff --git a/fs/utimes.c b/fs/utimes.c index e5588cd8530e..b18da9c0b97f 100644 --- a/fs/utimes.c +++ b/fs/utimes.c | |||
@@ -84,7 +84,7 @@ long do_utimes(int dfd, char __user *filename, struct timespec *times, int flags | |||
84 | if (error) | 84 | if (error) |
85 | goto out; | 85 | goto out; |
86 | 86 | ||
87 | dentry = nd.dentry; | 87 | dentry = nd.path.dentry; |
88 | } | 88 | } |
89 | 89 | ||
90 | inode = dentry->d_inode; | 90 | inode = dentry->d_inode; |
@@ -138,7 +138,7 @@ dput_and_out: | |||
138 | if (f) | 138 | if (f) |
139 | fput(f); | 139 | fput(f); |
140 | else | 140 | else |
141 | path_release(&nd); | 141 | path_put(&nd.path); |
142 | out: | 142 | out: |
143 | return error; | 143 | return error; |
144 | } | 144 | } |
diff --git a/fs/xattr.c b/fs/xattr.c index f7c8f87bb390..3acab1615460 100644 --- a/fs/xattr.c +++ b/fs/xattr.c | |||
@@ -262,8 +262,8 @@ sys_setxattr(char __user *path, char __user *name, void __user *value, | |||
262 | error = user_path_walk(path, &nd); | 262 | error = user_path_walk(path, &nd); |
263 | if (error) | 263 | if (error) |
264 | return error; | 264 | return error; |
265 | error = setxattr(nd.dentry, name, value, size, flags); | 265 | error = setxattr(nd.path.dentry, name, value, size, flags); |
266 | path_release(&nd); | 266 | path_put(&nd.path); |
267 | return error; | 267 | return error; |
268 | } | 268 | } |
269 | 269 | ||
@@ -277,8 +277,8 @@ sys_lsetxattr(char __user *path, char __user *name, void __user *value, | |||
277 | error = user_path_walk_link(path, &nd); | 277 | error = user_path_walk_link(path, &nd); |
278 | if (error) | 278 | if (error) |
279 | return error; | 279 | return error; |
280 | error = setxattr(nd.dentry, name, value, size, flags); | 280 | error = setxattr(nd.path.dentry, name, value, size, flags); |
281 | path_release(&nd); | 281 | path_put(&nd.path); |
282 | return error; | 282 | return error; |
283 | } | 283 | } |
284 | 284 | ||
@@ -347,8 +347,8 @@ sys_getxattr(char __user *path, char __user *name, void __user *value, | |||
347 | error = user_path_walk(path, &nd); | 347 | error = user_path_walk(path, &nd); |
348 | if (error) | 348 | if (error) |
349 | return error; | 349 | return error; |
350 | error = getxattr(nd.dentry, name, value, size); | 350 | error = getxattr(nd.path.dentry, name, value, size); |
351 | path_release(&nd); | 351 | path_put(&nd.path); |
352 | return error; | 352 | return error; |
353 | } | 353 | } |
354 | 354 | ||
@@ -362,8 +362,8 @@ sys_lgetxattr(char __user *path, char __user *name, void __user *value, | |||
362 | error = user_path_walk_link(path, &nd); | 362 | error = user_path_walk_link(path, &nd); |
363 | if (error) | 363 | if (error) |
364 | return error; | 364 | return error; |
365 | error = getxattr(nd.dentry, name, value, size); | 365 | error = getxattr(nd.path.dentry, name, value, size); |
366 | path_release(&nd); | 366 | path_put(&nd.path); |
367 | return error; | 367 | return error; |
368 | } | 368 | } |
369 | 369 | ||
@@ -421,8 +421,8 @@ sys_listxattr(char __user *path, char __user *list, size_t size) | |||
421 | error = user_path_walk(path, &nd); | 421 | error = user_path_walk(path, &nd); |
422 | if (error) | 422 | if (error) |
423 | return error; | 423 | return error; |
424 | error = listxattr(nd.dentry, list, size); | 424 | error = listxattr(nd.path.dentry, list, size); |
425 | path_release(&nd); | 425 | path_put(&nd.path); |
426 | return error; | 426 | return error; |
427 | } | 427 | } |
428 | 428 | ||
@@ -435,8 +435,8 @@ sys_llistxattr(char __user *path, char __user *list, size_t size) | |||
435 | error = user_path_walk_link(path, &nd); | 435 | error = user_path_walk_link(path, &nd); |
436 | if (error) | 436 | if (error) |
437 | return error; | 437 | return error; |
438 | error = listxattr(nd.dentry, list, size); | 438 | error = listxattr(nd.path.dentry, list, size); |
439 | path_release(&nd); | 439 | path_put(&nd.path); |
440 | return error; | 440 | return error; |
441 | } | 441 | } |
442 | 442 | ||
@@ -482,8 +482,8 @@ sys_removexattr(char __user *path, char __user *name) | |||
482 | error = user_path_walk(path, &nd); | 482 | error = user_path_walk(path, &nd); |
483 | if (error) | 483 | if (error) |
484 | return error; | 484 | return error; |
485 | error = removexattr(nd.dentry, name); | 485 | error = removexattr(nd.path.dentry, name); |
486 | path_release(&nd); | 486 | path_put(&nd.path); |
487 | return error; | 487 | return error; |
488 | } | 488 | } |
489 | 489 | ||
@@ -496,8 +496,8 @@ sys_lremovexattr(char __user *path, char __user *name) | |||
496 | error = user_path_walk_link(path, &nd); | 496 | error = user_path_walk_link(path, &nd); |
497 | if (error) | 497 | if (error) |
498 | return error; | 498 | return error; |
499 | error = removexattr(nd.dentry, name); | 499 | error = removexattr(nd.path.dentry, name); |
500 | path_release(&nd); | 500 | path_put(&nd.path); |
501 | return error; | 501 | return error; |
502 | } | 502 | } |
503 | 503 | ||
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index 4c82a050a3a8..a9952e490ac9 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c | |||
@@ -91,10 +91,10 @@ xfs_find_handle( | |||
91 | if (error) | 91 | if (error) |
92 | return error; | 92 | return error; |
93 | 93 | ||
94 | ASSERT(nd.dentry); | 94 | ASSERT(nd.path.dentry); |
95 | ASSERT(nd.dentry->d_inode); | 95 | ASSERT(nd.path.dentry->d_inode); |
96 | inode = igrab(nd.dentry->d_inode); | 96 | inode = igrab(nd.path.dentry->d_inode); |
97 | path_release(&nd); | 97 | path_put(&nd.path); |
98 | break; | 98 | break; |
99 | } | 99 | } |
100 | 100 | ||
diff --git a/include/acpi/processor.h b/include/acpi/processor.h index cdc8004cfd12..06480bcabfdc 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h | |||
@@ -32,9 +32,11 @@ | |||
32 | #define DOMAIN_COORD_TYPE_SW_ANY 0xfd | 32 | #define DOMAIN_COORD_TYPE_SW_ANY 0xfd |
33 | #define DOMAIN_COORD_TYPE_HW_ALL 0xfe | 33 | #define DOMAIN_COORD_TYPE_HW_ALL 0xfe |
34 | 34 | ||
35 | #define ACPI_CSTATE_SYSTEMIO (0) | 35 | #define ACPI_CSTATE_SYSTEMIO 0 |
36 | #define ACPI_CSTATE_FFH (1) | 36 | #define ACPI_CSTATE_FFH 1 |
37 | #define ACPI_CSTATE_HALT (2) | 37 | #define ACPI_CSTATE_HALT 2 |
38 | |||
39 | #define ACPI_CX_DESC_LEN 32 | ||
38 | 40 | ||
39 | /* Power Management */ | 41 | /* Power Management */ |
40 | 42 | ||
@@ -74,6 +76,7 @@ struct acpi_processor_cx { | |||
74 | u64 time; | 76 | u64 time; |
75 | struct acpi_processor_cx_policy promotion; | 77 | struct acpi_processor_cx_policy promotion; |
76 | struct acpi_processor_cx_policy demotion; | 78 | struct acpi_processor_cx_policy demotion; |
79 | char desc[ACPI_CX_DESC_LEN]; | ||
77 | }; | 80 | }; |
78 | 81 | ||
79 | struct acpi_processor_power { | 82 | struct acpi_processor_power { |
diff --git a/include/asm-m68knommu/cacheflush.h b/include/asm-m68knommu/cacheflush.h index 29bc0aad2ebc..87e5dc0413b4 100644 --- a/include/asm-m68knommu/cacheflush.h +++ b/include/asm-m68knommu/cacheflush.h | |||
@@ -54,28 +54,28 @@ static inline void __flush_cache_all(void) | |||
54 | #if defined(CONFIG_M527x) || defined(CONFIG_M528x) | 54 | #if defined(CONFIG_M527x) || defined(CONFIG_M528x) |
55 | __asm__ __volatile__ ( | 55 | __asm__ __volatile__ ( |
56 | "movel #0x81000200, %%d0\n\t" | 56 | "movel #0x81000200, %%d0\n\t" |
57 | "movec %%d0, %%CACR\n\t" | 57 | "movec %%d0, %%CACR\n\t" |
58 | "nop\n\t" | 58 | "nop\n\t" |
59 | : : : "d0" ); | 59 | : : : "d0" ); |
60 | #endif /* CONFIG_M527x || CONFIG_M528x */ | 60 | #endif /* CONFIG_M527x || CONFIG_M528x */ |
61 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) | 61 | #if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272) |
62 | __asm__ __volatile__ ( | 62 | __asm__ __volatile__ ( |
63 | "movel #0x81000100, %%d0\n\t" | 63 | "movel #0x81000100, %%d0\n\t" |
64 | "movec %%d0, %%CACR\n\t" | 64 | "movec %%d0, %%CACR\n\t" |
65 | "nop\n\t" | 65 | "nop\n\t" |
66 | : : : "d0" ); | 66 | : : : "d0" ); |
67 | #endif /* CONFIG_M5206 || CONFIG_M5206e || CONFIG_M5272 */ | 67 | #endif /* CONFIG_M5206 || CONFIG_M5206e || CONFIG_M5272 */ |
68 | #ifdef CONFIG_M5249 | 68 | #ifdef CONFIG_M5249 |
69 | __asm__ __volatile__ ( | 69 | __asm__ __volatile__ ( |
70 | "movel #0xa1000200, %%d0\n\t" | 70 | "movel #0xa1000200, %%d0\n\t" |
71 | "movec %%d0, %%CACR\n\t" | 71 | "movec %%d0, %%CACR\n\t" |
72 | "nop\n\t" | 72 | "nop\n\t" |
73 | : : : "d0" ); | 73 | : : : "d0" ); |
74 | #endif /* CONFIG_M5249 */ | 74 | #endif /* CONFIG_M5249 */ |
75 | #ifdef CONFIG_M532x | 75 | #ifdef CONFIG_M532x |
76 | __asm__ __volatile__ ( | 76 | __asm__ __volatile__ ( |
77 | "movel #0x81000200, %%d0\n\t" | 77 | "movel #0x81000200, %%d0\n\t" |
78 | "movec %%d0, %%CACR\n\t" | 78 | "movec %%d0, %%CACR\n\t" |
79 | "nop\n\t" | 79 | "nop\n\t" |
80 | : : : "d0" ); | 80 | : : : "d0" ); |
81 | #endif /* CONFIG_M532x */ | 81 | #endif /* CONFIG_M532x */ |
diff --git a/include/asm-m68knommu/system.h b/include/asm-m68knommu/system.h index 039ab3f81732..64c64432bbb8 100644 --- a/include/asm-m68knommu/system.h +++ b/include/asm-m68knommu/system.h | |||
@@ -104,7 +104,7 @@ asmlinkage void resume(void); | |||
104 | #define mb() asm volatile ("" : : :"memory") | 104 | #define mb() asm volatile ("" : : :"memory") |
105 | #define rmb() asm volatile ("" : : :"memory") | 105 | #define rmb() asm volatile ("" : : :"memory") |
106 | #define wmb() asm volatile ("" : : :"memory") | 106 | #define wmb() asm volatile ("" : : :"memory") |
107 | #define set_mb(var, value) do { xchg(&var, value); } while (0) | 107 | #define set_mb(var, value) ({ (var) = (value); wmb(); }) |
108 | 108 | ||
109 | #ifdef CONFIG_SMP | 109 | #ifdef CONFIG_SMP |
110 | #define smp_mb() mb() | 110 | #define smp_mb() mb() |
diff --git a/include/asm-powerpc/systbl.h b/include/asm-powerpc/systbl.h index e996521fb3a6..ae7085c65692 100644 --- a/include/asm-powerpc/systbl.h +++ b/include/asm-powerpc/systbl.h | |||
@@ -309,8 +309,10 @@ SYSCALL_SPU(getcpu) | |||
309 | COMPAT_SYS(epoll_pwait) | 309 | COMPAT_SYS(epoll_pwait) |
310 | COMPAT_SYS_SPU(utimensat) | 310 | COMPAT_SYS_SPU(utimensat) |
311 | COMPAT_SYS_SPU(signalfd) | 311 | COMPAT_SYS_SPU(signalfd) |
312 | SYSCALL(ni_syscall) | 312 | SYSCALL_SPU(timerfd_create) |
313 | SYSCALL_SPU(eventfd) | 313 | SYSCALL_SPU(eventfd) |
314 | COMPAT_SYS_SPU(sync_file_range2) | 314 | COMPAT_SYS_SPU(sync_file_range2) |
315 | COMPAT_SYS(fallocate) | 315 | COMPAT_SYS(fallocate) |
316 | SYSCALL(subpage_prot) | 316 | SYSCALL(subpage_prot) |
317 | COMPAT_SYS_SPU(timerfd_settime) | ||
318 | COMPAT_SYS_SPU(timerfd_gettime) | ||
diff --git a/include/asm-powerpc/unistd.h b/include/asm-powerpc/unistd.h index fedc4b8e49e2..ce91bb662063 100644 --- a/include/asm-powerpc/unistd.h +++ b/include/asm-powerpc/unistd.h | |||
@@ -328,15 +328,17 @@ | |||
328 | #define __NR_epoll_pwait 303 | 328 | #define __NR_epoll_pwait 303 |
329 | #define __NR_utimensat 304 | 329 | #define __NR_utimensat 304 |
330 | #define __NR_signalfd 305 | 330 | #define __NR_signalfd 305 |
331 | #define __NR_timerfd 306 | 331 | #define __NR_timerfd_create 306 |
332 | #define __NR_eventfd 307 | 332 | #define __NR_eventfd 307 |
333 | #define __NR_sync_file_range2 308 | 333 | #define __NR_sync_file_range2 308 |
334 | #define __NR_fallocate 309 | 334 | #define __NR_fallocate 309 |
335 | #define __NR_subpage_prot 310 | 335 | #define __NR_subpage_prot 310 |
336 | #define __NR_timerfd_settime 311 | ||
337 | #define __NR_timerfd_gettime 312 | ||
336 | 338 | ||
337 | #ifdef __KERNEL__ | 339 | #ifdef __KERNEL__ |
338 | 340 | ||
339 | #define __NR_syscalls 311 | 341 | #define __NR_syscalls 313 |
340 | 342 | ||
341 | #define __NR__exit __NR_exit | 343 | #define __NR__exit __NR_exit |
342 | #define NR_syscalls __NR_syscalls | 344 | #define NR_syscalls __NR_syscalls |
diff --git a/include/asm-ppc/page.h b/include/asm-ppc/page.h index ad4c5a1bc9d6..37e4756b6b2d 100644 --- a/include/asm-ppc/page.h +++ b/include/asm-ppc/page.h | |||
@@ -125,6 +125,8 @@ extern __inline__ int get_order(unsigned long size) | |||
125 | return 32 - lz; | 125 | return 32 - lz; |
126 | } | 126 | } |
127 | 127 | ||
128 | typedef struct page *pgtable_t; | ||
129 | |||
128 | #endif /* __ASSEMBLY__ */ | 130 | #endif /* __ASSEMBLY__ */ |
129 | 131 | ||
130 | #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \ | 132 | #define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \ |
diff --git a/include/asm-sh/bugs.h b/include/asm-sh/bugs.h index def8128b8b78..cfda7d5bf026 100644 --- a/include/asm-sh/bugs.h +++ b/include/asm-sh/bugs.h | |||
@@ -39,7 +39,7 @@ static void __init check_bugs(void) | |||
39 | *p++ = '4'; | 39 | *p++ = '4'; |
40 | *p++ = 'a'; | 40 | *p++ = 'a'; |
41 | break; | 41 | break; |
42 | case CPU_SH7343 ... CPU_SH7722: | 42 | case CPU_SH7343 ... CPU_SH7366: |
43 | *p++ = '4'; | 43 | *p++ = '4'; |
44 | *p++ = 'a'; | 44 | *p++ = 'a'; |
45 | *p++ = 'l'; | 45 | *p++ = 'l'; |
diff --git a/include/asm-sh/cpu-sh4/freq.h b/include/asm-sh/cpu-sh4/freq.h index 1ac10b9a078f..ec028c649215 100644 --- a/include/asm-sh/cpu-sh4/freq.h +++ b/include/asm-sh/cpu-sh4/freq.h | |||
@@ -10,12 +10,14 @@ | |||
10 | #ifndef __ASM_CPU_SH4_FREQ_H | 10 | #ifndef __ASM_CPU_SH4_FREQ_H |
11 | #define __ASM_CPU_SH4_FREQ_H | 11 | #define __ASM_CPU_SH4_FREQ_H |
12 | 12 | ||
13 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | 13 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) || defined(CONFIG_CPU_SUBTYPE_SH7366) |
14 | #define FRQCR 0xa4150000 | 14 | #define FRQCR 0xa4150000 |
15 | #define VCLKCR 0xa4150004 | 15 | #define VCLKCR 0xa4150004 |
16 | #define SCLKACR 0xa4150008 | 16 | #define SCLKACR 0xa4150008 |
17 | #define SCLKBCR 0xa415000c | 17 | #define SCLKBCR 0xa415000c |
18 | #if defined(CONFIG_CPU_SUBTYPE_SH7722) | ||
18 | #define IrDACLKCR 0xa4150010 | 19 | #define IrDACLKCR 0xa4150010 |
20 | #endif | ||
19 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 21 | #elif defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
20 | defined(CONFIG_CPU_SUBTYPE_SH7780) | 22 | defined(CONFIG_CPU_SUBTYPE_SH7780) |
21 | #define FRQCR 0xffc80000 | 23 | #define FRQCR 0xffc80000 |
diff --git a/include/asm-sh/cpu-sh5/cacheflush.h b/include/asm-sh/cpu-sh5/cacheflush.h index 98edb5b1da32..5a11f0b7e66a 100644 --- a/include/asm-sh/cpu-sh5/cacheflush.h +++ b/include/asm-sh/cpu-sh5/cacheflush.h | |||
@@ -3,15 +3,13 @@ | |||
3 | 3 | ||
4 | #ifndef __ASSEMBLY__ | 4 | #ifndef __ASSEMBLY__ |
5 | 5 | ||
6 | #include <asm/page.h> | ||
7 | |||
8 | struct vm_area_struct; | 6 | struct vm_area_struct; |
9 | struct page; | 7 | struct page; |
10 | struct mm_struct; | 8 | struct mm_struct; |
11 | 9 | ||
12 | extern void flush_cache_all(void); | 10 | extern void flush_cache_all(void); |
13 | extern void flush_cache_mm(struct mm_struct *mm); | 11 | extern void flush_cache_mm(struct mm_struct *mm); |
14 | extern void flush_cache_sigtramp(unsigned long start, unsigned long end); | 12 | extern void flush_cache_sigtramp(unsigned long vaddr); |
15 | extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, | 13 | extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, |
16 | unsigned long end); | 14 | unsigned long end); |
17 | extern void flush_cache_page(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn); | 15 | extern void flush_cache_page(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn); |
@@ -27,7 +25,7 @@ extern void flush_icache_user_range(struct vm_area_struct *vma, | |||
27 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) | 25 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) |
28 | 26 | ||
29 | #define flush_icache_page(vma, page) do { } while (0) | 27 | #define flush_icache_page(vma, page) do { } while (0) |
30 | #define p3_cache_init() do { } while (0) | 28 | void p3_cache_init(void); |
31 | 29 | ||
32 | #endif /* __ASSEMBLY__ */ | 30 | #endif /* __ASSEMBLY__ */ |
33 | 31 | ||
diff --git a/include/asm-sh/cpu-sh5/mmu_context.h b/include/asm-sh/cpu-sh5/mmu_context.h index df857fc09960..68a1d2cff457 100644 --- a/include/asm-sh/cpu-sh5/mmu_context.h +++ b/include/asm-sh/cpu-sh5/mmu_context.h | |||
@@ -16,12 +16,6 @@ | |||
16 | /* This has to be a common function because the next location to fill | 16 | /* This has to be a common function because the next location to fill |
17 | * information is shared. */ | 17 | * information is shared. */ |
18 | extern void __do_tlb_refill(unsigned long address, unsigned long long is_text_not_data, pte_t *pte); | 18 | extern void __do_tlb_refill(unsigned long address, unsigned long long is_text_not_data, pte_t *pte); |
19 | |||
20 | /* Profiling counter. */ | ||
21 | #ifdef CONFIG_SH64_PROC_TLB | ||
22 | extern unsigned long long calls_to_do_fast_page_fault; | ||
23 | #endif | ||
24 | |||
25 | #endif /* __ASSEMBLY__ */ | 19 | #endif /* __ASSEMBLY__ */ |
26 | 20 | ||
27 | #endif /* __ASM_SH_CPU_SH5_MMU_CONTEXT_H */ | 21 | #endif /* __ASM_SH_CPU_SH5_MMU_CONTEXT_H */ |
diff --git a/include/asm-sh/hp6xx.h b/include/asm-sh/hp6xx.h index 53ca5643d9c7..0d4165a32dcd 100644 --- a/include/asm-sh/hp6xx.h +++ b/include/asm-sh/hp6xx.h | |||
@@ -10,9 +10,9 @@ | |||
10 | * | 10 | * |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #define HP680_BTN_IRQ 32 /* IRQ0_IRQ */ | 13 | #define HP680_BTN_IRQ 32 /* IRQ0_IRQ */ |
14 | #define HP680_TS_IRQ 35 /* IRQ3_IRQ */ | 14 | #define HP680_TS_IRQ 35 /* IRQ3_IRQ */ |
15 | #define HP680_HD64461_IRQ 36 /* IRQ4_IRQ */ | 15 | #define HP680_HD64461_IRQ 36 /* IRQ4_IRQ */ |
16 | 16 | ||
17 | #define DAC_LCD_BRIGHTNESS 0 | 17 | #define DAC_LCD_BRIGHTNESS 0 |
18 | #define DAC_SPEAKER_VOLUME 1 | 18 | #define DAC_SPEAKER_VOLUME 1 |
@@ -55,26 +55,4 @@ | |||
55 | #define PJDR 0xa4000130 | 55 | #define PJDR 0xa4000130 |
56 | #define PKDR 0xa4000132 | 56 | #define PKDR 0xa4000132 |
57 | 57 | ||
58 | static inline void hp6xx_led_red(int on) | ||
59 | { | ||
60 | u16 v16; | ||
61 | v16 = ctrl_inw(CONFIG_HD64461_IOBASE + HD64461_GPBDR - 0x10000); | ||
62 | if (on) | ||
63 | ctrl_outw(v16 & (~HD64461_GPBDR_LED_RED), CONFIG_HD64461_IOBASE + HD64461_GPBDR - 0x10000); | ||
64 | else | ||
65 | ctrl_outw(v16 | HD64461_GPBDR_LED_RED, CONFIG_HD64461_IOBASE + HD64461_GPBDR - 0x10000); | ||
66 | } | ||
67 | |||
68 | static inline void hp6xx_led_green(int on) | ||
69 | { | ||
70 | u8 v8; | ||
71 | |||
72 | v8 = ctrl_inb(PKDR); | ||
73 | if (on) | ||
74 | ctrl_outb(v8 & (~PKDR_LED_GREEN), PKDR); | ||
75 | else | ||
76 | ctrl_outb(v8 | PKDR_LED_GREEN, PKDR); | ||
77 | } | ||
78 | |||
79 | |||
80 | #endif /* __ASM_SH_HP6XX_H */ | 58 | #endif /* __ASM_SH_HP6XX_H */ |
diff --git a/include/asm-sh/io.h b/include/asm-sh/io.h index 94900c089519..356e50d06745 100644 --- a/include/asm-sh/io.h +++ b/include/asm-sh/io.h | |||
@@ -38,6 +38,7 @@ | |||
38 | */ | 38 | */ |
39 | #define __IO_PREFIX generic | 39 | #define __IO_PREFIX generic |
40 | #include <asm/io_generic.h> | 40 | #include <asm/io_generic.h> |
41 | #include <asm/io_trapped.h> | ||
41 | 42 | ||
42 | #define maybebadio(port) \ | 43 | #define maybebadio(port) \ |
43 | printk(KERN_ERR "bad PC-like io %s:%u for port 0x%lx at 0x%08x\n", \ | 44 | printk(KERN_ERR "bad PC-like io %s:%u for port 0x%lx at 0x%08x\n", \ |
@@ -181,13 +182,13 @@ __BUILD_MEMORY_STRING(w, u16) | |||
181 | #define iowrite32(v,a) writel((v),(a)) | 182 | #define iowrite32(v,a) writel((v),(a)) |
182 | #define iowrite32be(v,a) __raw_writel(cpu_to_be32((v)),(a)) | 183 | #define iowrite32be(v,a) __raw_writel(cpu_to_be32((v)),(a)) |
183 | 184 | ||
184 | #define ioread8_rep(a,d,c) insb((a),(d),(c)) | 185 | #define ioread8_rep(a, d, c) readsb((a), (d), (c)) |
185 | #define ioread16_rep(a,d,c) insw((a),(d),(c)) | 186 | #define ioread16_rep(a, d, c) readsw((a), (d), (c)) |
186 | #define ioread32_rep(a,d,c) insl((a),(d),(c)) | 187 | #define ioread32_rep(a, d, c) readsl((a), (d), (c)) |
187 | 188 | ||
188 | #define iowrite8_rep(a,s,c) outsb((a),(s),(c)) | 189 | #define iowrite8_rep(a, s, c) writesb((a), (s), (c)) |
189 | #define iowrite16_rep(a,s,c) outsw((a),(s),(c)) | 190 | #define iowrite16_rep(a, s, c) writesw((a), (s), (c)) |
190 | #define iowrite32_rep(a,s,c) outsl((a),(s),(c)) | 191 | #define iowrite32_rep(a, s, c) writesl((a), (s), (c)) |
191 | 192 | ||
192 | #define mmiowb() wmb() /* synco on SH-4A, otherwise a nop */ | 193 | #define mmiowb() wmb() /* synco on SH-4A, otherwise a nop */ |
193 | 194 | ||
@@ -207,6 +208,8 @@ static inline void __set_io_port_base(unsigned long pbase) | |||
207 | generic_io_base = pbase; | 208 | generic_io_base = pbase; |
208 | } | 209 | } |
209 | 210 | ||
211 | #define __ioport_map(p, n) sh_mv.mv_ioport_map((p), (n)) | ||
212 | |||
210 | /* We really want to try and get these to memcpy etc */ | 213 | /* We really want to try and get these to memcpy etc */ |
211 | extern void memcpy_fromio(void *, volatile void __iomem *, unsigned long); | 214 | extern void memcpy_fromio(void *, volatile void __iomem *, unsigned long); |
212 | extern void memcpy_toio(volatile void __iomem *, const void *, unsigned long); | 215 | extern void memcpy_toio(volatile void __iomem *, const void *, unsigned long); |
@@ -309,7 +312,14 @@ __ioremap_mode(unsigned long offset, unsigned long size, unsigned long flags) | |||
309 | { | 312 | { |
310 | #ifdef CONFIG_SUPERH32 | 313 | #ifdef CONFIG_SUPERH32 |
311 | unsigned long last_addr = offset + size - 1; | 314 | unsigned long last_addr = offset + size - 1; |
315 | #endif | ||
316 | void __iomem *ret; | ||
312 | 317 | ||
318 | ret = __ioremap_trapped(offset, size); | ||
319 | if (ret) | ||
320 | return ret; | ||
321 | |||
322 | #ifdef CONFIG_SUPERH32 | ||
313 | /* | 323 | /* |
314 | * For P1 and P2 space this is trivial, as everything is already | 324 | * For P1 and P2 space this is trivial, as everything is already |
315 | * mapped. Uncached access for P1 addresses are done through P2. | 325 | * mapped. Uncached access for P1 addresses are done through P2. |
diff --git a/include/asm-sh/io_trapped.h b/include/asm-sh/io_trapped.h new file mode 100644 index 000000000000..f1251d4f0ba9 --- /dev/null +++ b/include/asm-sh/io_trapped.h | |||
@@ -0,0 +1,58 @@ | |||
1 | #ifndef __ASM_SH_IO_TRAPPED_H | ||
2 | #define __ASM_SH_IO_TRAPPED_H | ||
3 | |||
4 | #include <linux/list.h> | ||
5 | #include <linux/ioport.h> | ||
6 | #include <asm/page.h> | ||
7 | |||
8 | #define IO_TRAPPED_MAGIC 0xfeedbeef | ||
9 | |||
10 | struct trapped_io { | ||
11 | unsigned int magic; | ||
12 | struct resource *resource; | ||
13 | unsigned int num_resources; | ||
14 | unsigned int minimum_bus_width; | ||
15 | struct list_head list; | ||
16 | void __iomem *virt_base; | ||
17 | } __aligned(PAGE_SIZE); | ||
18 | |||
19 | #ifdef CONFIG_IO_TRAPPED | ||
20 | int register_trapped_io(struct trapped_io *tiop); | ||
21 | int handle_trapped_io(struct pt_regs *regs, unsigned long address); | ||
22 | |||
23 | void __iomem *match_trapped_io_handler(struct list_head *list, | ||
24 | unsigned long offset, | ||
25 | unsigned long size); | ||
26 | |||
27 | #ifdef CONFIG_HAS_IOMEM | ||
28 | extern struct list_head trapped_mem; | ||
29 | |||
30 | static inline void __iomem * | ||
31 | __ioremap_trapped(unsigned long offset, unsigned long size) | ||
32 | { | ||
33 | return match_trapped_io_handler(&trapped_mem, offset, size); | ||
34 | } | ||
35 | #else | ||
36 | #define __ioremap_trapped(offset, size) NULL | ||
37 | #endif | ||
38 | |||
39 | #ifdef CONFIG_HAS_IOPORT | ||
40 | extern struct list_head trapped_io; | ||
41 | |||
42 | static inline void __iomem * | ||
43 | __ioport_map_trapped(unsigned long offset, unsigned long size) | ||
44 | { | ||
45 | return match_trapped_io_handler(&trapped_io, offset, size); | ||
46 | } | ||
47 | #else | ||
48 | #define __ioport_map_trapped(offset, size) NULL | ||
49 | #endif | ||
50 | |||
51 | #else | ||
52 | #define register_trapped_io(tiop) (-1) | ||
53 | #define handle_trapped_io(tiop, address) 0 | ||
54 | #define __ioremap_trapped(offset, size) NULL | ||
55 | #define __ioport_map_trapped(offset, size) NULL | ||
56 | #endif | ||
57 | |||
58 | #endif /* __ASM_SH_IO_TRAPPED_H */ | ||
diff --git a/include/asm-sh/ioctls.h b/include/asm-sh/ioctls.h index 35805df010a0..c212c371a4a5 100644 --- a/include/asm-sh/ioctls.h +++ b/include/asm-sh/ioctls.h | |||
@@ -78,6 +78,10 @@ | |||
78 | #define TIOCSBRK _IO('T', 39) /* 0x5427 */ /* BSD compatibility */ | 78 | #define TIOCSBRK _IO('T', 39) /* 0x5427 */ /* BSD compatibility */ |
79 | #define TIOCCBRK _IO('T', 40) /* 0x5428 */ /* BSD compatibility */ | 79 | #define TIOCCBRK _IO('T', 40) /* 0x5428 */ /* BSD compatibility */ |
80 | #define TIOCGSID _IOR('T', 41, pid_t) /* 0x5429 */ /* Return the session ID of FD */ | 80 | #define TIOCGSID _IOR('T', 41, pid_t) /* 0x5429 */ /* Return the session ID of FD */ |
81 | #define TCGETS2 _IOR('T', 42, struct termios2) | ||
82 | #define TCSETS2 _IOW('T', 43, struct termios2) | ||
83 | #define TCSETSW2 _IOW('T', 44, struct termios2) | ||
84 | #define TCSETSF2 _IOW('T', 45, struct termios2) | ||
81 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 85 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
82 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 86 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
83 | 87 | ||
diff --git a/include/asm-sh/irq.h b/include/asm-sh/irq.h index 11850f65c922..ca66e5df69dc 100644 --- a/include/asm-sh/irq.h +++ b/include/asm-sh/irq.h | |||
@@ -50,4 +50,8 @@ extern void irq_ctx_exit(int cpu); | |||
50 | # define irq_ctx_exit(cpu) do { } while (0) | 50 | # define irq_ctx_exit(cpu) do { } while (0) |
51 | #endif | 51 | #endif |
52 | 52 | ||
53 | #ifdef CONFIG_CPU_SH5 | ||
54 | #include <asm/cpu/irq.h> | ||
55 | #endif | ||
56 | |||
53 | #endif /* __ASM_SH_IRQ_H */ | 57 | #endif /* __ASM_SH_IRQ_H */ |
diff --git a/include/asm-sh/mmu_context_64.h b/include/asm-sh/mmu_context_64.h index 020be744b088..9649f1c07caf 100644 --- a/include/asm-sh/mmu_context_64.h +++ b/include/asm-sh/mmu_context_64.h | |||
@@ -66,6 +66,9 @@ static inline void set_asid(unsigned long asid) | |||
66 | : "=r" (sr), "=r" (pc) : "0" (sr)); | 66 | : "=r" (sr), "=r" (pc) : "0" (sr)); |
67 | } | 67 | } |
68 | 68 | ||
69 | /* arch/sh/kernel/cpu/sh5/entry.S */ | ||
70 | extern unsigned long switch_and_save_asid(unsigned long new_asid); | ||
71 | |||
69 | /* No spare register to twiddle, so use a software cache */ | 72 | /* No spare register to twiddle, so use a software cache */ |
70 | extern pgd_t *mmu_pdtp_cache; | 73 | extern pgd_t *mmu_pdtp_cache; |
71 | 74 | ||
diff --git a/include/asm-sh/page.h b/include/asm-sh/page.h index 134562dc8c45..304c30b5d947 100644 --- a/include/asm-sh/page.h +++ b/include/asm-sh/page.h | |||
@@ -55,11 +55,14 @@ extern void clear_page(void *to); | |||
55 | extern void copy_page(void *to, void *from); | 55 | extern void copy_page(void *to, void *from); |
56 | 56 | ||
57 | #if !defined(CONFIG_CACHE_OFF) && defined(CONFIG_MMU) && \ | 57 | #if !defined(CONFIG_CACHE_OFF) && defined(CONFIG_MMU) && \ |
58 | (defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)) | 58 | (defined(CONFIG_CPU_SH5) || defined(CONFIG_CPU_SH4) || \ |
59 | defined(CONFIG_SH7705_CACHE_32KB)) | ||
59 | struct page; | 60 | struct page; |
60 | struct vm_area_struct; | 61 | struct vm_area_struct; |
61 | extern void clear_user_page(void *to, unsigned long address, struct page *page); | 62 | extern void clear_user_page(void *to, unsigned long address, struct page *page); |
62 | #ifdef CONFIG_CPU_SH4 | 63 | extern void copy_user_page(void *to, void *from, unsigned long address, |
64 | struct page *page); | ||
65 | #if defined(CONFIG_CPU_SH4) | ||
63 | extern void copy_user_highpage(struct page *to, struct page *from, | 66 | extern void copy_user_highpage(struct page *to, struct page *from, |
64 | unsigned long vaddr, struct vm_area_struct *vma); | 67 | unsigned long vaddr, struct vm_area_struct *vma); |
65 | #define __HAVE_ARCH_COPY_USER_HIGHPAGE | 68 | #define __HAVE_ARCH_COPY_USER_HIGHPAGE |
diff --git a/include/asm-sh/pgtable_64.h b/include/asm-sh/pgtable_64.h index 972211671c9a..f9dd9d311441 100644 --- a/include/asm-sh/pgtable_64.h +++ b/include/asm-sh/pgtable_64.h | |||
@@ -138,6 +138,14 @@ static __inline__ void pmd_set(pmd_t *pmdp,pte_t *ptep) | |||
138 | #endif | 138 | #endif |
139 | 139 | ||
140 | /* | 140 | /* |
141 | * Stub out _PAGE_SZHUGE if we don't have a good definition for it, | ||
142 | * to make pte_mkhuge() happy. | ||
143 | */ | ||
144 | #ifndef _PAGE_SZHUGE | ||
145 | # define _PAGE_SZHUGE (0) | ||
146 | #endif | ||
147 | |||
148 | /* | ||
141 | * Default flags for a Kernel page. | 149 | * Default flags for a Kernel page. |
142 | * This is fundametally also SHARED because the main use of this define | 150 | * This is fundametally also SHARED because the main use of this define |
143 | * (other than for PGD/PMD entries) is for the VMALLOC pool which is | 151 | * (other than for PGD/PMD entries) is for the VMALLOC pool which is |
@@ -179,6 +187,11 @@ static __inline__ void pmd_set(pmd_t *pmdp,pte_t *ptep) | |||
179 | _PAGE_WRITE | _PAGE_EXECUTE) | 187 | _PAGE_WRITE | _PAGE_EXECUTE) |
180 | #define PAGE_KERNEL __pgprot(_KERNPG_TABLE) | 188 | #define PAGE_KERNEL __pgprot(_KERNPG_TABLE) |
181 | 189 | ||
190 | #define PAGE_KERNEL_NOCACHE \ | ||
191 | __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \ | ||
192 | _PAGE_EXECUTE | _PAGE_ACCESSED | \ | ||
193 | _PAGE_DIRTY | _PAGE_SHARED) | ||
194 | |||
182 | /* Make it a device mapping for maximum safety (e.g. for mapping device | 195 | /* Make it a device mapping for maximum safety (e.g. for mapping device |
183 | registers into user-space via /dev/map). */ | 196 | registers into user-space via /dev/map). */ |
184 | #define pgprot_noncached(x) __pgprot(((x).pgprot & ~(_PAGE_CACHABLE)) | _PAGE_DEVICE) | 197 | #define pgprot_noncached(x) __pgprot(((x).pgprot & ~(_PAGE_CACHABLE)) | _PAGE_DEVICE) |
diff --git a/include/asm-sh/processor.h b/include/asm-sh/processor.h index c9b14161f73d..19fe47c1ca17 100644 --- a/include/asm-sh/processor.h +++ b/include/asm-sh/processor.h | |||
@@ -33,7 +33,7 @@ enum cpu_type { | |||
33 | CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SHX3, | 33 | CPU_SH7763, CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SHX3, |
34 | 34 | ||
35 | /* SH4AL-DSP types */ | 35 | /* SH4AL-DSP types */ |
36 | CPU_SH7343, CPU_SH7722, | 36 | CPU_SH7343, CPU_SH7722, CPU_SH7366, |
37 | 37 | ||
38 | /* SH-5 types */ | 38 | /* SH-5 types */ |
39 | CPU_SH5_101, CPU_SH5_103, | 39 | CPU_SH5_101, CPU_SH5_103, |
diff --git a/include/asm-sh/r7780rp.h b/include/asm-sh/r7780rp.h index bdecea0840a0..1770460a4616 100644 --- a/include/asm-sh/r7780rp.h +++ b/include/asm-sh/r7780rp.h | |||
@@ -195,7 +195,4 @@ unsigned char *highlander_init_irq_r7780mp(void); | |||
195 | unsigned char *highlander_init_irq_r7780rp(void); | 195 | unsigned char *highlander_init_irq_r7780rp(void); |
196 | unsigned char *highlander_init_irq_r7785rp(void); | 196 | unsigned char *highlander_init_irq_r7785rp(void); |
197 | 197 | ||
198 | #define __IO_PREFIX r7780rp | ||
199 | #include <asm/io_generic.h> | ||
200 | |||
201 | #endif /* __ASM_SH_RENESAS_R7780RP */ | 198 | #endif /* __ASM_SH_RENESAS_R7780RP */ |
diff --git a/include/asm-sh/rts7751r2d.h b/include/asm-sh/rts7751r2d.h index 83b9c111f171..0a800157b826 100644 --- a/include/asm-sh/rts7751r2d.h +++ b/include/asm-sh/rts7751r2d.h | |||
@@ -67,7 +67,4 @@ | |||
67 | void init_rts7751r2d_IRQ(void); | 67 | void init_rts7751r2d_IRQ(void); |
68 | int rts7751r2d_irq_demux(int); | 68 | int rts7751r2d_irq_demux(int); |
69 | 69 | ||
70 | #define __IO_PREFIX rts7751r2d | ||
71 | #include <asm/io_generic.h> | ||
72 | |||
73 | #endif /* __ASM_SH_RENESAS_RTS7751R2D */ | 70 | #endif /* __ASM_SH_RENESAS_RTS7751R2D */ |
diff --git a/include/asm-sh/system.h b/include/asm-sh/system.h index 772cd1a0a674..5145aa2a0ce9 100644 --- a/include/asm-sh/system.h +++ b/include/asm-sh/system.h | |||
@@ -182,6 +182,11 @@ BUILD_TRAP_HANDLER(fpu_state_restore); | |||
182 | 182 | ||
183 | #define arch_align_stack(x) (x) | 183 | #define arch_align_stack(x) (x) |
184 | 184 | ||
185 | struct mem_access { | ||
186 | unsigned long (*from)(void *dst, const void *src, unsigned long cnt); | ||
187 | unsigned long (*to)(void *dst, const void *src, unsigned long cnt); | ||
188 | }; | ||
189 | |||
185 | #ifdef CONFIG_SUPERH32 | 190 | #ifdef CONFIG_SUPERH32 |
186 | # include "system_32.h" | 191 | # include "system_32.h" |
187 | #else | 192 | #else |
diff --git a/include/asm-sh/system_32.h b/include/asm-sh/system_32.h index 7ff08d956ba8..f11bcf0855ed 100644 --- a/include/asm-sh/system_32.h +++ b/include/asm-sh/system_32.h | |||
@@ -96,4 +96,7 @@ do { \ | |||
96 | : "=&r" (__dummy)); \ | 96 | : "=&r" (__dummy)); \ |
97 | } while (0) | 97 | } while (0) |
98 | 98 | ||
99 | int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs, | ||
100 | struct mem_access *ma); | ||
101 | |||
99 | #endif /* __ASM_SH_SYSTEM_32_H */ | 102 | #endif /* __ASM_SH_SYSTEM_32_H */ |
diff --git a/include/asm-sh/termbits.h b/include/asm-sh/termbits.h index 7ee1b42eeab0..77db116948cf 100644 --- a/include/asm-sh/termbits.h +++ b/include/asm-sh/termbits.h | |||
@@ -140,6 +140,7 @@ struct ktermios { | |||
140 | #define HUPCL 0002000 | 140 | #define HUPCL 0002000 |
141 | #define CLOCAL 0004000 | 141 | #define CLOCAL 0004000 |
142 | #define CBAUDEX 0010000 | 142 | #define CBAUDEX 0010000 |
143 | #define BOTHER 0010000 | ||
143 | #define B57600 0010001 | 144 | #define B57600 0010001 |
144 | #define B115200 0010002 | 145 | #define B115200 0010002 |
145 | #define B230400 0010003 | 146 | #define B230400 0010003 |
@@ -155,10 +156,12 @@ struct ktermios { | |||
155 | #define B3000000 0010015 | 156 | #define B3000000 0010015 |
156 | #define B3500000 0010016 | 157 | #define B3500000 0010016 |
157 | #define B4000000 0010017 | 158 | #define B4000000 0010017 |
158 | #define CIBAUD 002003600000 /* input baud rate (not used) */ | 159 | #define CIBAUD 002003600000 /* input baud rate */ |
159 | #define CMSPAR 010000000000 /* mark or space (stick) parity */ | 160 | #define CMSPAR 010000000000 /* mark or space (stick) parity */ |
160 | #define CRTSCTS 020000000000 /* flow control */ | 161 | #define CRTSCTS 020000000000 /* flow control */ |
161 | 162 | ||
163 | #define IBSHIFT 16 /* Shift from CBAUD to CIBAUD */ | ||
164 | |||
162 | /* c_lflag bits */ | 165 | /* c_lflag bits */ |
163 | #define ISIG 0000001 | 166 | #define ISIG 0000001 |
164 | #define ICANON 0000002 | 167 | #define ICANON 0000002 |
diff --git a/include/asm-sh/termios.h b/include/asm-sh/termios.h index e7c8f86ef890..0a8c793c76f2 100644 --- a/include/asm-sh/termios.h +++ b/include/asm-sh/termios.h | |||
@@ -80,8 +80,10 @@ struct termio { | |||
80 | copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \ | 80 | copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \ |
81 | }) | 81 | }) |
82 | 82 | ||
83 | #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios)) | 83 | #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios2)) |
84 | #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios)) | 84 | #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2)) |
85 | #define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios)) | ||
86 | #define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios)) | ||
85 | 87 | ||
86 | #endif /* __KERNEL__ */ | 88 | #endif /* __KERNEL__ */ |
87 | 89 | ||
diff --git a/include/asm-sh/tlb.h b/include/asm-sh/tlb.h index 56ad1fb888a2..88ff1ae8a6b8 100644 --- a/include/asm-sh/tlb.h +++ b/include/asm-sh/tlb.h | |||
@@ -20,6 +20,7 @@ | |||
20 | */ | 20 | */ |
21 | #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm) | 21 | #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm) |
22 | 22 | ||
23 | #include <linux/pagemap.h> | ||
23 | #include <asm-generic/tlb.h> | 24 | #include <asm-generic/tlb.h> |
24 | 25 | ||
25 | #endif /* __ASSEMBLY__ */ | 26 | #endif /* __ASSEMBLY__ */ |
diff --git a/include/asm-sh/uaccess.h b/include/asm-sh/uaccess.h index ff24ce95b238..b3440c305b5d 100644 --- a/include/asm-sh/uaccess.h +++ b/include/asm-sh/uaccess.h | |||
@@ -1,5 +1,34 @@ | |||
1 | #ifndef __ASM_SH_UACCESS_H | ||
2 | #define __ASM_SH_UACCESS_H | ||
3 | |||
1 | #ifdef CONFIG_SUPERH32 | 4 | #ifdef CONFIG_SUPERH32 |
2 | # include "uaccess_32.h" | 5 | # include "uaccess_32.h" |
3 | #else | 6 | #else |
4 | # include "uaccess_64.h" | 7 | # include "uaccess_64.h" |
5 | #endif | 8 | #endif |
9 | |||
10 | static inline unsigned long | ||
11 | copy_from_user(void *to, const void __user *from, unsigned long n) | ||
12 | { | ||
13 | unsigned long __copy_from = (unsigned long) from; | ||
14 | __kernel_size_t __copy_size = (__kernel_size_t) n; | ||
15 | |||
16 | if (__copy_size && __access_ok(__copy_from, __copy_size)) | ||
17 | return __copy_user(to, from, __copy_size); | ||
18 | |||
19 | return __copy_size; | ||
20 | } | ||
21 | |||
22 | static inline unsigned long | ||
23 | copy_to_user(void __user *to, const void *from, unsigned long n) | ||
24 | { | ||
25 | unsigned long __copy_to = (unsigned long) to; | ||
26 | __kernel_size_t __copy_size = (__kernel_size_t) n; | ||
27 | |||
28 | if (__copy_size && __access_ok(__copy_to, __copy_size)) | ||
29 | return __copy_user(to, from, __copy_size); | ||
30 | |||
31 | return __copy_size; | ||
32 | } | ||
33 | |||
34 | #endif /* __ASM_SH_UACCESS_H */ | ||
diff --git a/include/asm-sh/uaccess_32.h b/include/asm-sh/uaccess_32.h index b6082f3c1dc4..c0318b608893 100644 --- a/include/asm-sh/uaccess_32.h +++ b/include/asm-sh/uaccess_32.h | |||
@@ -10,8 +10,8 @@ | |||
10 | * Copyright (C) 1996, 1997, 1998 by Ralf Baechle | 10 | * Copyright (C) 1996, 1997, 1998 by Ralf Baechle |
11 | * and i386 version. | 11 | * and i386 version. |
12 | */ | 12 | */ |
13 | #ifndef __ASM_SH_UACCESS_H | 13 | #ifndef __ASM_SH_UACCESS_32_H |
14 | #define __ASM_SH_UACCESS_H | 14 | #define __ASM_SH_UACCESS_32_H |
15 | 15 | ||
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/sched.h> | 17 | #include <linux/sched.h> |
@@ -302,24 +302,6 @@ extern void __put_user_unknown(void); | |||
302 | /* Return the number of bytes NOT copied */ | 302 | /* Return the number of bytes NOT copied */ |
303 | __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n); | 303 | __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n); |
304 | 304 | ||
305 | #define copy_to_user(to,from,n) ({ \ | ||
306 | void *__copy_to = (void *) (to); \ | ||
307 | __kernel_size_t __copy_size = (__kernel_size_t) (n); \ | ||
308 | __kernel_size_t __copy_res; \ | ||
309 | if(__copy_size && __access_ok((unsigned long)__copy_to, __copy_size)) { \ | ||
310 | __copy_res = __copy_user(__copy_to, (void *) (from), __copy_size); \ | ||
311 | } else __copy_res = __copy_size; \ | ||
312 | __copy_res; }) | ||
313 | |||
314 | #define copy_from_user(to,from,n) ({ \ | ||
315 | void *__copy_to = (void *) (to); \ | ||
316 | void *__copy_from = (void *) (from); \ | ||
317 | __kernel_size_t __copy_size = (__kernel_size_t) (n); \ | ||
318 | __kernel_size_t __copy_res; \ | ||
319 | if(__copy_size && __access_ok((unsigned long)__copy_from, __copy_size)) { \ | ||
320 | __copy_res = __copy_user(__copy_to, __copy_from, __copy_size); \ | ||
321 | } else __copy_res = __copy_size; \ | ||
322 | __copy_res; }) | ||
323 | 305 | ||
324 | static __always_inline unsigned long | 306 | static __always_inline unsigned long |
325 | __copy_from_user(void *to, const void __user *from, unsigned long n) | 307 | __copy_from_user(void *to, const void __user *from, unsigned long n) |
@@ -507,4 +489,4 @@ struct exception_table_entry | |||
507 | 489 | ||
508 | extern int fixup_exception(struct pt_regs *regs); | 490 | extern int fixup_exception(struct pt_regs *regs); |
509 | 491 | ||
510 | #endif /* __ASM_SH_UACCESS_H */ | 492 | #endif /* __ASM_SH_UACCESS_32_H */ |
diff --git a/include/asm-sh/uaccess_64.h b/include/asm-sh/uaccess_64.h index d54ec082d25a..f956b7b316c7 100644 --- a/include/asm-sh/uaccess_64.h +++ b/include/asm-sh/uaccess_64.h | |||
@@ -202,15 +202,6 @@ extern void __put_user_unknown(void); | |||
202 | /* XXX: should be such that: 4byte and the rest. */ | 202 | /* XXX: should be such that: 4byte and the rest. */ |
203 | extern __kernel_size_t __copy_user(void *__to, const void *__from, __kernel_size_t __n); | 203 | extern __kernel_size_t __copy_user(void *__to, const void *__from, __kernel_size_t __n); |
204 | 204 | ||
205 | #define copy_to_user(to,from,n) ({ \ | ||
206 | void *__copy_to = (void *) (to); \ | ||
207 | __kernel_size_t __copy_size = (__kernel_size_t) (n); \ | ||
208 | __kernel_size_t __copy_res; \ | ||
209 | if(__copy_size && __access_ok((unsigned long)__copy_to, __copy_size)) { \ | ||
210 | __copy_res = __copy_user(__copy_to, (void *) (from), __copy_size); \ | ||
211 | } else __copy_res = __copy_size; \ | ||
212 | __copy_res; }) | ||
213 | |||
214 | #define copy_to_user_ret(to,from,n,retval) ({ \ | 205 | #define copy_to_user_ret(to,from,n,retval) ({ \ |
215 | if (copy_to_user(to,from,n)) \ | 206 | if (copy_to_user(to,from,n)) \ |
216 | return retval; \ | 207 | return retval; \ |
@@ -225,16 +216,6 @@ if (__copy_to_user(to,from,n)) \ | |||
225 | return retval; \ | 216 | return retval; \ |
226 | }) | 217 | }) |
227 | 218 | ||
228 | #define copy_from_user(to,from,n) ({ \ | ||
229 | void *__copy_to = (void *) (to); \ | ||
230 | void *__copy_from = (void *) (from); \ | ||
231 | __kernel_size_t __copy_size = (__kernel_size_t) (n); \ | ||
232 | __kernel_size_t __copy_res; \ | ||
233 | if(__copy_size && __access_ok((unsigned long)__copy_from, __copy_size)) { \ | ||
234 | __copy_res = __copy_user(__copy_to, __copy_from, __copy_size); \ | ||
235 | } else __copy_res = __copy_size; \ | ||
236 | __copy_res; }) | ||
237 | |||
238 | #define copy_from_user_ret(to,from,n,retval) ({ \ | 219 | #define copy_from_user_ret(to,from,n,retval) ({ \ |
239 | if (copy_from_user(to,from,n)) \ | 220 | if (copy_from_user(to,from,n)) \ |
240 | return retval; \ | 221 | return retval; \ |
diff --git a/include/asm-sh/unistd_32.h b/include/asm-sh/unistd_32.h index 433fd1b48fa2..0b07212ec659 100644 --- a/include/asm-sh/unistd_32.h +++ b/include/asm-sh/unistd_32.h | |||
@@ -330,11 +330,13 @@ | |||
330 | #define __NR_epoll_pwait 319 | 330 | #define __NR_epoll_pwait 319 |
331 | #define __NR_utimensat 320 | 331 | #define __NR_utimensat 320 |
332 | #define __NR_signalfd 321 | 332 | #define __NR_signalfd 321 |
333 | /* #define __NR_timerfd 322 removed */ | 333 | #define __NR_timerfd_create 322 |
334 | #define __NR_eventfd 323 | 334 | #define __NR_eventfd 323 |
335 | #define __NR_fallocate 324 | 335 | #define __NR_fallocate 324 |
336 | #define __NR_timerfd_settime 325 | ||
337 | #define __NR_timerfd_gettime 326 | ||
336 | 338 | ||
337 | #define NR_syscalls 325 | 339 | #define NR_syscalls 327 |
338 | 340 | ||
339 | #ifdef __KERNEL__ | 341 | #ifdef __KERNEL__ |
340 | 342 | ||
diff --git a/include/asm-sh/unistd_64.h b/include/asm-sh/unistd_64.h index 108d2ba897fe..9d21eab52427 100644 --- a/include/asm-sh/unistd_64.h +++ b/include/asm-sh/unistd_64.h | |||
@@ -90,7 +90,7 @@ | |||
90 | #define __NR_sigpending 73 | 90 | #define __NR_sigpending 73 |
91 | #define __NR_sethostname 74 | 91 | #define __NR_sethostname 74 |
92 | #define __NR_setrlimit 75 | 92 | #define __NR_setrlimit 75 |
93 | #define __NR_getrlimit 76 /* Back compatible 2Gig limited rlimit */ | 93 | #define __NR_getrlimit 76 /* Back compatible 2Gig limited rlimit */ |
94 | #define __NR_getrusage 77 | 94 | #define __NR_getrusage 77 |
95 | #define __NR_gettimeofday 78 | 95 | #define __NR_gettimeofday 78 |
96 | #define __NR_settimeofday 79 | 96 | #define __NR_settimeofday 79 |
@@ -370,9 +370,11 @@ | |||
370 | #define __NR_epoll_pwait 347 | 370 | #define __NR_epoll_pwait 347 |
371 | #define __NR_utimensat 348 | 371 | #define __NR_utimensat 348 |
372 | #define __NR_signalfd 349 | 372 | #define __NR_signalfd 349 |
373 | /* #define __NR_timerfd 350 removed */ | 373 | #define __NR_timerfd_create 350 |
374 | #define __NR_eventfd 351 | 374 | #define __NR_eventfd 351 |
375 | #define __NR_fallocate 352 | 375 | #define __NR_fallocate 352 |
376 | #define __NR_timerfd_settime 353 | ||
377 | #define __NR_timerfd_gettime 354 | ||
376 | 378 | ||
377 | #ifdef __KERNEL__ | 379 | #ifdef __KERNEL__ |
378 | 380 | ||
diff --git a/include/asm-x86/cacheflush.h b/include/asm-x86/cacheflush.h index 6a22212b4b20..5396c212d8c0 100644 --- a/include/asm-x86/cacheflush.h +++ b/include/asm-x86/cacheflush.h | |||
@@ -48,12 +48,15 @@ void cpa_init(void); | |||
48 | 48 | ||
49 | #ifdef CONFIG_DEBUG_RODATA | 49 | #ifdef CONFIG_DEBUG_RODATA |
50 | void mark_rodata_ro(void); | 50 | void mark_rodata_ro(void); |
51 | extern const int rodata_test_data; | ||
51 | #endif | 52 | #endif |
53 | |||
52 | #ifdef CONFIG_DEBUG_RODATA_TEST | 54 | #ifdef CONFIG_DEBUG_RODATA_TEST |
53 | void rodata_test(void); | 55 | int rodata_test(void); |
54 | #else | 56 | #else |
55 | static inline void rodata_test(void) | 57 | static inline int rodata_test(void) |
56 | { | 58 | { |
59 | return 0; | ||
57 | } | 60 | } |
58 | #endif | 61 | #endif |
59 | 62 | ||
diff --git a/include/asm-x86/kdebug.h b/include/asm-x86/kdebug.h index dd442a1632c0..99dcbafa1511 100644 --- a/include/asm-x86/kdebug.h +++ b/include/asm-x86/kdebug.h | |||
@@ -31,7 +31,6 @@ extern void show_trace(struct task_struct *t, struct pt_regs *regs, | |||
31 | unsigned long *sp, unsigned long bp); | 31 | unsigned long *sp, unsigned long bp); |
32 | extern void __show_regs(struct pt_regs *regs); | 32 | extern void __show_regs(struct pt_regs *regs); |
33 | extern void show_regs(struct pt_regs *regs); | 33 | extern void show_regs(struct pt_regs *regs); |
34 | extern void dump_pagetable(unsigned long); | ||
35 | extern unsigned long oops_begin(void); | 34 | extern unsigned long oops_begin(void); |
36 | extern void oops_end(unsigned long, struct pt_regs *, int signr); | 35 | extern void oops_end(unsigned long, struct pt_regs *, int signr); |
37 | 36 | ||
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index ddbe7efe590e..2c7e003356ac 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -203,6 +203,7 @@ extern bool wmi_has_guid(const char *guid); | |||
203 | extern int acpi_blacklisted(void); | 203 | extern int acpi_blacklisted(void); |
204 | #ifdef CONFIG_DMI | 204 | #ifdef CONFIG_DMI |
205 | extern void acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d); | 205 | extern void acpi_dmi_osi_linux(int enable, const struct dmi_system_id *d); |
206 | extern int acpi_osi_setup(char *str); | ||
206 | #endif | 207 | #endif |
207 | 208 | ||
208 | #ifdef CONFIG_ACPI_NUMA | 209 | #ifdef CONFIG_ACPI_NUMA |
diff --git a/include/linux/audit.h b/include/linux/audit.h index 97153027207a..2af9ec025015 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
@@ -534,8 +534,7 @@ extern void audit_log_n_untrustedstring(struct audit_buffer *ab, | |||
534 | const char *string); | 534 | const char *string); |
535 | extern void audit_log_d_path(struct audit_buffer *ab, | 535 | extern void audit_log_d_path(struct audit_buffer *ab, |
536 | const char *prefix, | 536 | const char *prefix, |
537 | struct dentry *dentry, | 537 | struct path *path); |
538 | struct vfsmount *vfsmnt); | ||
539 | extern void audit_log_lost(const char *message); | 538 | extern void audit_log_lost(const char *message); |
540 | /* Private API (for audit.c only) */ | 539 | /* Private API (for audit.c only) */ |
541 | extern int audit_filter_user(struct netlink_skb_parms *cb, int type); | 540 | extern int audit_filter_user(struct netlink_skb_parms *cb, int type); |
@@ -552,7 +551,7 @@ extern int audit_enabled; | |||
552 | #define audit_log_hex(a,b,l) do { ; } while (0) | 551 | #define audit_log_hex(a,b,l) do { ; } while (0) |
553 | #define audit_log_untrustedstring(a,s) do { ; } while (0) | 552 | #define audit_log_untrustedstring(a,s) do { ; } while (0) |
554 | #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) | 553 | #define audit_log_n_untrustedstring(a,n,s) do { ; } while (0) |
555 | #define audit_log_d_path(b,p,d,v) do { ; } while (0) | 554 | #define audit_log_d_path(b, p, d) do { ; } while (0) |
556 | #define audit_enabled 0 | 555 | #define audit_enabled 0 |
557 | #endif | 556 | #endif |
558 | #endif | 557 | #endif |
diff --git a/include/linux/configfs.h b/include/linux/configfs.h index 8c6967f3fb11..4b287ad9371a 100644 --- a/include/linux/configfs.h +++ b/include/linux/configfs.h | |||
@@ -37,6 +37,7 @@ | |||
37 | 37 | ||
38 | #ifdef __KERNEL__ | 38 | #ifdef __KERNEL__ |
39 | 39 | ||
40 | #include <linux/kernel.h> | ||
40 | #include <linux/types.h> | 41 | #include <linux/types.h> |
41 | #include <linux/list.h> | 42 | #include <linux/list.h> |
42 | #include <linux/kref.h> | 43 | #include <linux/kref.h> |
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index 385d45b616db..6b72a4584086 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
@@ -19,6 +19,7 @@ | |||
19 | 19 | ||
20 | #define CPUIDLE_STATE_MAX 8 | 20 | #define CPUIDLE_STATE_MAX 8 |
21 | #define CPUIDLE_NAME_LEN 16 | 21 | #define CPUIDLE_NAME_LEN 16 |
22 | #define CPUIDLE_DESC_LEN 32 | ||
22 | 23 | ||
23 | struct cpuidle_device; | 24 | struct cpuidle_device; |
24 | 25 | ||
@@ -29,6 +30,7 @@ struct cpuidle_device; | |||
29 | 30 | ||
30 | struct cpuidle_state { | 31 | struct cpuidle_state { |
31 | char name[CPUIDLE_NAME_LEN]; | 32 | char name[CPUIDLE_NAME_LEN]; |
33 | char desc[CPUIDLE_DESC_LEN]; | ||
32 | void *driver_data; | 34 | void *driver_data; |
33 | 35 | ||
34 | unsigned int flags; | 36 | unsigned int flags; |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index c2c153f97e8f..6bd646096fa6 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <linux/rcupdate.h> | 10 | #include <linux/rcupdate.h> |
11 | 11 | ||
12 | struct nameidata; | 12 | struct nameidata; |
13 | struct path; | ||
13 | struct vfsmount; | 14 | struct vfsmount; |
14 | 15 | ||
15 | /* | 16 | /* |
@@ -300,8 +301,8 @@ extern int d_validate(struct dentry *, struct dentry *); | |||
300 | */ | 301 | */ |
301 | extern char *dynamic_dname(struct dentry *, char *, int, const char *, ...); | 302 | extern char *dynamic_dname(struct dentry *, char *, int, const char *, ...); |
302 | 303 | ||
303 | extern char * d_path(struct dentry *, struct vfsmount *, char *, int); | 304 | extern char *d_path(struct path *, char *, int); |
304 | 305 | ||
305 | /* Allocation counts.. */ | 306 | /* Allocation counts.. */ |
306 | 307 | ||
307 | /** | 308 | /** |
diff --git a/include/linux/dcookies.h b/include/linux/dcookies.h index 98c69ab80c84..24c806f12a6c 100644 --- a/include/linux/dcookies.h +++ b/include/linux/dcookies.h | |||
@@ -13,6 +13,7 @@ | |||
13 | #ifdef CONFIG_PROFILING | 13 | #ifdef CONFIG_PROFILING |
14 | 14 | ||
15 | #include <linux/dcache.h> | 15 | #include <linux/dcache.h> |
16 | #include <linux/path.h> | ||
16 | #include <linux/types.h> | 17 | #include <linux/types.h> |
17 | 18 | ||
18 | struct dcookie_user; | 19 | struct dcookie_user; |
@@ -43,8 +44,7 @@ void dcookie_unregister(struct dcookie_user * user); | |||
43 | * | 44 | * |
44 | * Returns 0 on success, with *cookie filled in | 45 | * Returns 0 on success, with *cookie filled in |
45 | */ | 46 | */ |
46 | int get_dcookie(struct dentry * dentry, struct vfsmount * vfsmnt, | 47 | int get_dcookie(struct path *path, unsigned long *cookie); |
47 | unsigned long * cookie); | ||
48 | 48 | ||
49 | #else | 49 | #else |
50 | 50 | ||
@@ -57,13 +57,12 @@ static inline void dcookie_unregister(struct dcookie_user * user) | |||
57 | { | 57 | { |
58 | return; | 58 | return; |
59 | } | 59 | } |
60 | 60 | ||
61 | static inline int get_dcookie(struct dentry * dentry, | 61 | static inline int get_dcookie(struct path *path, unsigned long *cookie) |
62 | struct vfsmount * vfsmnt, unsigned long * cookie) | ||
63 | { | 62 | { |
64 | return -ENOSYS; | 63 | return -ENOSYS; |
65 | } | 64 | } |
66 | 65 | ||
67 | #endif /* CONFIG_PROFILING */ | 66 | #endif /* CONFIG_PROFILING */ |
68 | 67 | ||
69 | #endif /* DCOOKIES_H */ | 68 | #endif /* DCOOKIES_H */ |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 18cfbf76ec5b..98ffb6ead434 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1284,8 +1284,10 @@ struct super_operations { | |||
1284 | * | 1284 | * |
1285 | * I_DIRTY_SYNC Inode is dirty, but doesn't have to be written on | 1285 | * I_DIRTY_SYNC Inode is dirty, but doesn't have to be written on |
1286 | * fdatasync(). i_atime is the usual cause. | 1286 | * fdatasync(). i_atime is the usual cause. |
1287 | * I_DIRTY_DATASYNC Inode is dirty and must be written on fdatasync(), f.e. | 1287 | * I_DIRTY_DATASYNC Data-related inode changes pending. We keep track of |
1288 | * because i_size changed. | 1288 | * these changes separately from I_DIRTY_SYNC so that we |
1289 | * don't have to write inode on fdatasync() when only | ||
1290 | * mtime has changed in it. | ||
1289 | * I_DIRTY_PAGES Inode has dirty pages. Inode itself may be clean. | 1291 | * I_DIRTY_PAGES Inode has dirty pages. Inode itself may be clean. |
1290 | * I_NEW get_new_inode() sets i_state to I_LOCK|I_NEW. Both | 1292 | * I_NEW get_new_inode() sets i_state to I_LOCK|I_NEW. Both |
1291 | * are cleared by unlock_new_inode(), called from iget(). | 1293 | * are cleared by unlock_new_inode(), called from iget(). |
diff --git a/include/linux/fs_struct.h b/include/linux/fs_struct.h index 11a36ceddf73..282f54219129 100644 --- a/include/linux/fs_struct.h +++ b/include/linux/fs_struct.h | |||
@@ -1,15 +1,13 @@ | |||
1 | #ifndef _LINUX_FS_STRUCT_H | 1 | #ifndef _LINUX_FS_STRUCT_H |
2 | #define _LINUX_FS_STRUCT_H | 2 | #define _LINUX_FS_STRUCT_H |
3 | 3 | ||
4 | struct dentry; | 4 | #include <linux/path.h> |
5 | struct vfsmount; | ||
6 | 5 | ||
7 | struct fs_struct { | 6 | struct fs_struct { |
8 | atomic_t count; | 7 | atomic_t count; |
9 | rwlock_t lock; | 8 | rwlock_t lock; |
10 | int umask; | 9 | int umask; |
11 | struct dentry * root, * pwd, * altroot; | 10 | struct path root, pwd, altroot; |
12 | struct vfsmount * rootmnt, * pwdmnt, * altrootmnt; | ||
13 | }; | 11 | }; |
14 | 12 | ||
15 | #define INIT_FS { \ | 13 | #define INIT_FS { \ |
@@ -22,8 +20,8 @@ extern struct kmem_cache *fs_cachep; | |||
22 | 20 | ||
23 | extern void exit_fs(struct task_struct *); | 21 | extern void exit_fs(struct task_struct *); |
24 | extern void set_fs_altroot(void); | 22 | extern void set_fs_altroot(void); |
25 | extern void set_fs_root(struct fs_struct *, struct vfsmount *, struct dentry *); | 23 | extern void set_fs_root(struct fs_struct *, struct path *); |
26 | extern void set_fs_pwd(struct fs_struct *, struct vfsmount *, struct dentry *); | 24 | extern void set_fs_pwd(struct fs_struct *, struct path *); |
27 | extern struct fs_struct *copy_fs_struct(struct fs_struct *); | 25 | extern struct fs_struct *copy_fs_struct(struct fs_struct *); |
28 | extern void put_fs_struct(struct fs_struct *); | 26 | extern void put_fs_struct(struct fs_struct *); |
29 | 27 | ||
diff --git a/include/linux/hid.h b/include/linux/hid.h index 3902690647b0..74ff57596eb1 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
@@ -528,7 +528,7 @@ int hid_set_field(struct hid_field *, unsigned, __s32); | |||
528 | int hid_input_report(struct hid_device *, int type, u8 *, int, int); | 528 | int hid_input_report(struct hid_device *, int type, u8 *, int, int); |
529 | int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int code, struct hid_field **field); | 529 | int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int code, struct hid_field **field); |
530 | int hidinput_mapping_quirks(struct hid_usage *, struct input_dev *, unsigned long **, int *); | 530 | int hidinput_mapping_quirks(struct hid_usage *, struct input_dev *, unsigned long **, int *); |
531 | void hidinput_event_quirks(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); | 531 | int hidinput_event_quirks(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); |
532 | int hidinput_apple_event(struct hid_device *, struct input_dev *, struct hid_usage *, __s32); | 532 | int hidinput_apple_event(struct hid_device *, struct input_dev *, struct hid_usage *, __s32); |
533 | void hid_input_field(struct hid_device *hid, struct hid_field *field, __u8 *data, int interrupt); | 533 | void hid_input_field(struct hid_device *hid, struct hid_field *field, __u8 *data, int interrupt); |
534 | void hid_output_report(struct hid_report *report, __u8 *data); | 534 | void hid_output_report(struct hid_report *report, __u8 *data); |
diff --git a/include/linux/ktime.h b/include/linux/ktime.h index 36c542b70c6d..2cd7fa73d1af 100644 --- a/include/linux/ktime.h +++ b/include/linux/ktime.h | |||
@@ -310,6 +310,8 @@ static inline ktime_t ktime_sub_us(const ktime_t kt, const u64 usec) | |||
310 | return ktime_sub_ns(kt, usec * 1000); | 310 | return ktime_sub_ns(kt, usec * 1000); |
311 | } | 311 | } |
312 | 312 | ||
313 | extern ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs); | ||
314 | |||
313 | /* | 315 | /* |
314 | * The resolution of the clocks. The resolution value is returned in | 316 | * The resolution of the clocks. The resolution value is returned in |
315 | * the clock_getres() system call to give application programmers an | 317 | * the clock_getres() system call to give application programmers an |
diff --git a/include/linux/maple.h b/include/linux/maple.h index bad9a7b319de..3f01e2bae1a1 100644 --- a/include/linux/maple.h +++ b/include/linux/maple.h | |||
@@ -7,74 +7,74 @@ extern struct bus_type maple_bus_type; | |||
7 | 7 | ||
8 | /* Maple Bus command and response codes */ | 8 | /* Maple Bus command and response codes */ |
9 | enum maple_code { | 9 | enum maple_code { |
10 | MAPLE_RESPONSE_FILEERR = -5, | 10 | MAPLE_RESPONSE_FILEERR = -5, |
11 | MAPLE_RESPONSE_AGAIN = -4, /* request should be retransmitted */ | 11 | MAPLE_RESPONSE_AGAIN = -4, /* request should be retransmitted */ |
12 | MAPLE_RESPONSE_BADCMD = -3, | 12 | MAPLE_RESPONSE_BADCMD = -3, |
13 | MAPLE_RESPONSE_BADFUNC = -2, | 13 | MAPLE_RESPONSE_BADFUNC = -2, |
14 | MAPLE_RESPONSE_NONE = -1, /* unit didn't respond at all */ | 14 | MAPLE_RESPONSE_NONE = -1, /* unit didn't respond at all */ |
15 | MAPLE_COMMAND_DEVINFO = 1, | 15 | MAPLE_COMMAND_DEVINFO = 1, |
16 | MAPLE_COMMAND_ALLINFO = 2, | 16 | MAPLE_COMMAND_ALLINFO = 2, |
17 | MAPLE_COMMAND_RESET = 3, | 17 | MAPLE_COMMAND_RESET = 3, |
18 | MAPLE_COMMAND_KILL = 4, | 18 | MAPLE_COMMAND_KILL = 4, |
19 | MAPLE_RESPONSE_DEVINFO = 5, | 19 | MAPLE_RESPONSE_DEVINFO = 5, |
20 | MAPLE_RESPONSE_ALLINFO = 6, | 20 | MAPLE_RESPONSE_ALLINFO = 6, |
21 | MAPLE_RESPONSE_OK = 7, | 21 | MAPLE_RESPONSE_OK = 7, |
22 | MAPLE_RESPONSE_DATATRF = 8, | 22 | MAPLE_RESPONSE_DATATRF = 8, |
23 | MAPLE_COMMAND_GETCOND = 9, | 23 | MAPLE_COMMAND_GETCOND = 9, |
24 | MAPLE_COMMAND_GETMINFO = 10, | 24 | MAPLE_COMMAND_GETMINFO = 10, |
25 | MAPLE_COMMAND_BREAD = 11, | 25 | MAPLE_COMMAND_BREAD = 11, |
26 | MAPLE_COMMAND_BWRITE = 12, | 26 | MAPLE_COMMAND_BWRITE = 12, |
27 | MAPLE_COMMAND_SETCOND = 14 | 27 | MAPLE_COMMAND_SETCOND = 14 |
28 | }; | 28 | }; |
29 | 29 | ||
30 | struct mapleq { | 30 | struct mapleq { |
31 | struct list_head list; | 31 | struct list_head list; |
32 | struct maple_device *dev; | 32 | struct maple_device *dev; |
33 | void *sendbuf, *recvbuf, *recvbufdcsp; | 33 | void *sendbuf, *recvbuf, *recvbufdcsp; |
34 | unsigned char length; | 34 | unsigned char length; |
35 | enum maple_code command; | 35 | enum maple_code command; |
36 | }; | 36 | }; |
37 | 37 | ||
38 | struct maple_devinfo { | 38 | struct maple_devinfo { |
39 | unsigned long function; | 39 | unsigned long function; |
40 | unsigned long function_data[3]; | 40 | unsigned long function_data[3]; |
41 | unsigned char area_code; | 41 | unsigned char area_code; |
42 | unsigned char connector_directon; | 42 | unsigned char connector_direction; |
43 | char product_name[31]; | 43 | char product_name[31]; |
44 | char product_licence[61]; | 44 | char product_licence[61]; |
45 | unsigned short standby_power; | 45 | unsigned short standby_power; |
46 | unsigned short max_power; | 46 | unsigned short max_power; |
47 | }; | 47 | }; |
48 | 48 | ||
49 | struct maple_device { | 49 | struct maple_device { |
50 | struct maple_driver *driver; | 50 | struct maple_driver *driver; |
51 | struct mapleq *mq; | 51 | struct mapleq *mq; |
52 | void *private_data; | 52 | void *private_data; |
53 | void (*callback) (struct mapleq * mq); | 53 | void (*callback) (struct mapleq * mq); |
54 | unsigned long when, interval, function; | 54 | unsigned long when, interval, function; |
55 | struct maple_devinfo devinfo; | 55 | struct maple_devinfo devinfo; |
56 | unsigned char port, unit; | 56 | unsigned char port, unit; |
57 | char product_name[32]; | 57 | char product_name[32]; |
58 | char product_licence[64]; | 58 | char product_licence[64]; |
59 | int registered; | 59 | struct device dev; |
60 | struct device dev; | ||
61 | }; | 60 | }; |
62 | 61 | ||
63 | struct maple_driver { | 62 | struct maple_driver { |
64 | unsigned long function; | 63 | unsigned long function; |
65 | int (*connect) (struct maple_device * dev); | 64 | int (*connect) (struct maple_device * dev); |
66 | void (*disconnect) (struct maple_device * dev); | 65 | void (*disconnect) (struct maple_device * dev); |
67 | struct device_driver drv; | 66 | struct device_driver drv; |
67 | int registered; | ||
68 | }; | 68 | }; |
69 | 69 | ||
70 | void maple_getcond_callback(struct maple_device *dev, | 70 | void maple_getcond_callback(struct maple_device *dev, |
71 | void (*callback) (struct mapleq * mq), | 71 | void (*callback) (struct mapleq * mq), |
72 | unsigned long interval, | 72 | unsigned long interval, |
73 | unsigned long function); | 73 | unsigned long function); |
74 | int maple_driver_register(struct device_driver *drv); | 74 | int maple_driver_register(struct device_driver *drv); |
75 | void maple_add_packet(struct mapleq *mq); | 75 | void maple_add_packet(struct mapleq *mq); |
76 | 76 | ||
77 | #define to_maple_dev(n) container_of(n, struct maple_device, dev) | 77 | #define to_maple_dev(n) container_of(n, struct maple_device, dev) |
78 | #define to_maple_driver(n) container_of(n, struct maple_driver, drv) | 78 | #define to_maple_driver(n) container_of(n, struct maple_driver, drv) |
79 | 79 | ||
80 | #endif /* __LINUX_MAPLE_H */ | 80 | #endif /* __LINUX_MAPLE_H */ |
diff --git a/include/linux/module.h b/include/linux/module.h index 330bec08c2c4..819c4e889bf1 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
@@ -567,8 +567,7 @@ static inline void print_modules(void) | |||
567 | { | 567 | { |
568 | } | 568 | } |
569 | 569 | ||
570 | static inline void module_update_markers(struct module *probe_module, | 570 | static inline void module_update_markers(void) |
571 | int *refcount) | ||
572 | { | 571 | { |
573 | } | 572 | } |
574 | 573 | ||
diff --git a/include/linux/namei.h b/include/linux/namei.h index c13e411491f4..24d88e98a626 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | #include <linux/dcache.h> | 4 | #include <linux/dcache.h> |
5 | #include <linux/linkage.h> | 5 | #include <linux/linkage.h> |
6 | #include <linux/path.h> | ||
6 | 7 | ||
7 | struct vfsmount; | 8 | struct vfsmount; |
8 | 9 | ||
@@ -15,8 +16,7 @@ struct open_intent { | |||
15 | enum { MAX_NESTED_LINKS = 8 }; | 16 | enum { MAX_NESTED_LINKS = 8 }; |
16 | 17 | ||
17 | struct nameidata { | 18 | struct nameidata { |
18 | struct dentry *dentry; | 19 | struct path path; |
19 | struct vfsmount *mnt; | ||
20 | struct qstr last; | 20 | struct qstr last; |
21 | unsigned int flags; | 21 | unsigned int flags; |
22 | int last_type; | 22 | int last_type; |
@@ -29,11 +29,6 @@ struct nameidata { | |||
29 | } intent; | 29 | } intent; |
30 | }; | 30 | }; |
31 | 31 | ||
32 | struct path { | ||
33 | struct vfsmount *mnt; | ||
34 | struct dentry *dentry; | ||
35 | }; | ||
36 | |||
37 | /* | 32 | /* |
38 | * Type of the last component on LOOKUP_PARENT | 33 | * Type of the last component on LOOKUP_PARENT |
39 | */ | 34 | */ |
@@ -71,8 +66,6 @@ extern int __user_walk_fd(int dfd, const char __user *, unsigned, struct nameida | |||
71 | extern int path_lookup(const char *, unsigned, struct nameidata *); | 66 | extern int path_lookup(const char *, unsigned, struct nameidata *); |
72 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, | 67 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, |
73 | const char *, unsigned int, struct nameidata *); | 68 | const char *, unsigned int, struct nameidata *); |
74 | extern void path_release(struct nameidata *); | ||
75 | extern void path_release_on_umount(struct nameidata *); | ||
76 | 69 | ||
77 | extern int __user_path_lookup_open(const char __user *, unsigned lookup_flags, struct nameidata *nd, int open_flags); | 70 | extern int __user_path_lookup_open(const char __user *, unsigned lookup_flags, struct nameidata *nd, int open_flags); |
78 | extern int path_lookup_open(int dfd, const char *name, unsigned lookup_flags, struct nameidata *, int open_flags); | 71 | extern int path_lookup_open(int dfd, const char *name, unsigned lookup_flags, struct nameidata *, int open_flags); |
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h index 3a1687251367..5431512b2757 100644 --- a/include/linux/nfsd/export.h +++ b/include/linux/nfsd/export.h | |||
@@ -84,9 +84,8 @@ struct svc_export { | |||
84 | struct cache_head h; | 84 | struct cache_head h; |
85 | struct auth_domain * ex_client; | 85 | struct auth_domain * ex_client; |
86 | int ex_flags; | 86 | int ex_flags; |
87 | struct vfsmount * ex_mnt; | 87 | struct path ex_path; |
88 | struct dentry * ex_dentry; | 88 | char *ex_pathname; |
89 | char * ex_path; | ||
90 | uid_t ex_anon_uid; | 89 | uid_t ex_anon_uid; |
91 | gid_t ex_anon_gid; | 90 | gid_t ex_anon_gid; |
92 | int ex_fsid; | 91 | int ex_fsid; |
@@ -107,8 +106,7 @@ struct svc_expkey { | |||
107 | int ek_fsidtype; | 106 | int ek_fsidtype; |
108 | u32 ek_fsid[6]; | 107 | u32 ek_fsid[6]; |
109 | 108 | ||
110 | struct vfsmount * ek_mnt; | 109 | struct path ek_path; |
111 | struct dentry * ek_dentry; | ||
112 | }; | 110 | }; |
113 | 111 | ||
114 | #define EX_SECURE(exp) (!((exp)->ex_flags & NFSEXP_INSECURE_PORT)) | 112 | #define EX_SECURE(exp) (!((exp)->ex_flags & NFSEXP_INSECURE_PORT)) |
diff --git a/include/linux/path.h b/include/linux/path.h new file mode 100644 index 000000000000..915e0c382a51 --- /dev/null +++ b/include/linux/path.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _LINUX_PATH_H | ||
2 | #define _LINUX_PATH_H | ||
3 | |||
4 | struct dentry; | ||
5 | struct vfsmount; | ||
6 | |||
7 | struct path { | ||
8 | struct vfsmount *mnt; | ||
9 | struct dentry *dentry; | ||
10 | }; | ||
11 | |||
12 | extern void path_get(struct path *); | ||
13 | extern void path_put(struct path *); | ||
14 | |||
15 | #endif /* _LINUX_PATH_H */ | ||
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index d6a4f69bdc92..d9a9e718ad19 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
@@ -269,7 +269,7 @@ extern void kclist_add(struct kcore_list *, void *, size_t); | |||
269 | #endif | 269 | #endif |
270 | 270 | ||
271 | union proc_op { | 271 | union proc_op { |
272 | int (*proc_get_link)(struct inode *, struct dentry **, struct vfsmount **); | 272 | int (*proc_get_link)(struct inode *, struct path *); |
273 | int (*proc_read)(struct task_struct *task, char *page); | 273 | int (*proc_read)(struct task_struct *task, char *page); |
274 | int (*proc_show)(struct seq_file *m, | 274 | int (*proc_show)(struct seq_file *m, |
275 | struct pid_namespace *ns, struct pid *pid, | 275 | struct pid_namespace *ns, struct pid *pid, |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index 648dfeb444db..67c2563961f3 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
@@ -8,8 +8,7 @@ | |||
8 | 8 | ||
9 | struct seq_operations; | 9 | struct seq_operations; |
10 | struct file; | 10 | struct file; |
11 | struct vfsmount; | 11 | struct path; |
12 | struct dentry; | ||
13 | struct inode; | 12 | struct inode; |
14 | 13 | ||
15 | struct seq_file { | 14 | struct seq_file { |
@@ -42,7 +41,7 @@ int seq_puts(struct seq_file *m, const char *s); | |||
42 | int seq_printf(struct seq_file *, const char *, ...) | 41 | int seq_printf(struct seq_file *, const char *, ...) |
43 | __attribute__ ((format (printf,2,3))); | 42 | __attribute__ ((format (printf,2,3))); |
44 | 43 | ||
45 | int seq_path(struct seq_file *, struct vfsmount *, struct dentry *, char *); | 44 | int seq_path(struct seq_file *, struct path *, char *); |
46 | 45 | ||
47 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); | 46 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); |
48 | int single_release(struct inode *, struct file *); | 47 | int single_release(struct inode *, struct file *); |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index 5e6d3d634d5b..57deecc79d52 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
@@ -71,6 +71,7 @@ struct kmem_cache { | |||
71 | 71 | ||
72 | /* Allocation and freeing of slabs */ | 72 | /* Allocation and freeing of slabs */ |
73 | int objects; /* Number of objects in slab */ | 73 | int objects; /* Number of objects in slab */ |
74 | gfp_t allocflags; /* gfp flags to use on each alloc */ | ||
74 | int refcount; /* Refcount for slab cache destroy */ | 75 | int refcount; /* Refcount for slab cache destroy */ |
75 | void (*ctor)(struct kmem_cache *, void *); | 76 | void (*ctor)(struct kmem_cache *, void *); |
76 | int inuse; /* Offset to metadata */ | 77 | int inuse; /* Offset to metadata */ |
@@ -110,7 +111,7 @@ struct kmem_cache { | |||
110 | * We keep the general caches in an array of slab caches that are used for | 111 | * We keep the general caches in an array of slab caches that are used for |
111 | * 2^x bytes of allocations. | 112 | * 2^x bytes of allocations. |
112 | */ | 113 | */ |
113 | extern struct kmem_cache kmalloc_caches[PAGE_SHIFT]; | 114 | extern struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1]; |
114 | 115 | ||
115 | /* | 116 | /* |
116 | * Sorry that the following has to be that ugly but some versions of GCC | 117 | * Sorry that the following has to be that ugly but some versions of GCC |
@@ -188,12 +189,16 @@ static __always_inline struct kmem_cache *kmalloc_slab(size_t size) | |||
188 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); | 189 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
189 | void *__kmalloc(size_t size, gfp_t flags); | 190 | void *__kmalloc(size_t size, gfp_t flags); |
190 | 191 | ||
192 | static __always_inline void *kmalloc_large(size_t size, gfp_t flags) | ||
193 | { | ||
194 | return (void *)__get_free_pages(flags | __GFP_COMP, get_order(size)); | ||
195 | } | ||
196 | |||
191 | static __always_inline void *kmalloc(size_t size, gfp_t flags) | 197 | static __always_inline void *kmalloc(size_t size, gfp_t flags) |
192 | { | 198 | { |
193 | if (__builtin_constant_p(size)) { | 199 | if (__builtin_constant_p(size)) { |
194 | if (size > PAGE_SIZE / 2) | 200 | if (size > PAGE_SIZE) |
195 | return (void *)__get_free_pages(flags | __GFP_COMP, | 201 | return kmalloc_large(size, flags); |
196 | get_order(size)); | ||
197 | 202 | ||
198 | if (!(flags & SLUB_DMA)) { | 203 | if (!(flags & SLUB_DMA)) { |
199 | struct kmem_cache *s = kmalloc_slab(size); | 204 | struct kmem_cache *s = kmalloc_slab(size); |
@@ -214,7 +219,7 @@ void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); | |||
214 | static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | 219 | static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) |
215 | { | 220 | { |
216 | if (__builtin_constant_p(size) && | 221 | if (__builtin_constant_p(size) && |
217 | size <= PAGE_SIZE / 2 && !(flags & SLUB_DMA)) { | 222 | size <= PAGE_SIZE && !(flags & SLUB_DMA)) { |
218 | struct kmem_cache *s = kmalloc_slab(size); | 223 | struct kmem_cache *s = kmalloc_slab(size); |
219 | 224 | ||
220 | if (!s) | 225 | if (!s) |
diff --git a/init/do_mounts.c b/init/do_mounts.c index f86573126f83..3885e70e7759 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c | |||
@@ -193,10 +193,10 @@ static int __init do_mount_root(char *name, char *fs, int flags, void *data) | |||
193 | return err; | 193 | return err; |
194 | 194 | ||
195 | sys_chdir("/root"); | 195 | sys_chdir("/root"); |
196 | ROOT_DEV = current->fs->pwdmnt->mnt_sb->s_dev; | 196 | ROOT_DEV = current->fs->pwd.mnt->mnt_sb->s_dev; |
197 | printk("VFS: Mounted root (%s filesystem)%s.\n", | 197 | printk("VFS: Mounted root (%s filesystem)%s.\n", |
198 | current->fs->pwdmnt->mnt_sb->s_type->name, | 198 | current->fs->pwd.mnt->mnt_sb->s_type->name, |
199 | current->fs->pwdmnt->mnt_sb->s_flags & MS_RDONLY ? | 199 | current->fs->pwd.mnt->mnt_sb->s_flags & MS_RDONLY ? |
200 | " readonly" : ""); | 200 | " readonly" : ""); |
201 | return 0; | 201 | return 0; |
202 | } | 202 | } |
diff --git a/kernel/audit.c b/kernel/audit.c index c8555b180213..2eeea9a14240 100644 --- a/kernel/audit.c +++ b/kernel/audit.c | |||
@@ -1312,26 +1312,26 @@ void audit_log_untrustedstring(struct audit_buffer *ab, const char *string) | |||
1312 | 1312 | ||
1313 | /* This is a helper-function to print the escaped d_path */ | 1313 | /* This is a helper-function to print the escaped d_path */ |
1314 | void audit_log_d_path(struct audit_buffer *ab, const char *prefix, | 1314 | void audit_log_d_path(struct audit_buffer *ab, const char *prefix, |
1315 | struct dentry *dentry, struct vfsmount *vfsmnt) | 1315 | struct path *path) |
1316 | { | 1316 | { |
1317 | char *p, *path; | 1317 | char *p, *pathname; |
1318 | 1318 | ||
1319 | if (prefix) | 1319 | if (prefix) |
1320 | audit_log_format(ab, " %s", prefix); | 1320 | audit_log_format(ab, " %s", prefix); |
1321 | 1321 | ||
1322 | /* We will allow 11 spaces for ' (deleted)' to be appended */ | 1322 | /* We will allow 11 spaces for ' (deleted)' to be appended */ |
1323 | path = kmalloc(PATH_MAX+11, ab->gfp_mask); | 1323 | pathname = kmalloc(PATH_MAX+11, ab->gfp_mask); |
1324 | if (!path) { | 1324 | if (!pathname) { |
1325 | audit_log_format(ab, "<no memory>"); | 1325 | audit_log_format(ab, "<no memory>"); |
1326 | return; | 1326 | return; |
1327 | } | 1327 | } |
1328 | p = d_path(dentry, vfsmnt, path, PATH_MAX+11); | 1328 | p = d_path(path, pathname, PATH_MAX+11); |
1329 | if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */ | 1329 | if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */ |
1330 | /* FIXME: can we save some information here? */ | 1330 | /* FIXME: can we save some information here? */ |
1331 | audit_log_format(ab, "<too long>"); | 1331 | audit_log_format(ab, "<too long>"); |
1332 | } else | 1332 | } else |
1333 | audit_log_untrustedstring(ab, p); | 1333 | audit_log_untrustedstring(ab, p); |
1334 | kfree(path); | 1334 | kfree(pathname); |
1335 | } | 1335 | } |
1336 | 1336 | ||
1337 | /** | 1337 | /** |
diff --git a/kernel/audit_tree.c b/kernel/audit_tree.c index f4fcf58f20f8..9ef5e0aacc3c 100644 --- a/kernel/audit_tree.c +++ b/kernel/audit_tree.c | |||
@@ -549,8 +549,8 @@ void audit_trim_trees(void) | |||
549 | if (err) | 549 | if (err) |
550 | goto skip_it; | 550 | goto skip_it; |
551 | 551 | ||
552 | root_mnt = collect_mounts(nd.mnt, nd.dentry); | 552 | root_mnt = collect_mounts(nd.path.mnt, nd.path.dentry); |
553 | path_release(&nd); | 553 | path_put(&nd.path); |
554 | if (!root_mnt) | 554 | if (!root_mnt) |
555 | goto skip_it; | 555 | goto skip_it; |
556 | 556 | ||
@@ -583,17 +583,17 @@ skip_it: | |||
583 | static int is_under(struct vfsmount *mnt, struct dentry *dentry, | 583 | static int is_under(struct vfsmount *mnt, struct dentry *dentry, |
584 | struct nameidata *nd) | 584 | struct nameidata *nd) |
585 | { | 585 | { |
586 | if (mnt != nd->mnt) { | 586 | if (mnt != nd->path.mnt) { |
587 | for (;;) { | 587 | for (;;) { |
588 | if (mnt->mnt_parent == mnt) | 588 | if (mnt->mnt_parent == mnt) |
589 | return 0; | 589 | return 0; |
590 | if (mnt->mnt_parent == nd->mnt) | 590 | if (mnt->mnt_parent == nd->path.mnt) |
591 | break; | 591 | break; |
592 | mnt = mnt->mnt_parent; | 592 | mnt = mnt->mnt_parent; |
593 | } | 593 | } |
594 | dentry = mnt->mnt_mountpoint; | 594 | dentry = mnt->mnt_mountpoint; |
595 | } | 595 | } |
596 | return is_subdir(dentry, nd->dentry); | 596 | return is_subdir(dentry, nd->path.dentry); |
597 | } | 597 | } |
598 | 598 | ||
599 | int audit_make_tree(struct audit_krule *rule, char *pathname, u32 op) | 599 | int audit_make_tree(struct audit_krule *rule, char *pathname, u32 op) |
@@ -641,8 +641,8 @@ int audit_add_tree_rule(struct audit_krule *rule) | |||
641 | err = path_lookup(tree->pathname, 0, &nd); | 641 | err = path_lookup(tree->pathname, 0, &nd); |
642 | if (err) | 642 | if (err) |
643 | goto Err; | 643 | goto Err; |
644 | mnt = collect_mounts(nd.mnt, nd.dentry); | 644 | mnt = collect_mounts(nd.path.mnt, nd.path.dentry); |
645 | path_release(&nd); | 645 | path_put(&nd.path); |
646 | if (!mnt) { | 646 | if (!mnt) { |
647 | err = -ENOMEM; | 647 | err = -ENOMEM; |
648 | goto Err; | 648 | goto Err; |
@@ -701,8 +701,8 @@ int audit_tag_tree(char *old, char *new) | |||
701 | err = path_lookup(new, 0, &nd); | 701 | err = path_lookup(new, 0, &nd); |
702 | if (err) | 702 | if (err) |
703 | return err; | 703 | return err; |
704 | tagged = collect_mounts(nd.mnt, nd.dentry); | 704 | tagged = collect_mounts(nd.path.mnt, nd.path.dentry); |
705 | path_release(&nd); | 705 | path_put(&nd.path); |
706 | if (!tagged) | 706 | if (!tagged) |
707 | return -ENOMEM; | 707 | return -ENOMEM; |
708 | 708 | ||
@@ -711,9 +711,9 @@ int audit_tag_tree(char *old, char *new) | |||
711 | drop_collected_mounts(tagged); | 711 | drop_collected_mounts(tagged); |
712 | return err; | 712 | return err; |
713 | } | 713 | } |
714 | mnt = mntget(nd.mnt); | 714 | mnt = mntget(nd.path.mnt); |
715 | dentry = dget(nd.dentry); | 715 | dentry = dget(nd.path.dentry); |
716 | path_release(&nd); | 716 | path_put(&nd.path); |
717 | 717 | ||
718 | if (dentry == tagged->mnt_root && dentry == mnt->mnt_root) | 718 | if (dentry == tagged->mnt_root && dentry == mnt->mnt_root) |
719 | follow_up(&mnt, &dentry); | 719 | follow_up(&mnt, &dentry); |
@@ -744,13 +744,13 @@ int audit_tag_tree(char *old, char *new) | |||
744 | spin_lock(&vfsmount_lock); | 744 | spin_lock(&vfsmount_lock); |
745 | if (!is_under(mnt, dentry, &nd)) { | 745 | if (!is_under(mnt, dentry, &nd)) { |
746 | spin_unlock(&vfsmount_lock); | 746 | spin_unlock(&vfsmount_lock); |
747 | path_release(&nd); | 747 | path_put(&nd.path); |
748 | put_tree(tree); | 748 | put_tree(tree); |
749 | mutex_lock(&audit_filter_mutex); | 749 | mutex_lock(&audit_filter_mutex); |
750 | continue; | 750 | continue; |
751 | } | 751 | } |
752 | spin_unlock(&vfsmount_lock); | 752 | spin_unlock(&vfsmount_lock); |
753 | path_release(&nd); | 753 | path_put(&nd.path); |
754 | 754 | ||
755 | list_for_each_entry(p, &list, mnt_list) { | 755 | list_for_each_entry(p, &list, mnt_list) { |
756 | failed = tag_chunk(p->mnt_root->d_inode, tree); | 756 | failed = tag_chunk(p->mnt_root->d_inode, tree); |
diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c index 6f19fd477aac..2f2914b7cc30 100644 --- a/kernel/auditfilter.c +++ b/kernel/auditfilter.c | |||
@@ -169,8 +169,8 @@ static struct audit_parent *audit_init_parent(struct nameidata *ndp) | |||
169 | inotify_init_watch(&parent->wdata); | 169 | inotify_init_watch(&parent->wdata); |
170 | /* grab a ref so inotify watch hangs around until we take audit_filter_mutex */ | 170 | /* grab a ref so inotify watch hangs around until we take audit_filter_mutex */ |
171 | get_inotify_watch(&parent->wdata); | 171 | get_inotify_watch(&parent->wdata); |
172 | wd = inotify_add_watch(audit_ih, &parent->wdata, ndp->dentry->d_inode, | 172 | wd = inotify_add_watch(audit_ih, &parent->wdata, |
173 | AUDIT_IN_WATCH); | 173 | ndp->path.dentry->d_inode, AUDIT_IN_WATCH); |
174 | if (wd < 0) { | 174 | if (wd < 0) { |
175 | audit_free_parent(&parent->wdata); | 175 | audit_free_parent(&parent->wdata); |
176 | return ERR_PTR(wd); | 176 | return ERR_PTR(wd); |
@@ -1161,11 +1161,11 @@ static int audit_get_nd(char *path, struct nameidata **ndp, | |||
1161 | static void audit_put_nd(struct nameidata *ndp, struct nameidata *ndw) | 1161 | static void audit_put_nd(struct nameidata *ndp, struct nameidata *ndw) |
1162 | { | 1162 | { |
1163 | if (ndp) { | 1163 | if (ndp) { |
1164 | path_release(ndp); | 1164 | path_put(&ndp->path); |
1165 | kfree(ndp); | 1165 | kfree(ndp); |
1166 | } | 1166 | } |
1167 | if (ndw) { | 1167 | if (ndw) { |
1168 | path_release(ndw); | 1168 | path_put(&ndw->path); |
1169 | kfree(ndw); | 1169 | kfree(ndw); |
1170 | } | 1170 | } |
1171 | } | 1171 | } |
@@ -1214,8 +1214,8 @@ static int audit_add_watch(struct audit_krule *krule, struct nameidata *ndp, | |||
1214 | 1214 | ||
1215 | /* update watch filter fields */ | 1215 | /* update watch filter fields */ |
1216 | if (ndw) { | 1216 | if (ndw) { |
1217 | watch->dev = ndw->dentry->d_inode->i_sb->s_dev; | 1217 | watch->dev = ndw->path.dentry->d_inode->i_sb->s_dev; |
1218 | watch->ino = ndw->dentry->d_inode->i_ino; | 1218 | watch->ino = ndw->path.dentry->d_inode->i_ino; |
1219 | } | 1219 | } |
1220 | 1220 | ||
1221 | /* The audit_filter_mutex must not be held during inotify calls because | 1221 | /* The audit_filter_mutex must not be held during inotify calls because |
@@ -1225,7 +1225,8 @@ static int audit_add_watch(struct audit_krule *krule, struct nameidata *ndp, | |||
1225 | */ | 1225 | */ |
1226 | mutex_unlock(&audit_filter_mutex); | 1226 | mutex_unlock(&audit_filter_mutex); |
1227 | 1227 | ||
1228 | if (inotify_find_watch(audit_ih, ndp->dentry->d_inode, &i_watch) < 0) { | 1228 | if (inotify_find_watch(audit_ih, ndp->path.dentry->d_inode, |
1229 | &i_watch) < 0) { | ||
1229 | parent = audit_init_parent(ndp); | 1230 | parent = audit_init_parent(ndp); |
1230 | if (IS_ERR(parent)) { | 1231 | if (IS_ERR(parent)) { |
1231 | /* caller expects mutex locked */ | 1232 | /* caller expects mutex locked */ |
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 1c06ecf38d7b..ac6d9b23b018 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c | |||
@@ -208,8 +208,7 @@ struct audit_context { | |||
208 | int name_count; | 208 | int name_count; |
209 | struct audit_names names[AUDIT_NAMES]; | 209 | struct audit_names names[AUDIT_NAMES]; |
210 | char * filterkey; /* key for rule that triggered record */ | 210 | char * filterkey; /* key for rule that triggered record */ |
211 | struct dentry * pwd; | 211 | struct path pwd; |
212 | struct vfsmount * pwdmnt; | ||
213 | struct audit_context *previous; /* For nested syscalls */ | 212 | struct audit_context *previous; /* For nested syscalls */ |
214 | struct audit_aux_data *aux; | 213 | struct audit_aux_data *aux; |
215 | struct audit_aux_data *aux_pids; | 214 | struct audit_aux_data *aux_pids; |
@@ -786,12 +785,9 @@ static inline void audit_free_names(struct audit_context *context) | |||
786 | __putname(context->names[i].name); | 785 | __putname(context->names[i].name); |
787 | } | 786 | } |
788 | context->name_count = 0; | 787 | context->name_count = 0; |
789 | if (context->pwd) | 788 | path_put(&context->pwd); |
790 | dput(context->pwd); | 789 | context->pwd.dentry = NULL; |
791 | if (context->pwdmnt) | 790 | context->pwd.mnt = NULL; |
792 | mntput(context->pwdmnt); | ||
793 | context->pwd = NULL; | ||
794 | context->pwdmnt = NULL; | ||
795 | } | 791 | } |
796 | 792 | ||
797 | static inline void audit_free_aux(struct audit_context *context) | 793 | static inline void audit_free_aux(struct audit_context *context) |
@@ -930,8 +926,7 @@ static void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk | |||
930 | if ((vma->vm_flags & VM_EXECUTABLE) && | 926 | if ((vma->vm_flags & VM_EXECUTABLE) && |
931 | vma->vm_file) { | 927 | vma->vm_file) { |
932 | audit_log_d_path(ab, "exe=", | 928 | audit_log_d_path(ab, "exe=", |
933 | vma->vm_file->f_path.dentry, | 929 | &vma->vm_file->f_path); |
934 | vma->vm_file->f_path.mnt); | ||
935 | break; | 930 | break; |
936 | } | 931 | } |
937 | vma = vma->vm_next; | 932 | vma = vma->vm_next; |
@@ -1341,10 +1336,10 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts | |||
1341 | context->target_sid, context->target_comm)) | 1336 | context->target_sid, context->target_comm)) |
1342 | call_panic = 1; | 1337 | call_panic = 1; |
1343 | 1338 | ||
1344 | if (context->pwd && context->pwdmnt) { | 1339 | if (context->pwd.dentry && context->pwd.mnt) { |
1345 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); | 1340 | ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD); |
1346 | if (ab) { | 1341 | if (ab) { |
1347 | audit_log_d_path(ab, "cwd=", context->pwd, context->pwdmnt); | 1342 | audit_log_d_path(ab, "cwd=", &context->pwd); |
1348 | audit_log_end(ab); | 1343 | audit_log_end(ab); |
1349 | } | 1344 | } |
1350 | } | 1345 | } |
@@ -1367,8 +1362,7 @@ static void audit_log_exit(struct audit_context *context, struct task_struct *ts | |||
1367 | case 0: | 1362 | case 0: |
1368 | /* name was specified as a relative path and the | 1363 | /* name was specified as a relative path and the |
1369 | * directory component is the cwd */ | 1364 | * directory component is the cwd */ |
1370 | audit_log_d_path(ab, " name=", context->pwd, | 1365 | audit_log_d_path(ab, " name=", &context->pwd); |
1371 | context->pwdmnt); | ||
1372 | break; | 1366 | break; |
1373 | default: | 1367 | default: |
1374 | /* log the name's directory component */ | 1368 | /* log the name's directory component */ |
@@ -1695,10 +1689,10 @@ void __audit_getname(const char *name) | |||
1695 | context->names[context->name_count].ino = (unsigned long)-1; | 1689 | context->names[context->name_count].ino = (unsigned long)-1; |
1696 | context->names[context->name_count].osid = 0; | 1690 | context->names[context->name_count].osid = 0; |
1697 | ++context->name_count; | 1691 | ++context->name_count; |
1698 | if (!context->pwd) { | 1692 | if (!context->pwd.dentry) { |
1699 | read_lock(¤t->fs->lock); | 1693 | read_lock(¤t->fs->lock); |
1700 | context->pwd = dget(current->fs->pwd); | 1694 | context->pwd = current->fs->pwd; |
1701 | context->pwdmnt = mntget(current->fs->pwdmnt); | 1695 | path_get(¤t->fs->pwd); |
1702 | read_unlock(¤t->fs->lock); | 1696 | read_unlock(¤t->fs->lock); |
1703 | } | 1697 | } |
1704 | 1698 | ||
diff --git a/kernel/exit.c b/kernel/exit.c index 3b893e78ce61..506a957b665a 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -512,14 +512,10 @@ static void __put_fs_struct(struct fs_struct *fs) | |||
512 | { | 512 | { |
513 | /* No need to hold fs->lock if we are killing it */ | 513 | /* No need to hold fs->lock if we are killing it */ |
514 | if (atomic_dec_and_test(&fs->count)) { | 514 | if (atomic_dec_and_test(&fs->count)) { |
515 | dput(fs->root); | 515 | path_put(&fs->root); |
516 | mntput(fs->rootmnt); | 516 | path_put(&fs->pwd); |
517 | dput(fs->pwd); | 517 | if (fs->altroot.dentry) |
518 | mntput(fs->pwdmnt); | 518 | path_put(&fs->altroot); |
519 | if (fs->altroot) { | ||
520 | dput(fs->altroot); | ||
521 | mntput(fs->altrootmnt); | ||
522 | } | ||
523 | kmem_cache_free(fs_cachep, fs); | 519 | kmem_cache_free(fs_cachep, fs); |
524 | } | 520 | } |
525 | } | 521 | } |
diff --git a/kernel/fork.c b/kernel/fork.c index 4363a4eb84e3..dd249c37b3a3 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
@@ -600,16 +600,16 @@ static struct fs_struct *__copy_fs_struct(struct fs_struct *old) | |||
600 | rwlock_init(&fs->lock); | 600 | rwlock_init(&fs->lock); |
601 | fs->umask = old->umask; | 601 | fs->umask = old->umask; |
602 | read_lock(&old->lock); | 602 | read_lock(&old->lock); |
603 | fs->rootmnt = mntget(old->rootmnt); | 603 | fs->root = old->root; |
604 | fs->root = dget(old->root); | 604 | path_get(&old->root); |
605 | fs->pwdmnt = mntget(old->pwdmnt); | 605 | fs->pwd = old->pwd; |
606 | fs->pwd = dget(old->pwd); | 606 | path_get(&old->pwd); |
607 | if (old->altroot) { | 607 | if (old->altroot.dentry) { |
608 | fs->altrootmnt = mntget(old->altrootmnt); | 608 | fs->altroot = old->altroot; |
609 | fs->altroot = dget(old->altroot); | 609 | path_get(&old->altroot); |
610 | } else { | 610 | } else { |
611 | fs->altrootmnt = NULL; | 611 | fs->altroot.mnt = NULL; |
612 | fs->altroot = NULL; | 612 | fs->altroot.dentry = NULL; |
613 | } | 613 | } |
614 | read_unlock(&old->lock); | 614 | read_unlock(&old->lock); |
615 | } | 615 | } |
diff --git a/kernel/futex.c b/kernel/futex.c index a6baaec44b8f..221f2128a437 100644 --- a/kernel/futex.c +++ b/kernel/futex.c | |||
@@ -2116,7 +2116,7 @@ asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val, | |||
2116 | 2116 | ||
2117 | t = timespec_to_ktime(ts); | 2117 | t = timespec_to_ktime(ts); |
2118 | if (cmd == FUTEX_WAIT) | 2118 | if (cmd == FUTEX_WAIT) |
2119 | t = ktime_add(ktime_get(), t); | 2119 | t = ktime_add_safe(ktime_get(), t); |
2120 | tp = &t; | 2120 | tp = &t; |
2121 | } | 2121 | } |
2122 | /* | 2122 | /* |
diff --git a/kernel/futex_compat.c b/kernel/futex_compat.c index 133d558db452..7d5e4b016f39 100644 --- a/kernel/futex_compat.c +++ b/kernel/futex_compat.c | |||
@@ -176,7 +176,7 @@ asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val, | |||
176 | 176 | ||
177 | t = timespec_to_ktime(ts); | 177 | t = timespec_to_ktime(ts); |
178 | if (cmd == FUTEX_WAIT) | 178 | if (cmd == FUTEX_WAIT) |
179 | t = ktime_add(ktime_get(), t); | 179 | t = ktime_add_safe(ktime_get(), t); |
180 | tp = &t; | 180 | tp = &t; |
181 | } | 181 | } |
182 | if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE) | 182 | if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE) |
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c index 3f4a57c7895d..98bee013f71f 100644 --- a/kernel/hrtimer.c +++ b/kernel/hrtimer.c | |||
@@ -326,6 +326,23 @@ u64 ktime_divns(const ktime_t kt, s64 div) | |||
326 | #endif /* BITS_PER_LONG >= 64 */ | 326 | #endif /* BITS_PER_LONG >= 64 */ |
327 | 327 | ||
328 | /* | 328 | /* |
329 | * Add two ktime values and do a safety check for overflow: | ||
330 | */ | ||
331 | ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs) | ||
332 | { | ||
333 | ktime_t res = ktime_add(lhs, rhs); | ||
334 | |||
335 | /* | ||
336 | * We use KTIME_SEC_MAX here, the maximum timeout which we can | ||
337 | * return to user space in a timespec: | ||
338 | */ | ||
339 | if (res.tv64 < 0 || res.tv64 < lhs.tv64 || res.tv64 < rhs.tv64) | ||
340 | res = ktime_set(KTIME_SEC_MAX, 0); | ||
341 | |||
342 | return res; | ||
343 | } | ||
344 | |||
345 | /* | ||
329 | * Check, whether the timer is on the callback pending list | 346 | * Check, whether the timer is on the callback pending list |
330 | */ | 347 | */ |
331 | static inline int hrtimer_cb_pending(const struct hrtimer *timer) | 348 | static inline int hrtimer_cb_pending(const struct hrtimer *timer) |
@@ -425,6 +442,8 @@ static int hrtimer_reprogram(struct hrtimer *timer, | |||
425 | ktime_t expires = ktime_sub(timer->expires, base->offset); | 442 | ktime_t expires = ktime_sub(timer->expires, base->offset); |
426 | int res; | 443 | int res; |
427 | 444 | ||
445 | WARN_ON_ONCE(timer->expires.tv64 < 0); | ||
446 | |||
428 | /* | 447 | /* |
429 | * When the callback is running, we do not reprogram the clock event | 448 | * When the callback is running, we do not reprogram the clock event |
430 | * device. The timer callback is either running on a different CPU or | 449 | * device. The timer callback is either running on a different CPU or |
@@ -435,6 +454,15 @@ static int hrtimer_reprogram(struct hrtimer *timer, | |||
435 | if (hrtimer_callback_running(timer)) | 454 | if (hrtimer_callback_running(timer)) |
436 | return 0; | 455 | return 0; |
437 | 456 | ||
457 | /* | ||
458 | * CLOCK_REALTIME timer might be requested with an absolute | ||
459 | * expiry time which is less than base->offset. Nothing wrong | ||
460 | * about that, just avoid to call into the tick code, which | ||
461 | * has now objections against negative expiry values. | ||
462 | */ | ||
463 | if (expires.tv64 < 0) | ||
464 | return -ETIME; | ||
465 | |||
438 | if (expires.tv64 >= expires_next->tv64) | 466 | if (expires.tv64 >= expires_next->tv64) |
439 | return 0; | 467 | return 0; |
440 | 468 | ||
@@ -682,13 +710,7 @@ u64 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval) | |||
682 | */ | 710 | */ |
683 | orun++; | 711 | orun++; |
684 | } | 712 | } |
685 | timer->expires = ktime_add(timer->expires, interval); | 713 | timer->expires = ktime_add_safe(timer->expires, interval); |
686 | /* | ||
687 | * Make sure, that the result did not wrap with a very large | ||
688 | * interval. | ||
689 | */ | ||
690 | if (timer->expires.tv64 < 0) | ||
691 | timer->expires = ktime_set(KTIME_SEC_MAX, 0); | ||
692 | 714 | ||
693 | return orun; | 715 | return orun; |
694 | } | 716 | } |
@@ -839,7 +861,7 @@ hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode) | |||
839 | new_base = switch_hrtimer_base(timer, base); | 861 | new_base = switch_hrtimer_base(timer, base); |
840 | 862 | ||
841 | if (mode == HRTIMER_MODE_REL) { | 863 | if (mode == HRTIMER_MODE_REL) { |
842 | tim = ktime_add(tim, new_base->get_time()); | 864 | tim = ktime_add_safe(tim, new_base->get_time()); |
843 | /* | 865 | /* |
844 | * CONFIG_TIME_LOW_RES is a temporary way for architectures | 866 | * CONFIG_TIME_LOW_RES is a temporary way for architectures |
845 | * to signal that they simply return xtime in | 867 | * to signal that they simply return xtime in |
@@ -848,16 +870,8 @@ hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode) | |||
848 | * timeouts. This will go away with the GTOD framework. | 870 | * timeouts. This will go away with the GTOD framework. |
849 | */ | 871 | */ |
850 | #ifdef CONFIG_TIME_LOW_RES | 872 | #ifdef CONFIG_TIME_LOW_RES |
851 | tim = ktime_add(tim, base->resolution); | 873 | tim = ktime_add_safe(tim, base->resolution); |
852 | #endif | 874 | #endif |
853 | /* | ||
854 | * Careful here: User space might have asked for a | ||
855 | * very long sleep, so the add above might result in a | ||
856 | * negative number, which enqueues the timer in front | ||
857 | * of the queue. | ||
858 | */ | ||
859 | if (tim.tv64 < 0) | ||
860 | tim.tv64 = KTIME_MAX; | ||
861 | } | 875 | } |
862 | timer->expires = tim; | 876 | timer->expires = tim; |
863 | 877 | ||
diff --git a/kernel/kmod.c b/kernel/kmod.c index bb7df2a28bd7..22be3ff3f363 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c | |||
@@ -173,10 +173,7 @@ static int ____call_usermodehelper(void *data) | |||
173 | */ | 173 | */ |
174 | set_user_nice(current, 0); | 174 | set_user_nice(current, 0); |
175 | 175 | ||
176 | retval = -EPERM; | 176 | retval = kernel_execve(sub_info->path, sub_info->argv, sub_info->envp); |
177 | if (current->fs->root) | ||
178 | retval = kernel_execve(sub_info->path, | ||
179 | sub_info->argv, sub_info->envp); | ||
180 | 177 | ||
181 | /* Exec failed? */ | 178 | /* Exec failed? */ |
182 | sub_info->retval = retval; | 179 | sub_info->retval = retval; |
diff --git a/kernel/posix-timers.c b/kernel/posix-timers.c index 022c9c3cee6f..a9b04203a66d 100644 --- a/kernel/posix-timers.c +++ b/kernel/posix-timers.c | |||
@@ -767,9 +767,11 @@ common_timer_set(struct k_itimer *timr, int flags, | |||
767 | /* SIGEV_NONE timers are not queued ! See common_timer_get */ | 767 | /* SIGEV_NONE timers are not queued ! See common_timer_get */ |
768 | if (((timr->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE)) { | 768 | if (((timr->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE)) { |
769 | /* Setup correct expiry time for relative timers */ | 769 | /* Setup correct expiry time for relative timers */ |
770 | if (mode == HRTIMER_MODE_REL) | 770 | if (mode == HRTIMER_MODE_REL) { |
771 | timer->expires = ktime_add(timer->expires, | 771 | timer->expires = |
772 | timer->base->get_time()); | 772 | ktime_add_safe(timer->expires, |
773 | timer->base->get_time()); | ||
774 | } | ||
773 | return 0; | 775 | return 0; |
774 | } | 776 | } |
775 | 777 | ||
diff --git a/mm/memory.c b/mm/memory.c index 717aa0e3be2d..ce3c9e4492d8 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -2711,6 +2711,13 @@ void print_vma_addr(char *prefix, unsigned long ip) | |||
2711 | struct mm_struct *mm = current->mm; | 2711 | struct mm_struct *mm = current->mm; |
2712 | struct vm_area_struct *vma; | 2712 | struct vm_area_struct *vma; |
2713 | 2713 | ||
2714 | /* | ||
2715 | * Do not print if we are in atomic | ||
2716 | * contexts (in exception stacks, etc.): | ||
2717 | */ | ||
2718 | if (preempt_count()) | ||
2719 | return; | ||
2720 | |||
2714 | down_read(&mm->mmap_sem); | 2721 | down_read(&mm->mmap_sem); |
2715 | vma = find_vma(mm, ip); | 2722 | vma = find_vma(mm, ip); |
2716 | if (vma && vma->vm_file) { | 2723 | if (vma && vma->vm_file) { |
@@ -2719,7 +2726,7 @@ void print_vma_addr(char *prefix, unsigned long ip) | |||
2719 | if (buf) { | 2726 | if (buf) { |
2720 | char *p, *s; | 2727 | char *p, *s; |
2721 | 2728 | ||
2722 | p = d_path(f->f_dentry, f->f_vfsmnt, buf, PAGE_SIZE); | 2729 | p = d_path(&f->f_path, buf, PAGE_SIZE); |
2723 | if (IS_ERR(p)) | 2730 | if (IS_ERR(p)) |
2724 | p = "?"; | 2731 | p = "?"; |
2725 | s = strrchr(p, '/'); | 2732 | s = strrchr(p, '/'); |
diff --git a/mm/mempolicy.c b/mm/mempolicy.c index 8d246c3b340f..6c7ba1a63d23 100644 --- a/mm/mempolicy.c +++ b/mm/mempolicy.c | |||
@@ -1996,7 +1996,7 @@ int show_numa_map(struct seq_file *m, void *v) | |||
1996 | 1996 | ||
1997 | if (file) { | 1997 | if (file) { |
1998 | seq_printf(m, " file="); | 1998 | seq_printf(m, " file="); |
1999 | seq_path(m, file->f_path.mnt, file->f_path.dentry, "\n\t= "); | 1999 | seq_path(m, &file->f_path, "\n\t= "); |
2000 | } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) { | 2000 | } else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) { |
2001 | seq_printf(m, " heap"); | 2001 | seq_printf(m, " heap"); |
2002 | } else if (vma->vm_start <= mm->start_stack && | 2002 | } else if (vma->vm_start <= mm->start_stack && |
@@ -2630,6 +2630,7 @@ static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp, | |||
2630 | slabp->colouroff = colour_off; | 2630 | slabp->colouroff = colour_off; |
2631 | slabp->s_mem = objp + colour_off; | 2631 | slabp->s_mem = objp + colour_off; |
2632 | slabp->nodeid = nodeid; | 2632 | slabp->nodeid = nodeid; |
2633 | slabp->free = 0; | ||
2633 | return slabp; | 2634 | return slabp; |
2634 | } | 2635 | } |
2635 | 2636 | ||
@@ -2683,7 +2684,6 @@ static void cache_init_objs(struct kmem_cache *cachep, | |||
2683 | slab_bufctl(slabp)[i] = i + 1; | 2684 | slab_bufctl(slabp)[i] = i + 1; |
2684 | } | 2685 | } |
2685 | slab_bufctl(slabp)[i - 1] = BUFCTL_END; | 2686 | slab_bufctl(slabp)[i - 1] = BUFCTL_END; |
2686 | slabp->free = 0; | ||
2687 | } | 2687 | } |
2688 | 2688 | ||
2689 | static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags) | 2689 | static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags) |
@@ -2816,7 +2816,6 @@ static int cache_grow(struct kmem_cache *cachep, | |||
2816 | if (!slabp) | 2816 | if (!slabp) |
2817 | goto opps1; | 2817 | goto opps1; |
2818 | 2818 | ||
2819 | slabp->nodeid = nodeid; | ||
2820 | slab_map_pages(cachep, slabp, objp); | 2819 | slab_map_pages(cachep, slabp, objp); |
2821 | 2820 | ||
2822 | cache_init_objs(cachep, slabp); | 2821 | cache_init_objs(cachep, slabp); |
@@ -211,6 +211,8 @@ static inline void ClearSlabDebug(struct page *page) | |||
211 | /* Internal SLUB flags */ | 211 | /* Internal SLUB flags */ |
212 | #define __OBJECT_POISON 0x80000000 /* Poison object */ | 212 | #define __OBJECT_POISON 0x80000000 /* Poison object */ |
213 | #define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */ | 213 | #define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */ |
214 | #define __KMALLOC_CACHE 0x20000000 /* objects freed using kfree */ | ||
215 | #define __PAGE_ALLOC_FALLBACK 0x10000000 /* Allow fallback to page alloc */ | ||
214 | 216 | ||
215 | /* Not all arches define cache_line_size */ | 217 | /* Not all arches define cache_line_size */ |
216 | #ifndef cache_line_size | 218 | #ifndef cache_line_size |
@@ -308,7 +310,7 @@ static inline int is_end(void *addr) | |||
308 | return (unsigned long)addr & PAGE_MAPPING_ANON; | 310 | return (unsigned long)addr & PAGE_MAPPING_ANON; |
309 | } | 311 | } |
310 | 312 | ||
311 | void *slab_address(struct page *page) | 313 | static void *slab_address(struct page *page) |
312 | { | 314 | { |
313 | return page->end - PAGE_MAPPING_ANON; | 315 | return page->end - PAGE_MAPPING_ANON; |
314 | } | 316 | } |
@@ -1078,14 +1080,7 @@ static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node) | |||
1078 | struct page *page; | 1080 | struct page *page; |
1079 | int pages = 1 << s->order; | 1081 | int pages = 1 << s->order; |
1080 | 1082 | ||
1081 | if (s->order) | 1083 | flags |= s->allocflags; |
1082 | flags |= __GFP_COMP; | ||
1083 | |||
1084 | if (s->flags & SLAB_CACHE_DMA) | ||
1085 | flags |= SLUB_DMA; | ||
1086 | |||
1087 | if (s->flags & SLAB_RECLAIM_ACCOUNT) | ||
1088 | flags |= __GFP_RECLAIMABLE; | ||
1089 | 1084 | ||
1090 | if (node == -1) | 1085 | if (node == -1) |
1091 | page = alloc_pages(flags, s->order); | 1086 | page = alloc_pages(flags, s->order); |
@@ -1546,7 +1541,6 @@ load_freelist: | |||
1546 | unlock_out: | 1541 | unlock_out: |
1547 | slab_unlock(c->page); | 1542 | slab_unlock(c->page); |
1548 | stat(c, ALLOC_SLOWPATH); | 1543 | stat(c, ALLOC_SLOWPATH); |
1549 | out: | ||
1550 | #ifdef SLUB_FASTPATH | 1544 | #ifdef SLUB_FASTPATH |
1551 | local_irq_restore(flags); | 1545 | local_irq_restore(flags); |
1552 | #endif | 1546 | #endif |
@@ -1581,8 +1575,24 @@ new_slab: | |||
1581 | c->page = new; | 1575 | c->page = new; |
1582 | goto load_freelist; | 1576 | goto load_freelist; |
1583 | } | 1577 | } |
1584 | object = NULL; | 1578 | #ifdef SLUB_FASTPATH |
1585 | goto out; | 1579 | local_irq_restore(flags); |
1580 | #endif | ||
1581 | /* | ||
1582 | * No memory available. | ||
1583 | * | ||
1584 | * If the slab uses higher order allocs but the object is | ||
1585 | * smaller than a page size then we can fallback in emergencies | ||
1586 | * to the page allocator via kmalloc_large. The page allocator may | ||
1587 | * have failed to obtain a higher order page and we can try to | ||
1588 | * allocate a single page if the object fits into a single page. | ||
1589 | * That is only possible if certain conditions are met that are being | ||
1590 | * checked when a slab is created. | ||
1591 | */ | ||
1592 | if (!(gfpflags & __GFP_NORETRY) && (s->flags & __PAGE_ALLOC_FALLBACK)) | ||
1593 | return kmalloc_large(s->objsize, gfpflags); | ||
1594 | |||
1595 | return NULL; | ||
1586 | debug: | 1596 | debug: |
1587 | object = c->page->freelist; | 1597 | object = c->page->freelist; |
1588 | if (!alloc_debug_processing(s, c->page, object, addr)) | 1598 | if (!alloc_debug_processing(s, c->page, object, addr)) |
@@ -2329,10 +2339,33 @@ static int calculate_sizes(struct kmem_cache *s) | |||
2329 | size = ALIGN(size, align); | 2339 | size = ALIGN(size, align); |
2330 | s->size = size; | 2340 | s->size = size; |
2331 | 2341 | ||
2332 | s->order = calculate_order(size); | 2342 | if ((flags & __KMALLOC_CACHE) && |
2343 | PAGE_SIZE / size < slub_min_objects) { | ||
2344 | /* | ||
2345 | * Kmalloc cache that would not have enough objects in | ||
2346 | * an order 0 page. Kmalloc slabs can fallback to | ||
2347 | * page allocator order 0 allocs so take a reasonably large | ||
2348 | * order that will allows us a good number of objects. | ||
2349 | */ | ||
2350 | s->order = max(slub_max_order, PAGE_ALLOC_COSTLY_ORDER); | ||
2351 | s->flags |= __PAGE_ALLOC_FALLBACK; | ||
2352 | s->allocflags |= __GFP_NOWARN; | ||
2353 | } else | ||
2354 | s->order = calculate_order(size); | ||
2355 | |||
2333 | if (s->order < 0) | 2356 | if (s->order < 0) |
2334 | return 0; | 2357 | return 0; |
2335 | 2358 | ||
2359 | s->allocflags = 0; | ||
2360 | if (s->order) | ||
2361 | s->allocflags |= __GFP_COMP; | ||
2362 | |||
2363 | if (s->flags & SLAB_CACHE_DMA) | ||
2364 | s->allocflags |= SLUB_DMA; | ||
2365 | |||
2366 | if (s->flags & SLAB_RECLAIM_ACCOUNT) | ||
2367 | s->allocflags |= __GFP_RECLAIMABLE; | ||
2368 | |||
2336 | /* | 2369 | /* |
2337 | * Determine the number of objects per slab | 2370 | * Determine the number of objects per slab |
2338 | */ | 2371 | */ |
@@ -2484,11 +2517,11 @@ EXPORT_SYMBOL(kmem_cache_destroy); | |||
2484 | * Kmalloc subsystem | 2517 | * Kmalloc subsystem |
2485 | *******************************************************************/ | 2518 | *******************************************************************/ |
2486 | 2519 | ||
2487 | struct kmem_cache kmalloc_caches[PAGE_SHIFT] __cacheline_aligned; | 2520 | struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned; |
2488 | EXPORT_SYMBOL(kmalloc_caches); | 2521 | EXPORT_SYMBOL(kmalloc_caches); |
2489 | 2522 | ||
2490 | #ifdef CONFIG_ZONE_DMA | 2523 | #ifdef CONFIG_ZONE_DMA |
2491 | static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT]; | 2524 | static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1]; |
2492 | #endif | 2525 | #endif |
2493 | 2526 | ||
2494 | static int __init setup_slub_min_order(char *str) | 2527 | static int __init setup_slub_min_order(char *str) |
@@ -2536,7 +2569,7 @@ static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s, | |||
2536 | 2569 | ||
2537 | down_write(&slub_lock); | 2570 | down_write(&slub_lock); |
2538 | if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN, | 2571 | if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN, |
2539 | flags, NULL)) | 2572 | flags | __KMALLOC_CACHE, NULL)) |
2540 | goto panic; | 2573 | goto panic; |
2541 | 2574 | ||
2542 | list_add(&s->list, &slab_caches); | 2575 | list_add(&s->list, &slab_caches); |
@@ -2670,9 +2703,8 @@ void *__kmalloc(size_t size, gfp_t flags) | |||
2670 | { | 2703 | { |
2671 | struct kmem_cache *s; | 2704 | struct kmem_cache *s; |
2672 | 2705 | ||
2673 | if (unlikely(size > PAGE_SIZE / 2)) | 2706 | if (unlikely(size > PAGE_SIZE)) |
2674 | return (void *)__get_free_pages(flags | __GFP_COMP, | 2707 | return kmalloc_large(size, flags); |
2675 | get_order(size)); | ||
2676 | 2708 | ||
2677 | s = get_slab(size, flags); | 2709 | s = get_slab(size, flags); |
2678 | 2710 | ||
@@ -2688,9 +2720,8 @@ void *__kmalloc_node(size_t size, gfp_t flags, int node) | |||
2688 | { | 2720 | { |
2689 | struct kmem_cache *s; | 2721 | struct kmem_cache *s; |
2690 | 2722 | ||
2691 | if (unlikely(size > PAGE_SIZE / 2)) | 2723 | if (unlikely(size > PAGE_SIZE)) |
2692 | return (void *)__get_free_pages(flags | __GFP_COMP, | 2724 | return kmalloc_large(size, flags); |
2693 | get_order(size)); | ||
2694 | 2725 | ||
2695 | s = get_slab(size, flags); | 2726 | s = get_slab(size, flags); |
2696 | 2727 | ||
@@ -3001,7 +3032,7 @@ void __init kmem_cache_init(void) | |||
3001 | caches++; | 3032 | caches++; |
3002 | } | 3033 | } |
3003 | 3034 | ||
3004 | for (i = KMALLOC_SHIFT_LOW; i < PAGE_SHIFT; i++) { | 3035 | for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) { |
3005 | create_kmalloc_cache(&kmalloc_caches[i], | 3036 | create_kmalloc_cache(&kmalloc_caches[i], |
3006 | "kmalloc", 1 << i, GFP_KERNEL); | 3037 | "kmalloc", 1 << i, GFP_KERNEL); |
3007 | caches++; | 3038 | caches++; |
@@ -3028,7 +3059,7 @@ void __init kmem_cache_init(void) | |||
3028 | slab_state = UP; | 3059 | slab_state = UP; |
3029 | 3060 | ||
3030 | /* Provide the correct kmalloc names now that the caches are up */ | 3061 | /* Provide the correct kmalloc names now that the caches are up */ |
3031 | for (i = KMALLOC_SHIFT_LOW; i < PAGE_SHIFT; i++) | 3062 | for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) |
3032 | kmalloc_caches[i]. name = | 3063 | kmalloc_caches[i]. name = |
3033 | kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i); | 3064 | kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i); |
3034 | 3065 | ||
@@ -3057,6 +3088,9 @@ static int slab_unmergeable(struct kmem_cache *s) | |||
3057 | if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE)) | 3088 | if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE)) |
3058 | return 1; | 3089 | return 1; |
3059 | 3090 | ||
3091 | if ((s->flags & __PAGE_ALLOC_FALLBACK)) | ||
3092 | return 1; | ||
3093 | |||
3060 | if (s->ctor) | 3094 | if (s->ctor) |
3061 | return 1; | 3095 | return 1; |
3062 | 3096 | ||
@@ -3218,9 +3252,9 @@ void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller) | |||
3218 | { | 3252 | { |
3219 | struct kmem_cache *s; | 3253 | struct kmem_cache *s; |
3220 | 3254 | ||
3221 | if (unlikely(size > PAGE_SIZE / 2)) | 3255 | if (unlikely(size > PAGE_SIZE)) |
3222 | return (void *)__get_free_pages(gfpflags | __GFP_COMP, | 3256 | return kmalloc_large(size, gfpflags); |
3223 | get_order(size)); | 3257 | |
3224 | s = get_slab(size, gfpflags); | 3258 | s = get_slab(size, gfpflags); |
3225 | 3259 | ||
3226 | if (unlikely(ZERO_OR_NULL_PTR(s))) | 3260 | if (unlikely(ZERO_OR_NULL_PTR(s))) |
@@ -3234,9 +3268,9 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags, | |||
3234 | { | 3268 | { |
3235 | struct kmem_cache *s; | 3269 | struct kmem_cache *s; |
3236 | 3270 | ||
3237 | if (unlikely(size > PAGE_SIZE / 2)) | 3271 | if (unlikely(size > PAGE_SIZE)) |
3238 | return (void *)__get_free_pages(gfpflags | __GFP_COMP, | 3272 | return kmalloc_large(size, gfpflags); |
3239 | get_order(size)); | 3273 | |
3240 | s = get_slab(size, gfpflags); | 3274 | s = get_slab(size, gfpflags); |
3241 | 3275 | ||
3242 | if (unlikely(ZERO_OR_NULL_PTR(s))) | 3276 | if (unlikely(ZERO_OR_NULL_PTR(s))) |
diff --git a/mm/swapfile.c b/mm/swapfile.c index 02ccab5ad9d9..2da149cfc9ac 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c | |||
@@ -1394,7 +1394,7 @@ static int swap_show(struct seq_file *swap, void *v) | |||
1394 | } | 1394 | } |
1395 | 1395 | ||
1396 | file = ptr->swap_file; | 1396 | file = ptr->swap_file; |
1397 | len = seq_path(swap, file->f_path.mnt, file->f_path.dentry, " \t\n\\"); | 1397 | len = seq_path(swap, &file->f_path, " \t\n\\"); |
1398 | seq_printf(swap, "%*s%s\t%u\t%u\t%d\n", | 1398 | seq_printf(swap, "%*s%s\t%u\t%u\t%d\n", |
1399 | len < 40 ? 40 - len : 1, " ", | 1399 | len < 40 ? 40 - len : 1, " ", |
1400 | S_ISBLK(file->f_path.dentry->d_inode->i_mode) ? | 1400 | S_ISBLK(file->f_path.dentry->d_inode->i_mode) ? |
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index 0e3ead7e11b9..1b395a41a8b2 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c | |||
@@ -495,7 +495,7 @@ rpc_lookup_parent(char *path, struct nameidata *nd) | |||
495 | static void | 495 | static void |
496 | rpc_release_path(struct nameidata *nd) | 496 | rpc_release_path(struct nameidata *nd) |
497 | { | 497 | { |
498 | path_release(nd); | 498 | path_put(&nd->path); |
499 | rpc_put_mount(); | 499 | rpc_put_mount(); |
500 | } | 500 | } |
501 | 501 | ||
@@ -668,7 +668,8 @@ rpc_lookup_negative(char *path, struct nameidata *nd) | |||
668 | 668 | ||
669 | if ((error = rpc_lookup_parent(path, nd)) != 0) | 669 | if ((error = rpc_lookup_parent(path, nd)) != 0) |
670 | return ERR_PTR(error); | 670 | return ERR_PTR(error); |
671 | dentry = rpc_lookup_create(nd->dentry, nd->last.name, nd->last.len, 1); | 671 | dentry = rpc_lookup_create(nd->path.dentry, nd->last.name, nd->last.len, |
672 | 1); | ||
672 | if (IS_ERR(dentry)) | 673 | if (IS_ERR(dentry)) |
673 | rpc_release_path(nd); | 674 | rpc_release_path(nd); |
674 | return dentry; | 675 | return dentry; |
@@ -695,7 +696,7 @@ rpc_mkdir(char *path, struct rpc_clnt *rpc_client) | |||
695 | dentry = rpc_lookup_negative(path, &nd); | 696 | dentry = rpc_lookup_negative(path, &nd); |
696 | if (IS_ERR(dentry)) | 697 | if (IS_ERR(dentry)) |
697 | return dentry; | 698 | return dentry; |
698 | dir = nd.dentry->d_inode; | 699 | dir = nd.path.dentry->d_inode; |
699 | if ((error = __rpc_mkdir(dir, dentry)) != 0) | 700 | if ((error = __rpc_mkdir(dir, dentry)) != 0) |
700 | goto err_dput; | 701 | goto err_dput; |
701 | RPC_I(dentry->d_inode)->private = rpc_client; | 702 | RPC_I(dentry->d_inode)->private = rpc_client; |
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index eea75888805e..b8788fd5e3c6 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c | |||
@@ -718,16 +718,16 @@ static struct sock *unix_find_other(struct net *net, | |||
718 | goto put_fail; | 718 | goto put_fail; |
719 | 719 | ||
720 | err = -ECONNREFUSED; | 720 | err = -ECONNREFUSED; |
721 | if (!S_ISSOCK(nd.dentry->d_inode->i_mode)) | 721 | if (!S_ISSOCK(nd.path.dentry->d_inode->i_mode)) |
722 | goto put_fail; | 722 | goto put_fail; |
723 | u=unix_find_socket_byinode(net, nd.dentry->d_inode); | 723 | u = unix_find_socket_byinode(net, nd.path.dentry->d_inode); |
724 | if (!u) | 724 | if (!u) |
725 | goto put_fail; | 725 | goto put_fail; |
726 | 726 | ||
727 | if (u->sk_type == type) | 727 | if (u->sk_type == type) |
728 | touch_atime(nd.mnt, nd.dentry); | 728 | touch_atime(nd.path.mnt, nd.path.dentry); |
729 | 729 | ||
730 | path_release(&nd); | 730 | path_put(&nd.path); |
731 | 731 | ||
732 | err=-EPROTOTYPE; | 732 | err=-EPROTOTYPE; |
733 | if (u->sk_type != type) { | 733 | if (u->sk_type != type) { |
@@ -748,7 +748,7 @@ static struct sock *unix_find_other(struct net *net, | |||
748 | return u; | 748 | return u; |
749 | 749 | ||
750 | put_fail: | 750 | put_fail: |
751 | path_release(&nd); | 751 | path_put(&nd.path); |
752 | fail: | 752 | fail: |
753 | *error=err; | 753 | *error=err; |
754 | return NULL; | 754 | return NULL; |
@@ -819,12 +819,12 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) | |||
819 | */ | 819 | */ |
820 | mode = S_IFSOCK | | 820 | mode = S_IFSOCK | |
821 | (SOCK_INODE(sock)->i_mode & ~current->fs->umask); | 821 | (SOCK_INODE(sock)->i_mode & ~current->fs->umask); |
822 | err = vfs_mknod(nd.dentry->d_inode, dentry, mode, 0); | 822 | err = vfs_mknod(nd.path.dentry->d_inode, dentry, mode, 0); |
823 | if (err) | 823 | if (err) |
824 | goto out_mknod_dput; | 824 | goto out_mknod_dput; |
825 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 825 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
826 | dput(nd.dentry); | 826 | dput(nd.path.dentry); |
827 | nd.dentry = dentry; | 827 | nd.path.dentry = dentry; |
828 | 828 | ||
829 | addr->hash = UNIX_HASH_SIZE; | 829 | addr->hash = UNIX_HASH_SIZE; |
830 | } | 830 | } |
@@ -842,8 +842,8 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) | |||
842 | list = &unix_socket_table[addr->hash]; | 842 | list = &unix_socket_table[addr->hash]; |
843 | } else { | 843 | } else { |
844 | list = &unix_socket_table[dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1)]; | 844 | list = &unix_socket_table[dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1)]; |
845 | u->dentry = nd.dentry; | 845 | u->dentry = nd.path.dentry; |
846 | u->mnt = nd.mnt; | 846 | u->mnt = nd.path.mnt; |
847 | } | 847 | } |
848 | 848 | ||
849 | err = 0; | 849 | err = 0; |
@@ -861,8 +861,8 @@ out: | |||
861 | out_mknod_dput: | 861 | out_mknod_dput: |
862 | dput(dentry); | 862 | dput(dentry); |
863 | out_mknod_unlock: | 863 | out_mknod_unlock: |
864 | mutex_unlock(&nd.dentry->d_inode->i_mutex); | 864 | mutex_unlock(&nd.path.dentry->d_inode->i_mutex); |
865 | path_release(&nd); | 865 | path_put(&nd.path); |
866 | out_mknod_parent: | 866 | out_mknod_parent: |
867 | if (err==-EEXIST) | 867 | if (err==-EEXIST) |
868 | err=-EADDRINUSE; | 868 | err=-EADDRINUSE; |
diff --git a/scripts/kernel-doc b/scripts/kernel-doc index 6c18a14386a4..26146cbaa504 100755 --- a/scripts/kernel-doc +++ b/scripts/kernel-doc | |||
@@ -1624,7 +1624,6 @@ sub dump_function($$) { | |||
1624 | 1624 | ||
1625 | $prototype =~ s/^static +//; | 1625 | $prototype =~ s/^static +//; |
1626 | $prototype =~ s/^extern +//; | 1626 | $prototype =~ s/^extern +//; |
1627 | $prototype =~ s/^fastcall +//; | ||
1628 | $prototype =~ s/^asmlinkage +//; | 1627 | $prototype =~ s/^asmlinkage +//; |
1629 | $prototype =~ s/^inline +//; | 1628 | $prototype =~ s/^inline +//; |
1630 | $prototype =~ s/^__inline__ +//; | 1629 | $prototype =~ s/^__inline__ +//; |
diff --git a/security/selinux/avc.c b/security/selinux/avc.c index e8529e2f51e5..187964e88af1 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c | |||
@@ -568,10 +568,11 @@ void avc_audit(u32 ssid, u32 tsid, | |||
568 | audit_log_format(ab, " capability=%d", a->u.cap); | 568 | audit_log_format(ab, " capability=%d", a->u.cap); |
569 | break; | 569 | break; |
570 | case AVC_AUDIT_DATA_FS: | 570 | case AVC_AUDIT_DATA_FS: |
571 | if (a->u.fs.dentry) { | 571 | if (a->u.fs.path.dentry) { |
572 | struct dentry *dentry = a->u.fs.dentry; | 572 | struct dentry *dentry = a->u.fs.path.dentry; |
573 | if (a->u.fs.mnt) { | 573 | if (a->u.fs.path.mnt) { |
574 | audit_log_d_path(ab, "path=", dentry, a->u.fs.mnt); | 574 | audit_log_d_path(ab, "path=", |
575 | &a->u.fs.path); | ||
575 | } else { | 576 | } else { |
576 | audit_log_format(ab, " name="); | 577 | audit_log_format(ab, " name="); |
577 | audit_log_untrustedstring(ab, dentry->d_name.name); | 578 | audit_log_untrustedstring(ab, dentry->d_name.name); |
@@ -626,8 +627,12 @@ void avc_audit(u32 ssid, u32 tsid, | |||
626 | case AF_UNIX: | 627 | case AF_UNIX: |
627 | u = unix_sk(sk); | 628 | u = unix_sk(sk); |
628 | if (u->dentry) { | 629 | if (u->dentry) { |
630 | struct path path = { | ||
631 | .dentry = u->dentry, | ||
632 | .mnt = u->mnt | ||
633 | }; | ||
629 | audit_log_d_path(ab, "path=", | 634 | audit_log_d_path(ab, "path=", |
630 | u->dentry, u->mnt); | 635 | &path); |
631 | break; | 636 | break; |
632 | } | 637 | } |
633 | if (!u->addr) | 638 | if (!u->addr) |
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 44f16d9041e3..75c2e99bfb81 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
@@ -1356,8 +1356,8 @@ static inline int dentry_has_perm(struct task_struct *tsk, | |||
1356 | struct inode *inode = dentry->d_inode; | 1356 | struct inode *inode = dentry->d_inode; |
1357 | struct avc_audit_data ad; | 1357 | struct avc_audit_data ad; |
1358 | AVC_AUDIT_DATA_INIT(&ad,FS); | 1358 | AVC_AUDIT_DATA_INIT(&ad,FS); |
1359 | ad.u.fs.mnt = mnt; | 1359 | ad.u.fs.path.mnt = mnt; |
1360 | ad.u.fs.dentry = dentry; | 1360 | ad.u.fs.path.dentry = dentry; |
1361 | return inode_has_perm(tsk, inode, av, &ad); | 1361 | return inode_has_perm(tsk, inode, av, &ad); |
1362 | } | 1362 | } |
1363 | 1363 | ||
@@ -1375,15 +1375,12 @@ static int file_has_perm(struct task_struct *tsk, | |||
1375 | { | 1375 | { |
1376 | struct task_security_struct *tsec = tsk->security; | 1376 | struct task_security_struct *tsec = tsk->security; |
1377 | struct file_security_struct *fsec = file->f_security; | 1377 | struct file_security_struct *fsec = file->f_security; |
1378 | struct vfsmount *mnt = file->f_path.mnt; | 1378 | struct inode *inode = file->f_path.dentry->d_inode; |
1379 | struct dentry *dentry = file->f_path.dentry; | ||
1380 | struct inode *inode = dentry->d_inode; | ||
1381 | struct avc_audit_data ad; | 1379 | struct avc_audit_data ad; |
1382 | int rc; | 1380 | int rc; |
1383 | 1381 | ||
1384 | AVC_AUDIT_DATA_INIT(&ad, FS); | 1382 | AVC_AUDIT_DATA_INIT(&ad, FS); |
1385 | ad.u.fs.mnt = mnt; | 1383 | ad.u.fs.path = file->f_path; |
1386 | ad.u.fs.dentry = dentry; | ||
1387 | 1384 | ||
1388 | if (tsec->sid != fsec->sid) { | 1385 | if (tsec->sid != fsec->sid) { |
1389 | rc = avc_has_perm(tsec->sid, fsec->sid, | 1386 | rc = avc_has_perm(tsec->sid, fsec->sid, |
@@ -1418,7 +1415,7 @@ static int may_create(struct inode *dir, | |||
1418 | sbsec = dir->i_sb->s_security; | 1415 | sbsec = dir->i_sb->s_security; |
1419 | 1416 | ||
1420 | AVC_AUDIT_DATA_INIT(&ad, FS); | 1417 | AVC_AUDIT_DATA_INIT(&ad, FS); |
1421 | ad.u.fs.dentry = dentry; | 1418 | ad.u.fs.path.dentry = dentry; |
1422 | 1419 | ||
1423 | rc = avc_has_perm(tsec->sid, dsec->sid, SECCLASS_DIR, | 1420 | rc = avc_has_perm(tsec->sid, dsec->sid, SECCLASS_DIR, |
1424 | DIR__ADD_NAME | DIR__SEARCH, | 1421 | DIR__ADD_NAME | DIR__SEARCH, |
@@ -1476,7 +1473,7 @@ static int may_link(struct inode *dir, | |||
1476 | isec = dentry->d_inode->i_security; | 1473 | isec = dentry->d_inode->i_security; |
1477 | 1474 | ||
1478 | AVC_AUDIT_DATA_INIT(&ad, FS); | 1475 | AVC_AUDIT_DATA_INIT(&ad, FS); |
1479 | ad.u.fs.dentry = dentry; | 1476 | ad.u.fs.path.dentry = dentry; |
1480 | 1477 | ||
1481 | av = DIR__SEARCH; | 1478 | av = DIR__SEARCH; |
1482 | av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME); | 1479 | av |= (kind ? DIR__REMOVE_NAME : DIR__ADD_NAME); |
@@ -1523,7 +1520,7 @@ static inline int may_rename(struct inode *old_dir, | |||
1523 | 1520 | ||
1524 | AVC_AUDIT_DATA_INIT(&ad, FS); | 1521 | AVC_AUDIT_DATA_INIT(&ad, FS); |
1525 | 1522 | ||
1526 | ad.u.fs.dentry = old_dentry; | 1523 | ad.u.fs.path.dentry = old_dentry; |
1527 | rc = avc_has_perm(tsec->sid, old_dsec->sid, SECCLASS_DIR, | 1524 | rc = avc_has_perm(tsec->sid, old_dsec->sid, SECCLASS_DIR, |
1528 | DIR__REMOVE_NAME | DIR__SEARCH, &ad); | 1525 | DIR__REMOVE_NAME | DIR__SEARCH, &ad); |
1529 | if (rc) | 1526 | if (rc) |
@@ -1539,7 +1536,7 @@ static inline int may_rename(struct inode *old_dir, | |||
1539 | return rc; | 1536 | return rc; |
1540 | } | 1537 | } |
1541 | 1538 | ||
1542 | ad.u.fs.dentry = new_dentry; | 1539 | ad.u.fs.path.dentry = new_dentry; |
1543 | av = DIR__ADD_NAME | DIR__SEARCH; | 1540 | av = DIR__ADD_NAME | DIR__SEARCH; |
1544 | if (new_dentry->d_inode) | 1541 | if (new_dentry->d_inode) |
1545 | av |= DIR__REMOVE_NAME; | 1542 | av |= DIR__REMOVE_NAME; |
@@ -1918,8 +1915,7 @@ static int selinux_bprm_set_security(struct linux_binprm *bprm) | |||
1918 | } | 1915 | } |
1919 | 1916 | ||
1920 | AVC_AUDIT_DATA_INIT(&ad, FS); | 1917 | AVC_AUDIT_DATA_INIT(&ad, FS); |
1921 | ad.u.fs.mnt = bprm->file->f_path.mnt; | 1918 | ad.u.fs.path = bprm->file->f_path; |
1922 | ad.u.fs.dentry = bprm->file->f_path.dentry; | ||
1923 | 1919 | ||
1924 | if (bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID) | 1920 | if (bprm->file->f_path.mnt->mnt_flags & MNT_NOSUID) |
1925 | newsid = tsec->sid; | 1921 | newsid = tsec->sid; |
@@ -2315,7 +2311,7 @@ static int selinux_sb_kern_mount(struct super_block *sb, void *data) | |||
2315 | return rc; | 2311 | return rc; |
2316 | 2312 | ||
2317 | AVC_AUDIT_DATA_INIT(&ad,FS); | 2313 | AVC_AUDIT_DATA_INIT(&ad,FS); |
2318 | ad.u.fs.dentry = sb->s_root; | 2314 | ad.u.fs.path.dentry = sb->s_root; |
2319 | return superblock_has_perm(current, sb, FILESYSTEM__MOUNT, &ad); | 2315 | return superblock_has_perm(current, sb, FILESYSTEM__MOUNT, &ad); |
2320 | } | 2316 | } |
2321 | 2317 | ||
@@ -2324,7 +2320,7 @@ static int selinux_sb_statfs(struct dentry *dentry) | |||
2324 | struct avc_audit_data ad; | 2320 | struct avc_audit_data ad; |
2325 | 2321 | ||
2326 | AVC_AUDIT_DATA_INIT(&ad,FS); | 2322 | AVC_AUDIT_DATA_INIT(&ad,FS); |
2327 | ad.u.fs.dentry = dentry->d_sb->s_root; | 2323 | ad.u.fs.path.dentry = dentry->d_sb->s_root; |
2328 | return superblock_has_perm(current, dentry->d_sb, FILESYSTEM__GETATTR, &ad); | 2324 | return superblock_has_perm(current, dentry->d_sb, FILESYSTEM__GETATTR, &ad); |
2329 | } | 2325 | } |
2330 | 2326 | ||
@@ -2341,10 +2337,10 @@ static int selinux_mount(char * dev_name, | |||
2341 | return rc; | 2337 | return rc; |
2342 | 2338 | ||
2343 | if (flags & MS_REMOUNT) | 2339 | if (flags & MS_REMOUNT) |
2344 | return superblock_has_perm(current, nd->mnt->mnt_sb, | 2340 | return superblock_has_perm(current, nd->path.mnt->mnt_sb, |
2345 | FILESYSTEM__REMOUNT, NULL); | 2341 | FILESYSTEM__REMOUNT, NULL); |
2346 | else | 2342 | else |
2347 | return dentry_has_perm(current, nd->mnt, nd->dentry, | 2343 | return dentry_has_perm(current, nd->path.mnt, nd->path.dentry, |
2348 | FILE__MOUNTON); | 2344 | FILE__MOUNTON); |
2349 | } | 2345 | } |
2350 | 2346 | ||
@@ -2587,7 +2583,7 @@ static int selinux_inode_setxattr(struct dentry *dentry, char *name, void *value | |||
2587 | return -EPERM; | 2583 | return -EPERM; |
2588 | 2584 | ||
2589 | AVC_AUDIT_DATA_INIT(&ad,FS); | 2585 | AVC_AUDIT_DATA_INIT(&ad,FS); |
2590 | ad.u.fs.dentry = dentry; | 2586 | ad.u.fs.path.dentry = dentry; |
2591 | 2587 | ||
2592 | rc = avc_has_perm(tsec->sid, isec->sid, isec->sclass, | 2588 | rc = avc_has_perm(tsec->sid, isec->sid, isec->sclass, |
2593 | FILE__RELABELFROM, &ad); | 2589 | FILE__RELABELFROM, &ad); |
diff --git a/security/selinux/include/avc.h b/security/selinux/include/avc.h index 80c28fa6621c..8e23d7a873a4 100644 --- a/security/selinux/include/avc.h +++ b/security/selinux/include/avc.h | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/spinlock.h> | 13 | #include <linux/spinlock.h> |
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/in6.h> | 15 | #include <linux/in6.h> |
16 | #include <linux/path.h> | ||
16 | #include <asm/system.h> | 17 | #include <asm/system.h> |
17 | #include "flask.h" | 18 | #include "flask.h" |
18 | #include "av_permissions.h" | 19 | #include "av_permissions.h" |
@@ -30,8 +31,6 @@ extern int selinux_enforcing; | |||
30 | struct avc_entry; | 31 | struct avc_entry; |
31 | 32 | ||
32 | struct task_struct; | 33 | struct task_struct; |
33 | struct vfsmount; | ||
34 | struct dentry; | ||
35 | struct inode; | 34 | struct inode; |
36 | struct sock; | 35 | struct sock; |
37 | struct sk_buff; | 36 | struct sk_buff; |
@@ -46,8 +45,7 @@ struct avc_audit_data { | |||
46 | struct task_struct *tsk; | 45 | struct task_struct *tsk; |
47 | union { | 46 | union { |
48 | struct { | 47 | struct { |
49 | struct vfsmount *mnt; | 48 | struct path path; |
50 | struct dentry *dentry; | ||
51 | struct inode *inode; | 49 | struct inode *inode; |
52 | } fs; | 50 | } fs; |
53 | struct { | 51 | struct { |
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 5b690482f8cb..2b5d6f72f678 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c | |||
@@ -325,7 +325,7 @@ static int smack_sb_statfs(struct dentry *dentry) | |||
325 | static int smack_sb_mount(char *dev_name, struct nameidata *nd, | 325 | static int smack_sb_mount(char *dev_name, struct nameidata *nd, |
326 | char *type, unsigned long flags, void *data) | 326 | char *type, unsigned long flags, void *data) |
327 | { | 327 | { |
328 | struct superblock_smack *sbp = nd->mnt->mnt_sb->s_security; | 328 | struct superblock_smack *sbp = nd->path.mnt->mnt_sb->s_security; |
329 | 329 | ||
330 | return smk_curacc(sbp->smk_floor, MAY_WRITE); | 330 | return smk_curacc(sbp->smk_floor, MAY_WRITE); |
331 | } | 331 | } |
diff --git a/sound/core/seq/seq_clientmgr.c b/sound/core/seq/seq_clientmgr.c index f97c1ba43a28..47cfa5186e34 100644 --- a/sound/core/seq/seq_clientmgr.c +++ b/sound/core/seq/seq_clientmgr.c | |||
@@ -149,13 +149,13 @@ struct snd_seq_client *snd_seq_client_use_ptr(int clientid) | |||
149 | } | 149 | } |
150 | spin_unlock_irqrestore(&clients_lock, flags); | 150 | spin_unlock_irqrestore(&clients_lock, flags); |
151 | #ifdef CONFIG_KMOD | 151 | #ifdef CONFIG_KMOD |
152 | if (!in_interrupt() && current->fs->root) { | 152 | if (!in_interrupt()) { |
153 | static char client_requested[SNDRV_SEQ_GLOBAL_CLIENTS]; | 153 | static char client_requested[SNDRV_SEQ_GLOBAL_CLIENTS]; |
154 | static char card_requested[SNDRV_CARDS]; | 154 | static char card_requested[SNDRV_CARDS]; |
155 | if (clientid < SNDRV_SEQ_GLOBAL_CLIENTS) { | 155 | if (clientid < SNDRV_SEQ_GLOBAL_CLIENTS) { |
156 | int idx; | 156 | int idx; |
157 | 157 | ||
158 | if (! client_requested[clientid] && current->fs->root) { | 158 | if (!client_requested[clientid]) { |
159 | client_requested[clientid] = 1; | 159 | client_requested[clientid] = 1; |
160 | for (idx = 0; idx < 15; idx++) { | 160 | for (idx = 0; idx < 15; idx++) { |
161 | if (seq_client_load[idx] < 0) | 161 | if (seq_client_load[idx] < 0) |
diff --git a/sound/core/seq/seq_device.c b/sound/core/seq/seq_device.c index 155dc7da4722..2f00ad28a2b7 100644 --- a/sound/core/seq/seq_device.c +++ b/sound/core/seq/seq_device.c | |||
@@ -149,9 +149,6 @@ void snd_seq_device_load_drivers(void) | |||
149 | if (snd_seq_in_init) | 149 | if (snd_seq_in_init) |
150 | return; | 150 | return; |
151 | 151 | ||
152 | if (! current->fs->root) | ||
153 | return; | ||
154 | |||
155 | mutex_lock(&ops_mutex); | 152 | mutex_lock(&ops_mutex); |
156 | list_for_each_entry(ops, &opslist, list) { | 153 | list_for_each_entry(ops, &opslist, list) { |
157 | if (! (ops->driver & DRIVER_LOADED) && | 154 | if (! (ops->driver & DRIVER_LOADED) && |
diff --git a/sound/core/sound.c b/sound/core/sound.c index 00cca4d6e562..812f91b3de5b 100644 --- a/sound/core/sound.c +++ b/sound/core/sound.c | |||
@@ -71,8 +71,6 @@ static DEFINE_MUTEX(sound_mutex); | |||
71 | */ | 71 | */ |
72 | void snd_request_card(int card) | 72 | void snd_request_card(int card) |
73 | { | 73 | { |
74 | if (! current->fs->root) | ||
75 | return; | ||
76 | if (snd_card_locked(card)) | 74 | if (snd_card_locked(card)) |
77 | return; | 75 | return; |
78 | if (card < 0 || card >= cards_limit) | 76 | if (card < 0 || card >= cards_limit) |
@@ -86,8 +84,6 @@ static void snd_request_other(int minor) | |||
86 | { | 84 | { |
87 | char *str; | 85 | char *str; |
88 | 86 | ||
89 | if (! current->fs->root) | ||
90 | return; | ||
91 | switch (minor) { | 87 | switch (minor) { |
92 | case SNDRV_MINOR_SEQUENCER: str = "snd-seq"; break; | 88 | case SNDRV_MINOR_SEQUENCER: str = "snd-seq"; break; |
93 | case SNDRV_MINOR_TIMER: str = "snd-timer"; break; | 89 | case SNDRV_MINOR_TIMER: str = "snd-timer"; break; |
diff --git a/sound/core/timer.c b/sound/core/timer.c index aece465934b8..9d8184a2c2d0 100644 --- a/sound/core/timer.c +++ b/sound/core/timer.c | |||
@@ -150,8 +150,6 @@ static struct snd_timer *snd_timer_find(struct snd_timer_id *tid) | |||
150 | 150 | ||
151 | static void snd_timer_request(struct snd_timer_id *tid) | 151 | static void snd_timer_request(struct snd_timer_id *tid) |
152 | { | 152 | { |
153 | if (! current->fs->root) | ||
154 | return; | ||
155 | switch (tid->dev_class) { | 153 | switch (tid->dev_class) { |
156 | case SNDRV_TIMER_CLASS_GLOBAL: | 154 | case SNDRV_TIMER_CLASS_GLOBAL: |
157 | if (tid->device < timer_limit) | 155 | if (tid->device < timer_limit) |
diff --git a/sound/ppc/daca.c b/sound/ppc/daca.c index 8432c16cd6ff..ca9452901a50 100644 --- a/sound/ppc/daca.c +++ b/sound/ppc/daca.c | |||
@@ -250,9 +250,8 @@ int __init snd_pmac_daca_init(struct snd_pmac *chip) | |||
250 | struct pmac_daca *mix; | 250 | struct pmac_daca *mix; |
251 | 251 | ||
252 | #ifdef CONFIG_KMOD | 252 | #ifdef CONFIG_KMOD |
253 | if (current->fs->root) | 253 | request_module("i2c-powermac"); |
254 | request_module("i2c-powermac"); | 254 | #endif /* CONFIG_KMOD */ |
255 | #endif /* CONFIG_KMOD */ | ||
256 | 255 | ||
257 | mix = kzalloc(sizeof(*mix), GFP_KERNEL); | 256 | mix = kzalloc(sizeof(*mix), GFP_KERNEL); |
258 | if (! mix) | 257 | if (! mix) |
diff --git a/sound/ppc/tumbler.c b/sound/ppc/tumbler.c index 71a7a9765429..3f8d7164cef9 100644 --- a/sound/ppc/tumbler.c +++ b/sound/ppc/tumbler.c | |||
@@ -1351,9 +1351,8 @@ int __init snd_pmac_tumbler_init(struct snd_pmac *chip) | |||
1351 | char *chipname; | 1351 | char *chipname; |
1352 | 1352 | ||
1353 | #ifdef CONFIG_KMOD | 1353 | #ifdef CONFIG_KMOD |
1354 | if (current->fs->root) | 1354 | request_module("i2c-powermac"); |
1355 | request_module("i2c-powermac"); | 1355 | #endif /* CONFIG_KMOD */ |
1356 | #endif /* CONFIG_KMOD */ | ||
1357 | 1356 | ||
1358 | mix = kzalloc(sizeof(*mix), GFP_KERNEL); | 1357 | mix = kzalloc(sizeof(*mix), GFP_KERNEL); |
1359 | if (! mix) | 1358 | if (! mix) |