diff options
author | Jeff Layton <jlayton@redhat.com> | 2011-07-26 20:20:18 +0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-08-03 07:19:28 +0400 |
commit | b80289833463215d2f3d1d72cf735fc7ba78da57 (patch) | |
tree | 85e29b79dbb473e179ff352ac02cabb8536645ee /fs/cifs/dns_resolve.c | |
parent | fc05a78efb8e91e884017bb0bc43f690aa5b4dcd (diff) | |
download | linux-b80289833463215d2f3d1d72cf735fc7ba78da57.tar.xz |
cifs: demote DFS referral lookup errors to cFYI
cifs: demote DFS referral lookup errors to cFYI
Now that we call into this routine on every mount, anyone who doesn't
have the upcall configured will get multiple printks about failed lookups.
Reported-and-Tested-by: Martijn Uffing <mp3project@sarijopen.student.utwente.nl>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/dns_resolve.c')
-rw-r--r-- | fs/cifs/dns_resolve.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/dns_resolve.c b/fs/cifs/dns_resolve.c index 548f06230a6d..1d2d91d9bf65 100644 --- a/fs/cifs/dns_resolve.c +++ b/fs/cifs/dns_resolve.c @@ -79,8 +79,8 @@ dns_resolve_server_name_to_ip(const char *unc, char **ip_addr) /* Perform the upcall */ rc = dns_query(NULL, hostname, len, NULL, ip_addr, NULL); if (rc < 0) - cERROR(1, "%s: unable to resolve: %*.*s", - __func__, len, len, hostname); + cFYI(1, "%s: unable to resolve: %*.*s", + __func__, len, len, hostname); else cFYI(1, "%s: resolved: %*.*s to %s", __func__, len, len, hostname, *ip_addr); |