mbox

[PULL,0/3] Filemon next patches

Message ID 20190402125417.21573-1-berrange@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

https://github.com/berrange/qemu tags/filemon-next-pull-request

Message

Daniel P. Berrangé April 2, 2019, 12:54 p.m. UTC
The following changes since commit d61d1a1fb2f1db6c54651844a28389c523f3f8c7:

  Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20190402-pull-request' into staging (2019-04-02 08:18:24 +0100)

are available in the Git repository at:

  https://github.com/berrange/qemu tags/filemon-next-pull-request

for you to fetch changes up to b4682a63f86ed81abcaa543ea6135e17f9e99d01:

  filemon: fix watch IDs to avoid potential wraparound issues (2019-04-02 13:52:02 +0100)

----------------------------------------------------------------
filemon: various fixes / improvements to file monitor for USB MTP

Ensure watch IDs unique within a monitor and avoid integer wraparound
issues when many watches are set & unset over time.

----------------------------------------------------------------

Daniel P. Berrangé (3):
  tests: refactor file monitor test to make it more understandable
  filemon: ensure watch IDs are unique to QFileMonitor scope
  filemon: fix watch IDs to avoid potential wraparound issues

 authz/listfile.c              |   2 +-
 hw/usb/dev-mtp.c              |  10 +-
 include/authz/listfile.h      |   2 +-
 include/qemu/filemonitor.h    |  16 +-
 tests/test-util-filemonitor.c | 650 +++++++++++++++++-----------------
 util/filemonitor-inotify.c    |  26 +-
 util/filemonitor-stub.c       |   4 +-
 util/trace-events             |   6 +-
 8 files changed, 356 insertions(+), 360 deletions(-)

Comments

Peter Maydell April 2, 2019, 2:31 p.m. UTC | #1
On Tue, 2 Apr 2019 at 20:10, Daniel P. Berrangé <berrange@redhat.com> wrote:
>
> The following changes since commit d61d1a1fb2f1db6c54651844a28389c523f3f8c7:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20190402-pull-request' into staging (2019-04-02 08:18:24 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/berrange/qemu tags/filemon-next-pull-request
>
> for you to fetch changes up to b4682a63f86ed81abcaa543ea6135e17f9e99d01:
>
>   filemon: fix watch IDs to avoid potential wraparound issues (2019-04-02 13:52:02 +0100)
>
> ----------------------------------------------------------------
> filemon: various fixes / improvements to file monitor for USB MTP
>
> Ensure watch IDs unique within a monitor and avoid integer wraparound
> issues when many watches are set & unset over time.
>
> ----------------------------------------------------------------
>
> Daniel P. Berrangé (3):
>   tests: refactor file monitor test to make it more understandable
>   filemon: ensure watch IDs are unique to QFileMonitor scope
>   filemon: fix watch IDs to avoid potential wraparound issues
Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM