Skip to content

Commit

Permalink
mm/zsmalloc: don't fail if can't create debugfs info
Browse files Browse the repository at this point in the history
Change the return type of zs_pool_stat_create() to void, and remove the
logic to abort pool creation if the stat debugfs dir/file could not be
created.

The debugfs stat file is for debugging/information only, and doesn't
affect operation of zsmalloc; there is no reason to abort creating the
pool if the stat file can't be created.  This was seen with zswap, which
used the same name for all pool creations, which caused zsmalloc to fail
to create a second pool for zswap if CONFIG_ZSMALLOC_STAT was enabled.

Signed-off-by: Dan Streetman <[email protected]>
Reviewed-by: Sergey Senozhatsky <[email protected]>
Cc: Dan Streetman <[email protected]>
Cc: Minchan Kim <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
ddstreet authored and torvalds committed May 21, 2016
1 parent 200867a commit d34f615
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions mm/zsmalloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -573,17 +573,17 @@ static const struct file_operations zs_stat_size_ops = {
.release = single_release,
};

static int zs_pool_stat_create(struct zs_pool *pool, const char *name)
static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
{
struct dentry *entry;

if (!zs_stat_root)
return -ENODEV;
return;

entry = debugfs_create_dir(name, zs_stat_root);
if (!entry) {
pr_warn("debugfs dir <%s> creation failed\n", name);
return -ENOMEM;
return;
}
pool->stat_dentry = entry;

Expand All @@ -592,10 +592,8 @@ static int zs_pool_stat_create(struct zs_pool *pool, const char *name)
if (!entry) {
pr_warn("%s: debugfs file entry <%s> creation failed\n",
name, "classes");
return -ENOMEM;
return;
}

return 0;
}

static void zs_pool_stat_destroy(struct zs_pool *pool)
Expand All @@ -613,17 +611,15 @@ static void __exit zs_stat_exit(void)
{
}

static inline int zs_pool_stat_create(struct zs_pool *pool, const char *name)
static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
{
return 0;
}

static inline void zs_pool_stat_destroy(struct zs_pool *pool)
{
}
#endif


/*
* For each size class, zspages are divided into different groups
* depending on how "full" they are. This was done so that we could
Expand Down Expand Up @@ -1952,8 +1948,8 @@ struct zs_pool *zs_create_pool(const char *name)
prev_class = class;
}

if (zs_pool_stat_create(pool, name))
goto err;
/* debug only, don't abort if it fails */
zs_pool_stat_create(pool, name);

/*
* Not critical, we still can use the pool
Expand Down

0 comments on commit d34f615

Please sign in to comment.