Typos found with codespell.
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
err = elf_get_section_info(elf, shndx, &off, &size, &nameoff);
if (err < 0) {
- ELFDBG("Cound not find section index %"PRIu16" for crc", shndx);
+ ELFDBG("Could not find section index %"PRIu16" for crc", shndx);
return (uint64_t)-1;
}
* We still use arrays of child pointers indexed by a single character;
* the remaining characters of the label are stored as a "prefix" in the child.
*
- * The paper describing the original Patrica trie works on individiual bits -
+ * The paper describing the original Patrica trie works on individual bits -
* each node has a maximum of two children, which increases space efficiency.
* However for this application it is simpler to use the ASCII character set.
* Since the index file is read-only, it can be compressed by omitting null
*
* Lookup by module name, without considering possible aliases. This is similar
* to kmod_module_new_from_lookup(), but don't consider as source indexes and
- * configurations that work with aliases. When succesful, this always resolves
+ * configurations that work with aliases. When successful, this always resolves
* to one and only one module.
*
* The search order is: 1. module names in modules.dep index;
}
/*
- * Ugly assignement + check. We need to check if we were told to check
+ * Ugly assignment + check. We need to check if we were told to check
* blacklist and also return the reason why we failed.
* KMOD_PROBE_APPLY_BLACKLIST_ALIAS_ONLY will take effect only if the
* module is an alias, so we also need to check it
# CONFIGURATION DIRECTORIES AND PRECEDENCE
-Configuration files are read from directories in listed in SYNOPSYS in that
+Configuration files are read from directories in listed in SYNOPSIS in that
order of precedence. Once a file of a given filename is loaded, any file of the
same name in subsequent directories is ignored.
# CONFIGURATION DIRECTORIES AND PRECEDENCE
-Configuration files are read from directories in listed in SYNOPSYS in that
+Configuration files are read from directories in listed in SYNOPSIS in that
order of precedence. Once a file of a given filename is loaded, any file of the
same name in subsequent directories is ignored.
unsigned long long *delta);
-/* endianess and alignments */
+/* endianness and alignments */
/* ************************************************************************ */
#define get_unaligned(ptr) \
({ \
#include <libkmod/libkmod.h>
-/* good luck bulding a kmod_list outside of the library... makes this blacklist
+/* good luck building a kmod_list outside of the library... makes this blacklist
* function rather pointless */
#include <libkmod/libkmod-internal.h>
}
if (stat_mstamp(&rootfsst) > stat_mstamp(&stampst)) {
- ERR("rootfs %s is dirty, please run 'make rootfs' before runnning this test\n",
+ ERR("rootfs %s is dirty, please run 'make rootfs' before running this test\n",
rootfs);
exit(EXIT_FAILURE);
}
for (ext = depmod->cfg->externals; ext != NULL; ext = ext->next) {
err = depmod_modules_search_path(depmod, ext->path);
if (err < 0 && err == -ENOENT)
- /* ignore external dir absense */
+ /* ignore external dir absence */
continue;
}