#
27bd6c32 |
| 23-Jan-2025 |
John Baldwin <jhb@FreeBSD.org> |
Remove references to gvinum(8) in various manpages
Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D48540
|
Revision tags: release/14.2.0 |
|
#
3a212cc6 |
| 25-Nov-2024 |
David Gilbert <dave@daveg.ca> |
sbin/{ffsinfo,mount,newfs}: reference ffs(4) in man pages
PR: 282867 MFC: stable/14 Approved by: mhorne (via IRC)
|
#
6e1fc011 |
| 15-Oct-2024 |
Graham Percival <gperciva@tarsnap.com> |
manuals: Fix "unusual .Xr" warnings with a script
These were reported by `mandoc -T lint ...` as warnings: - unusual Xr order - unusual Xr punctuation
Fixes made by script in https://github.com/Tar
manuals: Fix "unusual .Xr" warnings with a script
These were reported by `mandoc -T lint ...` as warnings: - unusual Xr order - unusual Xr punctuation
Fixes made by script in https://github.com/Tarsnap/freebsd-doc-scripts
Signed-off-by: Graham Percival <gperciva@tarsnap.com> Reviewed by: mhorne, Alexander Ziaee <concussious.bugzilla@runbox.com> Sponsored by: Tarsnap Backup Inc. Pull Request: https://github.com/freebsd/freebsd-src/pull/1464
show more ...
|
Revision tags: release/13.4.0, release/14.1.0 |
|
#
61dece6d |
| 15-May-2024 |
Kirk McKusick <mckusick@FreeBSD.org> |
Enable soft updates by default for UFS2 filesystems.
Soft updates dramatically improve the performance of UFS filesystems. The newfs(8) utility currently does not enable them by default. The FreeBSD
Enable soft updates by default for UFS2 filesystems.
Soft updates dramatically improve the performance of UFS filesystems. The newfs(8) utility currently does not enable them by default. The FreeBSD installer enables soft updates by default. However custom built installations that do not specify the -U option to newfs(8) and the prebuilt UFS system images get filesystems without soft updates enabled.
There are several testing sites that run benchmarks comparing the performance of Linux distributions versus BSD distributions. When they run filesystem comparison benchmarks they use newfs(8) to create the UFS filesystem. Because it does not have soft updates enabled it runs poorly versus the Linux ext4 filesystem. When I have suggested to them that they should enable soft updates on the UFS filesystem in their testing their response is that they expect the utility that creates the filesystem to use optimal defaults and that they cannot be expected to fiddle with various option settings.
The purpose of this change is to give a filesystem created with newfs(8) reasonably optimal settings. For UFS2 this means enabling soft updates. For UFS1 which tends to be used on small systems with minimal memory and CPU speed, the lower memory footprint of running without soft updates is a more sensible default.
This change adds a note in the section of the newfs(8) manual page that describes the -U option for enabling soft updates that they are enabled by default for UFS2 filesystems and that they can be disabled by using tunefs(8).
Reviewed-by: Warner Losh, kib MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D45201
show more ...
|
Revision tags: release/13.3.0 |
|
#
51e16cb8 |
| 23-Nov-2023 |
Warner Losh <imp@FreeBSD.org> |
sbin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl
sbin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script.
Sponsored by: Netflix
show more ...
|
Revision tags: release/14.0.0 |
|
#
b2c76c41 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line nroff pattern
Remove /^\.\\"\s*\$FreeBSD\$$\n/
|
#
4ce2a2db |
| 06-Aug-2023 |
Kirk McKusick <mckusick@FreeBSD.org> |
Update newfs(8) and tunefs(8) manual pages.
Delete note that UFS/FFS filesystems running with journaled soft updates cannot run background fsck as 344b5bf made it possible to do so.
MFC-with: 3
Update newfs(8) and tunefs(8) manual pages.
Delete note that UFS/FFS filesystems running with journaled soft updates cannot run background fsck as 344b5bf made it possible to do so.
MFC-with: 344b5bf Sponsored-by: The FreeBSD Foundation
show more ...
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
78f41298 |
| 13-Nov-2022 |
Kirk McKusick <mckusick@FreeBSD.org> |
Enable taking snapshots on UFS/FFS filesystems using journaled soft updates.
All the needed infrastructure updates have been made to allow snapshots to be taken on UFS/FFS filesystems that are using
Enable taking snapshots on UFS/FFS filesystems using journaled soft updates.
All the needed infrastructure updates have been made to allow snapshots to be taken on UFS/FFS filesystems that are using journaled soft updates. The most immediate benefit is the ability to use a snapshot to take a consistent filesystem dump on a live filesystem using the -L option to dump(8).
Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D36491
show more ...
|
#
0929a153 |
| 21-Oct-2022 |
Kirk McKusick <mckusick@FreeBSD.org> |
Add a description of soft updates journaling to newfs(8).
Add a descrition to the newfs(8) -j (journal enablement) flag that explains what soft updates journaling does, the tradeoffs to using it, an
Add a description of soft updates journaling to newfs(8).
Add a descrition to the newfs(8) -j (journal enablement) flag that explains what soft updates journaling does, the tradeoffs to using it, and the limitations that it imposes. Copied from the description in tunefs(8).
PR: 261944 Sponsored by: The FreeBSD Foundation
show more ...
|
#
016aeb7c |
| 14-Aug-2022 |
Jens Schweikhardt <schweikh@FreeBSD.org> |
The fdformat man page is in section 8 (not 1).
|
Revision tags: release/13.1.0, release/12.3.0, release/13.0.0 |
|
#
5b9b65e9 |
| 20-Jan-2021 |
Mateusz Piotrowski <0mp@FreeBSD.org> |
Explain the newfs naming convention
It might be unclear why newfs and newfs_msdos should cross-reference each other. Add a note explaining it.
This is a follow-up to 74bd20769706041108a573601cf0b61
Explain the newfs naming convention
It might be unclear why newfs and newfs_msdos should cross-reference each other. Add a note explaining it.
This is a follow-up to 74bd20769706041108a573601cf0b61c755bdc56.
Reported by: kib Reviewed by: imp, kib, rpokala MFC after: 3 days
show more ...
|
#
74bd2076 |
| 07-Jan-2021 |
Mateusz Piotrowski <0mp@FreeBSD.org> |
Reference newfs_msdos(8) from the newfs(8) manual
PR: 252484 Reported by: Graham Perrin <grahamperrin@gmail.com> MFC after: 3 days
|
#
e13534d5 |
| 28-Dec-2020 |
Gordon Bergling <gbe@FreeBSD.org> |
newfs(8): Fix unusual Xr order
- unusual Xr order: gjournal after gpart
MFC after: 3 days
|
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0 |
|
#
47d3e2f8 |
| 07-Aug-2019 |
Kirk McKusick <mckusick@FreeBSD.org> |
Correct the location of the first backup superblock in fsck_ffs.8. Make a note in the newfs.8 manual page to update the first backup superblock location when changing the default fragment size for th
Correct the location of the first backup superblock in fsck_ffs.8. Make a note in the newfs.8 manual page to update the first backup superblock location when changing the default fragment size for the filesystem.
Reported by: O. Hartmann
show more ...
|
Revision tags: release/11.3.0 |
|
#
7e565c55 |
| 30-Jan-2019 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r343320 through r343570.
|
#
1165591e |
| 29-Jan-2019 |
Dmitry Morozovsky <marck@FreeBSD.org> |
Allow dashes as a valid character in UFS labels.
Reviewed by: mckusick, imp, 0mp MFC after: 2 weeks Differential Revision: D18991
|
#
0cde0ab2 |
| 25-Jan-2019 |
Kirk McKusick <mckusick@FreeBSD.org> |
Allow tunefs to include '_' as a legal character in label names to make it consistent with newfs. Document the legality of '_' in label names in both tunefs(8) and newfs(8).
PR: 235182 Sub
Allow tunefs to include '_' as a legal character in label names to make it consistent with newfs. Document the legality of '_' in label names in both tunefs(8) and newfs(8).
PR: 235182 Submitted by: darius@dons.net.au Reviewed by: Conrad Meyer MFC after: 3 days Sponsored by: Netflix
show more ...
|
Revision tags: release/12.0.0, release/11.2.0, release/10.4.0 |
|
#
531c2d7a |
| 24-Jul-2017 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead@r320180
|
#
bca9d05f |
| 23-Jul-2017 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Merge ^/head r319973 through 321382.
|
Revision tags: release/11.1.0 |
|
#
d2043ca3 |
| 14-Jul-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r320573 through r320970.
|
#
bbbfb2a9 |
| 07-Jul-2017 |
Warner Losh <imp@FreeBSD.org> |
Bump date for today's commit.
|
#
1e001b99 |
| 07-Jul-2017 |
Warner Losh <imp@FreeBSD.org> |
Improve wording for -E and -t flags. -E never writes the entire disk, so don't imply that. Note that if BIO_DELETE isn't supported, the operation will fail (as opposed to writing the entire disk with
Improve wording for -E and -t flags. -E never writes the entire disk, so don't imply that. Note that if BIO_DELETE isn't supported, the operation will fail (as opposed to writing the entire disk with zeros). Thin storage also benefits from trim. List more accurate reason why trim helps flash-memory.
show more ...
|
#
348238db |
| 01-Mar-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r314420 through r314481.
|
#
fbbd9655 |
| 01-Mar-2017 |
Warner Losh <imp@FreeBSD.org> |
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96
show more ...
|
Revision tags: release/11.0.1, release/11.0.0, release/10.3.0 |
|
#
11d38a57 |
| 28-Oct-2015 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Merge from head
Sponsored by: Gandi.net
|