Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
codes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Elsa Gonsiorowski
codes
Commits
79248f90
Commit
79248f90
authored
Aug 06, 2014
by
Jonathan Jenkins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loggp message size patch for netgauge 2.4.6
parent
dc99aa98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
misc/README
misc/README
+7
-0
misc/ptrn_loggp-2.4.6.patch
misc/ptrn_loggp-2.4.6.patch
+12
-0
No files found.
misc/README
0 → 100644
View file @
79248f90
== ptrn_loggp-2.4.6.patch
If you are using the most recent version of netgauge at the time of this
writing, 2.4.6, to gather loggp parameters, then you will likely need this patch
to get the results you expect. This version replaced the exponential message
size progression with fixed, linear byte increments of 1K. The patch reverts
this new behavior.
misc/ptrn_loggp-2.4.6.patch
0 → 100644
View file @
79248f90
474c474
< unsigned long data_size;
---
> long data_size;
538,541c538,539
< for (data_size = NG_START_PACKET_SIZE;
< !g_stop_tests && data_size > 0 && data_size <= g_options.max_datasize;
< //get_next_testparams(&data_size, &test_count, &g_options)) {
< data_size+=2*512) {
---
> for (data_size = g_options.min_datasize; data_size > 0;
> get_next_testparams(&data_size, &test_count, &g_options, module)){
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment