Hi all, Today's linux-next merge of the kvm tree got a conflict in: io_uring/io_uring.c between commit: 6e5e6d274956 ("io_uring: drop any code related to SCM_RIGHTS") from the block tree and commit: 4f0b9194bc11 ("fs: Rename anon_inode_getfile_secure() and anon_inode_getfd_secure()") from the kvm tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc io_uring/io_uring.c index bc0dc1ca9f1e,db3f545ddcac..000000000000 --- a/io_uring/io_uring.c +++ b/io_uring/io_uring.c @@@ -3777,8 -3867,28 +3777,9 @@@ static int io_uring_install_fd(struct f */ static struct file *io_uring_get_file(struct io_ring_ctx *ctx) { - return anon_inode_getfile_secure("[io_uring]", &io_uring_fops, ctx, - struct file *file; -#if defined(CONFIG_UNIX) - int ret; - - ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP, - &ctx->ring_sock); - if (ret) - return ERR_PTR(ret); -#endif - + /* Create a new inode so that the LSM can block the creation. */ - file = anon_inode_create_getfile("[io_uring]", &io_uring_fops, ctx, ++ return anon_inode_create_getfile("[io_uring]", &io_uring_fops, ctx, O_RDWR | O_CLOEXEC, NULL); -#if defined(CONFIG_UNIX) - if (IS_ERR(file)) { - sock_release(ctx->ring_sock); - ctx->ring_sock = NULL; - } else { - ctx->ring_sock->file = file; - } -#endif - return file; } static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
Attachment:
pgpFSNy9Yppz6.pgp
Description: OpenPGP digital signature