From 524c19ebc961799b1ec126e4b063b941a70275e5 Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Fri, 1 Feb 2013 20:07:21 -0500 Subject: [PATCH] ext4: use WARN in ext4_alloc_blocks Use WARN rather than printk followed by WARN_ON(1), for conciseness. A simplified version of the semantic patch that makes this transformation is as follows: (http://coccinelle.lip6.fr/) // @@ expression list es; @@ -printk( +WARN(1, es); -WARN_ON(1); // Signed-off-by: Julia Lawall Signed-off-by: "Theodore Ts'o" --- Reading git-format-patch failed