Commit 3bed8888 authored by Geliang Tang's avatar Geliang Tang Committed by Paolo Bonzini

KVM: set no_llseek in stat_fops_per_vm

In vm_stat_get_per_vm_fops and vcpu_stat_get_per_vm_fops, since we
use nonseekable_open() to open, we should use no_llseek() to seek,
not generic_file_llseek().
Signed-off-by: default avatarGeliang Tang <geliangtang@gmail.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 2868b251
...@@ -3715,7 +3715,7 @@ static const struct file_operations vm_stat_get_per_vm_fops = { ...@@ -3715,7 +3715,7 @@ static const struct file_operations vm_stat_get_per_vm_fops = {
.release = kvm_debugfs_release, .release = kvm_debugfs_release,
.read = simple_attr_read, .read = simple_attr_read,
.write = simple_attr_write, .write = simple_attr_write,
.llseek = generic_file_llseek, .llseek = no_llseek,
}; };
static int vcpu_stat_get_per_vm(void *data, u64 *val) static int vcpu_stat_get_per_vm(void *data, u64 *val)
...@@ -3760,7 +3760,7 @@ static const struct file_operations vcpu_stat_get_per_vm_fops = { ...@@ -3760,7 +3760,7 @@ static const struct file_operations vcpu_stat_get_per_vm_fops = {
.release = kvm_debugfs_release, .release = kvm_debugfs_release,
.read = simple_attr_read, .read = simple_attr_read,
.write = simple_attr_write, .write = simple_attr_write,
.llseek = generic_file_llseek, .llseek = no_llseek,
}; };
static const struct file_operations *stat_fops_per_vm[] = { static const struct file_operations *stat_fops_per_vm[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment