inline.c (fcc85a4d86b5018f08717160c89c0eb50afd1dca) inline.c (4375a33664de17af9032b5f491a49bd256670927)
1/*
2 * fs/f2fs/inline.c
3 * Copyright (c) 2013, Intel Corporation
4 * Authors: Huajun Li <huajun.li@intel.com>
5 * Haicheng Li <haicheng.li@intel.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

--- 99 unchanged lines hidden (view full) ---

108int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page)
109{
110 void *src_addr, *dst_addr;
111 struct f2fs_io_info fio = {
112 .sbi = F2FS_I_SB(dn->inode),
113 .type = DATA,
114 .rw = WRITE_SYNC | REQ_PRIO,
115 .page = page,
1/*
2 * fs/f2fs/inline.c
3 * Copyright (c) 2013, Intel Corporation
4 * Authors: Huajun Li <huajun.li@intel.com>
5 * Haicheng Li <haicheng.li@intel.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

--- 99 unchanged lines hidden (view full) ---

108int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page)
109{
110 void *src_addr, *dst_addr;
111 struct f2fs_io_info fio = {
112 .sbi = F2FS_I_SB(dn->inode),
113 .type = DATA,
114 .rw = WRITE_SYNC | REQ_PRIO,
115 .page = page,
116 .encrypted_page = NULL,
116 };
117 int dirty, err;
118
119 f2fs_bug_on(F2FS_I_SB(dn->inode), page->index);
120
121 if (!f2fs_exist_data(dn->inode))
122 goto clear_out;
123

--- 425 unchanged lines hidden ---
117 };
118 int dirty, err;
119
120 f2fs_bug_on(F2FS_I_SB(dn->inode), page->index);
121
122 if (!f2fs_exist_data(dn->inode))
123 goto clear_out;
124

--- 425 unchanged lines hidden ---