]> git.proxmox.com Git - proxmox-backup.git/commitdiff
tree wide: typo fixes through codespell
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 7 Jun 2022 07:22:45 +0000 (09:22 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 7 Jun 2022 12:08:09 +0000 (14:08 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
19 files changed:
pbs-api-types/src/datastore.rs
pbs-api-types/src/human_byte.rs
pbs-api-types/src/traffic_control.rs
pbs-client/src/pxar/extract.rs
pbs-client/src/pxar/flags.rs
pbs-config/src/acl.rs
pbs-datastore/src/datastore.rs
pbs-datastore/src/hierarchy.rs
pbs-tape/Cargo.toml
pbs-tape/src/sg_tape.rs
pbs-tape/src/sgutils2.rs
pbs-tools/src/lib.rs
proxmox-backup-client/src/main.rs
proxmox-file-restore/src/block_driver_qemu.rs
proxmox-rest-server/examples/minimal-rest-server.rs
proxmox-rest-server/src/api_config.rs
proxmox-rest-server/src/lib.rs
proxmox-restore-daemon/src/main.rs
proxmox-rrd/src/rrd.rs

index bb20e14921db36de352836199670f226e0700ffd..86201b8e987864af6e687fcec14f3b453ba92163 100644 (file)
@@ -470,7 +470,7 @@ impl BackupNamespace {
         Ok(child)
     }
 
-    /// Pop one level off the namespace hierachy
+    /// Pop one level off the namespace hierarchy
     pub fn pop(&mut self) -> Option<String> {
         let dropped = self.inner.pop();
         if let Some(ref dropped) = dropped {
index 9e1a18931184b57b4f69906537f92210d0a14e54..532632c8b18d161f1446e8fa9a9a6bcadee507b3 100644 (file)
@@ -69,7 +69,7 @@ impl SizeUnit {
     }
 }
 
-/// Returns the string repesentation
+/// Returns the string representation
 impl std::fmt::Display for SizeUnit {
     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
         match self {
index d29f18b4f1bfbc06d5b1e05985316bc3ac8aad68..3ed579cf9c0415be1048571eb8dc13b960b2df11 100644 (file)
@@ -113,7 +113,7 @@ pub struct TrafficControlRule {
     #[serde(flatten)]
     pub limit: RateLimitConfig,
     // fixme: expose this?
-    //    /// Bandwidth is shared accross all connections
+    //    /// Bandwidth is shared across all connections
     //    #[serde(skip_serializing_if="Option::is_none")]
     //    pub shared: Option<bool>,
     /// Enable the rule at specific times
index cb21d27d90db720d64a21c2f44a22b94ba755f58..9a8854c0ccf05ce1ef6bf318bf7c9b2381ca4d15 100644 (file)
@@ -603,7 +603,7 @@ where
                         let stripped_path = match realpath.strip_prefix(prefix) {
                             Ok(path) => path,
                             Err(_) => {
-                                // outside of our tar archive, add the first occurrance to the tar
+                                // outside of our tar archive, add the first occurrence to the tar
                                 if let Some(path) = hardlinks.get(realpath) {
                                     path
                                 } else {
index 78dab969e043b9fa3b16fb1edad12cdaa9792573..d46c8af3f736191507be0dde3743fbe1c2e7b451 100644 (file)
@@ -179,7 +179,7 @@ use libc::c_long;
         | FS_PROJINHERIT_FL;
 
 }
-use fs_flags::*; // for code formating/rusfmt
+use fs_flags::*; // for code formatting/rusfmt
 
 #[rustfmt::skip]
 const CHATTR_MAP: [(Flags, c_long); 10] = [
index f6ed1f41dcee5b5eddb63a7c97a686f4a5286a8c..357ae608a0e3a83aad8f213a7ed427fd36bca99d 100644 (file)
@@ -695,7 +695,7 @@ impl AclTree {
             return Ok(true);
         }
 
-        // now search trough the sub-tree
+        // now search through the sub-tree
         for (_comp, child) in node.children.iter() {
             if child.any_privs_below(auth_id, privs)? {
                 return Ok(true);
index 41dc41ff0678e1b349cbd3dc8da9937464c733a8..3cd1d98f1b5ce2ed644f3a026c7ce37e2fc8126a 100644 (file)
@@ -195,7 +195,7 @@ impl DataStore {
     /// Open a datastore given a raw configuration.
     ///
     /// # Safety
-    /// There's no memory saftey implication, but as this is opening a new ChunkStore it will
+    /// There's no memory safety implication, but as this is opening a new ChunkStore it will
     /// create a new process locker instance, potentially on the same path as existing safely
     /// created ones. This is dangerous as dropping the reference of this and thus the underlying
     /// chunkstore's process locker will close all locks from our process on the config.path,
@@ -428,7 +428,7 @@ impl DataStore {
     /// Returns true if all the groups were removed, and false if some were protected.
     pub fn remove_namespace_groups(self: &Arc<Self>, ns: &BackupNamespace) -> Result<bool, Error> {
         // FIXME: locking? The single groups/snapshots are already protected, so may not be
-        // necesarry (depends on what we all allow to do with namespaces)
+        // necessary (depends on what we all allow to do with namespaces)
         log::info!("removing all groups in namespace {}:/{ns}", self.name());
 
         let mut removed_all_groups = true;
index a5cc8f137d4ee43516f33186a4db4b93684ec9c8..d5007b07a9ac543ef5b3f602ac7da1a258fa3fce 100644 (file)
@@ -209,11 +209,11 @@ impl Iterator for ListNamespaces {
 /// A iterator for all Namespaces below an anchor namespace, most often that will be the
 /// `BackupNamespace::root()` one.
 ///
-/// Descends depth-first (pre-order) into the namespace hierachy yielding namespaces immediately as
+/// Descends depth-first (pre-order) into the namespace hierarchy yielding namespaces immediately as
 /// it finds them.
 ///
 /// Note: The anchor namespaces passed on creating the iterator will yielded as first element, this
-/// can be usefull for searching all backup groups from a certain anchor, as that can contain
+/// can be useful for searching all backup groups from a certain anchor, as that can contain
 /// sub-namespaces but also groups on its own level, so otherwise one would need to special case
 /// the ones from the own level.
 pub struct ListNamespacesRecursive {
index 511c6bbea161adbdb55858acd5d6ff4a20556744..dfe65778c02ba6e87985fc20b0667fa42da5d509 100644 (file)
@@ -3,7 +3,7 @@ name = "pbs-tape"
 version = "0.1.0"
 authors = ["Proxmox Support Team <support@proxmox.com>"]
 edition = "2018"
-description = "LTO tage support"
+description = "LTO tape support"
 
 [dependencies]
 lazy_static = "1.4"
index 776ee06fa05cc2740660ff2f1ff38694e3d78059..8ffd02dd88fc2a191e9bb24fb45a9c6161d72852 100644 (file)
@@ -205,7 +205,7 @@ impl SgTape {
                 (has_format, is_worm)
             }
             Err(_) => {
-                // LTO3 and older do not supprt medium configuration mode page
+                // LTO3 and older do not support medium configuration mode page
                 (false, false)
             }
         };
index c405f0df5675e68f7d10af013de70f19ff81bbfa..db92277b8cf982e77de01cac2a0f8c8670525329 100644 (file)
@@ -259,7 +259,7 @@ impl ModeParameterHeader {
 pub struct ModeBlockDescriptor {
     pub density_code: u8,
     pub number_of_blocks: [u8; 3],
-    reserverd: u8,
+    reserved: u8,
     pub block_length: [u8; 3],
 }
 
index 289efbc42059a93a1efd52359c63c088ea65cda2..aded6a01b3fa44fc783c63b6657b647d100e592a 100644 (file)
@@ -16,9 +16,9 @@ pub mod async_lru_cache;
 /// with the allocation pattern from our/tokio's complex async machinery, resulted in very large
 /// RSS sizes due to defragmentation and long-living (smaller) allocation on top of the heap
 /// avoiding that the (big) now free'd allocations below couldn't get given back to the OS. This is
-/// not an issue with mmap'd memeory chunks, those can be given back at any time.
+/// not an issue with mmap'd memory chunks, those can be given back at any time.
 ///
-/// Lowering effective MMAP treshold to 128 KiB allows freeing up memory to the OS better and with
+/// Lowering effective MMAP threshold to 128 KiB allows freeing up memory to the OS better and with
 /// lower latency, which reduces the peak *and* average RSS size by an order of magnitude when
 /// running backup jobs. We measured a reduction by a factor of 10-20 in experiments and see much
 /// less erratic behavior in the overall's runtime RSS size.
index ada555a21984eb9ebacdd99dc6d4f58de53a9ce8..6d0e533a4c8216b0edd3836e0e1d3f179c5c4ecc 100644 (file)
@@ -1040,7 +1040,7 @@ async fn create_backup(
     }
 
     if dry_run {
-        println!("dry-run: no upload happend");
+        println!("dry-run: no upload happened");
         return Ok(Value::Null);
     }
 
index 362fff0d1ac12883e57e509a2a39681d05000fc5..d203d72ae7617c6308d8cbab63fe3b7a501c734e 100644 (file)
@@ -153,7 +153,7 @@ async fn ensure_running(details: &SnapRestoreDetails) -> Result<VsockClient, Err
                 .unwrap_or(0)
                 .wrapping_add(1);
 
-            // offset cid by user id, to avoid unneccessary retries
+            // offset cid by user id, to avoid unnecessary retries
             let running_uid = nix::unistd::Uid::current();
             cid = cid.wrapping_add(running_uid.as_raw() as i32);
 
index 800677876572d0f6811e556aab489f3cbd71f4ad..91cb9738b86b985e4d1bb98b65a81ec4ebd832ad 100644 (file)
@@ -21,7 +21,7 @@ struct DummyUserInfo;
 
 impl UserInformation for DummyUserInfo {
     fn is_superuser(&self, _userid: &str) -> bool {
-        // Always return true here, so we have access to everthing
+        // Always return true here, so we have access to everything
         true
     }
     fn is_group_member(&self, _userid: &str, group: &str) -> bool {
index 9d257fd1283149456110de64b4916127e3af590e..c63106d33c0f9af63ae788eb2e825b46119b8c43 100644 (file)
@@ -42,7 +42,7 @@ impl ApiConfig {
     /// `api_auth` - The Authentication handler
     ///
     /// `get_index_fn` - callback to generate the root page
-    /// (index). Please note that this fuctions gets a reference to
+    /// (index). Please note that this functions gets a reference to
     /// the [ApiConfig], so it can use [Handlebars] templates
     /// ([render_template](Self::render_template) to generate pages.
     pub fn new<B: Into<PathBuf>>(
index dc538a80b6a951ca1da278962a1587413e1abfcb..3872e5650e451a20d131ebd9bc784ff8822642be 100644 (file)
@@ -104,7 +104,7 @@ lazy_static::lazy_static! {
     static ref PSTART: u64 = PidStat::read_from_pid(Pid::from_raw(*PID)).unwrap().starttime;
 }
 
-/// Retruns the current process ID (see [libc::getpid])
+/// Returns the current process ID (see [libc::getpid])
 ///
 /// The value is cached at startup (so it is invalid after a fork)
 pub(crate) fn pid() -> i32 {
index b2c809fa2196e5428c61b525dd5a497fbf9934f1..f7b94ef1dd678d0b745891d6000a61dead2bce41 100644 (file)
@@ -55,7 +55,7 @@ fn main() -> Result<(), Error> {
         );
     }
 
-    // don't have a real syslog (and no persistance), so use env_logger to print to a log file (via
+    // don't have a real syslog (and no persistence), so use env_logger to print to a log file (via
     // stdout to a serial terminal attached by QEMU)
     env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info"))
         .write_style(env_logger::WriteStyle::Never)
@@ -153,7 +153,7 @@ fn accept_vsock_connections(
                     }
                 }
                 Err(err) => {
-                    error!("error accepting vsock connetion: {}", err);
+                    error!("error accepting vsock connection: {}", err);
                 }
             }
         }
index 41af624245f52a21330dd116ad7a888a09959cb4..4ae3ee93768f31673087b625d85f71d251137efd 100644 (file)
@@ -8,7 +8,7 @@
 //! ## Features
 //!
 //! * Well defined data format [CBOR](https://datatracker.ietf.org/doc/html/rfc8949)
-//! * Plattform independent (big endian f64, hopefully a standard format?)
+//! * Platform independent (big endian f64, hopefully a standard format?)
 //! * Arbitrary number of RRAs (dynamically changeable)
 
 use std::io::{Read, Write};
@@ -456,7 +456,7 @@ impl RRD {
     /// This selects the RRA with specified [CF] and (minimum)
     /// resolution, and extract data from `start` to `end`.
     ///
-    /// `start`: Start time. If not sepecified, we simply extract 10 data points.
+    /// `start`: Start time. If not specified, we simply extract 10 data points.
     /// `end`: End time. Default is to use the current time.
     pub fn extract_data(
         &self,
@@ -600,7 +600,7 @@ mod tests {
         assert_eq!(reso, 60);
         assert_eq!(data, [Some(6.5), Some(8.5), Some(10.5), Some(12.5), None]);
 
-        // add much newer vaule (should delete all previous/outdated value)
+        // add much newer value (should delete all previous/outdated value)
         let i = 100;
         rrd.update((i as f64) * 30.0, i as f64);
         println!("TEST {:?}", serde_json::to_string_pretty(&rrd));