Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: handle results from latest codespell #2578

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>";

/*
* 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
Loading