Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-22 | remove trailing whitespaces | Dmitry Kozlov | |
2014-11-17 | triton: lock pending calls list in triton_cancel_call() | Guillaume Nault | |
The pending_calls field of struct _triton_context_t can be concurrently used by other contexts. So it must only be accessed or modified under protection of the context's lock (like in triton_context_call() or ctx_thread()). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2014-10-04 | radius: various bug fixes | Dmitry Kozlov | |
2014-09-22 | triton: make level triggered events oneshot (EPOLLONESHOT) | Dmitry Kozlov | |
2014-09-20 | rewrite of authentication/accounting procedures | Dmitry Kozlov | |
This patch gets rid of synchronuos style of authentication/accounting. Synchronous style of authentication/accounting produced sleeping threads which becomes a problem when lots of sessions started/stopped and all they want authorization/accounting. | |||
2014-09-13 | pppoe: start interfaces asynchronously | Dmitry Kozlov | |
When there are many interfaces to start accel-ppp stucks on startup because kernel slowly creates raw sockets. So starting this proccess asynchronous improves accel-ppp responsiveness | |||
2014-09-09 | triton: fixed race condition | Dmitry Kozlov | |
2014-06-03 | get out of SPINLOCK_INITIALIZER as it is not cross-platform compatible | Dmitry Kozlov | |
2014-05-20 | triton: fix possible race | Dmitry Kozlov | |
2014-05-18 | triton: fix possible race | Dmitry Kozlov | |
2014-05-12 | triton: improved epoll events handling | Dmitry Kozlov | |
2013-08-15 | triton: do not call context close if it is marked as need free (f.e. context ↵ | Dmitry Kozlov | |
already called triton_context_unregister) | |||
2013-07-24 | triton: Fix race upon termination | Guillaume Nault | |
The triton_terminate() function works by setting the need_close flag of each triton context, then queues this context for execution by a triton thread if not already running. But if the context is already being run by a triton thread, it may not notice that its need_close flag has been updated (this flag is only checked at the beginning of ctx_thread()). So if no other event wakes up that context (i.e. if ctx_thread() isn't run again), it will never terminate. This patch moves the need_close flag check at the end of ctx_thread() so that a triton context can take the need_close flag into account event if it's updated while running. The context spinlock is also used to protect the need_close flag as it is concurrently updated by triton_terminate(). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2013-04-22 | triton: Automatic setting of thread-count parameter | Guillaume Nault | |
Use the number of available processors to set the thread-count option if not given in configuration file. Signed-off-by: Guillaume Nault <g.nault@alphalink.fr> | |||
2012-06-21 | fixed race on termination | Kozlov Dmitry | |
2012-02-27 | core: increase stack size | Kozlov Dmitry | |
2012-02-02 | fix load module order | Kozlov Dmitry | |
2012-01-16 | core: fix context unregister bug | Kozlov Dmitry | |
2011-12-27 | core: queue zero-priority context if number of threads is reached maximum | Kozlov Dmitry | |
2011-12-27 | implemented logging to system logger | Kozlov Dmitry | |
2011-12-27 | Revert "implemented logging to system logger" | Kozlov Dmitry | |
This reverts commit ee41cba691ab9f6461f4933461cf82be161333de. | |||
2011-12-27 | implemented logging to system logger | Kozlov Dmitry | |
2011-12-09 | core: increase worker thread stack size | Kozlov Dmitry | |
2011-08-19 | snmp support | Kozlov Dmitry | |
2011-05-30 | rewrited initialization procedure (fix gcc-4.6 builds) | Kozlov Dmitry | |
2011-05-30 | set PTHREAD_STACK_MIN stack size for threads | Kozlov Dmitry | |
2011-05-24 | fixed segfault at daemon termination | Kozlov Dmitry | |
2011-03-05 | bugfix | Dmitry Kozlov | |
2011-01-28 | fix unterminated messages in core.log | Kozlov Dmitry | |
2011-01-26 | futher memory usage optimization | Dmitry Kozlov | |
2011-01-05 | rename accel-pptp to accel-ppp | Dmitry Kozlov | |