#
4ba91e07 |
| 26-Aug-2025 |
Felix Johnson <felix.the.red@gmail.com> |
sysdecode_syscallnames.3: s/names/name/
The sysdecode_syscallname function was accidentally documented as being plural. Move it to reflect it's actual name, and adjust all references.
PR: 278383
sysdecode_syscallnames.3: s/names/name/
The sysdecode_syscallname function was accidentally documented as being plural. Move it to reflect it's actual name, and adjust all references.
PR: 278383 Reviewed by: ziaee Differential Revision: https://reviews.freebsd.org/D51002
show more ...
|
Revision tags: release/13.5.0-p3, release/14.2.0-p5, release/14.3.0-p2 |
|
#
b79bd43f |
| 03-Jul-2025 |
Mark Johnston <markj@FreeBSD.org> |
libsysdecode: Add support for decoding inotify syscall flags
MFC after: 3 months Sponsored by: Klara, Inc.
|
Revision tags: release/14.3.0-p1, release/14.2.0-p4, release/13.5.0-p2, release/14.3.0, release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0 |
|
#
e9ac4169 |
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
Revision tags: release/14.1.0 |
|
#
139d114a |
| 21-Mar-2024 |
Simon J. Gerraty <sjg@FreeBSD.org> |
libsysdecode use MKTABLES_INCLUDEDIR
We do not conflate SYSROOT with STAGE_ROOT/DESTDIR during DIRDEPS_BUILD
Make sure mktables looks in the right place.
Reviewed by: stevek Sponsored by: Juniper
libsysdecode use MKTABLES_INCLUDEDIR
We do not conflate SYSROOT with STAGE_ROOT/DESTDIR during DIRDEPS_BUILD
Make sure mktables looks in the right place.
Reviewed by: stevek Sponsored by: Juniper Networks, Inc. Differential Revision: https://reviews.freebsd.org/D44415
show more ...
|
#
bd23e71f |
| 05-Mar-2024 |
Kyle Evans <kevans@FreeBSD.org> |
libsysdecode: add a decoder for pollfd events
We'll use this in another change to read pollfd arrays coming from a successful poll(2) operation.
Reviewed by: bapt, jhb Differential Revision: https:
libsysdecode: add a decoder for pollfd events
We'll use this in another change to read pollfd arrays coming from a successful poll(2) operation.
Reviewed by: bapt, jhb Differential Revision: https://reviews.freebsd.org/D44159
show more ...
|
Revision tags: release/13.3.0, release/14.0.0 |
|
#
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
#
45be5010 |
| 09-Jul-2023 |
Jessica Clarke <jrtc27@FreeBSD.org> |
libsysdecode: Migrate from COMPAT_32BIT to generic COMPAT_LIBCOMPAT
The use isn't any more generic, just the variable itself, which will allow COMPAT_32BIT to be removed. The fact we even have to ch
libsysdecode: Migrate from COMPAT_32BIT to generic COMPAT_LIBCOMPAT
The use isn't any more generic, just the variable itself, which will allow COMPAT_32BIT to be removed. The fact we even have to check COMPAT_LIBCOMPAT here in order to pass the right flags to CPP points at our libcompat infrastructure not suitably modifying the CPP variable (which we barely use for world; this and bsd.symver.mk are the two uses, and the latter could benefit from the right flags too), but this change doesn't attempt to fix that.
See commit 8fad2cda93c7 ("bsd.compat.mk: Provide new CPP and sub-make variables") for the context behind this change.
Reviewed by: emaste, imp, brooks, jhb Differential Revision: https://reviews.freebsd.org/D40930
show more ...
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
b69ae1a3 |
| 22-Jun-2022 |
Dmitry Chagin <dchagin@FreeBSD.org> |
libsysdecode: Add preliminary support for decoding Linux syscalls
Differential revision: https://reviews.freebsd.org/D35354 MFC after: 2 weeks
|
#
9dac6096 |
| 22-Jun-2022 |
Dmitry Chagin <dchagin@FreeBSD.org> |
libsysdecode: For future use extract common code to a separate files
Reviewed by: jhb, emaste Differential revision: https://reviews.freebsd.org/D35353 MFC after: 2 weeks
|
Revision tags: release/13.1.0 |
|
#
d0f245d2 |
| 15-Apr-2022 |
Mark Johnston <markj@FreeBSD.org> |
libsysdecode: Add regression tests for sysdecode_cap_rights(3)
Reviewed by: jhb, emaste MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D349
libsysdecode: Add regression tests for sysdecode_cap_rights(3)
Reviewed by: jhb, emaste MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D34900
show more ...
|
Revision tags: release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0 |
|
#
59838c1a |
| 01-Apr-2020 |
John Baldwin <jhb@FreeBSD.org> |
Retire procfs-based process debugging.
Modern debuggers and process tracers use ptrace() rather than procfs for debugging. ptrace() has a supserset of functionality available via procfs and new deb
Retire procfs-based process debugging.
Modern debuggers and process tracers use ptrace() rather than procfs for debugging. ptrace() has a supserset of functionality available via procfs and new debugging features are only added to ptrace(). While the two debugging services share some fields in struct proc, they each use dedicated fields and separate code. This results in extra complexity to support a feature that hasn't been enabled in the default install for several years.
PR: 244939 (exp-run) Reviewed by: kib, mjg (earlier version) Relnotes: yes Differential Revision: https://reviews.freebsd.org/D23837
show more ...
|
#
7a9cfa08 |
| 18-Mar-2020 |
John Baldwin <jhb@FreeBSD.org> |
Fix the workaround to ignore the #warning for GCC.
clang and gcc use different warning flags for #warning preprocessor directives.
Reported by: Jenkins MFC after: 1 week
|
#
8d8a74e6 |
| 17-Mar-2020 |
John Baldwin <jhb@FreeBSD.org> |
Mark procfs-based process debugging as deprecated for FreeBSD 13.
Attempting to use ioctls on /proc/<pid>/mem to control a process will trigger warnings on the console. The <sys/pioctl.h> include f
Mark procfs-based process debugging as deprecated for FreeBSD 13.
Attempting to use ioctls on /proc/<pid>/mem to control a process will trigger warnings on the console. The <sys/pioctl.h> include file will also now emit a compile-time warning when used from userland.
Reviewed by: emaste MFC after: 1 week Relnotes: yes Differential Revision: https://reviews.freebsd.org/D23822
show more ...
|
Revision tags: release/12.1.0 |
|
#
f993ed2f |
| 09-Sep-2019 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r351732 through r352104.
|
#
4c1a82ce |
| 05-Sep-2019 |
Emmanuel Vadot <manu@FreeBSD.org> |
pkgbase: Create a FreeBSD-utilities package and make it the default one
The default package use to be FreeBSD-runtime but it should only contain binaries and libs enough to boot to single user and r
pkgbase: Create a FreeBSD-utilities package and make it the default one
The default package use to be FreeBSD-runtime but it should only contain binaries and libs enough to boot to single user and repair the system, it is also very handy to have a package that can be tranform to a small mfsroot. So create a new package named FreeBSD-utilities and make it the default one. Also move a few binaries and lib into this package when it make sense. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21506
show more ...
|
#
dc89d069 |
| 17-Aug-2019 |
Bryan Drewery <bdrewery@FreeBSD.org> |
Rework r339635 to fix .depend.tables.h handling.
Avoid touching the tables.h file unless it has changed to avoid unneeded rebuilds.
Also revert r350301's explicit dependencies.
Reviewed by: emaste
Rework r339635 to fix .depend.tables.h handling.
Avoid touching the tables.h file unless it has changed to avoid unneeded rebuilds.
Also revert r350301's explicit dependencies.
Reviewed by: emaste MFC after: 2 weeks X-MFC-With: r339635 (kevans request) PR: 238828 Sponsored by: DellEMC Differential Revision: https://reviews.freebsd.org/D21295
show more ...
|
#
a63915c2 |
| 28-Jul-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead @r350386
Sponsored by: The FreeBSD Foundation
|
#
78aee653 |
| 25-Jul-2019 |
Ed Maste <emaste@FreeBSD.org> |
libsysdecode: use the proper include directory
Reported by: cy Reviewed by: lwhsu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D21068
|
#
9e92b0f0 |
| 24-Jul-2019 |
Ed Maste <emaste@FreeBSD.org> |
libsysdecode: add explicit dependencies on recently changed headers
r349369 removed IP_MIN_MEMBERSHIPS and IPV6_MIN_MEMBERSHIPS, and r349893 removed TCP_RACK_SESS_CWV. libsysdecode lacked dependenci
libsysdecode: add explicit dependencies on recently changed headers
r349369 removed IP_MIN_MEMBERSHIPS and IPV6_MIN_MEMBERSHIPS, and r349893 removed TCP_RACK_SESS_CWV. libsysdecode lacked dependencies to trigger a rebuild of tables.h.
Add explicit dependencies as a workaround to address these specific cases; a holistic solution is still needed.
Sponsored by: The FreeBSD Foundation
show more ...
|
Revision tags: release/11.3.0, release/12.0.0 |
|
#
c6879c6c |
| 23-Oct-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r339015 through r339669.
|
#
c5c5072b |
| 23-Oct-2018 |
Alex Richardson <arichardson@FreeBSD.org> |
Fix regex for extracting SHM_* values for libsysdecode
There was an additional + after the {6} which is apparently ignored by the FreeBSD regex implementation but was giving me an error when compili
Fix regex for extracting SHM_* values for libsysdecode
There was an additional + after the {6} which is apparently ignored by the FreeBSD regex implementation but was giving me an error when compiling on MacOS.
While changing this also make sure that tables.h is not created if mktables fails. The current rule would create a partial tables.h which causes following incremental builds to use that broken file and fail with an unrelated compilation error or even succeed even though they shouldn't.
Approved By: jhb (mentor) Differential Revision: https://reviews.freebsd.org/D17069
show more ...
|
#
7847e041 |
| 24-Aug-2018 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r338026 through r338297, and resolve conflicts.
|
#
23ff19c6 |
| 20-Aug-2018 |
Alex Richardson <arichardson@FreeBSD.org> |
Don't rebuild ioctl.c and relink libsysdecode if there are no changes
Instead generate a temporary file and only overwrite ioctl.c if the files are actually different.
Approved By: jhb (mentor)
|
Revision tags: release/11.2.0 |
|
#
e6a376d1 |
| 01-May-2018 |
Ed Maste <emaste@FreeBSD.org> |
Retire lmc(4)
This driver supports legacy, 32-bit PCI devices, and had an ambiguous license. Supported devices were already reported to be rare in 2003 (when an earlier version of the driver was re
Retire lmc(4)
This driver supports legacy, 32-bit PCI devices, and had an ambiguous license. Supported devices were already reported to be rare in 2003 (when an earlier version of the driver was removed in r123201).
Reviewed by: rgrimes Relnotes: Yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D15245
show more ...
|
#
0faae8b9 |
| 15-Jan-2018 |
Michael Tuexen <tuexen@FreeBSD.org> |
Add support for decoding the nxt_flags, rcv_flags, and snd_flags of SCTP level cmsgs.
|