search for: wangchen

Displaying 4 results from an estimated 4 matches for "wangchen".

Did you mean: gangchen
2008 May 26
7
[PATCH 1/3] virtio: fix virtio_net xmit of freed skb bug
If we fail to transmit a packet, we assume the queue is full and put the skb into last_xmit_skb. However, if more space frees up before we xmit it, we loop, and the result can be transmitting the same skb twice. Fix is simple: set skb to NULL if we've used it in some way, and check before sending. Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> --- drivers/net/virtio_net.c |
2008 May 26
7
[PATCH 1/3] virtio: fix virtio_net xmit of freed skb bug
If we fail to transmit a packet, we assume the queue is full and put the skb into last_xmit_skb. However, if more space frees up before we xmit it, we loop, and the result can be transmitting the same skb twice. Fix is simple: set skb to NULL if we've used it in some way, and check before sending. Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> --- drivers/net/virtio_net.c |
2004 Oct 13
0
Linux device number extension patch
...en ---------------------------------------------------------- Wang Chen Dept. of Technology and Development Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 16-5, Guangzhou Rd., Nanjing, P.R.China 210008 PHONE : +86+25-86630523-636 FUJITSU INTERNAL: 79955-636 FAX : +86+25-83317685 Mail : wangchen at nanjing-fnst.com ---------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/ext3-users/attachments/20041013/e7e0a110/attachment.htm> -------------- next part -------------- A...
2008 Mar 20
1
[QUESTION] how to auto-exec cmd when login
Sorry, this post is neither for patch not for bug reporting. I just want to ask a question. Requirement: --- User want to login to a server(which has a chroot environment) by ssh. And when user login to the server, sshd will automatically make the login account to chroot first, and user can only use that chroot env. --- I know we have a ChrootDirectory feature in current development tree. But on