Displaying 2 results from an estimated 2 matches for "cpio_append".
2010 Mar 11
2
[PATCH FOR DISCUSSION ONLY] Rewrite libguestfs-supermin-helper in C.
...onst char *repo);
+static void copy_to_fd (const void *buffer, size_t len);
+static void copy_file_to_fd (const char *filename);
+static void copy_file_len_to_fd (const char *filename, size_t len);
+static void copy_padding (size_t len);
+static char **load_file (const char *filename);
+static void cpio_append_fts_entry (FTSENT *entry);
+static void cpio_append_stat (const char *filename, struct stat *);
+static void cpio_append (const char *filename);
+static void cpio_append_trailer (void);
+
+static int out_fd = -1;
+static off_t out_offset = 0;
+
+/* Create the appliance.
+ *
+ * The initrd consists...
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...e for
- * greatest efficiency.
- */
-#define BUFFER_SIZE 65536
-
-static int out_fd = -1;
-static off_t out_offset = 0;
-
-static void write_file_to_fd (const char *filename);
-static void write_file_len_to_fd (const char *filename, size_t len);
-static void write_padding (size_t len);
-static void cpio_append_fts_entry (FTSENT *entry);
-static void cpio_append_stat (const char *filename, const struct stat *);
-static void cpio_append (const char *filename);
-static void cpio_append_trailer (void);
-
-/* Copy contents of buffer to out_fd and keep out_offset correct. */
-static void
-write_to_fd (const vo...