diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/compat_ioctl.c | 1 | ||||
-rw-r--r-- | block/genhd.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/block/compat_ioctl.c b/block/compat_ioctl.c index 7c668c8a6f95..7e5d474dc6ba 100644 --- a/block/compat_ioctl.c +++ b/block/compat_ioctl.c | |||
@@ -59,6 +59,7 @@ static int compat_hdio_getgeo(struct gendisk *disk, struct block_device *bdev, | |||
59 | if (!disk->fops->getgeo) | 59 | if (!disk->fops->getgeo) |
60 | return -ENOTTY; | 60 | return -ENOTTY; |
61 | 61 | ||
62 | memset(&geo, 0, sizeof(geo)); | ||
62 | /* | 63 | /* |
63 | * We need to set the startsect first, the driver may | 64 | * We need to set the startsect first, the driver may |
64 | * want to override it. | 65 | * want to override it. |
diff --git a/block/genhd.c b/block/genhd.c index e9094b375c05..dadf42b454a3 100644 --- a/block/genhd.c +++ b/block/genhd.c | |||
@@ -512,7 +512,7 @@ static void register_disk(struct gendisk *disk) | |||
512 | 512 | ||
513 | ddev->parent = disk->driverfs_dev; | 513 | ddev->parent = disk->driverfs_dev; |
514 | 514 | ||
515 | dev_set_name(ddev, disk->disk_name); | 515 | dev_set_name(ddev, "%s", disk->disk_name); |
516 | 516 | ||
517 | /* delay uevents, until we scanned partition table */ | 517 | /* delay uevents, until we scanned partition table */ |
518 | dev_set_uevent_suppress(ddev, 1); | 518 | dev_set_uevent_suppress(ddev, 1); |