[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150415092133.GA9264@mwanda>
Date: Wed, 15 Apr 2015 12:21:33 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: "Theodore Ts'o" <tytso@....edu>
Cc: Andreas Dilger <adilger.kernel@...ger.ca>,
linux-ext4@...r.kernel.org, kernel-janitors@...r.kernel.org
Subject: [patch] ext4 crypto: type bug with encrypted symlinks
sd->len is an __le16 and not an __le32.
Fixes: f1195c72c951 ('ext4 crypto: Add symlink encryption')
Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index 69e12ee..5c82a3c 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -3256,7 +3256,7 @@ static int ext4_symlink(struct inode *dir,
ext4_put_fname_crypto_ctx(&ctx);
if (err < 0)
goto err_drop_inode;
- sd->len = cpu_to_le32(ostr.len);
+ sd->len = cpu_to_le16(ostr.len);
disk_link.name = (char *) sd;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists