search for: 03bf71f

Displaying 10 results from an estimated 10 matches for "03bf71f".

2016 Apr 05
0
[PATCH v3 3/5] daemon: Added internal_filesystem_walk command
...+- daemon/tsk.c | 233 +++++++++++++++++++++++++++++++++++++++++++++++++++ generator/actions.ml | 9 ++ src/MAX_PROC_NR | 2 +- 4 files changed, 246 insertions(+), 2 deletions(-) create mode 100644 daemon/tsk.c diff --git a/daemon/Makefile.am b/daemon/Makefile.am index beb7962..03bf71f 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -179,6 +179,7 @@ guestfsd_SOURCES = \ sync.c \ syslinux.c \ tar.c \ + tsk.c \ truncate.c \ umask.c \ upload.c \ @@ -209,7 +210,8 @@ guestfsd_LDADD = \ $(LIB_CLOCK_GETTIME) \ $(LIBINTL) \ $(SERVENT_LIB) \ - $(PCRE_LIBS) +...
2016 Apr 03
0
[PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...daemon/tsk.c | 225 +++++++++++++++++++++++++++++++++++++++++++++++++++ generator/actions.ml | 25 ++++++ src/MAX_PROC_NR | 2 +- 4 files changed, 254 insertions(+), 2 deletions(-) create mode 100644 daemon/tsk.c diff --git a/daemon/Makefile.am b/daemon/Makefile.am index beb7962..03bf71f 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -179,6 +179,7 @@ guestfsd_SOURCES = \ sync.c \ syslinux.c \ tar.c \ + tsk.c \ truncate.c \ umask.c \ upload.c \ @@ -209,7 +210,8 @@ guestfsd_LDADD = \ $(LIB_CLOCK_GETTIME) \ $(LIBINTL) \ $(SERVENT_LIB) \ - $(PCRE_LIBS) +...
2016 Apr 04
2
Re: [PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...++++++++++++++++++++++++++++++++++++++++++++ > generator/actions.ml | 25 ++++++ > src/MAX_PROC_NR | 2 +- > 4 files changed, 254 insertions(+), 2 deletions(-) > create mode 100644 daemon/tsk.c > > diff --git a/daemon/Makefile.am b/daemon/Makefile.am > index beb7962..03bf71f 100644 > --- a/daemon/Makefile.am > +++ b/daemon/Makefile.am > @@ -179,6 +179,7 @@ guestfsd_SOURCES = \ > sync.c \ > syslinux.c \ > tar.c \ > + tsk.c \ > truncate.c \ > umask.c \ > upload.c \ > @@ -209,7 +210,8 @@ guestfsd_LDADD = \ > $(LIB_CLOCK_GE...
2016 Apr 04
0
Re: [PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...++++++++++ > > generator/actions.ml | 25 ++++++ > > src/MAX_PROC_NR | 2 +- > > 4 files changed, 254 insertions(+), 2 deletions(-) > > create mode 100644 daemon/tsk.c > > > > diff --git a/daemon/Makefile.am b/daemon/Makefile.am > > index beb7962..03bf71f 100644 > > --- a/daemon/Makefile.am > > +++ b/daemon/Makefile.am > > @@ -179,6 +179,7 @@ guestfsd_SOURCES = \ > > sync.c \ > > syslinux.c \ > > tar.c \ > > + tsk.c \ > > truncate.c \ > > umask.c \ > >...
2016 Apr 03
7
[PATCH v2 0/5] Added filesystem_walk command
v2: - Increased the amount of collected information from the FS content. - Moved filesystem_walk0 as internal command. - Code improvement based on comments. - Adhere to project's coding style. - Better command documentation. - More robust tests. Patch ready for review, code available at: https://github.com/noxdafox/libguestfs/tree/filesystem_walk Matteo Cafasso (5): generator:
2016 Apr 05
10
[PATCH v3 0/5] Added filesystem_walk command
v3: - File size will be reported as - 1 if it cannot be retrieved. - Code improvements based on comments. Matteo Cafasso (5): generator: Added tsk_dirent struct configure: Added libtsk compile-time check daemon: Added internal_filesystem_walk command appliance: Added filesystem_walk command appliance: Added filesystem_walk command tests daemon/Makefile.am | 4 +-
2016 Apr 11
5
[PATCH v5 0/5] New API: filesystem_walk
v5: - fixed compile-time warning - removed unused flag enumeration - new version 1.33.19 Patch ready for review. Matteo Cafasso (5): generator: Added tsk_dirent struct configure: Added libtsk compile-time check New API: internal_filesystem_walk New API: filesystem_walk lib: Added filesystem_walk command tests daemon/Makefile.am | 4 +- daemon/tsk.c
2016 Apr 06
5
[PATCH v4 0/5] New API: filesystem_walk
v4: - Changed tsk_allocated struct field into tsk_flags. - Added optional dependency in documentation. - Use asprintf and perror instead of asprintf_nowarn and fprintf. - Ensure CLEANUP_FREE vars are initialised. - Reworked the function documentation. - Improved tests robustness. Matteo Cafasso (5): generator: Added tsk_dirent struct configure: Added libtsk compile-time check
2016 May 02
5
[PATCH v6 0/5] New API: filesystem_walk
v6: - added metadata reallocation flag in tsk_flags Certain filesystems separate file name structures and metadata ones. Therefore, deleted entries with file name structures in an unallocated state might point to metadata structures which have been reallocated to new files. A flag set to 1 is generally an indication that the information gathered from the metadata structure (file
2016 Jun 12
6
[PATCH v7 0/5] New API: filesystem_walk
v7: - iterate over output file instead of reading it into memory Instead of reading the whole output file in memory and iterating over the resulting buffer, use XDR primitives to directly iterate over the file itself. This should reduce the API memory consumption. Patch ready for review. Code available at: https://github.com/noxdafox/libguestfs/tree/filesystem_walk Matteo Cafasso