Displaying 2 results from an estimated 2 matches for "ipp2".
Did you mean:
ip32
2007 Feb 23
3
Ethernet bridge overflow ?
Hello,
I''ve setuped an ethernet bridge on a debian sarge 3.1 with l7-filter +
ipp2 shapper rules
The server is a supermicro p4sci + celeron pentium 4 base 3ghz + 512Mb
+ 2 ethernet e1000
One interface is connected to a cisco catalyst switch
The other interface is connected directly to a CMTS (a sort of router
for cable modem) configured as bridge too.
More than 20Mbps of bandw...
2012 Dec 13
1
[PATCH] smallft.c
...OK?
- Michael
Index: smallft.c
===================================================================
--- smallft.c (revision 18737)
+++ smallft.c (working copy)
@@ -388,7 +388,7 @@
}
L119:
- for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik];
+ memcpy(c2, ch2, idl1 * sizeof(float));
t1=0;
t2=ipp2*idl1;
@@ -628,7 +628,7 @@
if(na==1)return;
- for(i=0;i<n;i++)c[i]=ch[i];
+ memcpy(c, ch, n * sizeof(float));
}
static void dradb2(int ido,int l1,float *cc,float *ch,float *wa1){
@@ -1097,7 +1097,7 @@
L132:
if(ido==1)return;
- for(ik=0;ik<idl1;ik++)c2[ik]=ch2[ik];
+ memcpy...