summaryrefslogtreecommitdiffstats
path: root/src/kernel/utils.c
Commit message (Collapse)AuthorAgeFilesLines
* [KERNEL] Refactor to use workqueues and blk-mq onlySimon Rettberg2022-02-181-48/+0Star
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using workqueues frees us from having to manage the lifecycle of three dedicated threads. Discovery (alt server checks) and sending keepalive packets is now done using work on the power efficient system queue. Sending and receiving happens via dedicated work queues with higher priority. blk-mq has also been around for quite a while in the kernel, so switching to it doesn't hurt backwards compatibility. As the code is now refactored to work more as blk-mq is designed, backwards compatibility even improved while at the same time freeing us from an arsenal of macros that were required to make the blk-mq port look and feel like the old implementation. For example, the code now compiles on CentOS 7 with kernel 3.10 without requiring special macros to detect the heavily modified RedHat kernel with all its backported features. A few other design limitations have been rectified along the way, e.g. switching to another server now doesn't internally disconnect from the current one first, which theoretically could lead to a non-working setup, if the new server isn't reachable and then - because of some transient network error - switching back also fails. As the discover-thread was torn down from the disconnect call, the connection would also not repair itself eventually. we now establish the new connection in parallel to the old one, and only if that succeeds do we replace the old one with it, similar to how the automatic alt-server switch already does it.
* [KERNEL] Removes duplicate word 'of' in license headersManuel Bentele2021-04-161-1/+1
|
* [KERNEL] Refactor code to satisfy Linux kernel code styleManuel Bentele2021-03-121-7/+14
|
* [*] Fixed and unified formattingsr2012-09-031-11/+11
|
* [ALL] RefactoringJohann Latocha2012-02-081-0/+8
| | | | | [ALL] Send and receive servers [TODO] Config file reloading is broken
* [ALL] Reformat (line wrapping, indent)Johann Latocha2012-01-301-8/+8
|
* First working version :)Johann Latocha2012-01-191-0/+33