]> Pileus Git - ~andy/linux/commitdiff
Revert "block: Warn and free bio if bi_end_io is not set"
authorJens Axboe <axboe@kernel.dk>
Wed, 8 Jan 2014 21:14:22 +0000 (14:14 -0700)
committerJens Axboe <axboe@kernel.dk>
Wed, 8 Jan 2014 21:14:22 +0000 (14:14 -0700)
This reverts commit 95d4403889acbd98e06d41a255df76452210996a.

The patch is broken for on-stack bios, amongst other things.

fs/bio.c

index 9156bd1f151ca7d86017919a1e8656d07e02d829..75c49a38223969c1f7256868cb3b09fc7d3bd286 100644 (file)
--- a/fs/bio.c
+++ b/fs/bio.c
@@ -1770,15 +1770,6 @@ void bio_endio(struct bio *bio, int error)
                } else {
                        if (bio->bi_end_io)
                                bio->bi_end_io(bio, error);
-                       else {
-                               char dev_name[BDEVNAME_SIZE];
-
-                               WARN(1, "bio_endio: bio for %s without endio\n",
-                                       bio->bi_bdev ? bdevname(bio->bi_bdev,
-                                       dev_name) : "(unknown)");
-                               bio_put(bio);
-                       }
-
                        bio = NULL;
                }
        }