Lines Matching refs:req2
178 struct vmmdev_guest_info2 *req2 = NULL; in vbg_report_guest_info() local
183 req2 = vbg_req_alloc(sizeof(*req2), VMMDEVREQ_REPORT_GUEST_INFO2, in vbg_report_guest_info()
185 if (!req1 || !req2) in vbg_report_guest_info()
194 req2->additions_major = VBG_VERSION_MAJOR; in vbg_report_guest_info()
195 req2->additions_minor = VBG_VERSION_MINOR; in vbg_report_guest_info()
196 req2->additions_build = VBG_VERSION_BUILD; in vbg_report_guest_info()
197 req2->additions_revision = VBG_SVN_REV; in vbg_report_guest_info()
198 req2->additions_features = in vbg_report_guest_info()
200 strlcpy(req2->name, VBG_VERSION_STRING, in vbg_report_guest_info()
201 sizeof(req2->name)); in vbg_report_guest_info()
211 rc = vbg_req_perform(gdev, req2); in vbg_report_guest_info()
217 rc = vbg_req_perform(gdev, req2); in vbg_report_guest_info()
225 vbg_req_free(req2, sizeof(*req2)); in vbg_report_guest_info()