committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
05fc9d78 | kp | June 21, 2019, 7:58 a.m. | ip_output: pass PFIL_FWD in the slow path | |
9a807080 | syrinx | June 21, 2019, 7:45 a.m. | No need for each bsnmpd(1) module to open connection to syslog | |
65a184e0 | syrinx | June 21, 2019, 7:29 a.m. | Unbreak snmp_pf(3) after the changes introduced in r338209 | |
87ff949a | asomers | June 21, 2019, 4:57 a.m. | fusefs: raise protocol level to 7.23 | |
1f309e37 | asomers | June 21, 2019, 4:37 a.m. | fusefs: update tests after r349260 | |
804b7863 | imp | June 21, 2019, 3:49 a.m. | Mount and unmount devfs around calls to add packages.
pkg now uses /dev/null for some of its operations. NanoBSD's packaging stuff didn't mount that for the chroot it ran in, so any config that added packages would see the error: pkg: Cannot open /dev/null:No such file or directory when trying to actually add those packages. It's easy enough for nanobsd to mount /dev and it won't hurt anything that was already working and may help things that weren't (like this). I moved the mount/unmount pair to be in the right push/pop order from the submitted patch. PR: 238727 Submitted by: mike tancsa Tested by: Karl Denningercgit ViewVC |
|
8f9b3ba7 | asomers | June 21, 2019, 3:17 a.m. | fusefs: use standard integer types in fuse_kernel.h | |
b160acd1 | asomers | June 21, 2019, 3:04 a.m. | fusefs: raise the protocol level to 7.21 | |
ecb48915 | asomers | June 21, 2019, 2:55 a.m. | fusefs: diff reduction of fuse_kernel.h vs the upstream version
fuse_kernel.h is based on Linux's fuse.h. In r349250 I modified fuse_kernel.h by generating a diff of two versions of Linux's fuse.h and applying it to our tree. patch succeeded, but it put one chunk in the wrong location. This commit fixes that. No functional changes. Sponsored by: The FreeBSD Foundationcgit ViewVC |
|
a3cea1de | kevlo | June 21, 2019, 2:49 a.m. | Correct function names. | |
cd07b6ed | cem | June 21, 2019, 2:37 a.m. | rc.d/motd: Update motd more robustly
Use appropriate fsyncs to persist the rewritten /etc/motd file, when a rewrite is performed. Reported by: Jonathan Walton <jonathan AT isilon.com> Reviewed by: allanjude, vangyzen Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D20701cgit ViewVC |
|
95854972 | behlendorf1 | June 21, 2019, 1:31 a.m. | Prevent pointer to an out-of-scope local variable
`show_str` could be a pointer to a local variable in stack which is out-of-scope by the time `return (snprintf(buf, buflen, "%s\n", show_str));` is called. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com> Closes #8924 Closes #8940cgit |
|
accd6d9d | behlendorf1 | June 21, 2019, 1:30 a.m. | dedup=verify doesn't clear the blkptr's dedup flag
The logic to handle strong checksum collisions where the data doesn't match is incorrect. It is not clearing the dedup bit of the blkptr, which can cause a panic later in zio_ddt_free() due to the dedup table not matching what is in the blkptr. Reviewed-by: Tom Caputi <tcaputi@datto.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matthew Ahrens <mahrens@delphix.com> External-issue: DLPX-48097 Closes #8936cgit |
|
a64f8276 | behlendorf1 | June 21, 2019, 1:29 a.m. | Update vdev_ops_t from illumos
Align vdev_ops_t from illumos for better compatibility. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Igor Kozhukhov <igor@dilos.org> Closes #8925cgit |
|
58b5b90d | cem | June 21, 2019, 12:33 a.m. | Fixup UPDATING text for r349253 |