Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 302668 Details for
Bug 442789
oops in cifs module while trying to stop a thread (kthread_stop) during filesystem mount
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
proposed upstream patch
cifs-demux-dont-exit-on-signal.patch (text/plain), 960 bytes, created by
Jeff Layton
on 2008-04-16 20:20:43 UTC
(
hide
)
Description:
proposed upstream patch
Filename:
MIME Type:
Creator:
Jeff Layton
Created:
2008-04-16 20:20:43 UTC
Size:
960 bytes
patch
obsolete
>diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c >index e171067..375f306 100644 >--- a/fs/cifs/connect.c >+++ b/fs/cifs/connect.c >@@ -429,8 +429,9 @@ incomplete_rcv: > break; > } > if (!try_to_freeze() && (length == -EINTR)) { >- cFYI(1, ("cifsd thread killed")); >- break; >+ cFYI(1, ("cifsd thread signaled")); >+ msleep(1); >+ continue; > } > cFYI(1, ("Reconnect after unexpected peek error %d", > length)); >@@ -528,11 +529,13 @@ incomplete_rcv: > total_read += length) { > length = kernel_recvmsg(csocket, &smb_msg, &iov, 1, > pdu_length - total_read, 0); >- if (kthread_should_stop() || >- (length == -EINTR)) { >- /* then will exit */ >+ if (kthread_should_stop()) { > reconnect = 2; > break; >+ } else if (length == -EINTR) { >+ /* then will exit */ >+ msleep(1); >+ continue; > } else if (server->tcpStatus == CifsNeedReconnect) { > cifs_reconnect(server); > csocket = server->ssocket;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 442789
:
302668
|
304304
|
309852