Message ID | 8956d4ca0810072156w4fcdf1barb2d740e10d97c380@mail.gmail.com |
---|---|
State | Accepted |
Headers | show |
On Wed, Oct 8, 2008 at 00:56, Mitch Davis wrote: > On Wed, Oct 8, 2008 at 1:38 PM, Mike Frysinger wrote: >> use `git diff` to generate a diff instead of posting the entire file >> as an attachment. > > The diff I attached previously was generated by git diff from HEAD. > It was not the entire file. sorry, my mistake >> really you should use git to send the patch > > Do you mean a git push? no. use the send-email function. read `man git-send-email` for more info. -mike
Hi Mike, On Wed, Oct 8, 2008 at 4:07 PM, Mike Frysinger <vapier.adi@gmail.com> wrote: > On Wed, Oct 8, 2008 at 00:56, Mitch Davis wrote: >> On Wed, Oct 8, 2008 at 1:38 PM, Mike Frysinger wrote: >>> use `git diff` to generate a diff instead of posting the entire file >>> as an attachment. >> > sorry, my mistake > >>> really you should use git to send the patch >> >> Do you mean a git push? > > no. use the send-email function. read `man git-send-email` for more info. - Who is best told about the broken git info links on the MTD git web page? - This process of submitting stuff with git-send-email is not documented on the MTD page, but newbies should use it anyway. Can I suggest the howto on the MTD page be updated to avoid people like me getting it wrong? - On my machine (Fedora 9) git-send-email is part of the git-email package, not standard git. Others may benefit from knowing this if it's part of that updated page. And finally: - I've sent my diff twice already. Can you have a look at it and comment please? :-) Thanks heaps, Mitch.
On Wed, 2008-10-08 at 17:06 +1100, Mitch Davis wrote: > Hi Mike, > > On Wed, Oct 8, 2008 at 4:07 PM, Mike Frysinger <vapier.adi@gmail.com> wrote: > > On Wed, Oct 8, 2008 at 00:56, Mitch Davis wrote: > >> On Wed, Oct 8, 2008 at 1:38 PM, Mike Frysinger wrote: > >>> use `git diff` to generate a diff instead of posting the entire file > >>> as an attachment. > >> > > sorry, my mistake > > > >>> really you should use git to send the patch > >> > >> Do you mean a git push? > > > > no. use the send-email function. read `man git-send-email` for more info. > > - Who is best told about the broken git info links on the MTD git web page? > > - This process of submitting stuff with git-send-email is not > documented on the MTD page, but newbies should use it anyway. Can I > suggest the howto on the MTD page be updated to avoid people like me > getting it wrong? > - On my machine (Fedora 9) git-send-email is part of the git-email > package, not standard git. Others may benefit from knowing this if > it's part of that updated page. MTD web site source may be found at: git://git.infradead.org/mtd-www.git Please, feel free to add such a HOWTO and send a patch.
On Wed, Oct 8, 2008 at 02:06, Mitch Davis wrote: > On Wed, Oct 8, 2008 at 4:07 PM, Mike Frysinger wrote: >> On Wed, Oct 8, 2008 at 00:56, Mitch Davis wrote: >>> On Wed, Oct 8, 2008 at 1:38 PM, Mike Frysinger wrote: >>>> really you should use git to send the patch >>> >>> Do you mean a git push? >> >> no. use the send-email function. read `man git-send-email` for more info. > > - This process of submitting stuff with git-send-email is not > documented on the MTD page, but newbies should use it anyway. Can I > suggest the howto on the MTD page be updated to avoid people like me > getting it wrong? > - On my machine (Fedora 9) git-send-email is part of the git-email > package, not standard git. Others may benefit from knowing this if > it's part of that updated page. it's the same method as any git repo. there isnt anything specific for the MTD project other than the e-mail address you send it to. if you want to know about git and how to use it, you should go to the git homepage: http://git.or.cz/ > - I've sent my diff twice already. Can you have a look at it and > comment please? :-) i have no commit access, but i already gave the patch a quick eye over and it looked fine to me. the b* suite of memory functions have long been deprecated in favor of the mem* functions. -mike
On Wed, Oct 08, 2008 at 05:06:07PM +1100, Mitch Davis wrote: > - I've sent my diff twice already. Can you have a look at it and >comment please? :-) Why do you use '\0' for the memcpy operand instead of just plain 0 or 0x0? josh
diff --git a/fec.c b/fec.c index 09e8453..6d9020f 100644 --- a/fec.c +++ b/fec.c @@ -47,19 +47,6 @@ #include <string.h> /* - * compatibility stuff - */ -#ifdef MSDOS /* but also for others, e.g. sun... */ -#define NEED_BCOPY -#define bcmp(a,b,n) memcmp(a,b,n) -#endif - -#ifdef NEED_BCOPY -#define bcopy(s, d, siz) memcpy((d), (s), (siz)) -#define bzero(d, siz) memset((d), '\0', (siz)) -#endif - -/* * stuff used for testing purposes only */ @@ -433,7 +420,7 @@ invert_mat(gf *src, int k) gf *id_row = NEW_GF_MATRIX(1, k); gf *temp_row = NEW_GF_MATRIX(1, k); - bzero(id_row, k*sizeof(gf)); + memset(id_row, '\0', k*sizeof(gf)); DEB( pivloops=0; pivswaps=0 ; /* diagnostic */ ) /* * ipiv marks elements already used as pivots. @@ -513,7 +500,7 @@ found_piv: * we can optimize the addmul). */ id_row[icol] = 1; - if (bcmp(pivot_row, id_row, k*sizeof(gf)) != 0) { + if (memcmp(pivot_row, id_row, k*sizeof(gf)) != 0) { for (p = src, ix = 0 ; ix < k ; ix++, p += k ) { if (ix != icol) { c = p[icol] ; @@ -704,7 +691,7 @@ fec_new(int k, int n) /* * the upper matrix is I so do not bother with a slow multiply */ - bzero(retval->enc_matrix, k*k*sizeof(gf) ); + memset(retval->enc_matrix, '\0', k*k*sizeof(gf) ); for (p = retval->enc_matrix, col = 0 ; col < k ; col++, p += k+1 ) *p = 1 ; free(tmp_m); @@ -731,10 +718,10 @@ fec_encode(struct fec_parms *code, gf *src[], gf *fec, int index, int sz) sz /= 2 ; if (index < k) - bcopy(src[index], fec, sz*sizeof(gf) ) ; + memcpy(fec, src[index], sz*sizeof(gf) ) ; else if (index < code->n) { p = &(code->enc_matrix[index*k] ); - bzero(fec, sz*sizeof(gf)); + memset(fec, '\0', sz*sizeof(gf)); for (i = 0; i < k ; i++) addmul(fec, src[i], p[i], sz ) ;