/linux-6.12.1/drivers/net/ethernet/wangxun/txgbe/ |
D | txgbe_ethtool.c | 105 switch (rule->filter.formatted.flow_type) { in txgbe_get_ethtool_fdir_entry() 125 fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port; in txgbe_get_ethtool_fdir_entry() 126 fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port; in txgbe_get_ethtool_fdir_entry() 127 fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port; in txgbe_get_ethtool_fdir_entry() 128 fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port; in txgbe_get_ethtool_fdir_entry() 129 fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0]; in txgbe_get_ethtool_fdir_entry() 130 fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0]; in txgbe_get_ethtool_fdir_entry() 131 fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0]; in txgbe_get_ethtool_fdir_entry() 132 fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0]; in txgbe_get_ethtool_fdir_entry() 133 fsp->h_ext.vlan_etype = rule->filter.formatted.flex_bytes; in txgbe_get_ethtool_fdir_entry() [all …]
|
D | txgbe_fdir.c | 155 input->formatted.bkt_hash = (__force __be16)(bucket_hash & 0x1FFF); in txgbe_atr_compute_perfect_hash() 190 flow_type = input.formatted.flow_type; in txgbe_fdir_add_signature_filter() 274 input.formatted.vlan_id = htons((u16)ptype); in txgbe_atr() 288 input.formatted.flow_type = TXGBE_ATR_FLOW_TYPE_TCPV6; in txgbe_atr() 298 input.formatted.flow_type = TXGBE_ATR_FLOW_TYPE_TCPV4; in txgbe_atr() 321 if (input_mask->formatted.bkt_hash) in txgbe_fdir_set_input_mask() 325 switch (input_mask->formatted.vm_pool & 0x7F) { in txgbe_fdir_set_input_mask() 336 switch (input_mask->formatted.flow_type & TXGBE_ATR_L4TYPE_MASK) { in txgbe_fdir_set_input_mask() 339 if (input_mask->formatted.dst_port || in txgbe_fdir_set_input_mask() 340 input_mask->formatted.src_port) { in txgbe_fdir_set_input_mask() [all …]
|
/linux-6.12.1/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_model.h | 32 input->filter.formatted.src_ip[0] = (__force __be32)val; in ixgbe_mat_prgm_sip() 33 mask->formatted.src_ip[0] = (__force __be32)m; in ixgbe_mat_prgm_sip() 41 input->filter.formatted.dst_ip[0] = (__force __be32)val; in ixgbe_mat_prgm_dip() 42 mask->formatted.dst_ip[0] = (__force __be32)m; in ixgbe_mat_prgm_dip() 58 input->filter.formatted.src_port = (__force __be16)(val & 0xffff); in ixgbe_mat_prgm_ports() 59 mask->formatted.src_port = (__force __be16)(m & 0xffff); in ixgbe_mat_prgm_ports() 60 input->filter.formatted.dst_port = (__force __be16)(val >> 16); in ixgbe_mat_prgm_ports() 61 mask->formatted.dst_port = (__force __be16)(m >> 16); in ixgbe_mat_prgm_ports()
|
D | ixgbe_82599.c | 1379 tunnel = !!(input.formatted.flow_type & IXGBE_ATR_L4TYPE_TUNNEL_MASK); in ixgbe_fdir_add_signature_filter_82599() 1380 flow_type = input.formatted.flow_type & in ixgbe_fdir_add_signature_filter_82599() 1481 input->formatted.bkt_hash = (__force __be16)(bucket_hash & 0x1FFF); in ixgbe_atr_compute_perfect_hash_82599() 1495 u32 mask = ntohs(input_mask->formatted.dst_port); in ixgbe_get_fdirtcpm_82599() 1498 mask |= ntohs(input_mask->formatted.src_port); in ixgbe_get_fdirtcpm_82599() 1539 if (input_mask->formatted.bkt_hash) in ixgbe_fdir_set_input_mask_82599() 1543 switch (input_mask->formatted.vm_pool & 0x7F) { in ixgbe_fdir_set_input_mask_82599() 1554 switch (input_mask->formatted.flow_type & IXGBE_ATR_L4TYPE_MASK) { in ixgbe_fdir_set_input_mask_82599() 1557 if (input_mask->formatted.dst_port || in ixgbe_fdir_set_input_mask_82599() 1558 input_mask->formatted.src_port) { in ixgbe_fdir_set_input_mask_82599() [all …]
|
D | ixgbe_ethtool.c | 2558 switch (rule->filter.formatted.flow_type) { in ixgbe_get_ethtool_fdir_entry() 2578 fsp->h_u.tcp_ip4_spec.psrc = rule->filter.formatted.src_port; in ixgbe_get_ethtool_fdir_entry() 2579 fsp->m_u.tcp_ip4_spec.psrc = mask->formatted.src_port; in ixgbe_get_ethtool_fdir_entry() 2580 fsp->h_u.tcp_ip4_spec.pdst = rule->filter.formatted.dst_port; in ixgbe_get_ethtool_fdir_entry() 2581 fsp->m_u.tcp_ip4_spec.pdst = mask->formatted.dst_port; in ixgbe_get_ethtool_fdir_entry() 2582 fsp->h_u.tcp_ip4_spec.ip4src = rule->filter.formatted.src_ip[0]; in ixgbe_get_ethtool_fdir_entry() 2583 fsp->m_u.tcp_ip4_spec.ip4src = mask->formatted.src_ip[0]; in ixgbe_get_ethtool_fdir_entry() 2584 fsp->h_u.tcp_ip4_spec.ip4dst = rule->filter.formatted.dst_ip[0]; in ixgbe_get_ethtool_fdir_entry() 2585 fsp->m_u.tcp_ip4_spec.ip4dst = mask->formatted.dst_ip[0]; in ixgbe_get_ethtool_fdir_entry() 2586 fsp->h_ext.vlan_tci = rule->filter.formatted.vlan_id; in ixgbe_get_ethtool_fdir_entry() [all …]
|
/linux-6.12.1/drivers/scsi/qla2xxx/ |
D | tcm_qla2xxx.h | 22 /* ASCII formatted WWPN for FC Initiator Nport */ 64 /* ASCII formatted WWPN for FC Target Lport */ 66 /* ASCII formatted naa WWPN for VPD page 83 etc */
|
/linux-6.12.1/Documentation/gpu/ |
D | msm-crash-dump.rst | 9 This document describes how the output is formatted. 26 The kernel time at crash formatted as seconds.microseconds. 35 ID of the GPU that generated the crash formatted as
|
/linux-6.12.1/drivers/acpi/acpica/ |
D | utuuid.c | 40 * PARAMETERS: in_string - 36-byte formatted UUID string 45 * DESCRIPTION: Convert a 36-byte formatted UUID string to 16-byte UUID buffer 70 * out_string - 36-byte formatted UUID string 74 * DESCRIPTION: Convert 16-byte UUID buffer to 36-byte formatted UUID string
|
D | utpredef.c | 101 * PARAMETERS: buffer - Where the formatted string is returned 104 * RETURN: Formatted string in Buffer. 279 * PARAMETERS: buffer - Where to return the formatted types 333 * PARAMETERS: buffer - Where the formatted string is returned 336 * RETURN: Count of return types. Formatted string in Buffer.
|
D | utprint.c | 4 * Module Name: utprint - Formatted printing routines 314 * DESCRIPTION: Formatted output to a string using argument list pointer. 567 * DESCRIPTION: Formatted output to a string. 592 * DESCRIPTION: Formatted output to a string. 618 * DESCRIPTION: Formatted output to stdout using argument list pointer. 645 * DESCRIPTION: Formatted output to stdout. 671 * DESCRIPTION: Formatted output to a file using argument list pointer. 699 * DESCRIPTION: Formatted output to a file.
|
D | utexcep.c | 21 * PARAMETERS: status - The acpi_status code to be formatted 56 * PARAMETERS: status - The acpi_status code to be formatted in ACPI_EXPORT_SYMBOL()
|
/linux-6.12.1/fs/adfs/ |
D | Kconfig | 11 and from ADFS-formatted floppy discs. If you also want to be able to 28 hard drives and ADFS-formatted floppy disks. This is experimental
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-firmware-dmi-entries | 61 the "formatted" portion of the entry. This 62 "formatted" region is sometimes followed by 67 "formatted" portion of the entry, the
|
/linux-6.12.1/tools/net/ynl/ |
D | ynl-gen-rst.py | 56 """Return a RST formatted field""" 66 """Return a formatted paragraph""" 71 """Return a formatted a bullet""" 137 """Return a formatted label""" 146 """Parse 'multicast' group list and return a formatted string""" 155 """Parse 'do' section and return a formatted string"""
|
/linux-6.12.1/Documentation/userspace-api/media/v4l/ |
D | metafmt-intel-ipu3.rst | 18 interface. They are formatted as described by the :c:type:`ipu3_uapi_stats_3a` 48 formatted as described by the :c:type:`ipu3_uapi_params` structure.
|
/linux-6.12.1/Documentation/userspace-api/media/mediactl/ |
D | media-ioc-device-info.rst | 77 - Media API version, formatted with the ``KERNEL_VERSION()`` macro. 85 - Media device driver version, formatted with the
|
/linux-6.12.1/Documentation/admin-guide/device-mapper/ |
D | dm-integrity.rst | 102 device. If the device is already formatted, the value from the 107 a power of two. If the device is already formatted, the value from 231 The layout of the formatted block device: 239 * magic string - identifies that the device was formatted
|
D | dm-zoned.rst | 29 dm-zoned target devices are formatted and checked using the dmzadm 144 A zoned block device must first be formatted using the dmzadm tool. This 161 Formatted device(s) can be started with the dmzadm utility, too.:
|
/linux-6.12.1/drivers/md/ |
D | dm-clone-metadata.c | 230 * Check if the superblock is formatted or not. We consider the superblock to 231 * be formatted in case we find non-zero bytes in it. 233 static int __superblock_all_zeroes(struct dm_block_manager *bm, bool *formatted) in __superblock_all_zeroes() argument 251 *formatted = false; in __superblock_all_zeroes() 258 *formatted = true; in __superblock_all_zeroes() 426 bool formatted = false; in __open_or_format_metadata() local 428 r = __superblock_all_zeroes(cmd->bm, &formatted); in __open_or_format_metadata() 432 if (!formatted) in __open_or_format_metadata()
|
/linux-6.12.1/drivers/scsi/be2iscsi/ |
D | be_mgmt.c | 1136 * @buf: contains formatted text driver name and version 1139 * size of the formatted string 1152 * @buf: contains formatted text Firmware version 1155 * size of the formatted string 1171 * @buf: contains formatted text Session Count 1174 * size of the formatted string 1203 * @buf: contains formatted text Session Count 1206 * size of the formatted string 1233 * @buf: contains formatted text driver name and version 1236 * size of the formatted string [all …]
|
/linux-6.12.1/fs/xfs/libxfs/ |
D | xfs_btree_staging.h | 116 * have been formatted. Zero prohibits writing any buffers until all 117 * blocks have been formatted.
|
/linux-6.12.1/drivers/scsi/lpfc/ |
D | lpfc_attr.c | 300 * Returns: size of formatted string. 315 * Returns: size of formatted string. 814 * @buf: on return contains the formatted text from lpfc_info(). 816 * Returns: size of formatted string. 831 * @buf: on return contains the formatted text serial number. 833 * Returns: size of formatted string. 850 * @buf: on return contains the formatted support level. 856 * Returns: size of formatted string. 874 * Returns: size of formatted string. 893 * Returns: size of formatted string. [all …]
|
/linux-6.12.1/certs/ |
D | Kconfig | 62 If set, this option should be the filename of a PEM-formatted file 143 If set, this option should be the filename of a PEM-formatted file
|
/linux-6.12.1/Documentation/process/ |
D | 4.Coding.rst | 38 strangely-formatted code. 44 how the code is formatted. 355 be formatted and what information needs to be provided. 366 specially-formatted comments; these comments can be extracted and formatted
|
/linux-6.12.1/fs/hfs/ |
D | Kconfig | 9 If you say Y here, you will be able to mount Macintosh-formatted
|