diff options
author | Dan McDonald <danmcd@joyent.com> | 2021-05-10 14:34:28 -0400 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2021-05-10 14:34:30 -0400 |
commit | ef91a17a6ebaa4665ea40b866772359daad463c6 (patch) | |
tree | 6fa31041aff843b53e782cc6ae2ebde56ca96f64 /usr/src/common/elfcap/elfcap.c | |
parent | 12bad196f1094a80f75f7004b6d17522f833ca15 (diff) | |
parent | eee96f107560ac00d5cc32e4aa8a02376aaf19d4 (diff) | |
download | illumos-joyent-ef91a17a6ebaa4665ea40b866772359daad463c6.tar.gz |
[illumos-gate merge]
commit eee96f107560ac00d5cc32e4aa8a02376aaf19d4
13747 udfs: variable may be used uninitialized
commit 920f538e9d81325e0e046cbc740f5c127eaee05a
13748 ypcmd: variable may be used uninitialized
commit c6c850bf6e55f15fd8f56fb2e2c696a02b87948d
13746 statd: variable may be used uninitialized
commit 826703e5ab8201460531b75273c9fa3814413cd9
13760 luxadm: variable may be used uninitialized
commit a16c2dd277fe07b088b1a5da5b953f5415ce55ec
13717 kernel fpu use can still lead to panic
commit 55dca7cbc3def8d68188566c201eb08bfa439fde
13709 sparc: we should be able to read boot_archive in cpio format
commit e476cc14bc84d0f0ee2be4b969d558ef54fd2d8f
13779 su: cast between incompatible function types
commit 2696d28bdff8fd7efcfc04100ee084df09358c52
13773 zs: cast between incompatible function types
commit e3d11eee533a61e848d8b250c8db63f7cb855904
13629 nxge: build errors with gcc 10
commit 1ba081ee9f36cc673e86a7218c97c558c5b193e1
13782 Add missing capabilities for SPARC T4
commit aec0cbfb50629fbd4e80cf64ed4d22f1bb36a1f0
13771 util-tests: create svr4pkg tests
commit 2663b0582183d1cc1437bc1462ecd94eca977da2
13411 zfs_mount_all_mountpoints.ksh: cleanup_all should leave pool root mounted
commit 8459c777fc1aaabb2f7dad05de1313aa169417cd
11245 zfstest rename_dirs_001_pos RENAME_DIRS is undefined
commit c778cbeb4bc8b9609f43b41183c6c774f574a9c2
13745 Make SMBsrv compatible with Modern Cups/ OpenPrinting Cups
commit 9facd51aead02cdbd00e66663a6c34c9254ed0e7
13766 Restore ARC MFU/MRU pressure
Conflicts:
usr/src/pkg/manifests/system-test-utiltest.mf
usr/src/test/util-tests/tests/Makefile
Diffstat (limited to 'usr/src/common/elfcap/elfcap.c')
-rw-r--r-- | usr/src/common/elfcap/elfcap.c | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/usr/src/common/elfcap/elfcap.c b/usr/src/common/elfcap/elfcap.c index 5a8a8cad67..ef9fb8d6b4 100644 --- a/usr/src/common/elfcap/elfcap.c +++ b/usr/src/common/elfcap/elfcap.c @@ -173,6 +173,71 @@ static const elfcap_desc_t hw1_sparc[ELFCAP_NUM_HW1_SPARC] = { AV_SPARC_ASI_CACHE_SPARING, STRDESC("AV_SPARC_ASI_CACHE_SPARING"), STRDESC("CSPARE"), STRDESC("cspare"), + }, + { /* 0x00020000 */ + AV_SPARC_PAUSE, + STRDESC("AV_SPARC_PAUSE"), + STRDESC("PAUSE"), STRDESC("pause"), + }, + { /* 0x00040000 */ + AV_SPARC_CBCOND, + STRDESC("AV_SPARC_CBCOND"), + STRDESC("CBCOND"), STRDESC("cbcond"), + }, + { /* 0x00080000 */ + AV_SPARC_AES, + STRDESC("AV_SPARC_AES"), + STRDESC("AES"), STRDESC("aes"), + }, + { /* 0x00100000 */ + AV_SPARC_DES, + STRDESC("AV_SPARC_DES"), + STRDESC("DES"), STRDESC("des"), + }, + { /* 0x00200000 */ + AV_SPARC_KASUMI, + STRDESC("AV_SPARC_KASUMI"), + STRDESC("KASUMI"), STRDESC("kasumi"), + }, + { /* 0x00400000 */ + AV_SPARC_CAMELLIA, + STRDESC("AV_SPARC_CAMELLIA"), + STRDESC("CAMELLIA"), STRDESC("camellia"), + }, + { /* 0x00800000 */ + AV_SPARC_MD5, + STRDESC("AV_SPARC_MD5"), + STRDESC("MD5"), STRDESC("md5"), + }, + { /* 0x01000000 */ + AV_SPARC_SHA1, + STRDESC("AV_SPARC_SHA1"), + STRDESC("SHA1"), STRDESC("sha1"), + }, + { /* 0x02000000 */ + AV_SPARC_SHA256, + STRDESC("AV_SPARC_SHA256"), + STRDESC("SHA256"), STRDESC("sha256"), + }, + { /* 0x04000000 */ + AV_SPARC_SHA512, + STRDESC("AV_SPARC_SHA512"), + STRDESC("SHA512"), STRDESC("sha512"), + }, + { /* 0x08000000 */ + AV_SPARC_MPMUL, + STRDESC("AV_SPARC_MPMUL"), + STRDESC("MPMUL"), STRDESC("mpmul"), + }, + { /* 0x10000000 */ + AV_SPARC_MONT, + STRDESC("AV_SPARC_MONT"), + STRDESC("MONT"), STRDESC("mont"), + }, + { /* 0x20000000 */ + AV_SPARC_CRC32C, + STRDESC("AV_SPARC_CRC32C"), + STRDESC("CRC32C"), STRDESC("crc32c"), } }; |