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 DF6E2E7C4E6 for ; Wed, 4 Oct 2023 17:14:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243648AbjJDROX (ORCPT ); Wed, 4 Oct 2023 13:14:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58900 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243632AbjJDROW (ORCPT ); Wed, 4 Oct 2023 13:14:22 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9E2FA9E for ; Wed, 4 Oct 2023 10:14:19 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DBC2DC433C9; Wed, 4 Oct 2023 17:14:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696439659; bh=sOAP03+W9UkNwBC7b0j1L28Qg4M4aoxG9yOktt/PwQY=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=ccINkiZMcqiWavgi4MniY2e+pEf54wywxE/s4NCG1h8rQ9Sh769kzWyTytmAk4o+9 kpE0Gff2UAZ1NWYswQK9MOic4u1WHjafJeRpG4EmUpNwqNytD8Am7x/AUel9Vobie9 b6IcQ2tIJdwItLmnc7iy28Z2jN+WBAD+VPCVFwCLdnScHaOefcbEyUg44AGxcKHcIc wjVAHKXx+kBksaQfTCZ8CvYFEai7rLdJKlG85TsN1HiV+Pve4C6u0RGsCDiEM/KhaT XfZrYv6mySQ8cwhNGmezvvuWTEGwcm2tn6yLUlhS+IKjuXNqJOOKsehQE+TbjYWf8S 3Zu2rX6xAm8vg== From: =?utf-8?B?QmrDtnJuIFTDtnBlbA==?= To: =?utf-8?Q?Cl=C3=A9ment_L=C3=A9ger?= , Paul Walmsley , Palmer Dabbelt , Albert Ou Cc: =?utf-8?Q?Cl=C3=A9ment_L=C3=A9ger?= , Atish Patra , Andrew Jones , Evan Green , =?utf-8?Q?Bj=C3=B6rn?= Topel , linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, Ron Minnich , Daniel Maslowski , Conor Dooley Subject: Re: [PATCH v2 5/8] riscv: add support for sysctl unaligned_enabled control In-Reply-To: <20231004151405.521596-6-cleger@rivosinc.com> References: <20231004151405.521596-1-cleger@rivosinc.com> <20231004151405.521596-6-cleger@rivosinc.com> Date: Wed, 04 Oct 2023 19:14:16 +0200 Message-ID: <877co2ux7b.fsf@all.your.base.are.belong.to.us> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Cl=C3=A9ment L=C3=A9ger writes: > This sysctl tuning option allows the user to disable misaligned access > handling globally on the system. This will also be used by misaligned > detection code to temporarily disable misaligned access handling. > > Signed-off-by: Cl=C3=A9ment L=C3=A9ger Reviewed-by: Bj=C3=B6rn T=C3=B6pel