forked from Minki/linux
vfio: platform: remove needless stack usage
request_module already takes format strings, so no need to duplicate the effort. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
This commit is contained in:
parent
7d10f4e079
commit
7200be7c81
@ -51,13 +51,10 @@ static vfio_platform_reset_fn_t vfio_platform_lookup_reset(const char *compat,
|
|||||||
|
|
||||||
static void vfio_platform_get_reset(struct vfio_platform_device *vdev)
|
static void vfio_platform_get_reset(struct vfio_platform_device *vdev)
|
||||||
{
|
{
|
||||||
char modname[256];
|
|
||||||
|
|
||||||
vdev->reset = vfio_platform_lookup_reset(vdev->compat,
|
vdev->reset = vfio_platform_lookup_reset(vdev->compat,
|
||||||
&vdev->reset_module);
|
&vdev->reset_module);
|
||||||
if (!vdev->reset) {
|
if (!vdev->reset) {
|
||||||
snprintf(modname, 256, "vfio-reset:%s", vdev->compat);
|
request_module("vfio-reset:%s", vdev->compat);
|
||||||
request_module(modname);
|
|
||||||
vdev->reset = vfio_platform_lookup_reset(vdev->compat,
|
vdev->reset = vfio_platform_lookup_reset(vdev->compat,
|
||||||
&vdev->reset_module);
|
&vdev->reset_module);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user