mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 19:43:43 -04:00
s390/zcrypt: introduce dynamic debugging for AP and zcrypt code
This patch replaces all the s390 debug feature calls with debug level by dynamic debug calls pr_debug. These calls are much more flexible and each single invocation can get enabled/disabled at runtime wheres the s390 debug feature debug calls have only one knob - enable or disable all in one bunch. The benefit is especially significant with high frequency called functions like the AP bus scan. In most debugging scenarios you don't want and need them, but sometimes it is crucial to know exactly when and how long the AP bus scan took. Signed-off-by: Harald Freudenberger <freude@linux.ibm.com> Reviewed-by: Holger Dengler <dengler@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
committed by
Heiko Carstens
parent
88e4c0da9b
commit
08b2c3706d
@@ -12,6 +12,9 @@
|
||||
* Multiple device nodes: Harald Freudenberger <freude@linux.ibm.com>
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "zcrypt"
|
||||
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/interrupt.h>
|
||||
@@ -715,8 +718,7 @@ static long zcrypt_rsa_modexpo(struct ap_perms *perms,
|
||||
spin_unlock(&zcrypt_list_lock);
|
||||
|
||||
if (!pref_zq) {
|
||||
ZCRYPT_DBF_DBG("%s no matching queue found => ENODEV\n",
|
||||
__func__);
|
||||
pr_debug("%s no matching queue found => ENODEV\n", __func__);
|
||||
rc = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
@@ -820,8 +822,7 @@ static long zcrypt_rsa_crt(struct ap_perms *perms,
|
||||
spin_unlock(&zcrypt_list_lock);
|
||||
|
||||
if (!pref_zq) {
|
||||
ZCRYPT_DBF_DBG("%s no matching queue found => ENODEV\n",
|
||||
__func__);
|
||||
pr_debug("%s no matching queue found => ENODEV\n", __func__);
|
||||
rc = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
@@ -940,8 +941,8 @@ static long _zcrypt_send_cprb(bool userspace, struct ap_perms *perms,
|
||||
spin_unlock(&zcrypt_list_lock);
|
||||
|
||||
if (!pref_zq) {
|
||||
ZCRYPT_DBF_DBG("%s no match for address %02x.%04x => ENODEV\n",
|
||||
__func__, xcrb->user_defined, *domain);
|
||||
pr_debug("%s no match for address %02x.%04x => ENODEV\n",
|
||||
__func__, xcrb->user_defined, *domain);
|
||||
rc = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
@@ -1113,15 +1114,15 @@ static long _zcrypt_send_ep11_cprb(bool userspace, struct ap_perms *perms,
|
||||
|
||||
if (!pref_zq) {
|
||||
if (targets && target_num == 1) {
|
||||
ZCRYPT_DBF_DBG("%s no match for address %02x.%04x => ENODEV\n",
|
||||
__func__, (int)targets->ap_id,
|
||||
(int)targets->dom_id);
|
||||
pr_debug("%s no match for address %02x.%04x => ENODEV\n",
|
||||
__func__, (int)targets->ap_id,
|
||||
(int)targets->dom_id);
|
||||
} else if (targets) {
|
||||
ZCRYPT_DBF_DBG("%s no match for %d target addrs => ENODEV\n",
|
||||
__func__, (int)target_num);
|
||||
pr_debug("%s no match for %d target addrs => ENODEV\n",
|
||||
__func__, (int)target_num);
|
||||
} else {
|
||||
ZCRYPT_DBF_DBG("%s no match for address ff.ffff => ENODEV\n",
|
||||
__func__);
|
||||
pr_debug("%s no match for address ff.ffff => ENODEV\n",
|
||||
__func__);
|
||||
}
|
||||
rc = -ENODEV;
|
||||
goto out_free;
|
||||
@@ -1199,8 +1200,7 @@ static long zcrypt_rng(char *buffer)
|
||||
spin_unlock(&zcrypt_list_lock);
|
||||
|
||||
if (!pref_zq) {
|
||||
ZCRYPT_DBF_DBG("%s no matching queue found => ENODEV\n",
|
||||
__func__);
|
||||
pr_debug("%s no matching queue found => ENODEV\n", __func__);
|
||||
rc = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
@@ -1444,7 +1444,7 @@ static int icarsamodexpo_ioctl(struct ap_perms *perms, unsigned long arg)
|
||||
if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX)
|
||||
rc = -EIO;
|
||||
if (rc) {
|
||||
ZCRYPT_DBF_DBG("ioctl ICARSAMODEXPO rc=%d\n", rc);
|
||||
pr_debug("ioctl ICARSAMODEXPO rc=%d\n", rc);
|
||||
return rc;
|
||||
}
|
||||
return put_user(mex.outputdatalength, &umex->outputdatalength);
|
||||
@@ -1476,7 +1476,7 @@ static int icarsacrt_ioctl(struct ap_perms *perms, unsigned long arg)
|
||||
if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX)
|
||||
rc = -EIO;
|
||||
if (rc) {
|
||||
ZCRYPT_DBF_DBG("ioctl ICARSACRT rc=%d\n", rc);
|
||||
pr_debug("ioctl ICARSACRT rc=%d\n", rc);
|
||||
return rc;
|
||||
}
|
||||
return put_user(crt.outputdatalength, &ucrt->outputdatalength);
|
||||
@@ -1508,8 +1508,8 @@ static int zsecsendcprb_ioctl(struct ap_perms *perms, unsigned long arg)
|
||||
if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX)
|
||||
rc = -EIO;
|
||||
if (rc)
|
||||
ZCRYPT_DBF_DBG("ioctl ZSENDCPRB rc=%d status=0x%x\n",
|
||||
rc, xcrb.status);
|
||||
pr_debug("ioctl ZSENDCPRB rc=%d status=0x%x\n",
|
||||
rc, xcrb.status);
|
||||
if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb)))
|
||||
return -EFAULT;
|
||||
return rc;
|
||||
@@ -1541,7 +1541,7 @@ static int zsendep11cprb_ioctl(struct ap_perms *perms, unsigned long arg)
|
||||
if (rc == -EAGAIN && tr.again_counter >= TRACK_AGAIN_MAX)
|
||||
rc = -EIO;
|
||||
if (rc)
|
||||
ZCRYPT_DBF_DBG("ioctl ZSENDEP11CPRB rc=%d\n", rc);
|
||||
pr_debug("ioctl ZSENDEP11CPRB rc=%d\n", rc);
|
||||
if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb)))
|
||||
return -EFAULT;
|
||||
return rc;
|
||||
@@ -1670,7 +1670,7 @@ static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd,
|
||||
}
|
||||
/* unknown ioctl number */
|
||||
default:
|
||||
ZCRYPT_DBF_DBG("unknown ioctl 0x%08x\n", cmd);
|
||||
pr_debug("unknown ioctl 0x%08x\n", cmd);
|
||||
return -ENOIOCTLCMD;
|
||||
}
|
||||
}
|
||||
@@ -2014,8 +2014,8 @@ int zcrypt_wait_api_operational(void)
|
||||
break;
|
||||
default:
|
||||
/* other failure */
|
||||
ZCRYPT_DBF_DBG("%s ap_wait_init_apqn_bindings_complete()=%d\n",
|
||||
__func__, rc);
|
||||
pr_debug("%s ap_wait_init_apqn_bindings_complete()=%d\n",
|
||||
__func__, rc);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user