License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 17:07:57 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-02-15 11:19:42 +03:00
|
|
|
/*
|
|
|
|
* Copyright IBM Corp. 2007
|
|
|
|
* Author(s): Frank Pavlic <fpavlic@de.ibm.com>,
|
|
|
|
* Thomas Spatzier <tspat@de.ibm.com>,
|
|
|
|
* Frank Blaschka <frank.blaschka@de.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/cio.h>
|
|
|
|
#include "qeth_core_mpc.h"
|
|
|
|
|
|
|
|
unsigned char IDX_ACTIVATE_READ[] = {
|
|
|
|
0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x19, 0x01, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0xc1,
|
|
|
|
0xd3, 0xd3, 0xd6, 0xd3, 0xc5, 0x40, 0x00, 0x00,
|
|
|
|
0x00, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char IDX_ACTIVATE_WRITE[] = {
|
|
|
|
0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x15, 0x01, 0x01, 0x80, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xc8, 0xc1,
|
|
|
|
0xd3, 0xd3, 0xd6, 0xd3, 0xc5, 0x40, 0x00, 0x00,
|
|
|
|
0x00, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char CM_ENABLE[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x63,
|
|
|
|
0x10, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x81, 0x7e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x23,
|
|
|
|
0x00, 0x00, 0x23, 0x05, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x40,
|
|
|
|
0x00, 0x0c, 0x41, 0x02, 0x00, 0x17, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x0b, 0x04, 0x01,
|
|
|
|
0x7e, 0x04, 0x05, 0x00, 0x01, 0x01, 0x0f,
|
|
|
|
0x00,
|
|
|
|
0x0c, 0x04, 0x02, 0xff, 0xff, 0xff, 0xff, 0xff,
|
|
|
|
0xff, 0xff, 0xff
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char CM_SETUP[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02,
|
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x64,
|
|
|
|
0x10, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x81, 0x7e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x24,
|
|
|
|
0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x40,
|
|
|
|
0x00, 0x0c, 0x41, 0x04, 0x00, 0x18, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x09, 0x04, 0x04,
|
|
|
|
0x05, 0x00, 0x01, 0x01, 0x11,
|
|
|
|
0x00, 0x09, 0x04,
|
|
|
|
0x05, 0x05, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x06,
|
|
|
|
0x04, 0x06, 0xc8, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char ULP_ENABLE[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03,
|
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x6b,
|
|
|
|
0x10, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x41, 0x7e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x2b,
|
|
|
|
0x00, 0x00, 0x2b, 0x05, 0x20, 0x01, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x40,
|
|
|
|
0x00, 0x0c, 0x41, 0x02, 0x00, 0x1f, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x0b, 0x04, 0x01,
|
|
|
|
0x03, 0x04, 0x05, 0x00, 0x01, 0x01, 0x12,
|
|
|
|
0x00,
|
|
|
|
0x14, 0x04, 0x0a, 0x00, 0x20, 0x00, 0x00, 0xff,
|
|
|
|
0xff, 0x00, 0x08, 0xc8, 0xe8, 0xc4, 0xf1, 0xc7,
|
|
|
|
0xf1, 0x00, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char ULP_SETUP[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04,
|
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x6c,
|
|
|
|
0x10, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x41, 0x7e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02,
|
|
|
|
0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0x00, 0x2c,
|
|
|
|
0x00, 0x00, 0x2c, 0x05, 0x20, 0x01, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x40,
|
|
|
|
0x00, 0x0c, 0x41, 0x04, 0x00, 0x20, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x09, 0x04, 0x04,
|
|
|
|
0x05, 0x00, 0x01, 0x01, 0x14,
|
|
|
|
0x00, 0x09, 0x04,
|
|
|
|
0x05, 0x05, 0x30, 0x01, 0x00, 0x00,
|
|
|
|
0x00, 0x06,
|
|
|
|
0x04, 0x06, 0x40, 0x00,
|
|
|
|
0x00, 0x08, 0x04, 0x0b,
|
|
|
|
0x00, 0x00, 0x00, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char DM_ACT[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
|
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x55,
|
|
|
|
0x10, 0x00, 0x00, 0x01,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x41, 0x7e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03,
|
|
|
|
0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0x00, 0x15,
|
|
|
|
0x00, 0x00, 0x2c, 0x05, 0x20, 0x01, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x01, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x40,
|
|
|
|
0x00, 0x0c, 0x43, 0x60, 0x00, 0x09, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x09, 0x04, 0x04,
|
|
|
|
0x05, 0x40, 0x01, 0x01, 0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
unsigned char IPA_PDU_HEADER[] = {
|
|
|
|
0x00, 0xe0, 0x00, 0x00, 0x77, 0x77, 0x77, 0x77,
|
2019-02-12 20:33:17 +03:00
|
|
|
0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00,
|
2008-02-15 11:19:42 +03:00
|
|
|
0x10, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0xc1, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
2019-02-12 20:33:17 +03:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x05, 0x77, 0x77, 0x77, 0x77,
|
2008-02-15 11:19:42 +03:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2019-02-12 20:33:17 +03:00
|
|
|
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40,
|
2008-02-15 11:19:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ipa_rc_msg {
|
|
|
|
enum qeth_ipa_return_codes rc;
|
2018-09-26 19:07:10 +03:00
|
|
|
const char *msg;
|
2008-02-15 11:19:42 +03:00
|
|
|
};
|
|
|
|
|
2018-09-26 19:07:10 +03:00
|
|
|
static const struct ipa_rc_msg qeth_ipa_rc_msg[] = {
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_SUCCESS, "success"},
|
|
|
|
{IPA_RC_NOTSUPP, "Command not supported"},
|
|
|
|
{IPA_RC_IP_TABLE_FULL, "Add Addr IP Table Full - ipv6"},
|
|
|
|
{IPA_RC_UNKNOWN_ERROR, "IPA command failed - reason unknown"},
|
|
|
|
{IPA_RC_UNSUPPORTED_COMMAND, "Command not supported"},
|
s390/qeth: add basic VNICC support
VNIC Characteristics (VNICC) are features of HiperSockets that define
how packets are handled by the underlying network hardware. For example,
if the VNICC flooding is configured on a qeth device, ethernet frames to
unknown destination MAC addresses are received.
Currently, there is support for seven VNICCs: flooding, multicast
flooding, receive broadcast, learning, takeover learning, takeover
setvmac, bridge invisible. Also, six IPA commands exist for configuring
VNICCs on a qeth device: query characteristics, query commands, enable
characteristic, disable characteristic, set timeout, get timeout.
This patch adds the basic code infrastructure for VNICC support to qeth.
It allows querying VNICC support from the underlying hardware. To this
end, it adds:
* basic message formats for IPA commands
* basic data structures
* basic error handling
* query characteristics IPA command support
The query characteristics IPA command allows requesting the currently
supported and currently enabled VNIC characteristics from the underlying
hardware.
Support for the other IPA commands and for the configuration of VNICCs
is added in follow-up patches together with the respective user
interface functions.
Signed-off-by: Hans Wippel <hwippel@linux.vnet.ibm.com>
Reviewed-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-09-18 22:18:14 +03:00
|
|
|
{IPA_RC_VNICC_OOSEQ, "Command issued out of sequence"},
|
2017-06-06 15:33:46 +03:00
|
|
|
{IPA_RC_INVALID_FORMAT, "invalid format or length"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_DUP_IPV6_REMOTE, "ipv6 address already registered remote"},
|
2017-06-20 17:00:31 +03:00
|
|
|
{IPA_RC_SBP_IQD_NOT_CONFIGURED, "Not configured for bridgeport"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_DUP_IPV6_HOME, "ipv6 address already registered"},
|
|
|
|
{IPA_RC_UNREGISTERED_ADDR, "Address not registered"},
|
|
|
|
{IPA_RC_NO_ID_AVAILABLE, "No identifiers available"},
|
|
|
|
{IPA_RC_ID_NOT_FOUND, "Identifier not found"},
|
2017-06-20 17:00:31 +03:00
|
|
|
{IPA_RC_SBP_IQD_ANO_DEV_PRIMARY, "Primary bridgeport exists already"},
|
|
|
|
{IPA_RC_SBP_IQD_CURRENT_SECOND, "Bridgeport is currently secondary"},
|
|
|
|
{IPA_RC_SBP_IQD_LIMIT_SECOND, "Limit of secondary bridgeports reached"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_INVALID_IP_VERSION, "IP version incorrect"},
|
2017-06-20 17:00:31 +03:00
|
|
|
{IPA_RC_SBP_IQD_CURRENT_PRIMARY, "Bridgeport is currently primary"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_LAN_FRAME_MISMATCH, "LAN and frame mismatch"},
|
2017-06-20 17:00:31 +03:00
|
|
|
{IPA_RC_SBP_IQD_NO_QDIO_QUEUES, "QDIO queues not established"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_L2_UNSUPPORTED_CMD, "Unsupported layer 2 command"},
|
|
|
|
{IPA_RC_L2_DUP_MAC, "Duplicate MAC address"},
|
|
|
|
{IPA_RC_L2_ADDR_TABLE_FULL, "Layer2 address table full"},
|
|
|
|
{IPA_RC_L2_DUP_LAYER3_MAC, "Duplicate with layer 3 MAC"},
|
|
|
|
{IPA_RC_L2_GMAC_NOT_FOUND, "GMAC not found"},
|
2009-05-20 01:38:39 +04:00
|
|
|
{IPA_RC_L2_MAC_NOT_AUTH_BY_HYP, "L2 mac not authorized by hypervisor"},
|
|
|
|
{IPA_RC_L2_MAC_NOT_AUTH_BY_ADP, "L2 mac not authorized by adapter"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_L2_MAC_NOT_FOUND, "L2 mac address not found"},
|
|
|
|
{IPA_RC_L2_INVALID_VLAN_ID, "L2 invalid vlan id"},
|
|
|
|
{IPA_RC_L2_DUP_VLAN_ID, "L2 duplicate vlan id"},
|
|
|
|
{IPA_RC_L2_VLAN_ID_NOT_FOUND, "L2 vlan id not found"},
|
s390/qeth: add basic VNICC support
VNIC Characteristics (VNICC) are features of HiperSockets that define
how packets are handled by the underlying network hardware. For example,
if the VNICC flooding is configured on a qeth device, ethernet frames to
unknown destination MAC addresses are received.
Currently, there is support for seven VNICCs: flooding, multicast
flooding, receive broadcast, learning, takeover learning, takeover
setvmac, bridge invisible. Also, six IPA commands exist for configuring
VNICCs on a qeth device: query characteristics, query commands, enable
characteristic, disable characteristic, set timeout, get timeout.
This patch adds the basic code infrastructure for VNICC support to qeth.
It allows querying VNICC support from the underlying hardware. To this
end, it adds:
* basic message formats for IPA commands
* basic data structures
* basic error handling
* query characteristics IPA command support
The query characteristics IPA command allows requesting the currently
supported and currently enabled VNIC characteristics from the underlying
hardware.
Support for the other IPA commands and for the configuration of VNICCs
is added in follow-up patches together with the respective user
interface functions.
Signed-off-by: Hans Wippel <hwippel@linux.vnet.ibm.com>
Reviewed-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-09-18 22:18:14 +03:00
|
|
|
{IPA_RC_VNICC_VNICBP, "VNIC is BridgePort"},
|
2017-06-20 17:00:31 +03:00
|
|
|
{IPA_RC_SBP_OSA_NOT_CONFIGURED, "Not configured for bridgeport"},
|
|
|
|
{IPA_RC_SBP_OSA_OS_MISMATCH, "OS mismatch"},
|
|
|
|
{IPA_RC_SBP_OSA_ANO_DEV_PRIMARY, "Primary bridgeport exists already"},
|
|
|
|
{IPA_RC_SBP_OSA_CURRENT_SECOND, "Bridgeport is currently secondary"},
|
|
|
|
{IPA_RC_SBP_OSA_LIMIT_SECOND, "Limit of secondary bridgeports reached"},
|
|
|
|
{IPA_RC_SBP_OSA_NOT_AUTHD_BY_ZMAN, "Not authorized by zManager"},
|
|
|
|
{IPA_RC_SBP_OSA_CURRENT_PRIMARY, "Bridgeport is currently primary"},
|
|
|
|
{IPA_RC_SBP_OSA_NO_QDIO_QUEUES, "QDIO queues not established"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_DATA_MISMATCH, "Data field mismatch (v4/v6 mixed)"},
|
|
|
|
{IPA_RC_INVALID_MTU_SIZE, "Invalid MTU size"},
|
|
|
|
{IPA_RC_INVALID_LANTYPE, "Invalid LAN type"},
|
|
|
|
{IPA_RC_INVALID_LANNUM, "Invalid LAN num"},
|
|
|
|
{IPA_RC_DUPLICATE_IP_ADDRESS, "Address already registered"},
|
|
|
|
{IPA_RC_IP_ADDR_TABLE_FULL, "IP address table full"},
|
|
|
|
{IPA_RC_LAN_PORT_STATE_ERROR, "LAN port state error"},
|
|
|
|
{IPA_RC_SETIP_NO_STARTLAN, "Setip no startlan received"},
|
|
|
|
{IPA_RC_SETIP_ALREADY_RECEIVED, "Setip already received"},
|
|
|
|
{IPA_RC_IP_ADDR_ALREADY_USED, "IP address already in use on LAN"},
|
2008-04-01 12:26:53 +04:00
|
|
|
{IPA_RC_MC_ADDR_NOT_FOUND, "Multicast address not found"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_SETIP_INVALID_VERSION, "SETIP invalid IP version"},
|
|
|
|
{IPA_RC_UNSUPPORTED_SUBCMD, "Unsupported assist subcommand"},
|
|
|
|
{IPA_RC_ARP_ASSIST_NO_ENABLE, "Only partial success, no enable"},
|
|
|
|
{IPA_RC_PRIMARY_ALREADY_DEFINED, "Primary already defined"},
|
|
|
|
{IPA_RC_SECOND_ALREADY_DEFINED, "Secondary already defined"},
|
|
|
|
{IPA_RC_INVALID_SETRTG_INDICATOR, "Invalid SETRTG indicator"},
|
|
|
|
{IPA_RC_MC_ADDR_ALREADY_DEFINED, "Multicast address already defined"},
|
|
|
|
{IPA_RC_LAN_OFFLINE, "STRTLAN_LAN_DISABLED - LAN offline"},
|
2013-01-21 06:30:20 +04:00
|
|
|
{IPA_RC_VEPA_TO_VEB_TRANSITION, "Adj. switch disabled port mode RR"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_INVALID_IP_VERSION2, "Invalid IP version"},
|
s390/qeth: allow cmd callbacks to return errnos
Error propagation from cmd callbacks currently works in a way where
qeth_send_control_data_cb() picks the raw HW code from the response,
and the cmd's originator later translates this into an errno.
The callback itself only returns 0 ("done") or 1 ("expect more data").
This is
1. limiting, as the only means for the callback to report an internal
error is to invent pseudo HW codes (such as IPA_RC_ENOMEM), that
the originator then needs to understand. For non-IPA callbacks, we
even provide a separate field in the IO buffer metadata (iob->rc) so
the callback can pass back a return value.
2. fragile, as the originator must take care to not translate any errno
that is returned by qeth's own IO code paths (eg -ENOMEM). Also, any
originator that forgets to translate the HW codes potentially passes
garbage back to its caller. For instance, see
commit 2aa4867198c2 ("s390/qeth: translate SETVLAN/DELVLAN errors").
Introduce a new model where all HW error translation is done within the
callback, and the callback returns
> 0, if it expects more data (as before)
== 0, on success
< 0, with an errno
Start off with converting all callbacks to the new model that either
a) pass back pseudo HW codes, or b) have a dependency on a specific
HW error code. Also convert c) the one callback that uses iob->rc, and
d) qeth_setadpparms_change_macaddr_cb() so that it can pass back an
error back to qeth_l2_request_initial_mac() even when the cmd itself
was successful.
The old model remains supported: if the callback returns 0, we still
propagate the response's HW error code back to the originator.
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2019-02-12 20:33:23 +03:00
|
|
|
/* default for qeth_get_ipa_msg(): */
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_RC_FFFF, "Unknown Error"}
|
|
|
|
};
|
|
|
|
|
2018-09-26 19:07:10 +03:00
|
|
|
const char *qeth_get_ipa_msg(enum qeth_ipa_return_codes rc)
|
2008-02-15 11:19:42 +03:00
|
|
|
{
|
2018-09-26 19:07:10 +03:00
|
|
|
int x;
|
|
|
|
|
|
|
|
for (x = 0; x < ARRAY_SIZE(qeth_ipa_rc_msg) - 1; x++)
|
|
|
|
if (qeth_ipa_rc_msg[x].rc == rc)
|
|
|
|
return qeth_ipa_rc_msg[x].msg;
|
2008-02-15 11:19:42 +03:00
|
|
|
return qeth_ipa_rc_msg[x].msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct ipa_cmd_names {
|
|
|
|
enum qeth_ipa_cmds cmd;
|
2018-09-26 19:07:10 +03:00
|
|
|
const char *name;
|
2008-02-15 11:19:42 +03:00
|
|
|
};
|
|
|
|
|
2018-09-26 19:07:10 +03:00
|
|
|
static const struct ipa_cmd_names qeth_ipa_cmd_names[] = {
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_CMD_STARTLAN, "startlan"},
|
|
|
|
{IPA_CMD_STOPLAN, "stoplan"},
|
|
|
|
{IPA_CMD_SETVMAC, "setvmac"},
|
2008-04-01 12:26:58 +04:00
|
|
|
{IPA_CMD_DELVMAC, "delvmac"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_CMD_SETGMAC, "setgmac"},
|
|
|
|
{IPA_CMD_DELGMAC, "delgmac"},
|
|
|
|
{IPA_CMD_SETVLAN, "setvlan"},
|
|
|
|
{IPA_CMD_DELVLAN, "delvlan"},
|
s390/qeth: add basic VNICC support
VNIC Characteristics (VNICC) are features of HiperSockets that define
how packets are handled by the underlying network hardware. For example,
if the VNICC flooding is configured on a qeth device, ethernet frames to
unknown destination MAC addresses are received.
Currently, there is support for seven VNICCs: flooding, multicast
flooding, receive broadcast, learning, takeover learning, takeover
setvmac, bridge invisible. Also, six IPA commands exist for configuring
VNICCs on a qeth device: query characteristics, query commands, enable
characteristic, disable characteristic, set timeout, get timeout.
This patch adds the basic code infrastructure for VNICC support to qeth.
It allows querying VNICC support from the underlying hardware. To this
end, it adds:
* basic message formats for IPA commands
* basic data structures
* basic error handling
* query characteristics IPA command support
The query characteristics IPA command allows requesting the currently
supported and currently enabled VNIC characteristics from the underlying
hardware.
Support for the other IPA commands and for the configuration of VNICCs
is added in follow-up patches together with the respective user
interface functions.
Signed-off-by: Hans Wippel <hwippel@linux.vnet.ibm.com>
Reviewed-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2017-09-18 22:18:14 +03:00
|
|
|
{IPA_CMD_VNICC, "vnic_characteristics"},
|
2015-05-18 15:27:56 +03:00
|
|
|
{IPA_CMD_SETBRIDGEPORT_OSA, "set_bridge_port(osa)"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_CMD_SETCCID, "setccid"},
|
|
|
|
{IPA_CMD_DELCCID, "delccid"},
|
|
|
|
{IPA_CMD_MODCCID, "modccid"},
|
|
|
|
{IPA_CMD_SETIP, "setip"},
|
|
|
|
{IPA_CMD_QIPASSIST, "qipassist"},
|
|
|
|
{IPA_CMD_SETASSPARMS, "setassparms"},
|
|
|
|
{IPA_CMD_SETIPM, "setipm"},
|
|
|
|
{IPA_CMD_DELIPM, "delipm"},
|
|
|
|
{IPA_CMD_SETRTG, "setrtg"},
|
|
|
|
{IPA_CMD_DELIP, "delip"},
|
|
|
|
{IPA_CMD_SETADAPTERPARMS, "setadapterparms"},
|
|
|
|
{IPA_CMD_SET_DIAG_ASS, "set_diag_ass"},
|
2015-05-18 15:27:56 +03:00
|
|
|
{IPA_CMD_SETBRIDGEPORT_IQD, "set_bridge_port(hs)"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_CMD_CREATE_ADDR, "create_addr"},
|
|
|
|
{IPA_CMD_DESTROY_ADDR, "destroy_addr"},
|
|
|
|
{IPA_CMD_REGISTER_LOCAL_ADDR, "register_local_addr"},
|
|
|
|
{IPA_CMD_UNREGISTER_LOCAL_ADDR, "unregister_local_addr"},
|
2014-01-14 18:54:13 +04:00
|
|
|
{IPA_CMD_ADDRESS_CHANGE_NOTIF, "address_change_notification"},
|
2008-02-15 11:19:42 +03:00
|
|
|
{IPA_CMD_UNKNOWN, "unknown"},
|
|
|
|
};
|
|
|
|
|
2018-09-26 19:07:10 +03:00
|
|
|
const char *qeth_get_ipa_cmd_name(enum qeth_ipa_cmds cmd)
|
2008-02-15 11:19:42 +03:00
|
|
|
{
|
2018-09-26 19:07:10 +03:00
|
|
|
int x;
|
|
|
|
|
|
|
|
for (x = 0; x < ARRAY_SIZE(qeth_ipa_cmd_names) - 1; x++)
|
|
|
|
if (qeth_ipa_cmd_names[x].cmd == cmd)
|
|
|
|
return qeth_ipa_cmd_names[x].name;
|
2008-02-15 11:19:42 +03:00
|
|
|
return qeth_ipa_cmd_names[x].name;
|
|
|
|
}
|