aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Readme: use https instead of httpDaniel Kahn Gillmor2016-06-301-1/+1
| | | | | For the websites referenced that offer https instead of http, use https.
* Makefile: Add more verbose dependency errorsJason A. Donenfeld2016-06-301-0/+32
|
* device init: free wq after padataJason A. Donenfeld2016-06-301-3/+3
| | | | | The padata free functions make reference to their parent workqueue, so it's important that we wait to free the workqueue after the padata.
* chacha20poly1305: use more standard way of testing FPU featuresJason A. Donenfeld2016-06-291-7/+2
|
* device: remove updating of trans_startJason A. Donenfeld2016-06-291-2/+0
| | | | | | | | | | | | | | | | | | | | | Per http://lists.openwall.net/netdev/2016/05/03/87 dev->trans_start has been removed, and updates are now supposed to be handled with netif_trans_update, which now updates the particular txqueue's trans_start instead. However, netdev_start_xmit already updates this member after calling ndo_start_xmit, so the new netif_trans_update function smartly makes the comment that for drivers that don't use LLTX, it's not neccessary to call netif_trans_update. Except we do use LLTX, so it would seem again that we do need to be calling netif_trans_update. However, glancing at drivers like vxlan and other similar virtual tunnels, this doesn't seem to be the case. I suspect the reason is that we both also set IFF_NO_QUEUE, so we aren't even using a txqueue for updating. Thus, this patch removes updating of trans_start all together. I believe this should be okay for older kernels too.
* Kconfig: more fully select dependenciesJason A. Donenfeld2016-06-291-0/+3
|
* tests: make fatalJason A. Donenfeld2016-06-2513-20/+29
|
* nonce: switch to RFC6479 to better support packet reorderingJason A. Donenfeld2016-06-253-61/+95
| | | | | With packets hitting multiple cores, a 64bit backtrack was too small. This algorithm increases our backtrack to 1984bits.
* Initial commitJason A. Donenfeld2016-06-2565-0/+13888