lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Tue, 12 Jun 2018 13:21:13 +0800
From:   kbuild test robot <lkp@...el.com>
To:     linux-kernel-owner@...r.kernel.org
Cc:     kbuild-all@...org, Zhouyang Jia <jiazhouyang09@...il.com>,
        Andrew Morton <akpm@...ux-foundation.org>,
        Alexey Dobriyan <adobriyan@...il.com>,
        Al Viro <viro@...iv.linux.org.uk>,
        Thomas Gleixner <tglx@...utronix.de>,
        Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH] proc: add error handling for kmem_cache_create

Hi,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on linus/master]
[also build test WARNING on v4.17 next-20180608]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/linux-kernel-owner-vger-kernel-org/proc-add-error-handling-for-kmem_cache_create/20180612-122737
config: i386-randconfig-x012-201823 (attached as .config)
compiler: gcc-7 (Debian 7.3.0-16) 7.3.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All warnings (new ones prefixed by >>):

   fs/proc/inode.c: In function 'proc_init_kmemcache':
>> fs/proc/inode.c:108:10: warning: 'return' with a value, in function returning void
      return -ENOMEM;
             ^
   fs/proc/inode.c:96:13: note: declared here
    void __init proc_init_kmemcache(void)
                ^~~~~~~~~~~~~~~~~~~

vim +/return +108 fs/proc/inode.c

    95	
    96	void __init proc_init_kmemcache(void)
    97	{
    98		proc_inode_cachep = kmem_cache_create("proc_inode_cache",
    99						     sizeof(struct proc_inode),
   100						     0, (SLAB_RECLAIM_ACCOUNT|
   101							SLAB_MEM_SPREAD|SLAB_ACCOUNT|
   102							SLAB_PANIC),
   103						     init_once);
   104		pde_opener_cache =
   105			kmem_cache_create("pde_opener", sizeof(struct pde_opener), 0,
   106					  SLAB_ACCOUNT|SLAB_PANIC, NULL);
   107		if (!proc_inode_cachep || !pde_opener_cache)
 > 108			return -ENOMEM;
   109	
   110		proc_dir_entry_cache = kmem_cache_create_usercopy(
   111			"proc_dir_entry", sizeof(struct proc_dir_entry), 0, SLAB_PANIC,
   112			offsetof(struct proc_dir_entry, inline_name),
   113			sizeof_field(struct proc_dir_entry, inline_name), NULL);
   114	}
   115	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Download attachment ".config.gz" of type "application/gzip" (33159 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