diff options
author | Richard Genoud <richard.genoud@gmail.com> | 2012-08-22 11:27:56 +0200 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-08-22 13:20:49 +0300 |
commit | 312e784fb06eaafff4cfebe29c74b8d0ecc09167 (patch) | |
tree | 70e8354a62c61946d8836d1eef85a8654ea49789 /tests/ubi-tests/io_paral.c | |
parent | 3a814dbfbfb44e8f1805592921b4f39fe0391723 (diff) |
UBI: sync ubi-user.h with kernel v3.6-rc1
Also remove the eraseblock type support, because kernel commit
a65a0eb6d198e058687a9214683bd1c418f20d39 set the dtype
parameter as obsolete.
Also adjust to some renames:
* 'UBI_PROP_DIRECT_WRITE' -> 'UBI_VOL_PROP_DIRECT_WRITE'
* 'struct ubi_set_prop_req' -> 'struct ubi_set_vol_prop_req'.
* 'UBI_IOCSETPROP' -> 'UBI_IOCSETVOLPROP'
Signed-off-by: Richard Genoud <richard.genoud@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'tests/ubi-tests/io_paral.c')
-rw-r--r-- | tests/ubi-tests/io_paral.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ubi-tests/io_paral.c b/tests/ubi-tests/io_paral.c index 1d9a97c..615c1dd 100644 --- a/tests/ubi-tests/io_paral.c +++ b/tests/ubi-tests/io_paral.c @@ -179,7 +179,7 @@ static void *write_thread(void *ptr) return NULL; } - ret = ubi_set_property(fd, UBI_PROP_DIRECT_WRITE, 1); + ret = ubi_set_property(fd, UBI_VOL_PROP_DIRECT_WRITE, 1); if (ret) { failed("ubi_set_property"); errmsg("cannot set property for \"%s\"\n", vol_node); |