-
Notifications
You must be signed in to change notification settings - Fork 2
Initial pipeline support #1
base: master
Are you sure you want to change the base?
Conversation
|
Test stage Build on CentOS 7 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/1/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/1/display/redirect |
|
Test stage Build on CentOS 7 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/3/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/3/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/4/display/redirect |
|
Test stage Build on CentOS 7 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/4/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/5/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/6/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/8/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/11/display/redirect |
a832909 to
b829eab
Compare
daos-jenkins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style warning(s) for job http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/12/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules
src/ionss/ionss.c
Outdated
| base.fs_list[i].max_iov_write = projection->max_iov_write_size; | ||
| base.fs_list[i].htable_size = projection->inode_htable_size; | ||
| base.fs_list[i].timeout = projection->cnss_timeout; | ||
| base.fs_list[i].cnss_thread_count = projection->cnss_thread_count; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/lookup.c
Outdated
| * the parent anyway, so keep that one, but drop one in the call | ||
| * to ie_close(). | ||
| */ | ||
| IOF_TRACE_INFO(container_of(rlink, struct ioc_inode_entry, ie_htl), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/fsync.c
Outdated
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; | ||
| struct iof_gah_in *in; | ||
| crt_rpc_t *rpc = NULL; | ||
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ret = crt_context_set_timeout(fs_handle->ctx.crt_ctx, 5); | ||
| IOF_TRACE_DEBUG(fs_handle, "Setting timeout to %d", fs_info->timeout); | ||
|
|
||
| ret = crt_context_set_timeout(fs_handle->proj.crt_ctx, fs_info->timeout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ie->parent, | ||
| ie->name, | ||
| strlen(ie->name)); | ||
| rc = fuse_lowlevel_notify_inval_entry(fs_handle->session, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| IOF_TRACE_UP(handle, fs_handle, fs_handle->fh_pool->reg.name); | ||
| IOF_TRACE_UP(req, handle, "open_fuse_req"); | ||
| IOF_TRACE_UP(&handle->open_req, handle, "open_req"); | ||
| IOF_TRACE_LINK(handle->open_req.rpc, &handle->open_req, "open_file_rpc"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| { | ||
| struct iof_file_handle *handle = cb_info->cci_arg; | ||
| struct iof_open_out *out = crt_reply_get(cb_info->cci_rpc); | ||
| struct iof_file_handle *handle = container_of(request, struct iof_file_handle, open_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc.h
Outdated
| IOF_TRACE_DEBUG(req, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &gah_info, size); \ | ||
| IOF_TRACE_DEBUG(handle, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &(gah_info), sizeof(gah_info)); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/forget.c
Outdated
| if (rc != -DER_SUCCESS) { | ||
| IOF_TRACE_ERROR(fs_handle, "Invalid refcount %lu on %p", | ||
| nlookup, | ||
| container_of(rlink, struct ioc_inode_entry, ie_htl)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/write.c
Outdated
| IOF_TRACE_INFO(req, "Bad RPC reply %d", cb_info->cci_rc); | ||
| D_GOTO(hard_err, rc = EIO); | ||
| } | ||
| struct iof_wb *wb = container_of(request, struct iof_wb, wb_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/12/display/redirect |
|
Test stage Build on Ubuntu 18.04 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/12/display/redirect |
daos-jenkins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style warning(s) for job http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/13/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules
src/ionss/ionss.c
Outdated
| base.fs_list[i].max_iov_write = projection->max_iov_write_size; | ||
| base.fs_list[i].htable_size = projection->inode_htable_size; | ||
| base.fs_list[i].timeout = projection->cnss_timeout; | ||
| base.fs_list[i].cnss_thread_count = projection->cnss_thread_count; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/lookup.c
Outdated
| * the parent anyway, so keep that one, but drop one in the call | ||
| * to ie_close(). | ||
| */ | ||
| IOF_TRACE_INFO(container_of(rlink, struct ioc_inode_entry, ie_htl), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/fsync.c
Outdated
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; | ||
| struct iof_gah_in *in; | ||
| crt_rpc_t *rpc = NULL; | ||
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ret = crt_context_set_timeout(fs_handle->ctx.crt_ctx, 5); | ||
| IOF_TRACE_DEBUG(fs_handle, "Setting timeout to %d", fs_info->timeout); | ||
|
|
||
| ret = crt_context_set_timeout(fs_handle->proj.crt_ctx, fs_info->timeout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ie->parent, | ||
| ie->name, | ||
| strlen(ie->name)); | ||
| rc = fuse_lowlevel_notify_inval_entry(fs_handle->session, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| IOF_TRACE_UP(handle, fs_handle, fs_handle->fh_pool->reg.name); | ||
| IOF_TRACE_UP(req, handle, "open_fuse_req"); | ||
| IOF_TRACE_UP(&handle->open_req, handle, "open_req"); | ||
| IOF_TRACE_LINK(handle->open_req.rpc, &handle->open_req, "open_file_rpc"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| { | ||
| struct iof_file_handle *handle = cb_info->cci_arg; | ||
| struct iof_open_out *out = crt_reply_get(cb_info->cci_rpc); | ||
| struct iof_file_handle *handle = container_of(request, struct iof_file_handle, open_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc.h
Outdated
| IOF_TRACE_DEBUG(req, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &gah_info, size); \ | ||
| IOF_TRACE_DEBUG(handle, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &(gah_info), sizeof(gah_info)); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/forget.c
Outdated
| if (rc != -DER_SUCCESS) { | ||
| IOF_TRACE_ERROR(fs_handle, "Invalid refcount %lu on %p", | ||
| nlookup, | ||
| container_of(rlink, struct ioc_inode_entry, ie_htl)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/write.c
Outdated
| IOF_TRACE_INFO(req, "Bad RPC reply %d", cb_info->cci_rc); | ||
| D_GOTO(hard_err, rc = EIO); | ||
| } | ||
| struct iof_wb *wb = container_of(request, struct iof_wb, wb_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/13/display/redirect |
daos-jenkins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style warning(s) for job http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/15/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules
src/ionss/ionss.c
Outdated
| base.fs_list[i].max_iov_write = projection->max_iov_write_size; | ||
| base.fs_list[i].htable_size = projection->inode_htable_size; | ||
| base.fs_list[i].timeout = projection->cnss_timeout; | ||
| base.fs_list[i].cnss_thread_count = projection->cnss_thread_count; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/lookup.c
Outdated
| * the parent anyway, so keep that one, but drop one in the call | ||
| * to ie_close(). | ||
| */ | ||
| IOF_TRACE_INFO(container_of(rlink, struct ioc_inode_entry, ie_htl), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/fsync.c
Outdated
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; | ||
| struct iof_gah_in *in; | ||
| crt_rpc_t *rpc = NULL; | ||
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ret = crt_context_set_timeout(fs_handle->ctx.crt_ctx, 5); | ||
| IOF_TRACE_DEBUG(fs_handle, "Setting timeout to %d", fs_info->timeout); | ||
|
|
||
| ret = crt_context_set_timeout(fs_handle->proj.crt_ctx, fs_info->timeout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ie->parent, | ||
| ie->name, | ||
| strlen(ie->name)); | ||
| rc = fuse_lowlevel_notify_inval_entry(fs_handle->session, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| IOF_TRACE_UP(handle, fs_handle, fs_handle->fh_pool->reg.name); | ||
| IOF_TRACE_UP(req, handle, "open_fuse_req"); | ||
| IOF_TRACE_UP(&handle->open_req, handle, "open_req"); | ||
| IOF_TRACE_LINK(handle->open_req.rpc, &handle->open_req, "open_file_rpc"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| { | ||
| struct iof_file_handle *handle = cb_info->cci_arg; | ||
| struct iof_open_out *out = crt_reply_get(cb_info->cci_rpc); | ||
| struct iof_file_handle *handle = container_of(request, struct iof_file_handle, open_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc.h
Outdated
| IOF_TRACE_DEBUG(req, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &gah_info, size); \ | ||
| IOF_TRACE_DEBUG(handle, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &(gah_info), sizeof(gah_info)); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/forget.c
Outdated
| if (rc != -DER_SUCCESS) { | ||
| IOF_TRACE_ERROR(fs_handle, "Invalid refcount %lu on %p", | ||
| nlookup, | ||
| container_of(rlink, struct ioc_inode_entry, ie_htl)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/write.c
Outdated
| IOF_TRACE_INFO(req, "Bad RPC reply %d", cb_info->cci_rc); | ||
| D_GOTO(hard_err, rc = EIO); | ||
| } | ||
| struct iof_wb *wb = container_of(request, struct iof_wb, wb_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/15/display/redirect |
|
Test stage Build on CentOS 7 completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/15/display/redirect |
daos-jenkins
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style warning(s) for job http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/16/
Please review https://wiki.hpdd.intel.com/display/DC/Coding+Rules
src/ionss/ionss.c
Outdated
| base.fs_list[i].max_iov_write = projection->max_iov_write_size; | ||
| base.fs_list[i].htable_size = projection->inode_htable_size; | ||
| base.fs_list[i].timeout = projection->cnss_timeout; | ||
| base.fs_list[i].cnss_thread_count = projection->cnss_thread_count; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/lookup.c
Outdated
| * the parent anyway, so keep that one, but drop one in the call | ||
| * to ie_close(). | ||
| */ | ||
| IOF_TRACE_INFO(container_of(rlink, struct ioc_inode_entry, ie_htl), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/fsync.c
Outdated
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; | ||
| struct iof_gah_in *in; | ||
| crt_rpc_t *rpc = NULL; | ||
| struct iof_file_handle *handle = (struct iof_file_handle *)fi->fh; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ret = crt_context_set_timeout(fs_handle->ctx.crt_ctx, 5); | ||
| IOF_TRACE_DEBUG(fs_handle, "Setting timeout to %d", fs_info->timeout); | ||
|
|
||
| ret = crt_context_set_timeout(fs_handle->proj.crt_ctx, fs_info->timeout); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc_main.c
Outdated
| ie->parent, | ||
| ie->name, | ||
| strlen(ie->name)); | ||
| rc = fuse_lowlevel_notify_inval_entry(fs_handle->session, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| IOF_TRACE_UP(handle, fs_handle, fs_handle->fh_pool->reg.name); | ||
| IOF_TRACE_UP(req, handle, "open_fuse_req"); | ||
| IOF_TRACE_UP(&handle->open_req, handle, "open_req"); | ||
| IOF_TRACE_LINK(handle->open_req.rpc, &handle->open_req, "open_file_rpc"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/open.c
Outdated
| { | ||
| struct iof_file_handle *handle = cb_info->cci_arg; | ||
| struct iof_open_out *out = crt_reply_get(cb_info->cci_rpc); | ||
| struct iof_file_handle *handle = container_of(request, struct iof_file_handle, open_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ioc.h
Outdated
| IOF_TRACE_DEBUG(req, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &gah_info, size); \ | ||
| IOF_TRACE_DEBUG(handle, "Returning ioctl"); \ | ||
| __rc = fuse_reply_ioctl(req, 0, &(gah_info), sizeof(gah_info)); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/forget.c
Outdated
| if (rc != -DER_SUCCESS) { | ||
| IOF_TRACE_ERROR(fs_handle, "Invalid refcount %lu on %p", | ||
| nlookup, | ||
| container_of(rlink, struct ioc_inode_entry, ie_htl)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
src/ioc/ops/write.c
Outdated
| IOF_TRACE_INFO(req, "Bad RPC reply %d", cb_info->cci_rc); | ||
| D_GOTO(hard_err, rc = EIO); | ||
| } | ||
| struct iof_wb *wb = container_of(request, struct iof_wb, wb_req); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(style) line over 80 characters
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/91/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/91/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/91/display/redirect |
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/92/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/92/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/92/display/redirect |
Change-Id: I1437b7ee847c2a32d165796dea19e62040abfcca Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/93/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/93/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/93/display/redirect |
Change-Id: I8cefa450a37c39d594b82ea540c282dfe32dcbfa Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/94/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/94/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/94/display/redirect |
Change-Id: Ib5b024412d0f1a68ec09c07f5a562c5079727c88 Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/95/display/redirect |
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/96/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/96/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/96/display/redirect |
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/97/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/97/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/97/display/redirect |
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/98/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/98/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/98/display/redirect |
Change-Id: Ic1a91a8a164ad7d5499d6c410807f9557f8504e5 Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
|
Test stage checkpatch completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/99/display/redirect |
|
Test stage Two-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/99/display/redirect |
|
Test stage Five-node completed with status FAILURE. http://jenkins-3.wolf.hpdd.intel.com:8080/job/daos-stack-org/job/iof/job/PR-1/99/display/redirect |
Change-Id: Ia2b2b05176f306382928ae338eebe150e5edb4be
Signed-off-by: Brian J. Murrell brian.murrell@intel.com