mirror of
https://github.com/ceph/ceph
synced 2024-12-16 08:26:25 +00:00
a2ac9358a3
See bug #2657. Signed-off-by: Sage Weil <sage@inktank.com>
7 lines
114 B
Bash
Executable File
7 lines
114 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
echo "test large (16MB) dio write"
|
|
dd if=/dev/zero of=foo.big bs=16M count=1 oflag=direct
|
|
|
|
echo OK
|