Bug 129792 - [patch] mount_msdosfs(8) man page is missing the -o large option
Summary: [patch] mount_msdosfs(8) man page is missing the -o large option
Status: Closed FIXED
Alias: None
Product: Documentation
Classification: Unclassified
Component: Books & Articles (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Tom Rhodes
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-20 17:50 UTC by Chris
Modified: 2009-04-01 07:20 UTC (History)
0 users

See Also:


Attachments
file.diff (1.18 KB, patch)
2008-12-20 17:50 UTC, Chris
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Chris 2008-12-20 17:50:03 UTC
/usr/src/sys/fs/msdosfs/msdosfs_vfsops.c lists 'large' as an option to mount_msdosfs but it is not described in the mount_msdosfs(8) man page.

Fix: Suggested change:
How-To-Repeat: man 8 mount_msdosfs
Comment 1 Tom Rhodes freebsd_committer freebsd_triage 2008-12-23 13:35:45 UTC
State Changed
From-To: open->patched

Different patch applied to CURRENT, I will MFC later. 
Thanks! 


Comment 2 Tom Rhodes freebsd_committer freebsd_triage 2008-12-23 13:35:45 UTC
Responsible Changed
From-To: freebsd-doc->trhodes

Over to me, MFC reminder.
Comment 3 dfilter service freebsd_committer freebsd_triage 2009-04-01 07:03:37 UTC
Author: trhodes
Date: Wed Apr  1 06:03:23 2009
New Revision: 190606
URL: http://svn.freebsd.org/changeset/base/190606

Log:
  MFC r186429:
  Document the "-o large" option.
  
  PR:		129792
  
  And r186768:
  Add missing qualifier which was missed in the previous commit.
  
  Noticed by:	brooks
  
  Approved by:	re (kib)

Modified:
  stable/7/sbin/mount_msdosfs/   (props changed)
  stable/7/sbin/mount_msdosfs/mount_msdosfs.8

Modified: stable/7/sbin/mount_msdosfs/mount_msdosfs.8
==============================================================================
--- stable/7/sbin/mount_msdosfs/mount_msdosfs.8	Wed Apr  1 06:01:40 2009	(r190605)
+++ stable/7/sbin/mount_msdosfs/mount_msdosfs.8	Wed Apr  1 06:03:23 2009	(r190606)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd April 7, 1994
+.Dd December 23, 2008
 .Dt MOUNT_MSDOSFS 8
 .Os
 .Sh NAME
@@ -73,6 +73,11 @@ as described in
 .Xr mount 8 .
 The following MSDOS file system-specific options are available:
 .Bl -tag -width indent
+.It Cm large
+Support file systems larger than 128 gigabytes at the expense
+of 32 bytes of kernel memory for each file on disk.
+This memory will not be reclaimed until the file system has
+been unmounted.
 .It Cm longnames
 Force Windows 95 long filenames to be visible.
 .It Cm shortnames
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 4 Tom Rhodes freebsd_committer freebsd_triage 2009-04-01 07:19:58 UTC
State Changed
From-To: patched->closed

MFC to 7 complete, thanks.