*/
 static void md_bitmap_file_kick(struct bitmap *bitmap)
 {
-       char *path, *ptr = NULL;
-
        if (!test_and_set_bit(BITMAP_STALE, &bitmap->flags)) {
                md_bitmap_update_sb(bitmap);
 
                if (bitmap->storage.file) {
-                       path = kmalloc(PAGE_SIZE, GFP_KERNEL);
-                       if (path)
-                               ptr = file_path(bitmap->storage.file,
-                                            path, PAGE_SIZE);
-
-                       pr_warn("%s: kicking failed bitmap file %s from array!\n",
-                               bmname(bitmap), IS_ERR(ptr) ? "" : ptr);
+                       pr_warn("%s: kicking failed bitmap file %pD4 from array!\n",
+                               bmname(bitmap), bitmap->storage.file);
 
-                       kfree(path);
                } else
                        pr_warn("%s: disabling internal bitmap due to errors\n",
                                bmname(bitmap));