diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-12-18 17:53:53 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-12-18 17:53:53 +0000 |
commit | db831511d2091907eef52519ebcc47f54cfd6d33 (patch) | |
tree | 9f9c7fba156b00e4bc76030988ecf32839f622ce /target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch | |
parent | 979bc5536dd4960748cc7a96426abdc8ace15131 (diff) | |
download | mtk-20170518-db831511d2091907eef52519ebcc47f54cfd6d33.zip mtk-20170518-db831511d2091907eef52519ebcc47f54cfd6d33.tar.gz mtk-20170518-db831511d2091907eef52519ebcc47f54cfd6d33.tar.bz2 |
goldfish: R.I.P.
It is broken and it is not maintained by anyone since long time.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34766
Diffstat (limited to 'target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch')
-rw-r--r-- | target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch b/target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch deleted file mode 100644 index c057e7b..0000000 --- a/target/linux/goldfish/patches-2.6.30/0105-block-block_dump-Add-number-of-sectors-to-debug-ou.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 4d3a01ba872f67bae704e37bf888c38fa83be759 Mon Sep 17 00:00:00 2001 -From: San Mehat <san@android.com> -Date: Sat, 21 Mar 2009 18:48:05 -0700 -Subject: [PATCH 105/134] block: block_dump: Add number of sectors to debug output - -Signed-off-by: San Mehat <san@android.com> ---- - block/blk-core.c | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) - ---- a/block/blk-core.c -+++ b/block/blk-core.c -@@ -1558,11 +1558,12 @@ void submit_bio(int rw, struct bio *bio) - - if (unlikely(block_dump)) { - char b[BDEVNAME_SIZE]; -- printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n", -+ printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n", - current->comm, task_pid_nr(current), - (rw & WRITE) ? "WRITE" : "READ", - (unsigned long long)bio->bi_sector, -- bdevname(bio->bi_bdev, b)); -+ bdevname(bio->bi_bdev, b), -+ count); - } - } - |