f2fs crypto: add encryption support in read/write paths
[deliverable/linux.git] / fs / f2fs / node.c
index 771725650c0d053b45ad456f28fe8f1b749038a6..d9c52424bac21555f5a84a2f8ef9f7f2dc7751c5 100644 (file)
@@ -1003,6 +1003,7 @@ static int read_node_page(struct page *page, int rw)
                .type = NODE,
                .rw = rw,
                .page = page,
+               .encrypted_page = NULL,
        };
 
        get_node_info(sbi, page->index, &ni);
@@ -1299,6 +1300,7 @@ static int f2fs_write_node_page(struct page *page,
                .type = NODE,
                .rw = (wbc->sync_mode == WB_SYNC_ALL) ? WRITE_SYNC : WRITE,
                .page = page,
+               .encrypted_page = NULL,
        };
 
        trace_f2fs_writepage(page, NODE);
This page took 0.025585 seconds and 5 git commands to generate.