-
Notifications
You must be signed in to change notification settings - Fork 10
[lts92] Many VULNs 2025-11-04 #670
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
base: ciqlts9_2
Are you sure you want to change the base?
Changes from all commits
ecf0891
81faa22
955a928
c29100a
f460d1f
0b406a4
dbc0be4
f6286d5
daece05
e56b0d0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: Validate Kernel Commits | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, synchronize, reopened] | ||
|
|
||
| jobs: | ||
| check: | ||
| uses: ctrliq/kernel-src-tree/.github/workflows/validate-kernel-commits.yml@main | ||
| secrets: inherit |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -679,7 +679,7 @@ setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) | |
| unlock: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cherry-pick went Bananas here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, I tried locally because I was curious how this happened, and my cherry pick does not contain all these extra things here. Not sure what happened there. |
||
| cifs_server_unlock(ses->server); | ||
| setup_ntlmv2_rsp_ret: | ||
| kfree(tiblob); | ||
| kfree_sensitive(tiblob); | ||
|
|
||
| return rc; | ||
| } | ||
|
|
@@ -753,14 +753,14 @@ cifs_crypto_secmech_release(struct TCP_Server_Info *server) | |
| server->secmech.ccmaesdecrypt = NULL; | ||
| } | ||
|
|
||
| kfree(server->secmech.sdesccmacaes); | ||
| kfree_sensitive(server->secmech.sdesccmacaes); | ||
| server->secmech.sdesccmacaes = NULL; | ||
| kfree(server->secmech.sdeschmacsha256); | ||
| kfree_sensitive(server->secmech.sdeschmacsha256); | ||
| server->secmech.sdeschmacsha256 = NULL; | ||
| kfree(server->secmech.sdeschmacmd5); | ||
| kfree_sensitive(server->secmech.sdeschmacmd5); | ||
| server->secmech.sdeschmacmd5 = NULL; | ||
| kfree(server->secmech.sdescmd5); | ||
| kfree_sensitive(server->secmech.sdescmd5); | ||
| server->secmech.sdescmd5 = NULL; | ||
| kfree(server->secmech.sdescsha512); | ||
| kfree_sensitive(server->secmech.sdescsha512); | ||
| server->secmech.sdescsha512 = NULL; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Original commit does not have a empty line here. Not sure what happened. What that a clean cherry pick? I tried it myself and I had conflicts.