search for: ext3_file_operations

Displaying 2 results from an estimated 2 matches for "ext3_file_operations".

2001 Oct 01
2
do quotas work with ext3?
Hi, I had ext2 and 2.4.7 kernel , quotas were working ok. Now when all my filesystems are ext3 I figured out that quotas are not working.... if I do quotaon , repquota, quotacheck the programs return 0 without any output..... Does ext3 supports quotas? Nikolai
2002 Dec 15
0
[patch] ext3 use-after-free bugfix
..._instantiate(dentry, inode); - return 0; + err = ext3_mark_inode_dirty(handle, inode); + if (err == 0) { + d_instantiate(dentry, inode); + return 0; + } } ext3_dec_count(handle, inode); iput(inode); @@ -465,7 +468,6 @@ static int ext3_create (struct inode * d inode->i_fop = &ext3_file_operations; inode->i_mapping->a_ops = &ext3_aops; err = ext3_add_nondir(handle, dentry, inode); - ext3_mark_inode_dirty(handle, inode); } ext3_journal_stop(handle, dir); return err; @@ -490,7 +492,6 @@ static int ext3_mknod (struct inode * di if (!IS_ERR(inode)) { init_special_inod...