View | Details | Raw Unified | Return to bug 33559 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/src/sbin/atm/ilmid/ilmid.c (-1 / +1 lines)
Lines 475-481 Link Here
475
}
475
}
476
476
477
/*
477
/*
478
 * Get an 7-bit encoded value.
478
 * Get a 7-bit encoded value.
479
 *
479
 *
480
 * Get a value which is represented using a 7-bit encoding. The last
480
 * Get a value which is represented using a 7-bit encoding. The last
481
 * byte in the stream has the high-bit clear.
481
 * byte in the stream has the high-bit clear.
(-)/usr/src/sbin/i386/fdisk/fdisk.c (-2 / +2 lines)
Lines 1194-1200 Link Here
1194
	}
1194
	}
1195
1195
1196
	/*
1196
	/*
1197
	 * Adjust start upwards, if necessary, to fall on an head boundary.
1197
	 * Adjust start upwards, if necessary, to fall on a head boundary.
1198
	 */
1198
	 */
1199
	if (partp->dp_start % dos_sectors != 0)
1199
	if (partp->dp_start % dos_sectors != 0)
1200
	{
1200
	{
Lines 1432-1438 Link Here
1432
	return (1);
1432
	return (1);
1433
1433
1434
    /*
1434
    /*
1435
     * Adjust start upwards, if necessary, to fall on an head boundary.
1435
     * Adjust start upwards, if necessary, to fall on a head boundary.
1436
     */
1436
     */
1437
    if (start % dos_sectors != 0) {
1437
    if (start % dos_sectors != 0) {
1438
	prev_head_boundary = start / dos_sectors * dos_sectors;
1438
	prev_head_boundary = start / dos_sectors * dos_sectors;
(-)/usr/src/sbin/mount_hpfs/mount_hpfs.8 (-1 / +1 lines)
Lines 76-82 Link Here
76
in the file system.
76
in the file system.
77
.El
77
.El
78
.Sh EXAMPLES
78
.Sh EXAMPLES
79
To mount an hpfs volume located in /dev/wd1s1:
79
To mount an HPFS volume located in /dev/wd1s1:
80
.Bd -literal -offset indent
80
.Bd -literal -offset indent
81
# mount_hpfs /dev/wd1s1 /mnt
81
# mount_hpfs /dev/wd1s1 /mnt
82
.Ed
82
.Ed
(-)/usr/src/sbin/mount_ntfs/mount_ntfs.8 (-1 / +1 lines)
Lines 105-111 Link Here
105
is an attribute name.
105
is an attribute name.
106
Default is none.
106
Default is none.
107
.Sh EXAMPLES
107
.Sh EXAMPLES
108
To mount an ntfs volume located in
108
To mount an NTFS volume located in
109
.Pa /dev/ad1s1 :
109
.Pa /dev/ad1s1 :
110
.Bd -literal -offset indent
110
.Bd -literal -offset indent
111
# mount_ntfs /dev/ad1s1 /mnt
111
# mount_ntfs /dev/ad1s1 /mnt
(-)/usr/src/sbin/newfs/newfs.c (-1 / +1 lines)
Lines 169-175 Link Here
169
char	*mfs_mtpt;		/* mount point for mfs		*/
169
char	*mfs_mtpt;		/* mount point for mfs		*/
170
struct stat mfs_mtstat;		/* stat prior to mount		*/
170
struct stat mfs_mtstat;		/* stat prior to mount		*/
171
int	Nflag;			/* run without writing file system */
171
int	Nflag;			/* run without writing file system */
172
int	Oflag;			/* format as an 4.3BSD file system */
172
int	Oflag;			/* format as a 4.3BSD file system */
173
int	Uflag;			/* enable soft updates for file system */
173
int	Uflag;			/* enable soft updates for file system */
174
int	fssize;			/* file system size */
174
int	fssize;			/* file system size */
175
int	ntracks = NTRACKS;	/* # tracks/cylinder */
175
int	ntracks = NTRACKS;	/* # tracks/cylinder */
(-)/usr/src/sbin/newfs/mkfs.c (-1 / +1 lines)
Lines 94-100 Link Here
94
extern char	*mfs_mtpt;	/* mount point for mfs          */ 
94
extern char	*mfs_mtpt;	/* mount point for mfs          */ 
95
extern struct stat mfs_mtstat;	/* stat prior to mount          */
95
extern struct stat mfs_mtstat;	/* stat prior to mount          */
96
extern int	Nflag;		/* run mkfs without writing file system */
96
extern int	Nflag;		/* run mkfs without writing file system */
97
extern int	Oflag;		/* format as an 4.3BSD file system */
97
extern int	Oflag;		/* format as a 4.3BSD file system */
98
extern int	Uflag;		/* enable soft updates for file system */
98
extern int	Uflag;		/* enable soft updates for file system */
99
extern int	fssize;		/* file system size */
99
extern int	fssize;		/* file system size */
100
extern int	ntracks;	/* # tracks/cylinder */
100
extern int	ntracks;	/* # tracks/cylinder */
(-)/usr/src/sbin/growfs/growfs.c (-3 / +3 lines)
Lines 527-533 Link Here
527
 * Here  we add or subtract (sign +1/-1) the available fragments in  a  given
527
 * Here  we add or subtract (sign +1/-1) the available fragments in  a  given
528
 * block to or from the fragment statistics. By subtracting before and adding
528
 * block to or from the fragment statistics. By subtracting before and adding
529
 * after  an operation on the free frag map we can easy update  the  fragment
529
 * after  an operation on the free frag map we can easy update  the  fragment
530
 * statistic, which seems to be otherwise an rather complex operation.
530
 * statistic, which seems to be otherwise a rather complex operation.
531
 */
531
 */
532
static void
532
static void
533
frag_adjust(daddr_t frag, int sign)
533
frag_adjust(daddr_t frag, int sign)
Lines 807-813 Link Here
807
				updclst((osblock.fs_size-cbase)/sblock.fs_frag);
807
				updclst((osblock.fs_size-cbase)/sblock.fs_frag);
808
			} else {
808
			} else {
809
				/*
809
				/*
810
				 * Lets rejoin a possible partially growed
810
				 * Lets rejoin a possible partially grown
811
				 * fragment.
811
				 * fragment.
812
				 */
812
				 */
813
				k=0;
813
				k=0;
Lines 835-841 Link Here
835
				j++;
835
				j++;
836
			}
836
			}
837
			/*
837
			/*
838
			 * Lets rejoin a possible partially growed fragment.
838
			 * Lets rejoin a possible partially grown fragment.
839
			 */
839
			 */
840
			k=0;
840
			k=0;
841
			while(isset(cg_blksfree(&acg), i) &&
841
			while(isset(cg_blksfree(&acg), i) &&

Return to bug 33559