diff mbox

[v4,4/4] fsdev: QMP interface for throttling

Message ID 1494405683-20877-5-git-send-email-pradeep.jagadeesh@huawei.com
State New
Headers show

Commit Message

Pradeep Jagadeesh May 10, 2017, 8:41 a.m. UTC
This patch enables qmp interfaces for the fsdev
devices. This provides two interfaces one 
for querying info of all the fsdev devices. The second one
to set the IO limits for the required fsdev device.

Signed-off-by: Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com>
---
 Makefile                    |  3 ++
 fsdev/qemu-fsdev-dummy.c    | 10 ++++++
 fsdev/qemu-fsdev-throttle.c | 75 ++++++++++++++++++++++++++++++++++++++++
 fsdev/qemu-fsdev-throttle.h | 12 +++++++
 fsdev/qemu-fsdev.c          | 37 ++++++++++++++++++++
 hmp-commands-info.hx        | 19 ++++++++++
 hmp-commands.hx             | 19 ++++++++++
 hmp.c                       | 67 ++++++++++++++++++++++++++++++++++++
 hmp.h                       |  4 +++
 qapi-schema.json            |  3 ++
 qapi/fsdev.json             | 84 +++++++++++++++++++++++++++++++++++++++++++++
 qmp.c                       | 15 ++++++++
 12 files changed, 348 insertions(+)
 create mode 100644 qapi/fsdev.json

Comments

Eric Blake May 10, 2017, 8 p.m. UTC | #1
On 05/10/2017 03:41 AM, Pradeep Jagadeesh wrote:
> This patch enables qmp interfaces for the fsdev
> devices. This provides two interfaces one 
> for querying info of all the fsdev devices. The second one
> to set the IO limits for the required fsdev device.
> 
> Signed-off-by: Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com>
> ---

> +++ b/qmp.c
> @@ -130,6 +130,21 @@ void qmp_cpu_add(int64_t id, Error **errp)
>      }
>  }
>  
> +#ifdef _WIN64
> +
> +void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
> +{
> +  return;
> +}
> +
> +IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
> +{
> +    abort();
> +}
> +
> +#endif

I think you're missing an addition to monitor.c
qmp_unregister_commands_hack() if you intend for this command to be
available only on non-windows platforms (and is your #ifdef the correct
name, or is this a Linux-only feature rather than a non-windows feature).
Pradeep Jagadeesh May 17, 2017, 2:53 p.m. UTC | #2
On 5/10/2017 10:00 PM, Eric Blake wrote:
> On 05/10/2017 03:41 AM, Pradeep Jagadeesh wrote:
>> This patch enables qmp interfaces for the fsdev
>> devices. This provides two interfaces one
>> for querying info of all the fsdev devices. The second one
>> to set the IO limits for the required fsdev device.
>>
>> Signed-off-by: Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com>
>> ---
>
>> +++ b/qmp.c
>> @@ -130,6 +130,21 @@ void qmp_cpu_add(int64_t id, Error **errp)
>>      }
>>  }
>>
>> +#ifdef _WIN64
>> +
>> +void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
>> +{
>> +  return;
>> +}
>> +
>> +IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
>> +{
>> +    abort();
>> +}
>> +
>> +#endif
>
> I think you're missing an addition to monitor.c
> qmp_unregister_commands_hack() if you intend for this command to be
> available only on non-windows platforms (and is your #ifdef the correct
> name, or is this a Linux-only feature rather than a non-windows feature).
I had to add this one here because, I was getting some error when I 
cross compile for Windows. But I do not have any idea about, do I need 
to add in monitor.c or not.

Regards,
Pradeep
>
Eric Blake May 17, 2017, 3:28 p.m. UTC | #3
On 05/17/2017 09:53 AM, Pradeep Jagadeesh wrote:

>>> +#ifdef _WIN64
>>> +
>>> +void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
>>> +{
>>> +  return;
>>> +}
>>> +
>>> +IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
>>> +{
>>> +    abort();
>>> +}
>>> +
>>> +#endif
>>
>> I think you're missing an addition to monitor.c
>> qmp_unregister_commands_hack() if you intend for this command to be
>> available only on non-windows platforms (and is your #ifdef the correct
>> name, or is this a Linux-only feature rather than a non-windows feature).
> I had to add this one here because, I was getting some error when I
> cross compile for Windows. But I do not have any idea about, do I need
> to add in monitor.c or not.

First point: is fsdev a Linux-only feature, or can it be compiled on
BSD?  If it is Linux-only, then compiling a stub for Windows will still
leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
is nice, but not the only platform to worry about.

Second point: if fsdev is indeed a platform-specific feature, then we
don't want to advertise the QMP commands that are useless when running
on a platform that doesn't support it. Anywhere you have to add a stub
for compilation means you ALSO need to patch monitor.c to unregister the
command from being advertised as a valid QMP command.  (If you used
#ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
declare the stub, then the monitor.c needs an #ifndef section within
qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)
Greg Kurz May 17, 2017, 4:29 p.m. UTC | #4
On Wed, 17 May 2017 10:28:33 -0500
Eric Blake <eblake@redhat.com> wrote:

> On 05/17/2017 09:53 AM, Pradeep Jagadeesh wrote:
> 
> >>> +#ifdef _WIN64
> >>> +
> >>> +void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
> >>> +{
> >>> +  return;
> >>> +}
> >>> +
> >>> +IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
> >>> +{
> >>> +    abort();
> >>> +}
> >>> +
> >>> +#endif  
> >>
> >> I think you're missing an addition to monitor.c
> >> qmp_unregister_commands_hack() if you intend for this command to be
> >> available only on non-windows platforms (and is your #ifdef the correct
> >> name, or is this a Linux-only feature rather than a non-windows feature).  
> > I had to add this one here because, I was getting some error when I
> > cross compile for Windows. But I do not have any idea about, do I need
> > to add in monitor.c or not.  
> 
> First point: is fsdev a Linux-only feature, or can it be compiled on
> BSD?  If it is Linux-only, then compiling a stub for Windows will still
> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
> is nice, but not the only platform to worry about.
> 

fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
feature for the moment. There was a tentative to support it on Windows hosts
two years ago but it stayed at the RFC stage.

But even on Linux hosts, the current fsdev implementation also depends on
the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
file to put stubs so that we don't pull all the code for such targets.

Maybe this could be reused for the above stubs as well ?

> Second point: if fsdev is indeed a platform-specific feature, then we
> don't want to advertise the QMP commands that are useless when running
> on a platform that doesn't support it. Anywhere you have to add a stub
> for compilation means you ALSO need to patch monitor.c to unregister the
> command from being advertised as a valid QMP command.  (If you used
> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
> declare the stub, then the monitor.c needs an #ifndef section within
> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)
>
Eric Blake May 17, 2017, 5:09 p.m. UTC | #5
On 05/17/2017 11:29 AM, Greg Kurz wrote:

>>
>> First point: is fsdev a Linux-only feature, or can it be compiled on
>> BSD?  If it is Linux-only, then compiling a stub for Windows will still
>> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
>> is nice, but not the only platform to worry about.
>>
> 
> fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
> feature for the moment. There was a tentative to support it on Windows hosts
> two years ago but it stayed at the RFC stage.
> 
> But even on Linux hosts, the current fsdev implementation also depends on
> the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
> file to put stubs so that we don't pull all the code for such targets.
> 
> Maybe this could be reused for the above stubs as well ?

That helps.  The stub should live in qemu-fsdev-dummy.c (where it
shouldn't need any #ifdef, because that file is only compiled when the
condition is false), and...

> 
>> Second point: if fsdev is indeed a platform-specific feature, then we
>> don't want to advertise the QMP commands that are useless when running
>> on a platform that doesn't support it. Anywhere you have to add a stub
>> for compilation means you ALSO need to patch monitor.c to unregister the
>> command from being advertised as a valid QMP command.  (If you used
>> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
>> declare the stub, then the monitor.c needs an #ifndef section within
>> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)

monitor.c should wrap the unregister under #ifndef CONFIG_VIRTFS (rather
than a particular platform name).
Pradeep Jagadeesh May 18, 2017, 1:30 p.m. UTC | #6
On 5/17/2017 7:09 PM, Eric Blake wrote:
> On 05/17/2017 11:29 AM, Greg Kurz wrote:
>
>>>
>>> First point: is fsdev a Linux-only feature, or can it be compiled on
>>> BSD?  If it is Linux-only, then compiling a stub for Windows will still
>>> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
>>> is nice, but not the only platform to worry about.
>>>
>>
>> fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
>> feature for the moment. There was a tentative to support it on Windows hosts
>> two years ago but it stayed at the RFC stage.
>>
>> But even on Linux hosts, the current fsdev implementation also depends on
>> the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
>> file to put stubs so that we don't pull all the code for such targets.
>>
>> Maybe this could be reused for the above stubs as well ?
>
> That helps.  The stub should live in qemu-fsdev-dummy.c (where it
> shouldn't need any #ifdef, because that file is only compiled when the
> condition is false), and...
>
>>
>>> Second point: if fsdev is indeed a platform-specific feature, then we
>>> don't want to advertise the QMP commands that are useless when running
>>> on a platform that doesn't support it. Anywhere you have to add a stub
>>> for compilation means you ALSO need to patch monitor.c to unregister the
>>> command from being advertised as a valid QMP command.  (If you used
>>> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
>>> declare the stub, then the monitor.c needs an #ifndef section within
>>> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)
>
> monitor.c should wrap the unregister under #ifndef CONFIG_VIRTFS (rather
> than a particular platform name).
I did unregister the functions as mentioned above in monitor.c. But it 
does not address the issue when I run "make docker-test-mingw@fedora".
I think the VIRTFS is still enabled.
Only having dummy functions even in qmp.c addresses the issue.

