Lines Matching defs:host
95 * scsi_proc_hostdir_add - Create directory in /proc for a scsi host
117 * scsi_proc_hostdir_rm - remove directory in /proc for a scsi host
135 * scsi_proc_host_add - Add entry for this host to appropriate /proc dir
136 * @shost: host to add
151 printk(KERN_ERR "%s: Failed to register host %d in"
157 * scsi_proc_host_rm - remove this host's entry from /proc
158 * @shost: which host
171 * proc_print_scsidevice - return data about this host
190 sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
230 * @host: user-supplied decimal integer
243 static int scsi_add_single_device(uint host, uint channel, uint id, uint lun)
248 shost = scsi_host_lookup(host);
263 * @host: user-supplied decimal integer
271 static int scsi_remove_single_device(uint host, uint channel, uint id, uint lun)
277 shost = scsi_host_lookup(host);
313 int host, channel, id, lun;
345 host = (p < end) ? simple_strtoul(p, &p, 0) : 0;
350 err = scsi_add_single_device(host, channel, id, lun);
359 host = (p < end) ? simple_strtoul(p, &p, 0) : 0;
364 err = scsi_remove_single_device(host, channel, id, lun);