lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