aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2023-12-11 15:31:47 +0100
committerAlex Auvolat <alex@adnab.me>2023-12-11 15:31:47 +0100
commit85b5a6bcd11c0a7651e4c589569e1935a3d18e46 (patch)
tree5aabcc8e161dfb304514e23e59f9ccf5a52a6d0a
parente4f493b48156e6e30f16fba10f300f6cb5fe0b0d (diff)
downloadgarage-85b5a6bcd11c0a7651e4c589569e1935a3d18e46.tar.gz
garage-85b5a6bcd11c0a7651e4c589569e1935a3d18e46.zip
fix some clippy lints
-rw-r--r--src/api/admin/cluster.rs2
-rw-r--r--src/rpc/layout/helper.rs2
-rw-r--r--src/rpc/layout/history.rs14
-rw-r--r--src/rpc/layout/mod.rs2
-rw-r--r--src/rpc/layout/version.rs6
-rw-r--r--src/rpc/rpc_helper.rs2
-rw-r--r--src/rpc/system.rs2
-rw-r--r--src/table/sync.rs8
-rw-r--r--src/table/table.rs3
9 files changed, 19 insertions, 22 deletions
diff --git a/src/api/admin/cluster.rs b/src/api/admin/cluster.rs
index 3ce1b254..8677257d 100644
--- a/src/api/admin/cluster.rs
+++ b/src/api/admin/cluster.rs
@@ -94,7 +94,7 @@ pub async fn handle_get_cluster_status(garage: &Arc<Garage>) -> Result<Response<
}
}
- let mut nodes = nodes.into_iter().map(|(_, v)| v).collect::<Vec<_>>();
+ let mut nodes = nodes.into_values().collect::<Vec<_>>();
nodes.sort_by(|x, y| x.id.cmp(&y.id));
let res = GetClusterStatusResponse {
diff --git a/src/rpc/layout/helper.rs b/src/rpc/layout/helper.rs
index 2ba010b8..7e5d37e9 100644
--- a/src/rpc/layout/helper.rs
+++ b/src/rpc/layout/helper.rs
@@ -129,7 +129,7 @@ impl LayoutHelper {
where
F: FnOnce(&mut LayoutHistory) -> bool,
{
- let changed = f(&mut self.layout.as_mut().unwrap());
+ let changed = f(self.layout.as_mut().unwrap());
if changed {
*self = Self::new(
self.replication_mode,
diff --git a/src/rpc/layout/history.rs b/src/rpc/layout/history.rs
index a53256cc..23196aee 100644
--- a/src/rpc/layout/history.rs
+++ b/src/rpc/layout/history.rs
@@ -42,8 +42,7 @@ impl LayoutHistory {
let set = self
.versions
.iter()
- .map(|x| x.all_nodes())
- .flatten()
+ .flat_map(|x| x.all_nodes())
.collect::<HashSet<_>>();
set.into_iter().copied().collect::<Vec<_>>()
}
@@ -56,8 +55,7 @@ impl LayoutHistory {
let set = self
.versions
.iter()
- .map(|x| x.nongateway_nodes())
- .flatten()
+ .flat_map(|x| x.nongateway_nodes())
.collect::<HashSet<_>>();
set.into_iter().copied().collect::<Vec<_>>()
}
@@ -94,7 +92,7 @@ impl LayoutHistory {
let sync_ack_map_min = self
.update_trackers
.sync_ack_map
- .min_among(&current_nodes, min_version);
+ .min_among(current_nodes, min_version);
if self.min_stored() < sync_ack_map_min {
let removed = self.versions.remove(0);
info!(
@@ -144,7 +142,7 @@ impl LayoutHistory {
let global_min = self
.update_trackers
.sync_map
- .min_among(&all_nongateway_nodes, min_version);
+ .min_among(all_nongateway_nodes, min_version);
// If the write quorums are equal to the total number of nodes,
// i.e. no writes can succeed while they are not written to all nodes,
@@ -281,7 +279,7 @@ To know the correct value of the new layout version, invoke `garage layout show`
let (new_version, msg) = self
.current()
.clone()
- .calculate_next_version(&self.staging.get())?;
+ .calculate_next_version(self.staging.get())?;
self.versions.push(new_version);
self.cleanup_old_versions();
@@ -297,7 +295,7 @@ To know the correct value of the new layout version, invoke `garage layout show`
pub fn revert_staged_changes(mut self) -> Result<Self, Error> {
self.staging.update(LayoutStaging {
- parameters: Lww::new(self.current().parameters.clone()),
+ parameters: Lww::new(self.current().parameters),
roles: LwwMap::new(),
});
diff --git a/src/rpc/layout/mod.rs b/src/rpc/layout/mod.rs
index facdb2ce..162e3c6e 100644
--- a/src/rpc/layout/mod.rs
+++ b/src/rpc/layout/mod.rs
@@ -357,7 +357,7 @@ mod v010 {
update_trackers: UpdateTrackers {
ack_map: update_tracker.clone(),
sync_map: update_tracker.clone(),
- sync_ack_map: update_tracker.clone(),
+ sync_ack_map: update_tracker,
},
staging: Lww::raw(previous.version, staging),
}
diff --git a/src/rpc/layout/version.rs b/src/rpc/layout/version.rs
index 5b307156..ee4b2821 100644
--- a/src/rpc/layout/version.rs
+++ b/src/rpc/layout/version.rs
@@ -137,19 +137,19 @@ impl LayoutVersion {
// ===================== internal information extractors ======================
pub(crate) fn expect_get_node_capacity(&self, uuid: &Uuid) -> u64 {
- self.get_node_capacity(&uuid)
+ self.get_node_capacity(uuid)
.expect("non-gateway node with zero capacity")
}
pub(crate) fn expect_get_node_zone(&self, uuid: &Uuid) -> &str {
- self.get_node_zone(&uuid).expect("node without a zone")
+ self.get_node_zone(uuid).expect("node without a zone")
}
/// Returns the sum of capacities of non gateway nodes in the cluster
fn get_total_capacity(&self) -> u64 {
let mut total_capacity = 0;
for uuid in self.nongateway_nodes() {
- total_capacity += self.expect_get_node_capacity(&uuid);
+ total_capacity += self.expect_get_node_capacity(uuid);
}
total_capacity
}
diff --git a/src/rpc/rpc_helper.rs b/src/rpc/rpc_helper.rs
index 65af8901..77a36ca1 100644
--- a/src/rpc/rpc_helper.rs
+++ b/src/rpc/rpc_helper.rs
@@ -442,7 +442,7 @@ impl RpcHelper {
// Send one request to each peer of the quorum sets
let msg = msg.into_req().map_err(netapp::error::Error::from)?;
- let requests = result_tracker.nodes.iter().map(|(peer, _)| {
+ let requests = result_tracker.nodes.keys().map(|peer| {
let self2 = self.clone();
let msg = msg.clone();
let endpoint2 = endpoint.clone();
diff --git a/src/rpc/system.rs b/src/rpc/system.rs
index a8f12852..41d76177 100644
--- a/src/rpc/system.rs
+++ b/src/rpc/system.rs
@@ -315,7 +315,7 @@ impl System {
local_status: ArcSwap::new(Arc::new(local_status)),
node_status: RwLock::new(HashMap::new()),
netapp: netapp.clone(),
- fullmesh: fullmesh.clone(),
+ fullmesh,
system_endpoint,
replication_mode,
replication_factor,
diff --git a/src/table/sync.rs b/src/table/sync.rs
index cfcbc4b5..1561a2e5 100644
--- a/src/table/sync.rs
+++ b/src/table/sync.rs
@@ -123,15 +123,15 @@ impl<F: TableSchema, R: TableReplication> TableSyncer<F, R> {
let mut sync_futures = result_tracker
.nodes
- .iter()
- .map(|(node, _)| *node)
+ .keys()
+ .copied()
.map(|node| {
let must_exit = must_exit.clone();
async move {
if node == my_id {
(node, Ok(()))
} else {
- (node, self.do_sync_with(&partition, node, must_exit).await)
+ (node, self.do_sync_with(partition, node, must_exit).await)
}
}
})
@@ -145,7 +145,7 @@ impl<F: TableSchema, R: TableReplication> TableSyncer<F, R> {
}
if result_tracker.too_many_failures() {
- return Err(result_tracker.quorum_error());
+ Err(result_tracker.quorum_error())
} else {
Ok(())
}
diff --git a/src/table/table.rs b/src/table/table.rs
index 05a0dab1..a5be2910 100644
--- a/src/table/table.rs
+++ b/src/table/table.rs
@@ -209,8 +209,7 @@ impl<F: TableSchema, R: TableReplication> Table<F, R> {
// it takes part, to optimize the detection of a quorum.
let mut write_sets = entries_vec
.iter()
- .map(|(wss, _)| wss.as_ref().iter().map(|ws| ws.as_slice()))
- .flatten()
+ .flat_map(|(wss, _)| wss.as_ref().iter().map(|ws| ws.as_slice()))
.collect::<Vec<&[Uuid]>>();
write_sets.sort();
write_sets.dedup();