Skip to content

Commit

Permalink
ci: handle results from latest codespell
Browse files Browse the repository at this point in the history
CI pulls in a newer version of codespell. This fixes complaints from
that codespell version.

Signed-off-by: Adrian Reber <areber@redhat.com>
  • Loading branch information
adrianreber committed Jan 29, 2025
1 parent 343e731 commit 8f51d0a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[codespell]
skip = ./.git,./test/pki
ignore-words-list = creat,fpr,fle,ue,bord,parms,nd,te,testng,inh,wronly,renderd,bui,clen
ignore-words-list = creat,fpr,fle,ue,bord,parms,nd,te,testng,inh,wronly,renderd,bui,clen,sems
2 changes: 1 addition & 1 deletion criu/include/rbtree.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define RB_MASK 3

struct rb_node {
unsigned long rb_parent_color; /* Keeps both parent anc color */
unsigned long rb_parent_color; /* Keeps both parent and color */
struct rb_node *rb_right;
struct rb_node *rb_left;
} __aligned(sizeof(long));
Expand Down
2 changes: 1 addition & 1 deletion criu/include/rst_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ struct fdt {
pid_t pid; /* Who should restore this fd table */
/*
* The fd table is ready for restoing, if fdt_lock is equal to nr
* The fdt table was restrored, if fdt_lock is equal to nr + 1
* The fdt table was restored, if fdt_lock is equal to nr + 1
*/
futex_t fdt_lock;
};
Expand Down
4 changes: 2 additions & 2 deletions criu/page-xfer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ int cr_page_server(bool daemon_mode, bool lazy_dump, int cfd)

if (opts.ps_socket != -1) {
ask = opts.ps_socket;
pr_info("Re-using ps socket %d\n", ask);
pr_info("Reusing ps socket %d\n", ask);
goto no_server;
}

Expand Down Expand Up @@ -1467,7 +1467,7 @@ static int connect_to_page_server(void)

if (opts.ps_socket != -1) {
page_server_sk = opts.ps_socket;
pr_info("Re-using ps socket %d\n", page_server_sk);
pr_info("Reusing ps socket %d\n", page_server_sk);
goto out;
}

Expand Down
2 changes: 1 addition & 1 deletion test/zdtm/static/packet_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const char *test_author = "Pavel Emelyanov <xemul@parallels.com>";

/*
* Description:
* Create and bind several packet sockets, check thet getname
* Create and bind several packet sockets, check that getname
* reports same result before and after c/r cycle. This is enough
* for _basic_ packet functionality only, but still.
*/
Expand Down

0 comments on commit 8f51d0a

Please sign in to comment.