blob: 9a5dce3aa10ab2bfe2aa884af4974517ebf9f5c0 [file] [log] [blame]
Zhi Wang0ad35fe2016-06-16 08:07:00 -04001/*
2 * Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
Zhi Wang12d14cc2016-08-30 11:06:17 +080022 *
23 * Authors:
24 * Kevin Tian <kevin.tian@intel.com>
25 * Eddie Dong <eddie.dong@intel.com>
26 *
27 * Contributors:
28 * Niu Bing <bing.niu@intel.com>
29 * Zhi Wang <zhi.a.wang@intel.com>
30 *
Zhi Wang0ad35fe2016-06-16 08:07:00 -040031 */
32
33#include <linux/types.h>
34#include <xen/xen.h>
Zhi Wang04d348a2016-04-25 18:28:56 -040035#include <linux/kthread.h>
Zhi Wang0ad35fe2016-06-16 08:07:00 -040036
37#include "i915_drv.h"
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +080038#include "gvt.h"
fred gaoc5d71cb2017-09-28 11:03:02 +080039#include <linux/vfio.h>
40#include <linux/mdev.h>
Zhi Wang0ad35fe2016-06-16 08:07:00 -040041
42struct intel_gvt_host intel_gvt_host;
43
44static const char * const supported_hypervisors[] = {
45 [INTEL_GVT_HYPERVISOR_XEN] = "XEN",
46 [INTEL_GVT_HYPERVISOR_KVM] = "KVM",
47};
48
fred gaoc5d71cb2017-09-28 11:03:02 +080049static struct intel_vgpu_type *intel_gvt_find_vgpu_type(struct intel_gvt *gvt,
50 const char *name)
51{
52 int i;
53 struct intel_vgpu_type *t;
54 const char *driver_name = dev_driver_string(
55 &gvt->dev_priv->drm.pdev->dev);
56
57 for (i = 0; i < gvt->num_types; i++) {
58 t = &gvt->types[i];
59 if (!strncmp(t->name, name + strlen(driver_name) + 1,
60 sizeof(t->name)))
61 return t;
62 }
63
64 return NULL;
65}
66
67static ssize_t available_instances_show(struct kobject *kobj,
68 struct device *dev, char *buf)
69{
70 struct intel_vgpu_type *type;
71 unsigned int num = 0;
72 void *gvt = kdev_to_i915(dev)->gvt;
73
74 type = intel_gvt_find_vgpu_type(gvt, kobject_name(kobj));
75 if (!type)
76 num = 0;
77 else
78 num = type->avail_instance;
79
80 return sprintf(buf, "%u\n", num);
81}
82
83static ssize_t device_api_show(struct kobject *kobj, struct device *dev,
84 char *buf)
85{
86 return sprintf(buf, "%s\n", VFIO_DEVICE_API_PCI_STRING);
87}
88
89static ssize_t description_show(struct kobject *kobj, struct device *dev,
90 char *buf)
91{
92 struct intel_vgpu_type *type;
93 void *gvt = kdev_to_i915(dev)->gvt;
94
95 type = intel_gvt_find_vgpu_type(gvt, kobject_name(kobj));
96 if (!type)
97 return 0;
98
99 return sprintf(buf, "low_gm_size: %dMB\nhigh_gm_size: %dMB\n"
100 "fence: %d\nresolution: %s\n"
101 "weight: %d\n",
102 BYTES_TO_MB(type->low_gm_size),
103 BYTES_TO_MB(type->high_gm_size),
104 type->fence, vgpu_edid_str(type->resolution),
105 type->weight);
106}
107
108static MDEV_TYPE_ATTR_RO(available_instances);
109static MDEV_TYPE_ATTR_RO(device_api);
110static MDEV_TYPE_ATTR_RO(description);
111
112static struct attribute *gvt_type_attrs[] = {
113 &mdev_type_attr_available_instances.attr,
114 &mdev_type_attr_device_api.attr,
115 &mdev_type_attr_description.attr,
116 NULL,
117};
118
119static struct attribute_group *gvt_vgpu_type_groups[] = {
120 [0 ... NR_MAX_INTEL_VGPU_TYPES - 1] = NULL,
121};
122
123static bool intel_get_gvt_attrs(struct attribute ***type_attrs,
124 struct attribute_group ***intel_vgpu_type_groups)
125{
126 *type_attrs = gvt_type_attrs;
127 *intel_vgpu_type_groups = gvt_vgpu_type_groups;
128 return true;
129}
130
131static bool intel_gvt_init_vgpu_type_groups(struct intel_gvt *gvt)
132{
133 int i, j;
134 struct intel_vgpu_type *type;
135 struct attribute_group *group;
136
137 for (i = 0; i < gvt->num_types; i++) {
138 type = &gvt->types[i];
139
140 group = kzalloc(sizeof(struct attribute_group), GFP_KERNEL);
141 if (WARN_ON(!group))
142 goto unwind;
143
144 group->name = type->name;
145 group->attrs = gvt_type_attrs;
146 gvt_vgpu_type_groups[i] = group;
147 }
148
149 return true;
150
151unwind:
152 for (j = 0; j < i; j++) {
153 group = gvt_vgpu_type_groups[j];
154 kfree(group);
155 }
156
157 return false;
158}
159
160static void intel_gvt_cleanup_vgpu_type_groups(struct intel_gvt *gvt)
161{
162 int i;
163 struct attribute_group *group;
164
165 for (i = 0; i < gvt->num_types; i++) {
166 group = gvt_vgpu_type_groups[i];
167 gvt_vgpu_type_groups[i] = NULL;
168 kfree(group);
169 }
170}
171
Jike Song9ec1e662016-11-03 18:38:35 +0800172static const struct intel_gvt_ops intel_gvt_ops = {
Zhi Wang4d60c5fd2016-07-20 01:14:38 -0400173 .emulate_cfg_read = intel_vgpu_emulate_cfg_read,
174 .emulate_cfg_write = intel_vgpu_emulate_cfg_write,
Zhi Wange39c5ad2016-09-02 13:33:29 +0800175 .emulate_mmio_read = intel_vgpu_emulate_mmio_read,
176 .emulate_mmio_write = intel_vgpu_emulate_mmio_write,
Jike Song9ec1e662016-11-03 18:38:35 +0800177 .vgpu_create = intel_gvt_create_vgpu,
178 .vgpu_destroy = intel_gvt_destroy_vgpu,
179 .vgpu_reset = intel_gvt_reset_vgpu,
Zhi Wangb79c52a2017-03-30 01:48:39 +0800180 .vgpu_activate = intel_gvt_activate_vgpu,
181 .vgpu_deactivate = intel_gvt_deactivate_vgpu,
fred gaoc5d71cb2017-09-28 11:03:02 +0800182 .gvt_find_vgpu_type = intel_gvt_find_vgpu_type,
183 .get_gvt_attrs = intel_get_gvt_attrs,
Tina Zhange546e282017-11-23 16:26:36 +0800184 .vgpu_query_plane = intel_vgpu_query_plane,
185 .vgpu_get_dmabuf = intel_vgpu_get_dmabuf,
Zhi Wang4d60c5fd2016-07-20 01:14:38 -0400186};
187
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400188/**
189 * intel_gvt_init_host - Load MPT modules and detect if we're running in host
190 * @gvt: intel gvt device
191 *
192 * This function is called at the driver loading stage. If failed to find a
193 * loadable MPT module or detect currently we're running in a VM, then GVT-g
194 * will be disabled
195 *
196 * Returns:
197 * Zero on success, negative error code if failed.
198 *
199 */
200int intel_gvt_init_host(void)
201{
202 if (intel_gvt_host.initialized)
203 return 0;
204
205 /* Xen DOM U */
206 if (xen_domain() && !xen_initial_domain())
207 return -ENODEV;
208
209 /* Try to load MPT modules for hypervisors */
210 if (xen_initial_domain()) {
211 /* In Xen dom0 */
212 intel_gvt_host.mpt = try_then_request_module(
213 symbol_get(xengt_mpt), "xengt");
214 intel_gvt_host.hypervisor_type = INTEL_GVT_HYPERVISOR_XEN;
215 } else {
Jike Songf30437c2016-11-09 20:30:59 +0800216#if IS_ENABLED(CONFIG_DRM_I915_GVT_KVMGT)
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400217 /* not in Xen. Try KVMGT */
218 intel_gvt_host.mpt = try_then_request_module(
Jike Songf30437c2016-11-09 20:30:59 +0800219 symbol_get(kvmgt_mpt), "kvmgt");
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400220 intel_gvt_host.hypervisor_type = INTEL_GVT_HYPERVISOR_KVM;
Jike Songf30437c2016-11-09 20:30:59 +0800221#endif
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400222 }
223
224 /* Fail to load MPT modules - bail out */
225 if (!intel_gvt_host.mpt)
226 return -EINVAL;
227
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400228 gvt_dbg_core("Running with hypervisor %s in host mode\n",
229 supported_hypervisors[intel_gvt_host.hypervisor_type]);
230
231 intel_gvt_host.initialized = true;
232 return 0;
233}
234
235static void init_device_info(struct intel_gvt *gvt)
236{
Zhi Wang12d14cc2016-08-30 11:06:17 +0800237 struct intel_gvt_device_info *info = &gvt->device_info;
Du, Changbin49129202016-10-24 15:58:44 +0800238 struct pci_dev *pdev = gvt->dev_priv->drm.pdev;
Zhi Wang12d14cc2016-08-30 11:06:17 +0800239
Xu Hane3476c02017-03-29 10:13:59 +0800240 if (IS_BROADWELL(gvt->dev_priv) || IS_SKYLAKE(gvt->dev_priv)
241 || IS_KABYLAKE(gvt->dev_priv)) {
Zhi Wang12d14cc2016-08-30 11:06:17 +0800242 info->max_support_vgpus = 8;
Changbin Du02d578e2017-08-23 14:08:10 +0800243 info->cfg_space_size = PCI_CFG_SPACE_EXP_SIZE;
Zhi Wangc8fe6a682015-09-17 09:22:08 +0800244 info->mmio_size = 2 * 1024 * 1024;
Zhi Wang579cea52016-06-30 12:45:34 -0400245 info->mmio_bar = 0;
Zhi Wang2707e442016-03-28 23:23:16 +0800246 info->gtt_start_offset = 8 * 1024 * 1024;
247 info->gtt_entry_size = 8;
248 info->gtt_entry_size_shift = 3;
Zhi Wangbe1da702016-05-03 18:26:57 -0400249 info->gmadr_bytes_in_cmd = 8;
250 info->max_surface_size = 36 * 1024 * 1024;
Zhi Wang12d14cc2016-08-30 11:06:17 +0800251 }
Du, Changbin49129202016-10-24 15:58:44 +0800252 info->msi_cap_offset = pdev->msi_cap;
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400253}
254
Zhi Wang04d348a2016-04-25 18:28:56 -0400255static int gvt_service_thread(void *data)
256{
257 struct intel_gvt *gvt = (struct intel_gvt *)data;
258 int ret;
259
260 gvt_dbg_core("service thread start\n");
261
262 while (!kthread_should_stop()) {
263 ret = wait_event_interruptible(gvt->service_thread_wq,
264 kthread_should_stop() || gvt->service_request);
265
266 if (kthread_should_stop())
267 break;
268
269 if (WARN_ONCE(ret, "service thread is waken up by signal.\n"))
270 continue;
271
272 if (test_and_clear_bit(INTEL_GVT_REQUEST_EMULATE_VBLANK,
273 (void *)&gvt->service_request)) {
274 mutex_lock(&gvt->lock);
275 intel_gvt_emulate_vblank(gvt);
276 mutex_unlock(&gvt->lock);
277 }
Ping Gao91d01012017-03-30 00:36:34 +0800278
Ping Gaoc713cb22017-05-24 20:30:17 +0800279 if (test_bit(INTEL_GVT_REQUEST_SCHED,
280 (void *)&gvt->service_request) ||
281 test_bit(INTEL_GVT_REQUEST_EVENT_SCHED,
Ping Gao91d01012017-03-30 00:36:34 +0800282 (void *)&gvt->service_request)) {
283 intel_gvt_schedule(gvt);
284 }
Zhi Wang04d348a2016-04-25 18:28:56 -0400285 }
286
287 return 0;
288}
289
290static void clean_service_thread(struct intel_gvt *gvt)
291{
292 kthread_stop(gvt->service_thread);
293}
294
295static int init_service_thread(struct intel_gvt *gvt)
296{
297 init_waitqueue_head(&gvt->service_thread_wq);
298
299 gvt->service_thread = kthread_run(gvt_service_thread,
300 gvt, "gvt_service_thread");
301 if (IS_ERR(gvt->service_thread)) {
302 gvt_err("fail to start service thread.\n");
303 return PTR_ERR(gvt->service_thread);
304 }
305 return 0;
306}
307
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400308/**
309 * intel_gvt_clean_device - clean a GVT device
310 * @gvt: intel gvt device
311 *
312 * This function is called at the driver unloading stage, to free the
313 * resources owned by a GVT device.
314 *
315 */
316void intel_gvt_clean_device(struct drm_i915_private *dev_priv)
317{
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800318 struct intel_gvt *gvt = to_gvt(dev_priv);
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400319
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800320 if (WARN_ON(!gvt))
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400321 return;
322
Changbin Dubc7b0be2017-09-26 16:19:13 +0800323 intel_gvt_debugfs_clean(gvt);
Zhi Wang04d348a2016-04-25 18:28:56 -0400324 clean_service_thread(gvt);
Zhi Wangbe1da702016-05-03 18:26:57 -0400325 intel_gvt_clean_cmd_parser(gvt);
Zhi Wang4b639602016-05-01 17:09:58 -0400326 intel_gvt_clean_sched_policy(gvt);
Zhi Wange4734052016-05-01 07:42:16 -0400327 intel_gvt_clean_workload_scheduler(gvt);
Zhi Wang2707e442016-03-28 23:23:16 +0800328 intel_gvt_clean_gtt(gvt);
Zhi Wangc8fe6a682015-09-17 09:22:08 +0800329 intel_gvt_clean_irq(gvt);
Zhi Wang12d14cc2016-08-30 11:06:17 +0800330 intel_gvt_clean_mmio_info(gvt);
Zhi Wang579cea52016-06-30 12:45:34 -0400331 intel_gvt_free_firmware(gvt);
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400332
Jike Song40df6ea2016-11-03 18:38:33 +0800333 intel_gvt_hypervisor_host_exit(&dev_priv->drm.pdev->dev, gvt);
fred gaoc5d71cb2017-09-28 11:03:02 +0800334 intel_gvt_cleanup_vgpu_type_groups(gvt);
Zhenyu Wang1f31c822016-11-03 18:38:31 +0800335 intel_gvt_clean_vgpu_types(gvt);
336
Jike Song59c05732017-01-06 15:16:21 +0800337 idr_destroy(&gvt->vgpu_idr);
338
Ping Gaoafe04fb2017-03-30 00:36:39 +0800339 intel_gvt_destroy_idle_vgpu(gvt->idle_vgpu);
340
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800341 kfree(dev_priv->gvt);
342 dev_priv->gvt = NULL;
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400343}
344
345/**
346 * intel_gvt_init_device - initialize a GVT device
347 * @dev_priv: drm i915 private data
348 *
349 * This function is called at the initialization stage, to initialize
350 * necessary GVT components.
351 *
352 * Returns:
353 * Zero on success, negative error code if failed.
354 *
355 */
356int intel_gvt_init_device(struct drm_i915_private *dev_priv)
357{
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800358 struct intel_gvt *gvt;
Ping Gaoafe04fb2017-03-30 00:36:39 +0800359 struct intel_vgpu *vgpu;
Zhi Wang12d14cc2016-08-30 11:06:17 +0800360 int ret;
361
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400362 /*
363 * Cannot initialize GVT device without intel_gvt_host gets
364 * initialized first.
365 */
366 if (WARN_ON(!intel_gvt_host.initialized))
367 return -EINVAL;
368
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800369 if (WARN_ON(dev_priv->gvt))
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400370 return -EEXIST;
371
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800372 gvt = kzalloc(sizeof(struct intel_gvt), GFP_KERNEL);
373 if (!gvt)
374 return -ENOMEM;
375
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400376 gvt_dbg_core("init gvt device\n");
377
Jike Song59c05732017-01-06 15:16:21 +0800378 idr_init(&gvt->vgpu_idr);
Changbin Du0e86cc92017-05-04 10:52:38 +0800379 spin_lock_init(&gvt->scheduler.mmio_context_lock);
Zhi Wang28a60de2016-09-02 12:41:29 +0800380 mutex_init(&gvt->lock);
381 gvt->dev_priv = dev_priv;
382
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400383 init_device_info(gvt);
Zhi Wang12d14cc2016-08-30 11:06:17 +0800384
385 ret = intel_gvt_setup_mmio_info(gvt);
386 if (ret)
Jike Song59c05732017-01-06 15:16:21 +0800387 goto out_clean_idr;
Zhi Wang12d14cc2016-08-30 11:06:17 +0800388
Zhi Wang579cea52016-06-30 12:45:34 -0400389 ret = intel_gvt_load_firmware(gvt);
390 if (ret)
391 goto out_clean_mmio_info;
392
Zhi Wangc8fe6a682015-09-17 09:22:08 +0800393 ret = intel_gvt_init_irq(gvt);
394 if (ret)
395 goto out_free_firmware;
396
Zhi Wang2707e442016-03-28 23:23:16 +0800397 ret = intel_gvt_init_gtt(gvt);
398 if (ret)
399 goto out_clean_irq;
400
Zhi Wange4734052016-05-01 07:42:16 -0400401 ret = intel_gvt_init_workload_scheduler(gvt);
Zhi Wang04d348a2016-04-25 18:28:56 -0400402 if (ret)
Xiong Zhangb2d6ef72017-11-08 00:45:21 +0800403 goto out_clean_gtt;
Zhi Wang04d348a2016-04-25 18:28:56 -0400404
Zhi Wang4b639602016-05-01 17:09:58 -0400405 ret = intel_gvt_init_sched_policy(gvt);
Zhi Wange4734052016-05-01 07:42:16 -0400406 if (ret)
407 goto out_clean_workload_scheduler;
408
Zhi Wangbe1da702016-05-03 18:26:57 -0400409 ret = intel_gvt_init_cmd_parser(gvt);
Zhi Wang4b639602016-05-01 17:09:58 -0400410 if (ret)
411 goto out_clean_sched_policy;
412
Zhi Wangbe1da702016-05-03 18:26:57 -0400413 ret = init_service_thread(gvt);
414 if (ret)
415 goto out_clean_cmd_parser;
416
Zhenyu Wang1f31c822016-11-03 18:38:31 +0800417 ret = intel_gvt_init_vgpu_types(gvt);
418 if (ret)
419 goto out_clean_thread;
420
fred gaoc5d71cb2017-09-28 11:03:02 +0800421 ret = intel_gvt_init_vgpu_type_groups(gvt);
422 if (ret == false) {
423 gvt_err("failed to init vgpu type groups: %d\n", ret);
424 goto out_clean_types;
425 }
426
Jike Song40df6ea2016-11-03 18:38:33 +0800427 ret = intel_gvt_hypervisor_host_init(&dev_priv->drm.pdev->dev, gvt,
Jike Song9ec1e662016-11-03 18:38:35 +0800428 &intel_gvt_ops);
Jike Song40df6ea2016-11-03 18:38:33 +0800429 if (ret) {
430 gvt_err("failed to register gvt-g host device: %d\n", ret);
431 goto out_clean_types;
432 }
Zhenyu Wang1f31c822016-11-03 18:38:31 +0800433
Ping Gaoafe04fb2017-03-30 00:36:39 +0800434 vgpu = intel_gvt_create_idle_vgpu(gvt);
435 if (IS_ERR(vgpu)) {
436 ret = PTR_ERR(vgpu);
437 gvt_err("failed to create idle vgpu\n");
438 goto out_clean_types;
439 }
440 gvt->idle_vgpu = vgpu;
441
Changbin Dubc7b0be2017-09-26 16:19:13 +0800442 ret = intel_gvt_debugfs_init(gvt);
443 if (ret)
444 gvt_err("debugfs registeration failed, go on.\n");
445
Zhenyu Wang1f31c822016-11-03 18:38:31 +0800446 gvt_dbg_core("gvt device initialization is done\n");
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800447 dev_priv->gvt = gvt;
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400448 return 0;
Zhi Wang579cea52016-06-30 12:45:34 -0400449
Jike Song40df6ea2016-11-03 18:38:33 +0800450out_clean_types:
451 intel_gvt_clean_vgpu_types(gvt);
Zhenyu Wang1f31c822016-11-03 18:38:31 +0800452out_clean_thread:
453 clean_service_thread(gvt);
Zhi Wangbe1da702016-05-03 18:26:57 -0400454out_clean_cmd_parser:
455 intel_gvt_clean_cmd_parser(gvt);
Zhi Wang4b639602016-05-01 17:09:58 -0400456out_clean_sched_policy:
457 intel_gvt_clean_sched_policy(gvt);
Zhi Wange4734052016-05-01 07:42:16 -0400458out_clean_workload_scheduler:
459 intel_gvt_clean_workload_scheduler(gvt);
Zhi Wang4d60c5fd2016-07-20 01:14:38 -0400460out_clean_gtt:
461 intel_gvt_clean_gtt(gvt);
Zhi Wang2707e442016-03-28 23:23:16 +0800462out_clean_irq:
463 intel_gvt_clean_irq(gvt);
Zhi Wangc8fe6a682015-09-17 09:22:08 +0800464out_free_firmware:
465 intel_gvt_free_firmware(gvt);
Zhi Wang579cea52016-06-30 12:45:34 -0400466out_clean_mmio_info:
467 intel_gvt_clean_mmio_info(gvt);
Jike Song59c05732017-01-06 15:16:21 +0800468out_clean_idr:
469 idr_destroy(&gvt->vgpu_idr);
Zhenyu Wangfeddf6e2016-10-20 17:15:03 +0800470 kfree(gvt);
Zhi Wang579cea52016-06-30 12:45:34 -0400471 return ret;
Zhi Wang0ad35fe2016-06-16 08:07:00 -0400472}