#
1efe3c6b |
| 04-Nov-2011 |
Ed Schouten <ed@FreeBSD.org> |
Add missing static keywords for global variables to tools in sbin/.
These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or wit
Add missing static keywords for global variables to tools in sbin/.
These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or without placing an extern declaration of them in the proper header file.
show more ...
|
#
70d8f36a |
| 27-Oct-2011 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r226824
|
#
8ee53ea3 |
| 11-Oct-2011 |
Kirk McKusick <mckusick@FreeBSD.org> |
After creating a filesystem using newfs -j the time stamps are all zero and thus report as having been made in January 1970. Apart from looking a bit silly, it also triggers alarms from scripts that
After creating a filesystem using newfs -j the time stamps are all zero and thus report as having been made in January 1970. Apart from looking a bit silly, it also triggers alarms from scripts that detect weird time stamps. This update sets all 4 (or 3, in the case of UFS1) time stamps to the current time when enabling journaling during newfs or later when enabling it with tunefs.
Reported by: Hans Ottevanger <hans@beastielabs.net> MFC after: 1 week
show more ...
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
#
e605011a |
| 12-Feb-2011 |
Konstantin Belousov <kib@FreeBSD.org> |
When creating a directory entry for the journal, always read at least the fragment, and write the full block. Reading less might not work due to device sector size bigger then size of direntries in t
When creating a directory entry for the journal, always read at least the fragment, and write the full block. Reading less might not work due to device sector size bigger then size of direntries in the last directory fragment.
Reported by: bz In collaboration with: pho Reviewed by: jeff Tested by: bz, pho
show more ...
|
#
a738d4cf |
| 29-Dec-2010 |
Konstantin Belousov <kib@FreeBSD.org> |
Add support for FS_TRIM to user-mode UFS utilities.
Reviewed by: mckusick, pjd, pho Tested by: pho MFC after: 1 month
|
Revision tags: release/8.1.0_cvs, release/8.1.0 |
|
#
53053595 |
| 18-May-2010 |
Jeff Roberson <jeff@FreeBSD.org> |
- Round up the journal size to the block size so we don't confuse fsck.
Reported by: Mikolaj Golub <to.my.trociny@gmail.com>
- Only require 256k of blocks per-cg when trying to allocate contiguous
- Round up the journal size to the block size so we don't confuse fsck.
Reported by: Mikolaj Golub <to.my.trociny@gmail.com>
- Only require 256k of blocks per-cg when trying to allocate contiguous journal blocks. The storage may not actually be contiguous but is at least within one cg. - When disabling SUJ leave SU enabled and report this to the user. It is expected that users will upgrade SU filesystems to SUJ and want a similar downgrade path.
show more ...
|
#
945f418a |
| 06-May-2010 |
Kirk McKusick <mckusick@FreeBSD.org> |
Final update to current version of head in preparation for reintegration.
|
#
727c1288 |
| 01-May-2010 |
Edwin Groothuis <edwin@FreeBSD.org> |
Improve usage of tunefs:
Document -j switch in usage() to reflect recent SUJ work.
Submitted by: Alastair Hogge MFC after: 1 week
|
#
a6e09ef1 |
| 30-Apr-2010 |
Jeff Roberson <jeff@FreeBSD.org> |
- Use the path to the filesystem mountpoint to look up the statfs structure so that we correctly reload. Note that tunefs doesn't properly detect the need to reload if the disk device is speci
- Use the path to the filesystem mountpoint to look up the statfs structure so that we correctly reload. Note that tunefs doesn't properly detect the need to reload if the disk device is specified for a read-only mounted filesystem. - Lessen the contiguity requirement for the journal so that it is more likely to succeed.
show more ...
|
#
a4bf5fb9 |
| 28-Apr-2010 |
Kirk McKusick <mckusick@FreeBSD.org> |
Update to current version of head.
|
#
113db2dd |
| 24-Apr-2010 |
Jeff Roberson <jeff@FreeBSD.org> |
- Merge soft-updates journaling from projects/suj/head into head. This brings in support for an optional intent log which eliminates the need for background fsck on unclean shutdown.
Sponsore
- Merge soft-updates journaling from projects/suj/head into head. This brings in support for an optional intent log which eliminates the need for background fsck on unclean shutdown.
Sponsored by: iXsystems, Yahoo!, and Juniper. With help from: McKusick and Peter Holm
show more ...
|
#
0718d64d |
| 18-Apr-2010 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
MFC r200796:
Implement NFSv4 ACL support for UFS.
Reviewed by: rwatson
|
Revision tags: release/7.3.0_cvs, release/7.3.0 |
|
#
1a0fda2b |
| 04-Mar-2010 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
IFH@204581
|
#
4179ce18 |
| 26-Feb-2010 |
Kirk McKusick <mckusick@FreeBSD.org> |
MFC of 203763, 203764, 203768, 203769, 203770, 203782, and 203784.
These fixes correct a problem in the file system that treats large inode numbers as negative rather than unsigned. For a default (1
MFC of 203763, 203764, 203768, 203769, 203770, 203782, and 203784.
These fixes correct a problem in the file system that treats large inode numbers as negative rather than unsigned. For a default (16K block) file system, this bug began to show up at a file system size above about 16Tb.
These fixes also update newfs to ensure that it will never create a filesystem with more than 2^32 inodes.
They also update libufs, tunefs, and growfs so that they properly handle inode numbers as unsigned.
Reported by: Scott Burns, John Kilburg, and Bruce Evans Followup by: Jeff Roberson PR: 133980
show more ...
|
#
a6cc0cf6 |
| 11-Feb-2010 |
Kirk McKusick <mckusick@FreeBSD.org> |
Quiet spurious warnings.
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
9340fc72 |
| 21-Dec-2009 |
Edward Tomasz Napierala <trasz@FreeBSD.org> |
Implement NFSv4 ACL support for UFS.
Reviewed by: rwatson
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0 |
|
#
868c68ed |
| 31-Oct-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Add -J flag to both newfs(8) and tunefs(8) which allows to enable gjournal support. I left -j flag for UFS journal implementation which we may gain at some point.
Sponsored by: home.pl
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0 |
|
#
4c723140 |
| 09-Apr-2004 |
Mark Murray <markm@FreeBSD.org> |
Remove advertising clause from University of California Regent's license, per letter dated July 22, 1999.
Approved by: core, imp
|
#
76444424 |
| 26-Mar-2004 |
Bruce Evans <bde@FreeBSD.org> |
Fixed some style bugs in the residue of rev.1.14 (mainly initialization in declarations, uncuddled elses and excessive braces).
|
#
29f9611d |
| 26-Mar-2004 |
Bruce Evans <bde@FreeBSD.org> |
Fixed some style bugs in or related to rev.1.13 (mainly misindentation of the getopt() case statement).
|
Revision tags: release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0 |
|
#
c69284ca |
| 03-May-2003 |
David E. O'Brien <obrien@FreeBSD.org> |
Use __FBSDID() to quiet GCC 3.3 warnings.
|
Revision tags: release/4.8.0_cvs, release/4.8.0 |
|
#
1f6a4631 |
| 23-Feb-2003 |
Ruslan Ermilov <ru@FreeBSD.org> |
Sort options.
|
#
c715b047 |
| 01-Feb-2003 |
Gordon Tetlow <gordon@FreeBSD.org> |
Bring in support for volume labels to the filesystem utilities.
Reviewed by: mckusick
|
#
907db4dd |
| 28-Jan-2003 |
Juli Mallett <jmallett@FreeBSD.org> |
Fix problems with how libufs was used, with regard to mounted/active fs's, in the new world order of libufs, where we also do statfs, and add a missing close.
|