search for: vfs_aio_posix_init

Displaying 3 results from an estimated 3 matches for "vfs_aio_posix_init".

2016 Jul 19
3
aio settings for samba 4.3
...ce in the speed. Using MS diskspd against a samba share from a fast zfs pool I get something like 25MB/s tops. That's well below the capacity of my Gb network and my disk system. FWIW iperf shows >900Mbits/sec in both directions on the link. # smbd -b|grep aio vfs_aio_fork_init vfs_aio_posix_init vfs_aio_pthread_init As always google finds lots of tuning advice, but it's not clear what if any of it applies to 4.3 on FreeBSD. Thanks Russ Poyner
2016 Jul 20
4
aio settings for samba 4.3
...fast zfs pool I get > > something like 25MB/s tops. That's well below the capacity of my Gb > > network and my disk system. FWIW iperf shows >900Mbits/sec in both > > directions on the link. > > > > # smbd -b|grep aio > > vfs_aio_fork_init > > vfs_aio_posix_init > > vfs_aio_pthread_init > > You don't need these, modern Samba includes a pthread pool > implementation that will parallelize SMB io requests. The main reason for our user-space threaded approach is lack of aio in Linux. Proper kernel support for posix AIO might be faster t...
2016 Jul 21
0
aio settings for samba 4.3
...t;>> something like 25MB/s tops. That's well below the capacity of my Gb >>> network and my disk system. FWIW iperf shows >900Mbits/sec in both >>> directions on the link. >>> >>> # smbd -b|grep aio >>> vfs_aio_fork_init >>> vfs_aio_posix_init >>> vfs_aio_pthread_init >> You don't need these, modern Samba includes a pthread pool >> implementation that will parallelize SMB io requests. > The main reason for our user-space threaded approach is lack of aio in > Linux. Proper kernel support for posix AIO mi...