Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp1706928ybt; Thu, 18 Jun 2020 15:27:14 -0700 (PDT) X-Google-Smtp-Source: ABdhPJz3AO35Lcao9ieBAunWPPCLjOSjBAWSHc3jSQdcYqKpFaVnxfFCkAXSAR3stBHztUxLZHZG X-Received: by 2002:a17:906:1a06:: with SMTP id i6mr881574ejf.9.1592519234349; Thu, 18 Jun 2020 15:27:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592519234; cv=none; d=google.com; s=arc-20160816; b=q+n7KWEeCf8YEupv3HiNPhGgdgzoTKIMICJRRJQQ9T8DHarfFszf7DMAOnlhZzSew2 iaAd0ulsV+hyZV1Fv7n380r2FZntO79gYWOVQjJJC8o152QpmY5G+uGnUvSoVOn/B29X b4AAGo9cp3lcl5c+xRGB4gwGZNJo6Rkx8sNJvaMaCW9SCwP7o50c/L5m6TBt4BFAklyW zOOFa5Qf1qohQlj7iMzgk/+9aeT3V36OUoy2jShpZHfx9P8yuBMTz1iVTgeuq856oLZi jCT82Rzcooo3o1Z74XiYdWYRxQnsWAaS8k5osj9DxZYFhhMk9aFcYnA0MI/8cjYSOnSI XKiQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=fciyHFdVN4SQdYBQGF2WXzzU8xVqizEuZMFpaUZrq6M=; b=FfK+Cwq7BOJFf73GosHKNByqNc2uoOKczgZqNUSmO3SEDpnKJLRb7kiNzOybKEf8UB o3r8+DBmGIgL7FKP2k7XbbXUTElndZ7xPRkGBcXG3FyknS8ich8xSeGIi4CLI2U5jmiG GPms9avgG13p85MCvM+P8MtD9iXC2xbT+3QL/CzMnSH6fJVNboChIeAu55bnyPDY7aAv Sw532ulXZ/u+i3/+CXJtYfy18tGqaB1Uj5A5d62jlOL1RUbAAvwDPOQyUE7/L9PEyDLA LMKCLn6GfBGS5asrpeMR9UdKtRh93y6NJRha6j3a9jzQomkLBRIZ2zc+QnVYRKzUQKSR WZvg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id u4si2821175ejx.88.2020.06.18.15.26.49; Thu, 18 Jun 2020 15:27:14 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730361AbgFRTJv (ORCPT + 99 others); Thu, 18 Jun 2020 15:09:51 -0400 Received: from nautica.notk.org ([91.121.71.147]:34209 "EHLO nautica.notk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728071AbgFRTJv (ORCPT ); Thu, 18 Jun 2020 15:09:51 -0400 Received: by nautica.notk.org (Postfix, from userid 1001) id 8B12CC01F; Thu, 18 Jun 2020 21:09:49 +0200 (CEST) Date: Thu, 18 Jun 2020 21:09:34 +0200 From: Dominique Martinet To: Alexander Kapshuk Cc: ericvh@gmail.com, lucho@ionkov.net, davem@davemloft.net, kuba@kernel.org, v9fs-developer@lists.sourceforge.net, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] net/9p: Fix sparse endian warning in trans_fd.c Message-ID: <20200618190934.GB20699@nautica> References: <20200618183417.5423-1-alexander.kapshuk@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200618183417.5423-1-alexander.kapshuk@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Alexander Kapshuk wrote on Thu, Jun 18, 2020: > Address sparse endian warning: > net/9p/trans_fd.c:932:28: warning: incorrect type in assignment (different base types) > net/9p/trans_fd.c:932:28: expected restricted __be32 [addressable] [assigned] [usertype] s_addr > net/9p/trans_fd.c:932:28: got unsigned long > > Signed-off-by: Alexander Kapshuk INADDR_ANY is 0 so this really is noop but sure, less warnings is always good. I'll take this one for 5.9. Thanks! -- Dominique