Lines Matching defs:gib
39 static struct kvm_s390_gib *gib;
3129 origin = xchg(&gib->alert_list_origin,
3204 * Returns: the nonspecific ISC (NISC) the gib alert mechanism
3226 return gib->nisc;
3242 * Returns: the nonspecific ISC (NISC) the gib alert mechanism
3288 if (!gib)
3292 free_page((unsigned long)gib);
3293 gib = NULL;
3301 KVM_EVENT(3, "%s", "gib not initialized, no AIV facility");
3305 gib = (struct kvm_s390_gib *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
3306 if (!gib) {
3318 gib->nisc = nisc;
3319 if (chsc_sgib((u32)(u64)gib)) {
3321 free_page((unsigned long)gib);
3322 gib = NULL;
3327 KVM_EVENT(3, "gib 0x%pK (nisc=%d) initialized", gib, gib->nisc);
3333 free_page((unsigned long)gib);
3334 gib = NULL;