1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

kernel: Update to version 2.6.37.6

Thank you Peter Wagner for the patch


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26441 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
hauke
2011-04-03 13:59:07 +00:00
parent 530ba0e928
commit 84b3048574
25 changed files with 36 additions and 34 deletions

View File

@@ -25,7 +25,7 @@
/**
* shmem_file_setup - get an unlinked file living in tmpfs
* @name: name for dentry (to be seen in /proc/<pid>/maps
@@ -2780,9 +2791,6 @@ int shmem_zero_setup(struct vm_area_stru
@@ -2780,10 +2791,7 @@ int shmem_zero_setup(struct vm_area_stru
if (IS_ERR(file))
return PTR_ERR(file);
@@ -34,6 +34,7 @@
- vma->vm_file = file;
- vma->vm_ops = &shmem_vm_ops;
+ shmem_set_file(vma, file);
vma->vm_flags |= VM_CAN_NONLINEAR;
return 0;
}
--- a/fs/file.c