Regards,
Pradeep
>
Greg Kurz June 8, 2017, 4:49 p.m. UTC | #7
On Thu, 18 May 2017 15:30:06 +0200
Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com> wrote:

> On 5/17/2017 7:09 PM, Eric Blake wrote:
> > On 05/17/2017 11:29 AM, Greg Kurz wrote:
> >  
> >>>
> >>> First point: is fsdev a Linux-only feature, or can it be compiled on
> >>> BSD?  If it is Linux-only, then compiling a stub for Windows will still
> >>> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
> >>> is nice, but not the only platform to worry about.
> >>>  
> >>
> >> fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
> >> feature for the moment. There was a tentative to support it on Windows hosts
> >> two years ago but it stayed at the RFC stage.
> >>
> >> But even on Linux hosts, the current fsdev implementation also depends on
> >> the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
> >> file to put stubs so that we don't pull all the code for such targets.
> >>
> >> Maybe this could be reused for the above stubs as well ?  
> >
> > That helps.  The stub should live in qemu-fsdev-dummy.c (where it
> > shouldn't need any #ifdef, because that file is only compiled when the
> > condition is false), and...
> >  
> >>  
> >>> Second point: if fsdev is indeed a platform-specific feature, then we
> >>> don't want to advertise the QMP commands that are useless when running
> >>> on a platform that doesn't support it. Anywhere you have to add a stub
> >>> for compilation means you ALSO need to patch monitor.c to unregister the
> >>> command from being advertised as a valid QMP command.  (If you used
> >>> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
> >>> declare the stub, then the monitor.c needs an #ifndef section within
> >>> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)  
> >
> > monitor.c should wrap the unregister under #ifndef CONFIG_VIRTFS (rather
> > than a particular platform name).  
> I did unregister the functions as mentioned above in monitor.c. But it 
> does not address the issue when I run "make docker-test-mingw@fedora".

What issue is this ?

I cannot even run this with your unmodified series (please note that I
always build out-of-tree).

> I think the VIRTFS is still enabled.
> Only having dummy functions even in qmp.c addresses the issue.
> 
> Regards,
> Pradeep
> >  
> 
>
Pradeep Jagadeesh June 9, 2017, 8:31 a.m. UTC | #8
On 6/8/2017 6:49 PM, Greg Kurz wrote:
> On Thu, 18 May 2017 15:30:06 +0200
> Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com> wrote:
>
>> On 5/17/2017 7:09 PM, Eric Blake wrote:
>>> On 05/17/2017 11:29 AM, Greg Kurz wrote:
>>>
>>>>>
>>>>> First point: is fsdev a Linux-only feature, or can it be compiled on
>>>>> BSD?  If it is Linux-only, then compiling a stub for Windows will still
>>>>> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
>>>>> is nice, but not the only platform to worry about.
>>>>>
>>>>
>>>> fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
>>>> feature for the moment. There was a tentative to support it on Windows hosts
>>>> two years ago but it stayed at the RFC stage.
>>>>
>>>> But even on Linux hosts, the current fsdev implementation also depends on
>>>> the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
>>>> file to put stubs so that we don't pull all the code for such targets.
>>>>
>>>> Maybe this could be reused for the above stubs as well ?
>>>
>>> That helps.  The stub should live in qemu-fsdev-dummy.c (where it
>>> shouldn't need any #ifdef, because that file is only compiled when the
>>> condition is false), and...
>>>
>>>>
>>>>> Second point: if fsdev is indeed a platform-specific feature, then we
>>>>> don't want to advertise the QMP commands that are useless when running
>>>>> on a platform that doesn't support it. Anywhere you have to add a stub
>>>>> for compilation means you ALSO need to patch monitor.c to unregister the
>>>>> command from being advertised as a valid QMP command.  (If you used
>>>>> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
>>>>> declare the stub, then the monitor.c needs an #ifndef section within
>>>>> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)
>>>
>>> monitor.c should wrap the unregister under #ifndef CONFIG_VIRTFS (rather
>>> than a particular platform name).
>> I did unregister the functions as mentioned above in monitor.c. But it
>> does not address the issue when I run "make docker-test-mingw@fedora".
>
> What issue is this ?
>
> I cannot even run this with your unmodified series (please note that I
> always build out-of-tree).
The issue is when I cross build the qemu, I was facing the compilation 
issue. Even it failed in patchew. So, I had to add the dummy functions 
in monitor.c and qmp.c.

