Re: [PATCH] sha1: add gnutls as a sha1 provider

2017-11-18 Thread Shawn Landden
On Tue, Nov 14, 2017 at 11:47 AM, Todd Zullinger <t...@pobox.com> wrote: > > Hi Shawn, > > Shawn Landden wrote: >> >> I think this is preferrable to bringing the assembly routines into the git >> code-base, as a way of getting access to these high-perform

[PATCH] sha1: add gnutls as a sha1 provider

2017-11-14 Thread Shawn Landden
s user0m25.187s sys 0m0.579s This patch: ~/git/git$ time ./git fsck Checking object directories: 100% (256/256), done. Checking objects: 100% (238410/238410), done. Checking connectivity: 236606, done. real0m22.368s user0m21.790s sys 0m0.539s Signed-off-by: Shawn Landden

[v7 PATCH] daemon: add systemd support

2015-04-08 Thread Shawn Landden
git-daemon's --systemd mode allows git-daemon to be connect-activated on one or more addresses or ports. Unlike --inetd[1], git-daemon is not spawned for every connection. [1]which systemd is compatible with using its Accept=yes mode Signed-off-by: Shawn Landden sh...@churchofgit.com --- Repond

[v7 PATCH] daemon: add systemd support

2015-04-07 Thread Shawn Landden
git-daemon's --systemd mode allows git-daemon to be connect-activated on one or more addresses or ports. Unlike --inetd[1], git-daemon is not spawned for every connection. [1]which systemd is compatible with using its Accept=yes mode Signed-off-by: Shawn Landden sh...@churchofgit.com --- Repond

[v6 PATCH] daemon: add systemd support

2015-04-06 Thread Shawn Landden
systemd supports git-daemon's existing --inetd mode as well. --systemd allows git-daemon has the advantage of allowing one git-daemon to listen to multiple interfaces as well as the system one(s), and more allow git-daemon to not be spawned on every connection. Signed-off-by: Shawn Landden sh

[v3RFC] systemd socket activation support

2015-04-03 Thread Shawn Landden
/x86_64-linux-gnu/libpcre.so.3 (0x7fea13e73000) libgpg-error.so.0 = /lib/x86_64-linux-gnu/libgpg-error.so.0 (0x7fea13c61000) ew...and only for two tiny functions. Signed-off-by: Shawn Landden sh...@churchofgit.com --- Documentation/git-daemon.txt | 25

[RFCv4 PATCH] daemon: add systemd support

2015-04-03 Thread Shawn Landden
systemd supports git-daemon's existing --inetd mode as well. Signed-off-by: Shawn Landden sh...@churchofgit.com --- Documentation/git-daemon.txt | 41 +++- Makefile | 14 -- daemon.c | 45

[RFCv5 PATCH] daemon: add systemd support

2015-04-03 Thread Shawn Landden
systemd supports git-daemon's existing --inetd mode as well. Signed-off-by: Shawn Landden sh...@churchofgit.com --- Documentation/git-daemon.txt | 41 +++- Makefile | 10 ++ daemon.c | 45

[PATCH] systemd socket activation support

2015-04-02 Thread Shawn Landden
From: Shawn Landden shawnland...@gmail.com v1.1: actually test... Signed-off-by: Shawn Landden sh...@churchofgit.com --- daemon.c | 35 +++--- git-daemon.service | 7 +++ git-daemon.socket | 9 sd-daemon.c| 132

[RFC 2] systemd socket activation support

2015-04-02 Thread Shawn Landden
systemd support git-daemon's --inetd mode as well. v2: actually test... Signed-off-by: Shawn Landden sh...@churchofgit.com --- Documentation/git-daemon.txt | 25 +++ Makefile | 1 + daemon.c | 35 -- sd-daemon.c | 152

Re: [PATCH] systemd socket activation support

2015-04-02 Thread Shawn Landden
On Thu, Apr 2, 2015 at 8:47 AM, Junio C Hamano gits...@pobox.com wrote: Eric Sunshine sunsh...@sunshineco.com writes: On Wed, Apr 1, 2015 at 9:23 PM, Shawn Landden sh...@churchofgit.com wrote: From: Shawn Landden shawnland...@gmail.com [PATCH] systemd socket activation support This patch

[PATCH] systemd socket activation support

2015-04-01 Thread Shawn Landden
From: Shawn Landden shawnland...@gmail.com Signed-off-by: Shawn Landden sh...@churchofgit.com --- daemon.c | 38 --- git-daemon.service | 6 +++ git-daemon.socket | 9 sd-daemon.c| 132 + sd-daemon.h