strlcpy(zram->compressor, default_compressor, sizeof(zram->compressor));
        zram->meta = NULL;
        zram->max_comp_streams = 1;
+
+       pr_info("Added device: %s\n", zram->disk->disk_name);
        return 0;
 
 out_free_disk:
 
 static void zram_remove(struct zram *zram)
 {
+       pr_info("Removed device: %s\n", zram->disk->disk_name);
        /*
         * Remove sysfs first, so no one will perform a disksize
         * store while we destroy the devices
        idr_for_each(&zram_index_idr, &zram_remove_cb, NULL);
        idr_destroy(&zram_index_idr);
        unregister_blkdev(zram_major, "zram");
-       pr_info("Destroyed device(s)\n");
 }
 
 static int __init zram_init(void)
                        goto out_error;
        }
 
-       pr_info("Created %u device(s)\n", num_devices);
        return 0;
 
 out_error: