Linux cryptographic layer development
 help / color / mirror / Atom feed
* [PATCH] check for s390 crypto facility availablility
@ 2008-07-10 15:00 Jan Glauber
  2008-07-11 12:29 ` Herbert Xu
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Glauber @ 2008-07-10 15:00 UTC (permalink / raw)
  To: Herbert Xu; +Cc: linux-crypto

Hi Herbert,

here is a small patch for the s390 crypto detection.

[PATCH] respect STFL bit for s390 crypto

From: <jang@linux.vnet.ibm.com>

For all s390 in-kernel crypto algorithms we check at module
load time whether the CPACF facility bit is on. If the facility
is not enabled we bail out.

Signed-off-by: <jang@linux.vnet.ibm.com>

--- ./arch/s390/crypto/crypt_s390.h.stfle
+++ ./arch/s390/crypto/crypt_s390.h
@@ -294,6 +294,10 @@ static inline int crypt_s390_func_availa
 	unsigned char status[16];
 	int ret;
 
+	/* check if CPACF facility (bit 17) is available */
+	if (!(stfl() & 1ULL << (31 - 17)))
+		return 0;
+
 	switch (func & CRYPT_S390_OP_MASK) {
 	case CRYPT_S390_KM:
 		ret = crypt_s390_km(KM_QUERY, &status, NULL, NULL, 0);



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-07-12  7:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-10 15:00 [PATCH] check for s390 crypto facility availablility Jan Glauber
2008-07-11 12:29 ` Herbert Xu
2008-07-11 18:34   ` Jan Glauber
2008-07-11 18:34   ` Jan Glauber
2008-07-12  7:42     ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox