/linux/drivers/firmware/ |
H A D | edd.c | 188 info->params.device_path.atapi.device, in edd_show_interface() 189 info->params.device_path.atapi.lun); in edd_show_interface() 192 info->params.device_path.ata.device); in edd_show_interface() 195 info->params.device_path.scsi.id, in edd_show_interface() 196 info->params.device_path.scsi.lun); in edd_show_interface() 199 info->params.device_path.usb.serial_number); in edd_show_interface() 202 info->params.device_path.i1394.eui); in edd_show_interface() 205 info->params.device_path.fibre.wwid, in edd_show_interface() 206 info->params.device_path.fibre.lun); in edd_show_interface() 209 info->params.device_path.i2o.identity_tag); in edd_show_interface() [all …]
|
/linux/tools/laptop/freefall/ |
H A D | freefall.c | 26 static char device_path[32]; variable 33 strncpy(device_path, device, sizeof(device_path) - 1); in set_unload_heads_path() 85 syslog(LOG_INFO, "%s %s disk head\n", str, device_path); in protect()
|
/linux/sound/xen/ |
H A D | xen_snd_front_cfg.c | 389 char *device_path; in cfg_device() local 395 device_path = kasprintf(GFP_KERNEL, "%s/%d", path, node_index); in cfg_device() 396 if (!device_path) in cfg_device() 399 str = xenbus_read(XBT_NIL, device_path, XENSND_FIELD_DEVICE_NAME, NULL); in cfg_device() 412 cfg_read_pcm_hw(device_path, parent_pcm_hw, &pcm_instance->pcm_hw); in cfg_device() 418 if (!xenbus_exists(XBT_NIL, device_path, node)) in cfg_device() 428 ret = cfg_get_stream_type(device_path, i, &num_pb, &num_cap); in cfg_device() 463 ret = cfg_stream(front_info, pcm_instance, device_path, i, in cfg_device() 471 kfree(device_path); in cfg_device()
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-class-rnbd-client | 13 > [path=<[srcaddr,]dstaddr>] device_path=<full path on remote side> 26 device_path=<full path on remote side> 62 device_path: 66 The rnbd_server prepends the <device_path> received from client 68 <dev_search_path>/<device_path> block device. On success, 76 client has this string "sessname=blya device_path=sda", then server 130 - If the 'device_path' provided during mapping contains slashes ("/"), 133 "device_path" provided.
|
H A D | sysfs-block-rnbd | 39 Description: Contains the path that was passed as "device_path" to the map_device
|
/linux/tools/testing/selftests/drivers/net/virtio_net/ |
H A D | virtio_net_common.sh | 37 local device_path="/sys/class/net/$dev/device/" 39 basename `realpath $device_path`
|
/linux/drivers/block/rnbd/ |
H A D | README | 31 # echo "sessname=blya path=ip:10.50.100.66 device_path=/dev/ram0" > \ 38 description for details); "device_path=" is the block device to be 52 and the "device_path" that was specified in the map_device operation. 57 different device namespaces for different sessions. See "device_path"
|
/linux/drivers/staging/gpib/lpvo_usb_gpib/ |
H A D | lpvo_usb_gpib.c | 438 char *device_path; in usb_gpib_attach() local 443 board, board->interface->name, board->minor, config->device_path, in usb_gpib_attach() 452 if (config->device_path) { in usb_gpib_attach() 455 NAME, __func__, config->device_path); in usb_gpib_attach() 460 device_path = kobject_get_path(&udev->dev.kobj, GFP_KERNEL); in usb_gpib_attach() 462 config->device_path); in usb_gpib_attach() 464 lpvo_usb_interfaces[j]->minor, device_path, match); in usb_gpib_attach() 465 kfree(device_path); in usb_gpib_attach() 1968 char *device_path; in skel_probe() local 2017 device_path = kobject_get_path(&dev->udev->dev.kobj, GFP_KERNEL); in skel_probe() [all …]
|
/linux/drivers/staging/gpib/common/ |
H A D | gpib_os.c | 1855 selection->device_path[sizeof(selection->device_path) - 1] = '\0'; in select_device_path_ioctl() 1856 kfree(config->device_path); in select_device_path_ioctl() 1857 config->device_path = NULL; in select_device_path_ioctl() 1858 if (strlen(selection->device_path) > 0) in select_device_path_ioctl() 1859 config->device_path = kstrdup(selection->device_path, GFP_KERNEL); in select_device_path_ioctl() 2220 char *device_path; in gpib_match_device_path() local 2222 device_path = kobject_get_path(&dev->kobj, GFP_KERNEL); in gpib_match_device_path() 2223 if (!device_path) { in gpib_match_device_path() 2227 if (strcmp(device_path_in, device_path) != 0) { in gpib_match_device_path() 2228 kfree(device_path); in gpib_match_device_path() [all …]
|
/linux/tools/testing/selftests/sgx/ |
H A D | load.c | 179 const char device_path[] = "/dev/sgx_enclave"; in encl_load() local 192 fd = open(device_path, O_RDWR); in encl_load() 198 ret = stat(device_path, &sb); in encl_load()
|
/linux/fs/btrfs/ |
H A D | dev-replace.c | 241 const char *device_path, in btrfs_init_dev_replace_tgtdev() argument 258 bdev_file = bdev_file_open_by_path(device_path, BLK_OPEN_WRITE, in btrfs_init_dev_replace_tgtdev() 261 btrfs_err(fs_info, "target device %s is invalid!", device_path); in btrfs_init_dev_replace_tgtdev() 293 device = btrfs_alloc_device(NULL, &devid, NULL, device_path); in btrfs_init_dev_replace_tgtdev() 299 ret = lookup_bdev(device_path, &device->devt); in btrfs_init_dev_replace_tgtdev()
|
H A D | volumes.c | 469 btrfs_get_bdev_and_sb(const char *device_path, blk_mode_t flags, void *holder, in btrfs_get_bdev_and_sb() argument 476 *bdev_file = bdev_file_open_by_path(device_path, flags, holder, NULL); in btrfs_get_bdev_and_sb() 481 device_path, flags, ret); in btrfs_get_bdev_and_sb() 2083 static void update_dev_time(const char *device_path) in update_dev_time() argument 2088 ret = kern_path(device_path, LOOKUP_FOLLOW, &path); in update_dev_time() 2584 const char *device_path) in btrfs_find_device_by_devspec() argument 2598 ret = btrfs_get_dev_args_from_path(fs_info, &args, device_path); in btrfs_find_device_by_devspec() 2778 int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path) in btrfs_init_new_device() argument 2796 bdev_file = bdev_file_open_by_path(device_path, BLK_OPEN_WRITE, in btrfs_init_new_device() 2825 device = btrfs_alloc_device(fs_info, NULL, NULL, device_path); in btrfs_init_new_device() [all …]
|
/linux/include/uapi/linux/ |
H A D | edd.h | 168 } device_path; member
|
/linux/drivers/nvme/target/ |
H A D | io-cmd-file.c | 41 ns->file = filp_open(ns->device_path, flags, 0); in nvmet_file_ns_enable() 45 ns->device_path, ret); in nvmet_file_ns_enable()
|
H A D | io-cmd-bdev.c | 90 ns->bdev_file = bdev_file_open_by_path(ns->device_path, in nvmet_bdev_ns_enable() 96 ns->device_path, ret); in nvmet_bdev_ns_enable()
|
H A D | trace.h | 62 strscpy_pad(name, req->ns->device_path, DISK_NAME_LEN); in __assign_req_name()
|
H A D | configfs.c | 500 return sprintf(page, "%s\n", to_nvmet_ns(item)->device_path); in nvmet_ns_device_path_show() 521 kfree(ns->device_path); in nvmet_ns_device_path_store() 523 ns->device_path = kmemdup_nul(page, len, GFP_KERNEL); in nvmet_ns_device_path_store() 524 if (!ns->device_path) in nvmet_ns_device_path_store() 535 CONFIGFS_ATTR(nvmet_ns_, device_path); 913 CONFIGFS_ATTR(nvmet_passthru_, device_path);
|
H A D | core.c | 491 ns->device_path); in nvmet_p2pmem_ns_enable() 510 ns->device_path); in nvmet_p2pmem_ns_enable() 546 dev_name(ctrl->p2p_client), ns->device_path); in nvmet_p2pmem_ns_add_p2p() 689 kfree(ns->device_path); in nvmet_ns_free()
|
H A D | nvmet.h | 116 const char *device_path; member
|
/linux/Documentation/admin-guide/device-mapper/ |
H A D | dm-dust.rst | 36 <device_path> <offset> <blksz> 39 <device_path>: 43 Offset to data area from start of device_path
|
/linux/drivers/staging/gpib/include/ |
H A D | gpib_types.h | 49 char *device_path; member
|
/linux/Documentation/usb/ |
H A D | authorization.rst | 60 echo 1 > $device_path/authorized
|
/linux/Documentation/trace/coresight/ |
H A D | coresight-ect.rst | 148 echo <chan> [<trigger>] > /<device_path>/<operation>
|
/linux/drivers/staging/gpib/fmh_gpib/ |
H A D | fmh_gpib.c | 1372 if (gpib_match_device_path(dev, config->device_path) == 0) in fmh_gpib_device_match()
|