From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B751A8F49 for ; Wed, 4 Mar 2026 14:48:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772635719; cv=none; b=hV58SroEnEkz8rMyC9IHnGws138yFSK9lt1Gwiz9Yt9vt+k2fyfDuybOnbGIMQYXPFGytuqlVtS2WKTN2ScnBLCEb7YZgfpGApLFmdtvvqOhA0c/6qb7qy5yrxY8gaEEdq4dbqLlRfy7kgngmeEIaTG7wli23Ss12JaJzPc12V4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772635719; c=relaxed/simple; bh=/gfnpcuvCD3vXT0E7qHNhglysM/VtOAXoGA2+oWhBuU=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=Pyel6ymd+DUZ5LlmzO8taFORR3Py2vvEQCWS+271QoVLislZ55MyVzD84JKnBOt2QB9qNhdwDd5M9qSdhsyL/pFGwRHmIrQ7/w++UooVMiAXlWvZXFT1PO7gg5M0e3tKbmKQOYMIZHVHMBbe0VeI/calz3Wfte+uUkKQUGcWOPU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=s3Xw4cLt; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="s3Xw4cLt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C819DC2BC9E; Wed, 4 Mar 2026 14:48:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772635719; bh=/gfnpcuvCD3vXT0E7qHNhglysM/VtOAXoGA2+oWhBuU=; h=Date:From:To:Cc:Subject:From; b=s3Xw4cLtNV5XbbYi1yn2YckcjsLdC6TAhyfbLyQ4WnSS+Y9hR8nkAjc1yqjfcxkTo RhoDUWqSUyxbWSv6OQzieKNSyDSWZlWMHvgt1ocWSxD8IadUkuWVFAloSDaRmH4kKj VhsVazDZbCJDP10Kdi1zMku0Y8IZzPT4p60uobjjagrTRbligYCauw8C1ODs0wKVdq DjN5BWNwxdTjSwIIalWcfpj3Z4EY3rn0qmgS+hCJtf/DD0Y/77i9sn34ZLFToK16a7 7GQ8koYfTL9ZHelaip370V46AmRg52rWKDCGY5T9J89nMBB44jJtjTGs160xrZotXC YW6G8ASVXukFQ== Date: Wed, 4 Mar 2026 11:48:36 -0300 From: Arnaldo Carvalho de Melo To: linux-kernel@vger.kernel.org Cc: Andrey Albershteyn , Christian Brauner , Adrian Hunter , Ian Rogers , James Clark , Jiri Olsa , Namhyung Kim Subject: [PATCH 1/1 fyi] perf beauty: Sync UAPI linux/fs.h with kernel sources Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline tldr; Just FYI, I'm carrying this on the perf tools tree. Full explanation: There used to be no copies, with tools/ code using kernel headers directly. From time to time tools/perf/ broke due to legitimate kernel hacking. At some point Linus complained about such direct usage. Then we adopted the current model. See further details at: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/include/uapi/README To pick up changes from: 0e6b7eae1fded85f ("fs: add FS_XFLAG_VERITY for fs-verity files") These are used to beautify fs syscall arguments, albeit the changes in this update are not affecting those beautifiers. This addresses these tools/perf build warnings: Warning: Kernel ABI header differences: diff -u tools/perf/trace/beauty/include/uapi/linux/fs.h include/uapi/linux/fs.h Please see tools/include/uapi/README. Cc: Andrey Albershteyn Cc: Christian Brauner Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/trace/beauty/include/uapi/linux/fs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/trace/beauty/include/uapi/linux/fs.h b/tools/perf/trace/beauty/include/uapi/linux/fs.h index 66ca526cf786c761..70b2b661f42cb6e5 100644 --- a/tools/perf/trace/beauty/include/uapi/linux/fs.h +++ b/tools/perf/trace/beauty/include/uapi/linux/fs.h @@ -253,6 +253,7 @@ struct file_attr { #define FS_XFLAG_FILESTREAM 0x00004000 /* use filestream allocator */ #define FS_XFLAG_DAX 0x00008000 /* use DAX for IO */ #define FS_XFLAG_COWEXTSIZE 0x00010000 /* CoW extent size allocator hint */ +#define FS_XFLAG_VERITY 0x00020000 /* fs-verity enabled */ #define FS_XFLAG_HASATTR 0x80000000 /* no DIFLAG for this */ /* the read-only stuff doesn't really belong here, but any other place is -- 2.53.0