OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:node_blk
(Results
1 - 3
of
3
) sorted by null
/external/f2fs-tools/fsck/
dump.c
142
struct f2fs_node *
node_blk
;
local
167
node_blk
= calloc(BLOCK_SZ, 1);
168
dev_read_block(
node_blk
, ni.blk_addr);
174
le32_to_cpu(
node_blk
->dn.addr[i]));
178
le32_to_cpu(
node_blk
->in.nid[i]), ofs);
182
le32_to_cpu(
node_blk
->in.nid[i]), ofs);
186
free(
node_blk
);
190
struct f2fs_node *
node_blk
)
197
if((
node_blk
->i.i_inline & F2FS_INLINE_DATA)){
200
dev_write_dump(((unsigned char *)
node_blk
) + INLINE_DATA_OFFSET
272
struct f2fs_node *
node_blk
;
local
307
struct f2fs_node *
node_blk
;
local
[
all
...]
fsck.c
176
struct f2fs_node *
node_blk
,
204
ret = dev_read_block(
node_blk
, ni->blk_addr);
208
node_blk
->footer.nid !=
node_blk
->footer.ino) {
210
nid, le32_to_cpu(
node_blk
->footer.nid),
211
le32_to_cpu(
node_blk
->footer.ino));
215
node_blk
->footer.nid ==
node_blk
->footer.ino) {
217
nid, le32_to_cpu(
node_blk
->footer.nid),
218
le32_to_cpu(
node_blk
->footer.ino))
271
struct f2fs_node *
node_blk
= NULL;
local
301
struct f2fs_node *
node_blk
= NULL;
local
[
all
...]
mount.c
577
struct f2fs_node *
node_blk
;
local
583
node_blk
= malloc(F2FS_BLKSIZE);
584
ASSERT(
node_blk
);
591
ret = dev_read_block(
node_blk
, addr);
593
sum_entry->nid =
node_blk
->footer.nid;
596
free(
node_blk
);
[
all
...]
Completed in 395 milliseconds