-Pradeep
>> I think the VIRTFS is still enabled.
>> Only having dummy functions even in qmp.c addresses the issue.
>>
>> Regards,
>> Pradeep
>>>
>>
>>
>
Greg Kurz June 9, 2017, 9:07 a.m. UTC | #9
On Fri, 9 Jun 2017 10:31:58 +0200
Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com> wrote:

> On 6/8/2017 6:49 PM, Greg Kurz wrote:
> > On Thu, 18 May 2017 15:30:06 +0200
> > Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com> wrote:
> >  
> >> On 5/17/2017 7:09 PM, Eric Blake wrote:  
> >>> On 05/17/2017 11:29 AM, Greg Kurz wrote:
> >>>  
> >>>>>
> >>>>> First point: is fsdev a Linux-only feature, or can it be compiled on
> >>>>> BSD?  If it is Linux-only, then compiling a stub for Windows will still
> >>>>> leave BSD broken, and your #ifdef is wrong.  Fixing compilation on mingw
> >>>>> is nice, but not the only platform to worry about.
> >>>>>  
> >>>>
> >>>> fsdev compilation currently depends on CONFIG_VIRTFS which is a Linux-only
> >>>> feature for the moment. There was a tentative to support it on Windows hosts
> >>>> two years ago but it stayed at the RFC stage.
> >>>>
> >>>> But even on Linux hosts, the current fsdev implementation also depends on
> >>>> the target supporting PCI and VIRTIO. We have a fsdev/qemu-fsdev-dummy.c
> >>>> file to put stubs so that we don't pull all the code for such targets.
> >>>>
> >>>> Maybe this could be reused for the above stubs as well ?  
> >>>
> >>> That helps.  The stub should live in qemu-fsdev-dummy.c (where it
> >>> shouldn't need any #ifdef, because that file is only compiled when the
> >>> condition is false), and...
> >>>  
> >>>>  
> >>>>> Second point: if fsdev is indeed a platform-specific feature, then we
> >>>>> don't want to advertise the QMP commands that are useless when running
> >>>>> on a platform that doesn't support it. Anywhere you have to add a stub
> >>>>> for compilation means you ALSO need to patch monitor.c to unregister the
> >>>>> command from being advertised as a valid QMP command.  (If you used
> >>>>> #ifdef __LINUX__ to guard the working version, and #ifndef __LINUX__ to
> >>>>> declare the stub, then the monitor.c needs an #ifndef section within
> >>>>> qmp_unregister_commands_hack() to tell QMP to not advertise the stubs.)  
> >>>
> >>> monitor.c should wrap the unregister under #ifndef CONFIG_VIRTFS (rather
> >>> than a particular platform name).  
> >> I did unregister the functions as mentioned above in monitor.c. But it
> >> does not address the issue when I run "make docker-test-mingw@fedora".  
> >
> > What issue is this ?
> >
> > I cannot even run this with your unmodified series (please note that I
> > always build out-of-tree).  
> The issue is when I cross build the qemu, I was facing the compilation 
> issue. Even it failed in patchew. So, I had to add the dummy functions 
> in monitor.c and qmp.c.
> 

I see no dummy functions in monitor.c ...

As said above, I cannot even reach that point with my out-of-tree build
setup:

  GEN     qmp-commands.h
/tmp/qemu-test/src/qapi-schema.json:85: No such file or directory: qapi/fsdev.json
Makefile:438: recipe for target 'qmp-commands.h' failed

Please fix that.

> -Pradeep
> >> I think the VIRTFS is still enabled.
> >> Only having dummy functions even in qmp.c addresses the issue.
> >>
> >> Regards,
> >> Pradeep  
> >>>  
> >>
> >>  
> >  
>
Pradeep Jagadeesh June 9, 2017, 9:13 a.m. UTC | #10
On 6/9/2017 11:07 AM, Greg Kurz wrote:
>   GEN     qmp-commands.h
> /tmp/qemu-test/src/qapi-schema.json:85: No such file or directory: qapi/fsdev.json
> Makefile:438: recipe for target 'qmp-commands.h' failed
>
> Please fix that.
Ho ok, I will have a look.
How are you trying to compile, using "make docker" options?


Thanks
Pradeep
Greg Kurz June 9, 2017, 9:20 a.m. UTC | #11
On Fri, 9 Jun 2017 11:13:50 +0200
Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com> wrote:

> On 6/9/2017 11:07 AM, Greg Kurz wrote:
> >   GEN     qmp-commands.h
> > /tmp/qemu-test/src/qapi-schema.json:85: No such file or directory: qapi/fsdev.json
> > Makefile:438: recipe for target 'qmp-commands.h' failed
> >
> > Please fix that.  
> Ho ok, I will have a look.
> How are you trying to compile, using "make docker" options?

From the QEMU source tree I do:

mkdir build
cd build
../configure
make docker-test-mingw@fedora

