Home
last modified time | relevance | path

Searched refs:osd (Results 1 – 24 of 24) sorted by relevance

/linux-6.6.21/net/ceph/
Dosd_client.c49 static void link_request(struct ceph_osd *osd, struct ceph_osd_request *req);
50 static void unlink_request(struct ceph_osd *osd, struct ceph_osd_request *req);
51 static void link_linger(struct ceph_osd *osd,
53 static void unlink_linger(struct ceph_osd *osd,
55 static void clear_backoffs(struct ceph_osd *osd);
77 static inline void verify_osd_locked(struct ceph_osd *osd) in verify_osd_locked() argument
79 struct ceph_osd_client *osdc = osd->o_osdc; in verify_osd_locked()
81 WARN_ON(!(mutex_is_locked(&osd->lock) && in verify_osd_locked()
92 static inline void verify_osd_locked(struct ceph_osd *osd) { } in verify_osd_locked() argument
455 t->osd = CEPH_HOMELESS_OSD; in target_init()
[all …]
Ddebugfs.c108 pg->pgid.seed, pg->primary_temp.osd); in osdmap_show()
187 seq_printf(s, "osd%d\t%llu.%x\t", t->osd, t->pgid.pool, t->pgid.seed); in dump_target()
234 static void dump_requests(struct seq_file *s, struct ceph_osd *osd) in dump_requests() argument
238 mutex_lock(&osd->lock); in dump_requests()
239 for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) { in dump_requests()
246 mutex_unlock(&osd->lock); in dump_requests()
260 static void dump_linger_requests(struct seq_file *s, struct ceph_osd *osd) in dump_linger_requests() argument
264 mutex_lock(&osd->lock); in dump_linger_requests()
265 for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) { in dump_linger_requests()
272 mutex_unlock(&osd->lock); in dump_linger_requests()
[all …]
Dosdmap.c1475 u32 osd; in __decode_primary_temp() local
1477 ceph_decode_32_safe(p, end, osd, e_inval); in __decode_primary_temp()
1478 if (osd == (u32)-1 && incremental) in __decode_primary_temp()
1485 pg->primary_temp.osd = osd; in __decode_primary_temp()
1505 u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd) in ceph_get_primary_affinity() argument
1507 BUG_ON(osd >= map->max_osd); in ceph_get_primary_affinity()
1512 return map->osd_primary_affinity[osd]; in ceph_get_primary_affinity()
1515 static int set_primary_affinity(struct ceph_osdmap *map, int osd, u32 aff) in set_primary_affinity() argument
1517 BUG_ON(osd >= map->max_osd); in set_primary_affinity()
1533 map->osd_primary_affinity[osd] = aff; in set_primary_affinity()
[all …]
/linux-6.6.21/include/linux/ceph/
Dosdmap.h161 int osd; member
201 static inline bool ceph_osd_exists(struct ceph_osdmap *map, int osd) in ceph_osd_exists() argument
203 return osd >= 0 && osd < map->max_osd && in ceph_osd_exists()
204 (map->osd_state[osd] & CEPH_OSD_EXISTS); in ceph_osd_exists()
207 static inline bool ceph_osd_is_up(struct ceph_osdmap *map, int osd) in ceph_osd_is_up() argument
209 return ceph_osd_exists(map, osd) && in ceph_osd_is_up()
210 (map->osd_state[osd] & CEPH_OSD_UP); in ceph_osd_is_up()
213 static inline bool ceph_osd_is_down(struct ceph_osdmap *map, int osd) in ceph_osd_is_down() argument
215 return !ceph_osd_is_up(map, osd); in ceph_osd_is_down()
219 extern u32 ceph_get_primary_affinity(struct ceph_osdmap *map, int osd);
[all …]
Dosd_client.h232 int osd; member
316 struct ceph_osd *osd; member
/linux-6.6.21/drivers/media/test-drivers/vivid/
Dvivid-cec.c270 char osd[14]; in vivid_received() local
280 cec_ops_set_osd_string(msg, &disp_ctl, osd); in vivid_received()
283 strscpy(dev->osd, osd, sizeof(dev->osd)); in vivid_received()
287 strscpy(dev->osd, osd, sizeof(dev->osd)); in vivid_received()
291 dev->osd[0] = 0; in vivid_received()
Dvivid-kthread-cap.c53 u16 *cap, const u16 *osd) in copy_pix() argument
58 *cap = *osd; in copy_pix()
61 *osd != dev->chromakey_out) in copy_pix()
341 u8 *osd = vosdbuf + vid_overlay_y * stride_osd; in vivid_copy_buffer() local
349 dev->blended_line + offset, osd, in vivid_copy_buffer()
353 osd, (dev->loop_vid_overlay.width * twopixsize) / 2); in vivid_copy_buffer()
520 if (dev->osd[0]) { in vivid_fillbuff()
523 " OSD \"%s\"", dev->osd); in vivid_fillbuff()
529 dev->osd[0] = 0; in vivid_fillbuff()
DMakefile6 vivid-osd.o vivid-meta-cap.o vivid-meta-out.o \
Dvivid-core.h557 char osd[14]; member
/linux-6.6.21/drivers/media/pci/ivtv/
Divtvfb.c206 struct ivtv_osd_coords *osd) in ivtvfb_get_osd_coords() argument
213 osd->offset = data[0] - oi->video_rbase; in ivtvfb_get_osd_coords()
214 osd->max_offset = oi->display_width * oi->display_height * 4; in ivtvfb_get_osd_coords()
215 osd->pixel_stride = data[1]; in ivtvfb_get_osd_coords()
216 osd->lines = data[2]; in ivtvfb_get_osd_coords()
217 osd->x = data[3]; in ivtvfb_get_osd_coords()
218 osd->y = data[4]; in ivtvfb_get_osd_coords()
222 static int ivtvfb_set_osd_coords(struct ivtv *itv, const struct ivtv_osd_coords *osd) in ivtvfb_set_osd_coords() argument
226 oi->display_width = osd->pixel_stride; in ivtvfb_set_osd_coords()
227 oi->display_byte_stride = osd->pixel_stride * oi->bytes_per_pixel; in ivtvfb_set_osd_coords()
[all …]
/linux-6.6.21/Documentation/driver-api/media/drivers/
Dcx2341x-devel.rst3010 osd on/off
3011 0 = osd off
3012 1 = osd on
3015 Decoder + osd video timing
3023 Decoder + osd
3029 Decoder & osd ?? unknown
3045 Decoder + osd ?? unknown
3060 osd ?? unknown
3061 Appears to affect the osd position stability. The higher the value the
3065 osd ?? unknown
[all …]
/linux-6.6.21/Documentation/userspace-api/media/v4l/
Ddevices.rst16 dev-osd
Dvidioc-g-fbuf.rst40 :ref:`Video Overlay <overlay>` or :ref:`Video Output Overlay <osd>`
106 :ref:`osd`). For *Video Capture Overlays* this field will always be
282 ioctl, see :ref:`overlay` and :ref:`osd`.
286 and :ref:`osd`.
301 and :ref:`osd`.
315 and :ref:`osd`. Both chroma-keying are mutual exclusive to each
Dpixfmt-indexed.rst11 :ref:`Video Output Overlays <osd>` only. There are no ioctls to access
Dvidioc-querycap.rst197 - The device supports the :ref:`Video Output Overlay <osd>` (OSD)
Dpixfmt-packed-yuv.rst153 <overlay>` or :ref:`Video Output Overlay <osd>`.
Dpixfmt-rgb.rst32 and :ref:`video output overlay <osd>` devices) read the alpha component from
Dbuffer.rst426 - Buffer for video output overlay (OSD), see :ref:`osd`.
/linux-6.6.21/fs/ceph/
Dioctl.h64 __s64 osd; /* out: osd # */ member
Dioctl.c224 dl.osd = ceph_pg_to_acting_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()
/linux-6.6.21/drivers/net/ethernet/intel/i40e/
Di40e_main.c999 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in i40e_update_pf_stats() local
1008 &osd->eth.rx_bytes, &nsd->eth.rx_bytes); in i40e_update_pf_stats()
1012 &osd->eth.tx_bytes, &nsd->eth.tx_bytes); in i40e_update_pf_stats()
1015 &osd->eth.rx_discards, in i40e_update_pf_stats()
1020 &osd->eth.rx_unicast, in i40e_update_pf_stats()
1025 &osd->eth.rx_multicast, in i40e_update_pf_stats()
1030 &osd->eth.rx_broadcast, in i40e_update_pf_stats()
1035 &osd->eth.tx_unicast, in i40e_update_pf_stats()
1040 &osd->eth.tx_multicast, in i40e_update_pf_stats()
1045 &osd->eth.tx_broadcast, in i40e_update_pf_stats()
[all …]
/linux-6.6.21/include/uapi/linux/
Dcec-funcs.h1195 const char *osd) in cec_msg_set_osd_string() argument
1197 unsigned int len = strlen(osd); in cec_msg_set_osd_string()
1204 memcpy(msg->msg + 3, osd, len); in cec_msg_set_osd_string()
1209 char *osd) in cec_ops_set_osd_string() argument
1216 memcpy(osd, msg->msg + 3, len); in cec_ops_set_osd_string()
1217 osd[len] = '\0'; in cec_ops_set_osd_string()
/linux-6.6.21/drivers/video/fbdev/
Ds3c-fb.c60 #define OSD_BASE(win, variant) ((variant).osd + ((win) * (variant).osd_stride))
96 unsigned short osd; member
1711 .osd = VIDOSD_BASE,
1745 .osd = 0x28,
/linux-6.6.21/drivers/gpu/drm/panel/
DMakefile46 obj-$(CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS) += panel-osd-osd101t2587-53ts.o