forked from ParaStation/pscom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1793 lines (1096 loc) · 58.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2021-08-11 Simon Pickartz <[email protected]> - 5.4.8-1
* Fix: Only build pscom4ucp tests if UCX could be found.
2021-06-24 Simon Pickartz <[email protected]> - 5.4.8-0rc1
2021-06-22 Carsten Clauss <[email protected]>
* Fix: Keep generated network requests after the reception of an EOF.
2021-06-17 Simon Pickartz <[email protected]>
* Feature: Support for conditional fast initialization of the
pscom4ucp plugin.
* Enhancement: The path to the PSM2 library can now be passed to CMake
via `-DPSM2_HOME=<PATH>`.
2021-01-26 Simon Pickartz <[email protected]> - 5.4.7-1
2021-01-25 Simon Pickartz <[email protected]> - 5.4.7-0rc2
2021-01-25 Jens Hauke <[email protected]>
* Fix: Error propagation on the rendezvous path including errors
comming from the low-level transports (e.g., pscom4openib).
2020-12-14 Simon Pickartz <[email protected]> - 5.4.7-0rc1
* Feature: Outstanding receive requests in pscom4ucp can be limited by
setting the PSP_UCP_MAX_RECV environment variable.
* Enhancement: Use CUDA streams for pscom-internal memcpy() operations.
* Enhancement: Basic CUDA support for the EXTOLL plugins pscom4extoll
and pscom4velo.
2020-08-23 Jens Hauke <[email protected]>
* New: Implement generic polling meachanism within the progress engine.
* Build: Switch to CMake as build system.
* Fix: pscom4openib omits HCA ports with LID = 0.
Fix: pscom_get_next_connection: Do not return connections in state
"closing".
2020-03-25 Jens Hauke <[email protected]> - 5.4.6-1
* Build: Support for icc (Symbol visibility)
2020-03-17 Simon Pickartz <[email protected]> - 5.4.5-1
2020-03-12 Simon Pickartz <[email protected]> - 5.4.5-0rc1
* Enhancement: Simplify the pscom initalization by using more static
assignments
* Fix: keep connections open for reading in case of requests with
pending I/O
2020-03-05 Simon Pickartz <[email protected]> - 5.4.4-1
* Fix: Add missing functions to the plugin API.
2020-03-05 Simon Pickartz <[email protected]> - 5.4.4-0rc1
* Build: Set C language standard to gnu99.
* Packaging: Add support for RPM builds with CUDA support.
* Fix: DAPL builds with enabled CUDA awareness.
2020-03-02 Jens Hauke <[email protected]>
* Build/Enhancement: Improve communiation latency by enabling lto and
explicitly setting symbol visibilities.
2020-02-20 Simon Pickartz <[email protected]> - 5.4.3-1
2020-02-17 Jens Hauke <[email protected]> - 5.4.3-0rc1
* Changed default: prefer PSP_VELO (velo2+rma2) over PSP_EXTOLL
(rma2 only)
* Improvement: Reduce communication latency after ANY_SOURCE receives.
* Enhancement: Support for multiple concurrent receive requests.
* Fix: Avoid a recursion in the rendezvous path of shm.
2020-02-05 Simon Pickartz <[email protected]>
* Improvement: Increase UCP throughput via concurrent receives.
* Improvement: A missing CUDA device does not produce an error.
* New: Add unit tests relying on the cmocka framework.
* Enhancement: Rendezvous support for non-user message types.
* Fix: Directly reference the rma2_port within the pscom4velo
registration cache.
2019-10-16 Simon Pickartz <[email protected]> - 5.4.2-1
* Fix: Preparation of the rendezvous request message
2019-10-08 Jens Hauke <[email protected]> - 5.4.1-1
* Workaround: TCP reconnect, if a call to connect() do not progress.
New environment variables:
PSP_RECONNECT_TIMEOUT timeout in ms before reconnecting after an
error
PSP_CONNECT_STALLED max number of reconnect timeouts before
reconnecting even without an error on the
connection.
2019-09-19 Jens Hauke <[email protected]> - 5.4.0-1
* Fix rendezvous message order: In rare cases small messages had
overtaken large ones with the same MPI TAG.
* New: pscom_is_cuda_enabled(void) to query for CUDA support at
runtime.
2019-07-09 Jens Hauke <[email protected]> - 5.3.1-1
* Enhancement:
Synchronized connection shutdown with inline EOF messages. This
improves "close connection" detection in cases where the
connection guards can't be used.
* Enhancement:
Dump a stack backtrace after SIGSEGV (PSP_SIGSEGV=1)
* Workaround: PSM2: Segfaults in psm2_ep_disconnect() and
psm2_mq_ipeek(): Wait at least PSP_PSM_CLOSE_DELAY milliseconds
after the last call to psm2_mq_send() before calling
psm2_ep_disconnect().
2019-03-19 Simon Pickartz <[email protected]>
* Enhancement:
Add optional CUDA awareness (compile time option)
2019-04-08 Jens Hauke <[email protected]> - 5.3.0-1
* Enhancement:
Optional debug output with timing (PSP_DEBUG_TIMING)
PSP_DEBUG_TIMING:
0 off (default),
1,"us" "ssss.uuuuuu" seconds and microseconds since pscom_init
"date" "YYYY-MM-DD_hh:mm:ss.uuuuuu" in localtime
"wall" "ssss.uuuuuu" seconds and microseconds since the Epoch
"delta" "ssss.uuuuuu" seconds and microseconds since last log
2019-03-19 Simon Pickartz <[email protected]>
* Fix: pscom4velo (Extoll): registration caches
2019-02-12 Jens Hauke <[email protected]> - 5.2.9-1
2019-02-11 Simon Pickartz <[email protected]>
* Fix: UCP: Connection cleanup after a failing connect
(e.g. UCX_TLS with unknown tls)
2019-02-06 Carsten Clauss <[email protected]>
* Fix memory leak in pscom4openib's RNDV protocol for the
RDMA_WRITE case
* Enhancement: env PSP_OPENIB_MALLOC_OPTS for explicitly disabling
the usage of mallopt() in the pscom4open RNDV case.
2019-01-10 Jens Hauke <[email protected]> - 5.2.8-1
* Enhancement: Changed default PSP_DEBUG=1 (report all errors)
The other reporting levels are now defined as:
PSP_DEBUG=0 only fatal conditions (like detected bugs)
PSP_DEBUG=1 fatal conditions + errors (default)
PSP_DEBUG=2 + warnings
PSP_DEBUG=3 + information
PSP_DEBUG=4 + debug
PSP_DEBUG=5 + verbose debug
PSP_DEBUG=6 + tracing calls
In addition, some logging aspects might be raised:
PSP_DEBUG_VERSION=1 Show the pscom version (info)
PSP_DEBUG_CONTYPE=1 Show connection types (was PSP_DEBUG>=1, now
PSP_DEBUG>=3 (info) or PSP_DEBUG_CONTYPE=1)
PSP_DEBUG_SUSPEND=1 or 2 Show suspend info/debug
PSP_DEBUG_PRECON=1 Trace pre-connection handshake (trace)
PSP_DEBUG_STATS=1 Show statistics at exit
PSP_DEBUG_REQ=1 Track pscom requests (this adds latency
for additional req bookkeeping!)
* Fix: Error handling after a plugin handshake failure (precon).
* Enhancement: Handle a failing shmat() to "direct shared mem" of
a peer (Before it was an abort with "Assertion failed")
* Enhancement: UCP: pscom4ucp: non-blocking receives from libucp.
* Enhancement: UCP: performance improvements.
* Deleted libpsport4. Delete obsolete and unused psport4 code.
* Fix: plugin selection. (Incorrect looping from last plugin to
first plugin, if all plugins failed for a connection)
* Fix: shm handshake "live lock". (Incorrect error recovery from
failing shmat()/shmget())
2018-10-08 Jens Hauke <[email protected]> - 5.2.7-1
* Enhancement: precon: stop obsolete back connects on established
connections.
* psm: Disallow libpsm2 to overwrite the cpu affinity (unless
HFI_NO_CPUAFFINITY=0 is set).
2018-09-03 Jens Hauke <[email protected]> - 5.2.6-1
* Fix: con: "pscom_con.c:208: _pscom_con_cleanup: Assertion `con->magic
== MAGIC_CONNECTION' failed." (connection cleanup)
* Fix: con: "pscom_con.c:331: pscom_con_error_io_done: Assertion
`con->magic == MAGIC_CONNECTION' failed." (connection cleanup)
* Fix: precon: "pscom_precon.c:627: pscom_precon_check_end:
Assertion `pre->magic == MAGIC_PRECON' failed." (error handling on
noisy IP networks)
* Fix: PSM2: "pscom4psm/pspsm.c:459: pspsm_process: Assertion
`status->msg_length == status->nbytes' failed." (truncated
xheader)
* Workaround: PSM2: Segfault in psm2_ep_close (psm2 connection
cleanup)
2018-07-27 Jens Hauke <[email protected]> - 5.2.5-1
* Enhancement: TCP connects: Recover from more network errors
* Enhancement: "test_nodes {masternode}" startable by mpiexec/srun
2018-07-18 Jens Hauke <[email protected]> - 5.2.5-0rc2
* Fix: Error handling on failing connections (Segfault after
"connection refused" and "Network unreachable"
* Enhancement: Increase default: PSP_READAHEAD=350
2018-07-16 Jens Hauke <[email protected]> - 5.2.5-0rc1
* Fix: heap corruption at first connect
2018-07-10 Carsten Clauss <[email protected]>
* psmalloc: support for the PSCOM_ALLIN case
2018-07-09 Jens Hauke <[email protected]> - 5.2.4-1
* Enhancement: At connection startup, recover from ECONNRESET
errors (improve scaling).
* Fix: Error handling for failing ondemand connections (fix double
cleanup in case of on error).
* Fix: Error handling for the non-ondemand case if no usable
plugin can be found (e.g. PSP_TCP=0).
* Fix: PSM2: clean disconnect of psm2 connections. (requires
libpsm >= PSM2_10.2-260).
2018-05-07 Jens Hauke <[email protected]> - 5.2.3-1
* Fix: UCP: pscom4ucp: Increased space for ucp_address_t endpoint
address (Supporting ucx >= 1.3.0-1)
2018-04-03 Jens Hauke <[email protected]> - 5.2.2-1
* Enhancement: Increase PSCOM_MAX_UFDS.
* Enhancement: Support for external pscom4gateway plugin.
* Enhancement: Optional "allin" to link plugins and libpscom into
libmpi.
* Enhancement: pscom4psm: Implement env switch PSP_PSM_FASTINIT.
2017-10-10 Jens Hauke <[email protected]>
* Fix: Mem leak with generated requests from psm2 connections
2017-08-25 Carsten Clauss <[email protected]> - 5.2.1-1
* Fix: Proper handling of race conditions in the connection
establishment with PSP_ONDEMAND=1
* Enhancement: Mitigate the impact of the global any-source queue
within the critical path
2017-08-04 Carsten Clauss <[email protected]> - 5.2.0-1
* Feature: Fallback to Eager and/or SW-Rendezvous in case of
resource shortage for pscom4openib (can be disabled again with
PSP_OPENIB_RNDV_FALLBACKS=0)
* Fix: Resolved memory de-registration leak in the RNDV_RDMA_WRITE
case for pscom4openib
* Enhancement: Add global any-source queue that fixes the usage of
MPI_ANY_SOURCE on intercommunicators for psmpi-5.2.0
2017-01-25 Jens Hauke <[email protected]>
* Enhancement: New API that allows for message sizes > 4GiB by
using size_t as datatype for the message length
2017-05-23 Jens Hauke <[email protected]> - 5.1.3-1
* Fix: MXM availability check by stat(/sys/class/infiniband/mlx…)
* Fix: PSM availability check by stat(/dev/hfi…) and stat(/dev/ipath…)
* Enhance: Search for plugins also in the directory containing the
used libpscom.so
2017-03-21 Jens Hauke <[email protected]> - 5.1.2-1
* Fix: much more conservative usage of the memory registration
cache for infiniband. Fix message data corruption seen with some
fortran applications with dynamic allocated user data.
* Feature: pscom4openib with configurable memory registration
cache. Use export PSP_OPENIB_MCACHE_SIZE, to set the size.
PSP_OPENIB_MCACHE_SIZE=0 disables the cache.
2017-02-28 Jens Hauke <[email protected]>
* Feature: Add support for psm2 omnipath (pscom4psm).
2017-02-07 Jens Hauke <[email protected]> - 5.1.1-1
* Fix connection cleanup. A race sometimes fired:
"_pscom_con_destroy: Assertion `con->magic == 0x78626c61' failed."
2016-10-04 Jens Hauke <[email protected]>
* Feature: ARM support (aarch64).
* Fix: on demand / ECONNRESET.
2016-09-06 Jens Hauke <[email protected]> - 5.1.0-1
* Feature: Add support for UCP (pscom4ucp). Use export
PSP_UCP=1 to enable this transport.
2016-05-19 Jens Hauke <[email protected]> - 5.1.0-0_rc1
* Enhancement: Rewritten connection handshake. Asynchronous
handshake using TCP.
* Enhancement: Optional signal triggered suspend/resume of
connections. (enable ^Z suspend with PSP_SIGSUSPEND=20)
* Enhancement: Using the handshake TCP connection to monitor the
peer. ("Connection guard". disable with: PSP_GUARD=0)
2016-01-18 Jens Hauke <[email protected]> - 5.0.48-1
* Fix pscom_iprobe() message header of rendezvous messages.
* Update the buildsystem to automake 1.15
2015-12-14 Jens Hauke <[email protected]> - 5.0.47-1
* Fix for "_pscom_get_rma_read_answer_receiver: Assertion
`rma_answer->id == req' failed" from the openib rendezvous
protocol introduced with 5.0.46-1
* Enhancement: pscom4velo: Use a VELO2 MTU of 120 bytes.
2015-10-08 Jens Hauke <[email protected]> - 5.0.46-1
* Fix: Extoll pscom4velo: Transmit messages > 8MB in chunks of 8MB via
RMA read.
* Enhancement: IB: Implement a rendezvous protocol in pscom4openib
using RDMA write for large messages. To disable the rendezvous,
set the message size to PSP_RENDEZVOUS_OPENIB=-1.
2015-03-09 Jens Hauke <[email protected]> - 5.0.45-1
* Feature: Add basic support for Mellanoxs Messaging Accelerator
(MXM).
* Fix: potential deadlock when running multithreaded.
2014-07-01 Jens Hauke <[email protected]> - 5.0.44-1
* Feature: configurable LID offset for
infiniband. PSP_OFED_LID_OFFSET for UD and PSP_OPENIB_LID_OFFSET
for rc communication.
2014-06-16 Jens Hauke <[email protected]>
* Feature: pscom4shm with "direct shared memory". To enable, link
with "-lpsmalloc", to disable set PSP_MALLOC=0.
* Feature: pscom4velo using rma for large messages (rendezvous
over velo).
2014-01-09 Jens Hauke <[email protected]> - 5.0.43-1
* Feature: Add 2 new mpi messages types for debug with
PSP_DEBUG_REQ=1.
2013-12-19 Jens Hauke <[email protected]>
* Fix: loading of pscom plugins when used in a RTLD_LOCAL dlopen()
context.
2013-07-11 Jens Hauke <[email protected]>
* Feature: Arch psm: Disable psm if /dev/ipath is not present.
2013-06-20 Jens Hauke <[email protected]> - 5.0.42-1
* Feature: Extended Extoll VELO support. Use PSP_VELO=1 to use
velo instead of rma.
2013-05-23 Jens Hauke <[email protected]> - 5.0.41-1
* Update the buildsystem to automake 1.12.2
* Fix: Workaround for failing pscom_listen(PSCOM_ANYPORT) with
EADDRINUSE.
* Fix: Workaround for a race in the QLOGIC libpsm infinipath stack
(pscom4psm)
* Fix: Hanging Extoll connections under heavy load (progress
engine of pscom4extoll).
2012-08-27 Jens Hauke <[email protected]> - 5.0.40-1
* Feature: Terminate all ib connections on wrong cq opcodes.
* Fix: Workaround for extoll buffer cleanup
* Feature: MIC support
2012-08-16 Jens Hauke <[email protected]> - 5.0.39-1
* Update the extoll plugin to extoll2
* Fix missing initializer in the ofed plugin.
2012-05-23 Jens Hauke <[email protected]>
* pscom: Build only libraries and tools. Build the package
"pscom-modules" for the linux kernel modules like p4sock.ko.
2012-03-26 Jens Hauke <[email protected]> - 5.0.38-1
* Fix: handling of new connections after posting anysrc
receives.
* enhance: License with QPL
* feature: test_nodes is now using libpscom
* add pscom_dispatch example to the source
2011-12-02 Thomas Moschny <[email protected]> 5.0.37-1
* psm: share one progress engine (ipeek) with all
connections. Greatly enhances performance e.g. for namd2.
* Fix the initial state of receive requests from
socket->default_recv.
* Fix assertion test from _pscom_cancel_recv with ANY_SOURCE
requests. Fixes two failing mpich2 tests.
* Fix missing -ldl for openib_pp tools.
* Fix compiler warnings in psofed.c and psoib.c.
2011-07-14 Jens Hauke <[email protected]> - 5.0.36-1
* feature: Native qlogic psm support
2011-06-01 Jens Hauke <[email protected]> - 5.0.35-1
* psoib: revert 5.0.34-1 error reporting.
2011-05-30 Jens Hauke <[email protected]> - 5.0.34-1
* Fix a race in ufd_poll.
* Scaling fix: Increase default PSP_TCP_BACKLOG to 262144.
* psoib: increased error reporting.
* Fix PSP_DEBUG_OUT parsing with malformed file names.
* enhance: Prefix debug output with the socket name (= mpi rank).
* Fix receive request counting after termination of a broken
connection. (Was false positive "deadlock detected")
* enhance: pscom_debug: Use ssh. New option -p to use pssh.
2010-11-11 Jens Hauke <[email protected]> - 5.0.33-2
* psbuild for the git buildbots
2010-08-23 Jens Hauke <[email protected]> - 5.0.33-1
* Fix: p4ether: linearize rx skb. Fix bnx2 fragmented receive
skb's. (Corrupted messages with pscom over p4sock over bnx2)
* feature: count and print pscom_probe, pscom_iprobe usage and
ANY_SOURCE receives when PSP_DEBUG_STATS=1 or PSP_DEBUG >= 2 is
set
* feature: Iprobes without progress. Iprobe will iterate without
progress for PSP_IPROBE_COUNT iterations.
* Fix p4s_setsockopt signature for kernel > 2.6.31.
* Update p4ether for kernels > 2.6.28
* change: Do not build linux kernel modules by default. Enable
modules with: "configure --with-kernel"
2010-06-28 Jens Hauke <[email protected]> - 5.0.32-1
* fix: Thread aware implementation of
libpscom. (pscom_init_thread())
2010-05-26 Jens Hauke <[email protected]> - 5.0.31-1
* fix: OpenIB deadlock/slowdown with
PSP_OPENIB_{SEND|RECV}Q_SIZE=3
* change: exit(112), on detected deadlocks to avoid waste of
CPU cycles.
2010-01-28 Jens Hauke <[email protected]> - 5.0.30-1
* enhance: Prefix debug output with the hostname
* enhance: libpscom: Search plugins in LD_LIBRARY_PATH.
* enhance: include the man pages about p4stat and p4tcp.
* change: psofed: default IB_MTU_SPEC = 2048.
* new: libpscom4ofed for UD infiniband communication. Infiniband
communication with a very small memory footprint (very good
scaling) but less performant than libpscom4openib. Use export
PSP_OFED=1 to enable this transport.
* fix: p4sock: ethernet: alloc_skb() with extra 16 byte to avoid
skb panics with ipoib devices.
* fix: openib error handling, if ibv_create_qp() fails.
2009-05-25 Jens Hauke <[email protected]> - 5.0.29-1
* fix: compat define for gso_size to tso_size rename for 2.6.16.60
SuSE kernels.
2009-03-11 Jens Hauke <[email protected]> - 5.0.28-1
* enhance: Optional usage of libpslib for environment and debugging.
2009-03-03 Jens Hauke <[email protected]> - 5.0.27-1
* fix: psoib token handling.
* fix: psdapl event counting.
2009-03-02 Jens Hauke <[email protected]>
* enhance: Add pscom.gdb. A gdb script to help on libpscom debugging.
2009-03-02 Jens Hauke <[email protected]>
* enhance: psoib: configurable busy waiting on completion events.
`export PSP_OPENIB_EVENT_CNT=0` to disable busy waiting.
2009-02-26 Jens Hauke <[email protected]>
* enhance: --enable-new-dtags (runpath & rpath) in
parastation-config.
2009-02-23 Jens Hauke <[email protected]>
* fix: rendezvous on loopback connections.
* enhance: Allow rendezvous requests without
PSP_UNEXPECTED_RECEIVES=1.
2009-02-16 Jens Hauke <[email protected]>
* enhance: env PSP_DEBUG_OUT to define the filename for debug
output. Shell-like expansion of the value (wordexp(8)).
2009-02-12 Jens Hauke <[email protected]> - 5.0.26-1
* psoib: Longer default completion queue
(PSP_OPENIB_COMPQ_SIZE=40000)
2009-02-09 Jens Hauke <[email protected]> - 5.0.25-1
* psoib: Connection local send queue as a workaround for OFED
problems with a global send queue. (Fix #210)
2009-02-06 Jens Hauke <[email protected]> - 5.0.24-1
* "On demand" connections. Establish a connection with the first
send request.
2009-01-29 Jens Hauke <[email protected]> - 5.0.23-1
* Configurable OpenIB/Ofed send and receive queue sizes.
(PSP_OPENIB_SENDQ_SIZE, PSP_OPENIB_RECVQ_SIZE)
2009-01-29 Jens Hauke <[email protected]> - 5.0.22-1
* Improve OpenIB/Ofed completion queue handling.
2009-01-21 Jens Hauke <[email protected]> - 5.0.21-1
* openib/ofed: Scan for the first active IB port. (or
PSP_OPENIB_{HCA,PORT})
2009-01-13 Jens Hauke <[email protected]> - 5.0.20-1
* Configurable openib hca and port. (PSP_OPENIB_HCA,
PSP_OPENIB_PORT)
2009-01-08 Jens Hauke <[email protected]> - 5.0.19-1
* Fix deadlock in pscom_iprobe() and pscom_probe() (Ticket #199)
* Pack also the low level pingpong tests for psport4, p4sock and
pscom.
* Replace "extern inline" by "static inline" to avoid compiler
warnings.
2009-11-25 Jens Hauke <[email protected]> - 5.0.18-1
* Fix potential hanging OpenIB, GM, ELAN and DAPL (Ticket #182)
------------------------------------------------------------------------
r6964 | hauke | 2008-11-05 14:58:24 +0100 (Wed, 05 Nov 2008) | 2 lines
Version 5.0.17-1.
------------------------------------------------------------------------
r6963 | hauke | 2008-11-05 14:56:14 +0100 (Wed, 05 Nov 2008) | 2 lines
p4sock: Fix sysctl table check problem with /proc/sys/ps4 (Ticket #177)
------------------------------------------------------------------------
r6852 | hauke | 2008-10-23 15:57:44 +0200 (Thu, 23 Oct 2008) | 2 lines
Version 5.0.16-1.
------------------------------------------------------------------------
r6851 | hauke | 2008-10-23 15:06:28 +0200 (Thu, 23 Oct 2008) | 2 lines
Version 5.0.16-0.1.devel.
------------------------------------------------------------------------
r6850 | hauke | 2008-10-23 15:03:26 +0200 (Thu, 23 Oct 2008) | 2 lines
Bugfix: Hanging p4sock with recvqcheck=1.
------------------------------------------------------------------------
r6528 | hauke | 2008-10-07 13:07:10 +0200 (Tue, 07 Oct 2008) | 2 lines
Version 5.0.15-1.
------------------------------------------------------------------------
r6522 | hauke | 2008-09-29 18:52:37 +0200 (Mon, 29 Sep 2008) | 2 lines
Fix warning about constness in call of dev_hard_header in old kernels.
------------------------------------------------------------------------
r6521 | hauke | 2008-09-29 18:52:36 +0200 (Mon, 29 Sep 2008) | 2 lines
Advanced receive queue checking. (p4sock performance fix)
------------------------------------------------------------------------
r6511 | hauke | 2008-09-29 10:52:46 +0200 (Mon, 29 Sep 2008) | 2 lines
Switch PSP_UNEXPECTED_RECEIVES.
------------------------------------------------------------------------
r6510 | hauke | 2008-09-29 10:52:45 +0200 (Mon, 29 Sep 2008) | 7 lines
Fix a deadlock caused by a generated request.
------------------------------------------------------------------------
r6508 | hauke | 2008-09-29 10:52:44 +0200 (Mon, 29 Sep 2008) | 2 lines
pscom_dump_request() : Print already received bytes.
------------------------------------------------------------------------
r6503 | hauke | 2008-09-29 10:52:40 +0200 (Mon, 29 Sep 2008) | 4 lines
Count all receive requests (con->recv_req_cnt). Use this
information to disable receiving from a connection in the case of no
receive request for this connection.
------------------------------------------------------------------------
r6469 | hauke | 2008-08-29 11:53:21 +0200 (Fri, 29 Aug 2008) | 2 lines
Version 5.0.14-1.
------------------------------------------------------------------------
r6468 | hauke | 2008-08-29 11:52:01 +0200 (Fri, 29 Aug 2008) | 3 lines
Bugfix: Switched "offset" and "flags" parameter in
kmem_cache_create. (committed 2007-12-13 r5431)
------------------------------------------------------------------------
r6457 | hauke | 2008-08-19 20:12:09 +0200 (Tue, 19 Aug 2008) | 2 lines
Show bug in gcc (SUSE Linux) 4.3.1 20080507 (prerelease).
------------------------------------------------------------------------
r6451 | hauke | 2008-08-19 15:36:57 +0200 (Tue, 19 Aug 2008) | 2 lines
Change the name of pscom-modules to pscom-modules-{kernelversion}.
------------------------------------------------------------------------
r6280 | hauke | 2008-07-10 11:36:20 +0200 (Thu, 10 Jul 2008) | 2 lines
Version 5.0.13-1
------------------------------------------------------------------------
r6258 | hauke | 2008-07-08 18:43:12 +0200 (Tue, 08 Jul 2008) | 2 lines
Version 5.0.13-devel1.
------------------------------------------------------------------------
r6253 | hauke | 2008-07-08 18:35:47 +0200 (Tue, 08 Jul 2008) | 2 lines
Version 5.0.13-devel.
------------------------------------------------------------------------
r6153 | hauke | 2008-06-20 16:27:09 +0200 (Fri, 20 Jun 2008) | 2 lines
Protocol version check at connection startup.
------------------------------------------------------------------------
r6114 | hauke | 2008-06-06 11:45:45 +0200 (Fri, 06 Jun 2008) | 2 lines
Version 5.0.13-0devel
------------------------------------------------------------------------
r6105 | hauke | 2008-06-05 15:54:06 +0200 (Thu, 05 Jun 2008) | 2 lines
test pscom_barrier().
------------------------------------------------------------------------
r6104 | hauke | 2008-06-05 15:53:55 +0200 (Thu, 05 Jun 2008) | 2 lines
Implement pscom_barrier().
------------------------------------------------------------------------
r6098 | hauke | 2008-06-04 15:59:55 +0200 (Wed, 04 Jun 2008) | 2 lines
Implement ctrl queues for internal communication.
------------------------------------------------------------------------
r6032 | hauke | 2008-05-21 13:01:04 +0200 (Wed, 21 May 2008) | 2 lines
Implement a blocking Broadcast (pscom_bcast).
------------------------------------------------------------------------
r6027 | hauke | 2008-05-20 16:34:15 +0200 (Tue, 20 May 2008) | 2 lines
Make pscom_env_get_???() public available.
------------------------------------------------------------------------
r5961 | hauke | 2008-05-07 18:00:04 +0200 (Wed, 07 May 2008) | 2 lines
Working bcast.
------------------------------------------------------------------------
r5960 | hauke | 2008-05-07 17:59:33 +0200 (Wed, 07 May 2008) | 2 lines
Fix states in send requests.
------------------------------------------------------------------------
r5959 | hauke | 2008-05-07 17:56:47 +0200 (Wed, 07 May 2008) | 2 lines
Update docu.
------------------------------------------------------------------------
r5956 | hauke | 2008-05-07 13:44:16 +0200 (Wed, 07 May 2008) | 2 lines
bcast test: establish n*n connections.
------------------------------------------------------------------------
r5955 | hauke | 2008-05-07 13:43:26 +0200 (Wed, 07 May 2008) | 2 lines
pscom: allow restriction to specified communication paths.
------------------------------------------------------------------------
r5946 | hauke | 2008-05-02 13:50:15 +0200 (Fri, 02 May 2008) | 2 lines
bcast connect.
------------------------------------------------------------------------
r5944 | hauke | 2008-04-30 18:00:29 +0200 (Wed, 30 Apr 2008) | 2 lines
Fix blocking connect to localhost:-1.
------------------------------------------------------------------------
r5938 | hauke | 2008-04-29 11:26:08 +0200 (Tue, 29 Apr 2008) | 2 lines
Code cleanup
------------------------------------------------------------------------
r5909 | hauke | 2008-04-18 16:41:39 +0200 (Fri, 18 Apr 2008) | 2 lines
Preparation for pscom broadcasts.
------------------------------------------------------------------------
r5784 | hauke | 2008-03-17 17:46:13 +0100 (Mon, 17 Mar 2008) | 2 lines
Update for kernel >= 2.6.24.
------------------------------------------------------------------------
r5654 | hauke | 2008-02-25 10:54:29 +0100 (Mon, 25 Feb 2008) | 2 lines
Build in parallel on SMP. (_smp_mflags in specfile).
------------------------------------------------------------------------
r5609 | hauke | 2008-02-19 15:21:43 +0100 (Tue, 19 Feb 2008) | 2 lines
Version 5.0.12-0
------------------------------------------------------------------------
r5592 | hauke | 2008-02-18 11:05:07 +0100 (Mon, 18 Feb 2008) | 2 lines
Do not build e1000 modules unless --with e1000.
------------------------------------------------------------------------
r5591 | hauke | 2008-02-18 10:57:14 +0100 (Mon, 18 Feb 2008) | 2 lines
Do not build bcm5700 modules unless --with bcm5700.
------------------------------------------------------------------------
r5590 | hauke | 2008-02-18 10:47:00 +0100 (Mon, 18 Feb 2008) | 2 lines
Fix warning: "rdtscll" redefined.
------------------------------------------------------------------------
r5505 | moschny | 2008-01-09 12:19:13 +0100 (Wed, 09 Jan 2008) | 1 line
------------------------------------------------------------------------
r5491 | hauke | 2008-01-08 12:44:28 +0100 (Tue, 08 Jan 2008) | 2 lines
Version 5.0.11-0
------------------------------------------------------------------------
r5490 | hauke | 2008-01-08 12:43:43 +0100 (Tue, 08 Jan 2008) | 2 lines
Use /usr/lib64 for openib/ofed detection on 64bit arch.
------------------------------------------------------------------------
r5489 | hauke | 2008-01-08 12:32:38 +0100 (Tue, 08 Jan 2008) | 4 lines
bugfix: missing include "stdlib.h" cause a Segfault on 64bit
arch.
------------------------------------------------------------------------
r5455 | hauke | 2007-12-17 13:00:26 +0100 (Mon, 17 Dec 2007) | 2 lines
Version 5.0.10-0
------------------------------------------------------------------------
r5451 | hauke | 2007-12-17 12:46:56 +0100 (Mon, 17 Dec 2007) | 2 lines
include "sched.h" to find symbol HZ.
------------------------------------------------------------------------
r5442 | hauke | 2007-12-14 16:04:32 +0100 (Fri, 14 Dec 2007) | 2 lines
Version 5.0.9-0
------------------------------------------------------------------------
r5440 | hauke | 2007-12-14 15:57:03 +0100 (Fri, 14 Dec 2007) | 3 lines
Fix compat_ioctl 32bit ioctl for kernels > 2.6.17.
------------------------------------------------------------------------
r5425 | hauke | 2007-12-13 10:22:33 +0100 (Thu, 13 Dec 2007) | 2 lines
fix usage of eth_hdr() for linux >= 2.6.21
------------------------------------------------------------------------
r5424 | hauke | 2007-12-13 10:22:11 +0100 (Thu, 13 Dec 2007) | 2 lines
register_sysctl_table() for linux >= 2.6.21
------------------------------------------------------------------------
r5345 | hauke | 2007-11-09 14:50:32 +0100 (Fri, 09 Nov 2007) | 2 lines
Version 5.0.8-0
------------------------------------------------------------------------
r5344 | hauke | 2007-11-09 14:49:19 +0100 (Fri, 09 Nov 2007) | 2 lines
Include libpscom4elan.so with default PSP_ELAN=0.
------------------------------------------------------------------------
r5312 | hauke | 2007-10-25 12:42:51 +0200 (Thu, 25 Oct 2007) | 2 lines
Version 5.0.7-0
------------------------------------------------------------------------
r5307 | hauke | 2007-10-24 16:46:02 +0200 (Wed, 24 Oct 2007) | 2 lines
Lib ELAN support.
------------------------------------------------------------------------
r5305 | hauke | 2007-10-23 18:15:41 +0200 (Tue, 23 Oct 2007) | 2 lines
libelan lowlevel pingpong.
------------------------------------------------------------------------
r5300 | hauke | 2007-10-22 11:54:19 +0200 (Mon, 22 Oct 2007) | 2 lines
Version 5.0.6-1
------------------------------------------------------------------------
r5299 | hauke | 2007-10-22 11:54:03 +0200 (Mon, 22 Oct 2007) | 2 lines
Distribution with libpscom4dapl.so.
------------------------------------------------------------------------
r5298 | hauke | 2007-10-22 11:44:45 +0200 (Mon, 22 Oct 2007) | 1 line
Version 5.0.6-0
------------------------------------------------------------------------
r5293 | hauke | 2007-10-18 16:39:57 +0200 (Thu, 18 Oct 2007) | 4 lines
Move environment to pscom_env.c (prepare for a
registry). PSP_DAPL_PROVIDER to choose a dapl provider. Scan all DAPL
providers.
------------------------------------------------------------------------
r5279 | hauke | 2007-10-15 17:14:11 +0200 (Mon, 15 Oct 2007) | 2 lines
Use rendezvous for long messages.
------------------------------------------------------------------------
r5278 | hauke | 2007-10-15 15:58:21 +0200 (Mon, 15 Oct 2007) | 2 lines
--enable-new-dtags (runpath & rpath) for pscom
------------------------------------------------------------------------
r5253 | hauke | 2007-10-02 17:21:54 +0200 (Tue, 02 Oct 2007) | 2 lines
Version 5.0.5-0
------------------------------------------------------------------------
r5249 | hauke | 2007-10-02 14:19:49 +0200 (Tue, 02 Oct 2007) | 2 lines
enable libpscom4dapl. (DAPL support)
------------------------------------------------------------------------
r5247 | hauke | 2007-10-02 14:09:43 +0200 (Tue, 02 Oct 2007) | 2 lines
DAPL: pscom connections.
------------------------------------------------------------------------
r5221 | hauke | 2007-09-24 11:00:55 +0200 (Mon, 24 Sep 2007) | 2 lines
fix missing stringtermination '\0' on long hostnames.
------------------------------------------------------------------------