* [PATCH] kNFSd - 1 of 7 - Make sure sunrpc/cache doesn't confuse writers with readers.
@ 2003-08-05 3:59 NeilBrown
0 siblings, 0 replies; only message in thread
From: NeilBrown @ 2003-08-05 3:59 UTC (permalink / raw)
To: Linus Torvalds; +Cc: nfs
7 patches for kNFSd in 2.6.0-test2 - all over the place.
### Comments for ChangeSet
When a sunrpc/cache channel is not open for reading, the
cache doesn't bother making and waiting for up-calls.
However it doesn't currently distingish between open-for-read/write
and open-for-write, so an op-for-write will look like a reader
and will cause inappropriate waiting.
This patch checks if a file is open-for-read and will only register
a file as a reader if it really is one.
----------- Diffstat output ------------
./net/sunrpc/cache.c | 69 +++++++++++++++++++++++++++------------------------
1 files changed, 37 insertions(+), 32 deletions(-)
diff ./net/sunrpc/cache.c~current~ ./net/sunrpc/cache.c
--- ./net/sunrpc/cache.c~current~ 2003-08-04 11:07:23.000000000 +1000
+++ ./net/sunrpc/cache.c 2003-08-04 11:07:23.000000000 +1000
@@ -738,19 +738,22 @@ cache_ioctl(struct inode *ino, struct fi
static int
cache_open(struct inode *inode, struct file *filp)
{
- struct cache_reader *rp;
- struct cache_detail *cd = PDE(inode)->data;
+ struct cache_reader *rp = NULL;
- rp = kmalloc(sizeof(*rp), GFP_KERNEL);
- if (!rp)
- return -ENOMEM;
- rp->page = NULL;
- rp->offset = 0;
- rp->q.reader = 1;
- atomic_inc(&cd->readers);
- spin_lock(&queue_lock);
- list_add(&rp->q.list, &cd->queue);
- spin_unlock(&queue_lock);
+ if (filp->f_mode & FMODE_READ) {
+ struct cache_detail *cd = PDE(inode)->data;
+
+ rp = kmalloc(sizeof(*rp), GFP_KERNEL);
+ if (!rp)
+ return -ENOMEM;
+ rp->page = NULL;
+ rp->offset = 0;
+ rp->q.reader = 1;
+ atomic_inc(&cd->readers);
+ spin_lock(&queue_lock);
+ list_add(&rp->q.list, &cd->queue);
+ spin_unlock(&queue_lock);
+ }
filp->private_data = rp;
return 0;
}
@@ -761,29 +764,31 @@ cache_release(struct inode *inode, struc
struct cache_reader *rp = filp->private_data;
struct cache_detail *cd = PDE(inode)->data;
- spin_lock(&queue_lock);
- if (rp->offset) {
- struct cache_queue *cq;
- for (cq= &rp->q; &cq->list != &cd->queue;
- cq = list_entry(cq->list.next, struct cache_queue, list))
- if (!cq->reader) {
- container_of(cq, struct cache_request, q)
- ->readers--;
- break;
- }
- rp->offset = 0;
- }
- list_del(&rp->q.list);
- spin_unlock(&queue_lock);
+ if (rp) {
+ spin_lock(&queue_lock);
+ if (rp->offset) {
+ struct cache_queue *cq;
+ for (cq= &rp->q; &cq->list != &cd->queue;
+ cq = list_entry(cq->list.next, struct cache_queue, list))
+ if (!cq->reader) {
+ container_of(cq, struct cache_request, q)
+ ->readers--;
+ break;
+ }
+ rp->offset = 0;
+ }
+ list_del(&rp->q.list);
+ spin_unlock(&queue_lock);
- if (rp->page)
- kfree(rp->page);
+ if (rp->page)
+ kfree(rp->page);
- filp->private_data = NULL;
- kfree(rp);
+ filp->private_data = NULL;
+ kfree(rp);
- cd->last_close = get_seconds();
- atomic_dec(&cd->readers);
+ cd->last_close = get_seconds();
+ atomic_dec(&cd->readers);
+ }
return 0;
}
-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
NFS maillist - NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-08-05 3:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-05 3:59 [PATCH] kNFSd - 1 of 7 - Make sure sunrpc/cache doesn't confuse writers with readers NeilBrown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.