Lines Matching refs:req2
179 struct vmmdev_guest_info2 *req2 = NULL; in vbg_report_guest_info() local
184 req2 = vbg_req_alloc(sizeof(*req2), VMMDEVREQ_REPORT_GUEST_INFO2, in vbg_report_guest_info()
186 if (!req1 || !req2) in vbg_report_guest_info()
195 req2->additions_major = VBG_VERSION_MAJOR; in vbg_report_guest_info()
196 req2->additions_minor = VBG_VERSION_MINOR; in vbg_report_guest_info()
197 req2->additions_build = VBG_VERSION_BUILD; in vbg_report_guest_info()
198 req2->additions_revision = VBG_SVN_REV; in vbg_report_guest_info()
199 req2->additions_features = in vbg_report_guest_info()
201 strlcpy(req2->name, VBG_VERSION_STRING, in vbg_report_guest_info()
202 sizeof(req2->name)); in vbg_report_guest_info()
212 rc = vbg_req_perform(gdev, req2); in vbg_report_guest_info()
218 rc = vbg_req_perform(gdev, req2); in vbg_report_guest_info()
226 vbg_req_free(req2, sizeof(*req2)); in vbg_report_guest_info()