From: Alex Markuze Date: Mon, 17 Mar 2025 15:41:04 +0000 (+0000) Subject: minor fixup X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7ef17a741382bcba0ffb1a2d45764602d160b816;p=ceph-client.git minor fixup --- diff --git a/net/ceph/ceph_san_logger.c b/net/ceph/ceph_san_logger.c index 88e056058da6..9b3a8ebc57fc 100644 --- a/net/ceph/ceph_san_logger.c +++ b/net/ceph/ceph_san_logger.c @@ -123,8 +123,10 @@ void ceph_san_log(const char *file, unsigned int line, const char *fmt, ...) int len, needed_size; ctx = ceph_san_get_tls_ctx(); - if (!ctx) + if (!ctx) { + pr_err("Failed to get TLS context\n"); return; + } va_start(args, fmt); len = vsnprintf(buf, sizeof(buf), fmt, args);