Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c9e70efbfc3186674d93451e0fbf18365347b4d
Commit:     7c9e70efbfc3186674d93451e0fbf18365347b4d
Parent:     81eabcbe0b991ddef5216f30ae91c4b226d54b6d
Author:     Eric Sandeen <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 17 16:20:07 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Dec 17 19:28:17 2007 -0800

    ecryptfs: set s_blocksize from lower fs in sb
    
    eCryptfs wasn't setting s_blocksize in it's superblock; just pick it up
    from the lower FS.  Having an s_blocksize of 0 made things like "filefrag"
    which call FIGETBSZ unhappy.
    
    Signed-off-by: Eric Sandeen <[EMAIL PROTECTED]>
    Acked-by: Mike Halcrow <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 fs/ecryptfs/main.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
index b83a512..a277754 100644
--- a/fs/ecryptfs/main.c
+++ b/fs/ecryptfs/main.c
@@ -523,6 +523,7 @@ static int ecryptfs_read_super(struct super_block *sb, 
const char *dev_name)
        lower_mnt = nd.mnt;
        ecryptfs_set_superblock_lower(sb, lower_root->d_sb);
        sb->s_maxbytes = lower_root->d_sb->s_maxbytes;
+       sb->s_blocksize = lower_root->d_sb->s_blocksize;
        ecryptfs_set_dentry_lower(sb->s_root, lower_root);
        ecryptfs_set_dentry_lower_mnt(sb->s_root, lower_mnt);
        rc = ecryptfs_interpose(lower_root, sb->s_root, sb, 0);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to