From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EBA32C004D4 for ; Thu, 19 Jan 2023 08:33:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229843AbjASIdL (ORCPT ); Thu, 19 Jan 2023 03:33:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49234 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229895AbjASIdI (ORCPT ); Thu, 19 Jan 2023 03:33:08 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 63D6534540; Thu, 19 Jan 2023 00:33:07 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id F1F84612BF; Thu, 19 Jan 2023 08:33:06 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10C68C433D2; Thu, 19 Jan 2023 08:33:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1674117186; bh=2qImJJBtPvbpMy8bN9TWuTOrxUBJRV11KYF65WUjiF4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=EQ6o9iN00moeLnZxGWPPu6Y/EyaZaPzzo5acnghtj9czu7LfWWl1OctyQv2xLPxJn jK0/V4HCEm9zYa57hxghEfRvO5siSVGIbk4/nO2UMEUAGpl2bMT3jCepGrRptSnebK a256J3ClOqSiQqIs5hEypWEPfXZ1d3lCoO0RPaDj40avpHvLpxYqDxSTnxJT46zWzU W7qynKqh7PTke5C7I/SAXYBcoR2JK4Bnm0BtWRo5vf8ZqFbxgquzHs7eB803b8ETpE 86XnkhP8PX+DNa5aeA925aYMsQl3SfWAkVNwrZzbUeIYqNfUWuoaYH7vBH0h/51pJW eWkW0Z/u/QMyw== Date: Thu, 19 Jan 2023 09:33:01 +0100 From: Christian Brauner To: Stephen Rothwell Cc: Christian Brauner , Seth Forshee , Linux Kernel Mailing List , Linux Next Mailing List Subject: Re: linux-next: build failure after merge of the vfs-idmapping tree Message-ID: <20230119083301.5shri6z3y4eivcpy@wittgenstein> References: <20230119102659.5f7d3b39@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230119102659.5f7d3b39@canb.auug.org.au> Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org On Thu, Jan 19, 2023 at 10:26:59AM +1100, Stephen Rothwell wrote: > Hi all, > > After merging the vfs-idmapping tree, today's linux-next build (powerpc > ppc64_defconfig) failed like this: > > arch/powerpc/platforms/cell/spufs/inode.c: In function 'spufs_setattr': > arch/powerpc/platforms/cell/spufs/inode.c:103:22: error: passing argument 1 of 'setattr_copy' from incompatible pointer type [-Werror=incompatible-pointer-types] > 103 | setattr_copy(&idmap, inode, attr); > | ^~~~~~ > | | > | struct mnt_idmap ** > In file included from arch/powerpc/platforms/cell/spufs/inode.c:12: > include/linux/fs.h:2941:19: note: expected 'struct mnt_idmap *' but argument is of type 'struct mnt_idmap **' > 2941 | void setattr_copy(struct mnt_idmap *, struct inode *inode, > | ^~~~~~~~~~~~~~~~~~ > cc1: all warnings being treated as errors Ah, cross-compilation... Thanks for catching and reporting this, Steven! Fixed now and pushed out. Christian