> 
> 
> Thanks
> Pradeep
>
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 31d41a7..7b928d9 100644
--- a/Makefile
+++ b/Makefile
@@ -414,6 +414,9 @@  qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
                $(SRC_PATH)/qapi/event.json $(SRC_PATH)/qapi/introspect.json \
                $(SRC_PATH)/qapi/crypto.json $(SRC_PATH)/qapi/rocker.json \
                $(SRC_PATH)/qapi/trace.json
+ifdef CONFIG_VIRTFS
+qapi-modules += $(SRC_PATH)/qapi/fsdev.json
+endif
 
 qapi-types.c qapi-types.h :\
 $(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
diff --git a/fsdev/qemu-fsdev-dummy.c b/fsdev/qemu-fsdev-dummy.c
index 6dc0fbc..f33305d 100644
--- a/fsdev/qemu-fsdev-dummy.c
+++ b/fsdev/qemu-fsdev-dummy.c
@@ -19,3 +19,13 @@  int qemu_fsdev_add(QemuOpts *opts)
 {
     return 0;
 }
+
+void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
+{
+  return;
+}
+
+IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
+{
+    abort();
+}
diff --git a/fsdev/qemu-fsdev-throttle.c b/fsdev/qemu-fsdev-throttle.c
index db386a7..ccbdfbd 100644
--- a/fsdev/qemu-fsdev-throttle.c
+++ b/fsdev/qemu-fsdev-throttle.c
@@ -29,6 +29,81 @@  static void fsdev_throttle_write_timer_cb(void *opaque)
     qemu_co_enter_next(&fst->throttled_reqs[true]);
 }
 
