|
@@ -202,7 +202,7 @@ aoeblk_make_request(struct request_queue *q, struct bio *bio)
|
|
|
spin_lock_irqsave(&d->lock, flags);
|
|
|
|
|
|
if ((d->flags & DEVFL_UP) == 0) {
|
|
|
- printk(KERN_INFO "aoe: device %ld.%ld is not up\n",
|
|
|
+ printk(KERN_INFO "aoe: device %ld.%d is not up\n",
|
|
|
d->aoemajor, d->aoeminor);
|
|
|
spin_unlock_irqrestore(&d->lock, flags);
|
|
|
mempool_free(buf, d->bufpool);
|
|
@@ -255,14 +255,15 @@ aoeblk_gdalloc(void *vp)
|
|
|
|
|
|
gd = alloc_disk(AOE_PARTITIONS);
|
|
|
if (gd == NULL) {
|
|
|
- printk(KERN_ERR "aoe: cannot allocate disk structure for %ld.%ld\n",
|
|
|
+ printk(KERN_ERR
|
|
|
+ "aoe: cannot allocate disk structure for %ld.%d\n",
|
|
|
d->aoemajor, d->aoeminor);
|
|
|
goto err;
|
|
|
}
|
|
|
|
|
|
d->bufpool = mempool_create_slab_pool(MIN_BUFS, buf_pool_cache);
|
|
|
if (d->bufpool == NULL) {
|
|
|
- printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%ld\n",
|
|
|
+ printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
|
|
|
d->aoemajor, d->aoeminor);
|
|
|
goto err_disk;
|
|
|
}
|