Lines Matching refs:newinfo
98 disk_conditioner_info newinfo = {0};
104 err = fsctl(mount_path, DISK_CONDITIONER_IOC_GET, &newinfo, 0);
110 T_ASSERT_GT(newinfo.ioqueue_depth, 0u, "ioqueue_depth is the value from the mount");
111 T_ASSERT_GT(newinfo.maxreadcnt, 0u, "maxreadcnt is value from the mount");
112 T_ASSERT_GT(newinfo.maxwritecnt, 0u, "maxwritecnt is value from the mount");
113 T_ASSERT_GT(newinfo.segreadcnt, 0u, "segreadcnt is value from the mount");
114 T_ASSERT_GT(newinfo.segwritecnt, 0u, "segwritecnt is value from the mount");
115 T_ASSERT_LT(newinfo.ioqueue_depth, UINT32_MAX, "ioqueue_depth is the value from the mount");
116 T_ASSERT_LT(newinfo.maxreadcnt, UINT32_MAX, "maxreadcnt is value from the mount");
117 T_ASSERT_LT(newinfo.maxwritecnt, UINT32_MAX, "maxwritecnt is value from the mount");
118 T_ASSERT_LT(newinfo.segreadcnt, UINT32_MAX, "segreadcnt is value from the mount");
119 T_ASSERT_LT(newinfo.segwritecnt, UINT32_MAX, "segwritecnt is value from the mount");