Revision tags: release/14.0.0 |
|
#
b3e76948 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: two-line .h pattern
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
|
#
4d846d26 |
| 10-May-2023 |
Warner Losh <imp@FreeBSD.org> |
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause.
Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
show more ...
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0 |
|
#
1de7b4b8 |
| 27-Nov-2017 |
Pedro F. Giffuni <pfg@FreeBSD.org> |
various: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error
various: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task.
The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
No functional change intended.
show more ...
|
Revision tags: release/10.4.0, release/11.1.0, release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0 |
|
#
1d908ad7 |
| 18-Apr-2010 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
MFC r204075:
Style nits.
|
Revision tags: release/7.3.0_cvs, release/7.3.0 |
|
#
1a0fda2b |
| 04-Mar-2010 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
IFH@204581
|
#
d44dbcbb |
| 19-Feb-2010 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Style nits.
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
#
2663c885 |
| 06-Apr-2007 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Implement a work-around for poor ggate write performance.
|
Revision tags: release/6.2.0_cvs, release/6.2.0 |
|
#
15c7f46b |
| 18-Dec-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
For consistency use 'unsigned' instead of 'u_int'.
|
#
905cd667 |
| 15-Dec-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix ggated for platforms with 64bit size_t. The DIOCGSECTORSIZE ioctl returns u_int.
Reported by: Javier Martín Rueda <jmrueda@diatel.upm.es> PR: amd64/91799 MFC after: 3 days
|
#
a930f272 |
| 30-Oct-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
- Handle timeouts from recv(2) properly. - Increase timeout to 8 seconds (should be made configurable).
Reported by: Ulrich Spoerlein <uspoerlein@gmail.com> Reported by: Christian Laursen <xi@border
- Handle timeouts from recv(2) properly. - Increase timeout to 8 seconds (should be made configurable).
Reported by: Ulrich Spoerlein <uspoerlein@gmail.com> Reported by: Christian Laursen <xi@borderworlds.dk> PR: kern/104829 MFC after: 1 week
show more ...
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0 |
|
#
7be67fe3 |
| 08-Jul-2005 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Reimplement ggatec/ggated applications.
Change communication protocol to be much more resistant on network problems and to allow for much better performance.
Better performance is achieved by creat
Reimplement ggatec/ggated applications.
Change communication protocol to be much more resistant on network problems and to allow for much better performance.
Better performance is achieved by creating two connections between ggatec and ggated one for sending the data and one for receiving it. Every connection is handled by separeted thread, so there is no more synchronous data flow (send and wait for response), now one threads sends all requests and another receives the data.
Use two threads in ggatec(8): - sendtd, which takes I/O requests from the kernel and sends them to the ggated daemon on the other end; - recvtd, which waits for ggated responses and forwards them to the kernel.
Use three threads in ggated(8): - recvtd, which waits for I/O requests and puts them onto incoming queue; - disktd, which takes requests from the incoming queue, does disk operations and puts finished requests onto outgoing queue; - sendtd, which takes finished requests from the outgoing queue and sends responses back to ggatec.
Because there were major changes in communication protocol, there is no backward compatibility, from now on, both client and server has to run on 5.x or 6.x (or at least ggated should be from the same FreeBSD version on which ggatec is running).
For Gbit networks some buffers need to be increased. I use those settings: kern.ipc.maxsockbuf=16777216 net.inet.tcp.sendspace=8388608 net.inet.tcp.recvspace=8388608 and I use '-S 4194304 -R 4194304' options for both, ggatec and ggated.
Approved by: re (scottl)
show more ...
|
Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
#
122abe03 |
| 08-Sep-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix/clean up return values checking.
|
#
71ae6999 |
| 21-Jun-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Print mediasize in human readable form as well.
|
Revision tags: release/4.10.0_cvs, release/4.10.0 |
|
#
86bfa454 |
| 02-May-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix compiling on 64-bit architectures.
|
#
6ac5fe48 |
| 30-Apr-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Stuff shared between ggate utilities.
|
#
d44dbcbb |
| 19-Feb-2010 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Style nits.
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
#
2663c885 |
| 06-Apr-2007 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Implement a work-around for poor ggate write performance.
|
Revision tags: release/6.2.0_cvs, release/6.2.0 |
|
#
15c7f46b |
| 18-Dec-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
For consistency use 'unsigned' instead of 'u_int'.
|
#
905cd667 |
| 15-Dec-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix ggated for platforms with 64bit size_t. The DIOCGSECTORSIZE ioctl returns u_int.
Reported by: Javier Martín Rueda <jmrueda@diatel.upm.es> PR: amd64/91799 MFC after: 3 days
|
#
a930f272 |
| 30-Oct-2006 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
- Handle timeouts from recv(2) properly. - Increase timeout to 8 seconds (should be made configurable).
Reported by: Ulrich Spoerlein <uspoerlein@gmail.com> Reported by: Christian Laursen <xi@border
- Handle timeouts from recv(2) properly. - Increase timeout to 8 seconds (should be made configurable).
Reported by: Ulrich Spoerlein <uspoerlein@gmail.com> Reported by: Christian Laursen <xi@borderworlds.dk> PR: kern/104829 MFC after: 1 week
show more ...
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0 |
|
#
7be67fe3 |
| 08-Jul-2005 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Reimplement ggatec/ggated applications.
Change communication protocol to be much more resistant on network problems and to allow for much better performance.
Better performance is achieved by creat
Reimplement ggatec/ggated applications.
Change communication protocol to be much more resistant on network problems and to allow for much better performance.
Better performance is achieved by creating two connections between ggatec and ggated one for sending the data and one for receiving it. Every connection is handled by separeted thread, so there is no more synchronous data flow (send and wait for response), now one threads sends all requests and another receives the data.
Use two threads in ggatec(8): - sendtd, which takes I/O requests from the kernel and sends them to the ggated daemon on the other end; - recvtd, which waits for ggated responses and forwards them to the kernel.
Use three threads in ggated(8): - recvtd, which waits for I/O requests and puts them onto incoming queue; - disktd, which takes requests from the incoming queue, does disk operations and puts finished requests onto outgoing queue; - sendtd, which takes finished requests from the outgoing queue and sends responses back to ggatec.
Because there were major changes in communication protocol, there is no backward compatibility, from now on, both client and server has to run on 5.x or 6.x (or at least ggated should be from the same FreeBSD version on which ggatec is running).
For Gbit networks some buffers need to be increased. I use those settings: kern.ipc.maxsockbuf=16777216 net.inet.tcp.sendspace=8388608 net.inet.tcp.recvspace=8388608 and I use '-S 4194304 -R 4194304' options for both, ggatec and ggated.
Approved by: re (scottl)
show more ...
|
Revision tags: release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
#
122abe03 |
| 08-Sep-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix/clean up return values checking.
|
#
71ae6999 |
| 21-Jun-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Print mediasize in human readable form as well.
|
Revision tags: release/4.10.0_cvs, release/4.10.0 |
|
#
86bfa454 |
| 02-May-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix compiling on 64-bit architectures.
|
#
6ac5fe48 |
| 30-Apr-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Stuff shared between ggate utilities.
|