Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in mm/shmem.c between commit 26567cdbbf1a ("fix nommu breakage in shmem.c") from Linus' tree and commit "shmem-fix-build-regression-fix" from the akpm tree. I fixed it up (I used the latter version - see the full new version below) and can carry the fix as necessary (no action is required). -- Cheers, Stephen Rothwell sfr@canb.auug.org.au diff --git a/include/linux/ramfs.h b/include/linux/ramfs.h index 5bf5500..69e37c2 100644 --- a/include/linux/ramfs.h +++ b/include/linux/ramfs.h @@ -6,7 +6,13 @@ struct inode *ramfs_get_inode(struct super_block *sb, const struct inode *dir, extern struct dentry *ramfs_mount(struct file_system_type *fs_type, int flags, const char *dev_name, void *data); -#ifndef CONFIG_MMU +#ifdef CONFIG_MMU +static inline int +ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize) +{ + return 0; +} +#else extern int ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize); extern unsigned long ramfs_nommu_get_unmapped_area(struct file *file, unsigned long addr, diff --git a/mm/shmem.c b/mm/shmem.c index b863bf3..a8d9da0 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -2830,8 +2831,6 @@ out4: * effectively equivalent, but much lighter weight. */ -#include - static struct file_system_type shmem_fs_type = { .name = "tmpfs", .mount = ramfs_mount, @@ -2897,7 +2896,6 @@ static struct dentry_operations anon_ops = { */ struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags) { - int error; struct file *res; struct inode *inode; struct path path; @@ -2932,11 +2930,10 @@ struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags d_instantiate(path.dentry, inode); inode->i_size = size; clear_nlink(inode); /* It is unlinked */ -#ifndef CONFIG_MMU + res = ERR_PTR(ramfs_nommu_expand_for_mapping(inode, size)); if (IS_ERR(res)) goto put_dentry; -#endif res = alloc_file(&path, FMODE_WRITE | FMODE_READ, &shmem_file_operations);