Skip to content

Commit 8f51d0a

Browse files
committed
ci: handle results from latest codespell
CI pulls in a newer version of codespell. This fixes complaints from that codespell version. Signed-off-by: Adrian Reber <areber@redhat.com>
1 parent 343e731 commit 8f51d0a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[codespell]
22
skip = ./.git,./test/pki
3-
ignore-words-list = creat,fpr,fle,ue,bord,parms,nd,te,testng,inh,wronly,renderd,bui,clen
3+
ignore-words-list = creat,fpr,fle,ue,bord,parms,nd,te,testng,inh,wronly,renderd,bui,clen,sems

criu/include/rbtree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#define RB_MASK 3
1515

1616
struct rb_node {
17-
unsigned long rb_parent_color; /* Keeps both parent anc color */
17+
unsigned long rb_parent_color; /* Keeps both parent and color */
1818
struct rb_node *rb_right;
1919
struct rb_node *rb_left;
2020
} __aligned(sizeof(long));

criu/include/rst_info.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ struct fdt {
2222
pid_t pid; /* Who should restore this fd table */
2323
/*
2424
* The fd table is ready for restoing, if fdt_lock is equal to nr
25-
* The fdt table was restrored, if fdt_lock is equal to nr + 1
25+
* The fdt table was restored, if fdt_lock is equal to nr + 1
2626
*/
2727
futex_t fdt_lock;
2828
};

criu/page-xfer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ int cr_page_server(bool daemon_mode, bool lazy_dump, int cfd)
14211421

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

@@ -1467,7 +1467,7 @@ static int connect_to_page_server(void)
14671467

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

test/zdtm/static/packet_sock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const char *test_author = "Pavel Emelyanov <xemul@parallels.com>";
55

66
/*
77
* Description:
8-
* Create and bind several packet sockets, check thet getname
8+
* Create and bind several packet sockets, check that getname
99
* reports same result before and after c/r cycle. This is enough
1010
* for _basic_ packet functionality only, but still.
1111
*/

0 commit comments

Comments
 (0)