Searched refs:metadata_buffer (Results 1 - 3 of 3) sorted by relevance

/u-boot/fs/ext4/
H A Dext4_journal.h121 int ext4fs_put_metadata(char *metadata_buffer, uint32_t blknr);
H A Dext4_journal.c181 * metadata_buffer -- Buffer containing meta data
184 int ext4fs_put_metadata(char *metadata_buffer, uint32_t blknr) argument
187 if (!metadata_buffer) {
198 memcpy(dirty_block_ptr[gd_index]->buf, metadata_buffer, fs->blksz);
/u-boot/fs/squashfs/
H A Dsqfs.c104 unsigned char *metadata_buffer, *metadata, *table; local
111 metadata_buffer = NULL;
156 metadata_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
157 if (!metadata_buffer) {
162 if (sqfs_disk_read(start, n_blks, metadata_buffer) < 0) {
168 header = get_unaligned_le16(metadata_buffer + table_offset);
169 metadata = metadata_buffer + table_offset + SQFS_HEADER_SIZE;
200 free(metadata_buffer);

Completed in 94 milliseconds