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 290672 Details for
Bug 426853
Missing multicast messages with realtime beta kernel
[?]
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]
show how many packets were lost and resync the sequential to avoid useless continuous printfs
mdump.patch (text/plain), 569 bytes, created by
Arnaldo Carvalho de Melo
on 2008-01-02 18:24:47 UTC
(
hide
)
Description:
show how many packets were lost and resync the sequential to avoid useless continuous printfs
Filename:
MIME Type:
Creator:
Arnaldo Carvalho de Melo
Created:
2008-01-02 18:24:47 UTC
Size:
569 bytes
patch
obsolete
>--- mdump.c.orig 2008-01-02 16:09:12.000000000 -0200 >+++ mdump.c 2008-01-02 16:12:54.000000000 -0200 >@@ -411,9 +411,14 @@ > } > else { /* not the "stat" cmd */ > if (o_verify) { >+ int packet_seq; > buff[cur_size] = '\0'; /* trailing null */ >- if (cur_seq != strtol(&buff[8], NULL, 16)) >+ packet_seq = strtol(&buff[8], NULL, 16); >+ if (cur_seq != packet_seq) { > printf("Expected seq %x, got %s\n", cur_seq, &buff[8]); >+ printf(" %d packets lost, resync\n", packet_seq - cur_seq); >+ cur_seq = packet_seq; >+ } > } > > ++num_rcvd;
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 426853
:
290452
| 290672