Home
last modified time | relevance | path

Searched full:bl (Results 1 – 25 of 455) sorted by relevance

12345678910>>...19

/linux/io_uring/
H A Dkbuf.c35 static bool io_kbuf_inc_commit(struct io_buffer_list *bl, int len) in io_kbuf_inc_commit() argument
41 buf = io_ring_head_to_buf(bl->buf_ring, bl->head, bl->mask); in io_kbuf_inc_commit()
52 bl->head++; in io_kbuf_inc_commit()
59 struct io_buffer_list *bl, int len, int nr) in io_kbuf_commit() argument
68 if (bl->flags & IOBL_INC) in io_kbuf_commit()
69 return io_kbuf_inc_commit(bl, len); in io_kbuf_commit()
70 bl->head += nr; in io_kbuf_commit()
83 struct io_buffer_list *bl, unsigne in io_buffer_add_list() argument
107 struct io_buffer_list *bl; io_kbuf_recycle_legacy() local
123 io_provided_buffer_select(struct io_kiocb * req,size_t * len,struct io_buffer_list * bl) io_provided_buffer_select() argument
144 io_provided_buffers_select(struct io_kiocb * req,size_t * len,struct io_buffer_list * bl,struct iovec * iov) io_provided_buffers_select() argument
159 io_ring_buffer_select(struct io_kiocb * req,size_t * len,struct io_buffer_list * bl,unsigned int issue_flags) io_ring_buffer_select() argument
206 struct io_buffer_list *bl; io_buffer_select() local
225 io_ring_buffers_peek(struct io_kiocb * req,struct buf_sel_arg * arg,struct io_buffer_list * bl) io_ring_buffers_peek() argument
345 struct io_buffer_list *bl; io_buffers_peek() local
368 __io_put_kbuf_ring(struct io_kiocb * req,struct io_buffer_list * bl,int len,int nr) __io_put_kbuf_ring() argument
379 __io_put_kbufs(struct io_kiocb * req,struct io_buffer_list * bl,int len,int nbufs) __io_put_kbufs() argument
397 io_remove_buffers_legacy(struct io_ring_ctx * ctx,struct io_buffer_list * bl,unsigned long nbufs) io_remove_buffers_legacy() argument
417 io_put_bl(struct io_ring_ctx * ctx,struct io_buffer_list * bl) io_put_bl() argument
429 struct io_buffer_list *bl; io_destroy_buffers() local
445 io_destroy_bl(struct io_ring_ctx * ctx,struct io_buffer_list * bl) io_destroy_bl() argument
508 io_add_buffers(struct io_ring_ctx * ctx,struct io_provide_buf * pbuf,struct io_buffer_list * bl) io_add_buffers() argument
543 __io_manage_buffers_legacy(struct io_kiocb * req,struct io_buffer_list * bl) __io_manage_buffers_legacy() argument
574 struct io_buffer_list *bl; io_manage_buffers_legacy() local
591 struct io_buffer_list *bl; io_register_pbuf_ring() local
672 struct io_buffer_list *bl; io_unregister_pbuf_ring() local
697 struct io_buffer_list *bl; io_register_pbuf_status() local
720 struct io_buffer_list *bl; io_pbuf_get_region() local
[all...]
/linux/drivers/video/backlight/
H A Dlm3533_bl.c3 * lm3533-bl.c -- LM3533 Backlight driver
33 static inline int lm3533_bl_get_ctrlbank_id(struct lm3533_bl *bl) in lm3533_bl_get_ctrlbank_id() argument
35 return bl->id; in lm3533_bl_get_ctrlbank_id()
40 struct lm3533_bl *bl = bl_get_data(bd); in lm3533_bl_update_status() local
42 return lm3533_ctrlbank_set_brightness(&bl->cb, backlight_get_brightness(bd)); in lm3533_bl_update_status()
47 struct lm3533_bl *bl = bl_get_data(bd); in lm3533_bl_get_brightness() local
51 ret = lm3533_ctrlbank_get_brightness(&bl->cb, &val); in lm3533_bl_get_brightness()
66 struct lm3533_bl *bl = dev_get_drvdata(dev); in show_id() local
68 return scnprintf(buf, PAGE_SIZE, "%d\n", bl->id); in show_id()
74 struct lm3533_bl *bl = dev_get_drvdata(dev); in show_als_channel() local
[all …]
H A Dlp8788_bl.c38 static int lp8788_backlight_configure(struct lp8788_bl *bl) in lp8788_backlight_configure() argument
45 ret = lp8788_write_byte(bl->lp, LP8788_BL_RAMP, val); in lp8788_backlight_configure()
56 return lp8788_write_byte(bl->lp, LP8788_BL_CONFIG, val); in lp8788_backlight_configure()
61 struct lp8788_bl *bl = bl_get_data(bl_dev); in lp8788_bl_update_status() local
66 lp8788_write_byte(bl->lp, LP8788_BL_BRIGHTNESS, bl_dev->props.brightness); in lp8788_bl_update_status()
76 static int lp8788_backlight_register(struct lp8788_bl *bl) in lp8788_backlight_register() argument
89 bl_dev = backlight_device_register(DEFAULT_BL_NAME, bl->lp->dev, bl, in lp8788_backlight_register()
94 bl->bl_dev = bl_dev; in lp8788_backlight_register()
99 static void lp8788_backlight_unregister(struct lp8788_bl *bl) in lp8788_backlight_unregister() argument
101 struct backlight_device *bl_dev = bl->bl_dev; in lp8788_backlight_unregister()
[all …]
H A Dgpio_backlight.c23 static int gpio_backlight_update_status(struct backlight_device *bl) in gpio_backlight_update_status() argument
25 struct gpio_backlight *gbl = bl_get_data(bl); in gpio_backlight_update_status()
27 gpiod_set_value_cansleep(gbl->gpiod, backlight_get_brightness(bl)); in gpio_backlight_update_status()
32 static bool gpio_backlight_controls_device(struct backlight_device *bl, in gpio_backlight_controls_device() argument
35 struct gpio_backlight *gbl = bl_get_data(bl); in gpio_backlight_controls_device()
52 struct backlight_device *bl; in gpio_backlight_probe() local
73 bl = devm_backlight_device_register(dev, dev_name(dev), dev, gbl, in gpio_backlight_probe()
75 if (IS_ERR(bl)) { in gpio_backlight_probe()
77 return PTR_ERR(bl); in gpio_backlight_probe()
83 bl->props.power = def_value ? BACKLIGHT_POWER_ON in gpio_backlight_probe()
[all …]
H A Dktd253-backlight.c32 struct backlight_device *bl; member
74 static int ktd253_backlight_update_status(struct backlight_device *bl) in ktd253_backlight_update_status() argument
76 struct ktd253_backlight *ktd253 = bl_get_data(bl); in ktd253_backlight_update_status()
77 int brightness = backlight_get_brightness(bl); in ktd253_backlight_update_status()
145 struct backlight_device *bl; in ktd253_backlight_probe() local
182 bl = devm_backlight_device_register(dev, dev_name(dev), dev, ktd253, in ktd253_backlight_probe()
184 if (IS_ERR(bl)) { in ktd253_backlight_probe()
186 return PTR_ERR(bl); in ktd253_backlight_probe()
188 bl->props.max_brightness = max_brightness; in ktd253_backlight_probe()
191 bl->props.brightness = brightness; in ktd253_backlight_probe()
[all …]
H A Dpandora_bl.c39 static int pandora_backlight_update_status(struct backlight_device *bl) in pandora_backlight_update_status() argument
41 int brightness = bl->props.brightness; in pandora_backlight_update_status()
42 struct pandora_private *priv = bl_get_data(bl); in pandora_backlight_update_status()
45 if (bl->props.power != BACKLIGHT_POWER_ON) in pandora_backlight_update_status()
47 if (bl->props.state & BL_CORE_FBBLANK) in pandora_backlight_update_status()
49 if (bl->props.state & BL_CORE_SUSPENDED) in pandora_backlight_update_status()
111 struct backlight_device *bl; in pandora_backlight_probe() local
122 bl = devm_backlight_device_register(&pdev->dev, pdev->name, &pdev->dev, in pandora_backlight_probe()
124 if (IS_ERR(bl)) { in pandora_backlight_probe()
126 return PTR_ERR(bl); in pandora_backlight_probe()
[all …]
/linux/arch/powerpc/kernel/
H A Dcpu_setup_e500.S97 bl setup_altivec_ivors
102 bl setup_lrat_ivor
105 bl setup_pw20_idle
106 bl setup_altivec_idle
107 bl __setup_cpu_e5500
118 bl __e500_icache_setup
119 bl __e500_dcache_setup
120 bl __setup_e500_ivors
133 bl __e500_icache_setup
134 bl __e500_dcache_setup
[all …]
H A Dcpu_setup_6xx.S26 bl __init_fpu_registers
28 bl setup_common_caches
35 bl setup_g2_le_hid2
42 bl setup_common_caches
43 bl setup_604_hid0
48 bl __init_fpu_registers
49 bl setup_common_caches
50 bl setup_750_7400_hid0
55 bl __init_fpu_registers
56 bl setup_common_caches
[all …]
/linux/fs/nfs/blocklayout/
H A Dextent_tree.c256 ext_tree_insert(struct pnfs_block_layout *bl, struct pnfs_block_extent *new) in ext_tree_insert() argument
265 root = &bl->bl_ext_rw; in ext_tree_insert()
269 root = &bl->bl_ext_ro; in ext_tree_insert()
276 spin_lock(&bl->bl_ext_lock); in ext_tree_insert()
318 spin_unlock(&bl->bl_ext_lock); in ext_tree_insert()
346 ext_tree_lookup(struct pnfs_block_layout *bl, sector_t isect, in ext_tree_lookup() argument
351 spin_lock(&bl->bl_ext_lock); in ext_tree_lookup()
353 found = __ext_tree_lookup(&bl->bl_ext_ro, isect, ret); in ext_tree_lookup()
355 found = __ext_tree_lookup(&bl->bl_ext_rw, isect, ret); in ext_tree_lookup()
356 spin_unlock(&bl->bl_ext_lock); in ext_tree_lookup()
[all …]
/linux/drivers/gpu/drm/nouveau/
H A Dnouveau_backlight.c49 struct nouveau_backlight *bl) in nouveau_get_backlight_name() argument
59 bl->id = nb; in nouveau_get_backlight_name()
230 nv50_backlight_init(struct nouveau_backlight *bl, in nv50_backlight_init() argument
264 ret = drm_edp_backlight_init(&nv_conn->aux, &bl->edp_info, in nv50_backlight_init()
270 ret = drm_edp_backlight_enable(&nv_conn->aux, &bl->edp_info, current_level); in nv50_backlight_init()
279 props->max_brightness = bl->edp_info.max; in nv50_backlight_init()
280 bl->uses_dpcd = true; in nv50_backlight_init()
294 struct nouveau_backlight *bl; in nouveau_backlight_init() local
317 bl = kzalloc(sizeof(*bl), GFP_KERNEL); in nouveau_backlight_init()
318 if (!bl) in nouveau_backlight_init()
[all …]
/linux/drivers/net/wireless/ath/wil6210/
H A Dboot_loader.h14 * this Dword until BL will
18 __le32 boot_loader_struct_version; /* 0x880A40 BL struct ver. */
24 u8 mac_address[6]; /* 0x880A4c BL mac address */
25 u8 bl_version_major; /* 0x880A52 BL ver. major */
26 u8 bl_version_minor; /* 0x880A53 BL ver. minor */
27 __le16 bl_version_subminor; /* 0x880A54 BL ver. subminor */
28 __le16 bl_version_build; /* 0x880A56 BL ver. build */
30 __le32 bl_assert_code; /* 0x880A58 BL Assert code */
31 __le32 bl_assert_blink; /* 0x880A5C BL Assert Branch */
32 __le32 bl_shutdown_handshake; /* 0x880A60 BL cleaner shutdown */
[all …]
/linux/drivers/target/iscsi/
H A Discsi_target_seq_pdu_list.c203 struct iscsi_build_list *bl, in iscsit_determine_counts_for_list() argument
218 if ((bl->type == PDULIST_IMMEDIATE) || in iscsit_determine_counts_for_list()
219 (bl->type == PDULIST_IMMEDIATE_AND_UNSOLICITED)) in iscsit_determine_counts_for_list()
222 if ((bl->type == PDULIST_UNSOLICITED) || in iscsit_determine_counts_for_list()
223 (bl->type == PDULIST_IMMEDIATE_AND_UNSOLICITED)) in iscsit_determine_counts_for_list()
232 offset += bl->immediate_data_length; in iscsit_determine_counts_for_list()
236 bl->immediate_data_length; in iscsit_determine_counts_for_list()
287 struct iscsi_build_list *bl) in iscsit_do_build_pdu_and_seq_lists() argument
304 if ((bl->type == PDULIST_IMMEDIATE) || in iscsit_do_build_pdu_and_seq_lists()
305 (bl->type == PDULIST_IMMEDIATE_AND_UNSOLICITED)) in iscsit_do_build_pdu_and_seq_lists()
[all …]
/linux/include/linux/
H A Dbio.h518 static inline int bio_list_empty(const struct bio_list *bl) in bio_list_empty() argument
520 return bl->head == NULL; in bio_list_empty()
523 static inline void bio_list_init(struct bio_list *bl) in bio_list_init() argument
525 bl->head = bl->tail = NULL; in bio_list_init()
530 #define bio_list_for_each(bio, bl) \ argument
531 for (bio = (bl)->head; bio; bio = bio->bi_next)
533 static inline unsigned bio_list_size(const struct bio_list *bl) in bio_list_size() argument
538 bio_list_for_each(bio, bl) in bio_list_size()
544 static inline void bio_list_add(struct bio_list *bl, struct bio *bio) in bio_list_add() argument
548 if (bl->tail) in bio_list_add()
[all …]
/linux/tools/perf/pmu-events/arch/x86/icelakex/
H A Duncore-interconnect.json119 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
138 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
580 "BriefDescription": "BL DRS Egress Cycles Full",
589 "BriefDescription": "BL DRS Egress Inserts",
598 "BriefDescription": "BL DRS Egress Occupancy",
607 "BriefDescription": "BL NCB Egress Cycles Full",
616 "BriefDescription": "BL NCB Egress Inserts",
625 "BriefDescription": "BL NCB Egress Occupancy",
634 "BriefDescription": "BL NCS Egress Cycles Full",
643 "BriefDescription": "BL NCS Egress Inserts",
[all …]
/linux/tools/perf/pmu-events/arch/x86/sapphirerapids/
H A Duncore-interconnect.json55 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
74 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
383 "BriefDescription": "BL DRS Egress Cycles Full",
392 "BriefDescription": "BL DRS Egress Inserts",
401 "BriefDescription": "BL DRS Egress Occupancy",
410 "BriefDescription": "BL NCB Egress Cycles Full",
419 "BriefDescription": "BL NCB Egress Inserts",
428 "BriefDescription": "BL NCB Egress Occupancy",
437 "BriefDescription": "BL NCS Egress Cycles Full",
446 "BriefDescription": "BL NCS Egress Inserts",
[all …]
/linux/tools/perf/pmu-events/arch/x86/emeraldrapids/
H A Duncore-interconnect.json55 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
74 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
383 "BriefDescription": "BL DRS Egress Cycles Full",
392 "BriefDescription": "BL DRS Egress Inserts",
401 "BriefDescription": "BL DRS Egress Occupancy",
410 "BriefDescription": "BL NCB Egress Cycles Full",
419 "BriefDescription": "BL NCB Egress Inserts",
428 "BriefDescription": "BL NCB Egress Occupancy",
437 "BriefDescription": "BL NCS Egress Cycles Full",
446 "BriefDescription": "BL NCS Egress Inserts",
[all …]
/linux/tools/perf/pmu-events/arch/x86/snowridgex/
H A Duncore-interconnect.json119 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
138 "BriefDescription": ": All Inserts Outbound (BL, AK, Snoops)",
580 "BriefDescription": "BL DRS Egress Cycles Full",
589 "BriefDescription": "BL DRS Egress Inserts",
598 "BriefDescription": "BL DRS Egress Occupancy",
607 "BriefDescription": "BL NCB Egress Cycles Full",
616 "BriefDescription": "BL NCB Egress Inserts",
625 "BriefDescription": "BL NCB Egress Occupancy",
634 "BriefDescription": "BL NCS Egress Cycles Full",
643 "BriefDescription": "BL NCS Egress Inserts",
[all …]
H A Duncore-cache.json245 "BriefDescription": "CMS Agent0 BL Credits Acquired : For Transgress 0",
251 …"PublicDescription": "CMS Agent0 BL Credits Acquired : For Transgress 0 : Number of CMS Agent 0 BL
256 "BriefDescription": "CMS Agent0 BL Credits Acquired : For Transgress 1",
262 …"PublicDescription": "CMS Agent0 BL Credits Acquired : For Transgress 1 : Number of CMS Agent 0 BL
267 "BriefDescription": "CMS Agent0 BL Credits Acquired : For Transgress 2",
273 …"PublicDescription": "CMS Agent0 BL Credits Acquired : For Transgress 2 : Number of CMS Agent 0 BL
278 "BriefDescription": "CMS Agent0 BL Credits Acquired : For Transgress 3",
284 …"PublicDescription": "CMS Agent0 BL Credits Acquired : For Transgress 3 : Number of CMS Agent 0 BL
289 "BriefDescription": "CMS Agent0 BL Credits Acquired : For Transgress 4",
295 …"PublicDescription": "CMS Agent0 BL Credits Acquired : For Transgress 4 : Number of CMS Agent 0 BL
[all …]
/linux/arch/sparc/net/
H A Dbpf_jit_asm_32.S17 bl bpf_slow_path_word_neg
46 bl bpf_slow_path_half_neg
69 bl bpf_slow_path_byte_neg
82 bl bpf_slow_path_byte_msh_neg
106 bl bpf_error
112 bl bpf_error
118 bl bpf_error
124 bl bpf_error
145 bl bpf_error
159 bl bpf_error
[all …]
/linux/tools/perf/pmu-events/arch/x86/cascadelakex/
H A Duncore-interconnect.json176 "BriefDescription": "All Inserts Outbound (BL, AK, Snoops)",
642 "BriefDescription": "BL DRS Egress Cycles Full",
651 "BriefDescription": "BL DRS Egress Inserts",
660 "BriefDescription": "BL DRS Egress Occupancy",
669 "BriefDescription": "BL NCB Egress Cycles Full",
678 "BriefDescription": "BL NCB Egress Inserts",
687 "BriefDescription": "BL NCB Egress Occupancy",
696 "BriefDescription": "BL NCS Egress Cycles Full",
705 "BriefDescription": "BL NCS Egress Inserts",
714 "BriefDescription": "BL NC
[all...]
/linux/tools/perf/pmu-events/arch/x86/skylakex/
H A Duncore-interconnect.json176 "BriefDescription": "All Inserts Outbound (BL, AK, Snoops)",
642 "BriefDescription": "BL DRS Egress Cycles Full",
651 "BriefDescription": "BL DRS Egress Inserts",
660 "BriefDescription": "BL DRS Egress Occupancy",
669 "BriefDescription": "BL NCB Egress Cycles Full",
678 "BriefDescription": "BL NCB Egress Inserts",
687 "BriefDescription": "BL NCB Egress Occupancy",
696 "BriefDescription": "BL NCS Egress Cycles Full",
705 "BriefDescription": "BL NCS Egress Inserts",
714 "BriefDescription": "BL NC
[all...]
/linux/tools/perf/pmu-events/arch/x86/broadwellx/
H A Duncore-io.json53 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
63 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
73 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
83 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
93 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
103 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
268 "BriefDescription": "R2 BL Ring in Use; All",
273 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
278 "BriefDescription": "R2 BL Ring in Use; Counterclockwise",
283 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
[all …]
/linux/tools/perf/pmu-events/arch/x86/broadwellde/
H A Duncore-io.json53 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
63 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
73 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
83 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
93 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
103 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
268 "BriefDescription": "R2 BL Ring in Use; All",
273 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
278 "BriefDescription": "R2 BL Ring in Use; Counterclockwise",
283 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
[all …]
/linux/tools/perf/pmu-events/arch/x86/haswellx/
H A Duncore-io.json53 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
63 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
73 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
83 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
93 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
103 …tions into the IIO on either NCB or NCS are in use. Transactions from the BL ring going into the …
248 "BriefDescription": "R2 BL Ring in Use; Counterclockwise",
253 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
258 "BriefDescription": "R2 BL Ring in Use; Counterclockwise and Even",
263 …"PublicDescription": "Counts the number of cycles that the BL ring is being used at this ring stop…
[all …]
/linux/drivers/gpu/drm/tegra/
H A Driscv.c39 struct tegra_drm_riscv_descriptor *bl = &riscv->bl_desc; in tegra_drm_riscv_read_descriptors() local
51 READ_PROP("nvidia,bl-manifest-offset", &bl->manifest_offset); in tegra_drm_riscv_read_descriptors()
52 READ_PROP("nvidia,bl-code-offset", &bl->code_offset); in tegra_drm_riscv_read_descriptors()
53 READ_PROP("nvidia,bl-data-offset", &bl->data_offset); in tegra_drm_riscv_read_descriptors()
59 if (bl->manifest_offset == 0 && bl->code_offset == 0 && in tegra_drm_riscv_read_descriptors()
60 bl->data_offset == 0 && os->manifest_offset == 0 && in tegra_drm_riscv_read_descriptors()

12345678910>>...19