Skip to content

Commit 9436fb4

Browse files
rddunlapjankara
authored andcommitted
reiserfs: delete duplicated words
Delete repeated words in fs/reiserfs/. {from, not, we, are} Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Randy Dunlap <[email protected]> To: [email protected] Cc: Jan Kara <[email protected]> Cc: Jeff Mahoney <[email protected]> Cc: Andrew Morton <[email protected]> Cc: [email protected] Signed-off-by: Jan Kara <[email protected]>
1 parent dcec10a commit 9436fb4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

fs/reiserfs/dir.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ void make_empty_dir_item_v1(char *body, __le32 dirid, __le32 objid,
289289

290290
/* direntry header of "." */
291291
put_deh_offset(dot, DOT_OFFSET);
292-
/* these two are from make_le_item_head, and are are LE */
292+
/* these two are from make_le_item_head, and are LE */
293293
dot->deh_dir_id = dirid;
294294
dot->deh_objectid = objid;
295295
dot->deh_state = 0; /* Endian safe if 0 */
@@ -299,7 +299,7 @@ void make_empty_dir_item_v1(char *body, __le32 dirid, __le32 objid,
299299
/* direntry header of ".." */
300300
put_deh_offset(dotdot, DOT_DOT_OFFSET);
301301
/* key of ".." for the root directory */
302-
/* these two are from the inode, and are are LE */
302+
/* these two are from the inode, and are LE */
303303
dotdot->deh_dir_id = par_dirid;
304304
dotdot->deh_objectid = par_objid;
305305
dotdot->deh_state = 0; /* Endian safe if 0 */
@@ -323,7 +323,7 @@ void make_empty_dir_item(char *body, __le32 dirid, __le32 objid,
323323

324324
/* direntry header of "." */
325325
put_deh_offset(dot, DOT_OFFSET);
326-
/* these two are from make_le_item_head, and are are LE */
326+
/* these two are from make_le_item_head, and are LE */
327327
dot->deh_dir_id = dirid;
328328
dot->deh_objectid = objid;
329329
dot->deh_state = 0; /* Endian safe if 0 */
@@ -333,7 +333,7 @@ void make_empty_dir_item(char *body, __le32 dirid, __le32 objid,
333333
/* direntry header of ".." */
334334
put_deh_offset(dotdot, DOT_DOT_OFFSET);
335335
/* key of ".." for the root directory */
336-
/* these two are from the inode, and are are LE */
336+
/* these two are from the inode, and are LE */
337337
dotdot->deh_dir_id = par_dirid;
338338
dotdot->deh_objectid = par_objid;
339339
dotdot->deh_state = 0; /* Endian safe if 0 */

fs/reiserfs/fix_node.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,9 +611,9 @@ static int get_num_ver(int mode, struct tree_balance *tb, int h,
611611
* blk_num number of blocks that S[h] will be splitted into;
612612
* s012 number of items that fall into splitted nodes.
613613
* lbytes number of bytes which flow to the left neighbor from the
614-
* item that is not not shifted entirely
614+
* item that is not shifted entirely
615615
* rbytes number of bytes which flow to the right neighbor from the
616-
* item that is not not shifted entirely
616+
* item that is not shifted entirely
617617
* s1bytes number of bytes which flow to the first new node when
618618
* S[0] splits (this number is contained in s012 array)
619619
*/

fs/reiserfs/journal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* to disk for all backgrounded commits that have been
3333
* around too long.
3434
* -- Note, if you call this as an immediate flush from
35-
* from within kupdate, it will ignore the immediate flag
35+
* within kupdate, it will ignore the immediate flag
3636
*/
3737

3838
#include <linux/time.h>

fs/reiserfs/xattr_acl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ int reiserfs_cache_default_acl(struct inode *inode)
373373

374374
/* Other xattrs can be created during inode creation. We don't
375375
* want to claim too many blocks, so we check to see if we
376-
* we need to create the tree to the xattrs, and then we
376+
* need to create the tree to the xattrs, and then we
377377
* just want two files. */
378378
nblocks = reiserfs_xattr_jcreate_nblocks(inode);
379379
nblocks += JOURNAL_BLOCKS_PER_OBJECT(inode->i_sb);

0 commit comments

Comments
 (0)