forked from ParaStation/pscom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
1441 lines (878 loc) · 47 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
2016-10-04 Jens Hauke <hauke@par-tec.com>
* Feature: ARM support (aarch64).
* Fix: on demand / ECONNRESET.
2016-09-06 Jens Hauke <hauke@par-tec.com> - 5.1.0-1
* Feature: Add support for UCP (pscom4ucp). Use export
PSP_UCP=1 to enable this transport.
2016-05-19 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.48-1
* Fix pscom_iprobe() message header of rendezvous messages.
* Update the buildsystem to automake 1.15
2015-12-14 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.45-1
* Feature: Add basic support for Mellanoxs Messaging Accelerator
(MXM).
* Fix: potential deadlock when running multithreaded.
2014-07-01 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com>
* 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 <hauke@par-tec.com> - 5.0.43-1
* Feature: Add 2 new mpi messages types for debug with
PSP_DEBUG_REQ=1.
2013-12-19 Jens Hauke <hauke@par-tec.com>
* Fix: loading of pscom plugins when used in a RTLD_LOCAL dlopen()
context.
2013-07-11 Jens Hauke <hauke@par-tec.com>
* Feature: Arch psm: Disable psm if /dev/ipath is not present.
2013-06-20 Jens Hauke <hauke@par-tec.com> - 5.0.42-1
* Feature: Extended Extoll VELO support. Use PSP_VELO=1 to use
velo instead of rma.
2013-05-23 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.39-1
* Update the extoll plugin to extoll2
* Fix missing initializer in the ofed plugin.
2012-05-23 Jens Hauke <hauke@par-tec.com>
* pscom: Build only libraries and tools. Build the package
"pscom-modules" for the linux kernel modules like p4sock.ko.
2012-03-26 Jens Hauke <hauke@par-tec.com> - 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 <moschny@par-tec.com> 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 <hauke@par-tec.com> - 5.0.36-1
* feature: Native qlogic psm support
2011-06-01 Jens Hauke <hauke@par-tec.com> - 5.0.35-1
* psoib: revert 5.0.34-1 error reporting.
2011-05-30 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.33-2
* psbuild for the git buildbots
2010-08-23 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.32-1
* fix: Thread aware implementation of
libpscom. (pscom_init_thread())
2010-05-26 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.28-1
* enhance: Optional usage of libpslib for environment and debugging.
2009-03-03 Jens Hauke <hauke@par-tec.com> - 5.0.27-1
* fix: psoib token handling.
* fix: psdapl event counting.
2009-03-02 Jens Hauke <hauke@par-tec.com>
* enhance: Add pscom.gdb. A gdb script to help on libpscom debugging.
2009-03-02 Jens Hauke <hauke@par-tec.com>
* enhance: psoib: configurable busy waiting on completion events.
`export PSP_OPENIB_EVENT_CNT=0` to disable busy waiting.
2009-02-26 Jens Hauke <hauke@par-tec.com>
* enhance: --enable-new-dtags (runpath & rpath) in
parastation-config.
2009-02-23 Jens Hauke <hauke@par-tec.com>
* fix: rendezvous on loopback connections.
* enhance: Allow rendezvous requests without
PSP_UNEXPECTED_RECEIVES=1.
2009-02-16 Jens Hauke <hauke@par-tec.com>
* 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 <hauke@par-tec.com> - 5.0.26-1
* psoib: Longer default completion queue
(PSP_OPENIB_COMPQ_SIZE=40000)
2009-02-09 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.24-1
* "On demand" connections. Establish a connection with the first
send request.
2009-01-29 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 5.0.22-1
* Improve OpenIB/Ofed completion queue handling.
2009-01-21 Jens Hauke <hauke@par-tec.com> - 5.0.21-1
* openib/ofed: Scan for the first active IB port. (or
PSP_OPENIB_{HCA,PORT})
2009-01-13 Jens Hauke <hauke@par-tec.com> - 5.0.20-1
* Configurable openib hca and port. (PSP_OPENIB_HCA,
PSP_OPENIB_PORT)
2009-01-08 Jens Hauke <hauke@par-tec.com> - 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 <hauke@par-tec.com> - 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.
------------------------------------------------------------------------
r5179 | hauke | 2007-09-11 16:32:14 +0200 (Tue, 11 Sep 2007) | 2 lines
Version 5.0.4-1
------------------------------------------------------------------------
r5177 | hauke | 2007-09-11 16:18:35 +0200 (Tue, 11 Sep 2007) | 3 lines
p4s: Try more ports (instead of getpid())
Bugfix: p4s: send NACK on local connect error.
------------------------------------------------------------------------
r5174 | hauke | 2007-09-11 12:55:50 +0200 (Tue, 11 Sep 2007) | 2 lines
Version 5.0.3-1
------------------------------------------------------------------------
r5158 | hauke | 2007-08-24 18:21:22 +0200 (Fri, 24 Aug 2007) | 2 lines
bugfix: wrong pscom_con_t *con in p4sock protocol.
------------------------------------------------------------------------
r5155 | hauke | 2007-08-24 18:11:52 +0200 (Fri, 24 Aug 2007) | 2 lines
Dump mpi2 xheader if PSP_DEBUG >= 5.
------------------------------------------------------------------------
r5149 | hauke | 2007-08-23 14:24:07 +0200 (Thu, 23 Aug 2007) | 2 lines
compat env: PSP_P4S <-> PSP_P4SOCK.
------------------------------------------------------------------------
r4928 | hauke | 2007-06-21 18:22:00 +0200 (Thu, 21 Jun 2007) | 2 lines
install libpscom4gm and libpscom4openib.
------------------------------------------------------------------------
r4919 | hauke | 2007-06-20 16:52:59 +0200 (Wed, 20 Jun 2007) | 2 lines
Pscom plugin system and openIB stack.
------------------------------------------------------------------------
r4915 | hauke | 2007-06-19 15:26:04 +0200 (Tue, 19 Jun 2007) | 2 lines
Move openib to lib/pscom4openib.
------------------------------------------------------------------------
r4910 | hauke | 2007-06-19 10:14:40 +0200 (Tue, 19 Jun 2007) | 2 lines
Fix rpath option (linking with gcc with -Wl,-rpath instead of ld -rpath)
------------------------------------------------------------------------
r4905 | hauke | 2007-06-19 09:50:13 +0200 (Tue, 19 Jun 2007) | 2 lines
Update for Slab cache in 2.6.20.
------------------------------------------------------------------------
r4896 | hauke | 2007-06-18 18:03:37 +0200 (Mon, 18 Jun 2007) | 2 lines
replace c++ comments by c comments (/* */)
------------------------------------------------------------------------
r4645 | hauke | 2007-03-12 18:43:55 +0100 (Mon, 12 Mar 2007) | 2 lines
rma_read and rma_write.
------------------------------------------------------------------------
r4577 | hauke | 2007-02-19 14:43:59 +0100 (Mon, 19 Feb 2007) | 2 lines
New communication lib libpscom.
------------------------------------------------------------------------
r4576 | hauke | 2007-02-19 13:24:06 +0100 (Mon, 19 Feb 2007) | 2 lines
Create pscom 5 branch.
------------------------------------------------------------------------
r4545 | hauke | 2007-02-07 14:03:08 +0100 (Wed, 07 Feb 2007) | 2 lines
Version 4.3.13-0
------------------------------------------------------------------------
r4544 | hauke | 2007-02-07 13:46:18 +0100 (Wed, 07 Feb 2007) | 2 lines
OpenIB: ibv_get_devices -> ibv_get_device_list.
------------------------------------------------------------------------
r4543 | hauke | 2007-02-07 13:45:36 +0100 (Wed, 07 Feb 2007) | 2 lines
Search for /usr/local/oefd (open fabric/ open ib) path.
------------------------------------------------------------------------
r4525 | eicker | 2007-01-22 13:20:46 +0100 (Mon, 22 Jan 2007) | 2 lines
PPC64 on RedHat actually builds 64-bit objects.
------------------------------------------------------------------------
r4502 | hauke | 2007-01-10 14:06:11 +0100 (Wed, 10 Jan 2007) | 2 lines
bcm5700: Dont use UTS_RELEASE.
------------------------------------------------------------------------
r4457 | hauke | 2006-11-28 14:47:06 +0100 (Tue, 28 Nov 2006) | 2 lines
USER_HZ to HZ.
------------------------------------------------------------------------
r4456 | hauke | 2006-11-28 10:36:41 +0100 (Tue, 28 Nov 2006) | 2 lines
Version 4.3.12-0
------------------------------------------------------------------------
r4455 | hauke | 2006-11-28 10:33:16 +0100 (Tue, 28 Nov 2006) | 2 lines
e100 hangup workaround.
------------------------------------------------------------------------
r4454 | hauke | 2006-11-24 12:57:52 +0100 (Fri, 24 Nov 2006) | 2 lines
Bugfix: pspipe/pscp reuse of send buffer as receive buffer.
------------------------------------------------------------------------
r4453 | eicker | 2006-11-23 21:04:14 +0100 (Thu, 23 Nov 2006) | 2 lines
First snapshot of pscp. This needs psmgmt-4.3.4-3 or higher to work.
------------------------------------------------------------------------
r4450 | hauke | 2006-11-21 16:15:07 +0100 (Tue, 21 Nov 2006) | 2 lines
Version 4.3.11-0
------------------------------------------------------------------------
r4447 | hauke | 2006-11-21 16:05:03 +0100 (Tue, 21 Nov 2006) | 2 lines
Bugfix: negative modulecounter.
------------------------------------------------------------------------
r4445 | hauke | 2006-11-20 15:19:06 +0100 (Mon, 20 Nov 2006) | 2 lines
remove deprecated "#include <linux/config.h>".
------------------------------------------------------------------------
r4395 | hauke | 2006-10-17 11:57:28 +0200 (Tue, 17 Oct 2006) | 2 lines
Version 4.3.10-2
------------------------------------------------------------------------
r4394 | hauke | 2006-10-17 11:57:03 +0200 (Tue, 17 Oct 2006) | 2 lines
Bugfix: repair configure --with-modules.
------------------------------------------------------------------------
r4346 | partec | 2006-09-12 18:02:26 +0200 (Tue, 12 Sep 2006) | 1 line
compat_ioctl hack
------------------------------------------------------------------------
r4344 | hauke | 2006-09-12 16:56:41 +0200 (Tue, 12 Sep 2006) | 2 lines
remove unused #include <asm/segment.h>
------------------------------------------------------------------------
r4311 | hauke | 2006-09-01 15:45:38 +0200 (Fri, 01 Sep 2006) | 2 lines
Add target_cpu=powerpc64.
------------------------------------------------------------------------
r4292 | hauke | 2006-08-23 14:30:05 +0200 (Wed, 23 Aug 2006) | 2 lines
Fix parse_opt() for ppc.
------------------------------------------------------------------------
r4286 | hauke | 2006-08-22 15:25:46 +0200 (Tue, 22 Aug 2006) | 2 lines
Version 4.3.10-1
------------------------------------------------------------------------
r4284 | hauke | 2006-08-22 15:21:18 +0200 (Tue, 22 Aug 2006) | 2 lines
Fix MM_GETSTATS64 macro. (remove some warnings)
------------------------------------------------------------------------
r4283 | hauke | 2006-08-22 15:01:55 +0200 (Tue, 22 Aug 2006) | 2 lines
ioctl32.
------------------------------------------------------------------------
r4282 | hauke | 2006-08-22 15:00:19 +0200 (Tue, 22 Aug 2006) | 2 lines
disable BCM_IOCTL32 on kernels >= 2.6.14.
------------------------------------------------------------------------
r4281 | hauke | 2006-08-22 13:36:19 +0200 (Tue, 22 Aug 2006) | 2 lines
Version 4.3.10
------------------------------------------------------------------------
r4272 | hauke | 2006-08-22 12:59:24 +0200 (Tue, 22 Aug 2006) | 2 lines
Update e1000 to 7.2.7.
------------------------------------------------------------------------
r4270 | hauke | 2006-08-22 11:30:10 +0200 (Tue, 22 Aug 2006) | 2 lines
Remove some warnings. tso_size is now(>=2.6.17) gso_size.
------------------------------------------------------------------------
r4249 | hauke | 2006-08-15 15:20:10 +0200 (Tue, 15 Aug 2006) | 2 lines
Version 4.3.9-0
------------------------------------------------------------------------
r4248 | hauke | 2006-08-15 15:18:47 +0200 (Tue, 15 Aug 2006) | 2 lines
lib64 in parastation-config.
------------------------------------------------------------------------
r4247 | hauke | 2006-08-14 18:29:48 +0200 (Mon, 14 Aug 2006) | 2 lines
Version 4.3.8-0
------------------------------------------------------------------------
r4246 | hauke | 2006-08-14 18:28:13 +0200 (Mon, 14 Aug 2006) | 3 lines
kernels >= 2.6.14 (?) dont have register_ioctl32_conversion().
------------------------------------------------------------------------
r4148 | hauke | 2006-06-29 15:49:36 +0200 (Thu, 29 Jun 2006) | 2 lines
Fix signed/unsigned warnings inside mvapi.
Version 4.3.7-0
------------------------------------------------------------------------
r4137 | hauke | 2006-06-20 14:40:38 +0200 (Tue, 20 Jun 2006) | 2 lines
Install x86_64 libs to /opt/parastation/lib64.
------------------------------------------------------------------------
r4129 | hauke | 2006-06-07 13:39:14 +0200 (Wed, 07 Jun 2006) | 2 lines
Version 4.3.6-0
------------------------------------------------------------------------
r4128 | hauke | 2006-06-07 13:37:07 +0200 (Wed, 07 Jun 2006) | 2 lines
Fix BUG: spinlock wrong CPU on kernels > 2.6.14. (Bug #47)
------------------------------------------------------------------------
r4127 | hauke | 2006-06-07 13:25:27 +0200 (Wed, 07 Jun 2006) | 2 lines
fix RPM build errors: Macro %config has empty body
------------------------------------------------------------------------
r4125 | hauke | 2006-06-07 10:37:17 +0200 (Wed, 07 Jun 2006) | 2 lines
Version 4.3.5-0
------------------------------------------------------------------------
r4124 | hauke | 2006-06-07 10:35:22 +0200 (Wed, 07 Jun 2006) | 2 lines
Workaround for Bug #46 (__stack_chk_fail_local).
------------------------------------------------------------------------
r4117 | hauke | 2006-05-31 12:54:13 +0200 (Wed, 31 May 2006) | 2 lines
Version 4.3.4-1
------------------------------------------------------------------------
r4116 | hauke | 2006-05-31 12:52:55 +0200 (Wed, 31 May 2006) | 2 lines
Update struct packet_type.func (net receive callback) for kernels >= 2.6.14.
------------------------------------------------------------------------
r4115 | hauke | 2006-05-31 12:50:55 +0200 (Wed, 31 May 2006) | 2 lines
Update rwlocks for kernels >= 2.6.14.
------------------------------------------------------------------------
r4114 | hauke | 2006-05-30 12:41:41 +0200 (Tue, 30 May 2006) | 2 lines
Version 4.3.4
------------------------------------------------------------------------
r4113 | hauke | 2006-05-30 12:38:58 +0200 (Tue, 30 May 2006) | 3 lines
Avoid calls to external function ip_dev_find() (no export in
kernels >= 2.6.14)
------------------------------------------------------------------------
r4098 | hauke | 2006-04-21 12:07:48 +0200 (Fri, 21 Apr 2006) | 2 lines
Version pscom-4.3.3
------------------------------------------------------------------------
r4097 | hauke | 2006-04-21 12:01:54 +0200 (Fri, 21 Apr 2006) | 2 lines
Support for flag MSG_WAITALL in recvfrom(fd, buf, sizeof(buf), MSG_WAITALL,...).
------------------------------------------------------------------------
r4063 | hauke | 2006-04-06 14:46:22 +0200 (Thu, 06 Apr 2006) | 2 lines
Version 4.3.2
------------------------------------------------------------------------
r4062 | hauke | 2006-04-06 14:46:03 +0200 (Thu, 06 Apr 2006) | 2 lines
Changed p4tcp rendezvous protocol.
------------------------------------------------------------------------
r4061 | hauke | 2006-04-06 14:44:08 +0200 (Thu, 06 Apr 2006) | 2 lines
New callback registration "p4_setcb_new_connection()"
------------------------------------------------------------------------
r4059 | hauke | 2006-04-05 18:45:35 +0200 (Wed, 05 Apr 2006) | 2 lines
Bugfix: p4tcp: NULL pointer exception in tinet_release().
------------------------------------------------------------------------
r4015 | hauke | 2006-03-08 10:03:52 +0100 (Wed, 08 Mar 2006) | 2 lines
Dont use libpsport4std, if not requested.
------------------------------------------------------------------------
r3979 | hauke | 2006-02-09 16:04:36 +0100 (Thu, 09 Feb 2006) | 2 lines
Version 4.3.0
------------------------------------------------------------------------
r3944 | hauke | 2006-01-27 16:53:18 +0100 (Fri, 27 Jan 2006) | 2 lines
Version pscom-4.2.11
------------------------------------------------------------------------
r3943 | hauke | 2006-01-27 16:51:59 +0100 (Fri, 27 Jan 2006) | 2 lines
Include pspipe.
Version pscom-4.2.10:
=====================
------------------------------------------------------------------------
r3919 | hauke | 2006-01-19 14:35:53 +0100 (Thu, 19 Jan 2006) | 2 lines
Replace sock_alloc() with sock_create().
------------------------------------------------------------------------
r3846 | hauke | 2005-12-15 16:07:06 +0100 (Thu, 15 Dec 2005) | 2 lines
Search psport4 libs in /opt/parastation/lib{64}.
------------------------------------------------------------------------
r3804 | hauke | 2005-11-03 13:20:00 +0100 (Thu, 03 Nov 2005) | 2 lines
Update for 2.6.12 kernels. (proto_register and sk_alloc).
------------------------------------------------------------------------
r3800 | hauke | 2005-11-03 11:25:06 +0100 (Thu, 03 Nov 2005) | 2 lines
specfile tag "Copyright" is deprecated. Changed to "License: Proprietary".
------------------------------------------------------------------------