Stefan Hajnoczi writes:
> On Thu, Jan 31, 2013 at 06:56:56AM -0600, Anthony Liguori wrote:
>> Stefan Hajnoczi writes:
>>
>> > QEMU currently uses select(2)-style rfds/wfds/xfds for file descriptor
>> > event polling. Unfortunately the underlying fd_set type and its macros
>> > (FD_SET()) have
On Thu, Jan 31, 2013 at 06:56:56AM -0600, Anthony Liguori wrote:
> Stefan Hajnoczi writes:
>
> > QEMU currently uses select(2)-style rfds/wfds/xfds for file descriptor
> > event polling. Unfortunately the underlying fd_set type and its macros
> > (FD_SET()) have a hardcoded maximum for file desc
Stefan Hajnoczi writes:
> QEMU currently uses select(2)-style rfds/wfds/xfds for file descriptor
> event polling. Unfortunately the underlying fd_set type and its macros
> (FD_SET()) have a hardcoded maximum for file descriptors. It is
> possible to exceed this limit so we need a more scalable
QEMU currently uses select(2)-style rfds/wfds/xfds for file descriptor
event polling. Unfortunately the underlying fd_set type and its macros
(FD_SET()) have a hardcoded maximum for file descriptors. It is
possible to exceed this limit so we need a more scalable event polling
structure.
Poller i