On Wed, Nov 27, 2024 at 5:41 AM Bernd Schubert <bschubert@xxxxxxx> wrote: > > These are needed by dev_uring functions as well > > Signed-off-by: Bernd Schubert <bschubert@xxxxxxx> > Reviewed-by: Josef Bacik <josef@xxxxxxxxxxxxxx> Reviewed-by: Joanne Koong <joannelkoong@xxxxxxxxx> > --- > fs/fuse/dev.c | 4 ---- > fs/fuse/fuse_dev_i.h | 4 ++++ > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c > index 649513b55906d2aef99f79a942c2c63113796b5a..fd8898b0c1cca4d117982d5208d78078472b0dfb 100644 > --- a/fs/fuse/dev.c > +++ b/fs/fuse/dev.c > @@ -29,10 +29,6 @@ > MODULE_ALIAS_MISCDEV(FUSE_MINOR); > MODULE_ALIAS("devname:fuse"); > > -/* Ordinary requests have even IDs, while interrupts IDs are odd */ > -#define FUSE_INT_REQ_BIT (1ULL << 0) > -#define FUSE_REQ_ID_STEP (1ULL << 1) > - > static struct kmem_cache *fuse_req_cachep; > > static void fuse_request_init(struct fuse_mount *fm, struct fuse_req *req) > diff --git a/fs/fuse/fuse_dev_i.h b/fs/fuse/fuse_dev_i.h > index e7ea1b21c18204335c52406de5291f0c47d654f5..08a7e88e002773fcd18c25a229c7aa6450831401 100644 > --- a/fs/fuse/fuse_dev_i.h > +++ b/fs/fuse/fuse_dev_i.h > @@ -8,6 +8,10 @@ > > #include <linux/types.h> > > +/* Ordinary requests have even IDs, while interrupts IDs are odd */ > +#define FUSE_INT_REQ_BIT (1ULL << 0) > +#define FUSE_REQ_ID_STEP (1ULL << 1) > + > static inline struct fuse_dev *fuse_get_dev(struct file *file) > { > /* > > -- > 2.43.0 >