Message ID | 20250321-vfs-misc-77bd9633b854@brauner (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [GIT,PULL] vfs misc | expand |
On Sat, 22 Mar 2025 at 03:13, Christian Brauner <brauner@kernel.org> wrote: > > Merge conflicts with mainline > ============================= > > This contains a minor merge conflict for include/linux/fs.h. Hmm. My resolution here was to just take the plain VFS_WARN_ON_INODE() side, which basically drops commit 37d11cfc6360 ("vfs: sanity check the length passed to inode_set_cached_link()") entirely, because that one had a "TODO" that implies it's now replaced by the new VFS_WARN_ON_INODE() interface. This is just a note to make sure that if anybody was expecting something else, you can now speak up and say "can you please do X". Or, better yet, send a patch. Linus
On Mon, Mar 24, 2025 at 5:20 PM Linus Torvalds <torvalds@linux-foundation.org> wrote: > > On Sat, 22 Mar 2025 at 03:13, Christian Brauner <brauner@kernel.org> wrote: > > > > Merge conflicts with mainline > > ============================= > > > > This contains a minor merge conflict for include/linux/fs.h. > > Hmm. My resolution here was to just take the plain VFS_WARN_ON_INODE() > side, which basically drops commit 37d11cfc6360 ("vfs: sanity check > the length passed to inode_set_cached_link()") entirely, because that > one had a "TODO" that implies it's now replaced by the new > VFS_WARN_ON_INODE() interface. > > This is just a note to make sure that if anybody was expecting > something else, you can now speak up and say "can you please do X". > > Or, better yet, send a patch. > That TODO thing was a temporary fixup for the release and indeed it is sorted out in this pull request. If inode_set_cached_link() looks like this: static inline void inode_set_cached_link(struct inode *inode, char *link, int linklen) { VFS_WARN_ON_INODE(strlen(link) != linklen, inode); VFS_WARN_ON_INODE(inode->i_opflags & IOP_CACHED_LINK, inode); inode->i_link = link; inode->i_linklen = linklen; inode->i_opflags |= IOP_CACHED_LINK; } then you got the right version.
The pull request you sent on Sat, 22 Mar 2025 11:12:49 +0100:
> git@gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfs tags/vfs-6.15-rc1.misc
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/99c21beaab2db53d1ba17102b7cedc7a584dfe23
Thank you!