Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1390767

Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info

From Minchan Kim <minchan@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info
Date 2016-04-29 07:40 +0200
Message-ID <rt9jH-H2-1@gated-at.bofh.it> (permalink)
References <rsWcP-5NB-39@gated-at.bofh.it> <rt2id-3cJ-1@gated-at.bofh.it> <rt4Dn-52y-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Fri, Apr 29, 2016 at 09:38:24AM +0900, Sergey Senozhatsky wrote:
> On (04/28/16 15:07), Andrew Morton wrote:
> > Needed a bit of tweaking due to
> > http://ozlabs.org/~akpm/mmotm/broken-out/zsmalloc-reordering-function-parameter.patch
> 
> Thanks.
> 
> > From: Dan Streetman <ddstreet@ieee.org>
> > Subject: mm/zsmalloc: don't fail if can't create debugfs info
> > 
> > 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.
> 
> no real objections from me. given that both zram and zswap now provide
> unique names for zsmalloc stats dir, this patch does not fix any "real"
> (observed) problem /* ENOMEM in debugfs_create_dir() is a different
> case */.  so it's more of a cosmetic patch.
> 

Logically, I agree with Dan that debugfs is just optional so it
shouldn't affect the module running *but* practically, debugfs_create_dir
failure with no memory would be rare. Rather than it, we would see
error from same entry naming like Dan's case.

If we removes such error propagation logic in case of same naming,
how do zsmalloc user can notice that debugfs entry was not created
although zs_creation was successful returns success?

Otherwise, future user of zsmalloc can miss it easily if they repeates
same mistakes. So, what's the gain with this patch in real practice?


> FWIW,
> Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
> 
> 	-ss

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] mm/zsmalloc: don't fail if can't create debugfs info Dan Streetman <ddstreet@ieee.org> - 2016-04-28 17:40 +0200
  Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Andrew Morton <akpm@linux-foundation.org> - 2016-04-29 00:10 +0200
    Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2016-04-29 02:40 +0200
      Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Minchan Kim <minchan@kernel.org> - 2016-04-29 07:40 +0200
        Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Dan Streetman <ddstreet@ieee.org> - 2016-04-29 17:00 +0200
          Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Minchan Kim <minchan@kernel.org> - 2016-04-29 17:40 +0200
  Re: [PATCH] mm/zsmalloc: don't fail if can't create debugfs info Ganesh Mahendran <opensource.ganesh@gmail.com> - 2016-05-03 04:20 +0200

csiph-web