Re: [PATCH 14/16] act: use credential guards in acct_write_process()
Linus Torvalds <[email protected]>
| Newsgroups | gmane.linux.file-systems.union,gmane.linux.file-systems,gmane.linux.kernel,gmane.linux.kernel.aio.general,gmane.linux.nfs,gmane.linux.kernel.cifs,gmane.network.samba.internals,gmane.linux.kernel.cgroups,gmane.linux.network |
|---|---|
| Message-ID | <CAHk-=wiSmez2LFEpM05VUX=_GKJC8Ag68TJDByVPO=x4QwjyuA@mail.gmail.com> |
On Mon, 3 Nov 2025 at 20:27, Christian Brauner <[email protected]> wrote: > > /* Perform file operations on behalf of whoever enabled accounting */ > - cred = override_creds(file->f_cred); > - > + with_creds(file->f_cred); I'd almost prefer if we *only* did "scoped_with_creds()" and didn't have this version at all. Most of the cases want that anyway, and the couple of plain "with_creds()" cases look like they would only be cleaned up by making the cred scoping more explicit. What do you think? Anyway, I approve of the whole series, obviously, I just suspect we could narrow down the new interface a bit more. Linus