diff options
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 122fadb972fc..85917c2bf065 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -468,7 +468,7 @@ void fastcall put_files_struct(struct files_struct *files) | |||
468 | fdt = files_fdtable(files); | 468 | fdt = files_fdtable(files); |
469 | if (fdt != &files->fdtab) | 469 | if (fdt != &files->fdtab) |
470 | kmem_cache_free(files_cachep, files); | 470 | kmem_cache_free(files_cachep, files); |
471 | call_rcu(&fdt->rcu, free_fdtable_rcu); | 471 | free_fdtable(fdt); |
472 | } | 472 | } |
473 | } | 473 | } |
474 | 474 | ||