From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751435AbdAMK2c convert rfc822-to-8bit (ORCPT ); Fri, 13 Jan 2017 05:28:32 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47490 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751372AbdAMK23 (ORCPT ); Fri, 13 Jan 2017 05:28:29 -0500 Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells In-Reply-To: <201701131735.YZjI6jyI%fengguang.wu@intel.com> References: <201701131735.YZjI6jyI%fengguang.wu@intel.com> To: kbuild test robot Cc: dhowells@redhat.com, kbuild-all@01.org, arnd@arndb.de, linux-kernel@vger.kernel.org, ruchandani.tina@gmail.com, linux-afs@lists.infradead.org Subject: Re: [PATCH 1/2] afs: Move UUID struct to linux/uuid.h MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <13176.1484303290.1@warthog.procyon.org.uk> Content-Transfer-Encoding: 8BIT Date: Fri, 13 Jan 2017 10:28:10 +0000 Message-ID: <13177.1484303290@warthog.procyon.org.uk> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 13 Jan 2017 10:28:13 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org kbuild test robot wrote: > fs/afs/cmservice.c: In function 'afs_deliver_cb_init_call_back_state3': > >> fs/afs/cmservice.c:365:34: error: invalid application of 'sizeof' to incomplete type 'struct uuid_v1' > call->request = kmalloc(sizeof(struct uuid_v1), GFP_KERNEL); > ^~~~~~ Ah... Missing #include of linux/uuid.h. Under some circumstances it is included indirectly. David