Home
last modified time | relevance | path

Searched refs:new_sc (Results 1 – 7 of 7) sorted by relevance

/linux/drivers/uio/
H A Duio_hv_generic.c170 hv_uio_new_channel(struct vmbus_channel *new_sc) in hv_uio_new_channel() argument
172 struct hv_device *hv_dev = new_sc->primary_channel->device_obj; in hv_uio_new_channel()
178 ret = vmbus_open(new_sc, ring_bytes, ring_bytes, NULL, 0, in hv_uio_new_channel()
179 hv_uio_channel_cb, new_sc); in hv_uio_new_channel()
185 set_channel_read_mode(new_sc, HV_CALL_ISR); in hv_uio_new_channel()
186 ret = hv_create_ring_sysfs(new_sc, hv_uio_ring_mmap); in hv_uio_new_channel()
189 vmbus_close(new_sc); in hv_uio_new_channel()
/linux/fs/smb/server/mgmt/
H A Dtree_connect.c63 struct ksmbd_share_config *new_sc; in ksmbd_tree_conn_connect() local
66 new_sc = ksmbd_share_config_get(work, share_name); in ksmbd_tree_conn_connect()
67 if (!new_sc) { in ksmbd_tree_conn_connect()
73 sc = new_sc; in ksmbd_tree_conn_connect()
/linux/drivers/scsi/
H A Dstorvsc_drv.c681 static void handle_sc_creation(struct vmbus_channel *new_sc) in handle_sc_creation() argument
683 struct hv_device *device = new_sc->primary_channel->device_obj; in handle_sc_creation()
694 new_sc->max_pkt_size = STORVSC_MAX_PKT_SIZE; in handle_sc_creation()
696 new_sc->next_request_id_callback = storvsc_next_request_id; in handle_sc_creation()
698 ret = vmbus_open(new_sc, in handle_sc_creation()
703 storvsc_on_channel_callback, new_sc); in handle_sc_creation()
711 new_sc->change_target_cpu_callback = storvsc_change_target_cpu; in handle_sc_creation()
714 stor_device->stor_chns[new_sc->target_cpu] = new_sc; in handle_sc_creation()
715 cpumask_set_cpu(new_sc->target_cpu, &stor_device->alloced_cpus); in handle_sc_creation()
/linux/drivers/net/hyperv/
H A Drndis_filter.c1223 static void netvsc_sc_open(struct vmbus_channel *new_sc) in netvsc_sc_open() argument
1226 hv_get_drvdata(new_sc->primary_channel->device_obj); in netvsc_sc_open()
1229 u16 chn_index = new_sc->offermsg.offer.sub_channel_index; in netvsc_sc_open()
1245 set_channel_read_mode(new_sc, HV_CALL_ISR); in netvsc_sc_open()
1248 nvchan->channel = new_sc; in netvsc_sc_open()
1250 new_sc->next_request_id_callback = vmbus_next_request_id; in netvsc_sc_open()
1251 new_sc->request_addr_callback = vmbus_request_addr; in netvsc_sc_open()
1252 new_sc->rqstor_size = netvsc_rqstor_size(netvsc_ring_bytes); in netvsc_sc_open()
1253 new_sc->max_pkt_size = NETVSC_MAX_PKT_SIZE; in netvsc_sc_open()
1265 ret = vmbus_open(new_sc, netvsc_ring_bytes, in netvsc_sc_open()
/linux/include/linux/
H A Dhyperv.h898 void (*sc_creation_callback)(struct vmbus_channel *new_sc);
1122 void (*sc_cr_cb)(struct vmbus_channel *new_sc));
/linux/drivers/scsi/fnic/
H A Dfnic_scsi.c2503 bool new_sc) in fnic_clean_pending_aborts() argument
2554 bool new_sc = 0; in fnic_device_reset() local
2628 new_sc = 1; in fnic_device_reset()
2764 if (fnic_clean_pending_aborts(fnic, sc, new_sc)) { in fnic_device_reset()
2798 if (!new_sc) { in fnic_device_reset()
2811 if (new_sc) { in fnic_device_reset()
/linux/drivers/hv/
H A Dchannel_mgmt.c1668 void (*sc_cr_cb)(struct vmbus_channel *new_sc)) in vmbus_set_sc_create_callback() argument