]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/xfs/xfs_trans_ail.c
Merge branch 'irq-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / fs / xfs / xfs_trans_ail.c
index 6ccfd75d3c24ce7207e336b5c3b714c18bdcb69a..00cc5b8734be817ac3fe4d2982afff61b1cf7f36 100644 (file)
@@ -427,15 +427,15 @@ xfsaild_push(
 
                case XFS_ITEM_FLUSHING:
                        /*
-                        * The item or its backing buffer is already beeing
+                        * The item or its backing buffer is already being
                         * flushed.  The typical reason for that is that an
                         * inode buffer is locked because we already pushed the
                         * updates to it as part of inode clustering.
                         *
                         * We do not want to to stop flushing just because lots
-                        * of items are already beeing flushed, but we need to
+                        * of items are already being flushed, but we need to
                         * re-try the flushing relatively soon if most of the
-                        * AIL is beeing flushed.
+                        * AIL is being flushed.
                         */
                        XFS_STATS_INC(mp, xs_push_ail_flushing);
                        trace_xfs_ail_flushing(lip);
@@ -612,7 +612,7 @@ xfsaild(
  * The push is run asynchronously in a workqueue, which means the caller needs
  * to handle waiting on the async flush for space to become available.
  * We don't want to interrupt any push that is in progress, hence we only queue
- * work if we set the pushing bit approriately.
+ * work if we set the pushing bit appropriately.
  *
  * We do this unlocked - we only need to know whether there is anything in the
  * AIL at the time we are called. We don't need to access the contents of
@@ -836,7 +836,7 @@ xfs_trans_ail_init(
        init_waitqueue_head(&ailp->ail_empty);
 
        ailp->ail_task = kthread_run(xfsaild, ailp, "xfsaild/%s",
-                       ailp->ail_mount->m_fsname);
+                       ailp->ail_mount->m_super->s_id);
        if (IS_ERR(ailp->ail_task))
                goto out_free_ailp;