Re: Git repository

2014-06-15 Thread Cyril Bonté
Hi Willy, On 15/06/2014 07:10, Willy Tarreau wrote: And not surprisingly I am experiencing delays as well when trying to clone http://git.haproxy.org/git/haproxy.git It should not be slow at all. I checked locally to ensure that there was no forwarding to the development server and it was

Re: Git repository

2014-06-15 Thread Willy Tarreau
On Sun, Jun 15, 2014 at 08:05:04AM +0200, Cyril Bonté wrote: Hi Willy, On 15/06/2014 07:10, Willy Tarreau wrote: And not surprisingly I am experiencing delays as well when trying to clone http://git.haproxy.org/git/haproxy.git It should not be slow at all. I checked locally to ensure

RE: Git repository

2014-06-15 Thread Lukas Tribus
Hi, But yesterday, when Sasha sent his email, I also made some tests : $ time git clone -q http://git.haproxy.org/git/haproxy.git/ real 4m37.767s user 0m27.260s sys 0m23.252s I'm not surprized, the repository had a ton of objects and had not been repacked in a year or so. I can

Re: Git repository

2014-06-15 Thread Willy Tarreau
Hi Lukas, On Sun, Jun 15, 2014 at 11:34:37AM +0200, Lukas Tribus wrote: But yesterday, when Sasha sent his email, I also made some tests : $ time git clone -q http://git.haproxy.org/git/haproxy.git/ real 4m37.767s user 0m27.260s sys 0m23.252s I'm not surprized, the repository

Re: Git repository

2014-06-15 Thread Baptiste
Le 15 juin 2014 12:11, Willy Tarreau w...@1wt.eu a écrit : Hi Lukas, On Sun, Jun 15, 2014 at 11:34:37AM +0200, Lukas Tribus wrote: But yesterday, when Sasha sent his email, I also made some tests : $ time git clone -q http://git.haproxy.org/git/haproxy.git/ real 4m37.767s

Re: Git repository

2014-06-15 Thread Willy Tarreau
On Sun, Jun 15, 2014 at 01:49:02PM +0200, Baptiste wrote: Excellent news. This feature will be helpfull for some dirty workarounds I have in mind :) It's quite common to have to repack repositories. It's done automatically on kernel.org for example. I do it on the development server from time

Trouvez le meilleur transporteur pour vos colis !

2014-06-15 Thread Solution Colis
Pour visualiser et se désabonner ce message, Veuillez, copier puis coller, l'adresse URL complète ci-dessous dans la barre d'adresse de votre navigateur et appuyer sur la touche Entrée de votre clavier. - - - - - - - - - - - - - - - - -

Re: [PATCH v7 1/3] MEDIUM: Add port_to_str helper

2014-06-15 Thread Simon Horman
On Mon, Jun 16, 2014 at 08:55:52AM +0900, Simon Horman wrote: On Fri, Jun 13, 2014 at 06:39:18PM +0200, Willy Tarreau wrote: On Fri, Jun 13, 2014 at 04:18:15PM +0900, Simon Horman wrote: This helper is similar to addr_to_str but tries to convert the port rather than the address of a

[PATCH v8] MEDIUM: Add port_to_str helper

2014-06-15 Thread Simon Horman
This helper is similar to addr_to_str but tries to convert the port rather than the address of a struct sockaddr_storage. This is in preparation for supporting an external agent check. Signed-off-by: Simon Horman ho...@verge.net.au -- v8 * Correct endian problem by calling ntohs(port) v7 *