Tag: 524c19ebc961799b1ec126e4b063b941a70275e5

ext4: use WARN in ext4_alloc_blocks

Author: Julia Lawall <Julia.Lawall@lip6.fr> 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” — fs/ext4/indirect.c | 3 +– 1 file changed, 1 …

Continue reading