Searched refs:bdev (Results 26 - 50 of 414) sorted by relevance

1234567891011>>

/linux-master/drivers/pci/controller/
H A Dpcie-iproc-bcma.c29 struct bcma_device *bdev = container_of(pcie->dev, struct bcma_device, dev); local
31 return bcma_core_irq(bdev, 5);
34 static int iproc_bcma_pcie_probe(struct bcma_device *bdev) argument
36 struct device *dev = &bdev->dev;
50 pcie->base = bdev->io_addr;
56 pcie->base_addr = bdev->addr;
58 pcie->mem.start = bdev->addr_s[0];
59 pcie->mem.end = bdev->addr_s[0] + SZ_128M - 1;
69 bcma_set_drvdata(bdev, pcie);
74 static void iproc_bcma_pcie_remove(struct bcma_device *bdev) argument
[all...]
/linux-master/include/linux/
H A Dblkdev.h330 int blkdev_report_zones(struct block_device *bdev, sector_t sector,
332 int blkdev_zone_mgmt(struct block_device *bdev, enum req_op op,
622 unsigned int bdev_nr_zones(struct block_device *bdev);
657 static inline unsigned int bdev_max_open_zones(struct block_device *bdev) argument
659 return bdev->bd_disk->queue->limits.max_open_zones;
662 static inline unsigned int bdev_max_active_zones(struct block_device *bdev) argument
664 return bdev->bd_disk->queue->limits.max_active_zones;
668 static inline unsigned int bdev_nr_zones(struct block_device *bdev) argument
685 static inline unsigned int bdev_max_open_zones(struct block_device *bdev) argument
690 static inline unsigned int bdev_max_active_zones(struct block_device *bdev) argument
731 bdev_read_only(struct block_device *bdev) argument
743 get_start_sect(struct block_device *bdev) argument
748 bdev_nr_sectors(struct block_device *bdev) argument
753 bdev_nr_bytes(struct block_device *bdev) argument
807 bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk) argument
812 bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk) argument
845 bdev_get_queue(struct block_device *bdev) argument
1048 blkdev_issue_flush(struct block_device *bdev) argument
1098 bdev_is_partition(struct block_device *bdev) argument
1168 bdev_max_zone_append_sectors(struct block_device *bdev) argument
1173 bdev_max_segments(struct block_device *bdev) argument
1188 bdev_logical_block_size(struct block_device *bdev) argument
1198 bdev_physical_block_size(struct block_device *bdev) argument
1208 bdev_io_min(struct block_device *bdev) argument
1218 bdev_io_opt(struct block_device *bdev) argument
1230 bdev_zone_write_granularity(struct block_device *bdev) argument
1238 bdev_max_discard_sectors(struct block_device *bdev) argument
1243 bdev_discard_granularity(struct block_device *bdev) argument
1249 bdev_max_secure_erase_sectors(struct block_device *bdev) argument
1254 bdev_write_zeroes_sectors(struct block_device *bdev) argument
1264 bdev_nonrot(struct block_device *bdev) argument
1269 bdev_synchronous(struct block_device *bdev) argument
1275 bdev_stable_writes(struct block_device *bdev) argument
1281 bdev_write_cache(struct block_device *bdev) argument
1286 bdev_fua(struct block_device *bdev) argument
1291 bdev_nowait(struct block_device *bdev) argument
1296 bdev_is_zoned(struct block_device *bdev) argument
1301 bdev_zone_no(struct block_device *bdev, sector_t sec) argument
1312 bdev_op_is_zoned_write(struct block_device *bdev, enum req_op op) argument
1318 bdev_zone_sectors(struct block_device *bdev) argument
1327 bdev_offset_from_zone_start(struct block_device *bdev, sector_t sector) argument
1333 bdev_is_zone_start(struct block_device *bdev, sector_t sector) argument
1344 bdev_dma_alignment(struct block_device *bdev) argument
1349 bdev_iter_is_aligned(struct block_device *bdev, struct iov_iter *iter) argument
1369 block_size(struct block_device *bdev) argument
1552 invalidate_bdev(struct block_device *bdev) argument
1555 sync_blockdev(struct block_device *bdev) argument
1559 sync_blockdev_nowait(struct block_device *bdev) argument
[all...]
H A Dblk-crypto.h95 int blk_crypto_start_using_key(struct block_device *bdev,
98 void blk_crypto_evict_key(struct block_device *bdev,
101 bool blk_crypto_config_supported_natively(struct block_device *bdev,
103 bool blk_crypto_config_supported(struct block_device *bdev,
/linux-master/drivers/input/keyboard/
H A Dgpio_keys_polled.c48 struct gpio_keys_polled_dev *bdev = input_get_drvdata(input); local
54 __set_bit(button->code, bdev->rel_axis_seen);
59 __set_bit(button->code, bdev->abs_axis_seen);
89 struct gpio_keys_polled_dev *bdev = input_get_drvdata(input); local
90 const struct gpio_keys_platform_data *pdata = bdev->pdata;
93 memset(bdev->rel_axis_seen, 0, sizeof(bdev->rel_axis_seen));
94 memset(bdev->abs_axis_seen, 0, sizeof(bdev->abs_axis_seen));
97 struct gpio_keys_button_data *bdata = &bdev
124 struct gpio_keys_polled_dev *bdev = input_get_drvdata(input); local
135 struct gpio_keys_polled_dev *bdev = input_get_drvdata(input); local
233 struct gpio_keys_polled_dev *bdev; local
[all...]
/linux-master/block/
H A Dblk-zoned.c102 * @bdev: Target device
107 unsigned int bdev_nr_zones(struct block_device *bdev) argument
109 sector_t zone_sectors = bdev_zone_sectors(bdev);
111 if (!bdev_is_zoned(bdev))
113 return (bdev_nr_sectors(bdev) + zone_sectors - 1) >>
120 * @bdev: Target block device
137 int blkdev_report_zones(struct block_device *bdev, sector_t sector, argument
140 struct gendisk *disk = bdev->bd_disk;
143 if (!bdev_is_zoned(bdev) || WARN_ON_ONCE(!disk->fops->report_zones))
179 static int blkdev_zone_reset_all_emulated(struct block_device *bdev) argument
224 blkdev_zone_reset_all(struct block_device *bdev) argument
247 blkdev_zone_mgmt(struct block_device *bdev, enum req_op op, sector_t sector, sector_t nr_sectors) argument
323 blkdev_report_zones_ioctl(struct block_device *bdev, unsigned int cmd, unsigned long arg) argument
356 blkdev_truncate_zone_range(struct block_device *bdev, blk_mode_t mode, const struct blk_zone_range *zrange) argument
376 blkdev_zone_mgmt_ioctl(struct block_device *bdev, blk_mode_t mode, unsigned int cmd, unsigned long arg) argument
[all...]
/linux-master/drivers/nvme/host/
H A Dpr.c52 static int nvme_send_ns_head_pr_command(struct block_device *bdev, argument
55 struct nvme_ns_head *head = bdev->bd_disk->private_data;
97 static int nvme_send_pr_command(struct block_device *bdev, argument
100 if (nvme_disk_is_ns_head(bdev->bd_disk))
101 return nvme_send_ns_head_pr_command(bdev, c, data, data_len);
103 return nvme_send_ns_pr_command(bdev->bd_disk->private_data, c, data,
107 static int nvme_pr_command(struct block_device *bdev, u32 cdw10, argument
120 ret = nvme_send_pr_command(bdev, &c, data, sizeof(data));
127 static int nvme_pr_register(struct block_device *bdev, u64 old, argument
138 return nvme_pr_command(bdev, cdw1
141 nvme_pr_reserve(struct block_device *bdev, u64 key, enum pr_type type, unsigned flags) argument
154 nvme_pr_preempt(struct block_device *bdev, u64 old, u64 new, enum pr_type type, bool abort) argument
162 nvme_pr_clear(struct block_device *bdev, u64 key) argument
169 nvme_pr_release(struct block_device *bdev, u64 key, enum pr_type type) argument
176 nvme_pr_resv_report(struct block_device *bdev, void *data, u32 data_len, bool *eds) argument
202 nvme_pr_read_keys(struct block_device *bdev, struct pr_keys *keys_info) argument
244 nvme_pr_read_reservation(struct block_device *bdev, struct pr_held_reservation *resv) argument
[all...]
/linux-master/drivers/staging/media/atomisp/include/hmm/
H A Dhmm_bo.h33 #define check_bodev_null_return(bdev, exp) \
34 check_null_return(bdev, exp, \
37 #define check_bodev_null_return_void(bdev) \
38 check_null_return_void(bdev, \
113 struct hmm_bo_device *bdev; member in struct:hmm_buffer_object
142 struct hmm_buffer_object *hmm_bo_alloc(struct hmm_bo_device *bdev,
147 int hmm_bo_device_init(struct hmm_bo_device *bdev,
154 void hmm_bo_device_exit(struct hmm_bo_device *bdev);
159 int hmm_bo_device_inited(struct hmm_bo_device *bdev);
187 * struct hmm_buffer_object *bo = hmm_bo_create(bdev, pgn
[all...]
/linux-master/drivers/gpu/drm/i915/
H A Dintel_region_ttm.c35 return ttm_device_init(&dev_priv->bdev, i915_ttm_driver(),
46 ttm_device_fini(&dev_priv->bdev);
84 struct ttm_device *bdev = &mem->i915->bdev; local
88 ret = i915_ttm_buddy_man_init(bdev, mem_type, false,
95 mem->region_private = ttm_manager_type(bdev, mem_type);
134 drain_workqueue(mem->i915->bdev.wq);
141 ret = i915_ttm_buddy_man_fini(&mem->i915->bdev,
236 mock_bo.bdev = &mem->i915->bdev;
[all...]
H A Di915_ttm_buddy_manager.h52 int i915_ttm_buddy_man_init(struct ttm_device *bdev,
56 int i915_ttm_buddy_man_fini(struct ttm_device *bdev,
/linux-master/drivers/gpu/drm/ttm/
H A Dttm_resource.c67 lockdep_assert_held(&pos->first->bo->bdev->lru_lock);
71 man = ttm_manager_type(pos->first->bo->bdev, i);
151 struct ttm_device *bdev = bo->bdev; local
153 lockdep_assert_held(&bo->bdev->lru_lock);
156 list_move_tail(&res->lru, &bdev->pinned);
166 man = ttm_manager_type(bdev, res->mem_type);
195 man = ttm_manager_type(bo->bdev, place->mem_type);
196 spin_lock(&bo->bdev->lru_lock);
198 list_add_tail(&res->lru, &bo->bdev
219 struct ttm_device *bdev = man->bdev; local
276 ttm_resource_intersects(struct ttm_device *bdev, struct ttm_resource *res, const struct ttm_place *place, size_t size) argument
305 struct ttm_device *bdev = bo->bdev; local
347 ttm_resource_manager_init(struct ttm_resource_manager *man, struct ttm_device *bdev, uint64_t size) argument
373 ttm_resource_manager_evict_all(struct ttm_device *bdev, struct ttm_resource_manager *man) argument
615 ttm_kmap_iter_linear_io_init(struct ttm_kmap_iter_linear_io *iter_io, struct ttm_device *bdev, struct ttm_resource *mem) argument
677 ttm_kmap_iter_linear_io_fini(struct ttm_kmap_iter_linear_io *iter_io, struct ttm_device *bdev, struct ttm_resource *mem) argument
[all...]
H A Dttm_bo.c60 man = ttm_manager_type(bo->bdev, mem_type);
105 spin_lock(&bo->bdev->lru_lock);
111 spin_unlock(&bo->bdev->lru_lock);
120 struct ttm_device *bdev = bo->bdev; local
124 old_use_tt = !bo->resource || ttm_manager_type(bdev, bo->resource->mem_type)->use_tt;
125 new_use_tt = ttm_manager_type(bdev, mem->mem_type)->use_tt;
142 ret = ttm_tt_populate(bo->bdev, bo->ttm, ctx);
152 ret = bdev->funcs->move(bo, evict, ctx, mem, hop);
179 if (bo->bdev
323 struct ttm_device *bdev = bo->bdev; local
432 struct ttm_device *bdev = bo->bdev; local
496 struct ttm_device *bdev = bo->bdev; local
594 ttm_mem_evict_first(struct ttm_device *bdev, struct ttm_resource_manager *man, const struct ttm_place *place, struct ttm_operation_ctx *ctx, struct ww_acquire_ctx *ticket) argument
736 struct ttm_device *bdev = bo->bdev; local
781 struct ttm_device *bdev = bo->bdev; local
975 ttm_bo_init_reserved(struct ttm_device *bdev, struct ttm_buffer_object *bo, enum ttm_bo_type type, struct ttm_placement *placement, uint32_t alignment, struct ttm_operation_ctx *ctx, struct sg_table *sg, struct dma_resv *resv, void (*destroy) (struct ttm_buffer_object *)) argument
1068 ttm_bo_init_validate(struct ttm_device *bdev, struct ttm_buffer_object *bo, enum ttm_bo_type type, struct ttm_placement *placement, uint32_t alignment, bool interruptible, struct sg_table *sg, struct dma_resv *resv, void (*destroy) (struct ttm_buffer_object *)) argument
1100 struct ttm_device *bdev = bo->bdev; local
[all...]
H A Dttm_bo_util.c45 int ttm_mem_io_reserve(struct ttm_device *bdev, argument
52 if (!bdev->funcs->io_mem_reserve)
55 return bdev->funcs->io_mem_reserve(bdev, mem);
58 void ttm_mem_io_free(struct ttm_device *bdev, argument
67 if (bdev->funcs->io_mem_free)
68 bdev->funcs->io_mem_free(bdev, mem);
146 struct ttm_device *bdev = bo->bdev; local
616 struct ttm_device *bdev = bo->bdev; local
657 struct ttm_device *bdev = bo->bdev; local
691 struct ttm_device *bdev = bo->bdev; local
[all...]
H A Dttm_tt.c65 struct ttm_device *bdev = bo->bdev; local
93 if (bdev->pool.use_dma_alloc && cc_platform_has(CC_ATTR_GUEST_MEM_ENCRYPT)) {
98 bo->ttm = bdev->funcs->ttm_tt_create(bo, page_flags);
142 void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm) argument
144 bdev->funcs->ttm_tt_destroy(bdev, ttm);
257 * @bdev: TTM device structure.
264 int ttm_tt_swapout(struct ttm_device *bdev, struct ttm_tt *ttm, argument
299 ttm_tt_unpopulate(bdev, tt
311 ttm_tt_populate(struct ttm_device *bdev, struct ttm_tt *ttm, struct ttm_operation_ctx *ctx) argument
369 ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm) argument
[all...]
/linux-master/drivers/bluetooth/
H A Dhci_bcm.c324 struct bcm_device *bdev = data; local
326 bt_dev_dbg(bdev, "Host wake IRQ");
328 pm_runtime_get(bdev->dev);
329 pm_runtime_mark_last_busy(bdev->dev);
330 pm_runtime_put_autosuspend(bdev->dev);
337 struct bcm_device *bdev = bcm->dev; local
341 if (!bcm_device_exists(bdev)) {
346 if (bdev->irq <= 0) {
351 err = devm_request_irq(bdev->dev, bdev
530 struct bcm_device *bdev = NULL; local
739 struct bcm_device *bdev = NULL; local
764 struct bcm_device *bdev = dev_get_drvdata(dev); local
794 struct bcm_device *bdev = dev_get_drvdata(dev); local
823 struct bcm_device *bdev = dev_get_drvdata(dev); local
857 struct bcm_device *bdev = dev_get_drvdata(dev); local
1237 bcm_of_probe(struct bcm_device *bdev) argument
[all...]
/linux-master/drivers/gpu/drm/nouveau/
H A Dnouveau_sgdma.c20 nouveau_sgdma_destroy(struct ttm_device *bdev, struct ttm_tt *ttm) argument
31 nouveau_sgdma_bind(struct ttm_device *bdev, struct ttm_tt *ttm, struct ttm_resource *reg) argument
34 struct nouveau_drm *drm = nouveau_bdev(bdev);
58 nouveau_sgdma_unbind(struct ttm_device *bdev, struct ttm_tt *ttm) argument
70 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
/linux-master/drivers/nvme/target/
H A Dzns.c37 u8 zasl = nvmet_zasl(bdev_max_zone_append_sectors(ns->bdev));
38 struct gendisk *bd_disk = ns->bdev->bd_disk;
52 if (get_capacity(bd_disk) & (bdev_zone_sectors(ns->bdev) - 1))
60 if (ns->bdev->bd_disk->conv_zones_bitmap)
63 ret = blkdev_report_zones(ns->bdev, 0, bdev_nr_zones(ns->bdev),
68 ns->blksize_shift = blksize_bits(bdev_logical_block_size(ns->bdev));
127 if (!bdev_is_zoned(req->ns->bdev)) {
133 zsze = (bdev_zone_sectors(req->ns->bdev) << 9) >>
137 mor = bdev_max_open_zones(req->ns->bdev);
402 struct block_device *bdev = req->ns->bdev; local
481 struct block_device *bdev = req->ns->bdev; local
[all...]
H A Dio-cmd-bdev.c13 void nvmet_bdev_set_limits(struct block_device *bdev, struct nvme_id_ns *id) argument
16 const __le16 lpp0b = to0based(bdev_physical_block_size(bdev) /
17 bdev_logical_block_size(bdev));
43 id->npdg = to0based(bdev_discard_granularity(bdev) /
44 bdev_logical_block_size(bdev));
48 id->nows = to0based(bdev_io_opt(bdev) / bdev_logical_block_size(bdev));
55 ns->bdev = NULL;
62 struct blk_integrity *bi = bdev_get_integrity(ns->bdev);
99 ns->bdev
[all...]
/linux-master/drivers/gpu/drm/qxl/
H A Dqxl_ttm.c40 static struct qxl_device *qxl_get_qdev(struct ttm_device *bdev) argument
45 mman = container_of(bdev, struct qxl_mman, bdev);
71 int qxl_ttm_io_mem_reserve(struct ttm_device *bdev, argument
74 struct qxl_device *qdev = qxl_get_qdev(bdev);
100 static void qxl_ttm_backend_destroy(struct ttm_device *bdev, struct ttm_tt *ttm) argument
187 return ttm_range_man_init(&qdev->mman.bdev, type, false, size);
196 r = ttm_device_init(&qdev->mman.bdev, &qxl_bo_driver, NULL,
228 ttm_range_man_fini(&qdev->mman.bdev, TTM_PL_VRAM);
229 ttm_range_man_fini(&qdev->mman.bdev, TTM_PL_PRI
[all...]
/linux-master/drivers/gpu/drm/radeon/
H A Dradeon_ttm.c55 static int radeon_ttm_tt_bind(struct ttm_device *bdev, struct ttm_tt *ttm,
57 static void radeon_ttm_tt_unbind(struct ttm_device *bdev, struct ttm_tt *ttm);
59 struct radeon_device *radeon_get_rdev(struct ttm_device *bdev) argument
64 mman = container_of(bdev, struct radeon_mman, bdev);
71 return ttm_range_man_init(&rdev->mman.bdev, TTM_PL_VRAM,
77 return ttm_range_man_init(&rdev->mman.bdev, TTM_PL_TT,
143 rdev = radeon_get_rdev(bo->bdev);
197 r = radeon_ttm_tt_bind(bo->bdev, bo->ttm, new_mem);
206 rdev = radeon_get_rdev(bo->bdev);
256 radeon_ttm_io_mem_reserve(struct ttm_device *bdev, struct ttm_resource *mem) argument
323 radeon_ttm_tt_pin_userptr(struct ttm_device *bdev, struct ttm_tt *ttm) argument
384 radeon_ttm_tt_unpin_userptr(struct ttm_device *bdev, struct ttm_tt *ttm) argument
420 radeon_ttm_backend_bind(struct ttm_device *bdev, struct ttm_tt *ttm, struct ttm_resource *bo_mem) argument
456 radeon_ttm_backend_unbind(struct ttm_device *bdev, struct ttm_tt *ttm) argument
472 radeon_ttm_backend_destroy(struct ttm_device *bdev, struct ttm_tt *ttm) argument
527 radeon_ttm_tt_populate(struct ttm_device *bdev, struct ttm_tt *ttm, struct ttm_operation_ctx *ctx) argument
553 radeon_ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm) argument
588 radeon_ttm_tt_is_bound(struct ttm_device *bdev, struct ttm_tt *ttm) argument
599 radeon_ttm_tt_bind(struct ttm_device *bdev, struct ttm_tt *ttm, struct ttm_resource *bo_mem) argument
617 radeon_ttm_tt_unbind(struct ttm_device *bdev, struct ttm_tt *ttm) argument
631 radeon_ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm) argument
[all...]
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_preempt_mgr.c108 ttm_resource_manager_init(man, &adev->mman.bdev, (1 << 30));
116 ttm_set_driver_manager(&adev->mman.bdev, AMDGPU_PL_PREEMPT, man);
136 ret = ttm_resource_manager_evict_all(&adev->mman.bdev, man);
143 ttm_set_driver_manager(&adev->mman.bdev, AMDGPU_PL_PREEMPT, NULL);
/linux-master/include/drm/ttm/
H A Dttm_tt.h175 * @bdev: the ttm_device this object belongs to
180 void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm);
190 int ttm_tt_swapout(struct ttm_device *bdev, struct ttm_tt *ttm,
196 * @bdev: the ttm_device this object belongs to
202 int ttm_tt_populate(struct ttm_device *bdev, struct ttm_tt *ttm,
208 * @bdev: the ttm_device this object belongs to
213 void ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm);
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dbus.c23 return 0; /* bcma_bus_may_powerdown(dev->bdev->bus); */
32 return bcma_core_is_enabled(dev->bdev);
37 bcma_core_enable(dev->bdev, core_specific_flags);
42 bcma_core_disable(dev->bdev, core_specific_flags);
46 return bcma_read16(dev->bdev, offset);
50 return bcma_read32(dev->bdev, offset);
55 bcma_write16(dev->bdev, offset, value);
60 bcma_write32(dev->bdev, offset, value);
66 bcma_block_read(dev->bdev, buffer, count, offset, reg_width);
72 bcma_block_write(dev->bdev, buffe
[all...]
/linux-master/drivers/md/
H A Ddm-verity-loadpin.c53 bool dm_verity_loadpin_is_bdev_trusted(struct block_device *bdev) argument
61 if (bdev == NULL)
67 md = dm_get_md(bdev->bd_dev);
/linux-master/drivers/gpu/drm/loongson/
H A Dlsdc_ttm.c86 static void lsdc_ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *tt) argument
111 static int lsdc_ttm_tt_populate(struct ttm_device *bdev, argument
125 return ttm_pool_alloc(&bdev->pool, ttm, ctx);
128 static void lsdc_ttm_tt_unpopulate(struct ttm_device *bdev, argument
136 return ttm_pool_free(&bdev->pool, ttm);
219 static int lsdc_bo_reserve_io_mem(struct ttm_device *bdev, argument
222 struct lsdc_device *ldev = tdev_to_ldev(bdev);
290 struct lsdc_device *ldev = tdev_to_ldev(tbo->bdev);
325 struct lsdc_device *ldev = tdev_to_ldev(tbo->bdev);
409 struct ttm_device *bdev local
441 struct ttm_device *bdev = &ldev->bdev; local
579 struct ttm_device *bdev = &ldev->bdev; local
[all...]
/linux-master/drivers/s390/block/
H A Ddasd_ioctl.c39 dasd_ioctl_enable(struct block_device *bdev) argument
46 base = dasd_device_from_gendisk(bdev->bd_disk);
60 dasd_ioctl_disable(struct block_device *bdev) argument
67 base = dasd_device_from_gendisk(bdev->bd_disk);
83 set_capacity(bdev->bd_disk, 0);
250 dasd_ioctl_format(struct block_device *bdev, void __user *argp) argument
260 base = dasd_device_from_gendisk(bdev->bd_disk);
272 if (bdev_is_partition(bdev)) {
287 static int dasd_ioctl_check_format(struct block_device *bdev, void __user *argp) argument
296 base = dasd_device_from_gendisk(bdev
338 dasd_ioctl_release_space(struct block_device *bdev, void __user *argp) argument
381 dasd_ioctl_copy_pair_swap(struct block_device *bdev, void __user *argp) argument
577 dasd_set_read_only(struct block_device *bdev, bool ro) argument
610 dasd_ioctl(struct block_device *bdev, blk_mode_t mode, unsigned int cmd, unsigned long arg) argument
[all...]

Completed in 242 milliseconds

1234567891011>>