- 03 Mar, 2020 2 commits
-
-
Mark Johnston authored
PR: 244563 Reported by: swills
-
Conrad Meyer authored
It does extremely useful things like execute sendmail and spew dubiously accurate factoids. From the feedback, it seems like it is an essential utility in a modern unix and not at all a useless bikeshed. How do those Linux people live without it? Reverts r358561.
-
- 02 Mar, 2020 22 commits
-
-
Conrad Meyer authored
FreeBSD isn't an encyclopedia.
-
Cy Schubert authored
BSD_GE_YEAR BSD_GT_YEAR BSD_LT_YEAR MFC after: 3 days
-
Cy Schubert authored
macros. MFC after: 3 days
-
Cy Schubert authored
__FreeBSD_version > 3.0 and 5.0 is redundant. MFC after: 3 days
-
John Baldwin authored
The windowsize option permits multiple blocks to be transmitted before the receiver sends an ACK improving throughput for larger files. Reviewed by: asomers MFC after: 2 weeks Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D23836
-
Emmanuel Vadot authored
When looking for cpu with the same OPP starts from the root /cpus node so each instance of cpufreq_dt will now each cpu with the same operating point. Also test that the node we are testing have the property "device_type" set to be equal to "cpu". While here add more debug printfs (off by defaults). MFC after: 2 weeks
-
Ed Maste authored
These support outdated or obsolete ISA WAN (T1/E1) sync serial cards, and these drivers haven't really been touched (other than in tree-wide sweeps to keep them building) for 15+ years. Related PCI devices ce and cp are still in the tree, with deprecation proposed in D23928. MFC after: 1 week Relnotes: Yes Sponsored by: The FreeBSD Foundation
-
Kyle Evans authored
Hexdump test was failling on big endian systems when testing decimal, octal and hexa outputs as the tests were designed on a little endian system. This revision adds the two distinct flavors of output expected and determines at runtime which to compare against. Submitted by: Renato Riolino <renato.riolino_eldorado.org.br> MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D23191
-
Leandro Lupori authored
This issue was observed on a PowerPC64 machine with an Adaptec RAID Controller with PCI device ID 0x028d, where sense data was causing a buffer overflow because of wrong max sense length logic. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D23667
-
Kyle Evans authored
We don't produce these anymore as of r356797, remove the remnant in generate-ucl.sh that accounted for them. This isn't strictly necessary, but future work is needed for the various packages that can be generated on a lib build. Namely, we may produce -development packages for private/internal libs that should be installed but won't have the base FreeBSD-libfoo pkg to depend on because it's internal (e.g. liby, libpmcstat, libifconfig) but we want the headers installed. It may be a better move to just shove these into -runtime-development instead, but if not then we've just simplified the cases that need to take private/internal libs into account.
-
Pawel Biernacki authored
Submitted by: Antranig Vartanian <antranigv@freebsd.am> Reviewed by: kaktus Commented by: jhb Approved by: kib (mentor) Sponsored by: illuria security Differential Revision: https://reviews.freebsd.org/D23759
-
Andrew Turner authored
Sponsored by: Innovate UK
-
Ed Maste authored
-
Andrew Turner authored
This removes one place with hard coded offsets in locore.S Sponsored by: Innovate UK
-
Ed Maste authored
Sponsored by: The FreeBSD Foundation
-
Hans Petter Selasky authored
This allows libinput to disable touchpads when the lid is closed and various desktop environments can show power-off dialogs when the power button is pressed. While the latter is doable with devd a cross-platform solution is nicer. Submitted by: Greg V <greg@unrelenting.technology> Differential Revision: https://reviews.freebsd.org/D23863 MFC after: 1 week Sponsored by: Mellanox Technologies
-
Martin Matuska authored
Sync libarchive with vendor. Relevant vendor changes: Issue #1257: Add testcase for ZIPX files with LZMA_STREAM_END marker PR #1331: cpio.5: fix hard link description Issue #1335: archive_read.c: fix UBSan warning about undefined behavior Issue #1338: XAR reader: fix UBSan warning about undefined behavior Issue #1339: bsdcpio_test: fix datatype in from_hex() Issue #1341: Safe writes: delete temporary file if rename fails. Issue #1341: Safe writes: improve error handling MFC after: 1 week
-
Kyle Evans authored
GCC points out a couple levels down in convert_to_features that this may be used uninitialized. Indeed, this is true- initialize it to NULL so that we at least deref a null pointer.
-
Kyle Evans authored
When generating an cloned interface instance in edsc_clone_create(), generate a MAC address from the FF OUI with ether_gen_addr(). This allows us to have unique local-link addresses. Previously, the MAC address was zero. Submitted by: Neel Chauhan <neel AT neelc DOT org> Differential Revision: https://reviews.freebsd.org/D23842
-
Ed Maste authored
elfctl is a tool for modifying the NT_FREEBSD_FEATURE_CTL ELF note, which contains a set of flags for enabling or disabling vulnerability mitigations and other features. Reviewed by: csjp, kib MFC after: 2 weeks Relnotes: Yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D23910
-
Martin Matuska authored
Relevant vendor changes: Issue #1257: Add testcase for ZIPX files with LZMA_STREAM_END marker PR #1331: cpio.5: fix hard link description Issue #1335: archive_read.c: fix UBSan warning about undefined behavior Issue #1338: XAR reader: fix UBSan warning about undefined behavior Issue #1339: bsdcpio_test: fix datatype in from_hex() Issue #1341: Safe writes: delete temporary file if rename fails
-
Warner Losh authored
-
- 01 Mar, 2020 16 commits
-
-
Warner Losh authored
-
Warner Losh authored
-
Warner Losh authored
-
Greg Lehey authored
Lite. Nowadays it's trivial to find the explanation, such as at https://www.deseret.com/2000/2/27/19493013/blackthorn-winds-make-bushes-bud. It doesn't seem appropriate to replace it with an explanation.
-
Mark Johnston authored
This fixes a regression from r358363. Reported by: manu, jbeich Tested by: jbeich
-
Mateusz Guzik authored
They are spurious since introduction of struct pwd, which provides them implicitly. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D23885
-
Mateusz Guzik authored
The new structure is copy-on-write. With the assumption that path lookups are significantly more frequent than chdirs and chrooting this is a win. This provides stable root and jail root vnodes without the need to reference them on lookup, which in turn means less work on globally shared structures. Note this also happens to fix a bug where jail vnode was never referenced, meaning subsequent access on lookup could run into use-after-free. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D23884
-
Mateusz Guzik authored
Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D23883
-
Mateusz Guzik authored
Reviewed by: markj, rlibby Differential Revision: https://reviews.freebsd.org/D23902
-
Warner Losh authored
Remove the old ioctl .h files Remove copying/linking ioctl .h files in instasllworld Remove bktr from lint Add now-removed files with ObsoleteFiles
-
Ed Maste authored
From r349609 (PROTMAX_DISABLE) and r354790 (STKGAP_DISABLE). Commited upstream (in a slightly different form) as r3831. Sponsored by: The FreeBSD Foundation
-
Ed Maste authored
Sponsored by: The FreeBSD Foundation
-
Warner Losh authored
Remove the brooktree driver as discussed on arch@. Bump FreeBSD version to 1300082, though I doubt anything will care. Relnote: yes
-
Xin LI authored
-
Warner Losh authored
network layer has evolved since then, and this won't compile there.
-
Warner Losh authored
The sbuf API has evolved since 8, as have many others. The other API sweeps didn't make the changes conditional, so this is now noise.
-