/linux-4.4.14/drivers/media/platform/davinci/ |
D | vpbe_osd.c | 65 struct osd_state *osd = sd; in osd_read() local 67 return readl(osd->osd_base + offset); in osd_read() 72 struct osd_state *osd = sd; in osd_write() local 74 writel(val, osd->osd_base + offset); in osd_write() 81 struct osd_state *osd = sd; in osd_set() local 83 void __iomem *addr = osd->osd_base + offset; in osd_set() 93 struct osd_state *osd = sd; in osd_clear() local 95 void __iomem *addr = osd->osd_base + offset; in osd_clear() 106 struct osd_state *osd = sd; in osd_modify() local 108 void __iomem *addr = osd->osd_base + offset; in osd_modify() [all …]
|
D | vpbe.c | 836 !cfg->osd.module_name[0] || in vpbe_probe()
|
/linux-4.4.14/include/linux/ceph/ |
D | osdmap.h | 82 int osd; member 140 static inline int ceph_osd_exists(struct ceph_osdmap *map, int osd) in ceph_osd_exists() argument 142 return osd >= 0 && osd < map->max_osd && in ceph_osd_exists() 143 (map->osd_state[osd] & CEPH_OSD_EXISTS); in ceph_osd_exists() 146 static inline int ceph_osd_is_up(struct ceph_osdmap *map, int osd) in ceph_osd_is_up() argument 148 return ceph_osd_exists(map, osd) && in ceph_osd_is_up() 149 (map->osd_state[osd] & CEPH_OSD_UP); in ceph_osd_is_up() 152 static inline int ceph_osd_is_down(struct ceph_osdmap *map, int osd) in ceph_osd_is_down() argument 154 return !ceph_osd_is_up(map, osd); in ceph_osd_is_down() 163 extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd); [all …]
|
/linux-4.4.14/net/ceph/ |
D | osd_client.c | 30 static int __reset_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd); 900 struct ceph_osd *osd = req->r_osd; in __kick_linger_request() local 921 WARN_ON(req->r_osd || !osd); in __kick_linger_request() 922 req->r_osd = osd; in __kick_linger_request() 932 struct ceph_osd *osd) in __kick_osd_requests() argument 939 dout("%s osd%d\n", __func__, osd->o_osd); in __kick_osd_requests() 940 err = __reset_osd(osdc, osd); in __kick_osd_requests() 961 list_for_each_entry(req, &osd->o_requests, r_osd_item) { in __kick_osd_requests() 982 list_for_each_entry_safe(req, nreq, &osd->o_linger_requests, in __kick_osd_requests() 997 struct ceph_osd *osd = con->private; in osd_reset() local [all …]
|
D | osdmap.c | 913 u32 osd; in __decode_primary_temp() local 920 ceph_decode_32_safe(p, end, osd, e_inval); in __decode_primary_temp() 925 if (!incremental || osd != (u32)-1) { in __decode_primary_temp() 933 pg->primary_temp.osd = osd; in __decode_primary_temp() 960 u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd) in ceph_get_primary_affinity() argument 962 BUG_ON(osd >= map->max_osd); in ceph_get_primary_affinity() 967 return map->osd_primary_affinity[osd]; in ceph_get_primary_affinity() 970 static int set_primary_affinity(struct ceph_osdmap *map, int osd, u32 aff) in set_primary_affinity() argument 972 BUG_ON(osd >= map->max_osd); in set_primary_affinity() 987 map->osd_primary_affinity[osd] = aff; in set_primary_affinity() [all …]
|
D | debugfs.c | 103 pg->pgid.seed, pg->primary_temp.osd); in osdmap_show()
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-decoder-regs.txt | 239 osd on/off 240 0 = osd off 241 1 = osd on 244 Decoder + osd video timing 252 Decoder + osd 258 Decoder & osd ?? unknown 274 Decoder + osd ?? unknown 289 osd ?? unknown 290 Appears to affect the osd position stability. The higher the value the 294 osd ?? unknown [all …]
|
/linux-4.4.14/drivers/scsi/osd/ |
D | Kbuild | 14 # libosd.ko - osd-initiator library 18 # osd.ko - SCSI ULD and char-device 19 osd-y := osd_uld.o 20 obj-$(CONFIG_SCSI_OSD_ULD) += osd.o
|
/linux-4.4.14/Documentation/scsi/ |
D | osd.txt | 17 osd-initiator: 18 The main component of OSD in Kernel is the osd-initiator library. Its main 20 as its back-end data storage. Other clients are the other osd parts listed below. 22 osd-uld: 28 Is an OSD based Linux file system. It uses the osd-initiator and osd-uld, 32 osd target: 36 http://www.open-osd.org/bin/view/Main/OscOsdProject 37 There are several other target implementations. See http://open-osd.org for more 50 drivers/scsi/osd/ 61 osd_initiator is a low level implementation of an osd initiator encoder. [all …]
|
D | 00-INDEX | 79 osd.txt
|
/linux-4.4.14/drivers/block/ |
D | osdblk.c | 109 struct osd_dev *osd; /* associated OSD */ member 206 or = osd_start_request(osdev->osd, GFP_KERNEL); in osdblk_get_obj_size() 336 or = osd_start_request(osdev->osd, GFP_ATOMIC); in osdblk_rq_fn() 437 blk_queue_stack_limits(q, osd_request_queue(osdev->osd)); in osdblk_init_disk() 550 osdev->osd = osduld_path_lookup(osdev->osd_path); in class_osdblk_add() 551 if (IS_ERR(osdev->osd)) { in class_osdblk_add() 552 rc = PTR_ERR(osdev->osd); in class_osdblk_add() 578 osduld_put_device(osdev->osd); in class_osdblk_add() 630 osduld_put_device(osdev->osd); in class_osdblk_remove()
|
/linux-4.4.14/Documentation/filesystems/ |
D | exofs.txt | 23 http://open-osd.org 25 See Documentation/scsi/osd.txt for how to setup a working osd environment. 31 1. Download and compile exofs and open-osd initiator: 35 a. download open-osd including exofs source using: 36 [parent-directory]$ git clone git://git.open-osd.org/open-osd.git 39 [parent-directory]$ make -C KSRC=$(KER_DIR) open-osd 41 This will build both the open-osd initiator as well as the exofs kernel 44 open-osd/top-level-Makefile for an example. 47 See Documentation/scsi/osd.txt for farther instructions. Also see ./do-osd
|
/linux-4.4.14/drivers/media/pci/ivtv/ |
D | ivtvfb.c | 218 struct ivtv_osd_coords *osd) in ivtvfb_get_osd_coords() argument 225 osd->offset = data[0] - oi->video_rbase; in ivtvfb_get_osd_coords() 226 osd->max_offset = oi->display_width * oi->display_height * 4; in ivtvfb_get_osd_coords() 227 osd->pixel_stride = data[1]; in ivtvfb_get_osd_coords() 228 osd->lines = data[2]; in ivtvfb_get_osd_coords() 229 osd->x = data[3]; in ivtvfb_get_osd_coords() 230 osd->y = data[4]; in ivtvfb_get_osd_coords() 234 static int ivtvfb_set_osd_coords(struct ivtv *itv, const struct ivtv_osd_coords *osd) in ivtvfb_set_osd_coords() argument 238 oi->display_width = osd->pixel_stride; in ivtvfb_set_osd_coords() 239 oi->display_byte_stride = osd->pixel_stride * oi->bytes_per_pixel; in ivtvfb_set_osd_coords() [all …]
|
/linux-4.4.14/include/uapi/linux/dvb/ |
D | Kbuild | 7 header-y += osd.h
|
/linux-4.4.14/fs/ceph/ |
D | ioctl.c | 224 dl.osd = ceph_calc_pg_primary(osdc->osdmap, pgid); in ceph_ioctl_get_dataloc() 225 if (dl.osd >= 0) { in ceph_ioctl_get_dataloc() 227 ceph_osd_addr(osdc->osdmap, dl.osd); in ceph_ioctl_get_dataloc()
|
D | ioctl.h | 63 __s64 osd; /* out: osd # */ member
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | Makefile | 5 vivid-osd.o vivid-tpg.o vivid-tpg-colors.o
|
D | vivid-kthread-cap.c | 62 u16 *cap, const u16 *osd) in copy_pix() argument 72 *cap = *osd; in copy_pix() 91 *osd != dev->chromakey_out) in copy_pix() 371 u8 *osd = vosdbuf + vid_overlay_y * stride_osd; in vivid_copy_buffer() local 379 dev->blended_line + offset, osd, in vivid_copy_buffer() 383 osd, (dev->loop_vid_overlay.width * twopixsize) / 2); in vivid_copy_buffer()
|
/linux-4.4.14/include/media/davinci/ |
D | vpbe.h | 92 struct osd_config_info osd; member
|
/linux-4.4.14/drivers/net/ethernet/intel/i40e/ |
D | i40e_main.c | 800 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in i40e_update_link_xoff_rx() local 812 &osd->link_xoff_rx, &nsd->link_xoff_rx); in i40e_update_link_xoff_rx() 828 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in i40e_update_prio_xoff_rx() local 849 &osd->priority_xoff_rx[i], in i40e_update_prio_xoff_rx() 970 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in i40e_update_pf_stats() local 979 &osd->eth.rx_bytes, &nsd->eth.rx_bytes); in i40e_update_pf_stats() 983 &osd->eth.tx_bytes, &nsd->eth.tx_bytes); in i40e_update_pf_stats() 986 &osd->eth.rx_discards, in i40e_update_pf_stats() 991 &osd->eth.rx_unicast, in i40e_update_pf_stats() 996 &osd->eth.rx_multicast, in i40e_update_pf_stats() [all …]
|
/linux-4.4.14/drivers/video/fbdev/ |
D | s3c-fb.c | 63 #define OSD_BASE(win, variant) ((variant).osd + ((win) * (variant).osd_stride)) 98 unsigned short osd; member 1784 .osd = VIDOSD_BASE, 1815 .osd = VIDOSD_BASE, 1848 .osd = VIDOSD_BASE, 1880 .osd = VIDOSD_BASE, 1914 .osd = 0x28,
|
/linux-4.4.14/arch/arm/mach-davinci/ |
D | board-dm355-evm.c | 304 .osd = {
|
D | board-dm365-evm.c | 527 .osd = {
|
D | board-dm644x-evm.c | 713 .osd = {
|
/linux-4.4.14/Documentation/video4linux/ |
D | README.davinci-vpbe | 20 VPBE osd driver
|
/linux-4.4.14/drivers/staging/lustre/lustre/osc/ |
D | osc_io.c | 491 struct osc_device *osd = lu2osc_dev(obj->co_lu.lo_dev); in osc_io_setattr_end() local 495 osd->od_stats.os_lockless_truncates++; in osc_io_setattr_end()
|
D | osc_lock.c | 955 const struct osc_device *osd = lu2osc_dev(obj->co_lu.lo_dev); in osc_lock_to_lockless() local 972 osd->od_lockless_truncate)) { in osc_lock_to_lockless()
|
/linux-4.4.14/drivers/scsi/ |
D | Makefile | 159 obj-$(CONFIG_SCSI_OSD_INITIATOR) += osd/
|
D | Kconfig | 1770 source "drivers/scsi/osd/Kconfig"
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | pnfs.txt | 75 to automatically login to yet undiscovered iscsi/osd devices. For this the
|
/linux-4.4.14/Documentation/dvb/ |
D | faq.txt | 47 numpad pgup/pgdown (NP9 / NP3) keys to scroll through the channel osd
|
/linux-4.4.14/ |
D | MAINTAINERS | 7958 L: osd-dev@open-osd.org 7959 W: http://open-osd.org 7960 T: git git://git.open-osd.org/open-osd.git 7962 F: drivers/scsi/osd/
|
/linux-4.4.14/Documentation/ |
D | kernel-parameters.txt | 2345 osd-targets. Please see:
|