#
e2b36efd |
| 30-Jan-2010 |
Antoine Brodin <antoine@FreeBSD.org> |
MFC r201145 to stable/8: (S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR:
MFC r201145 to stable/8: (S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryabinkin (initial version)
show more ...
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
13e403fd |
| 28-Dec-2009 |
Antoine Brodin <antoine@FreeBSD.org> |
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryab
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryabinkin (initial version) MFC after: 1 month
show more ...
|
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 |
|
#
186f2eea |
| 26-Jun-2008 |
Mike Makonnen <mtm@FreeBSD.org> |
The signature for a pthread function requires that it return a pointer to a void. The send_thread() and disk_thread() funtions; however, do not have a return value because they run for the duration o
The signature for a pthread function requires that it return a pointer to a void. The send_thread() and disk_thread() funtions; however, do not have a return value because they run for the duration of the daemon's lifetime. This causes gcc to barf when running with -O3. Make these functions return a null pointer to quiet it.
PR: bin/124342 Submitted by: Garrett Cooper <gcooper@FreeBSD.org> (minus his comments) MFC after: 1 week
show more ...
|
#
032de3f9 |
| 20-Jun-2008 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
Fix spelling
PR: kern/124723 Event: Bugathon#5
|
Revision tags: release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, 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
|
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.
|
#
59ee11bb |
| 02-Jun-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Remove extra semicolon.
Inspired by: fjoe
|
Revision tags: release/4.10.0_cvs, release/4.10.0 |
|
#
b34d2de0 |
| 04-May-2004 |
Bruce Evans <bde@FreeBSD.org> |
Include <sys/time.h> for the declaration of struct bintime instead of depending on namespace pollution in <sys/stat.h>. struct bintime is only needed to satisfy leakage of kernel interfaces to userl
Include <sys/time.h> for the declaration of struct bintime instead of depending on namespace pollution in <sys/stat.h>. struct bintime is only needed to satisfy leakage of kernel interfaces to userland and namespace bugs in those interfaces...
show more ...
|
#
86bfa454 |
| 02-May-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix compiling on 64-bit architectures.
|
#
d1d669bd |
| 30-Apr-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
GEOM Gate network daemon.
|
#
d44dbcbb |
| 19-Feb-2010 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Style nits.
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
13e403fd |
| 28-Dec-2009 |
Antoine Brodin <antoine@FreeBSD.org> |
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryab
(S)LIST_HEAD_INITIALIZER takes a (S)LIST_HEAD as an argument. Fix some wrong usages. Note: this does not affect generated binaries as this argument is not used.
PR: 137213 Submitted by: Eygene Ryabinkin (initial version) MFC after: 1 month
show more ...
|
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 |
|
#
186f2eea |
| 26-Jun-2008 |
Mike Makonnen <mtm@FreeBSD.org> |
The signature for a pthread function requires that it return a pointer to a void. The send_thread() and disk_thread() funtions; however, do not have a return value because they run for the duration o
The signature for a pthread function requires that it return a pointer to a void. The send_thread() and disk_thread() funtions; however, do not have a return value because they run for the duration of the daemon's lifetime. This causes gcc to barf when running with -O3. Make these functions return a null pointer to quiet it.
PR: bin/124342 Submitted by: Garrett Cooper <gcooper@FreeBSD.org> (minus his comments) MFC after: 1 week
show more ...
|
#
032de3f9 |
| 20-Jun-2008 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
Fix spelling
PR: kern/124723 Event: Bugathon#5
|
Revision tags: release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, 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
|
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.
|
#
59ee11bb |
| 02-Jun-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Remove extra semicolon.
Inspired by: fjoe
|
Revision tags: release/4.10.0_cvs, release/4.10.0 |
|
#
b34d2de0 |
| 04-May-2004 |
Bruce Evans <bde@FreeBSD.org> |
Include <sys/time.h> for the declaration of struct bintime instead of depending on namespace pollution in <sys/stat.h>. struct bintime is only needed to satisfy leakage of kernel interfaces to userl
Include <sys/time.h> for the declaration of struct bintime instead of depending on namespace pollution in <sys/stat.h>. struct bintime is only needed to satisfy leakage of kernel interfaces to userland and namespace bugs in those interfaces...
show more ...
|
#
86bfa454 |
| 02-May-2004 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Fix compiling on 64-bit architectures.
|