forked from Minki/linux
[S390] dasd: fix message naming
This patch fixes message naming so that generic dasd messages do not contain the device discipline. For this purpose the dev_ makros are replaced by pr_ makros for generic dasd messages. Signed-off-by: Stefan Haberland <stefan.haberland@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
68b781fe1b
commit
ca99dab01d
@ -7,7 +7,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-eckd"
|
||||
|
||||
#include <linux/timer.h>
|
||||
#include <linux/slab.h>
|
||||
|
@ -5,7 +5,7 @@
|
||||
* Author(s): Stefan Weinhuber <wein@de.ibm.com>
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-eckd"
|
||||
|
||||
#include <linux/list.h>
|
||||
#include <asm/ebcdic.h>
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-diag"
|
||||
|
||||
#include <linux/stddef.h>
|
||||
#include <linux/kernel.h>
|
||||
|
@ -10,7 +10,7 @@
|
||||
* Author.........: Nigel Hislop <hislop_nigel@emc.com>
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-eckd"
|
||||
|
||||
#include <linux/stddef.h>
|
||||
#include <linux/kernel.h>
|
||||
|
@ -6,7 +6,7 @@
|
||||
* Author(s): Stefan Weinhuber <wein@de.ibm.com>
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-eckd"
|
||||
|
||||
#include <linux/init.h>
|
||||
#include <linux/fs.h>
|
||||
|
@ -99,8 +99,8 @@ dasd_default_erp_action(struct dasd_ccw_req *cqr)
|
||||
cqr->lpm = LPM_ANYPATH;
|
||||
cqr->status = DASD_CQR_FILLED;
|
||||
} else {
|
||||
dev_err(&device->cdev->dev,
|
||||
"default ERP has run out of retries and failed\n");
|
||||
pr_err("%s: default ERP has run out of retries and failed\n",
|
||||
dev_name(&device->cdev->dev));
|
||||
cqr->status = DASD_CQR_FAILED;
|
||||
cqr->stopclk = get_clock();
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
* Copyright IBM Corp. 1999, 2009
|
||||
*/
|
||||
|
||||
#define KMSG_COMPONENT "dasd"
|
||||
#define KMSG_COMPONENT "dasd-fba"
|
||||
|
||||
#include <linux/stddef.h>
|
||||
#include <linux/kernel.h>
|
||||
|
@ -98,8 +98,8 @@ static int dasd_ioctl_quiesce(struct dasd_block *block)
|
||||
if (!capable (CAP_SYS_ADMIN))
|
||||
return -EACCES;
|
||||
|
||||
dev_info(&base->cdev->dev, "The DASD has been put in the quiesce "
|
||||
"state\n");
|
||||
pr_info("%s: The DASD has been put in the quiesce "
|
||||
"state\n", dev_name(&base->cdev->dev));
|
||||
spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
|
||||
base->stopped |= DASD_STOPPED_QUIESCE;
|
||||
spin_unlock_irqrestore(get_ccwdev_lock(base->cdev), flags);
|
||||
@ -119,8 +119,8 @@ static int dasd_ioctl_resume(struct dasd_block *block)
|
||||
if (!capable (CAP_SYS_ADMIN))
|
||||
return -EACCES;
|
||||
|
||||
dev_info(&base->cdev->dev, "I/O operations have been resumed "
|
||||
"on the DASD\n");
|
||||
pr_info("%s: I/O operations have been resumed "
|
||||
"on the DASD\n", dev_name(&base->cdev->dev));
|
||||
spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
|
||||
base->stopped &= ~DASD_STOPPED_QUIESCE;
|
||||
spin_unlock_irqrestore(get_ccwdev_lock(base->cdev), flags);
|
||||
@ -146,8 +146,8 @@ static int dasd_format(struct dasd_block *block, struct format_data_t *fdata)
|
||||
return -EPERM;
|
||||
|
||||
if (base->state != DASD_STATE_BASIC) {
|
||||
dev_warn(&base->cdev->dev,
|
||||
"The DASD cannot be formatted while it is enabled\n");
|
||||
pr_warning("%s: The DASD cannot be formatted while it is "
|
||||
"enabled\n", dev_name(&base->cdev->dev));
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
@ -175,9 +175,9 @@ static int dasd_format(struct dasd_block *block, struct format_data_t *fdata)
|
||||
dasd_sfree_request(cqr, cqr->memdev);
|
||||
if (rc) {
|
||||
if (rc != -ERESTARTSYS)
|
||||
dev_err(&base->cdev->dev,
|
||||
"Formatting unit %d failed with "
|
||||
"rc=%d\n", fdata->start_unit, rc);
|
||||
pr_err("%s: Formatting unit %d failed with "
|
||||
"rc=%d\n", dev_name(&base->cdev->dev),
|
||||
fdata->start_unit, rc);
|
||||
return rc;
|
||||
}
|
||||
fdata->start_unit++;
|
||||
@ -204,9 +204,9 @@ dasd_ioctl_format(struct block_device *bdev, void __user *argp)
|
||||
if (copy_from_user(&fdata, argp, sizeof(struct format_data_t)))
|
||||
return -EFAULT;
|
||||
if (bdev != bdev->bd_contains) {
|
||||
dev_warn(&block->base->cdev->dev,
|
||||
"The specified DASD is a partition and cannot be "
|
||||
"formatted\n");
|
||||
pr_warning("%s: The specified DASD is a partition and cannot "
|
||||
"be formatted\n",
|
||||
dev_name(&block->base->cdev->dev));
|
||||
return -EINVAL;
|
||||
}
|
||||
return dasd_format(block, &fdata);
|
||||
|
Loading…
Reference in New Issue
Block a user