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


Groups > linux.kernel > #1654734

Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API
Date 2017-06-01 02:10 +0200
Message-ID <tNlQB-3Cc-5@gated-at.bofh.it> (permalink)
References <tNhN0-CQ-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Andy,

[auto build test ERROR on pm/linux-next]
[also build test ERROR on v4.12-rc3 next-20170531]
[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/Andy-Shevchenko/ACPI-et-al-convert-to-use-new-UUID-API/20170601-072311
base:   https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
config: x86_64-randconfig-x019-201722 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/acpi/bus.c: In function 'acpi_run_osc':
>> drivers/acpi/bus.c:228:2: error: unknown type name 'guid_t'
     guid_t guid;
     ^~~~~~
>> drivers/acpi/bus.c:234:6: error: implicit declaration of function 'guid_parse' [-Werror=implicit-function-declaration]
     if (guid_parse(context->uuid_str, &guid))
         ^~~~~~~~~~
   cc1: some warnings being treated as errors

vim +/guid_t +228 drivers/acpi/bus.c

   222	acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
   223	{
   224		acpi_status status;
   225		struct acpi_object_list input;
   226		union acpi_object in_params[4];
   227		union acpi_object *out_obj;
 > 228		guid_t guid;
   229		u32 errors;
   230		struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
   231	
   232		if (!context)
   233			return AE_ERROR;
 > 234		if (guid_parse(context->uuid_str, &guid))
   235			return AE_ERROR;
   236		context->ret.length = ACPI_ALLOCATE_BUFFER;
   237		context->ret.pointer = NULL;

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

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


Thread

[PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2017-05-31 21:50 +0200
  Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2017-06-01 01:00 +0200
  Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API kbuild test robot <lkp@intel.com> - 2017-06-01 02:00 +0200
  Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API kbuild test robot <lkp@intel.com> - 2017-06-01 02:10 +0200
  Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API Christoph Hellwig <hch@lst.de> - 2017-06-05 18:10 +0200
    Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API Andy Shevchenko <andriy.shevchenko@linux.intel.com> - 2017-06-05 19:30 +0200
      Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API "Rafael J. Wysocki" <rafael@kernel.org> - 2017-06-05 22:40 +0200
        Re: [PATCH v2 3/5] ACPI / bus: Switch to use new generic UUID API Christoph Hellwig <hch@lst.de> - 2017-06-06 12:00 +0200

csiph-web