MFC 344761: ------------------------------------------------------------------------ r344761 | ken | 2019-03-04 09:30:37 -0500 (Mon, 04 Mar 2019) | 18 lines Add IBM TS1160 density codes to lib
MFC 344761: ------------------------------------------------------------------------ r344761 | ken | 2019-03-04 09:30:37 -0500 (Mon, 04 Mar 2019) | 18 lines Add IBM TS1160 density codes to libmt and the mt(1) man page. These are taken directly from the density report from a TS1160 tape drive. (Using mt getdensity) A TS1160 drive stores 20TB raw (60TB with compression) on a JE tape. lib/libmt/mtlib.c: Add 3592A6 encrypted/unencrypted density codes, and bpmm/bpi values. usr.bin/mt/mt.1: Add 3592B5 encrypted/unencrypted density codes, bpmm/bpi values and number of tracks. Bump the man page date. Sponsored by: Spectra Logic ------------------------------------------------------------------------
show more ...
Add the LTO-8 Type M density code (0x5d, LTO-8M) to libmt and themt(1) man page.LTO-8 Type M (also known as M8) is a pristine LTO-7 cartridgeformatted in a LTO-8 drive in a new, higher density fo
Add the LTO-8 Type M density code (0x5d, LTO-8M) to libmt and themt(1) man page.LTO-8 Type M (also known as M8) is a pristine LTO-7 cartridgeformatted in a LTO-8 drive in a new, higher density format. Ithas a separate density code, and is only readable in an LTO-8drive.lib/libmt/mtlib.c: Add the LTO-8 Type M density code to the density table in libmt.usr.bin/mt/mt.1: Add the LTO-8 Type M density code to the density table in the mt(1) man page.MFC after: 3 daysSponsored by: Spectra Logic
DIRDEPS_BUILD: Update dependencies.Sponsored by: Dell EMC Isilon
Add IBM TS1155 density codes to libmt and the mt(1) man page.These are taken directly from the density report from a TS1155tape drive. (Using mt getdensity)lib/libmt/mtlib.c: Add 3592B5 encryp
Add IBM TS1155 density codes to libmt and the mt(1) man page.These are taken directly from the density report from a TS1155tape drive. (Using mt getdensity)lib/libmt/mtlib.c: Add 3592B5 encrypted/unencrypted density codes, and bpmm/bpi values. The bpmm/bpi values are the same as TS1150, but there are 50% more tracks.usr.bin/mt/mt.1: Add 3592B5 encrypted/unencrypted density codes, bpmm/bpi values and number of tracks. Bump the man page date.MFC after: 3 daysSponsored by: Spectra Logic
Add LTO-8 density codes.lib/libmt/mtlib.c: Add the LTO-8 density code to the density table in libmt.usr.bin/mt/mt.1: Add the LTO-8 density code, tracks, bpmm, and bpi to the density table in t
Add LTO-8 density codes.lib/libmt/mtlib.c: Add the LTO-8 density code to the density table in libmt.usr.bin/mt/mt.1: Add the LTO-8 density code, tracks, bpmm, and bpi to the density table in the mt(1) man page.MFC after: 3 daysSponsored by: Spectra Logic
Add the density code for LTO-7 to libmt and the mt(1) man page.The density code and bits per mm values were obtained from anactual drive density report.The number of tracks were obtained from an
Add the density code for LTO-7 to libmt and the mt(1) man page.The density code and bits per mm values were obtained from anactual drive density report.The number of tracks were obtained from an LTO-7 hardwareannouncement on IBM's web site.Sponsored by: Spectra LogicMFC after: 3 days
Fix typo.MFC after: 1 monthSponsored by: The FreeBSD Foundation
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
Revert r284417 it is not necessary anymore
Enforce overwritting SHLIBDIRSince METAMODE has been added, sys.mk loads bsd.mkopt.mk which ends load loadingbsd.own.mk which then defines SHLIBDIR before all the Makefile.inc everywhere.This ma
Enforce overwritting SHLIBDIRSince METAMODE has been added, sys.mk loads bsd.mkopt.mk which ends load loadingbsd.own.mk which then defines SHLIBDIR before all the Makefile.inc everywhere.This makes /lib being populated again.Reported by: many
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 sync of 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