Age | Commit message (Expand) | Author | Files | Lines |
2012-06-15 | s3:smbd: change aio.c to use fsp_fnum_dbg() for logging fsp->fnum. | Michael Adam | 1 | -2/+2 |
2012-06-06 | build: Rationalise AIO support in configure, ensure on by default | Andrew Bartlett | 1 | -1/+1 |
2012-04-12 | We never cancel SMB1 aio, only SMB2 aio - and in this case we always return a... | Jeremy Allison | 1 | -12/+7 |
2012-04-12 | Remove cancel_aio_by_fsp(). It can never work and could lead to memory corrup... | Jeremy Allison | 1 | -30/+9 |
2012-04-12 | Move the counting of outstanding_aio_calls into the lifecycle of the aio_extr... | Jeremy Allison | 1 | -6/+2 |
2012-04-09 | s3: Move the aio signal init to the vfs module | Volker Lendecke | 1 | -21/+7 |
2012-04-06 | build: Remove SMB_OFF_T, replace with off_t | Andrew Bartlett | 1 | -6/+6 |
2012-01-12 | Ensure we always free aio_ex on all error paths by moving the TALLOC_FREE | Jeremy Allison | 1 | -2/+1 |
2011-11-15 | Remove unneeded NULL check. | Jeremy Allison | 1 | -4/+0 |
2011-11-15 | s3:smbd/aio: handle_aio_completed() should do nothing if aio_ex->fsp is NULL | Stefan Metzmacher | 1 | -0/+5 |
2011-11-15 | s3:smbd/aio: pass ECANCELED to the smb2 aio handlers | Stefan Metzmacher | 1 | -1/+4 |
2011-11-15 | s3:smbd/aio: add cancel_smb2_aio() | Stefan Metzmacher | 1 | -0/+38 |
2011-08-02 | s3: Fix smb2 handling error returns from aio | Volker Lendecke | 1 | -0/+2 |
2011-06-09 | s3-talloc Change TALLOC_ZERO_P() to talloc_zero() | Andrew Bartlett | 1 | -1/+1 |
2011-05-31 | s3-globals Remove smbd_event_context() (use server_event_context()) | Andrew Bartlett | 1 | -2/+2 |
2011-05-05 | Fixup build without --with-aio. | Jeremy Allison | 1 | -1/+1 |
2011-05-05 | Fix many const compiler warnings. | Jeremy Allison | 1 | -2/+2 |
2011-04-29 | s3-tevent: only include ../lib/util/tevent wrappers where needed. | Günther Deschner | 1 | -0/+1 |
2011-03-30 | s3: include smbd/smbd.h where needed. | Günther Deschner | 1 | -0/+1 |
2010-12-15 | Change interface of schedule_smb2_aio_read() to allocate the return DATA_BLOB. | Jeremy Allison | 1 | -3/+11 |
2010-09-07 | s3: use monotonic clock for aio timeout | Björn Jacke | 1 | -2/+2 |
2010-08-24 | s3: Make srv_send_smb take an sconn instead of a sock fd | Volker Lendecke | 1 | -3/+3 |
2010-08-16 | s3: Remove smbd_server_fd from handle_aio_read/write_complete | Volker Lendecke | 1 | -2/+2 |
2010-08-16 | s3: Remove smbd_server_fd from schedule_aio_write_and_X | Volker Lendecke | 1 | -1/+2 |
2010-08-13 | s3: Fix some error messages | Volker Lendecke | 1 | -3/+4 |
2010-07-20 | Fix warning - no return value for a non-void fn. | Jeremy Allison | 1 | -0/+1 |
2010-07-18 | s3: Work better without the aio sighandler | Volker Lendecke | 1 | -7/+22 |
2010-06-10 | Fix the build in the non WITH_AIO case (sorry). | Jeremy Allison | 1 | -0/+20 |
2010-06-10 | Implement AIO in SMB2. Doesn't allow cancel calls yet (to be added). | Jeremy Allison | 1 | -0/+281 |
2010-06-07 | Make aio_ex owned by a talloc context, not neccessarily on the null context. | Jeremy Allison | 1 | -8/+12 |
2010-06-07 | Move "write_though" into aio_ex struct. | Jeremy Allison | 1 | -5/+5 |
2010-06-04 | wait_for_aio_completion() should return 0 on non-aio compiled case. | Jeremy Allison | 1 | -1/+1 |
2010-06-04 | Rename req -> smbreq. | Jeremy Allison | 1 | -26/+26 |
2010-06-04 | Change smbd_aio_complete_mid() -> smbd_aio_complete_aio_ex(). Simplifies | Jeremy Allison | 1 | -32/+4 |
2010-06-02 | Move to using a DATA_BLOB inside of struct aio_extra, not a char *. | Jeremy Allison | 1 | -16/+16 |
2010-06-01 | Don't use sigev_value.sival_int to just store the mid, use sigev_value.sival_... | Jeremy Allison | 1 | -38/+26 |
2010-05-07 | This patch looks bigger than it is. It does 2 things. 1). Renames smbpid -> s... | Jeremy Allison | 1 | -2/+2 |
2010-04-12 | Move to using 64-bit mid values in our internal open file database. | Jeremy Allison | 1 | -15/+23 |
2010-04-05 | Fix issue with aio where r/w lock wasn't kept across aio read operations. | Jeremy Allison | 1 | -23/+56 |
2010-04-01 | Move initialize_async_io_handler() inside of smbd/aio.c. | Jeremy Allison | 1 | -34/+42 |
2009-10-13 | Remove use of "int ret" when we already have errcode. | Jeremy Allison | 1 | -13/+8 |
2009-10-13 | Catch one more erroneous use of errno. | Jeremy Allison | 1 | -1/+1 |
2009-10-13 | correctly handle aio_error() and errno | Olaf Flebbe | 1 | -29/+24 |
2009-09-30 | allow for outstanding_aio_calls to be decremented | Olaf Flebbe | 1 | -2/+4 |
2009-09-28 | Don't defer a talloc_move'd pointer. | Jeremy Allison | 1 | -1/+1 |
2009-07-20 | s3: Change fsp->fsp_name to be an smb_filename struct! | Tim Prouty | 1 | -14/+14 |
2009-06-08 | Set SIGRTMIN to NSIG | Timur I. Bakeyev | 1 | -3/+0 |
2009-05-18 | Move down the become_root()/unbecome_root() calls into the VFS modules | Volker Lendecke | 1 | -6/+0 |
2009-03-23 | s3:smbd: use new simplified snb_signing code in the server | Stefan Metzmacher | 1 | -8/+5 |
2009-03-06 | s3:signing: the seqnum should only be decremented by 1 for ntcancel requests | Stefan Metzmacher | 1 | -4/+4 |