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 X-Spam-Level: X-Spam-Status: No, score=-8.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 93B42C4361B for ; Fri, 11 Dec 2020 15:19:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 53FFB20793 for ; Fri, 11 Dec 2020 15:19:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2406142AbgLKO5B (ORCPT ); Fri, 11 Dec 2020 09:57:01 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48790 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2405326AbgLKO4M (ORCPT ); Fri, 11 Dec 2020 09:56:12 -0500 Received: from mail-vs1-xe42.google.com (mail-vs1-xe42.google.com [IPv6:2607:f8b0:4864:20::e42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 29492C061793 for ; Fri, 11 Dec 2020 06:55:32 -0800 (PST) Received: by mail-vs1-xe42.google.com with SMTP id b23so4906296vsp.9 for ; Fri, 11 Dec 2020 06:55:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=szeredi.hu; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=6qMuLxvVnDHp3uy4PWFqZ6dlsKThKey3XysejxwonVc=; b=jBCqJLhhqpWmNYM9gv6n/7oRElgxyilQXQMEYhBlLIagO2t+cpiqg8yQ5G06PdR46X hxAq7wNE1/5qUSy6J8ku1Vv41/qOq6C25IqBX9A1WbkaxkOLZZgjTGZjFztNWbThjo/K o06O3ghwW+WoXwiZ7MpUAG/PxcCOvabnzbun8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=6qMuLxvVnDHp3uy4PWFqZ6dlsKThKey3XysejxwonVc=; b=aiQCh/NBcGKKlji2Se7BO21R0c7xMfQM7sGQPpUAsGC9Ok3a+xPcW5lR6mXBlJJfxe Fi0M1wNPyKEkBRB4BaAeuwtxkvBTkFJaGDBpG2gEdtJbHktmFm/xjckhAggudK5+v6p8 z4Or8kkMFafQDcxY0u/ItGTt9MDdnx1vbMdfH3YKA9eS7WMYm9pG1LTuEdZ6e/45PuYK mvIjoJAjN03Q2E4Of3glsmomzTd3RTADy47Vkn8fJcmq4kPuBdX7QeEsiQFvLduoqhrs hv1HXocOx28MfrvPqmnhZ/IPslHoy98iPy+CLqrZpqOqLdHTApL0wczDse2hFA5egYFF Wq6w== X-Gm-Message-State: AOAM530jAEkWfeiSF2yE//KkQCEG9FmzMXTar9x1dyweXMyDm3t15AUw WBz4pQOeMzN37x2UHHUIoa0IE4ih9KC2dUlMii0VOA== X-Google-Smtp-Source: ABdhPJwMNShiSY2MP7gO+rAui8QkCyTNR0rAGwuad5uMGbc0nJuY8BS3bOuh1uYseNFLtouqxbqM41NpF+q/o6s7Eto= X-Received: by 2002:a67:fa50:: with SMTP id j16mr13417920vsq.9.1607698531177; Fri, 11 Dec 2020 06:55:31 -0800 (PST) MIME-Version: 1.0 References: <20201207163255.564116-1-mszeredi@redhat.com> <20201207163255.564116-7-mszeredi@redhat.com> In-Reply-To: From: Miklos Szeredi Date: Fri, 11 Dec 2020 15:55:20 +0100 Message-ID: Subject: Re: [PATCH v2 06/10] ovl: user xattr To: Amir Goldstein Cc: Miklos Szeredi , "Eric W . Biederman" , linux-fsdevel , overlayfs , LSM List , linux-kernel Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 8, 2020 at 2:14 PM Amir Goldstein wrote: > > On Mon, Dec 7, 2020 at 6:37 PM Miklos Szeredi wrote: > > > > Optionally allow using "user.overlay." namespace instead of > > "trusted.overlay." > > There are several occurrences of "trusted.overlay" string in code and > Documentation, which is fine. But maybe only adjust the comment for > testing xattr support: > > * Check if upper/work fs supports trusted.overlay.* xattr Updated documentation and comments. Pushed new series to: git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git#ovl-unpriv-v3 Based on the feedback, I feel it's ready for v5.11, so merged this into #overlayfs-next as well. Thanks, Miklos