diff --git a/misc/README b/misc/README new file mode 100644 index 0000000000000000000000000000000000000000..7fd9d922c9a225bcc1248df40b817a6e9e0619a5 --- /dev/null +++ b/misc/README @@ -0,0 +1,7 @@ +== 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. diff --git a/misc/ptrn_loggp-2.4.6.patch b/misc/ptrn_loggp-2.4.6.patch new file mode 100644 index 0000000000000000000000000000000000000000..b4349d425ec423a40c45438bfce334b5aa57b444 --- /dev/null +++ b/misc/ptrn_loggp-2.4.6.patch @@ -0,0 +1,12 @@ +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)){