md: replace seq_release_private with seq_release

Since commit f15146380d ("fs: seq_file - add event counter to simplify
poll() support"), md.c code has been no longer used the private field of
the struct seq_file, but seq_release_private() has been continued to be
used to release the allocated seq_file. This seems to have been
forgotten. So convert it to use seq_release() instead of
seq_release_private().

Signed-off-by: Cihangir Akturk <cakturk@gmail.com>
Signed-off-by: Shaohua Li <shli@fb.com>
This commit is contained in:
Cihangir Akturk 2017-07-29 19:52:45 +03:00 committed by Shaohua Li
parent 5492c46e94
commit 26e13043b7

View file

@ -7838,7 +7838,7 @@ static const struct file_operations md_seq_fops = {
.open = md_seq_open,
.read = seq_read,
.llseek = seq_lseek,
.release = seq_release_private,
.release = seq_release,
.poll = mdstat_poll,
};