From f231685e0bd91355670aaaef01a594667b825ed8 Mon Sep 17 00:00:00 2001 From: "Darrick J. Wong" Date: Tue, 25 Oct 2016 15:14:30 -0700 Subject: [PATCH] xfs_buflock: handling parsing errors more gracefully Skip ftrace output lines that don't parse. Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig --- tools/xfsbuflock.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/xfsbuflock.py b/tools/xfsbuflock.py index f307461d1..82b6e01f5 100755 --- a/tools/xfsbuflock.py +++ b/tools/xfsbuflock.py @@ -150,7 +150,10 @@ for line in fileinput.input(): if len(toks) < 4: continue pid = toks[0] - time = float(toks[2][:-1]) + try: + time = float(toks[2][:-1]) + except: + continue fn = toks[3][:-1] if pid in processes: -- 2.47.2