]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
writeback: Fix some comment errors
authorWanpeng Li <liwp@linux.vnet.ibm.com>
Sat, 9 Jun 2012 03:10:55 +0000 (11:10 +0800)
committerFengguang Wu <fengguang.wu@intel.com>
Sat, 9 Jun 2012 11:54:47 +0000 (19:54 +0800)
Signed-off-by: Wanpeng Li <liwp@linux.vnet.ibm.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
fs/fs-writeback.c
fs/super.c
fs/sync.c
mm/page-writeback.c

index 41a3ccff18d87bdfc3f65148e2f39f8067f3a8ce..0b2c87e08e905e5c7729f5b9ee49dcfbf5e9360f 100644 (file)
@@ -628,8 +628,8 @@ static long writeback_sb_inodes(struct super_block *sb,
                }
 
                /*
-                * Don't bother with new inodes or inodes beeing freed, first
-                * kind does not need peridic writeout yet, and for the latter
+                * Don't bother with new inodes or inodes being freed, first
+                * kind does not need periodic writeout yet, and for the latter
                 * kind writeout is handled by the freer.
                 */
                spin_lock(&inode->i_lock);
index cf001775617f5781ac4f43f5695ad7802c6b4524..3d65443aea8cadf94c6a96a03bfc2f9967677a29 100644 (file)
@@ -318,7 +318,7 @@ static int grab_super(struct super_block *s) __releases(sb_lock)
 
 /*
  *     grab_super_passive - acquire a passive reference
- *     @s: reference we are trying to grab
+ *     @sb: reference we are trying to grab
  *
  *     Tries to acquire a passive reference. This is used in places where we
  *     cannot take an active reference but we need to ensure that the
index 11e3d1c449018dcf9a95c352746f46d6522c4cb2..1830704df0719de76901d8634aba3e3432f60dbc 100644 (file)
--- a/fs/sync.c
+++ b/fs/sync.c
@@ -92,7 +92,7 @@ static void sync_filesystems(int wait)
 }
 
 /*
- * sync everything.  Start out by waking pdflush, because that writes back
+ * sync everything.  Start out by waking flusher, because that writes back
  * all queues in parallel.
  */
 SYSCALL_DEFINE0(sync)
index ec14419e53b5c2408fe50bea7ac11a0b21c912f2..e5363f34e0250656c357d965a2e8949577cfb607 100644 (file)
@@ -946,7 +946,7 @@ static void bdi_update_dirty_ratelimit(struct backing_dev_info *bdi,
         *      bdi->dirty_ratelimit = balanced_dirty_ratelimit;
         *
         * However to get a more stable dirty_ratelimit, the below elaborated
-        * code makes use of task_ratelimit to filter out sigular points and
+        * code makes use of task_ratelimit to filter out singular points and
         * limit the step size.
         *
         * The below code essentially only uses the relative value of
@@ -969,7 +969,7 @@ static void bdi_update_dirty_ratelimit(struct backing_dev_info *bdi,
         * feel and care are stable dirty rate and small position error.
         *
         * |task_ratelimit - dirty_ratelimit| is used to limit the step size
-        * and filter out the sigular points of balanced_dirty_ratelimit. Which
+        * and filter out the singular points of balanced_dirty_ratelimit. Which
         * keeps jumping around randomly and can even leap far away at times
         * due to the small 200ms estimation period of dirty_rate (we want to
         * keep that period small to reduce time lags).