* [PATCH 1/2] test: add f_mke2fs_baddisk v2
@ 2016-12-07 14:55 Dmitry Monakhov
2016-12-07 14:55 ` [PATCH 2/2] ext2fs: check fsync error code Dmitry Monakhov
2017-01-30 22:18 ` [PATCH 1/2] test: add f_mke2fs_baddisk v2 Theodore Ts'o
0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Monakhov @ 2016-12-07 14:55 UTC (permalink / raw)
To: linux-ext4; +Cc: tytso, Dmitry Monakhov
Check what mke2fs will return non zero error on broken device.
changes since: v1
- skip test if dm-error is not available.
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
---
tests/f_mke2fs_baddisk/script | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 tests/f_mke2fs_baddisk/script
diff --git a/tests/f_mke2fs_baddisk/script b/tests/f_mke2fs_baddisk/script
new file mode 100644
index 0000000..0e6d3cd
--- /dev/null
+++ b/tests/f_mke2fs_baddisk/script
@@ -0,0 +1,26 @@
+test_description="mke2fs /dev/mapper/bad_disk should fail"
+
+OUT=$test_name.log
+
+dmsetup create -v bad_disk --table '0 1148681097 error' > $OUT 2>&1
+status=$?
+if [ "$status" != 0 ]; then
+ echo "$test_name: $test_description: skip"
+ touch $test_name.ok
+ exit 0
+fi
+
+echo mke2fs /dev/mapper/bad_disk >> $OUT
+$MKE2FS /dev/mapper/bad_disk >> $OUT 2>&1
+status=$?
+sleep 1
+dmsetup remove --retry bad_disk >> $OUT 2>&1
+
+if [ "$status" = 0 ] ; then
+ ln -f $test_name.log $test_name.failed
+ echo "$test_name: $test_description: failed"
+else
+ echo "$test_name: $test_description: ok"
+ touch $test_name.ok
+
+fi
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] ext2fs: check fsync error code
2016-12-07 14:55 [PATCH 1/2] test: add f_mke2fs_baddisk v2 Dmitry Monakhov
@ 2016-12-07 14:55 ` Dmitry Monakhov
2017-01-30 22:18 ` [PATCH 1/2] test: add f_mke2fs_baddisk v2 Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Monakhov @ 2016-12-07 14:55 UTC (permalink / raw)
To: linux-ext4; +Cc: tytso, Dmitry Monakhov
testcase: f_mke2fs_baddisk
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
---
lib/ext2fs/unix_io.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index 429ea24..6c54cbe 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -1030,7 +1030,10 @@ static errcode_t unix_flush(io_channel channel)
#ifndef NO_IO_CACHE
retval = flush_cached_blocks(channel, data, 0);
#endif
- fsync(data->dev);
+ if(fsync(data->dev)) {
+ if (!retval)
+ retval = errno;
+ }
return retval;
}
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] test: add f_mke2fs_baddisk v2
2016-12-07 14:55 [PATCH 1/2] test: add f_mke2fs_baddisk v2 Dmitry Monakhov
2016-12-07 14:55 ` [PATCH 2/2] ext2fs: check fsync error code Dmitry Monakhov
@ 2017-01-30 22:18 ` Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2017-01-30 22:18 UTC (permalink / raw)
To: Dmitry Monakhov; +Cc: linux-ext4
On Wed, Dec 07, 2016 at 06:55:17PM +0400, Dmitry Monakhov wrote:
> Check what mke2fs will return non zero error on broken device.
>
> changes since: v1
> - skip test if dm-error is not available.
>
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
I applied this a while ago, but forgot to ack it. Thanks, applied.
- Ted
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-30 22:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-07 14:55 [PATCH 1/2] test: add f_mke2fs_baddisk v2 Dmitry Monakhov
2016-12-07 14:55 ` [PATCH 2/2] ext2fs: check fsync error code Dmitry Monakhov
2017-01-30 22:18 ` [PATCH 1/2] test: add f_mke2fs_baddisk v2 Theodore Ts'o
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox