Displaying 8 results from an estimated 8 matches for "tarhandle".
2005 Feb 15
3
3.0.11 client/clitar.c Fails to Compile on RedHat and AIX
...ror: redefinition of `dry_run'
client/clitar.c:94: error: `dry_run' previously defined here
client/clitar.c:1797: warning: data definition has no type or storage class
client/clitar.c:1798: error: parse error before '}' token
client/clitar.c:1799: error: conflicting declarations of `tarhandle'
client/clitar.c:118: error: `tarhandle' previously declared here
client/clitar.c:1799: warning: data definition has no type or storage class
client/clitar.c:1800: error: parse error before '}' token
make: *** [client/clitar.o] Error 1
RedHat:
Compiling client/clitar.c
client/clit...
2005 Feb 09
1
Samba 3.0.11 won't compile on Solaris 8
...f 'dry_run'
client/clitar.c:94: error: previous definition of 'dry_run' was here
client/clitar.c:1797: warning: data definition has no type or storage
class
client/clitar.c:1798: error: parse error before '}' token
client/clitar.c:1799: error: non-static declaration of 'tarhandle'
follows static declaration
client/clitar.c:118: error: previous declaration of 'tarhandle' was here
client/clitar.c:1799: warning: data definition has no type or storage
class
client/clitar.c:1800: error: parse error before '}' token
gmake: *** [client/clitar.o] Error 1
Than...
2002 Dec 20
1
smbclient and large file support
...19 15:50:20 2002
@@ -45,10 +45,10 @@
struct file_info_struct
{
- size_t size;
+ SMB_BIG_UINT size;
uint16 mode;
- int uid;
- int gid;
+ uid_t uid;
+ gid_t gid;
/* These times are normally kept in GMT */
time_t mtime;
time_t atime;
@@ -125,11 +125,11 @@
int blocksize=20;
int tarhandle;
-static void writetarheader(int f, char *aname, int size, time_t mtime,
+static void writetarheader(int f, char *aname, SMB_BIG_UINT size, time_t mtime,
char *amode, unsigned char ftype);
static void do_atar(char *rname,char *lname,file_info *finfo1);
static void do_tar(file_info *fin...
2005 Feb 09
1
build error on samba 3.0.11 to be domain member w/ W2k ADS
...ror: redefinition of `dry_run'
client/clitar.c:94: error: `dry_run' previously
defined here
client/clitar.c:1797: warning: data definition has no
type or storage class
client/clitar.c:1798: error: parse error before '}'
token
client/clitar.c:1799: error: conflicting declarations
of `tarhandle'
client/clitar.c:118: error: `tarhandle' previously
declared here
client/clitar.c:1799: warning: data definition has no
type or storage class
client/clitar.c:1800: error: parse error before '}'
token
client/clitar.c:1775: error: register name not
specified for `__result'
client/...
1999 Jun 15
0
FIX for smbtar zero length files... (Cont :)
..._size = 65520;
int datalen=0;
+ /* Zero Byte Error retry setup */
+ int zero_retry=0;
+ int max_zero_retry=5;
struct timeval tp_start;
GetTimeOfDay(&tp_start);
@@ -717,6 +720,8 @@
/* write a tar header, don't bother with mode - just set to
100644 */
writetarheader(tarhandle, rname, finfo.size, finfo.mtime, "100644
\0", ftype);
+ zero_retry=0;
+
while (nread < finfo.size && !close_done) {
DEBUG(3,("nread=%d\n",nread));
@@ -737,8 +742,15 @@
nread += datalen;
if (datalen == 0)...
2000 Dec 16
0
bug fix for smbclient/tar
...o.size) {
+ datalen -= nread - finfo.size;
+ DEBUG(0,("File size change - truncating %s to %d bytes\n",
+ finfo.name, (int)finfo.size));
+ }
+
/* add received bits of file to buffer - dotarbuf will
* write out in 512 byte intervals */
if (dotarbuf(tarhandle,data,datalen) != datalen) {
@@ -736,7 +747,6 @@
break;
}
- nread += datalen;
if (datalen == 0) {
DEBUG(0,("Error reading file %s. Got 0 bytes\n", rname));
break;
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...29 0 0.02 90100 0 0.01 90100
t9.ll 2 19777 0 0.01 19748 0 0.01 19748
tabinit.ll 1 14119 0 0.01 14088 0 0.01 14088
tableau.ll 84 143254 2 0.02 143678 0 0.02 143237
table.ll 0 1579 0 0.01 1549 0 0.01 1549
tables.ll 0 138426 0 0.03 138395 0 0.03 138395
takehiro.ll 13 142905 0 0.02 142874 0 0.02 135038
TarHandler.ll 47 276066 0 0.03 276029 0 0.03 277983
TarHandlerOut.ll 10 111777 0 0.02 111740 0 0.02 111740
TarHeader.ll 0 1646 0 0.01 1609 0 0.01 1609
TarIn.ll 2 174170 0 0.02 174133 0 0.02 174133
TarOut.ll 12 129179 0 0.02 129142 0 0.02 129142
TarRegister.ll 3 5838 0 0.01 5801 0 0.01 5801
TarUpdate.ll 4 114...