All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild@lists.01.org
Subject: [intel-tdx:tdx/guest-rebased 123/133] drivers/acpi/svkl.c:164 acpi_svkl_init() warn: '&acpi_svkl_dev' not released on lines: 157.
Date: Fri, 14 Jan 2022 07:04:56 +0800	[thread overview]
Message-ID: <202201140712.0FfPwB6d-lkp@intel.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 3245 bytes --]

CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
CC: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>

tree:   https://github.com/intel/tdx.git tdx/guest-rebased
head:   e3995864d37c56f431c93fc3dc454d9c65f5e9ea
commit: 26c864b08bf871eb0ef04b33df5e7888594314eb [123/133] ACPI: Add SVKL table support
:::::: branch date: 2 days ago
:::::: commit date: 3 days ago
config: x86_64-randconfig-m001 (https://download.01.org/0day-ci/archive/20220114/202201140712.0FfPwB6d-lkp(a)intel.com/config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>

smatch warnings:
drivers/acpi/svkl.c:164 acpi_svkl_init() warn: '&acpi_svkl_dev' not released on lines: 157.

vim +164 drivers/acpi/svkl.c

26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  139  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  140  static int __init acpi_svkl_init(void)
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  141  {
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  142  	acpi_status status = AE_OK;
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  143  	int ret;
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  144  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  145  	ret = misc_register(&acpi_svkl_dev);
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  146  	if (ret) {
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  147  		pr_err("SVKL: can't misc_register on minor=%d\n",
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  148  		       MISC_DYNAMIC_MINOR);
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  149  		return ret;
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  150  	}
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  151  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  152  	mutex_init(&svkl_lock);
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  153  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  154  	status = acpi_get_table(ACPI_SIG_SVKL, 0, &svkl_tbl_hdr);
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  155  	if (ACPI_FAILURE(status) || !svkl_tbl_hdr) {
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  156  		pr_err("get table failed\n");
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  157  		return -ENODEV;
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  158  	}
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  159  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  160  	dump_svkl_header();
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  161  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  162  	pr_info("ACPI: SVKL module loaded\n");
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  163  
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19 @164  	return 0;
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  165  }
26c864b08bf871 Kuppuswamy Sathyanarayanan 2020-06-19  166  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

                 reply	other threads:[~2022-01-13 23:04 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202201140712.0FfPwB6d-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.