basic/linux: update kernel headers from v6.10-rc3#33034
Conversation
|
Note We had successfully released a new major release. We are no longer in a development freeze phase. |
77bc1e7 to
df954a6
Compare
df954a6 to
fdbb902
Compare
fdbb902 to
25ee482
Compare
25ee482 to
89b750f
Compare
89b750f to
1b6892f
Compare
7b67115 to
46864d7
Compare
| __le16 other_encoding; /* spare for later use */ | ||
|
|
||
| /* are we inline data or a real extent? */ | ||
| /* are we __inline__ data or a real extent? */ |
There was a problem hiding this comment.
I don't think the change to the comment is intended.
There was a problem hiding this comment.
This and below are all intentional. Such spurious replacement is caused by build script of the kernel.
Previously, we copied kernel headers from include/uapi/linux, but now they are from usr/include/linux.
The build script of the kernel simply replace inline with __inline__, even the term is in comment.
Please report that to the kernel team.
46864d7 to
5cc0bb2
Compare
5cc0bb2 to
24ac89b
Compare
| #include <fcntl.h> | ||
| #include <limits.h> | ||
| #include <linux/auto_dev-ioctl.h> | ||
| #include <linux/auto_fs4.h> |
There was a problem hiding this comment.
hmm, the merge of this header with auto_fs.h was done in 4.18. We currently have 4.15 as "recommended baseline", and 3.15 as "minimum baseline"
There was a problem hiding this comment.
Now the header auto_fs.h is imported from the latest kernel tree. Hence, it is not necessary to consider backward compatibility about the header.
|
this generally looks good to me, except for the last patch, see above |
This also - merges basic/linux and shared/linux, - moves BPF_JUMP_A() to basic/missing_bpf.h, - copies from usrspace kernel headers directory generated by 'make headers', rather than copying from kernel tree, - copies const.h into our tree to reduce change in ethtool.h, - copies auto_fs.h into our tree to reduce change in auto_dev-ioctl.h.
auto_fs4.h is a trivial wrapper of auto_fs.h, and it is already included by auto_dev-ioctl.h.
24ac89b to
834afa1
Compare
This also