Commit 623f55c4 authored by Bobi Jam's avatar Bobi Jam Committed by Greg Kroah-Hartman

staging: lustre: llite: restart short read/write for normal IO

If normal IO got short read/write, we'd restart the IO from where
we've accomplished until we meet EOF or error happens.
Signed-off-by: default avatarBobi Jam <bobijam.xu@intel.com>
Signed-off-by: default avatarJinshan Xiong <jinshan.xiong@intel.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6389
Reviewed-on: http://review.whamcloud.com/14123Reviewed-by: default avatarAndreas Dilger <andreas.dilger@intel.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 330e2a0f
...@@ -113,6 +113,7 @@ int __cfs_fail_check_set(__u32 id, __u32 value, int set) ...@@ -113,6 +113,7 @@ int __cfs_fail_check_set(__u32 id, __u32 value, int set)
break; break;
case CFS_FAIL_LOC_RESET: case CFS_FAIL_LOC_RESET:
cfs_fail_loc = value; cfs_fail_loc = value;
atomic_set(&cfs_fail_count, 0);
break; break;
default: default:
LASSERTF(0, "called with bad set %u\n", set); LASSERTF(0, "called with bad set %u\n", set);
......
...@@ -458,6 +458,8 @@ extern char obd_jobid_var[]; ...@@ -458,6 +458,8 @@ extern char obd_jobid_var[];
#define OBD_FAIL_LOV_INIT 0x1403 #define OBD_FAIL_LOV_INIT 0x1403
#define OBD_FAIL_GLIMPSE_DELAY 0x1404 #define OBD_FAIL_GLIMPSE_DELAY 0x1404
#define OBD_FAIL_LLITE_XATTR_ENOMEM 0x1405 #define OBD_FAIL_LLITE_XATTR_ENOMEM 0x1405
#define OBD_FAIL_MAKE_LOVEA_HOLE 0x1406
#define OBD_FAIL_LLITE_LOST_LAYOUT 0x1407
#define OBD_FAIL_GETATTR_DELAY 0x1409 #define OBD_FAIL_GETATTR_DELAY 0x1409
#define OBD_FAIL_FID_INDIR 0x1501 #define OBD_FAIL_FID_INDIR 0x1501
......
...@@ -972,9 +972,11 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args, ...@@ -972,9 +972,11 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
{ {
struct ll_inode_info *lli = ll_i2info(file_inode(file)); struct ll_inode_info *lli = ll_i2info(file_inode(file));
struct ll_file_data *fd = LUSTRE_FPRIVATE(file); struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
struct vvp_io *vio = vvp_env_io(env);
struct range_lock range; struct range_lock range;
struct cl_io *io; struct cl_io *io;
ssize_t result; ssize_t result = 0;
int rc = 0;
CDEBUG(D_VFSTRACE, "file: %pD, type: %d ppos: %llu, count: %zu\n", CDEBUG(D_VFSTRACE, "file: %pD, type: %d ppos: %llu, count: %zu\n",
file, iot, *ppos, count); file, iot, *ppos, count);
...@@ -1006,16 +1008,15 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args, ...@@ -1006,16 +1008,15 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
CDEBUG(D_VFSTRACE, "Range lock [%llu, %llu]\n", CDEBUG(D_VFSTRACE, "Range lock [%llu, %llu]\n",
range.rl_node.in_extent.start, range.rl_node.in_extent.start,
range.rl_node.in_extent.end); range.rl_node.in_extent.end);
result = range_lock(&lli->lli_write_tree, rc = range_lock(&lli->lli_write_tree, &range);
&range); if (rc < 0)
if (result < 0)
goto out; goto out;
range_locked = true; range_locked = true;
} }
down_read(&lli->lli_trunc_sem); down_read(&lli->lli_trunc_sem);
ll_cl_add(file, env, io); ll_cl_add(file, env, io);
result = cl_io_loop(env, io); rc = cl_io_loop(env, io);
ll_cl_remove(file, env); ll_cl_remove(file, env);
up_read(&lli->lli_trunc_sem); up_read(&lli->lli_trunc_sem);
if (range_locked) { if (range_locked) {
...@@ -1026,24 +1027,26 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args, ...@@ -1026,24 +1027,26 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
} }
} else { } else {
/* cl_io_rw_init() handled IO */ /* cl_io_rw_init() handled IO */
result = io->ci_result; rc = io->ci_result;
} }
if (io->ci_nob > 0) { if (io->ci_nob > 0) {
result = io->ci_nob; result = io->ci_nob;
count -= io->ci_nob;
*ppos = io->u.ci_wr.wr.crw_pos; *ppos = io->u.ci_wr.wr.crw_pos;
/* prepare IO restart */
if (count > 0)
args->u.normal.via_iter = vio->vui_iter;
} }
goto out;
out: out:
cl_io_fini(env, io); cl_io_fini(env, io);
/* If any bit been read/written (result != 0), we just return
* short read/write instead of restart io. if ((!rc || rc == -ENODATA) && count > 0 && io->ci_need_restart) {
*/ CDEBUG(D_VFSTRACE, "%s: restart %s from %lld, count:%zu, result: %zd\n",
if ((result == 0 || result == -ENODATA) && io->ci_need_restart) { file_dentry(file)->d_name.name,
CDEBUG(D_VFSTRACE, "Restart %s on %pD from %lld, count:%zu\n",
iot == CIT_READ ? "read" : "write", iot == CIT_READ ? "read" : "write",
file, *ppos, count); *ppos, count, result);
LASSERTF(io->ci_nob == 0, "%zd\n", io->ci_nob);
goto restart; goto restart;
} }
...@@ -1056,13 +1059,19 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args, ...@@ -1056,13 +1059,19 @@ ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
ll_stats_ops_tally(ll_i2sbi(file_inode(file)), ll_stats_ops_tally(ll_i2sbi(file_inode(file)),
LPROC_LL_WRITE_BYTES, result); LPROC_LL_WRITE_BYTES, result);
fd->fd_write_failed = false; fd->fd_write_failed = false;
} else if (result != -ERESTARTSYS) { } else if (!result && !rc) {
rc = io->ci_result;
if (rc < 0)
fd->fd_write_failed = true;
else
fd->fd_write_failed = false;
} else if (rc != -ERESTARTSYS) {
fd->fd_write_failed = true; fd->fd_write_failed = true;
} }
} }
CDEBUG(D_VFSTRACE, "iot: %d, result: %zd\n", iot, result); CDEBUG(D_VFSTRACE, "iot: %d, result: %zd\n", iot, result);
return result; return result > 0 ? result : rc;
} }
static ssize_t ll_file_read_iter(struct kiocb *iocb, struct iov_iter *to) static ssize_t ll_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
......
...@@ -72,9 +72,10 @@ static bool can_populate_pages(const struct lu_env *env, struct cl_io *io, ...@@ -72,9 +72,10 @@ static bool can_populate_pages(const struct lu_env *env, struct cl_io *io,
/* don't need lock here to check lli_layout_gen as we have held /* don't need lock here to check lli_layout_gen as we have held
* extent lock and GROUP lock has to hold to swap layout * extent lock and GROUP lock has to hold to swap layout
*/ */
if (ll_layout_version_get(lli) != vio->vui_layout_gen) { if (ll_layout_version_get(lli) != vio->vui_layout_gen ||
OBD_FAIL_CHECK_RESET(OBD_FAIL_LLITE_LOST_LAYOUT, 0)) {
io->ci_need_restart = 1; io->ci_need_restart = 1;
/* this will return application a short read/write */ /* this will cause a short read/write */
io->ci_continue = 0; io->ci_continue = 0;
rc = false; rc = false;
} }
...@@ -924,6 +925,20 @@ static int vvp_io_write_start(const struct lu_env *env, ...@@ -924,6 +925,20 @@ static int vvp_io_write_start(const struct lu_env *env,
CDEBUG(D_VFSTRACE, "write: [%lli, %lli)\n", pos, pos + (long long)cnt); CDEBUG(D_VFSTRACE, "write: [%lli, %lli)\n", pos, pos + (long long)cnt);
/*
* The maximum Lustre file size is variable, based on the OST maximum
* object size and number of stripes. This needs another check in
* addition to the VFS checks earlier.
*/
if (pos + cnt > ll_file_maxbytes(inode)) {
CDEBUG(D_INODE,
"%s: file " DFID " offset %llu > maxbytes %llu\n",
ll_get_fsname(inode->i_sb, NULL, 0),
PFID(ll_inode2fid(inode)), pos + cnt,
ll_file_maxbytes(inode));
return -EFBIG;
}
if (!vio->vui_iter) { if (!vio->vui_iter) {
/* from a temp io in ll_cl_init(). */ /* from a temp io in ll_cl_init(). */
result = 0; result = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment