Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 58632
b: refs/heads/master
c: 24e9d0b
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed Jul 10, 2007
1 parent e3f9b73 commit e2828d3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8bb809df6919f927bcb910bbc852d5724eaa1eb9
refs/heads/master: 24e9d0b96dac5503c0b6f034d553030c604228a7
10 changes: 10 additions & 0 deletions trunk/arch/mips/mm/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* Copyright (C) 1994 - 2003, 07 by Ralf Baechle (ralf@linux-mips.org)
* Copyright (C) 2007 MIPS Technologies, Inc.
*/
#include <linux/fs.h>
#include <linux/fcntl.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
Expand Down Expand Up @@ -164,3 +166,11 @@ void __init cpu_cache_init(void)

panic(cache_panic);
}

int __weak __uncached_access(struct file *file, unsigned long addr)
{
if (file->f_flags & O_SYNC)
return 1;

return addr >= __pa(high_memory);
}
7 changes: 7 additions & 0 deletions trunk/drivers/char/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ static inline int uncached_access(struct file *file, unsigned long addr)
* On ia64, we ignore O_SYNC because we cannot tolerate memory attribute aliases.
*/
return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
#elif defined(CONFIG_MIPS)
{
extern int __uncached_access(struct file *file,
unsigned long addr);

return __uncached_access(file, addr);
}
#else
/*
* Accessing memory above the top the kernel knows about or through a file pointer
Expand Down

0 comments on commit e2828d3

Please sign in to comment.