[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LRH.2.00.0911231202440.14263@pub1.ifh.de>
Date: Mon, 23 Nov 2009 12:04:57 +0100 (CET)
From: Patrick Boettcher <pboettcher@...nellabs.com>
To: linux-kernel@...r.kernel.org
cc: Martin Habets <errandir_news@....eclipse.co.uk>
Subject: PATCH [1/2] - CHECKSTACK: sparc: fix regex to match all stacksize
Signed-off-by: Patrick Boettcher <pboettcher@...nellabs.com>
----
diff --git a/tools/checkstack.pl b/tools/checkstack.pl
index 14ee68e..e0af9c7 100755
--- a/tools/checkstack.pl
+++ b/tools/checkstack.pl
@@ -97,7 +97,7 @@ my (@stack, $re, $dre, $x, $xs);
$re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o;
} elsif ($arch eq 'sparc' || $arch eq 'sparc64') {
# f0019d10: 9d e3 bf 90 save %sp, -112, %sp
- $re = qr/.*save.*%sp, -(([0-9]{2}|[3-9])[0-9]{2}), %sp/o;
+ $re = qr/.*save.*%sp, -(\d*), %sp/o;
} else {
print("wrong or unknown architecture \"$arch\"\n");
exit
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists