]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ext4 crypto: fix some error handling
authorDan Carpenter <dan.carpenter@oracle.com>
Sat, 2 Apr 2016 22:13:38 +0000 (18:13 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 2 Apr 2016 22:13:38 +0000 (18:13 -0400)
We should be testing for -ENOMEM but the minus sign is missing.

Fixes: c9af28fdd449 ('ext4 crypto: don't let data integrity writebacks fail with ENOMEM')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/page-io.c

index 51b349211da759b53f44f6e30dacacf1c30f060e..b39d9c7e59520ff994b009198018eae711fef8a4 100644 (file)
@@ -477,7 +477,7 @@ int ext4_bio_write_page(struct ext4_io_submit *io,
                data_page = ext4_encrypt(inode, page, gfp_flags);
                if (IS_ERR(data_page)) {
                        ret = PTR_ERR(data_page);
-                       if (ret == ENOMEM && wbc->sync_mode == WB_SYNC_ALL) {
+                       if (ret == -ENOMEM && wbc->sync_mode == WB_SYNC_ALL) {
                                if (io->io_bio) {
                                        ext4_io_submit(io);
                                        congestion_wait(BLK_RW_ASYNC, HZ/50);