Lines Matching refs:private
868 * The private flag check is essential for subpage as we need
869 * to store extra bitmap using page->private.
1705 struct btrfs_file_private *private = filp->private_data;
1707 if (private) {
1708 kfree(private->filldir_buf);
1709 free_extent_state(private->llseek_cached_state);
1710 kfree(private);
3457 struct btrfs_file_private *private = file->private_data;
3485 if (!private) {
3486 private = kzalloc(sizeof(*private), GFP_KERNEL);
3489 * The private structure is used only for speeding up multiple
3493 file->private_data = private;
3496 if (private)
3497 delalloc_cached_state = &private->llseek_cached_state;