Home
last modified time | relevance | path

Searched refs:bm1 (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/fs/nfsd/
H A Dnfsd.h450 static inline bool bmval_is_subset(const u32 *bm1, const u32 *bm2) in bmval_is_subset() argument
452 return !((bm1[0] & ~bm2[0]) || in bmval_is_subset()
453 (bm1[1] & ~bm2[1]) || in bmval_is_subset()
454 (bm1[2] & ~bm2[2])); in bmval_is_subset()
/openbmc/linux/kernel/power/
H A Dsnapshot.c1121 struct memory_bitmap *bm1, *bm2; in create_basic_memory_bitmaps() local
1129 bm1 = kzalloc(sizeof(struct memory_bitmap), GFP_KERNEL); in create_basic_memory_bitmaps()
1130 if (!bm1) in create_basic_memory_bitmaps()
1133 error = memory_bm_create(bm1, GFP_KERNEL, PG_ANY); in create_basic_memory_bitmaps()
1145 forbidden_pages_map = bm1; in create_basic_memory_bitmaps()
1156 memory_bm_free(bm1, PG_UNSAFE_CLEAR); in create_basic_memory_bitmaps()
1158 kfree(bm1); in create_basic_memory_bitmaps()
1171 struct memory_bitmap *bm1, *bm2; in free_basic_memory_bitmaps() local
1176 bm1 = forbidden_pages_map; in free_basic_memory_bitmaps()
1180 memory_bm_free(bm1, PG_UNSAFE_CLEAR); in free_basic_memory_bitmaps()
[all …]