Re: [Qemu-devel] [PATCH v3 2/8] tpm-backend: Move thread handling inside TPMBackend

2017-05-02 Thread Marc-André Lureau
Hi On Tue, May 2, 2017 at 3:52 PM Amarnath Valluri wrote: > Move thread handling inside TPMBackend, this way backend implementations > need > not to maintain their own thread life cycle, instead they needs to > implement > 'handle_request()' class method that always been called from a thread. >

[Qemu-devel] [PATCH v3 2/8] tpm-backend: Move thread handling inside TPMBackend

2017-05-02 Thread Amarnath Valluri
Move thread handling inside TPMBackend, this way backend implementations need not to maintain their own thread life cycle, instead they needs to implement 'handle_request()' class method that always been called from a thread. This change made tpm_backend_int.h kind of useless, hence removed it. S