Fix clippy (#17214)

Newer clippy from +nightly have new errors about where annotations can and
cannot go.  This commit fixes two of them.
This commit is contained in:
Brooks Prumo 2021-05-13 17:51:36 -05:00 committed by GitHub
parent 27004f1b76
commit b074e86ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 14 deletions

View File

@ -244,13 +244,11 @@ pub fn verify_shreds_gpu(
shred_gpu_offsets(pubkeys_len, batches, recycler_cache);
let mut out = recycler_cache.buffer().allocate("out_buffer");
out.set_pinnable();
elems.push(
perf_libs::Elems {
#![allow(clippy::cast_ptr_alignment)]
elems.push(perf_libs::Elems {
#[allow(clippy::cast_ptr_alignment)]
elems: pubkeys.as_ptr() as *const solana_sdk::packet::Packet,
num: num_packets as u32,
},
);
});
for p in batches {
elems.push(perf_libs::Elems {
@ -383,13 +381,11 @@ pub fn sign_shreds_gpu(
let mut signatures_out = recycler_cache.buffer().allocate("ed25519 signatures");
signatures_out.set_pinnable();
signatures_out.resize(total_sigs * sig_size, 0);
elems.push(
perf_libs::Elems {
#![allow(clippy::cast_ptr_alignment)]
elems.push(perf_libs::Elems {
#[allow(clippy::cast_ptr_alignment)]
elems: pinned_keypair.as_ptr() as *const solana_sdk::packet::Packet,
num: num_keypair_packets as u32,
},
);
});
for p in batches.iter() {
elems.push(perf_libs::Elems {