/linux/drivers/net/ethernet/wangxun/txgbe/ |
H A 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 …]
|
H A 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/drivers/net/ethernet/intel/ixgbe/ |
H A 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()
|
H A 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 …]
|
H A 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/Documentation/gpu/ |
H A 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/fs/adfs/ |
H A 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/drivers/md/ |
H A D | dm-clone-metadata.c | 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/Documentation/userspace-api/media/v4l/ |
H A 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.
|
H A D | vidioc-subdev-querycap.rst | 59 The version number is formatted using the ``KERNEL_VERSION()``
|
/linux/Documentation/ABI/testing/ |
H A 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
|
H A D | debugfs-wilco-ec | 12 Output will formatted with "0x%02x\n".
|
/linux/Documentation/userspace-api/media/mediactl/ |
H A 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/fs/hfs/ |
H A D | Kconfig | 9 If you say Y here, you will be able to mount Macintosh-formatted
|
/linux/fs/hfsplus/ |
H A D | Kconfig | 11 Macintosh-formatted hard drive partitions with full read-write access.
|
/linux/ |
H A D | README | 9 ``make pdfdocs``. The formatted documentation can also be read online at:
|
/linux/tools/net/ynl/lib/ |
H A D | ynl.py | 884 formatted = ':'.join('%02x' % b for b in raw) 887 formatted = hex(raw) 889 formatted = bytes.hex(raw, ' ') 891 formatted = format(ipaddress.ip_address(raw)) 893 formatted = str(uuid.UUID(bytes=raw)) 895 formatted = raw 896 return formatted
|
/linux/fs/exfat/ |
H A D | Kconfig | 9 This allows you to mount devices formatted with the exFAT file system.
|
/linux/tools/perf/util/cs-etm-decoder/ |
H A D | cs-etm-decoder.h | 65 bool formatted; member
|
/linux/fs/qnx6/ |
H A D | Kconfig | 10 Say Y if you intend to mount QNX hard disks or floppies formatted
|
/linux/Documentation/networking/devlink/ |
H A D | devlink-health.rst | 55 Devlink formatted message 59 formatted message structure ``devlink_fmsg`` and send it to the driver's callback
|
/linux/Documentation/admin-guide/device-mapper/ |
H A 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
|
/linux/certs/ |
H A 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/Documentation/dev-tools/ |
H A D | ktap.rst | 37 All KTAP-formatted results begin with a "version line" which specifies which 158 Diagnostic lines are formatted as "# <diagnostic_description>", where the 186 output an entire set of KTAP-formatted results. This can be used to categorize
|
/linux/Documentation/filesystems/ |
H A D | isofs.rst | 35 cruft Try to handle badly formatted CDs.
|