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.
cd785c1b | jhb | Oct. 30, 2018, 12:23 a.m. | Permit local kernel modules to be built as part of a kernel build.
Add support for "local" modules. By default, these modules are located in LOCALBASE/sys/modules (where LOCALBASE defaults to /usr/local). Individual modules can be built along with a kernel by defining LOCAL_MODULES to the list of modules. Each is assumed to be a subdirectory containing a valid Makefile. If LOCAL_MODULES is not specified, all of the modules present in LOCALBASE/sys/modules are built and installed along with the kernel. This means that a port that installs a kernel module can choose to install its source along with a suitable Makefile to /usr/local/sys/modules/<foo>. Future kernel builds will then include that kernel module using the kernel configuration's opt_*.h headers and install it into /boot/kernel along with other kernel-specific modules. This is not trying to solve the issue of folks running GENERIC release kernels, but is instead aimed at folks who build their own kernels. For those folks this ensures that kernel modules from ports will always be using the right KBI, etc. This includes folks running any KBI-breaking kernel configs (such as PAE). There are still some kinks to be worked out with cross-building (we probably shouldn't include local modules in cross-built kernels by default), but this is a sufficient starting point. Reviewed by: imp MFC after: 3 months Relnotes: yes Differential Revision: https://reviews.freebsd.org/D16966cgit ViewVC |
|
25c9cca7 | markj | Oct. 30, 2018, 12:22 a.m. | Have gconcat advertise delete support if one of its disks does.
This follows the example set by other multi-disk GEOM classes. PR: 232676 Tested by: noah.bergbauer@tum.de MFC after: 1 monthcgit ViewVC |
|
68d0cda6 | jhb | Oct. 30, 2018, 12:19 a.m. | Make battery emptying rate available as sysctl variable.
Curiously, the in-kernel routines always use the design voltage to convert from mA to mW, but acpiconf in userland uses the current voltage. As a result, this can report a different mW rate than acpiconf. Submitted by: Manuel Stühn <freebsdnewbie@freenet.de> MFC after: 2 months Differential Revision: https://reviews.freebsd.org/D17077cgit ViewVC |
|
1d160e1e | kib | Oct. 30, 2018, 12:11 a.m. | Convert amd64_get/set_fs/gsbase to ifunc. | |
ca2b9726 | kib | Oct. 29, 2018, 11:59 p.m. | Remove rtld use of libc amd64_set_fsbase(). | |
29ea8142 | kib | Oct. 29, 2018, 11:56 p.m. | Initialize ifunc calling machinery earlier. | |
9775a6eb | kib | Oct. 29, 2018, 11:52 p.m. | amd64: Use ifuncs to select suitable implementation of set_pcb_flags(). | |
6d7f9194 | jhb | Oct. 29, 2018, 11:48 p.m. | Teach procstat -x about the AT_EHDRFLAGS ELF auxiliary vector.
Submitted by: Shawn Webb <lattera@gmail.com> Reviewed by: brooks Obtained from: HardenedBSD (bb71e9889d1362df01c2e5162e84cd7a4fc029c8) MFC after: 2 months Differential Revision: https://reviews.freebsd.org/D17067cgit ViewVC |
|
93177620 | kib | Oct. 29, 2018, 11:45 p.m. | Style. | |
6acf1b20 | kib | Oct. 29, 2018, 11:43 p.m. | Clarify explanation of VFCF_SBDRY. | |
63a77ae3 | behlendorf1 | Oct. 29, 2018, 11:18 p.m. | Added column definitions to arcstat.py
grow: ARC Grow enabled (!arc_no_grow) free: ARC Free memory (arc_sys_free) need: ARC Reclaim need (arc_need_free) Fixed alignment issues (mread had wrong width). Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Giuseppe Di Natale <guss80@gmail.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Gregor Kopka <gregor@kopka.net> Closes #8058cgit |
|
f01fc2d0 | np | Oct. 29, 2018, 10:35 p.m. | cxgbe/iw_cxgbe: Install the socket upcall before calling soconnect to | |
567a3784 | jhb | Oct. 29, 2018, 10:24 p.m. | Add support for "plain" (non-HMAC) SHA digests. | |
24929e2c | glebius | Oct. 29, 2018, 10:10 p.m. | Add a note that epoch(9) may change, to untie our hands for any future MFCs. | |
7815283d | np | Oct. 29, 2018, 9:46 p.m. | rping(1): Make sure the socket address defaults to something reasonable
when running as the server. Submitted by: Krishnamraju Eraparaju @ Chelsio Reviewed by: hselasky@, np@ MFC after: 1 month Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D17707cgit ViewVC |