From nobody@FreeBSD.org  Tue Aug 14 21:50:11 2007
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 173CE16A418
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 14 Aug 2007 21:50:11 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 0A00D13C47E
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 14 Aug 2007 21:50:11 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.1/8.14.1) with ESMTP id l7ELoACk003940
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 14 Aug 2007 21:50:10 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.1/8.14.1/Submit) id l7ELoAK1003939;
	Tue, 14 Aug 2007 21:50:10 GMT
	(envelope-from nobody)
Message-Id: <200708142150.l7ELoAK1003939@www.freebsd.org>
Date: Tue, 14 Aug 2007 21:50:10 GMT
From: Volker <votdev@gmx.de>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Mounting msdos filesystem fails after csup to RELENG_6
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         115530
>Category:       kern
>Synopsis:       [msdosfs] Mounting msdos filesystem fails after csup to RELENG_6 (regression)
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 14 22:00:05 GMT 2007
>Closed-Date:    Mon Aug 20 19:39:53 GMT 2007
>Last-Modified:  Mon Aug 20 19:39:53 GMT 2007
>Originator:     Volker
>Release:        FreeBSD 6.2
>Organization:
FreeNAS developer
>Environment:
>Description:
After upgrading to RELENG_6 (buildworld + buildkernel) i'm not able to
mount large msdos filesystems (>300GB).

The '-o large' attribute as proposed in
http://docs.freebsd.org/cgi/getmsg.cgi?fetch=160898+0+/usr/local/www/db/text/2007/cvs-all/20070715.cvs-all
does not work.

I got the following error messages:

# mount -t msdosfs /dev/ad10s1 /mnt/10
mount_msdosfs: /dev/ad10s1: No such file or directory

# mount -t msdosfs -o large /dev/ad10s1 /mnt/10
mount_msdosfs: -o large: option not supported

There is also a mail in the 'filesystem' mailing list that describes the
same problem. See here:

http://lists.freebsd.org/pipermail/freebsd-fs/2007-July/003572.html

>How-To-Repeat:
csup to RELENG_6, buildworld + buildkernel, try to mount big msdos filesystem.
>Fix:


>Release-Note:
>Audit-Trail:

From: "Craig Rodrigues" <rodrigc@crodrigues.org>
To: Volker <votdev@gmx.de>
Cc: bug-followup@freebsd.org
Subject: Re: kern/115530: Mounting msdos filesystem fails after csup to RELENG_6
Date: Wed, 15 Aug 2007 09:49:07 -0400

 On Tue, Aug 14, 2007 at 09:50:10PM +0000, Volker wrote:
 > After upgrading to RELENG_6 (buildworld + buildkernel) i'm not able to mount large msdos filesystems (>300GB).
 > The '-o large' attribute as proposed in http://docs.freebsd.org/cgi/getmsg.cgi?fetch=160898+0+/usr/local/www/db/text/2007/cvs-all/20070715.cvs-all
 > does not work.
 
 You did not properly upgrade your system.
 The instructions in /usr/src/Makefile state:
 
 # For individuals wanting to upgrade their sources (even if only a
 # delta of a few days):
 #
 #  1.  `cd /usr/src'       (or to the directory containing your source tree).
 #  2.  `make buildworld'
 #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
 #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
 #       [steps 3. & 4. can be combined by using the "kernel" target]
 #  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
 #  6.  `mergemaster -p'
 #  7.  `make installworld'
 #  8.  `make delete-old'
 #  9.  `mergemaster'
 # 10.  `reboot'
 # 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
 #
 # See src/UPDATING `COMMON ITEMS' for more complete information.
 
 Which of these steps did you omit?
 
 
 --
 Craig Rodrigues
 rodrigc@crodrigues.org

From: "Craig Rodrigues" <rodrigc@crodrigues.org>
To: Craig Rodrigues <rodrigc@crodrigues.org>
Cc:  
Subject: Re: kern/115530: Mounting msdos filesystem fails after csup to RELENG_6
Date: Sun, 19 Aug 2007 18:13:43 +0200

 Craig Rodrigues schrieb:
 > On Tue, Aug 14, 2007 at 09:50:10PM +0000, Volker wrote:
 >   
 >> After upgrading to RELENG_6 (buildworld + buildkernel) i'm not able to mount large msdos filesystems (>300GB).
 >> The '-o large' attribute as proposed in http://docs.freebsd.org/cgi/getmsg.cgi?fetch=160898+0+/usr/local/www/db/text/2007/cvs-all/20070715.cvs-all
 >> does not work.
 >>     
 >
 > You did not properly upgrade your system.
 > The instructions in /usr/src/Makefile state:
 >
 > # For individuals wanting to upgrade their sources (even if only a
 > # delta of a few days):
 > #
 > #  1.  `cd /usr/src'       (or to the directory containing your source tree).
 > #  2.  `make buildworld'
 > #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
 > #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
 > #       [steps 3. & 4. can be combined by using the "kernel" target]
 > #  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
 > #  6.  `mergemaster -p'
 > #  7.  `make installworld'
 > #  8.  `make delete-old'
 > #  9.  `mergemaster'
 > # 10.  `reboot'
 > # 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
 > #
 > # See src/UPDATING `COMMON ITEMS' for more complete information.
 >
 > Which of these steps did you omit?
 >
 >
 > --
 > Craig Rodrigues
 > rodrigc@crodrigues.org
 >
 >
 >   
 Hi again,
 
 i've setup a new system now using the method described by you with the 
 result that i can use the '-o large' option without error messages.
 I think you can close the PR now. Sorry for my failure.
 
 Greetings
 Volker
State-Changed-From-To: open->closed 
State-Changed-By: remko 
State-Changed-When: Mon Aug 20 19:39:51 UTC 2007 
State-Changed-Why:  
The submitter reports that all works fine now, closing the PR 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115530 
>Unformatted:
