fuse: Freeze client on suspend when request sent to userspace
[firefly-linux-kernel-4.4.55.git] / fs / xfs / kmem.c
index 535c13677e7a5857ecc4525e246f98d9594b0b4e..686ba6fb20ddc942638f6e698b98bf4c1bb8785f 100644 (file)
@@ -55,9 +55,9 @@ kmem_alloc(size_t size, xfs_km_flags_t flags)
                        return ptr;
                if (!(++retries % 100))
                        xfs_err(NULL,
-               "%s(%u) possible memory allocation deadlock in %s (mode:0x%x)",
+       "%s(%u) possible memory allocation deadlock size %u in %s (mode:0x%x)",
                                current->comm, current->pid,
-                               __func__, lflags);
+                               (unsigned int)size, __func__, lflags);
                congestion_wait(BLK_RW_ASYNC, HZ/50);
        } while (1);
 }