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 4A775E784AC for ; Mon, 2 Oct 2023 11:35:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236626AbjJBLfp (ORCPT ); Mon, 2 Oct 2023 07:35:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45176 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230427AbjJBLfo (ORCPT ); Mon, 2 Oct 2023 07:35:44 -0400 Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 63A2DBF; Mon, 2 Oct 2023 04:35:41 -0700 (PDT) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 145BA1F460; Mon, 2 Oct 2023 11:35:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1696246540; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=4ltmYzRXSXlU8gSXohvfQI4hIoo+0yDGOjKekJCMcZo=; b=xDUQuM2qNeq085ebVw5QSP/Gabzh2CWtV2WuFqW2jTzKAzzQQaX71USbhunLNnWjhJEDCJ 4SrsHhYkJnN8uvErW7k1YsesrntTU5BOLe071UfRd/BBmwDhvWVnaeS7arInhT+Vp9vBNx gHbT7gMZxSb1B/qWQhDuoY2OzTc5ISw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1696246540; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=4ltmYzRXSXlU8gSXohvfQI4hIoo+0yDGOjKekJCMcZo=; b=Pbxxerle8m3Y9QH4qWT80H0tmCBuSGC8JsVijHOI8EuWn/rIkPa3onFp7YhYefIFwPheTl tg95inoxzmcS1EAA== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id AC9E313456; Mon, 2 Oct 2023 11:35:39 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id u4dQKQurGmV+CQAAMHmgww (envelope-from ); Mon, 02 Oct 2023 11:35:39 +0000 Date: Mon, 2 Oct 2023 13:28:58 +0200 From: David Sterba To: Wedson Almeida Filho Cc: Alexander Viro , Christian Brauner , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Wedson Almeida Filho , Chris Mason , Josef Bacik , David Sterba , linux-btrfs@vger.kernel.org Subject: Re: [PATCH 05/29] btrfs: move btrfs_xattr_handlers to .rodata Message-ID: <20231002112858.GK13697@twin.jikos.cz> Reply-To: dsterba@suse.cz References: <20230930050033.41174-1-wedsonaf@gmail.com> <20230930050033.41174-6-wedsonaf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230930050033.41174-6-wedsonaf@gmail.com> User-Agent: Mutt/1.5.23.1-rc1 (2014-03-12) Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org On Sat, Sep 30, 2023 at 02:00:09AM -0300, Wedson Almeida Filho wrote: > From: Wedson Almeida Filho > > This makes it harder for accidental or malicious changes to > btrfs_xattr_handlers at runtime. > > Cc: Chris Mason > Cc: Josef Bacik > Cc: David Sterba > Cc: linux-btrfs@vger.kernel.org > Signed-off-by: Wedson Almeida Filho With slightly updated changelog added to misc-next, thanks.