From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Subject: Re: [PATCH] proc: show locks in /proc/pid/fdinfo/X Date: Thu, 12 Mar 2015 12:23:31 -0700 Message-ID: <20150312122331.d8c27baf40d56e764f223193@linux-foundation.org> References: <1425569838-20416-1-git-send-email-avagin@openvz.org> <20150311150853.492fee52def529e86506976b@linux-foundation.org> <20150312155441.GA19139@paralelels.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Andrey Vagin , , , , Jonathan Corbet , Alexander Viro , Jeff Layton , "J. Bruce Fields" , "Cyrill Gorcunov" , Pavel Emelyanov , "Joe Perches" To: Andrew Vagin Return-path: In-Reply-To: <20150312155441.GA19139@paralelels.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Thu, 12 Mar 2015 18:54:42 +0300 Andrew Vagin wrote: > v2: use seq_has_overflowed() properly --- a/fs/proc/fd.c~proc-show-locks-in-proc-pid-fdinfo-x-v2 +++ a/fs/proc/fd.c @@ -57,17 +57,15 @@ static int seq_show(struct seq_file *m, real_mount(file->f_path.mnt)->mnt_id); show_fd_locks(m, file, files); - ret = seq_has_overflowed(m); - if (ret) + if (seq_has_overflowed(m)) goto out; if (file->f_op->show_fdinfo) file->f_op->show_fdinfo(m, file); - ret = seq_has_overflowed(m); out: fput(file); - return ret; + return 0; } static int seq_fdinfo_open(struct inode *inode, struct file *file) So it returns "success" when the output has overflowed? Why this, rather than returning an error?