From: Eric Dumazet <dada1@cosmosbay.com>
To: Jan Engelhardt <jengelh@linux01.gwdg.de>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@osdl.org>
Subject: Re: [PATCH 13/16] show-pipesize-in-stat.diff
Date: Mon, 2 Apr 2007 12:41:07 +0200 [thread overview]
Message-ID: <20070402124107.06294b2e.dada1@cosmosbay.com> (raw)
In-Reply-To: <Pine.LNX.4.61.0704012010040.12316@yvahk01.tjqt.qr>
On Sun, 1 Apr 2007 20:17:24 +0200 (MEST)
Jan Engelhardt <jengelh@linux01.gwdg.de> wrote:
>
> Show the fill status of a pipe (in bytes) when stat'ing one.
>
> Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
>
> fs/stat.c | 31 ++++++++++++++++++++++++++++++-
> include/linux/un.h | 2 ++
> include/net/af_unix.h | 3 +++
> net/unix/af_unix.c | 10 ++++++++++
> 4 files changed, 45 insertions(+), 1 deletion(-)
Please dont do that, adding uggly tests in generic_fillattr()
The following patch does the right thing for pipes, I let you doing the same for sockets...
[PATCH] : fill the size of pipes
Instead of reporting 0 in size when stating() a pipe, we give the number of queued bytes. This might avoid using ioctl(FIONREAD) to get this information.
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
---
--- linux-2.6.21-rc5-mm3/fs/pipe.c
+++ linux-2.6.21-rc5-mm3/fs/pipe.c
@@ -570,27 +570,34 @@ bad_pipe_w(struct file *filp, const char
return -EBADF;
}
+static int pipe_size(struct inode *inode)
+{
+ struct pipe_inode_info *pipe;
+ int count, buf, nrbufs;
+
+ mutex_lock(&inode->i_mutex);
+ pipe = inode->i_pipe;
+ count = 0;
+ buf = pipe->curbuf;
+ nrbufs = pipe->nrbufs;
+ while (--nrbufs >= 0) {
+ count += pipe->bufs[buf].len;
+ buf = (buf+1) & (PIPE_BUFFERS-1);
+ }
+ mutex_unlock(&inode->i_mutex);
+ return count;
+}
+
static int
pipe_ioctl(struct inode *pino, struct file *filp,
unsigned int cmd, unsigned long arg)
{
struct inode *inode = filp->f_path.dentry->d_inode;
- struct pipe_inode_info *pipe;
- int count, buf, nrbufs;
+ int count;
switch (cmd) {
case FIONREAD:
- mutex_lock(&inode->i_mutex);
- pipe = inode->i_pipe;
- count = 0;
- buf = pipe->curbuf;
- nrbufs = pipe->nrbufs;
- while (--nrbufs >= 0) {
- count += pipe->bufs[buf].len;
- buf = (buf+1) & (PIPE_BUFFERS-1);
- }
- mutex_unlock(&inode->i_mutex);
-
+ count = pipe_size(inode);
return put_user(count, (int __user *)arg);
default:
return -EINVAL;
@@ -908,6 +915,20 @@ static struct dentry_operations pipefs_d
.d_dname = pipefs_dname,
};
+int pipe_getattr(struct vfsmount *mnt, struct dentry *dentry,
+ struct kstat *stat)
+{
+ struct inode *inode = dentry->d_inode;
+
+ generic_fillattr(inode, stat);
+ stat->size = pipe_size(inode);
+ return 0;
+}
+
+const struct inode_operations pipe_inode_operations = {
+ .getattr = pipe_getattr,
+};
+
static struct inode * get_pipe_inode(void)
{
struct inode *inode = new_inode(pipe_mnt->mnt_sb);
@@ -921,6 +942,7 @@ static struct inode * get_pipe_inode(voi
goto fail_iput;
inode->i_pipe = pipe;
+ inode->i_op = &pipe_inode_operations;
pipe->readers = pipe->writers = 1;
inode->i_fop = &rdwr_pipe_fops;
next prev parent reply other threads:[~2007-04-02 10:41 UTC|newest]
Thread overview: 70+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-01 18:13 [PATCH 0/16] Assorted patches Jan Engelhardt
2007-04-01 18:13 ` [PATCH 1/16] vt-sysfs-for-colors.diff Jan Engelhardt
2007-04-02 6:49 ` Antonino A. Daplas
2007-04-02 7:31 ` [PATCH 17/16] Do not reset UTF8 on terminal reset Jan Engelhardt
2007-04-02 9:30 ` Antonino A. Daplas
2007-04-02 11:26 ` Paul LeoNerd Evans
2007-04-02 11:44 ` Antonino A. Daplas
2007-04-02 11:54 ` Paul LeoNerd Evans
2007-04-02 12:47 ` Antonino A. Daplas
2007-04-02 13:20 ` Paul LeoNerd Evans
2007-04-02 13:34 ` Jan Engelhardt
2007-04-02 18:50 ` Pavel Machek
2007-04-01 18:14 ` [PATCH 2/16] vt-pure-colors.diff Jan Engelhardt
2007-04-01 18:39 ` James Bruce
2007-04-02 6:49 ` Antonino A. Daplas
2007-04-02 7:04 ` Jan Engelhardt
2007-04-02 7:50 ` Antonino A. Daplas
2007-04-02 8:01 ` Jan Engelhardt
2007-04-01 18:14 ` [PATCH 3/16] vt-underline-color.diff Jan Engelhardt
2007-04-02 5:37 ` Andrew Morton
2007-04-02 6:57 ` Antonino A. Daplas
2007-04-01 18:14 ` [PATCH 4/16] vt-printk-color.diff Jan Engelhardt
2007-04-01 18:14 ` [PATCH 5/16] fix-kthread-niceness.diff Jan Engelhardt
2007-04-02 5:39 ` Andrew Morton
2007-04-01 18:15 ` [PATCH 06/16] isofs-add-write-bit.diff Jan Engelhardt
2007-04-01 18:15 ` [PATCH 07/16] kconfig-dynamic-frequency.diff Jan Engelhardt
2007-04-01 18:39 ` Kyle Moffett
2007-04-01 18:42 ` Jan Engelhardt
2007-04-01 18:52 ` Kyle Moffett
2007-04-01 19:01 ` Jan Engelhardt
2007-04-01 19:42 ` [PATCH] Kyle Moffett
2007-04-01 19:47 ` [PATCH] Jan Engelhardt
2007-04-01 20:07 ` [PATCH] Kyle Moffett
2007-04-01 19:50 ` [PATCH] Add a CONFIG_I_KNOW_WHAT_THE_HELL_I_AM_DOING variable Kyle Moffett
2007-04-01 23:03 ` [PATCH] Andi Kleen
2007-04-01 20:22 ` [PATCH 07/16] kconfig-dynamic-frequency.diff Robert P. J. Day
2007-04-01 18:15 ` [PATCH 08/16] console-printk-level.diff Jan Engelhardt
2007-04-01 19:07 ` Randy Dunlap
2007-04-01 18:15 ` [PATCH 09/16] zlib-decompression-status.diff Jan Engelhardt
2007-04-02 17:48 ` Jörn Engel
2007-04-02 18:50 ` Jan Engelhardt
2007-04-01 18:15 ` [PATCH 10/16] show-partitions-on-mount-error.diff Jan Engelhardt
2007-04-02 5:47 ` Andrew Morton
2007-04-02 5:48 ` Andrew Morton
2007-04-02 7:01 ` [PATCH 10/16] show partitions on mount error Jan Engelhardt
2007-04-02 18:59 ` [PATCH 10/16] show-partitions-on-mount-error.diff Pavel Machek
2007-04-04 0:42 ` Jan Engelhardt
2007-04-01 18:16 ` [PATCH 11/16] samba-eintr-fix.diff Jan Engelhardt
2007-04-01 19:09 ` Dave Jones
2007-04-01 19:28 ` Jan Engelhardt
2007-04-01 19:42 ` Dave Jones
2007-04-02 5:53 ` Andrew Morton
2007-04-01 18:16 ` [PATCH 12/16] cifs-use-mutex.diff Jan Engelhardt
2007-04-02 5:36 ` Roland Dreier
2007-04-01 18:17 ` [PATCH 13/16] show-pipesize-in-stat.diff Jan Engelhardt
2007-04-02 5:58 ` Andrew Morton
2007-04-02 6:48 ` Jan Engelhardt
2007-04-02 10:41 ` Eric Dumazet [this message]
2007-04-04 0:48 ` Jan Engelhardt
2007-04-04 5:03 ` Eric Dumazet
2007-04-17 8:05 ` Jan Engelhardt
2007-04-01 18:17 ` [PATCH 14/16] kconfig-allow-override.diff Jan Engelhardt
2007-04-01 18:44 ` Sam Ravnborg
2007-04-01 19:09 ` Randy Dunlap
2007-04-01 18:18 ` [PATCH 15/16] use-regular-eth-suffix.diff Jan Engelhardt
2007-04-01 18:42 ` Kyle Moffett
2007-04-02 1:40 ` Jouni Malinen
2007-04-01 18:18 ` [PATCH 16/16] warn-on-kthread-name-truncation.diff Jan Engelhardt
2007-04-02 6:00 ` Andrew Morton
2007-04-02 6:51 ` Jan Engelhardt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070402124107.06294b2e.dada1@cosmosbay.com \
--to=dada1@cosmosbay.com \
--cc=akpm@osdl.org \
--cc=jengelh@linux01.gwdg.de \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®