Home
last modified time | relevance | path

Searched refs:host_info (Results 1 – 12 of 12) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A D13_shlib_weaksym.patch132 struct host_info client[1]; /* client endpoint info */
133 struct host_info server[1]; /* server endpoint info */
139 + void (*hostname) (struct host_info *); /* address to printable hostname */
140 + void (*hostaddr) (struct host_info *); /* address to printable address */
192 * host_info structures serve as caches for the lookup results.
202 +extern char *eval_hostname(struct host_info *); /* printable hostname */
203 +extern char *eval_hostaddr(struct host_info *); /* printable host address */
204 +extern char *eval_hostinfo(struct host_info *); /* host name or address */
218 +extern void sock_hostname(struct host_info *);
220 +extern void sock_hostaddr(struct host_info *);
H A Dexpand_remote_port.patch63 extern char *eval_hostinfo(struct host_info *); /* host name or address */
H A D10_usagi-ipv6.patch711 struct host_info *host;
738 struct host_info *host;
1010 struct host_info {
/openbmc/linux/arch/um/kernel/
H A Dum_arch.c72 static char host_info[(__NEW_UTS_LEN + 1) * 5]; variable
82 seq_printf(m, "host\t\t: %s\n", host_info); in show_cpuinfo()
426 setup_hostinfo(host_info, sizeof host_info); in setup_arch()
/openbmc/linux/drivers/net/ethernet/amazon/ena/
H A Dena_netdev.c2662 struct ena_admin_host_info *host_info; in ena_config_host_info() local
2672 host_info = ena_dev->host_attr.host_info; in ena_config_host_info()
2674 host_info->bdf = pci_dev_id(pdev); in ena_config_host_info()
2675 host_info->os_type = ENA_ADMIN_OS_LINUX; in ena_config_host_info()
2676 host_info->kernel_ver = LINUX_VERSION_CODE; in ena_config_host_info()
2677 strscpy(host_info->kernel_ver_str, utsname()->version, in ena_config_host_info()
2678 sizeof(host_info->kernel_ver_str) - 1); in ena_config_host_info()
2679 host_info->os_dist = 0; in ena_config_host_info()
2680 strncpy(host_info->os_dist_str, utsname()->release, in ena_config_host_info()
2681 sizeof(host_info->os_dist_str) - 1); in ena_config_host_info()
[all …]
H A Dena_com.c2687 host_attr->host_info = dma_alloc_coherent(ena_dev->dmadev, SZ_4K, in ena_com_allocate_host_info()
2689 if (unlikely(!host_attr->host_info)) in ena_com_allocate_host_info()
2692 host_attr->host_info->ena_spec_version = ((ENA_COMMON_SPEC_VERSION_MAJOR << in ena_com_allocate_host_info()
2721 if (host_attr->host_info) { in ena_com_delete_host_info()
2722 dma_free_coherent(ena_dev->dmadev, SZ_4K, host_attr->host_info, in ena_com_delete_host_info()
2724 host_attr->host_info = NULL; in ena_com_delete_host_info()
H A Dena_com.h293 struct ena_admin_host_info *host_info; member
/openbmc/linux/drivers/net/wireless/atmel/
H A Datmel.c501 } host_info; member
622 return priv->host_info.command_pos + offset; in atmel_co()
627 return priv->host_info.rx_desc_pos + (sizeof(struct rx_desc) * desc) + offset; in atmel_rx()
632 return priv->host_info.tx_desc_pos + (sizeof(struct tx_desc) * desc) + offset; in atmel_tx()
687 i < priv->host_info.tx_desc_count; in tx_done_irq()
698 if (priv->tx_buff_head + msdu_size > (priv->host_info.tx_buff_pos + priv->host_info.tx_buff_size)) in tx_done_irq()
703 if (priv->tx_desc_head < (priv->host_info.tx_desc_count - 1)) in tx_done_irq()
720 u16 bottom_free = priv->host_info.tx_buff_size - priv->tx_buff_tail; in find_tx_buff()
726 return priv->host_info.tx_buff_pos + priv->tx_buff_tail; in find_tx_buff()
730 return priv->host_info.tx_buff_pos; in find_tx_buff()
[all …]
/openbmc/linux/drivers/spi/
H A Dspi-pl022.c374 struct pl022_ssp_controller *host_info; member
1113 pl022->host_info->dma_filter, in pl022_dma_probe()
1114 pl022->host_info->dma_rx_param); in pl022_dma_probe()
1121 pl022->host_info->dma_filter, in pl022_dma_probe()
1122 pl022->host_info->dma_tx_param); in pl022_dma_probe()
1967 && ((pl022->host_info)->enable_dma)) { in pl022_setup()
2129 pl022->host_info = platform_info; in pl022_probe()
2268 if (pl022->host_info->enable_dma) in pl022_remove()
/openbmc/linux/drivers/usb/storage/
H A Dscsiglue.c62 static const char* host_info(struct Scsi_Host *host) in host_info() function
628 .info = host_info,
/openbmc/linux/drivers/staging/rts5208/
H A Drtsx.c55 static const char *host_info(struct Scsi_Host *host) in host_info() function
198 .info = host_info,
/openbmc/openbmc/poky/meta/classes-global/
H A Dbuildstats.bbclass215 host_info = platform.uname()
217 for x in host_info: