MFC r343480,343482: Silence Clang Scan warning about unsafe use of strcpy.Replace strcpy() by memcpy to the previously allocated range of known size.
Bump copyright following recent changes
Use full month in dpv(3), figpar(3), and bsdconfig(8) manualsReported by: maxim
Fix lint/igor warnings
DIRDEPS_BUILD: Update dependencies.Sponsored by: Dell EMC Isilon
Remove WARNS inherited fine by ../Makefile.inc.Sponsored by: EMC / Isilon Storage Division
First pass through library packaging.Sponsored by: The FreeBSD Foundation
META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.This both avoids some dependencies on xinstall.host and allowsbootstrapping on older releases to work due to lack of
META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.This both avoids some dependencies on xinstall.host and allowsbootstrapping on older releases to work due to lack of at least 'install -l'support.Sponsored by: EMC / Isilon Storage Division
show more ...
Make figpar(3) types/macros [more] unique (s/fp_/figpar_/gi)
figpar(3) merged to stable/10 before release/10.2.0MFC after: 3 daysX-MFC-to: stable/10
Fix typo when deregistering the VLAN unconfig event handlerSubmitted by: Masao Uebayashi <[email protected]>MFC after: 3 days
dirdeps.mk now sets DEP_RELDIR
Merge from head
Fix a lock up where we enter swapper() with interrupts disabled.In smp_rendezvous_cpus we expect to wait for all cpus to entersmp_rendezvous_action. If we call this holding a proc lock swapper may
Fix a lock up where we enter swapper() with interrupts disabled.In smp_rendezvous_cpus we expect to wait for all cpus to entersmp_rendezvous_action. If we call this holding a proc lock swapper mayattempt to also lock it, however as interrupts are disabled the cpu neverhandles the ipi. Because smp_rendezvous_action waits for all signaledcpus before contining it may get caught waiting for the cpu running swapperas the proc mutex will be unlocked after smp_rendezvous_cpus finishes.The fix is to enable interrupts in the configure stage as we should bedoing.MFC after: 1 week