diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 21:19:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 21:19:10 -0400 |
commit | 9723d95d1076e9ef394ff26162fb0b47531089b0 (patch) | |
tree | 242504391bf7f373cd5198d32df29868ea2996e2 | |
parent | 4a4f8fdba6f5a34ca90f426021e17491a30202da (diff) | |
parent | 7049e6800f40046c384c522a990669024d5f5836 (diff) |
Merge rsync://rsync.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6
-rw-r--r-- | arch/sparc64/solaris/socket.c | 6 | ||||
-rw-r--r-- | include/asm-sparc64/processor.h | 34 |
2 files changed, 38 insertions, 2 deletions
diff --git a/arch/sparc64/solaris/socket.c b/arch/sparc64/solaris/socket.c index ec8e074c4eac..06740582717e 100644 --- a/arch/sparc64/solaris/socket.c +++ b/arch/sparc64/solaris/socket.c | |||
@@ -317,8 +317,10 @@ asmlinkage int solaris_sendmsg(int fd, struct sol_nmsghdr __user *user_msg, unsi | |||
317 | unsigned long *kcmsg; | 317 | unsigned long *kcmsg; |
318 | compat_size_t cmlen; | 318 | compat_size_t cmlen; |
319 | 319 | ||
320 | if(kern_msg.msg_controllen > sizeof(ctl) && | 320 | if (kern_msg.msg_controllen <= sizeof(compat_size_t)) |
321 | kern_msg.msg_controllen <= 256) { | 321 | return -EINVAL; |
322 | |||
323 | if(kern_msg.msg_controllen > sizeof(ctl)) { | ||
322 | err = -ENOBUFS; | 324 | err = -ENOBUFS; |
323 | ctl_buf = kmalloc(kern_msg.msg_controllen, GFP_KERNEL); | 325 | ctl_buf = kmalloc(kern_msg.msg_controllen, GFP_KERNEL); |
324 | if(!ctl_buf) | 326 | if(!ctl_buf) |
diff --git a/include/asm-sparc64/processor.h b/include/asm-sparc64/processor.h index bc1445b904ef..d0bee2413560 100644 --- a/include/asm-sparc64/processor.h +++ b/include/asm-sparc64/processor.h | |||
@@ -192,6 +192,40 @@ extern unsigned long get_wchan(struct task_struct *task); | |||
192 | 192 | ||
193 | #define cpu_relax() barrier() | 193 | #define cpu_relax() barrier() |
194 | 194 | ||
195 | /* Prefetch support. This is tuned for UltraSPARC-III and later. | ||
196 | * UltraSPARC-I will treat these as nops, and UltraSPARC-II has | ||
197 | * a shallower prefetch queue than later chips. | ||
198 | */ | ||
199 | #define ARCH_HAS_PREFETCH | ||
200 | #define ARCH_HAS_PREFETCHW | ||
201 | #define ARCH_HAS_SPINLOCK_PREFETCH | ||
202 | |||
203 | static inline void prefetch(const void *x) | ||
204 | { | ||
205 | /* We do not use the read prefetch mnemonic because that | ||
206 | * prefetches into the prefetch-cache which only is accessible | ||
207 | * by floating point operations in UltraSPARC-III and later. | ||
208 | * By contrast, "#one_write" prefetches into the L2 cache | ||
209 | * in shared state. | ||
210 | */ | ||
211 | __asm__ __volatile__("prefetch [%0], #one_write" | ||
212 | : /* no outputs */ | ||
213 | : "r" (x)); | ||
214 | } | ||
215 | |||
216 | static inline void prefetchw(const void *x) | ||
217 | { | ||
218 | /* The most optimal prefetch to use for writes is | ||
219 | * "#n_writes". This brings the cacheline into the | ||
220 | * L2 cache in "owned" state. | ||
221 | */ | ||
222 | __asm__ __volatile__("prefetch [%0], #n_writes" | ||
223 | : /* no outputs */ | ||
224 | : "r" (x)); | ||
225 | } | ||
226 | |||
227 | #define spin_lock_prefetch(x) prefetchw(x) | ||
228 | |||
195 | #endif /* !(__ASSEMBLY__) */ | 229 | #endif /* !(__ASSEMBLY__) */ |
196 | 230 | ||
197 | #endif /* !(__ASM_SPARC64_PROCESSOR_H) */ | 231 | #endif /* !(__ASM_SPARC64_PROCESSOR_H) */ |