From: Jeremy Allison Date: Tue, 27 May 2008 04:13:05 +0000 (-0700) Subject: Re-enable the evil "aio write behind" parameter. X-Git-Tag: samba-4.0.0alpha6~801^2~1257 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=ae5135310737499dfe801df48fe554e5ba53a834;p=samba.git Re-enable the evil "aio write behind" parameter. Jeremy. (This used to be commit 5d22ca00bcdf49dcb35468400ac8cc3c57808d0d) --- diff --git a/source3/smbd/service.c b/source3/smbd/service.c index fbce22e975a..ac233a97b73 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -1025,6 +1025,8 @@ static connection_struct *make_connection_snum(int snum, user_struct *vuser, set_namearray( &conn->veto_list, lp_veto_files(snum)); set_namearray( &conn->hide_list, lp_hide_files(snum)); set_namearray( &conn->veto_oplock_list, lp_veto_oplocks(snum)); + set_namearray( &conn->aio_write_behind_list, + lp_aio_write_behind(snum)); } /* Invoke VFS make connection hook - do this before the VFS_STAT call