Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'nfsd-6.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux

Pull nfsd fix from Chuck Lever:

- Fix an occasional memory overwrite caused by a fix added in 6.10

* tag 'nfsd-6.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux:
SUNRPC: Fix loop termination condition in gss_free_in_token_pages()

+1 -1
+1 -1
net/sunrpc/auth_gss/svcauth_gss.c
··· 1069 1069 goto out_denied_free; 1070 1070 1071 1071 pages = DIV_ROUND_UP(inlen, PAGE_SIZE); 1072 - in_token->pages = kcalloc(pages, sizeof(struct page *), GFP_KERNEL); 1072 + in_token->pages = kcalloc(pages + 1, sizeof(struct page *), GFP_KERNEL); 1073 1073 if (!in_token->pages) 1074 1074 goto out_denied_free; 1075 1075 in_token->page_base = 0;