spelling fixes

Use codespell and ispell to fix some spelling errors
in comments and README's.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Stephen Hemminger 2024-01-25 16:49:10 -08:00
parent 64ed1886e7
commit 0c3400cc8f
9 changed files with 10 additions and 10 deletions

View File

@ -2329,7 +2329,7 @@ static int dl_argv_dry_parse(struct dl *dl, uint64_t o_required,
return err;
}
/* List of extented handles with two slashes. */
/* List of extended handles with two slashes. */
static const uint64_t dl_opt_extended_handle[] = {
DL_OPT_HANDLEP,
DL_OPT_HANDLE_REGION,

View File

@ -15,4 +15,4 @@ with syntax and features:
Note: Users should use new BTF way to defined the maps, the examples
in legacy folder which is using struct bpf_elf_map defined maps is not
recommanded.
recommended.

View File

@ -217,7 +217,7 @@ int print_color_bool(enum output_type type,
/* In JSON mode, acts like print_color_bool.
* Otherwise, will print key with prefix of "no" if false.
* The show flag is used to suppres printing in non-JSON mode
* The show flag is used to suppress printing in non-JSON mode
*/
int print_color_bool_opt(enum output_type type,
enum color_attr color,

View File

@ -1582,7 +1582,7 @@ size_t strlcat(char *dst, const char *src, size_t size)
void drop_cap(void)
{
#ifdef HAVE_LIBCAP
/* don't harmstring root/sudo */
/* don't hamstring root/sudo */
if (getuid() != 0 && geteuid() != 0) {
cap_t capabilities;
cap_value_t net_admin = CAP_NET_ADMIN;

View File

@ -40,7 +40,7 @@ struct filter_entry {
char *key;
char *value;
/*
* This field means that we can try to issue .doit calback
* This field means that we can try to issue .doit callback
* on value above. This value can be converted to integer
* with simple atoi(). Otherwise "is_doit" will be false.
*/

View File

@ -26,7 +26,7 @@
#include <inttypes.h>
#include "m_ematch.h"
#define EM_CANID_RULES_MAX 400 /* Main reason for this number is Nelink
#define EM_CANID_RULES_MAX 400 /* Main reason for this number is Netlink
message size limit equal to Single memory page size. When dump()
is invoked, there are even some ematch related headers sent from
kernel to userspace together with em_canid configuration --

View File

@ -18,7 +18,7 @@
#include "tc_util.h"
#include <linux/tc_act/tc_gact.h>
/* define to turn on probablity stuff */
/* define to turn on probability stuff */
#ifdef CONFIG_GACT_PROB
static const char *prob_n2a(int p)

View File

@ -224,7 +224,7 @@ static int htb_parse_class_opt(struct qdisc_util *qu, int argc, char **argv,
opt.ceil.rate = (ceil64 >= (1ULL << 32)) ? ~0U : ceil64;
/* compute minimal allowed burst from rate; mtu is added here to make
sute that buffer is larger than mtu and to have some safeguard space */
sure that buffer is larger than mtu and to have some safeguard space */
if (!buffer)
buffer = rate64 / get_hz() + mtu;
if (!cbuffer)

View File

@ -13,10 +13,10 @@ possible to create a vlan named "help" with the ip tool, but it's impossible
to remove it, the command just shows help. This is an effect of treating
bare words specially.
Help texts are not dynamically generated. That is, we do not pass datastructures
Help texts are not dynamically generated. That is, we do not pass data structures
like command list or option lists and print them dynamically. This is
intentional. There is always that exception and when it comes to help texts
these exceptions are normally neglected at the expence of usability.
these exceptions are normally neglected at the expense of usability.
KEY-VALUE
~~~~~~~~~