| /linux/drivers/tty/serial/jsm/ |
| H A D | jsm_driver.c | 54 struct jsm_board *brd; in jsm_probe_one() local 69 brd = kzalloc_obj(*brd); in jsm_probe_one() 70 if (!brd) { in jsm_probe_one() 76 brd->boardnum = adapter_count++; in jsm_probe_one() 77 brd->pci_dev = pdev; in jsm_probe_one() 85 brd->maxports = 2; in jsm_probe_one() 94 brd->maxports = 4; in jsm_probe_one() 102 brd->maxports = 8; in jsm_probe_one() 106 brd->maxports = 1; in jsm_probe_one() 110 spin_lock_init(&brd->bd_intr_lock); in jsm_probe_one() [all …]
|
| H A D | jsm_tty.c | 191 struct jsm_board *brd; in jsm_tty_open() local 197 brd = channel->ch_bd; in jsm_tty_open() 237 brd->bd_ops->flush_uart_write(channel); in jsm_tty_open() 238 brd->bd_ops->flush_uart_read(channel); in jsm_tty_open() 254 brd->bd_ops->uart_init(channel); in jsm_tty_open() 259 brd->bd_ops->param(channel); in jsm_tty_open() 366 int jsm_tty_init(struct jsm_board *brd) in jsm_tty_init() argument 372 if (!brd) in jsm_tty_init() 375 jsm_dbg(INIT, &brd->pci_dev, "start\n"); in jsm_tty_init() 381 brd->nasync = brd->maxports; in jsm_tty_init() [all …]
|
| H A D | jsm_neo.c | 694 static void neo_parse_isr(struct jsm_board *brd, u32 port) in neo_parse_isr() argument 701 if (!brd) in neo_parse_isr() 704 if (port >= brd->maxports) in neo_parse_isr() 707 ch = brd->channels[port]; in neo_parse_isr() 761 if (brd->channels[port]->ch_flags & CH_STOP) { in neo_parse_isr() 769 if (!(brd->channels[port]->ch_flags & CH_STOP)) { in neo_parse_isr() 813 static inline void neo_parse_lsr(struct jsm_board *brd, u32 port) in neo_parse_lsr() argument 819 if (!brd) in neo_parse_lsr() 822 if (port >= brd->maxports) in neo_parse_lsr() 825 ch = brd->channels[port]; in neo_parse_lsr() [all …]
|
| H A D | jsm_cls.c | 535 static inline void cls_parse_isr(struct jsm_board *brd, uint port) in cls_parse_isr() argument 546 if (port >= brd->nasync) in cls_parse_isr() 549 ch = brd->channels[port]; in cls_parse_isr() 785 struct jsm_board *brd = voidbrd; in cls_intr() local 791 spin_lock_irqsave(&brd->bd_intr_lock, lock_flags); in cls_intr() 797 uart_poll = readb(brd->re_map_membase + UART_CLASSIC_POLL_ADDR_OFFSET); in cls_intr() 799 jsm_dbg(INTR, &brd->pci_dev, "%s:%d uart_poll: %x\n", in cls_intr() 803 jsm_dbg(INTR, &brd->pci_dev, in cls_intr() 805 spin_unlock_irqrestore(&brd->bd_intr_lock, lock_flags); in cls_intr() 812 for (i = 0; i < brd->nasync; i++) in cls_intr() [all …]
|
| /linux/drivers/block/ |
| H A D | brd.c | 49 static struct page *brd_lookup_page(struct brd_device *brd, sector_t sector) in brd_lookup_page() argument 52 XA_STATE(xas, &brd->brd_pages, sector >> PAGE_SECTORS_SHIFT); in brd_lookup_page() 85 static struct page *brd_insert_page(struct brd_device *brd, sector_t sector, in brd_insert_page() argument 95 xa_lock(&brd->brd_pages); in brd_insert_page() 96 ret = __xa_cmpxchg(&brd->brd_pages, sector >> PAGE_SECTORS_SHIFT, NULL, in brd_insert_page() 99 brd->brd_nr_pages++; in brd_insert_page() 101 xa_unlock(&brd->brd_pages); in brd_insert_page() 107 xa_unlock(&brd->brd_pages); in brd_insert_page() 112 xa_unlock(&brd->brd_pages); in brd_insert_page() 121 static void brd_free_pages(struct brd_device *brd) in brd_free_pages() argument [all …]
|
| H A D | Makefile | 21 obj-$(CONFIG_BLK_DEV_RAM) += brd.o
|
| H A D | Kconfig | 237 module will be called brd. An alias "rd" has been defined
|
| /linux/arch/mips/sgi-ip27/ |
| H A D | ip27-memory.c | 61 lboard_t *brd; in router_recurse() local 76 brd = (lboard_t *)NODE_OFFSET_TO_K0( in router_recurse() 80 if (brd->brd_type == KLTYPE_ROUTER) { in router_recurse() 81 router = (klrou_t *)NODE_OFFSET_TO_K0(NASID_GET(brd), brd->brd_compts[0]); in router_recurse() 100 lboard_t *brd, *dest_brd; in compute_node_distance() local 106 brd = find_lboard_class((lboard_t *)KL_CONFIG_INFO(nasid), in compute_node_distance() 109 if (!brd) in compute_node_distance() 113 if (brd->brd_flags & DUPLICATE_BOARD) in compute_node_distance() 116 router = (klrou_t *)NODE_OFFSET_TO_K0(NASID_GET(brd), brd->brd_compts[0]); in compute_node_distance() 135 } while ((brd = find_lboard_class(KLCF_NEXT(brd), KLTYPE_ROUTER))); in compute_node_distance() [all …]
|
| H A D | ip27-klconfig.c | 18 klinfo_t *find_component(lboard_t *brd, klinfo_t *kli, unsigned char struct_type) in find_component() argument 25 for (j = 0; j < KLCF_NUM_COMPS(brd); j++) in find_component() 26 if (kli == KLCF_COMP(brd, j)) in find_component() 29 if (index == KLCF_NUM_COMPS(brd)) { in find_component() 36 for (; index < KLCF_NUM_COMPS(brd); index++) { in find_component() 37 kli = KLCF_COMP(brd, index); in find_component() 46 klinfo_t *find_first_component(lboard_t *brd, unsigned char struct_type) in find_first_component() argument 48 return find_component(brd, (klinfo_t *)NULL, struct_type); in find_first_component()
|
| H A D | ip27-smp.c | 32 lboard_t *brd; in node_scan_cpus() local 36 brd = find_lboard((lboard_t *)KL_CONFIG_INFO(nasid), KLTYPE_IP27); in node_scan_cpus() 39 acpu = (klcpu_t *)find_first_component(brd, KLSTRUCT_CPU); in node_scan_cpus() 54 acpu = (klcpu_t *)find_component(brd, (klinfo_t *)acpu, in node_scan_cpus() 57 brd = KLCF_NEXT(brd); in node_scan_cpus() 58 if (!brd) in node_scan_cpus() 61 brd = find_lboard(brd, KLTYPE_IP27); in node_scan_cpus() 62 } while (brd); in node_scan_cpus()
|
| H A D | ip27-xtalk.c | 153 lboard_t *brd; in xbow_probe() local 161 brd = find_lboard((lboard_t *)KL_CONFIG_INFO(nasid), KLTYPE_MIDPLANE8); in xbow_probe() 162 if (!brd) in xbow_probe() 165 xbow_p = (klxbow_t *)find_component(brd, NULL, KLSTRUCT_XBOW); in xbow_probe()
|
| /linux/drivers/tty/ |
| H A D | moxa.c | 349 #define MOXA_IS_320(brd) ((brd)->boardType == MOXA_BOARD_C320_PCI) argument 564 static int moxa_check_fw_model(struct moxa_board_conf *brd, u8 model) in moxa_check_fw_model() argument 566 switch (brd->boardType) { in moxa_check_fw_model() 595 static int moxa_load_bios(struct moxa_board_conf *brd, const u8 *buf, in moxa_load_bios() argument 598 void __iomem *baseAddr = brd->basemem; in moxa_load_bios() 609 switch (brd->boardType) { in moxa_load_bios() 639 static int moxa_load_320b(struct moxa_board_conf *brd, const u8 *ptr, in moxa_load_320b() argument 642 void __iomem *baseAddr = brd->basemem; in moxa_load_320b() 658 static int moxa_real_load_code(struct moxa_board_conf *brd, const void *ptr, in moxa_real_load_code() argument 661 void __iomem *baseAddr = brd->basemem; in moxa_real_load_code() [all …]
|
| H A D | mxser.c | 1606 struct mxser_board *brd = dev_id; in mxser_interrupt() local 1609 unsigned int i, max = brd->nports; in mxser_interrupt() 1614 irqbits = inb(brd->vector) & mask; in mxser_interrupt() 1624 port = &brd->ports[i]; in mxser_interrupt() 1674 static void mxser_initbrd(struct mxser_board *brd, bool high_baud) in mxser_initbrd() argument 1680 brd->must_hwid = mxser_must_get_hwid(brd->ports[0].ioaddr); in mxser_initbrd() 1681 is_mu860 = brd->must_hwid == MOXA_MUST_MU860_HWID; in mxser_initbrd() 1684 if (Gpci_uart_info[i].type == brd->must_hwid) { in mxser_initbrd() 1685 brd->max_baud = Gpci_uart_info[i].max_baud; in mxser_initbrd() 1689 brd->max_baud = 921600; in mxser_initbrd() [all …]
|
| /linux/Documentation/networking/ |
| H A D | vrf.rst | 189 link/ether 72:b3:ba:91:e2:24 brd ff:ff:ff:ff:ff:ff promiscuity 0 192 link/ether b6:6f:6e:f6:da:73 brd ff:ff:ff:ff:ff:ff promiscuity 0 195 link/ether 36:62:e8:7d:bb:8c brd ff:ff:ff:ff:ff:ff promiscuity 0 198 link/ether e6:28:b8:63:70:bb brd ff:ff:ff:ff:ff:ff promiscuity 0 238 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff 240 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff 242 link/ether 02:00:00:00:02:06 brd ff:ff:ff:ff:ff:ff 283 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff 284 inet 10.2.1.2/24 brd 10.2.1.255 scope global eth1 291 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff [all …]
|
| H A D | net_failover.rst | 77 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff 78 inet 192.168.12.53/24 brd 192.168.12.255 scope global dynamic ens10 83 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff 85 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
|
| H A D | statistics.rst | 27 link/ether 48:2a:e3:4c:b1:d1 brd ff:ff:ff:ff:ff:ff
|
| /linux/drivers/net/wireless/ath/wil6210/ |
| H A D | fw_inc.c | 783 const struct firmware *brd; in wil_request_board() local 785 rc = request_firmware(&brd, name, wil_to_dev(wil)); in wil_request_board() 790 wil_dbg_fw(wil, "Loading <%s>, %zu bytes\n", name, brd->size); in wil_request_board() 793 dlen = wil_fw_verify(wil, brd->data, brd->size); in wil_request_board() 800 rc = wil_brd_process(wil, brd->data, dlen); in wil_request_board() 803 release_firmware(brd); in wil_request_board()
|
| /linux/tools/testing/selftests/net/ |
| H A D | netdev-l2addr.sh | 42 ip -n "$NS" link set dev "$nsim" brd "$TEST_ADDR"
|
| H A D | l2_tos_ttl_inherit.sh | 184 ip -netns "${NS0}" address add 198.19.0.1/24 brd + dev ${parent}0 185 ip -netns "${NS1}" address add 198.19.0.2/24 brd + dev ${parent}1
|
| /linux/Documentation/networking/device_drivers/ethernet/marvell/ |
| H A D | octeontx2.rst | 377 … state DOWN mode DEFAULT group default qlen 1000 link/ether f6:43:83:ee:26:21 brd ff:ff:ff:ff:ff:ff 378 … state DOWN mode DEFAULT group default qlen 1000 link/ether 12:b2:54:0e:24:54 brd ff:ff:ff:ff:ff:ff 379 … state DOWN mode DEFAULT group default qlen 1000 link/ether 4a:12:c4:4c:32:62 brd ff:ff:ff:ff:ff:ff 380 … state DOWN mode DEFAULT group default qlen 1000 link/ether ca:cb:68:0e:e2:6e brd ff:ff:ff:ff:ff:ff 381 … state DOWN mode DEFAULT group default qlen 1000 link/ether 06:cc:ad:b4:f0:93 brd ff:ff:ff:ff:ff:ff
|
| /linux/Documentation/filesystems/ |
| H A D | tmpfs.rst | 29 An alternative to tmpfs and ramfs is to use brd to create RAM disks 32 this ramdisk. As with ramfs, brd ramdisks cannot swap. brd ramdisks are also 34 Contrary to brd ramdisks, tmpfs has its own filesystem, it does not rely on the
|
| /linux/drivers/comedi/drivers/ |
| H A D | ni_mio_common.c | 5427 static inline int get_rtsi_brd_src(int brd, struct comedi_device *dev) in get_rtsi_brd_src() argument 5430 int brd_index = brd; in get_rtsi_brd_src() 5433 if (brd >= NI_RTSI_BRD(0)) in get_rtsi_brd_src() 5434 brd_index = brd - NI_RTSI_BRD(0); in get_rtsi_brd_src() 5436 brd = NI_RTSI_BRD(brd); in get_rtsi_brd_src() 5445 return ni_find_route_source(reg, brd, &devpriv->routing_tables); in get_rtsi_brd_src() 5754 int brd = incr_rtsi_brd_src_use(src, dev); in connect_route() local 5756 if (brd < 0) in connect_route() 5757 return brd; in connect_route() 5761 brd, dest, &devpriv->routing_tables); in connect_route() [all …]
|
| /linux/arch/mips/include/asm/sn/ |
| H A D | klconfig.h | 890 extern klinfo_t *find_component(lboard_t *brd, klinfo_t *kli, unsigned char type); 891 extern klinfo_t *find_first_component(lboard_t *brd, unsigned char type);
|
| /linux/net/ipv4/ |
| H A D | fib_frontend.c | 1219 __be32 brd = ifa->ifa_address | ~ifa->ifa_mask; in fib_del_ifaddr() local 1310 if (brd == ifa1->ifa_broadcast) in fib_del_ifaddr() 1323 if (brd == brd1 || brd == any1) in fib_del_ifaddr() 1338 fib_magic(RTM_DELROUTE, RTN_BROADCAST, brd, 32, in fib_del_ifaddr()
|
| /linux/Documentation/networking/device_drivers/ethernet/pensando/ |
| H A D | ionic.rst | 129 link/ether 00:ae:cd:00:07:68 brd ff:ff:ff:ff:ff:ff
|