/Linux-v4.19/fs/nfs/blocklayout/ |
D | extent_tree.c | 26 ext_tree_prev(struct pnfs_block_extent *be) in ext_tree_prev() argument 28 struct rb_node *node = rb_prev(&be->be_node); in ext_tree_prev() 33 ext_tree_next(struct pnfs_block_extent *be) in ext_tree_next() argument 35 struct rb_node *node = rb_next(&be->be_node); in ext_tree_next() 40 ext_f_end(struct pnfs_block_extent *be) in ext_f_end() argument 42 return be->be_f_offset + be->be_length; in ext_f_end() 49 struct pnfs_block_extent *be = NULL; in __ext_tree_search() local 52 be = ext_node(node); in __ext_tree_search() 53 if (start < be->be_f_offset) in __ext_tree_search() 55 else if (start >= ext_f_end(be)) in __ext_tree_search() [all …]
|
D | blocklayout.c | 52 static bool is_hole(struct pnfs_block_extent *be) in is_hole() argument 54 switch (be->be_state) { in is_hole() 58 return be->be_tag ? false : true; in is_hole() 148 struct pnfs_block_extent *be, bio_end_io_t end_io, in do_add_page_to_bio() argument 152 container_of(be->be_device, struct pnfs_block_dev, node); in do_add_page_to_bio() 159 isect += be->be_v_offset; in do_add_page_to_bio() 160 isect -= be->be_f_offset; in do_add_page_to_bio() 197 struct pnfs_block_extent be; in bl_mark_devices_unavailable() local 203 if (!ext_tree_lookup(bl, isect, &be, rw)) in bl_mark_devices_unavailable() 205 extent_length = be.be_length - (isect - be.be_f_offset); in bl_mark_devices_unavailable() [all …]
|
/Linux-v4.19/tools/perf/util/ |
D | genelf_debug.c | 48 buffer_ext_dump(struct buffer_ext *be, const char *msg) in buffer_ext_dump() argument 52 for (i = 0 ; i < be->cur_pos; i++) in buffer_ext_dump() 53 warnx("%4zu 0x%02x", i, (((char *)be->data)[i]) & 0xff); in buffer_ext_dump() 57 buffer_ext_add(struct buffer_ext *be, void *addr, size_t sz) in buffer_ext_add() argument 60 size_t be_sz = be->max_sz; in buffer_ext_add() 63 if ((be->cur_pos + sz) < be_sz) { in buffer_ext_add() 64 memcpy(be->data + be->cur_pos, addr, sz); in buffer_ext_add() 65 be->cur_pos += sz; in buffer_ext_add() 74 tmp = realloc(be->data, be_sz); in buffer_ext_add() 78 be->data = tmp; in buffer_ext_add() [all …]
|
/Linux-v4.19/drivers/net/xen-netback/ |
D | xenbus.c | 41 static int connect_data_rings(struct backend_info *be, 43 static void connect(struct backend_info *be); 44 static int read_xenbus_vif_flags(struct backend_info *be); 45 static int backend_create_xenvif(struct backend_info *be); 46 static void unregister_hotplug_status_watch(struct backend_info *be); 48 static void set_backend_state(struct backend_info *be, 265 struct backend_info *be = dev_get_drvdata(&dev->dev); in netback_remove() local 267 set_backend_state(be, XenbusStateClosed); in netback_remove() 269 unregister_hotplug_status_watch(be); in netback_remove() 270 if (be->vif) { in netback_remove() [all …]
|
/Linux-v4.19/fs/btrfs/ |
D | ref-verify.c | 76 struct block_entry *be) in insert_block_entry() argument 85 if (entry->bytenr > be->bytenr) in insert_block_entry() 87 else if (entry->bytenr < be->bytenr) in insert_block_entry() 93 rb_link_node(&be->node, parent_node, p); in insert_block_entry() 94 rb_insert_color(&be->node, root); in insert_block_entry() 243 static void free_block_entry(struct block_entry *be) in free_block_entry() argument 250 while ((n = rb_first(&be->roots))) { in free_block_entry() 252 rb_erase(&re->node, &be->roots); in free_block_entry() 256 while((n = rb_first(&be->refs))) { in free_block_entry() 258 rb_erase(&ref->node, &be->refs); in free_block_entry() [all …]
|
/Linux-v4.19/drivers/block/xen-blkback/ |
D | xenbus.c | 46 struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be) in xen_blkbk_xenbus() argument 48 return be->dev; in xen_blkbk_xenbus() 66 struct xenbus_device *dev = blkif->be->dev; in blkback_name() 96 if (blkif->be->dev->state == XenbusStateConnected) in xen_update_blkif_status() 100 connect(blkif->be); in xen_update_blkif_status() 101 if (blkif->be->dev->state != XenbusStateConnected) in xen_update_blkif_status() 106 xenbus_dev_error(blkif->be->dev, err, "get blkback dev name"); in xen_update_blkif_status() 112 xenbus_dev_error(blkif->be->dev, err, "block flush"); in xen_update_blkif_status() 123 xenbus_dev_fatal(blkif->be->dev, err, in xen_update_blkif_status() 197 err = xenbus_map_ring_valloc(blkif->be->dev, gref, nr_grefs, in xen_blkif_map() [all …]
|
/Linux-v4.19/net/netfilter/ |
D | nft_set_bitmap.c | 96 struct nft_bitmap_elem *be; in nft_bitmap_elem_find() local 98 list_for_each_entry_rcu(be, &priv->list, head) { in nft_bitmap_elem_find() 99 if (memcmp(nft_set_ext_key(&be->ext), in nft_bitmap_elem_find() 101 !nft_set_elem_active(&be->ext, genmask)) in nft_bitmap_elem_find() 104 return be; in nft_bitmap_elem_find() 114 struct nft_bitmap_elem *be; in nft_bitmap_get() local 116 list_for_each_entry_rcu(be, &priv->list, head) { in nft_bitmap_get() 117 if (memcmp(nft_set_ext_key(&be->ext), elem->key.val.data, set->klen) || in nft_bitmap_get() 118 !nft_set_elem_active(&be->ext, genmask)) in nft_bitmap_get() 121 return be; in nft_bitmap_get() [all …]
|
/Linux-v4.19/sound/soc/ |
D | soc-pcm.c | 177 struct snd_soc_pcm_runtime *be = dpcm->be; in dpcm_dapm_stream_event() local 179 dev_dbg(be->dev, "ASoC: BE %s event %d dir %d\n", in dpcm_dapm_stream_event() 180 be->dai_link->name, event, dir); in dpcm_dapm_stream_event() 183 (be->dpcm[dir].users >= 1)) in dpcm_dapm_stream_event() 186 snd_soc_dapm_stream_event(be, dir, event); in dpcm_dapm_stream_event() 1218 struct snd_soc_pcm_runtime *be, int stream) in dpcm_be_connect() argument 1224 if (dpcm->be == be && dpcm->fe == fe) in dpcm_be_connect() 1232 dpcm->be = be; in dpcm_be_connect() 1234 be->dpcm[stream].runtime = fe->dpcm[stream].runtime; in dpcm_be_connect() 1237 list_add(&dpcm->list_fe, &be->dpcm[stream].fe_clients); in dpcm_be_connect() [all …]
|
/Linux-v4.19/drivers/hwmon/ |
D | Kconfig | 22 This support can also be built as a module. If so, the module 23 will be called hwmon. 49 This driver can also be built as a module. If so, the module 50 will be called abx500-temp. 59 chip can be found on Abit uGuru featuring motherboards (most modern 64 This driver can also be built as a module. If so, the module 65 will be called abituguru. 74 uGuru chip can be found on recent Abit motherboards (since end 78 This driver can also be built as a module. If so, the module 79 will be called abituguru3. [all …]
|
/Linux-v4.19/Documentation/watchdog/ |
D | watchdog-parameters.txt | 3 be listed here unless the driver has its own driver-specific information 16 nowayout: Watchdog cannot be stopped once started 23 nowayout: Watchdog cannot be stopped once started 28 nowayout: Watchdog cannot be stopped once started 35 nowayout: Watchdog cannot be stopped once started 45 nowayout: Watchdog cannot be stopped once started 50 nowayout: Watchdog cannot be stopped once started 55 nowayout: Watchdog cannot be stopped once started 63 verbose: be verbose, default is 0 (no) 73 nowayout: Watchdog cannot be stopped once started [all …]
|
/Linux-v4.19/lib/ |
D | test_uuid.c | 15 uuid_t be; member 22 .be = UUID_INIT(0xc33f4995, 0x3701, 0x450e, 0x9f, 0xbf, 0x20, 0x6a, 0x2e, 0x98, 0xe5, 0x76), 27 .be = UUID_INIT(0x64b4371c, 0x77c1, 0x48f9, 0x82, 0x21, 0x29, 0xf0, 0x54, 0xfc, 0x02, 0x3b), 32 .be = UUID_INIT(0x0cb4ddff, 0xa545, 0x4401, 0x9d, 0x06, 0x68, 0x8a, 0xf5, 0x3e, 0x7f, 0x84), 45 static void __init test_uuid_failed(const char *prefix, bool wrong, bool be, in test_uuid_failed() argument 52 be ? "BE" : "LE", in test_uuid_failed() 65 uuid_t be; in test_uuid_test() local 81 if (uuid_parse(data->uuid, &be)) in test_uuid_test() 85 if (!uuid_equal(&data->be, &be)) { in test_uuid_test() 86 sprintf(buf, "%pUb", &be); in test_uuid_test() [all …]
|
/Linux-v4.19/drivers/net/phy/ |
D | mdio-boardinfo.c | 32 struct mdio_board_entry *be; in mdiobus_setup_mdiodev_from_board_info() local 38 list_for_each_entry_safe(be, tmp, &mdio_board_list, list) { in mdiobus_setup_mdiodev_from_board_info() 39 bi = &be->board_info; in mdiobus_setup_mdiodev_from_board_info() 67 struct mdio_board_entry *be; in mdiobus_register_board_info() local 70 be = kcalloc(n, sizeof(*be), GFP_KERNEL); in mdiobus_register_board_info() 71 if (!be) in mdiobus_register_board_info() 74 for (i = 0; i < n; i++, be++, info++) { in mdiobus_register_board_info() 75 memcpy(&be->board_info, info, sizeof(*info)); in mdiobus_register_board_info() 77 list_add_tail(&be->list, &mdio_board_list); in mdiobus_register_board_info()
|
/Linux-v4.19/drivers/i2c/busses/ |
D | Kconfig | 15 If you say yes to this option, support will be included for the SMB 20 This driver can also be built as a module. If so, the module 21 will be called i2c-ali1535. 27 If you say yes to this option, support will be included for the SMB 32 This driver can also be built as a module. If so, the module 33 will be called i2c-ali1563. 39 If you say yes to this option, support will be included for the 42 This driver can also be built as a module. If so, the module 43 will be called i2c-ali15x3. 49 If you say yes to this option, support will be included for the AMD [all …]
|
/Linux-v4.19/sound/soc/meson/ |
D | axg-card.c | 161 struct axg_dai_link_tdm_data *be = in axg_card_tdm_be_hw_params() local 167 if (be->mclk_fs) { in axg_card_tdm_be_hw_params() 168 mclk = params_rate(params) * be->mclk_fs; in axg_card_tdm_be_hw_params() 194 struct axg_dai_link_tdm_data *be = in axg_card_tdm_dai_init() local 202 be->codec_masks[i].tx, in axg_card_tdm_dai_init() 203 be->codec_masks[i].rx, in axg_card_tdm_dai_init() 204 be->slots, be->slot_width); in axg_card_tdm_dai_init() 212 ret = axg_tdm_set_tdm_slots(rtd->cpu_dai, be->tx_mask, be->rx_mask, in axg_card_tdm_dai_init() 213 be->slots, be->slot_width); in axg_card_tdm_dai_init() 225 struct axg_dai_link_tdm_data *be = in axg_card_tdm_dai_lb_init() local [all …]
|
/Linux-v4.19/drivers/hwmon/pmbus/ |
D | Kconfig | 12 This driver can also be built as a module. If so, the module will 13 be called pmbus_core. 26 This driver can also be built as a module. If so, the module will 27 be called pmbus. 37 This driver can also be built as a module. If so, the module will 38 be called adm1275. 47 This driver can also be built as a module. If so, the module will 48 be called ibm-cffps. 57 This driver can also be built as a module. If so, the module will 58 be called ir35521. [all …]
|
/Linux-v4.19/drivers/i2c/muxes/ |
D | Kconfig | 13 If you say yes to this option, support will be included for an 18 This driver can also be built as a module. If so, the module 19 will be called i2c-arb-gpio-challenge. 25 If you say yes to this option, support will be included for a 30 This driver can also be built as a module. If so, the module 31 will be called i2c-mux-gpio. 38 If you say yes to this option, support will be included for a 43 This driver can also be built as a module. If so, the module 44 will be called i2c-mux-gpmux. 54 This driver can also be built as a module. If so, the module [all …]
|
/Linux-v4.19/drivers/staging/axis-fifo/ |
D | axis-fifo.txt | 4 be accessed from the AXI4 memory-mapped interface. This is useful for 6 a character device that can be read/written to with standard 17 - compatible: Should be "xlnx,axi-fifo-mm-s-4.1" 18 - interrupt-names: Should be "interrupt" 19 - interrupt-parent: Should be <&intc> 22 - xlnx,axi-str-rxd-protocol: Should be "XIL_AXI_STREAM_ETH_DATA" 23 - xlnx,axi-str-rxd-tdata-width: Should be <0x20> 24 - xlnx,axi-str-txc-protocol: Should be "XIL_AXI_STREAM_ETH_CTRL" 25 - xlnx,axi-str-txc-tdata-width: Should be <0x20> 26 - xlnx,axi-str-txd-protocol: Should be "XIL_AXI_STREAM_ETH_DATA" [all …]
|
/Linux-v4.19/drivers/rtc/ |
D | Kconfig | 19 be allowed to plug one or more RTCs to your system. You will 28 If you say yes here, the system time (wall clock) will be set using 37 The RTC device that will be used to (re)initialize the system 43 The driver for this RTC device must be loaded before late_initcall 44 functions run, so it must usually be statically linked. 46 This clock should be battery-backed, so that it reads the correct 51 be useful to reinitialize system time when resuming from system 59 If you say yes here, the system time (wall clock) will be stored 107 Other RTCs will not be available through that API. 122 can be accessed as /dev/rtc, which is a name [all …]
|
/Linux-v4.19/drivers/nvmem/ |
D | Kconfig | 9 This driver can also be built as a module. If so, the module 10 will be called nvmem_core. 24 This driver can also be built as a module. If so, the module 25 will be called nvmem-imx-iim. 36 This driver can also be built as a module. If so, the module 37 will be called nvmem-imx-ocotp. 47 will be called nvmem_lpc18xx_eeprom. 57 will be called nvmem_lpc18xx_otp. 68 This driver can also be built as a module. If so, the module 69 will be called nvmem-mxs-ocotp. [all …]
|
/Linux-v4.19/Documentation/misc-devices/ |
D | pci-endpoint-test.txt | 3 This driver should be used as a host side driver if the root complex is 7 The "pci_endpoint_test" driver can be used to perform the following tests. 20 should be used to perform the above tests. 24 PCITEST_BAR: Tests the BAR. The number of the BAR to be tested 25 should be passed as argument. 28 to be tested should be passed as argument. 30 to be tested should be passed as argument. 32 should be passed as argument (0: Legacy, 1:MSI, 2:MSI-X). 34 PCITEST_WRITE: Perform write tests. The size of the buffer should be passed 36 PCITEST_READ: Perform read tests. The size of the buffer should be passed [all …]
|
/Linux-v4.19/Documentation/filesystems/caching/ |
D | netfs-api.txt | 58 This first two fields should be filled in before registration, and the third 59 will be filled in by the registration function; any other fields should just be 67 entire in-cache hierarchy for this netfs will be scrapped and begun 70 (3) The cookie representing the primary index will be allocated according to 105 (1) Any index containing non-index objects should be restricted to a single 106 cache. Any such objects created within an index will be created in the 107 first cache only. The cache in which an index is created can be 110 (2) The entry data must be atomically journallable, so it is limited to about 111 400 bytes at present. At least 400 bytes will be available. 113 (3) The depth of the index tree should be judged with care as the search [all …]
|
/Linux-v4.19/drivers/uwb/ |
D | beacon.c | 168 kfree(bce->be); in uwb_bce_kfree() 265 struct uwb_rc_evt_beacon *be, in __uwb_beca_add() argument 314 static void uwb_beacon_print(struct uwb_rc *rc, struct uwb_rc_evt_beacon *be, in uwb_beacon_print() argument 326 devbuf, dstbuf, be->bChannelNumber, be->wBPSTOffset, in uwb_beacon_print() 337 struct uwb_rc_evt_beacon *be; in uwb_bce_print_IEs() local 344 be = bce->be; in uwb_bce_print_IEs() 345 if (be) { in uwb_bce_print_IEs() 346 bf = (struct uwb_beacon_frame *)bce->be->BeaconInfo; in uwb_bce_print_IEs() 347 ies_len = be->wBeaconInfoLength - sizeof(struct uwb_beacon_frame); in uwb_bce_print_IEs() 362 struct uwb_rc_evt_beacon *be) in uwb_verify_beacon() argument [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/clock/ti/davinci/ |
D | da8xx-cfgchip.txt | 7 All of the clock nodes described below must be child nodes of a CFGCHIP node 13 - compatible: shall be "ti,da830-usb-phy-clocks". 14 - #clock-cells: from common clock binding; shall be set to 1. 16 - clock-names: shall be "fck", "usb_refclkin", "auxclk" 24 - compatible: shall be "ti,da830-tbclksync". 25 - #clock-cells: from common clock binding; shall be set to 0. 27 - clock-names: shall be "fck" 32 - compatible: shall be "ti,da830-div4p5ena". 33 - #clock-cells: from common clock binding; shall be set to 0. 35 - clock-names: shall be "pll0_pllout" [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/edac/ |
D | socfpga-eccmgr.txt | 8 - compatible : Should be "altr,socfpga-ecc-manager" 9 - #address-cells: must be 1 10 - #size-cells: must be 1 17 - compatible : Should be "altr,socfpga-l2-ecc" 19 - interrupts : Should be single bit error interrupt, then double bit error 24 - compatible : Should be "altr,socfpga-ocram-ecc" 27 - interrupts : Should be single bit error interrupt, then double bit error 58 - compatible : Should be "altr,socfpga-a10-ecc-manager" 61 - #address-cells: must be 1 62 - #size-cells: must be 1 [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/arm/ |
D | atmel-at91.txt | 8 compatible: must be one of: 11 * "atmel,at91sam9" for SoCs using an ARM926EJ-S core, shall be extended with 16 o "atmel,at91sam9x5" for the 5 series, shall be extended with the specific 28 * "atmel,sama5" for SoCs using a Cortex-A5, shall be extended with the specific 30 o "atmel,sama5d2" shall be extended with the specific SoC compatible: 32 o "atmel,sama5d3" shall be extended with the specific SoC compatible: 38 o "atmel,sama5d4" shall be extended with the specific SoC compatible: 44 * "atmel,samv7" for MCUs using a Cortex-M7, shall be extended with the specific 46 o "atmel,sams70" shall be extended with the specific MCU compatible: 56 o "atmel,samv70" shall be extended with the specific MCU compatible: [all …]
|