Home
last modified time | relevance | path

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

/linux/net/ceph/
H A Dosd_client.c41 * are described by the osd map.
49 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
1180 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node); DEFINE_RB_FUNCS() local
1202 osd_homeless(struct ceph_osd * osd) osd_homeless() argument
1207 osd_registered(struct ceph_osd * osd) osd_registered() argument
1217 osd_init(struct ceph_osd * osd) osd_init() argument
1239 osd_cleanup(struct ceph_osd * osd) osd_cleanup() argument
1262 struct ceph_osd *osd; create_osd() local
1279 get_osd(struct ceph_osd * osd) get_osd() argument
1290 put_osd(struct ceph_osd * osd) put_osd() argument
1299 DEFINE_RB_FUNCS(osd,struct ceph_osd,o_osd,o_node) DEFINE_RB_FUNCS() argument
1315 maybe_move_osd_to_lru(struct ceph_osd * osd) maybe_move_osd_to_lru() argument
1322 __remove_osd_from_lru(struct ceph_osd * osd) __remove_osd_from_lru() argument
1338 close_osd(struct ceph_osd * osd) close_osd() argument
1379 reopen_osd(struct ceph_osd * osd) reopen_osd() argument
1418 struct ceph_osd *osd; lookup_create_osd() local
1448 link_request(struct ceph_osd * osd,struct ceph_osd_request * req) link_request() argument
1467 unlink_request(struct ceph_osd * osd,struct ceph_osd_request * req) unlink_request() argument
2018 struct ceph_osd *osd = req->r_osd; should_plug_request() local
2318 struct ceph_osd *osd = req->r_osd; send_request() local
2384 struct ceph_osd *osd; __submit_request() local
2856 unlink_linger(struct ceph_osd * osd,struct ceph_osd_linger_request * lreq) unlink_linger() argument
3261 struct ceph_osd *osd; linger_submit() local
3448 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node); handle_timeout() local
3506 struct ceph_osd *osd = list_first_entry(&slow_osds, handle_timeout() local
3524 struct ceph_osd *osd, *nosd; handle_osds_timeout() local
3749 handle_reply(struct ceph_osd * osd,struct ceph_msg * msg) handle_reply() argument
3912 struct ceph_osd *osd; recalc_linger_target() local
3927 scan_requests(struct ceph_osd * osd,bool force_resend,bool cleared_full,bool check_pool_cleared_full,struct rb_root * need_resend,struct list_head * need_resend_linger) scan_requests() argument
4061 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node); handle_one_map() local
4104 struct ceph_osd *osd; kick_requests() local
4247 kick_osd_requests(struct ceph_osd * osd) kick_osd_requests() argument
4279 struct ceph_osd *osd = con->private; osd_fault() local
4398 handle_backoff_block(struct ceph_osd * osd,struct MOSDBackoff * m) handle_backoff_block() argument
4457 handle_backoff_unblock(struct ceph_osd * osd,const struct MOSDBackoff * m) handle_backoff_unblock() argument
4515 handle_backoff(struct ceph_osd * osd,struct ceph_msg * msg) handle_backoff() argument
4729 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node); ceph_osdc_sync() local
5187 struct ceph_osd *osd = rb_entry(n, struct ceph_osd, o_node); ceph_osdc_reopen_osds() local
5278 struct ceph_osd *osd = rb_entry(rb_first(&osdc->osds), ceph_osdc_stop() local
5361 struct ceph_osd *osd = con->private; osd_dispatch() local
5414 struct ceph_osd *osd = con->private; get_reply() local
5507 struct ceph_osd *osd = con->private; osd_alloc_msg() local
5531 struct ceph_osd *osd = con->private; osd_get_con() local
5539 struct ceph_osd *osd = con->private; osd_put_con() local
[all...]
H A Ddebugfs.c113 pg->pgid.seed, pg->primary_temp.osd); in osdmap_show()
193 seq_printf(s, "osd%d\t%llu.%x\t", t->osd, t->pgid.pool, t->pgid.seed); in dump_target()
240 static void dump_requests(struct seq_file *s, struct ceph_osd *osd) in dump_requests() argument
244 mutex_lock(&osd->lock); in dump_requests()
245 for (n = rb_first(&osd->o_requests); n; n = rb_next(n)) { in dump_requests()
252 mutex_unlock(&osd->lock); in dump_requests()
266 static void dump_linger_requests(struct seq_file *s, struct ceph_osd *osd) in dump_linger_requests() argument
270 mutex_lock(&osd->lock); in dump_linger_requests()
271 for (n = rb_first(&osd->o_linger_requests); n; n = rb_next(n)) { in dump_linger_requests()
278 mutex_unlock(&osd->lock); in dump_linger_requests()
[all …]
H A 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
1510 return map->osd_primary_affinity[osd]; in ceph_get_primary_affinity()
1513 static int set_primary_affinity(struct ceph_osdmap *map, int osd, u32 aff) in set_primary_affinity() argument
1529 map->osd_primary_affinity[osd] = aff; in set_primary_affinity()
1571 u32 osd, aff; in decode_new_primary_affinity() local
1574 ceph_decode_32_safe(p, end, osd, e_inval); in decode_new_primary_affinity()
[all …]
/linux/include/linux/ceph/
H A 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 …]
H A Dosd_client.h232 int osd; member
316 struct ceph_osd *osd; member
/linux/drivers/media/pci/ivtv/
H A Divtvfb.c207 struct ivtv_osd_coords *osd) in ivtvfb_get_osd_coords() argument
214 osd->offset = data[0] - oi->video_rbase; in ivtvfb_get_osd_coords()
215 osd->max_offset = oi->display_width * oi->display_height * 4; in ivtvfb_get_osd_coords()
216 osd->pixel_stride = data[1]; in ivtvfb_get_osd_coords()
217 osd->lines = data[2]; in ivtvfb_get_osd_coords()
218 osd->x = data[3]; in ivtvfb_get_osd_coords()
219 osd->y = data[4]; in ivtvfb_get_osd_coords()
223 static int ivtvfb_set_osd_coords(struct ivtv *itv, const struct ivtv_osd_coords *osd) in ivtvfb_set_osd_coords() argument
227 oi->display_width = osd->pixel_stride; in ivtvfb_set_osd_coords()
228 oi->display_byte_stride = osd->pixel_stride * oi->bytes_per_pixel; in ivtvfb_set_osd_coords()
[all …]
/linux/Documentation/driver-api/media/drivers/
H A 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/Documentation/userspace-api/media/v4l/
H A Ddevices.rst17 dev-osd
H A 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
H A Dpixfmt-indexed.rst12 :ref:`Video Output Overlays <osd>` only. There are no ioctls to access
H A Dpixfmt-packed-yuv.rst154 <overlay>` or :ref:`Video Output Overlay <osd>`.
H A Dvidioc-querycap.rst197 - The device supports the :ref:`Video Output Overlay <osd>` (OSD)
H A Dpixfmt-rgb.rst33 and :ref:`video output overlay <osd>` devices) read the alpha component from
H A Dbuffer.rst426 - Buffer for video output overlay (OSD), see :ref:`osd`.
/linux/fs/ceph/
H A Dioctl.h64 __s64 osd; /* out: osd # */ member
H A Dioctl.c230 dl.osd = ceph_pg_to_acting_primary(osdc->osdmap, &pgid); in ceph_ioctl_get_dataloc()
231 if (dl.osd >= 0) { in ceph_ioctl_get_dataloc()
233 ceph_osd_addr(osdc->osdmap, dl.osd); in ceph_ioctl_get_dataloc()
/linux/drivers/net/ethernet/intel/i40e/
H A Di40e_main.c1016 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in i40e_update_pf_stats() local
1025 &osd->eth.rx_bytes, &nsd->eth.rx_bytes); in i40e_update_pf_stats()
1029 &osd->eth.tx_bytes, &nsd->eth.tx_bytes); in i40e_update_pf_stats()
1032 &osd->eth.rx_discards, in i40e_update_pf_stats()
1037 &osd->eth.rx_unicast, in i40e_update_pf_stats()
1042 &osd->eth.rx_multicast, in i40e_update_pf_stats()
1047 &osd->eth.rx_broadcast, in i40e_update_pf_stats()
1052 &osd->eth.tx_unicast, in i40e_update_pf_stats()
1057 &osd->eth.tx_multicast, in i40e_update_pf_stats()
1062 &osd->eth.tx_broadcast, in i40e_update_pf_stats()
[all …]
/linux/Documentation/userspace-api/media/dvb/
H A Dlegacy_dvb_osd.rst3 .. c:namespace:: dtv.legacy.osd
18 ``linux/dvb/osd.h`` in your application.
/linux/Documentation/
H A D.renames.txt526 media/uapi/v4l/dev-osd userspace-api/media/v4l/dev-osd