Lines Matching full:private
47 cdev->private->options.fast = (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options_mask()
48 cdev->private->options.repall = (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options_mask()
49 cdev->private->options.pgroup = (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options_mask()
50 cdev->private->options.force = (flags & CCWDEV_ALLOW_FORCE) != 0; in ccw_device_set_options_mask()
51 cdev->private->options.mpath = (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options_mask()
72 cdev->private->options.repall) || in ccw_device_set_options()
74 cdev->private->options.fast)) in ccw_device_set_options()
76 cdev->private->options.fast |= (flags & CCWDEV_EARLY_NOTIFICATION) != 0; in ccw_device_set_options()
77 cdev->private->options.repall |= (flags & CCWDEV_REPORT_ALL) != 0; in ccw_device_set_options()
78 cdev->private->options.pgroup |= (flags & CCWDEV_DO_PATHGROUP) != 0; in ccw_device_set_options()
79 cdev->private->options.force |= (flags & CCWDEV_ALLOW_FORCE) != 0; in ccw_device_set_options()
80 cdev->private->options.mpath |= (flags & CCWDEV_DO_MULTIPATH) != 0; in ccw_device_set_options()
93 cdev->private->options.fast &= (flags & CCWDEV_EARLY_NOTIFICATION) == 0; in ccw_device_clear_options()
94 cdev->private->options.repall &= (flags & CCWDEV_REPORT_ALL) == 0; in ccw_device_clear_options()
95 cdev->private->options.pgroup &= (flags & CCWDEV_DO_PATHGROUP) == 0; in ccw_device_clear_options()
96 cdev->private->options.force &= (flags & CCWDEV_ALLOW_FORCE) == 0; in ccw_device_clear_options()
97 cdev->private->options.mpath &= (flags & CCWDEV_DO_MULTIPATH) == 0; in ccw_device_clear_options()
108 return cdev->private->flags.pgroup; in ccw_device_is_pathgroup()
120 return cdev->private->flags.mpath; in ccw_device_is_multipath()
147 if (cdev->private->state == DEV_STATE_NOT_OPER) in ccw_device_clear()
149 if (cdev->private->state != DEV_STATE_ONLINE && in ccw_device_clear()
150 cdev->private->state != DEV_STATE_W4SENSE) in ccw_device_clear()
155 cdev->private->intparm = intparm; in ccw_device_clear()
203 if (cdev->private->state == DEV_STATE_NOT_OPER) in ccw_device_start_timeout_key()
205 if (cdev->private->state == DEV_STATE_VERIFY || in ccw_device_start_timeout_key()
206 cdev->private->flags.doverify) { in ccw_device_start_timeout_key()
208 if (!cdev->private->flags.fake_irb) { in ccw_device_start_timeout_key()
209 cdev->private->flags.fake_irb = FAKE_CMD_IRB; in ccw_device_start_timeout_key()
210 cdev->private->intparm = intparm; in ccw_device_start_timeout_key()
212 cdev->private->dev_id.ssid, in ccw_device_start_timeout_key()
213 cdev->private->dev_id.devno, intparm, in ccw_device_start_timeout_key()
214 cdev->private->flags.fake_irb); in ccw_device_start_timeout_key()
220 if (cdev->private->state != DEV_STATE_ONLINE || in ccw_device_start_timeout_key()
236 cdev->private->intparm = intparm; in ccw_device_start_timeout_key()
384 if (cdev->private->state == DEV_STATE_NOT_OPER) in ccw_device_halt()
386 if (cdev->private->state != DEV_STATE_ONLINE && in ccw_device_halt()
387 cdev->private->state != DEV_STATE_W4SENSE) in ccw_device_halt()
392 cdev->private->intparm = intparm; in ccw_device_halt()
418 if (cdev->private->state == DEV_STATE_NOT_OPER) in ccw_device_resume()
420 if (cdev->private->state != DEV_STATE_ONLINE || in ccw_device_resume()
444 if (cdev->private->flags.esid == 0) in ccw_device_get_ciw()
447 if (cdev->private->dma_area->senseid.ciw[ciw_cnt].ct == ct) in ccw_device_get_ciw()
448 return cdev->private->dma_area->senseid.ciw + ciw_cnt; in ccw_device_get_ciw()
527 *dev_id = cdev->private->dev_id; in ccw_device_get_id()
553 if (cdev->private->state == DEV_STATE_VERIFY) { in ccw_device_tm_start_timeout_key()
555 if (!cdev->private->flags.fake_irb) { in ccw_device_tm_start_timeout_key()
556 cdev->private->flags.fake_irb = FAKE_TM_IRB; in ccw_device_tm_start_timeout_key()
557 cdev->private->intparm = intparm; in ccw_device_tm_start_timeout_key()
559 cdev->private->dev_id.ssid, in ccw_device_tm_start_timeout_key()
560 cdev->private->dev_id.devno, intparm, in ccw_device_tm_start_timeout_key()
561 cdev->private->flags.fake_irb); in ccw_device_tm_start_timeout_key()
567 if (cdev->private->state != DEV_STATE_ONLINE) in ccw_device_tm_start_timeout_key()
577 cdev->private->intparm = intparm; in ccw_device_tm_start_timeout_key()
699 if (cdev->private->state != DEV_STATE_ONLINE) in ccw_device_tm_intrg()
841 addr = __cio_gp_dma_zalloc(cdev->private->dma_pool, &cdev->dev, size, dma_handle); in ccw_device_dma_zalloc()
852 cio_gp_dma_free(cdev->private->dma_pool, cpu_addr, size); in ccw_device_dma_free()