* about NLM/NSM @ 2008-10-27 6:49 hexf 2008-10-27 18:55 ` J. Bruce Fields 0 siblings, 1 reply; 10+ messages in thread From: hexf @ 2008-10-27 6:49 UTC (permalink / raw) To: linux-nfs DQpIZWxsbzoNCg0KICAgICBXZSBhcmUgdXNpbmcgbmZzdjMuIE5vdyB3ZSBtZWV0IGEgZGVtYW5k LiBJZiBhIGNsaWVudCB3aGljaCBob2xkIGEgbG9jayBjcmFzaCwNCmFmdGVyIGl0IHJlYm9vdCwg aXRzIHN0YXRkIGRhZW1vbiBjYW4gbm90aWZ5IHRoZSBuZnMgc2VydmVyIHRvIHJlbGVhc2UgdGhl IGxvY2suDQpCdXQgaWYgdGhpcyBjbGllbnQgd2lsbCBub3QgcmVib290IGZvciBzb21lIHJlYXNv bihvciB3aWxsIHJlYm9vdCBhZnRlciBhIGxvbmcgdGltZSksDQp0aGVuIHRoZSBsb2NrIGl0IGhv bGRpbmcgd2lsbCBub3QgYmUgcmVsZWFzZWQuSW4gbmZzdjMgYW5kIG5sbXY0LGl0IHNlZW1zIHRo ZXJlIGlzIG5vIA0KdGltZS1vdXQgbWVjaG5pc20gZm9yIHRoaXMgc2l0dWF0aW9uLiBIb3cgd291 bGQgd2Ugc29sdmUgdGhpcyBxdWVzdGlvbj8gTXkgY29sbGVhZ3VlDQphZHZpc2UgbWUgdG8gbW9k aWZ5IHRoZSBjb2RlIG9mIE5MTS9OU00gdG8gbWVldCB0aGlzIGRlbWFuZCxidXQgaXMgc2VlbXMg cXVpdGUgYQ0KY29tcGxpY2F0ZWQgd29yay5DYW4geW91IGdpdmUgbWUgc29tZSBhZHZpY2U/IEFu ZCBpZiB0aGVyZSBhcmUgc29tZSBzY2hlbWVzIGluIG5mc3Y0Pw0KDQogIFRoYW5rIHlvdSB2ZXJ5 IG11Y2gsIGFuZCBiZXN0IHJlZ2FyZHMuDQoNCi0tIA0KSEUgWGlhby1mZW5nDQpUZWw6ICg4Nikx MC02MjYwLTA1NDcNCkZheDogKDg2KTEwLTYyNjUtNzI1NQ0KTWFpbGluZzogUC4gTy4gQm94IDI3 MDQjIEJlaWppbmcNClBvc3Rjb2RlOiAxMDAwODANCk5hdGlvbmFsIFJlc2VhcmNoIENlbnRyZSBm b3IgSGlnaCBQZXJmb3JtYW5jZSBDb21wdXRlcnMNCkluc3RpdHV0ZSBvZiBDb21wdXRpbmcgVGVj aG5vbG9neSwgQ2hpbmVzZSBBY2FkZW15IG9mIFNjaWVuY2VzDQpOby4gNiwgU291dGggS2V4dWV5 dWFuIFJvYWQsIEhhaWRpYW4gRGlzdHJpY3QNCkJlaWppbmcsIENoaW5hDQoNCg0K ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 6:49 about NLM/NSM hexf @ 2008-10-27 18:55 ` J. Bruce Fields 2008-10-27 19:22 ` Peter Staubach 0 siblings, 1 reply; 10+ messages in thread From: J. Bruce Fields @ 2008-10-27 18:55 UTC (permalink / raw) To: hexf; +Cc: linux-nfs On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: > We are using nfsv3. Now we meet a demand. If a client which hold a > lock crash, after it reboot, its statd daemon can notify the nfs > server to release the lock. But if this client will not reboot for > some reason(or will reboot after a long time), then the lock it > holding will not be released.In nfsv3 and nlmv4,it seems there is no > time-out mechnism for this situation. How would we solve this > question? My colleague advise me to modify the code of NLM/NSM to meet > this demand,but is seems quite a complicated work.Can you give me some > advice? It might be possible to modify the server so that it dropped all locks from a client it hadn't heard from in a while. However, nfsv2/v3 clients are not required to contact the server regularly while they hold locks. So you may end up revoking locks held by perfectly good functioning clients. As an ugly workaround, rebooting the server will clear the problem, as it will notify clients to recover their locks on restart, and any dead clients will fail to recover their locks. > And if there are some schemes in nfsv4? NFSv4 requires clients to contact the server regularly as long as they hold any locks. So NFSv4 does not have this particular problem. --b. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 18:55 ` J. Bruce Fields @ 2008-10-27 19:22 ` Peter Staubach 2008-10-27 20:13 ` J. Bruce Fields 0 siblings, 1 reply; 10+ messages in thread From: Peter Staubach @ 2008-10-27 19:22 UTC (permalink / raw) To: J. Bruce Fields; +Cc: hexf, linux-nfs J. Bruce Fields wrote: > On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: > >> We are using nfsv3. Now we meet a demand. If a client which hold a >> lock crash, after it reboot, its statd daemon can notify the nfs >> server to release the lock. But if this client will not reboot for >> some reason(or will reboot after a long time), then the lock it >> holding will not be released.In nfsv3 and nlmv4,it seems there is no >> time-out mechnism for this situation. How would we solve this >> question? My colleague advise me to modify the code of NLM/NSM to meet >> this demand,but is seems quite a complicated work.Can you give me some >> advice? >> > > It might be possible to modify the server so that it dropped all locks > from a client it hadn't heard from in a while. However, nfsv2/v3 > clients are not required to contact the server regularly while they hold > locks. So you may end up revoking locks held by perfectly good > functioning clients. > > As an ugly workaround, rebooting the server will clear the problem, as > it will notify clients to recover their locks on restart, and any dead > clients will fail to recover their locks. > > Didn't Wendy Cheng submit some patches to implement a "clearlocks" sort of functionality? What happened with them? ps >> And if there are some schemes in nfsv4? >> > > NFSv4 requires clients to contact the server regularly as long as they > hold any locks. So NFSv4 does not have this particular problem. > > --b. > -- > To unsubscribe from this list: send the line "unsubscribe linux-nfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 19:22 ` Peter Staubach @ 2008-10-27 20:13 ` J. Bruce Fields 2008-10-27 21:14 ` Peter Staubach 0 siblings, 1 reply; 10+ messages in thread From: J. Bruce Fields @ 2008-10-27 20:13 UTC (permalink / raw) To: Peter Staubach; +Cc: hexf, linux-nfs On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: > J. Bruce Fields wrote: >> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: >> >>> We are using nfsv3. Now we meet a demand. If a client which hold a >>> lock crash, after it reboot, its statd daemon can notify the nfs >>> server to release the lock. But if this client will not reboot for >>> some reason(or will reboot after a long time), then the lock it >>> holding will not be released.In nfsv3 and nlmv4,it seems there is no >>> time-out mechnism for this situation. How would we solve this >>> question? My colleague advise me to modify the code of NLM/NSM to meet >>> this demand,but is seems quite a complicated work.Can you give me some >>> advice? >>> >> >> It might be possible to modify the server so that it dropped all locks >> from a client it hadn't heard from in a while. However, nfsv2/v3 >> clients are not required to contact the server regularly while they hold >> locks. So you may end up revoking locks held by perfectly good >> functioning clients. >> >> As an ugly workaround, rebooting the server will clear the problem, as >> it will notify clients to recover their locks on restart, and any dead >> clients will fail to recover their locks. >> >> > > Didn't Wendy Cheng submit some patches to implement a > "clearlocks" sort of functionality? What happened with > them? Yes, but that's motivated by the case of migrating all clients using one export; so it'll drop all locks held on a single filesystem, or all locks acquired using a single server (not client!) ip address. So if we want some finer-grained interface then that's yet to be designed. --b. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 20:13 ` J. Bruce Fields @ 2008-10-27 21:14 ` Peter Staubach 2008-10-27 21:17 ` J. Bruce Fields 0 siblings, 1 reply; 10+ messages in thread From: Peter Staubach @ 2008-10-27 21:14 UTC (permalink / raw) To: J. Bruce Fields; +Cc: hexf, linux-nfs J. Bruce Fields wrote: > On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: > >> J. Bruce Fields wrote: >> >>> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: >>> >>> >>>> We are using nfsv3. Now we meet a demand. If a client which hold a >>>> lock crash, after it reboot, its statd daemon can notify the nfs >>>> server to release the lock. But if this client will not reboot for >>>> some reason(or will reboot after a long time), then the lock it >>>> holding will not be released.In nfsv3 and nlmv4,it seems there is no >>>> time-out mechnism for this situation. How would we solve this >>>> question? My colleague advise me to modify the code of NLM/NSM to meet >>>> this demand,but is seems quite a complicated work.Can you give me some >>>> advice? >>>> >>>> >>> It might be possible to modify the server so that it dropped all locks >>> from a client it hadn't heard from in a while. However, nfsv2/v3 >>> clients are not required to contact the server regularly while they hold >>> locks. So you may end up revoking locks held by perfectly good >>> functioning clients. >>> >>> As an ugly workaround, rebooting the server will clear the problem, as >>> it will notify clients to recover their locks on restart, and any dead >>> clients will fail to recover their locks. >>> >>> >>> >> Didn't Wendy Cheng submit some patches to implement a >> "clearlocks" sort of functionality? What happened with >> them? >> > > Yes, but that's motivated by the case of migrating all clients using one > export; so it'll drop all locks held on a single filesystem, or all > locks acquired using a single server (not client!) ip address. > > So if we want some finer-grained interface then that's yet to be > designed. > Sorry, I guess that I was remembering incorrectly. I was thinking that she was looking for something like the clearlocks functionality so that file systems could be migrated around cleanly. It seems for this situation, we could use this sort of variation. ps ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 21:14 ` Peter Staubach @ 2008-10-27 21:17 ` J. Bruce Fields 2008-10-27 21:20 ` Peter Staubach 0 siblings, 1 reply; 10+ messages in thread From: J. Bruce Fields @ 2008-10-27 21:17 UTC (permalink / raw) To: Peter Staubach; +Cc: hexf, linux-nfs On Mon, Oct 27, 2008 at 05:14:38PM -0400, Peter Staubach wrote: > J. Bruce Fields wrote: >> On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: >> >>> J. Bruce Fields wrote: >>> >>>> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: >>>> >>>>> We are using nfsv3. Now we meet a demand. If a client which hold a >>>>> lock crash, after it reboot, its statd daemon can notify the nfs >>>>> server to release the lock. But if this client will not reboot for >>>>> some reason(or will reboot after a long time), then the lock it >>>>> holding will not be released.In nfsv3 and nlmv4,it seems there is no >>>>> time-out mechnism for this situation. How would we solve this >>>>> question? My colleague advise me to modify the code of NLM/NSM to meet >>>>> this demand,but is seems quite a complicated work.Can you give me some >>>>> advice? >>>>> >>>> It might be possible to modify the server so that it dropped all locks >>>> from a client it hadn't heard from in a while. However, nfsv2/v3 >>>> clients are not required to contact the server regularly while they hold >>>> locks. So you may end up revoking locks held by perfectly good >>>> functioning clients. >>>> >>>> As an ugly workaround, rebooting the server will clear the problem, as >>>> it will notify clients to recover their locks on restart, and any dead >>>> clients will fail to recover their locks. >>>> >>>> >>> Didn't Wendy Cheng submit some patches to implement a >>> "clearlocks" sort of functionality? What happened with >>> them? >>> >> >> Yes, but that's motivated by the case of migrating all clients using one >> export; so it'll drop all locks held on a single filesystem, or all >> locks acquired using a single server (not client!) ip address. >> >> So if we want some finer-grained interface then that's yet to be >> designed. >> > > Sorry, I guess that I was remembering incorrectly. I was > thinking that she was looking for something like the clearlocks > functionality so that file systems could be migrated around > cleanly. That's what she was working on (and we merged), yes. But it doesn't help clear just the set of locks held by a single client. > It seems for this situation, we could use this sort of variation. I'm losing track of what those two "this"'s refer to! --b. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 21:17 ` J. Bruce Fields @ 2008-10-27 21:20 ` Peter Staubach 2008-10-27 22:01 ` J. Bruce Fields 2008-10-28 17:31 ` Frank Filz 0 siblings, 2 replies; 10+ messages in thread From: Peter Staubach @ 2008-10-27 21:20 UTC (permalink / raw) To: J. Bruce Fields; +Cc: hexf, linux-nfs J. Bruce Fields wrote: > On Mon, Oct 27, 2008 at 05:14:38PM -0400, Peter Staubach wrote: > >> J. Bruce Fields wrote: >> >>> On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: >>> >>> >>>> J. Bruce Fields wrote: >>>> >>>> >>>>> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: >>>>> >>>>> >>>>>> We are using nfsv3. Now we meet a demand. If a client which hold a >>>>>> lock crash, after it reboot, its statd daemon can notify the nfs >>>>>> server to release the lock. But if this client will not reboot for >>>>>> some reason(or will reboot after a long time), then the lock it >>>>>> holding will not be released.In nfsv3 and nlmv4,it seems there is no >>>>>> time-out mechnism for this situation. How would we solve this >>>>>> question? My colleague advise me to modify the code of NLM/NSM to meet >>>>>> this demand,but is seems quite a complicated work.Can you give me some >>>>>> advice? >>>>>> >>>>>> >>>>> It might be possible to modify the server so that it dropped all locks >>>>> from a client it hadn't heard from in a while. However, nfsv2/v3 >>>>> clients are not required to contact the server regularly while they hold >>>>> locks. So you may end up revoking locks held by perfectly good >>>>> functioning clients. >>>>> >>>>> As an ugly workaround, rebooting the server will clear the problem, as >>>>> it will notify clients to recover their locks on restart, and any dead >>>>> clients will fail to recover their locks. >>>>> >>>>> >>>>> >>>> Didn't Wendy Cheng submit some patches to implement a >>>> "clearlocks" sort of functionality? What happened with >>>> them? >>>> >>>> >>> Yes, but that's motivated by the case of migrating all clients using one >>> export; so it'll drop all locks held on a single filesystem, or all >>> locks acquired using a single server (not client!) ip address. >>> >>> So if we want some finer-grained interface then that's yet to be >>> designed. >>> >>> >> Sorry, I guess that I was remembering incorrectly. I was >> thinking that she was looking for something like the clearlocks >> functionality so that file systems could be migrated around >> cleanly. >> > > That's what she was working on (and we merged), yes. > > But it doesn't help clear just the set of locks held by a single client. > > >> It seems for this situation, we could use this sort of variation. >> > > I'm losing track of what those two "this"'s refer to! > Sorry -- :-) For the situation of needing to clear locks belonging to long dead and not returning clients, we could use a variation of Wendy's proposal which works using the client IP as the key. It is a rope with a very large and suspicious looking knot on the end though... ps ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 21:20 ` Peter Staubach @ 2008-10-27 22:01 ` J. Bruce Fields 2008-10-28 17:31 ` Frank Filz 1 sibling, 0 replies; 10+ messages in thread From: J. Bruce Fields @ 2008-10-27 22:01 UTC (permalink / raw) To: Peter Staubach; +Cc: hexf, linux-nfs On Mon, Oct 27, 2008 at 05:20:46PM -0400, Peter Staubach wrote: > For the situation of needing to clear locks belonging to long > dead and not returning clients, we could use a variation of > Wendy's proposal which works using the client IP as the key. > > It is a rope with a very large and suspicious looking knot on > the end though... Understood, thanks for the clarification!--b. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-27 21:20 ` Peter Staubach 2008-10-27 22:01 ` J. Bruce Fields @ 2008-10-28 17:31 ` Frank Filz 2008-10-29 1:20 ` Feng Shuo 1 sibling, 1 reply; 10+ messages in thread From: Frank Filz @ 2008-10-28 17:31 UTC (permalink / raw) To: Peter Staubach; +Cc: J. Bruce Fields, hexf, linux-nfs On Mon, 2008-10-27 at 17:20 -0400, Peter Staubach wrote: > J. Bruce Fields wrote: > > On Mon, Oct 27, 2008 at 05:14:38PM -0400, Peter Staubach wrote: > > > >> J. Bruce Fields wrote: > >> > >>> On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: > >>> > >>> > >>>> J. Bruce Fields wrote: > >>>> > >>>> > >>>>> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: > >>>>> > >>>>> > >>>>>> We are using nfsv3. Now we meet a demand. If a client which hold a > >>>>>> lock crash, after it reboot, its statd daemon can notify the nfs > >>>>>> server to release the lock. But if this client will not reboot for > >>>>>> some reason(or will reboot after a long time), then the lock it > >>>>>> holding will not be released.In nfsv3 and nlmv4,it seems there is no > >>>>>> time-out mechnism for this situation. How would we solve this > >>>>>> question? My colleague advise me to modify the code of NLM/NSM to meet > >>>>>> this demand,but is seems quite a complicated work.Can you give me some > >>>>>> advice? > >>>>>> > >>>>>> > >>>>> It might be possible to modify the server so that it dropped all locks > >>>>> from a client it hadn't heard from in a while. However, nfsv2/v3 > >>>>> clients are not required to contact the server regularly while they hold > >>>>> locks. So you may end up revoking locks held by perfectly good > >>>>> functioning clients. > >>>>> > >>>>> As an ugly workaround, rebooting the server will clear the problem, as > >>>>> it will notify clients to recover their locks on restart, and any dead > >>>>> clients will fail to recover their locks. > >>>>> > >>>>> > >>>>> > >>>> Didn't Wendy Cheng submit some patches to implement a > >>>> "clearlocks" sort of functionality? What happened with > >>>> them? > >>>> > >>>> > >>> Yes, but that's motivated by the case of migrating all clients using one > >>> export; so it'll drop all locks held on a single filesystem, or all > >>> locks acquired using a single server (not client!) ip address. > >>> > >>> So if we want some finer-grained interface then that's yet to be > >>> designed. > >>> > >>> > >> Sorry, I guess that I was remembering incorrectly. I was > >> thinking that she was looking for something like the clearlocks > >> functionality so that file systems could be migrated around > >> cleanly. > >> > > > > That's what she was working on (and we merged), yes. > > > > But it doesn't help clear just the set of locks held by a single client. > > > > > >> It seems for this situation, we could use this sort of variation. > >> > > > > I'm losing track of what those two "this"'s refer to! > > > > Sorry -- :-) > > For the situation of needing to clear locks belonging to long > dead and not returning clients, we could use a variation of > Wendy's proposal which works using the client IP as the key. Wouldn't this be pretty easy to do with a user space tool that just calls lockd's SM_NOTIFY procedure? Sure, it's a private interface (as far as what proc # - but it's pretty well known that lockd always provides SM_NOTIFY on the same proc #), but there's no real need to add a new kernel interface unless we want to generalize the clearlocks interface. The tool just needs to use loopback and a privileged port. Frank ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: about NLM/NSM 2008-10-28 17:31 ` Frank Filz @ 2008-10-29 1:20 ` Feng Shuo 0 siblings, 0 replies; 10+ messages in thread From: Feng Shuo @ 2008-10-29 1:20 UTC (permalink / raw) To: Frank Filz Cc: Peter Staubach, J. Bruce Fields, hexf, linux-nfs, Peifeng LIU (刘培峰) Thank you all very much. Hexf and I are examing all the clues together to check whether we can get a clearer solution. He will post the result later. Feng Shuo 2008/10/29 Frank Filz <ffilzlnx@us.ibm.com>: > On Mon, 2008-10-27 at 17:20 -0400, Peter Staubach wrote: >> J. Bruce Fields wrote: >> > On Mon, Oct 27, 2008 at 05:14:38PM -0400, Peter Staubach wrote: >> > >> >> J. Bruce Fields wrote: >> >> >> >>> On Mon, Oct 27, 2008 at 03:22:57PM -0400, Peter Staubach wrote: >> >>> >> >>> >> >>>> J. Bruce Fields wrote: >> >>>> >> >>>> >> >>>>> On Mon, Oct 27, 2008 at 02:49:27PM +0800, hexf wrote: >> >>>>> >> >>>>> >> >>>>>> We are using nfsv3. Now we meet a demand. If a client which hold a >> >>>>>> lock crash, after it reboot, its statd daemon can notify the nfs >> >>>>>> server to release the lock. But if this client will not reboot for >> >>>>>> some reason(or will reboot after a long time), then the lock it >> >>>>>> holding will not be released.In nfsv3 and nlmv4,it seems there is no >> >>>>>> time-out mechnism for this situation. How would we solve this >> >>>>>> question? My colleague advise me to modify the code of NLM/NSM to meet >> >>>>>> this demand,but is seems quite a complicated work.Can you give me some >> >>>>>> advice? >> >>>>>> >> >>>>>> >> >>>>> It might be possible to modify the server so that it dropped all locks >> >>>>> from a client it hadn't heard from in a while. However, nfsv2/v3 >> >>>>> clients are not required to contact the server regularly while they hold >> >>>>> locks. So you may end up revoking locks held by perfectly good >> >>>>> functioning clients. >> >>>>> >> >>>>> As an ugly workaround, rebooting the server will clear the problem, as >> >>>>> it will notify clients to recover their locks on restart, and any dead >> >>>>> clients will fail to recover their locks. >> >>>>> >> >>>>> >> >>>>> >> >>>> Didn't Wendy Cheng submit some patches to implement a >> >>>> "clearlocks" sort of functionality? What happened with >> >>>> them? >> >>>> >> >>>> >> >>> Yes, but that's motivated by the case of migrating all clients using one >> >>> export; so it'll drop all locks held on a single filesystem, or all >> >>> locks acquired using a single server (not client!) ip address. >> >>> >> >>> So if we want some finer-grained interface then that's yet to be >> >>> designed. >> >>> >> >>> >> >> Sorry, I guess that I was remembering incorrectly. I was >> >> thinking that she was looking for something like the clearlocks >> >> functionality so that file systems could be migrated around >> >> cleanly. >> >> >> > >> > That's what she was working on (and we merged), yes. >> > >> > But it doesn't help clear just the set of locks held by a single client. >> > >> > >> >> It seems for this situation, we could use this sort of variation. >> >> >> > >> > I'm losing track of what those two "this"'s refer to! >> > >> >> Sorry -- :-) >> >> For the situation of needing to clear locks belonging to long >> dead and not returning clients, we could use a variation of >> Wendy's proposal which works using the client IP as the key. > > Wouldn't this be pretty easy to do with a user space tool that just > calls lockd's SM_NOTIFY procedure? Sure, it's a private interface (as > far as what proc # - but it's pretty well known that lockd always > provides SM_NOTIFY on the same proc #), but there's no real need to add > a new kernel interface unless we want to generalize the clearlocks > interface. > > The tool just needs to use loopback and a privileged port. > > Frank > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-nfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- Feng Shuo Tel: (86)10-6260-0547 Fax: (86)10-6265-7255 Mailing: P. O. Box 2704# Beijing Postcode: 100080 National Research Centre for High Performance Computers Institute of Computing Technology, Chinese Academy of Sciences No. 6, South Kexueyuan Road, Haidian District Beijing, China ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2008-10-29 1:20 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-10-27 6:49 about NLM/NSM hexf 2008-10-27 18:55 ` J. Bruce Fields 2008-10-27 19:22 ` Peter Staubach 2008-10-27 20:13 ` J. Bruce Fields 2008-10-27 21:14 ` Peter Staubach 2008-10-27 21:17 ` J. Bruce Fields 2008-10-27 21:20 ` Peter Staubach 2008-10-27 22:01 ` J. Bruce Fields 2008-10-28 17:31 ` Frank Filz 2008-10-29 1:20 ` Feng Shuo
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox