Jeff King <peff@peff.net> writes:It probably would not matter for sane repositories, but with thousands of refs, strlen() and prefixcmp() may start to hurt: struct ref *ref; int reflen; const char *msg = strchr(line, ' '); if (!msg) return NULL; reflen = msg - line; msg++; for (ref = refs; ref; ref = ref->next) { if (strncmp(line, ref->name, reflen) || line[reflen] != ' ') continue; ... return ref->next; } return NULL; but the "hint" optimization probably make the above micro-optimization irrelevant. It is preferred to have a multi-line comment like this: /* * A return value of -1 ... * ... * ... couldn't even get that far. */ Clever... taking advantage of the order receive-pack reports to optimize. Before receive_status() is called, can the refs already have the error status and string set? Hmm. When we did not receive status, we cannot tell what succeeded or failed, but what we _can_ tell the user is which refs we attempted to push. I wonder if robbing that information from the user with this "return -1" is a good idea. Perhaps we would instead want to set the status of all the refs to error and call print_push_status() anyway? I dunno. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
| Borislav Petkov | 2.6.23-rc1: no setup signature found... |
| Andrew Morton | Re: [PATCH] Memory management livelock |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Steven King | ti_usb_3410_5052 breakage in 2.6.24-rc1 |
git: | |
| Linus Torvalds | cleaner/better zlib sources? |
| Theodore Ts'o | [PATCH] Add --no-reuse-delta, --window, and --depth options to git-gc |
| Karl | Re: [PATCH] Add a birdview-on-the-source-code section to the user manual |
| Yossi Leybovich | corrupt object on git-gc |
| GVG GVG | ssh_exchange_identification: Connection closed by remote host |
| Richard Stallman | Re: Real men don't attack straw men |
| David Newman | setting dscp or tos bits |
| Stijn | Re: [i386/Thinkpad T41]USB mouse + Xorg obsd 4.1 |
| Quentin Garnier | [cube@cubidou.net: Re: Moving ethfoo in the main tree] |
| cube | Moving ethfoo in the main tree |
| Blair Sadewitz | PCI latency timer values |
| Oliver Gould | kqemu: driver(9)/filedesc(9) questions |
