Home
last modified time | relevance | path

Searched full:verify (Results 1 – 25 of 2019) sorted by relevance

12345678910>>...81

/Linux-v6.1/tools/testing/selftests/bpf/progs/
Dmap_ptr_kern.c24 #define VERIFY(expr) ({ \ macro
41 VERIFY(map->map_type == g_map_type); in check_bpf_map_fields()
42 VERIFY(map->key_size == key_size); in check_bpf_map_fields()
43 VERIFY(map->value_size == value_size); in check_bpf_map_fields()
44 VERIFY(map->max_entries == max_entries); in check_bpf_map_fields()
45 VERIFY(map->id > 0); in check_bpf_map_fields()
53 VERIFY(indirect->map_type == direct->map_type); in check_bpf_map_ptr()
54 VERIFY(indirect->key_size == direct->key_size); in check_bpf_map_ptr()
55 VERIFY(indirect->value_size == direct->value_size); in check_bpf_map_ptr()
56 VERIFY(indirect->max_entries == direct->max_entries); in check_bpf_map_ptr()
[all …]
/Linux-v6.1/scripts/
Dget_dvb_firmware60 verify("$tmpdir/software/OEM/HE/App/boot/SC_MAIN.MC", $hash);
80 verify("$tmpdir/ZEnglish/sc_main.mc", $hash);
98 verify("$tmpdir/fwtmp", $hash);
116 verify("$tmpdir/fwtmp", $hash);
134 verify("$tmpdir/fwtmp", $hash);
149 verify($sourcefile, $hash);
166 verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_T.bin", $hash);
183 verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_X.bin", $hash);
200 verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_S.bin", $hash);
216 verify("$tmpdir/fw1part1-1","5e0909858fdf0b5b09ad48b9fe622e70");
[all …]
/Linux-v6.1/tools/testing/selftests/livepatch/
Dtest-livepatch.sh14 # verify correct behavior
49 # verify correct behavior
50 # - load another livepatch and verify that both livepatches are active
51 # - unload the second livepatch and verify that the first is still active
52 # - unload the first livepatch and verify none are active
109 # verify correct behavior
110 # - load an atomic replace livepatch and verify that only the second is active
111 # - remove the first livepatch and verify that the atomic replace livepatch
113 # - remove the atomic replace livepatch and verify that none are active
Dtest-ftrace.sh12 # - turn ftrace_enabled OFF and verify livepatches can't load
13 # - turn ftrace_enabled ON and verify livepatch can load
14 # - verify that ftrace_enabled can't be turned OFF while a livepatch is loaded
/Linux-v6.1/Documentation/admin-guide/device-mapper/
Ddm-init.rst45 `cache` constrained, userspace should verify cache device
48 `era` constrained, userspace should verify metadata device
51 `log-writes` constrained, userspace should verify metadata device
52 `mirror` constrained, userspace should verify main/mirror device
53 `raid` constrained, userspace should verify metadata device
54 `snapshot` constrained, userspace should verify src/dst device
56 `snapshot-merge` constrained, userspace should verify src/dst device
58 `switch` constrained, userspace should verify dev path
62 `writecache` constrained, userspace should verify cache device
/Linux-v6.1/lib/
Dmemcpy_kunit.c79 /* Verify static initializers. */ in memcpy_test()
84 /* Verify assignment. */ in memcpy_test()
88 /* Verify complete overwrite. */ in memcpy_test()
92 /* Verify middle overwrite. */ in memcpy_test()
97 /* Verify argument side-effects aren't repeated. */ in memcpy_test()
151 /* Verify static initializers. */ in memmove_test()
156 /* Verify assignment. */ in memmove_test()
160 /* Verify complete overwrite. */ in memmove_test()
164 /* Verify middle overwrite. */ in memmove_test()
169 /* Verify argument side-effects aren't repeated. */ in memmove_test()
[all …]
/Linux-v6.1/fs/xfs/libxfs/
Dxfs_types.c18 * Verify that an AG block number pointer neither points outside the AG
38 * Verify that an FS block number pointer neither points outside the
54 * Verify that a data device extent is fully contained inside the filesystem,
77 * Verify that an AG inode number pointer neither points outside the AG
94 * Verify that an FS inode number pointer neither points outside the
124 * Verify that a directory entry's inode number doesn't point at an internal
138 * Verify that an realtime block number pointer doesn't point off the
149 /* Verify that a realtime device extent is fully contained inside the volume. */
/Linux-v6.1/net/llc/
Dllc_s_ac.c35 * UNITDATA INDICATION; verify our event is the kind we expect
50 * event. Verify the primitive is a UNITDATA REQUEST.
74 * primitive from the network layer. Verify event is a primitive type
75 * event. Verify the primitive is a XID REQUEST.
99 * command PDU. Verify event is a PDU type event
130 * primitive from the network layer. Verify event is a primitive type
131 * event; verify the primitive is a TEST REQUEST.
180 * Report data link status to layer management. Verify our event is the
208 * primitive. Verify our event is a PDU type event.
/Linux-v6.1/drivers/gpu/drm/i915/gvt/
Dfirmware.c159 #define VERIFY(s, a, b) do { \ in verify_firmware() macro
165 VERIFY("magic number", h->magic, VGT_MAGIC); in verify_firmware()
166 VERIFY("version", h->version, FIRMWARE_VERSION); in verify_firmware()
167 VERIFY("crc32", h->crc32, crc32_le(0, mem, fw->size - crc32_start)); in verify_firmware()
168 VERIFY("cfg space size", h->cfg_space_size, info->cfg_space_size); in verify_firmware()
169 VERIFY("mmio size", h->mmio_size, info->mmio_size); in verify_firmware()
174 VERIFY("vender id", id, pdev->vendor); in verify_firmware()
177 VERIFY("device id", id, pdev->device); in verify_firmware()
180 VERIFY("revision id", id, pdev->revision); in verify_firmware()
182 #undef VERIFY in verify_firmware()
/Linux-v6.1/tools/testing/selftests/memfd/
Dmemfd_test.c247 /* verify PROT_READ *is* allowed */ in mfd_assert_read()
260 /* verify MAP_PRIVATE is *always* allowed (even writable) */ in mfd_assert_read()
279 /* verify PROT_READ and MAP_SHARED *is* allowed */ in mfd_assert_read_shared()
335 * verify everything else here. in mfd_assert_write()
338 /* verify write() succeeds */ in mfd_assert_write()
346 /* verify PROT_READ | PROT_WRITE is allowed */ in mfd_assert_write()
360 /* verify PROT_WRITE is allowed */ in mfd_assert_write()
374 /* verify PROT_READ with MAP_SHARED is allowed and a following in mfd_assert_write()
396 /* verify PUNCH_HOLE works */ in mfd_assert_write()
413 /* verify write() fails */ in mfd_fail_write()
[all …]
/Linux-v6.1/fs/verity/
Dverify.c60 * Verify a single data page against the file's Merkle tree.
62 * In principle, we need to verify the entire path to the root node. However,
65 * the PageChecked bit being set; then verify the path to that page.
71 * Note that multiple processes may race to verify a hash page and mark it
158 /* Finally, verify the data page */ in verify_page()
171 * fsverity_verify_page() - verify a data page
174 * Verify a page that has just been read from a verity file. The page must be a
199 * fsverity_verify_bio() - verify a 'read' bio that has just completed
200 * @bio: the bio to verify
202 * Verify a set of pages that have just been read from a verity file. The pages
/Linux-v6.1/drivers/net/ethernet/mellanox/mlx4/
Dcmd.c296 /* First, verify that the master reports correct status */ in mlx4_comm_cmd_poll()
1068 .verify = NULL,
1077 .verify = NULL,
1086 .verify = NULL,
1095 .verify = NULL,
1104 .verify = NULL,
1113 .verify = NULL,
1122 .verify = NULL,
1131 .verify = NULL,
1140 .verify = NULL,
[all …]
/Linux-v6.1/include/crypto/
Dakcipher.h17 * For verify op this is signature + digest, in that case
19 * @dst: Destination data (Should be NULL for verify op)
21 * For verify op it's size of signature part of @src, this part
23 * @dst_len: Size of @dst buffer (for all ops except verify).
30 * For verify op this is size of digest part in @src.
59 * @verify: Function performs a complete verify operation as defined by
94 int (*verify)(struct akcipher_request *req); member
243 * @dst: ptr to output scatter list or NULL for verify op
246 * portion in @src for verify op
370 ret = alg->verify(req); in crypto_akcipher_verify()
/Linux-v6.1/tools/testing/selftests/bpf/
Dtest_bpftool_synctypes.py474 def verify(first_set, second_set, message): function
490 Verify that bpftool's code, help messages, documentation and bash
513 verify(source_map_types, help_map_types,
515 verify(source_map_types, man_map_types,
517 verify(help_map_options, man_map_options,
539 verify(source_prog_attach_types, help_prog_attach_types,
541 verify(source_prog_attach_types, man_prog_attach_types,
543 verify(help_prog_options, man_prog_options,
545 verify(source_prog_attach_types, bashcomp_prog_attach_types,
562 verify(source_cgroup_attach_types, help_cgroup_attach_types,
[all …]
/Linux-v6.1/tools/testing/selftests/sysctl/
Dsysctl.sh171 verify() function
230 if ! verify "${TEST_FILE}"; then
238 if verify "${TARGET}"; then
247 if ! verify "${TARGET}"; then
256 if verify "${TARGET}"; then
270 if ! verify "${TARGET}"; then
280 if ! verify "${TARGET}"; then
290 if verify "${TARGET}"; then
301 if verify "${TARGET}"; then
373 if ! verify "${TARGET}"; then
[all …]
/Linux-v6.1/drivers/net/ethernet/intel/fm10k/
Dfm10k_vf.c81 /* Clear reset bit and verify it was cleared */ in fm10k_reset_hw_vf()
100 /* verify we have at least 1 queue */ in fm10k_init_hw_vf()
109 /* verify the Descriptor cache offsets are increasing */ in fm10k_init_hw_vf()
114 /* check to verify the PF doesn't own any of our queues */ in fm10k_init_hw_vf()
172 /* verify the index is not set */ in fm10k_update_vlan_vf()
176 /* clever trick to verify reserved bits in both vid and length */ in fm10k_update_vlan_vf()
278 /* verify VLAN ID is valid */ in fm10k_update_uc_addr_vf()
282 /* verify MAC address is valid */ in fm10k_update_uc_addr_vf()
286 /* verify we are not locked down on the MAC address */ in fm10k_update_uc_addr_vf()
321 /* verify VLAN ID is valid */ in fm10k_update_mc_addr_vf()
[all …]
Dfm10k_tlv.c15 /* verify pointer is not NULL */ in fm10k_tlv_msg_init()
40 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_null_string()
88 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_null_string()
118 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_mac_vlan()
151 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_mac_vlan()
174 /* verify pointers are not NULL */ in fm10k_tlv_attr_put_bool()
202 /* verify non-null msg and len is 1, 2, 4, or 8 */ in fm10k_tlv_attr_put_value()
240 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_value()
277 /* verify non-null msg and len is in 32 bit words */ in fm10k_tlv_attr_put_le_struct()
314 /* verify pointers are not NULL */ in fm10k_tlv_attr_get_le_struct()
[all …]
/Linux-v6.1/drivers/mtd/tests/
Dmtd_nandecctest.c30 int (*verify)(void *, void *, void *, const size_t); member
204 .verify = no_bit_error_verify,
209 .verify = single_bit_error_correct,
214 .verify = single_bit_error_correct,
219 .verify = double_bit_error_detect,
224 .verify = double_bit_error_detect,
229 .verify = double_bit_error_detect,
274 err = nand_ecc_test[i].verify(error_data, error_ecc, in nand_ecc_test_run()
/Linux-v6.1/kernel/time/
Dclocksource-wdtest.c113 * Verify that jiffies-like clocksources get the manually in wdtest_func()
116 pr_info("--- Verify jiffies-like uncertainty margin.\n"); in wdtest_func()
128 * Verify that tsc-like clocksources are assigned a reasonable in wdtest_func()
131 pr_info("--- Verify tsc-like uncertainty margin.\n"); in wdtest_func()
141 /* Verify tsc-like stability with various numbers of errors injected. */ in wdtest_func()
158 /* Verify tsc-like stability with clock-value-fuzz error injection. */ in wdtest_func()
/Linux-v6.1/crypto/asymmetric_keys/
Dpkcs7_verify.c2 /* Verify the signature on a PKCS#7 message.
153 * Find the key (X.509 certificate) to use to verify a PKCS#7 message. PKCS#7
191 * Verify the internal certificate chain as best we can.
207 pr_debug("verify %s: %*phN\n", in pkcs7_verify_sig_chain()
314 * Verify one signed information block from a PKCS#7 message.
353 /* Verify the PKCS#7 binary against the key */ in pkcs7_verify_one()
360 /* Verify the internal certificate chain */ in pkcs7_verify_one()
365 * pkcs7_verify - Verify a PKCS#7 message
369 * Verify a PKCS#7 message is internally consistent - that is, the data digest
465 * pkcs7_supply_detached_data - Supply the data needed to verify a PKCS#7 message
[all …]
/Linux-v6.1/arch/x86/boot/
Dgenimage.sh48 # Verify the existence and readability of a file
49 verify() { function
68 verify "$FBZIMAGE"
202 verify "$MTOOLSRC"
209 verify "$MTOOLSRC"
217 verify "$MTOOLSRC"
225 verify "$MTOOLSRC"
/Linux-v6.1/tools/testing/selftests/perf_events/
Dremove_on_exec.c99 /* Verify event propagates to fork'd child. */
118 * Verify that event does _not_ propagate to fork+exec'd child; event enabled
160 /* Verify removal from child did not affect this task's event. */ in TEST_F()
169 * Verify that event does _not_ propagate to fork+exec'd child; event enabled
193 /* Verify removal from child did not affect this task's event. */ in TEST_F()
223 /* Verify event is still alive. */ in TEST_F()
/Linux-v6.1/drivers/s390/crypto/
Dzcrypt_ccamisc.h216 int cca_findcard(const u8 *key, u16 *pcardnr, u16 *pdomain, int verify);
226 * - if verify is enabled and a cur_mkvp and/or old_mkvp
240 int verify);
263 u8 new_asym_mkvp[16]; /* verify pattern of new asym master key */
264 u8 cur_asym_mkvp[16]; /* verify pattern of current asym master key */
265 u8 old_asym_mkvp[16]; /* verify pattern of old asym master key */
272 int cca_get_info(u16 card, u16 dom, struct cca_info *ci, int verify);
/Linux-v6.1/tools/testing/selftests/powerpc/ptrace/
Dptrace-pkey.c162 * verify them, but we can verify that the AMR didn't change. in child()
210 /* Verify that we can read the pkey registers from the child. */ in parent()
227 /* Wake up child so that it can verify it changed. */ in parent()
241 /* Wake up child so that it can verify it didn't change. */ in parent()
266 /* Verify that all registers still have their expected values. */ in parent()
277 /* Wake up child so that it can verify AMR didn't change and wrap up. */ in parent()
/Linux-v6.1/tools/testing/ktest/examples/include/
Dbootconfig.conf39 BOOTCONFIG_VERIFY = verify-boottrace.sh
51 BOOTCONFIG_VERIFY = verify-functiongraph.sh
63 BOOTCONFIG_VERIFY = verify-tracing.sh

12345678910>>...81