Re: Linux page cache issue?

2007-03-27 Thread junjie cai
Hi, generic_forget_inode() don't call trancate_inode_pages() if FS is still active see the 10449 line below: 1040 static void generic_forget_inode(struct inode *inode) 1041 { 1042 struct super_block *sb = inode->i_sb; 1043 1044 if (!hlist_unhashed(&inode->i_hash)) { 1045

problem about Kconfig default value

2005-07-10 Thread junjie cai
hello list, i had a problem about the default value in Kconfig. for example,i had two Kconfig files: arch/arm/mach-xxx/Kconfig ... config CPU_MHZ ... init/Kconfig ... config PRESET_LPJ default 2 if(ARCH_XXX && CPU_MZH) default 1 if(ARCH_XXX && !CPU_MZH) ... right