https://github.com/torvalds/linux
Revision 2be35a619482c1f4e5bc7a2d84049b8d7d171882 authored by Jakub Kicinski on 23 November 2023, 03:06:24 UTC, committed by Jakub Kicinski on 23 November 2023, 16:52:12 UTC
The makefile dependency is trying to include the wrong header:

<command-line>: fatal error: ../../../../include/uapi//linux/nfsd.h: No such file or directory

The guard also looks wrong.

Fixes: f14122b2c2ac ("tools: ynl: Add source files for nfsd netlink protocol")
Reviewed-by: Chuck Lever <chuck.lever@oracle.com>
Link: https://lore.kernel.org/r/20231123030624.1611925-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 37f0205
Raw File
Tip revision: 2be35a619482c1f4e5bc7a2d84049b8d7d171882 authored by Jakub Kicinski on 23 November 2023, 03:06:24 UTC
tools: ynl: fix header path for nfsd
Tip revision: 2be35a6
.rustfmt.toml
edition = "2021"
newline_style = "Unix"

# Unstable options that help catching some mistakes in formatting and that we may want to enable
# when they become stable.
#
# They are kept here since they are useful to run from time to time.
#format_code_in_doc_comments = true
#reorder_impl_items = true
#comment_width = 100
#wrap_comments = true
#normalize_comments = true
back to top