]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
fix various typos
authorMalcolm Parsons <malcolm.parsons@gmail.com>
Tue, 3 Mar 2009 15:46:04 +0000 (16:46 +0100)
committerChristoph Hellwig <hch@brick.lst.de>
Tue, 3 Mar 2009 15:46:04 +0000 (16:46 +0100)
https://bugs.launchpad.net/ubuntu/+source/xfsprogs/+bug/65304
http://oss.sgi.com/bugzilla/show_bug.cgi?id=815

Signed-off-by: Malcolm Parsons <malcolm.parsons@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
16 files changed:
db/sb.c
debian/changelog
doc/CHANGES
include/xqm.h
io/mmap.c
io/open.c
libxcmd/input.c
libxfs/rdwr.c
libxfs/util.c
mkfs/xfs_mkfs.c
quota/project.c
quota/report.c
repair/README
repair/attr_repair.c
repair/dir.c
repair/phase6.c

diff --git a/db/sb.c b/db/sb.c
index f2bc14d414af91b598eb498d09a8ec2f65b9501a..7c61b15a4c325db2490e8ffc59cf7a1c90c1fa54 100644 (file)
--- a/db/sb.c
+++ b/db/sb.c
@@ -365,7 +365,7 @@ uuid_f(
                        }
                }
 
-               /* clear the log (setting uuid) if its not dirty */
+               /* clear the log (setting uuid) if it's not dirty */
                if (!sb_logzero(&uu))
                        return 0;
 
@@ -540,9 +540,9 @@ version_help(void)
 " 'version log2'     - enable v2 log format\n"
 "\n"
 "The version function prints currently enabled features for a filesystem\n"
-"according to its the version field of the primary superblock.\n"
+"according to the version field of its primary superblock.\n"
 "It can also be used to enable selected features, such as support for\n"
-"unwritten extents.  The upated version is written into all AGs.\n"
+"unwritten extents.  The updated version is written into all AGs.\n"
 "\n"
 ));
 }
index 95e90cb45bbdfac6f986133eb6519f407e8f0c61..ebc0eb7f5659126cc6bc564b06f7f228ad48d2ef 100644 (file)
@@ -533,7 +533,7 @@ xfsprogs (1.3.2-0) unstable; urgency=low
 
 xfsprogs (1.3.1-0) unstable; urgency=low
 
-  * Reworked package slightly so that its not Debian native
+  * Reworked package slightly so that it's not Debian native
   * Debian-specific changes now documented in changelog.Debian.gz
   * New upstream release (see /usr/share/doc/xfsprogs/changelog.gz)
   * Checked standards compliance - update standards version to 3.5.5
index 429be44514459f7f8a49620dbad7296e69a4baaa..710718b4397dbb216efee3bc220e594d9a363554 100644 (file)
@@ -893,7 +893,7 @@ xfsprogs-2.3.8 (18 December 2002)
          as set_cur() takes basic blocks as its third parameter.
        - Fixed obscure issue in mkfs where only the first AG would
          get its AGFL freelist "fixed" - not clear this caused any
