diff options
Diffstat (limited to 'fs/timerfd.c')
-rw-r--r-- | fs/timerfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/timerfd.c b/fs/timerfd.c index d87d354ec424..77c2bc92cbee 100644 --- a/fs/timerfd.c +++ b/fs/timerfd.c | |||
@@ -198,7 +198,7 @@ asmlinkage long sys_timerfd_create(int clockid, int flags) | |||
198 | ctx->clockid = clockid; | 198 | ctx->clockid = clockid; |
199 | hrtimer_init(&ctx->tmr, clockid, HRTIMER_MODE_ABS); | 199 | hrtimer_init(&ctx->tmr, clockid, HRTIMER_MODE_ABS); |
200 | 200 | ||
201 | ufd = anon_inode_getfd("[timerfd]", &timerfd_fops, ctx); | 201 | ufd = anon_inode_getfd("[timerfd]", &timerfd_fops, ctx, 0); |
202 | if (ufd < 0) | 202 | if (ufd < 0) |
203 | kfree(ctx); | 203 | kfree(ctx); |
204 | 204 | ||