On Wed, Dec 4, 2024 at 5:47 AM Sergey Senozhatsky <senozhatsky@xxxxxxxxxxxx> wrote: > > On (24/11/14 11:13), Joanne Koong wrote: > > > > +static bool request_expired(struct fuse_conn *fc, struct fuse_req *req) > > +{ > > + return jiffies > req->create_time + fc->timeout.req_timeout; > > +} > > With jiffies we need to use time_after() and such, so we'd deal > with jiffies wrap-around. Ohh I see, I guess this is because on 32-bit systems unsigned longs are 4 bytes? Thanks for noting - I'll push out a new version with this change.