diff options
author | Anush Shetty <anush@gluster.com> | 2010-05-07 04:25:28 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-05-09 21:41:50 -0700 |
commit | fb2d84b8507354ed6128cacf4289f405cdc8bdc6 (patch) | |
tree | cc10893eb324cb8602a93d33288b1b6c244c6e7a /xlators/protocol | |
parent | 8be447d390f2e0b7dee2edf46b20b75a9ff107dc (diff) |
Adding GF_LOG_OCCASIONALLY to prevent repeated log messages
Signed-off-by: Anush Shetty <anush@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 10 ([ glusterfs 2.0.0 ] - Repeated Log messages with invalid remote-host in protocol/client)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=10
Diffstat (limited to 'xlators/protocol')
-rw-r--r-- | xlators/protocol/transport/socket/src/name.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/xlators/protocol/transport/socket/src/name.c b/xlators/protocol/transport/socket/src/name.c index 120a669c8..74abe4480 100644 --- a/xlators/protocol/transport/socket/src/name.c +++ b/xlators/protocol/transport/socket/src/name.c @@ -34,6 +34,8 @@ #define AF_INET_SDP 27 #endif +static int gf_name_addr_enotspec_log; + #include "transport.h" #include "socket.h" @@ -139,13 +141,14 @@ client_fill_address_family (transport_t *this, sa_family_t *sa_family) if (!(remote_host_data || connect_path_data) || (remote_host_data && connect_path_data)) { - gf_log (this->xl->name, GF_LOG_ERROR, - "transport.address-family not specified and " - "not able to determine the " - "same from other options (remote-host:%s and " - "transport.unix.connect-path:%s)", - data_to_str (remote_host_data), - data_to_str (connect_path_data)); + GF_LOG_OCCASIONALLY (gf_name_addr_enotspec_log, + this->xl->name, GF_LOG_ERROR, + "transport.address-family not specified and " + "not able to determine the " + "same from other options (remote-host:%s and " + "transport.unix.connect-path:%s)", + data_to_str (remote_host_data), + data_to_str (connect_path_data)); goto out; } |