OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:node_blk
(Results
1 - 4
of
4
) sorted by null
/external/f2fs-tools/fsck/
dump.c
143
struct f2fs_node *
node_blk
;
local
168
node_blk
= calloc(BLOCK_SZ, 1);
169
dev_read_block(
node_blk
, ni.blk_addr);
175
le32_to_cpu(
node_blk
->dn.addr[i]));
179
le32_to_cpu(
node_blk
->in.nid[i]), ofs);
183
le32_to_cpu(
node_blk
->in.nid[i]), ofs);
187
free(
node_blk
);
191
struct f2fs_node *
node_blk
)
198
if((
node_blk
->i.i_inline & F2FS_INLINE_DATA)){
201
dev_write_dump(((unsigned char *)
node_blk
) + INLINE_DATA_OFFSET
273
struct f2fs_node *
node_blk
;
local
304
struct f2fs_node *
node_blk
;
local
323
struct f2fs_node *
node_blk
;
local
361
struct f2fs_node *
node_blk
;
local
[
all
...]
fsck.c
193
struct f2fs_node *
node_blk
,
221
ret = dev_read_block(
node_blk
, ni->blk_addr);
225
node_blk
->footer.nid !=
node_blk
->footer.ino) {
227
nid, le32_to_cpu(
node_blk
->footer.nid),
228
le32_to_cpu(
node_blk
->footer.ino));
232
node_blk
->footer.nid ==
node_blk
->footer.ino) {
234
nid, le32_to_cpu(
node_blk
->footer.nid),
235
le32_to_cpu(
node_blk
->footer.ino))
288
struct f2fs_node *
node_blk
= NULL;
local
318
struct f2fs_node *
node_blk
= NULL;
local
[
all
...]
f2fs.h
195
static inline void *inline_data_addr(struct f2fs_node *
node_blk
)
197
return (void *)&(
node_blk
->i.i_addr[1]);
200
static inline unsigned int ofs_of_node(struct f2fs_node *
node_blk
)
202
unsigned flag = le32_to_cpu(
node_blk
->footer.flag);
mount.c
622
struct f2fs_node *
node_blk
;
local
628
node_blk
= malloc(F2FS_BLKSIZE);
629
ASSERT(
node_blk
);
636
ret = dev_read_block(
node_blk
, addr);
638
sum_entry->nid =
node_blk
->footer.nid;
641
free(
node_blk
);
[
all
...]
Completed in 35 milliseconds