Lines Matching refs:sht
101 void scsi_proc_hostdir_add(struct scsi_host_template *sht) in scsi_proc_hostdir_add() argument
103 if (!sht->show_info) in scsi_proc_hostdir_add()
107 if (!sht->present++) { in scsi_proc_hostdir_add()
108 sht->proc_dir = proc_mkdir(sht->proc_name, proc_scsi); in scsi_proc_hostdir_add()
109 if (!sht->proc_dir) in scsi_proc_hostdir_add()
111 __func__, sht->proc_name); in scsi_proc_hostdir_add()
120 void scsi_proc_hostdir_rm(struct scsi_host_template *sht) in scsi_proc_hostdir_rm() argument
122 if (!sht->show_info) in scsi_proc_hostdir_rm()
126 if (!--sht->present && sht->proc_dir) { in scsi_proc_hostdir_rm()
127 remove_proc_entry(sht->proc_name, proc_scsi); in scsi_proc_hostdir_rm()
128 sht->proc_dir = NULL; in scsi_proc_hostdir_rm()
140 struct scsi_host_template *sht = shost->hostt; in scsi_proc_host_add() local
144 if (!sht->proc_dir) in scsi_proc_host_add()
149 sht->proc_dir, &proc_scsi_ops, shost); in scsi_proc_host_add()
153 sht->proc_name); in scsi_proc_host_add()