Displaying 1 result from an estimated 1 matches for "l1263".
Did you mean:
1263
2009 May 07
3
[PATCH] ocfs2_cluster_lock: code cleanup for redundant assignment
...ret = -EAGAIN;
1378 else
1379 goto again;
1380 }
On L1375 variable 'wait' is assigned to 0. But if execution path goes to L1379
and jumps to label 'again:' on L1262, there is already an assignment to 'wait'
on L1263:
1262 again:
1263 wait = 0;
1264
The previous 'wait = 0' on L1375 is redundant in this case. This patch removes
such a redundant variable assignment.
Signed-off-by: Coly Li <coly.li at suse.de>
---
fs/ocfs2/dlmglue.c | 6 +++---
1 files changed, 3 insertions(+), 3 delet...