Searched refs:idset (Results 1 - 4 of 4) sorted by relevance
/linux-4.1.27/drivers/s390/cio/ |
H A D | idset.h | 11 struct idset; 13 void idset_free(struct idset *set); 14 void idset_fill(struct idset *set); 16 struct idset *idset_sch_new(void); 17 void idset_sch_add(struct idset *set, struct subchannel_id id); 18 void idset_sch_del(struct idset *set, struct subchannel_id id); 19 void idset_sch_del_subseq(struct idset *set, struct subchannel_id schid); 20 int idset_sch_contains(struct idset *set, struct subchannel_id id); 21 int idset_is_empty(struct idset *set); 22 void idset_add_set(struct idset *to, struct idset *from);
|
H A D | idset.c | 9 #include "idset.h" 12 struct idset { struct 23 static struct idset *idset_new(int num_ssid, int num_id) idset_new() 25 struct idset *set; idset_new() 27 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); idset_new() 36 void idset_free(struct idset *set) idset_free() 41 void idset_fill(struct idset *set) idset_fill() 46 static inline void idset_add(struct idset *set, int ssid, int id) idset_add() 51 static inline void idset_del(struct idset *set, int ssid, int id) idset_del() 56 static inline int idset_contains(struct idset *set, int ssid, int id) idset_contains() 61 static inline int idset_get_first(struct idset *set, int *ssid, int *id) idset_get_first() 73 struct idset *idset_sch_new(void) idset_sch_new() 78 void idset_sch_add(struct idset *set, struct subchannel_id schid) idset_sch_add() 83 void idset_sch_del(struct idset *set, struct subchannel_id schid) idset_sch_del() 89 void idset_sch_del_subseq(struct idset *set, struct subchannel_id schid) idset_sch_del_subseq() 96 int idset_sch_contains(struct idset *set, struct subchannel_id schid) idset_sch_contains() 101 int idset_is_empty(struct idset *set) idset_is_empty() 106 void idset_add_set(struct idset *to, struct idset *from) idset_add_set()
|
H A D | Makefile | 5 obj-y += airq.o blacklist.o chsc.o cio.o css.o chp.o idset.o isc.o \
|
H A D | css.c | 31 #include "idset.h" 61 struct idset *set; 120 /* Skip idset allocation in case of known-only loop. */ for_each_subchannel_staged() 502 static struct idset *slow_subchannel_set; 613 struct idset *set = data; __unset_registered() 623 struct idset *unreg_set; css_schedule_eval_all_unreg()
|
Completed in 140 milliseconds