diff options
author | hujianyang <hujianyang@huawei.com> | 2014-06-10 22:42:52 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2014-07-19 02:53:51 -0400 |
commit | b793a8c8885d87d9867fb2dbfdc1ef7b5877d71b (patch) | |
tree | 01da1e3301a8a93f1804b0136440b36eee17ec3c /fs/ubifs/lpt.c | |
parent | ce6ebdb87ef94b332fa0bfafd62830bf50e6e2c6 (diff) |
UBIFS: remove useless statements
This patch removes useless and duplicate statements.
Signed-off-by: hujianyang <hujianyang@huawei.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'fs/ubifs/lpt.c')
-rw-r--r-- | fs/ubifs/lpt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/ubifs/lpt.c b/fs/ubifs/lpt.c index b4fb422e5b8d..421bd0a80424 100644 --- a/fs/ubifs/lpt.c +++ b/fs/ubifs/lpt.c | |||
@@ -1464,7 +1464,6 @@ struct ubifs_lprops *ubifs_lpt_lookup(struct ubifs_info *c, int lnum) | |||
1464 | return ERR_CAST(nnode); | 1464 | return ERR_CAST(nnode); |
1465 | } | 1465 | } |
1466 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); | 1466 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); |
1467 | shft -= UBIFS_LPT_FANOUT_SHIFT; | ||
1468 | pnode = ubifs_get_pnode(c, nnode, iip); | 1467 | pnode = ubifs_get_pnode(c, nnode, iip); |
1469 | if (IS_ERR(pnode)) | 1468 | if (IS_ERR(pnode)) |
1470 | return ERR_CAST(pnode); | 1469 | return ERR_CAST(pnode); |
@@ -1604,7 +1603,6 @@ struct ubifs_lprops *ubifs_lpt_lookup_dirty(struct ubifs_info *c, int lnum) | |||
1604 | return ERR_CAST(nnode); | 1603 | return ERR_CAST(nnode); |
1605 | } | 1604 | } |
1606 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); | 1605 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); |
1607 | shft -= UBIFS_LPT_FANOUT_SHIFT; | ||
1608 | pnode = ubifs_get_pnode(c, nnode, iip); | 1606 | pnode = ubifs_get_pnode(c, nnode, iip); |
1609 | if (IS_ERR(pnode)) | 1607 | if (IS_ERR(pnode)) |
1610 | return ERR_CAST(pnode); | 1608 | return ERR_CAST(pnode); |
@@ -1964,7 +1962,6 @@ again: | |||
1964 | } | 1962 | } |
1965 | } | 1963 | } |
1966 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); | 1964 | iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1)); |
1967 | shft -= UBIFS_LPT_FANOUT_SHIFT; | ||
1968 | pnode = scan_get_pnode(c, path + h, nnode, iip); | 1965 | pnode = scan_get_pnode(c, path + h, nnode, iip); |
1969 | if (IS_ERR(pnode)) { | 1966 | if (IS_ERR(pnode)) { |
1970 | err = PTR_ERR(pnode); | 1967 | err = PTR_ERR(pnode); |