mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 16:11:38 +00:00
s390/zcrypt: Fix missing newlines at some debug feature messages.
On some debug feature invocations the newline was missing. Signed-off-by: Harald Freudenberger <freude@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
9d2be0c1d4
commit
792e0e0022
@ -94,7 +94,7 @@ static inline int zcrypt_process_rescan(void)
|
|||||||
atomic_set(&zcrypt_rescan_req, 0);
|
atomic_set(&zcrypt_rescan_req, 0);
|
||||||
atomic_inc(&zcrypt_rescan_count);
|
atomic_inc(&zcrypt_rescan_count);
|
||||||
ap_bus_force_rescan();
|
ap_bus_force_rescan();
|
||||||
ZCRYPT_DBF(DBF_INFO, "rescan count=%07d",
|
ZCRYPT_DBF(DBF_INFO, "rescan count=%07d\n",
|
||||||
atomic_inc_return(&zcrypt_rescan_count));
|
atomic_inc_return(&zcrypt_rescan_count));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -822,7 +822,7 @@ static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd,
|
|||||||
rc = zcrypt_rsa_modexpo(&mex);
|
rc = zcrypt_rsa_modexpo(&mex);
|
||||||
} while (rc == -EAGAIN);
|
} while (rc == -EAGAIN);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSAMODEXPO rc=%d", rc);
|
ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSAMODEXPO rc=%d\n", rc);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
return put_user(mex.outputdatalength, &umex->outputdatalength);
|
return put_user(mex.outputdatalength, &umex->outputdatalength);
|
||||||
@ -841,7 +841,7 @@ static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd,
|
|||||||
rc = zcrypt_rsa_crt(&crt);
|
rc = zcrypt_rsa_crt(&crt);
|
||||||
} while (rc == -EAGAIN);
|
} while (rc == -EAGAIN);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSACRT rc=%d", rc);
|
ZCRYPT_DBF(DBF_DEBUG, "ioctl ICARSACRT rc=%d\n", rc);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
return put_user(crt.outputdatalength, &ucrt->outputdatalength);
|
return put_user(crt.outputdatalength, &ucrt->outputdatalength);
|
||||||
@ -860,7 +860,7 @@ static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd,
|
|||||||
rc = zcrypt_send_cprb(&xcRB);
|
rc = zcrypt_send_cprb(&xcRB);
|
||||||
} while (rc == -EAGAIN);
|
} while (rc == -EAGAIN);
|
||||||
if (rc)
|
if (rc)
|
||||||
ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDCPRB rc=%d", rc);
|
ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDCPRB rc=%d\n", rc);
|
||||||
if (copy_to_user(uxcRB, &xcRB, sizeof(xcRB)))
|
if (copy_to_user(uxcRB, &xcRB, sizeof(xcRB)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return rc;
|
return rc;
|
||||||
@ -879,7 +879,7 @@ static long zcrypt_unlocked_ioctl(struct file *filp, unsigned int cmd,
|
|||||||
rc = zcrypt_send_ep11_cprb(&xcrb);
|
rc = zcrypt_send_ep11_cprb(&xcrb);
|
||||||
} while (rc == -EAGAIN);
|
} while (rc == -EAGAIN);
|
||||||
if (rc)
|
if (rc)
|
||||||
ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDEP11CPRB rc=%d", rc);
|
ZCRYPT_DBF(DBF_DEBUG, "ioctl ZSENDEP11CPRB rc=%d\n", rc);
|
||||||
if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb)))
|
if (copy_to_user(uxcrb, &xcrb, sizeof(xcrb)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return rc;
|
return rc;
|
||||||
|
Loading…
Reference in New Issue
Block a user