Home
last modified time | relevance | path

Searched refs:idset (Results 1 – 4 of 4) sorted by relevance

/linux-3.4.99/drivers/s390/cio/
Didset.h13 struct idset;
15 void idset_free(struct idset *set);
16 void idset_clear(struct idset *set);
17 void idset_fill(struct idset *set);
19 struct idset *idset_sch_new(void);
20 void idset_sch_add(struct idset *set, struct subchannel_id id);
21 void idset_sch_del(struct idset *set, struct subchannel_id id);
22 int idset_sch_contains(struct idset *set, struct subchannel_id id);
23 int idset_sch_get_first(struct idset *set, struct subchannel_id *id);
24 int idset_is_empty(struct idset *set);
[all …]
Didset.c13 struct idset { struct
24 static struct idset *idset_new(int num_ssid, int num_id) in idset_new() argument
26 struct idset *set; in idset_new()
28 set = vmalloc(sizeof(struct idset) + bitmap_size(num_ssid, num_id)); in idset_new()
37 void idset_free(struct idset *set) in idset_free()
42 void idset_clear(struct idset *set) in idset_clear()
47 void idset_fill(struct idset *set) in idset_fill()
52 static inline void idset_add(struct idset *set, int ssid, int id) in idset_add()
57 static inline void idset_del(struct idset *set, int ssid, int id) in idset_del()
62 static inline int idset_contains(struct idset *set, int ssid, int id) in idset_contains()
[all …]
DMakefile5 obj-y += airq.o blacklist.o chsc.o cio.o css.o chp.o idset.o isc.o \
Dcss.c61 struct idset *set;
483 static struct idset *slow_subchannel_set;
588 struct idset *set = data; in __unset_registered()
598 struct idset *unreg_set; in css_schedule_eval_all_unreg()