From 973c32bebf0cadf3a17c50255ff17477fcffaec8 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-Koenig Date: Mon, 12 Jan 2009 23:35:47 +0100 Subject: trivial: fix typo "kernal" -> "kernel" Signed-off-by: Uwe Kleine-Koenig Signed-off-by: Jiri Kosina --- fs/proc/nommu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs') diff --git a/fs/proc/nommu.c b/fs/proc/nommu.c index b446d7a..7e14d1a 100644 --- a/fs/proc/nommu.c +++ b/fs/proc/nommu.c @@ -76,7 +76,7 @@ static int nommu_region_show(struct seq_file *m, struct vm_region *region) /* * display a list of all the REGIONs the kernel knows about - * - nommu kernals have a single flat list + * - nommu kernels have a single flat list */ static int nommu_region_list_show(struct seq_file *m, void *_p) { -- cgit v1.1 From 692105b8ac5bcd75dc65f6a8f10bdbd0f0f34dcf Mon Sep 17 00:00:00 2001 From: Matt LaPlante Date: Mon, 26 Jan 2009 11:12:25 +0100 Subject: trivial: fix typos/grammar errors in Kconfig texts Signed-off-by: Matt LaPlante Acked-by: Randy Dunlap Signed-off-by: Jiri Kosina --- fs/ext4/Kconfig | 2 +- fs/ubifs/Kconfig | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'fs') diff --git a/fs/ext4/Kconfig b/fs/ext4/Kconfig index 7505482..418b6f3 100644 --- a/fs/ext4/Kconfig +++ b/fs/ext4/Kconfig @@ -18,7 +18,7 @@ config EXT4_FS filesystem; while there will be some performance gains from the delayed allocation and inode table readahead, the best performance gains will require enabling ext4 features in the - filesystem, or formating a new filesystem as an ext4 + filesystem, or formatting a new filesystem as an ext4 filesystem initially. To compile this file system support as a module, choose M here. The diff --git a/fs/ubifs/Kconfig b/fs/ubifs/Kconfig index e35b54d..830e3f7 100644 --- a/fs/ubifs/Kconfig +++ b/fs/ubifs/Kconfig @@ -22,7 +22,7 @@ config UBIFS_FS_ADVANCED_COMPR depends on UBIFS_FS help This option allows to explicitly choose which compressions, if any, - are enabled in UBIFS. Removing compressors means inbility to read + are enabled in UBIFS. Removing compressors means inability to read existing file systems. If unsure, say 'N'. @@ -32,7 +32,7 @@ config UBIFS_FS_LZO depends on UBIFS_FS default y help - LZO compressor is generally faster then zlib but compresses worse. + LZO compressor is generally faster than zlib but compresses worse. Say 'Y' if unsure. config UBIFS_FS_ZLIB -- cgit v1.1 From c7eee1b836ab5e504cbd2b7f3892ea468bd52a16 Mon Sep 17 00:00:00 2001 From: Alberto Bertogli Date: Sun, 25 Jan 2009 23:36:14 -0200 Subject: trivial: Fix typo in bio_split()'s documentation Signed-off-by: Alberto Bertogli Signed-off-by: Jiri Kosina --- fs/bio.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'fs') diff --git a/fs/bio.c b/fs/bio.c index a040cde..e0c9e54 100644 --- a/fs/bio.c +++ b/fs/bio.c @@ -1420,8 +1420,7 @@ static void bio_pair_end_2(struct bio *bi, int err) } /* - * split a bio - only worry about a bio with a single page - * in it's iovec + * split a bio - only worry about a bio with a single page in its iovec */ struct bio_pair *bio_split(struct bio *bi, int first_sectors) { -- cgit v1.1 From 3e3cb64f6c306079dd8fa888c6c0a63e7e13f966 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Wed, 25 Feb 2009 22:51:57 +0900 Subject: trivial: fix a pdlfush -> pdflush typo in comment Signed-off-by: Masatake YAMATO Signed-off-by: Jiri Kosina --- fs/fs-writeback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs') diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index e3fe991..99903ab 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -420,7 +420,7 @@ __writeback_single_inode(struct inode *inode, struct writeback_control *wbc) * If older_than_this is non-NULL, then only write out inodes which * had their first dirtying at a time earlier than *older_than_this. * - * If we're a pdlfush thread, then implement pdflush collision avoidance + * If we're a pdflush thread, then implement pdflush collision avoidance * against the entire list. * * If `bdi' is non-zero then we're being asked to writeback a specific queue. -- cgit v1.1 From a4e49cb69e7dc87359bbdf1613d1ed872b9c9ebe Mon Sep 17 00:00:00 2001 From: Tero Roponen Date: Sun, 8 Mar 2009 15:29:31 +0200 Subject: trivial: remove unused variable 'path' in alloc_file() 'struct path' is not used in alloc_file(). Signed-off-by: Tero Roponen Signed-off-by: Jiri Kosina --- fs/file_table.c | 1 - 1 file changed, 1 deletion(-) (limited to 'fs') diff --git a/fs/file_table.c b/fs/file_table.c index b74a8e1..54018fe 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -169,7 +169,6 @@ struct file *alloc_file(struct vfsmount *mnt, struct dentry *dentry, fmode_t mode, const struct file_operations *fop) { struct file *file; - struct path; file = get_empty_filp(); if (!file) -- cgit v1.1