On 2017/12/05 2:29, Omar Sandoval wrote:
On Mon, Dec 04, 2017 at 05:48:36PM +0800, Xiao Yang wrote:
quoted
On 2017/12/04 17:25, Eryu Guan wrote:
quoted
On Mon, Dec 04, 2017 at 05:15:17PM +0800, Xiao Yang wrote:
quoted
On 2017/12/04 16:29, Eryu Guan wrote:
quoted
On Wed, Nov 29, 2017 at 08:02:26PM +0800, Xiao Yang wrote:
quoted
If the entire block device is formatted with a filesystem and
mounted, running "blockdev --rereadpt" should fail and return
EBUSY instead of pass.
Signed-off-by: Xiao Yang<redacted>
As we have blktests[1] now, I think this may fit in blktests better?
Hi Eryu,
Do you think test cases which use scsi_debug module should be moved into
blktests?
(e.g. generic/108, generic/349, generic/350, generic/351)
I don't think they need to be moved to blktests. Most other tests that
take use of scsi_debug are for filesystem testing, e.g. generic/108.
generic/349 generic/35[01] are a bit special, they were there before
blktests was announced available, so they're in a special blockdev group
and not in the auto group. If Omar agrees, I think they can be ported to
blktests.
Hi Eryu,
Thanks for your explanation, and i will try to send it to blktests.
Thanks,
Xiao Yang
I agree, the three tests Eryu mentioned and this new test would be a
good fit for blktests. Let me know if you need any help porting, things
are a little different from xfstests.
Hi Omar,
With gcc v4.4.7 on RHEL6, i got the following compiler error:
----------------------------------------------------------------------------------------------------------------------
[root@RHEL6U9GA_Intel64 blktests]# make
make -C src all
make[1]: Entering directory `/root/blktests/src'
cc -Wall -o sg/syzkaller1 -O2 sg/syzkaller1.c
sg/syzkaller1.c: In function �segv_handler�:
sg/syzkaller1.c:118: warning: implicit declaration of function
�__atomic_load_n�
sg/syzkaller1.c:118: error: �__ATOMIC_RELAXED� undeclared (first use in
this function)
sg/syzkaller1.c:118: error: (Each undeclared identifier is reported only
once
sg/syzkaller1.c:118: error: for each function it appears in.)
sg/syzkaller1.c: In function �syz_open_dev�:
sg/syzkaller1.c:204: warning: implicit declaration of function
�__atomic_fetch_add�
sg/syzkaller1.c:204: error: �__ATOMIC_SEQ_CST� undeclared (first use in
this function)
sg/syzkaller1.c:204: warning: implicit declaration of function
�__atomic_fetch_sub�
sg/syzkaller1.c: In function �test�:
sg/syzkaller1.c:406: error: �__ATOMIC_SEQ_CST� undeclared (first use in
this function)
make[1]: *** [sg/syzkaller1] Error 1
make[1]: Leaving directory `/root/blktests/src'
make: *** [all] Error 2
-----------------------------------------------------------------------------------------------------------------------
It seems that __atomic_* functions are not available, and could you tell
me how to fix
the compiler error?
Thanks,
Xiao Yang