+void fsdev_set_io_throttle(IOThrottle *arg, FsThrottle *fst, Error **errp)
+{
+    ThrottleConfig cfg;
+
+    qmp_set_io_throttle(&cfg, arg);
+
+    if (throttle_is_valid(&cfg, errp)) {
+        fst->cfg = cfg;
+        fsdev_throttle_init(fst);
+    }
+}
+
+void fsdev_get_io_throttle(FsThrottle *fst, IOThrottle **fs9pcfg,
+                           char *fsdevice, Error **errp)
+{
+
+    ThrottleConfig cfg = fst->cfg;
+    IOThrottle *fscfg = g_malloc0(sizeof(*fscfg));
+
+    fscfg->has_id = true;
+    fscfg->id = g_strdup(fsdevice);
+    fscfg->bps = cfg.buckets[THROTTLE_BPS_TOTAL].avg;
+    fscfg->bps_rd = cfg.buckets[THROTTLE_BPS_READ].avg;
+    fscfg->bps_wr = cfg.buckets[THROTTLE_BPS_WRITE].avg;
+
+    fscfg->iops = cfg.buckets[THROTTLE_OPS_TOTAL].avg;
+    fscfg->iops_rd = cfg.buckets[THROTTLE_OPS_READ].avg;
+    fscfg->iops_wr = cfg.buckets[THROTTLE_OPS_WRITE].avg;
+
+    fscfg->has_bps_max     = cfg.buckets[THROTTLE_BPS_TOTAL].max;
+    fscfg->bps_max         = cfg.buckets[THROTTLE_BPS_TOTAL].max;
+    fscfg->has_bps_rd_max  = cfg.buckets[THROTTLE_BPS_READ].max;
+    fscfg->bps_rd_max      = cfg.buckets[THROTTLE_BPS_READ].max;
+    fscfg->has_bps_wr_max  = cfg.buckets[THROTTLE_BPS_WRITE].max;
+    fscfg->bps_wr_max      = cfg.buckets[THROTTLE_BPS_WRITE].max;
+
+    fscfg->has_iops_max    = cfg.buckets[THROTTLE_OPS_TOTAL].max;
+    fscfg->iops_max        = cfg.buckets[THROTTLE_OPS_TOTAL].max;
+    fscfg->has_iops_rd_max = cfg.buckets[THROTTLE_OPS_READ].max;
+    fscfg->iops_rd_max     = cfg.buckets[THROTTLE_OPS_READ].max;
+    fscfg->has_iops_wr_max = cfg.buckets[THROTTLE_OPS_WRITE].max;
+    fscfg->iops_wr_max     = cfg.buckets[THROTTLE_OPS_WRITE].max;
+
+    fscfg->has_bps_max_length     = fscfg->has_bps_max;
+    fscfg->bps_max_length         =
+         cfg.buckets[THROTTLE_BPS_TOTAL].burst_length;
+    fscfg->has_bps_rd_max_length  = fscfg->has_bps_rd_max;
+    fscfg->bps_rd_max_length      =
+         cfg.buckets[THROTTLE_BPS_READ].burst_length;
+    fscfg->has_bps_wr_max_length  = fscfg->has_bps_wr_max;
+    fscfg->bps_wr_max_length      =
+         cfg.buckets[THROTTLE_BPS_WRITE].burst_length;
+
+    fscfg->has_iops_max_length    = fscfg->has_iops_max;
+    fscfg->iops_max_length        =
+         cfg.buckets[THROTTLE_OPS_TOTAL].burst_length;
+    fscfg->has_iops_rd_max_length = fscfg->has_iops_rd_max;
+    fscfg->iops_rd_max_length     =
+         cfg.buckets[THROTTLE_OPS_READ].burst_length;
+    fscfg->has_iops_wr_max_length = fscfg->has_iops_wr_max;
+    fscfg->iops_wr_max_length     =
+         cfg.buckets[THROTTLE_OPS_WRITE].burst_length;
+
+    fscfg->bps_max_length = cfg.buckets[THROTTLE_BPS_TOTAL].burst_length;
+    fscfg->bps_rd_max_length = cfg.buckets[THROTTLE_BPS_READ].burst_length;
+    fscfg->bps_wr_max_length = cfg.buckets[THROTTLE_BPS_WRITE].burst_length;
+    fscfg->iops_max_length = cfg.buckets[THROTTLE_OPS_TOTAL].burst_length;
+    fscfg->iops_rd_max_length = cfg.buckets[THROTTLE_OPS_READ].burst_length;
+    fscfg->iops_wr_max_length = cfg.buckets[THROTTLE_OPS_WRITE].burst_length;
+
+    fscfg->iops_size = cfg.op_size;
+
+    *fs9pcfg = fscfg;
+}
+
 void fsdev_throttle_parse_opts(QemuOpts *opts, FsThrottle *fst, Error **errp)
 {
     parse_io_throttle_options(&fst->cfg, opts);
diff --git a/fsdev/qemu-fsdev-throttle.h b/fsdev/qemu-fsdev-throttle.h
index c493e83..a49b2e5 100644
--- a/fsdev/qemu-fsdev-throttle.h
+++ b/fsdev/qemu-fsdev-throttle.h
@@ -21,6 +21,12 @@ 
 #include "qapi/error.h"
 #include "qemu/throttle.h"
 #include "qemu/throttle-options.h"
+#include "qapi/qmp/qerror.h"
+#include "qapi/qmp/types.h"
+#include "qapi-visit.h"
+#include "qapi/qobject-output-visitor.h"
+#include "qapi/util.h"
+#include "qmp-commands.h"
 
 typedef struct FsThrottle {
     ThrottleState ts;
@@ -37,4 +43,10 @@  void coroutine_fn fsdev_co_throttle_request(FsThrottle *, bool ,
                                             struct iovec *, int);
 
 void fsdev_throttle_cleanup(FsThrottle *);
+
+void fsdev_set_io_throttle(IOThrottle *, FsThrottle *, Error **errp);
+
+void fsdev_get_io_throttle(FsThrottle *, IOThrottle **iothp,
+                           char *, Error **errp);
+
 #endif /* _FSDEV_THROTTLE_H */
diff --git a/fsdev/qemu-fsdev.c b/fsdev/qemu-fsdev.c
index 266e442..a99e299 100644
--- a/fsdev/qemu-fsdev.c
+++ b/fsdev/qemu-fsdev.c
@@ -16,6 +16,7 @@ 
 #include "qemu-common.h"
 #include "qemu/config-file.h"
 #include "qemu/error-report.h"
+#include "qmp-commands.h"
 
 static QTAILQ_HEAD(FsDriverEntry_head, FsDriverListEntry) fsdriver_entries =
     QTAILQ_HEAD_INITIALIZER(fsdriver_entries);
@@ -98,3 +99,39 @@  FsDriverEntry *get_fsdev_fsentry(char *id)
     }
     return NULL;
 }
+
+void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
+{
+
+    FsDriverEntry *fse;
+
+    fse = get_fsdev_fsentry(arg->has_id ? arg->id : NULL);
+    if (!fse) {
+        return;
+    }
+
+    fsdev_set_io_throttle(arg, &fse->fst, errp);
+}
+
+IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
+{
+    IOThrottleList *head = NULL, **p_next = &head;
+    struct FsDriverListEntry *fsle;
+    Error *local_err = NULL;
+
+    QTAILQ_FOREACH(fsle, &fsdriver_entries, next) {
+        IOThrottleList *fscfg = g_malloc0(sizeof(*fscfg));
+        fsdev_get_io_throttle(&fsle->fse.fst, &fscfg->value,
+                            fsle->fse.fsdev_id, &local_err);
+        if (local_err) {
+            error_propagate(errp, local_err);
+            g_free(fscfg);
+            qapi_free_IOThrottleList(head);
+            return NULL;
+        }
+
+        *p_next = fscfg;
+        p_next = &fscfg->next;
+    }
+    return head;
+}
diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index a53f105..8c1c33e 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -84,6 +84,25 @@  STEXI
 Show block device statistics.
 ETEXI
 
