projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
generic: rtl8366: update vlan handling code for rtl8366s
[openwrt.git]
/
target
/
linux
/
brcm47xx
/
patches-2.6.34
/
160-kmap_coherent.patch
diff --git
a/target/linux/brcm47xx/patches-2.6.34/160-kmap_coherent.patch
b/target/linux/brcm47xx/patches-2.6.34/160-kmap_coherent.patch
index
9cba353
..
4a71a6f
100644
(file)
--- a/
target/linux/brcm47xx/patches-2.6.34/160-kmap_coherent.patch
+++ b/
target/linux/brcm47xx/patches-2.6.34/160-kmap_coherent.patch
@@
-1,6
+1,6
@@
--- a/arch/mips/include/asm/cpu-features.h
+++ b/arch/mips/include/asm/cpu-features.h
--- a/arch/mips/include/asm/cpu-features.h
+++ b/arch/mips/include/asm/cpu-features.h
-@@ -1
07,6 +107
,9 @@
+@@ -1
10,6 +110
,9 @@
#ifndef cpu_has_pindexed_dcache
#define cpu_has_pindexed_dcache (cpu_data[0].dcache.flags & MIPS_CACHE_PINDEX)
#endif
#ifndef cpu_has_pindexed_dcache
#define cpu_has_pindexed_dcache (cpu_data[0].dcache.flags & MIPS_CACHE_PINDEX)
#endif
@@
-48,7
+48,7
@@
kunmap_atomic(vaddr, KM_USER0);
--- a/arch/mips/mm/init.c
+++ b/arch/mips/mm/init.c
kunmap_atomic(vaddr, KM_USER0);
--- a/arch/mips/mm/init.c
+++ b/arch/mips/mm/init.c
-@@ -2
09,7 +209
,7 @@ void copy_user_highpage(struct page *to,
+@@ -2
10,7 +210
,7 @@ void copy_user_highpage(struct page *to,
void *vfrom, *vto;
vto = kmap_atomic(to, KM_USER1);
void *vfrom, *vto;
vto = kmap_atomic(to, KM_USER1);
@@
-57,7
+57,7
@@
page_mapped(from) && !Page_dcache_dirty(from)) {
vfrom = kmap_coherent(from, vaddr);
copy_page(vto, vfrom);
page_mapped(from) && !Page_dcache_dirty(from)) {
vfrom = kmap_coherent(from, vaddr);
copy_page(vto, vfrom);
-@@ -23
1,7 +231
,7 @@ void copy_to_user_page(struct vm_area_st
+@@ -23
2,7 +232
,7 @@ void copy_to_user_page(struct vm_area_st
struct page *page, unsigned long vaddr, void *dst, const void *src,
unsigned long len)
{
struct page *page, unsigned long vaddr, void *dst, const void *src,
unsigned long len)
{
@@
-66,7
+66,7
@@
page_mapped(page) && !Page_dcache_dirty(page)) {
void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
memcpy(vto, src, len);
page_mapped(page) && !Page_dcache_dirty(page)) {
void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
memcpy(vto, src, len);
-@@ -2
49,7 +249
,7 @@ void copy_from_user_page(struct vm_area_
+@@ -2
50,7 +250
,7 @@ void copy_from_user_page(struct vm_area_
struct page *page, unsigned long vaddr, void *dst, const void *src,
unsigned long len)
{
struct page *page, unsigned long vaddr, void *dst, const void *src,
unsigned long len)
{
This page took
0.033168 seconds
and
4
git commands to generate.