Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Elsa Gonsiorowski
codes
Commits
79248f90
Commit
79248f90
authored
Aug 06, 2014
by
Jonathan Jenkins
Browse files
loggp message size patch for netgauge 2.4.6
parent
dc99aa98
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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