+#if defined(CONFIG_VIRTFS)
+
+    {
+        .name       = "query-fsdev-iothrottle",
+        .args_type  = "",
+        .params     = "",
+        .help       = "show fsdev device throttle information",
+        .cmd        = hmp_fsdev_get_io_throttle,
+    },
+
+#endif
+
+STEXI
+@item info fsdev throttle
+@findex fsdevthrottleinfo
+Show fsdev device throttleinfo.
+
+ETEXI
+
     {
         .name       = "block-jobs",
         .args_type  = "",
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 0aca984..7699475 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -1660,6 +1660,25 @@  STEXI
 Change I/O throttle limits for a block drive to @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
 ETEXI
 
+#if defined(CONFIG_VIRTFS)
+
+    {
+        .name       = "fsdev-set-io-throttle",
+        .args_type  = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
+        .params     = "device bps bps_rd bps_wr iops iops_rd iops_wr",
+        .help       = "change I/O throttle limits for a block drive",
+        .cmd        = hmp_fsdev_set_io_throttle,
+    },
+
+#endif
+
+STEXI
+@item fsdev_set_io_throttle @var{device} @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
+@findex fsdev_set_io_throttle
+Change I/O throttle limits for a block drive to @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
+
+ETEXI
+
     {
         .name       = "set_password",
         .args_type  = "protocol:s,password:s,connected:s?",
diff --git a/hmp.c b/hmp.c
index 9660373..19a4ad0 100644
--- a/hmp.c
+++ b/hmp.c
@@ -38,6 +38,7 @@ 
 #include "qemu/cutils.h"
 #include "qemu/error-report.h"
 #include "hw/intc/intc.h"
+#include "fsdev/qemu-fsdev-throttle.h"
 
 #ifdef CONFIG_SPICE
 #include <spice/enums.h>
@@ -1579,6 +1580,72 @@  void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict)
     hmp_handle_error(mon, &err);
 }
 
+#ifdef CONFIG_VIRTFS
+
+void hmp_fsdev_set_io_throttle(Monitor *mon, const QDict *qdict)
+{
+    Error *err = NULL;
+    IOThrottle throttle;
+
+    hmp_initialize_io_throttle(&throttle, qdict);
+    qmp_fsdev_set_io_throttle(&throttle, &err);
+    hmp_handle_error(mon, &err);
+}
+
+static void print_fsdev_throttle_config(Monitor *mon, IOThrottle *fscfg,
+                                       Error *err)
+{
+    if (fscfg->bps  || fscfg->bps_rd  || fscfg->bps_wr  ||
+        fscfg->iops || fscfg->iops_rd || fscfg->iops_wr)
+    {
+        monitor_printf(mon, "%s", fscfg->id);
+        monitor_printf(mon, "    I/O throttling:"
+                        " bps=%" PRId64
+                        " bps_rd=%" PRId64  " bps_wr=%" PRId64
+                        " bps_max=%" PRId64
+                        " bps_rd_max=%" PRId64
+                        " bps_wr_max=%" PRId64
+                        " iops=%" PRId64 " iops_rd=%" PRId64
+                        " iops_wr=%" PRId64
+                        " iops_max=%" PRId64
+                        " iops_rd_max=%" PRId64
+                        " iops_wr_max=%" PRId64
+                        " iops_size=%" PRId64,
+                        fscfg->bps,
+                        fscfg->bps_rd,
+                        fscfg->bps_wr,
+                        fscfg->bps_max,
+                        fscfg->bps_rd_max,
+                        fscfg->bps_wr_max,
+                        fscfg->iops,
+                        fscfg->iops_rd,
+                        fscfg->iops_wr,
+                        fscfg->iops_max,
+                        fscfg->iops_rd_max,
+                        fscfg->iops_wr_max,
+                        fscfg->iops_size);
+   }
+   hmp_handle_error(mon, &err);
+}
+
+void hmp_fsdev_get_io_throttle(Monitor *mon, const QDict *qdict)
+{
+    Error *err = NULL;
+    IOThrottleList *fs9p_list, *info;
+    fs9p_list = qmp_query_fsdev_io_throttle(&err);
+
+    for (info = fs9p_list; info; info = info->next) {
+        if (info != fs9p_list) {
+            monitor_printf(mon, "\n");
+        }
+        print_fsdev_throttle_config(mon, info->value, err);
+        qapi_free_IOThrottle(info->value);
+    }
+    qapi_free_IOThrottleList(fs9p_list);
+}
+
+#endif
+
 void hmp_block_stream(Monitor *mon, const QDict *qdict)
 {
     Error *error = NULL;
diff --git a/hmp.h b/hmp.h
index 799fd37..f1adb9d 100644
--- a/hmp.h
+++ b/hmp.h
@@ -77,6 +77,10 @@  void hmp_set_password(Monitor *mon, const QDict *qdict);
 void hmp_expire_password(Monitor *mon, const QDict *qdict);
 void hmp_eject(Monitor *mon, const QDict *qdict);
 void hmp_change(Monitor *mon, const QDict *qdict);
+#ifdef CONFIG_VIRTFS
+void hmp_fsdev_set_io_throttle(Monitor *mon, const QDict *qdict);
+void hmp_fsdev_get_io_throttle(Monitor *mon, const QDict *qdict);
+#endif
 void hmp_block_set_io_throttle(Monitor *mon, const QDict *qdict);
 void hmp_block_stream(Monitor *mon, const QDict *qdict);
 void hmp_block_job_set_speed(Monitor *mon, const QDict *qdict);
diff --git a/qapi-schema.json b/qapi-schema.json
index 01b087f..6aa1446 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -81,6 +81,9 @@ 
 # QAPI block definitions
 { 'include': 'qapi/block.json' }
 
+# QAPI fsdev definitions
+{ 'include': 'qapi/fsdev.json' }
+
 # QAPI event definitions
 { 'include': 'qapi/event.json' }
 
diff --git a/qapi/fsdev.json b/qapi/fsdev.json
new file mode 100644
index 0000000..eff1efe
--- /dev/null
+++ b/qapi/fsdev.json
@@ -0,0 +1,84 @@ 
+# -*- Mode: Python -*-
+
+##
+# == QAPI fsdev definitions
+##
+
+# QAPI common definitions
+{ 'include': 'iothrottle.json' }
+
+##
+# @fsdev-set-io-throttle:
+#
+# Change I/O limits for a 9p/fsdev device.
+#
+# I/O limits can be enabled by setting throttle value to non-zero number.
+#
+# I/O limits can be disabled by setting all throttle values to 0.
+#
+# Returns: Nothing on success
+#          If @device is not a valid fsdev device, DeviceNotFound
+#
+# Since: 2.10
+#
+# Example:
+#
+# -> { "execute": "fsdev-set-io-throttle",
+#      "arguments": { "id": "id0-1-0",
+#                     "bps": 1000000,
+#                     "bps_rd": 0,
+#                     "bps_wr": 0,
+#                     "iops": 0,
+#                     "iops_rd": 0,
+#                     "iops_wr": 0,
+#                     "bps_max": 8000000,
+#                     "bps_rd_max": 0,
+#                     "bps_wr_max": 0,
+#                     "iops_max": 0,
+#                     "iops_rd_max": 0,
+#                     "iops_wr_max": 0,
+#                     "bps_max_length": 60,
+#                     "iops_size": 0 } }
+# <- { "returns": {} }
+##
+{ 'command': 'fsdev-set-io-throttle', 'boxed': true,
+  'data': 'IOThrottle' }
+##
+# @query-fsdev-io-throttle:
+#
+# Returns: a list of @IOThrottle describing io throttle values of each fsdev device
+#
+# Since: 2.10
+#
+# Example:
+#
+# -> { "Execute": "query-fsdev-io-throttle" }
+# <- { "returns" : [
+#          {
+#             "id": "id0-hd0",
+#              "bps":1000000,
+#              "bps_rd":0,
+#              "bps_wr":0,
+#              "iops":1000000,
+#              "iops_rd":0,
+#              "iops_wr":0,
+#              "bps_max": 8000000,
+#              "bps_rd_max": 0,
+#              "bps_wr_max": 0,
+#              "iops_max": 0,
+#              "iops_rd_max": 0,
+#              "iops_wr_max": 0,
+#              "bps_max_length": 0,
+#              "bps_rd_max_length": 0,
+#              "bps_wr_max_length": 0,
+#              "iops_max_length": 0,
+#              "iops_rd_max_length": 0,
+#              "iops_wr_max_length": 0,
+#              "iops_size": 0
+#            }
+#          ]
+#      }
+#
+##
+{ 'command': 'query-fsdev-io-throttle', 'returns': [ 'IOThrottle' ] }
+
diff --git a/qmp.c b/qmp.c
index ab74cd7..c76a973 100644
--- a/qmp.c
+++ b/qmp.c
@@ -130,6 +130,21 @@  void qmp_cpu_add(int64_t id, Error **errp)
     }
 }
 
+#ifdef _WIN64
+
+void qmp_fsdev_set_io_throttle(IOThrottle *arg, Error **errp)
+{
+  return;
+}
+
+IOThrottleList *qmp_query_fsdev_io_throttle(Error **errp)
+{
+    abort();
+}
+
+#endif
+
+
 #ifndef CONFIG_VNC
 /* If VNC support is enabled, the "true" query-vnc command is
    defined in the VNC subsystem */