Commit 0ba33fac authored by Theodore Ts'o's avatar Theodore Ts'o

ext4: fix miscellaneous sparse warnings

Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent fbbbbd2f
...@@ -626,7 +626,7 @@ int ext4_getfsmap(struct super_block *sb, struct ext4_fsmap_head *head, ...@@ -626,7 +626,7 @@ int ext4_getfsmap(struct super_block *sb, struct ext4_fsmap_head *head,
{ {
struct ext4_fsmap dkeys[2]; /* per-dev keys */ struct ext4_fsmap dkeys[2]; /* per-dev keys */
struct ext4_getfsmap_dev handlers[EXT4_GETFSMAP_DEVS]; struct ext4_getfsmap_dev handlers[EXT4_GETFSMAP_DEVS];
struct ext4_getfsmap_info info = {0}; struct ext4_getfsmap_info info = { NULL };
int i; int i;
int error = 0; int error = 0;
......
...@@ -608,7 +608,7 @@ static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv) ...@@ -608,7 +608,7 @@ static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
static int ext4_ioc_getfsmap(struct super_block *sb, static int ext4_ioc_getfsmap(struct super_block *sb,
struct fsmap_head __user *arg) struct fsmap_head __user *arg)
{ {
struct getfsmap_info info = {0}; struct getfsmap_info info = { NULL };
struct ext4_fsmap_head xhead = {0}; struct ext4_fsmap_head xhead = {0};
struct fsmap_head head; struct fsmap_head head;
bool aborted = false; bool aborted = false;
......
...@@ -4679,7 +4679,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent) ...@@ -4679,7 +4679,7 @@ static int ext4_fill_super(struct super_block *sb, void *data, int silent)
#ifdef CONFIG_QUOTA #ifdef CONFIG_QUOTA
for (i = 0; i < EXT4_MAXQUOTAS; i++) for (i = 0; i < EXT4_MAXQUOTAS; i++)
kfree(sbi->s_qf_names[i]); kfree(get_qf_name(sb, sbi, i));
#endif #endif
ext4_blkdev_remove(sbi); ext4_blkdev_remove(sbi);
brelse(bh); brelse(bh);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment