On Tue, Aug 13, 2024 at 02:42:11PM GMT, Mateusz Guzik wrote: > On Tue, Aug 13, 2024 at 2:31 PM Christian Brauner <brauner@xxxxxxxxxx> wrote: > > -int send_sigurg(struct fown_struct *fown) > > +int send_sigurg(struct file *file) > > { > > + struct fown_struct *fown; > > struct task_struct *p; > > enum pid_type type; > > struct pid *pid; > > unsigned long flags; > > int ret = 0; > > > > + fown = file_f_owner(file); > > + if (fown) > > + return 0; > > + > > if (!fown) ? Bah, I had fixed that in-tree. Thanks!