dev.c (b3bbcc5d1da1b654091dad15980b3d58fdae0fc6) | dev.c (ec1c86b25f4bdd9dce6436c0539d2a6ae676e1c4) |
---|---|
1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 --- 762 unchanged lines hidden (view full) --- 771 (page->flags & PAGE_FLAGS_CHECK_AT_PREP & 772 ~(1 << PG_locked | 773 1 << PG_referenced | 774 1 << PG_uptodate | 775 1 << PG_lru | 776 1 << PG_active | 777 1 << PG_workingset | 778 1 << PG_reclaim | | 1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 --- 762 unchanged lines hidden (view full) --- 771 (page->flags & PAGE_FLAGS_CHECK_AT_PREP & 772 ~(1 << PG_locked | 773 1 << PG_referenced | 774 1 << PG_uptodate | 775 1 << PG_lru | 776 1 << PG_active | 777 1 << PG_workingset | 778 1 << PG_reclaim | |
779 1 << PG_waiters))) { | 779 1 << PG_waiters | 780 LRU_GEN_MASK | LRU_REFS_MASK))) { |
780 dump_page(page, "fuse: trying to steal weird page"); 781 return 1; 782 } 783 return 0; 784} 785 786static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep) 787{ --- 1549 unchanged lines hidden --- | 781 dump_page(page, "fuse: trying to steal weird page"); 782 return 1; 783 } 784 return 0; 785} 786 787static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep) 788{ --- 1549 unchanged lines hidden --- |