summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_pthread.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2012-01-06 14:56:36 -0800
committerJeremy Allison <jra@samba.org>2012-01-06 14:56:36 -0800
commitb8b98b8908d52a09a5a6ecc36423dc484813a2d5 (patch)
tree6d617e8f49de288e68084e7544e7778247f8c581 /source3/modules/vfs_aio_pthread.c
parentd6950d4ec9615b8c177da1ca28c5eefb7bca490d (diff)
downloadsamba-b8b98b8908d52a09a5a6ecc36423dc484813a2d5.tar.gz
samba-b8b98b8908d52a09a5a6ecc36423dc484813a2d5.tar.bz2
samba-b8b98b8908d52a09a5a6ecc36423dc484813a2d5.zip
Remove the commented out code.
Diffstat (limited to 'source3/modules/vfs_aio_pthread.c')
-rw-r--r--source3/modules/vfs_aio_pthread.c53
1 files changed, 1 insertions, 52 deletions
diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c
index 61520a3315..78cea8e99c 100644
--- a/source3/modules/vfs_aio_pthread.c
+++ b/source3/modules/vfs_aio_pthread.c
@@ -67,42 +67,6 @@ static int aio_get_num_threads(struct vfs_handle_struct *handle)
100);
}
-#if 0
-/************************************************************************
- Called every 30 seconds to destroy pool if it's idle.
-***********************************************************************/
-
-static void idle_pool_destroy_timer(struct tevent_context *ev,
- struct tevent_timer *te,
- struct timeval current_time,
- void *private_data)
-{
- struct timeval ne;
-
- TALLOC_FREE(te);
-
- if (pool && pd_list == NULL) {
- if (pthreadpool_destroy(pool) == 0) {
- pool = NULL;
- }
- DEBUG(10,("idle_pool_destroy_timer: destroyed AIO pool.\n"));
- return;
- }
-
- /* Here, the IO is still active. */
-
- /* Set an event up for 30 seconds time - if we have
- no outstanding IO at this time shut the threadpool
- down. */
- ne = tevent_timeval_current_ofs(30, 0);
- tevent_add_timer(server_event_context(),
- NULL,
- ne,
- idle_pool_destroy_timer,
- NULL);
-}
-#endif
-
/************************************************************************
Ensure thread pool is initialized.
***********************************************************************/
@@ -112,9 +76,6 @@ static bool init_aio_threadpool(struct vfs_handle_struct *handle)
struct fd_event *sock_event = NULL;
int ret = 0;
int num_threads;
-#if 0
- struct timeval ne;
-#endif
if (pool) {
return true;
@@ -138,19 +99,7 @@ static bool init_aio_threadpool(struct vfs_handle_struct *handle)
return false;
}
-#if 0
- /* Set an event up for 30 seconds time - if we have
- no outstanding IO at this time shut the threadpool
- down. */
- ne = tevent_timeval_current_ofs(30, 0);
- tevent_add_timer(server_event_context(),
- NULL,
- ne,
- idle_pool_destroy_timer,
- NULL);
-#endif
-
- DEBUG(10,("init_aio_threadpool: initialized with %d threads\n",
+ DEBUG(10,("init_aio_threadpool: initialized with up to %d threads\n",
num_threads));
return true;