-         issues in practice (on Linux its always been this way, we
+         issues in practice (on Linux it's always been this way, we
          now match up with IRIX though).
        - Made xfs_growfs filesystem geometry output match up with
          that displayed by mkfs.xfs (xfs_growfs was missing a comma
@@ -1072,7 +1072,7 @@ xfsprogs-1.3.16 (17 December 2001)
          on read-only root filesystems
 
 xfsprogs-1.3.15 (12 December 2001)
-       - reenable the use of the BLKBSZSET ioctl, its baaack
+       - reenable the use of the BLKBSZSET ioctl, it's baaack
        - sync recent XFS kernel source changes back into libxfs
 
 xfsprogs-1.3.14 (05 December 2001)
index c83cd6a5f589fc575b9a7cddac49c8576f07d80e..47f58a049a157387eb75dfbe4733b7631a43e55e 100644 (file)
@@ -119,14 +119,14 @@ typedef struct fs_disk_quota {
 
 /*
  * fs_quota_stat is the struct returned in Q_XGETQSTAT for a given file system.
- * Provides a centralized way to get meta infomation about the quota subsystem.
+ * Provides a centralized way to get meta information about the quota subsystem.
  * eg. space taken up for user and group quotas, number of dquots currently
  * incore.
  */
 #define FS_QSTAT_VERSION       1       /* fs_quota_stat.qs_version */
 
 /*
- * Some basic infomation about 'quota files'.
+ * Some basic information about 'quota files'.
  */
 typedef struct fs_qfilestat {
        __u64           qfs_ino;        /* inode number */
index 5802f71b8e2bf78cf78479a1a0a54c4de4eb3f8a..29374ea63b2bd025041dec2f129dc7df4fd5354b 100644 (file)
--- a/io/mmap.c
+++ b/io/mmap.c
@@ -336,7 +336,7 @@ mread_help(void)
 " Accesses a range of the current memory mapping, optionally dumping it to\n"
 " the standard output stream (with -v option) for subsequent inspection.\n"
 " -f -- verbose mode, dump bytes with offsets relative to start of file.\n"
-" -r -- reverse order; start accessing fom the end of range, moving backward\n"
+" -r -- reverse order; start accessing from the end of range, moving backward\n"
 " -v -- verbose mode, dump bytes with offsets relative to start of mapping.\n"
 " The accesses are performed sequentially from the start offset by default.\n"
 " Notes:\n"
@@ -500,7 +500,7 @@ mwrite_help(void)
 " Stores a byte into memory for a range within a mapping.\n"
 " The default stored value is 'X', repeated to fill the range specified.\n"
 " -S -- use an alternate seed character\n"
-" -r -- reverse order; start storing fom the end of range, moving backward\n"
+" -r -- reverse order; start storing from the end of range, moving backward\n"
 " The stores are performed sequentially from the start offset by default.\n"
 "\n"));
 }
index bd4ff5dabfe2b88c7c080498722f1a90150fbfaf..64c12ad16693adf7b73b0eb6f4097a3547fefe30 100644 (file)
--- a/io/open.c
+++ b/io/open.c
@@ -527,7 +527,7 @@ extsize_help(void)
 {
        printf(_(
 "\n"
-" report or modify prefered extent size (in bytes) for the current path\n"
+" report or modify preferred extent size (in bytes) for the current path\n"
 "\n"
 " -R -- recursively descend (useful when current path is a directory)\n"
 " -D -- recursively descend, only modifying extsize on directories\n"
@@ -838,7 +838,7 @@ open_init(void)
        extsize_cmd.argmax = -1;
        extsize_cmd.flags = CMD_NOMAP_OK;
        extsize_cmd.oneline =
-               _("get/set prefered extent size (in bytes) for the open file");
+               _("get/set preferred extent size (in bytes) for the open file");
        extsize_cmd.help = extsize_help;
 
        add_command(&open_cmd);
index 7b04f6c231be7dbaec5958cc06fd5f589dfb4c21..1bc0745a55cde53d43afef8795dc792e5d2d74b5 100644 (file)
@@ -327,7 +327,7 @@ timestr(
 
 /*
  * Convert from arbitrary user strings into a numeric ID.
- * If its all numeric, we convert that inplace, else we do
+ * If it's all numeric, we convert that inplace, else we do
  * the name lookup, and return the found identifier.
  */
 
index 0876ff6a09f2a0bcf4d92e1927c4ca415c2e9199..77d0451839b33cc459a1592eeda8103187b77f47 100644 (file)
@@ -336,7 +336,7 @@ libxfs_getbufr(dev_t device, xfs_daddr_t blkno, int bblen)
        /*
         * first look for a buffer that can be used as-is,
         * if one cannot be found, see if there is a buffer,
-        * and if so, free it's buffer and set b_addr to NULL
+        * and if so, free its buffer and set b_addr to NULL
         * before calling libxfs_initbuf.
         */
        pthread_mutex_lock(&xfs_buf_freelist.cm_mutex);
index be9ad09e01565c84f095ec2170d19ea09de61590..409fb9256851b906ebd35cf4190a2ca22157621a 100644 (file)
@@ -25,7 +25,7 @@
  * Change the requested timestamp in the given inode.
  *
  * This was once shared with the kernel, but has diverged to the point
- * where its no longer worth the hassle of maintaining common code.
+ * where it's no longer worth the hassle of maintaining common code.
  */
 void
 libxfs_ichgtime(xfs_inode_t *ip, int flags)
@@ -167,13 +167,13 @@ libxfs_iread(
 }
 
 /*
- * Allocate an inode on disk and return a copy of it's in-core version.
+ * Allocate an inode on disk and return a copy of its in-core version.
  * Set mode, nlink, and rdev appropriately within the inode.
  * The uid and gid for the inode are set according to the contents of
  * the given cred structure.
  *
  * This was once shared with the kernel, but has diverged to the point
- * where its no longer worth the hassle of maintaining common code.
+ * where it's no longer worth the hassle of maintaining common code.
  */
 int
 libxfs_ialloc(
index 1216e2eddf8ba2d5ae931c74ac03b47561d8f9ec..c7f7e78ae9340c257395586dcfea82c114378e86 100644 (file)
@@ -424,7 +424,7 @@ calc_default_ag_geometry(
         * number of data blocks available, trying to keep the
         * number of AGs relatively small (especially compared
         * to the original algorithm).  AG count is calculated
-        * based on the prefered AG size, not vice-versa - the
+        * based on the preferred AG size, not vice-versa - the
         * count can be increased by growfs, so prefer to use
         * smaller counts at mkfs time.
         *
@@ -550,7 +550,7 @@ zero_old_xfs_structures(
        xfs_off_t               off;
 
        /*
-        * read in existing filesystem superblock, use it's geometry
+        * read in existing filesystem superblock, use its geometry
         * settings and zero the existing secondary superblocks.
         */
        buf = memalign(libxfs_device_alignment(), new_sb->sb_sectsize);
@@ -1973,7 +1973,7 @@ an AG size that is one stripe unit smaller, for example %llu.\n"),
        if (loginternal) {
                /*
                 * Readjust the log size to fit within an AG if it was sized
-                * automaticly.
+                * automatically.
                 */
                if (!logsize) {
                        logblocks = MIN(logblocks,
index 151016c487dc5a1a59970c24feac303f063bfb08..1aacdddd71586416fa31d29785b728ce25d3e86f 100644 (file)
@@ -63,7 +63,7 @@ project_help(void)
 " Once this has been done, new files created in the tree will automatically\n"
 " be accounted to the tree based on their project identifier.  An attempt to\n"
 " create a hard link to a file in the tree will only succeed if the project\n"
-" identifier matches the project identifer for the tree.  The xfs_io utility\n"
+" identifier matches the project identifier for the tree.  The xfs_io utility\n"
 " can be used to set the project ID for an arbitrary file, but this can only\n"
 " be done by a privileged user.\n"
 "\n"
index 73248d0858b57857d025c83b6a5776e78e43e98a..0e005c36177e4a903ae289769f004b19881657a7 100644 (file)
@@ -62,7 +62,7 @@ report_help(void)
 " -N -- suppress the header from the output\n"
 " -t -- terse output format, hides rows which are all zero\n"
 " -L -- lower ID bound to report on\n"
-" -U -- upder ID bound to report on\n"
+" -U -- upper ID bound to report on\n"
 " -g -- report group usage and quota information\n"
 " -p -- report project usage and quota information\n"
 " -u -- report user usage and quota information\n"
index e912f710846d45aec86c5e0521441cfb77d690a5..69cb0c5d926c3c7f12edbf91a40165ff80167210 100644 (file)
@@ -350,7 +350,7 @@ Phase 3 -- traverse inodes to make the inodes, bmaps and freespace maps
 
        Third, make sure that the root inode is known.  If not,
                and we know the inode number from the superblock,
-               discover that inode and it's chunk.
+               discover that inode and its chunk.
 
        Then, walk the incore inode-cluster tree.
 
@@ -649,7 +649,7 @@ XXX         if in no_modify mode, compare contents of realtime bitmap
                link count for the inode that the entry points to.
 
        After traversal, scan incore inode map for directories not
-               reached.  Go to first one and try and find it's root
+               reached.  Go to first one and try and find its root
                by following .. entries.  Once at root, run traversal
                algorithm.  When algorithm terminates, move subtree
                root inode to the orphanage.  Repeat as necessary
index dbddf797a002dd8d138b6cc31f86ddd5e230b10b..fb686faca3f6bbfcbdccadf56caa6bffb9199e45 100644 (file)
@@ -46,7 +46,7 @@ static int xfs_mac_valid(xfs_mac_label_t *lp);
  * For leaf block attributes, it requires more processing. One sticky
  * point is that the attributes can be local (within the leaf) or
  * remote (outside the leaf in other blocks). Thinking of local only
- * if you get a bad attribute, and want to delete just one, its a-okay
+ * if you get a bad attribute, and want to delete just one, it's a-okay
  * if it remains large enough to still be a leaf block attribute. Otherwise,
  * it may have to be converted to shortform. How to convert this and when
  * is an issue. This call is happening in Phase3. Phase5 will capture empty
@@ -694,7 +694,7 @@ process_leaf_attr_level(xfs_mount_t *mp,
                }
 
                /*
-                * for each block, process the block, verify it's path,
+                * for each block, process the block, verify its path,
                 * then get next block.  update cursor values along the way
                 */
                if (process_leaf_attr_block(mp, leaf, da_bno, ino,
index 80a28522f4f830b55afa89d03d3b58cf347105f9..6e0d54b9e096eace7e54c7e36f6ac63b245e69a4 100644 (file)
@@ -2390,7 +2390,7 @@ process_leaf_dir_level(xfs_mount_t        *mp,
 
                buf_dirty = 0;
                /*
-                * for each block, process the block, verify it's path,
+                * for each block, process the block, verify its path,
                 * then get next block.  update cursor values along the way
                 */
                if (process_leaf_dir_block(mp, leaf, da_bno, ino,
index c9c8e138f8983b63470898869215678e21fbc7d4..becedbd2738c1a3f91ec682fff769b9d26e24f28 100644 (file)
@@ -835,7 +835,7 @@ mk_orphanage(xfs_mount_t *mp)
 
        /*
         * check for an existing lost+found first, if it exists, return
-        * it's inode. Otherwise, we can create it. Bad lost+found inodes
+        * its inode. Otherwise, we can create it. Bad lost+found inodes
         * would have been cleared in phase3 and phase4.
         */
 
@@ -3419,7 +3419,7 @@ process_dir_inode(
 
        /*
         * if we need to create the '.' entry, do so only if
-        * the directory is a longform dir.  it it's been
+        * the directory is a longform dir.  if it's been
         * turned into a shortform dir, then the inode is ok
         * since shortform dirs have no '.' entry and the inode
         * has already been committed by prune_lf_dir_entry().