From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f44.google.com (mail-wm1-f44.google.com [209.85.128.44]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3740810EB for ; Mon, 11 Apr 2022 08:37:14 +0000 (UTC) Received: by mail-wm1-f44.google.com with SMTP id p189so9396724wmp.3 for ; Mon, 11 Apr 2022 01:37:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=baylibre-com.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to; bh=GmeaL9LDzXt1lPoYGs5/whgdTpbkv+uMLJxNx67on5U=; b=En1vDoVLLQ4z3hVfItCZlMRphp0aoIeyvop6pZQ99iOwzMH5A3TI1Y0hkHiuygYWJO W0kkWHK1yWNXviBp/bUinRXdJewpQTwevUxvBoXbKbci5bLfrzQfE0FRRnN3v+YcgH79 azH4p5jr19pAMhsZZXM1slPZnEaEdIpsPlDO8sl41Esei69Ni/UQ9cNerAE9MTf3gRg6 5CI1AVaNcHO9c5yJnpMQoY56ZAV3QuPiKh6LReY7NWqHAmSkakaKr3yrl9gl/vlMx+0n tAm/3DlnYLBS9qcqN3/0fbY9mmpqJNujSthe5ex2K8OygUBOfFwgyoHBSQ1ZeH3lP7cB Q77Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=GmeaL9LDzXt1lPoYGs5/whgdTpbkv+uMLJxNx67on5U=; b=RCXEqnprLFeMbsdnfpX3xtd7oam9A197wM7bFc6RzIDJFc5LYgGOTMTikXCp8RqJdg 10OADdWAWOnVrq8fVnpJbPE9xF+aDpxVYIvgpBd5+4MdHh+9pB9S1cPSr5tbSTCmp9C3 28ajC9uNwch+D/eR8WUc7Lc5OnqItVXzAo7tbkdn4DJQISjZdCHdSCmMF49FuFUUV9ft psUO41ibbOieYDzJ/5n2vTdKgryULVSQyT1Tyk5yZXjDZUS5aJfLVo0gfRRsOaHidfKW F+SqmQv83MFkXA5cO4wDUTgpBshIwCVcfrYD77GvyrMryG1s8a0GhUIXXUbqDyEz1UpC uxgQ== X-Gm-Message-State: AOAM533qCOjyoOLktM7uGhXnfx9hd5OGn+vpGdzKgNwPBcygS0G61oIB YH7KCTjvRbkGWSEuIbCOCqtJMw== X-Google-Smtp-Source: ABdhPJxYx2mY9F3f959XsRTlxs/Nym64Waidy4p3tUy1+g4fDUkZw66J/o+5dxLZJ+oc0hIHE7/jqw== X-Received: by 2002:a05:600c:682:b0:38e:b64f:f11d with SMTP id a2-20020a05600c068200b0038eb64ff11dmr7210510wmn.202.1649666232377; Mon, 11 Apr 2022 01:37:12 -0700 (PDT) Received: from Red ([2a01:cb1d:3d5:a100:264b:feff:fe03:2806]) by smtp.googlemail.com with ESMTPSA id z5-20020a05600c0a0500b0037bb8df81a2sm19621474wmp.13.2022.04.11.01.37.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 11 Apr 2022 01:37:11 -0700 (PDT) Date: Mon, 11 Apr 2022 10:37:10 +0200 From: LABBE Corentin To: Herbert Xu Cc: jernej.skrabec@gmail.com, samuel@sholland.org, wens@csie.org, linux-arm-kernel@lists.infradead.org, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, linux-sunxi@lists.linux.dev Subject: Re: [PATCH 00/19] crypto: allwinner: lots of fixes Message-ID: References: <20220317205605.3924836-1-clabbe@baylibre.com> Precedence: bulk X-Mailing-List: linux-sunxi@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Le Mon, Apr 11, 2022 at 03:40:28PM +0800, Herbert Xu a écrit : > On Mon, Apr 11, 2022 at 09:37:22AM +0200, LABBE Corentin wrote: > > > > Coul you give me more details ? > > I do not have any sparse error. > > Did you compile with C=1? Anyway, for a start hash_pad is broken as > it tries to store an le32 value into a u32. Yes I compile with both W=1 and C=1. But rigth, hash_pad takes a u32 but the origin variable bf is __le32, so perhaps it is why sparse dont see a problem. Anyway I will fix hash_pad declaration. Thanks