Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2811669pxu; Mon, 7 Dec 2020 16:56:37 -0800 (PST) X-Google-Smtp-Source: ABdhPJzmWIrt98O2QNdtN/GD2p4UOJFVs16Y/k9PDAilnY5rvCaxcAEjT9W1jKl1Q7WNugbrDZak X-Received: by 2002:a17:906:d28f:: with SMTP id ay15mr20666992ejb.327.1607388996995; Mon, 07 Dec 2020 16:56:36 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607388996; cv=none; d=google.com; s=arc-20160816; b=cpeMuXxImTBttX1zWzex0qgD9W+9iZa/IloDsjBUuL9jJddhLf74p1WYr2K8wAGpsi 47AxpSfpMVudF5cBrzEIM2HNZ7TBohgP5k6vbSKJhvok66HUDeSKMEfL8m489Trm1Fvg BoEEOJ3+1gLZXL+wY+Kk9wBZ9n2fULx6/VkwpDqckgczMGhcAEHnQpXxQ2uCX8pZ9rlN nA51rzuQfh2ugYcUd/l458kzKuu1QztXfA2ho2xTsvS5SiwjyImDrQnUky68K5rNJbpN iE9py7/N53x/4phAYw9gCRqZM65XkUDYBVrNO/GOGya0tEI+RtnTbN/rkUzRsEvRxIGG OA0w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=OZR2RUUBxY1ZUzkDf1Cn00rbYBfgGIwV92UXGIsx+1s=; b=smbMAdvn2euG/o77trXH9HeI7q90ROcvf93bfdKBqQKFEJ7nxa7hq+82gkCzaQrO5o G2Yp4tSpszFgQySX/TsztSV159mjtBJekYvJ8OjB1t46iPObHc3U0QLARLaW0Pj008SF ZbiDpefYdXIv50TDw57eXj5yMZaf93sT3zWa7S2hnjaji5+AMULTBwP9jtjmpHE6yo2l yEKG2C7KS6W54hkLPsYvN0RSaHm/+xnVjDgAlrJfB+RMcaqXbqom15PirBaWJPm79HEI dwwV1Kd1JUpeSnIsC5lCxSjnjGCaCsxflUKc3q1Li7qhCoV28xfRyTlRJYb6CXDskeSY KB5A== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id h16si10076828edv.359.2020.12.07.16.56.14; Mon, 07 Dec 2020 16:56:36 -0800 (PST) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728673AbgLHAce (ORCPT + 99 others); Mon, 7 Dec 2020 19:32:34 -0500 Received: from bhuna.collabora.co.uk ([46.235.227.227]:56624 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725853AbgLHAce (ORCPT ); Mon, 7 Dec 2020 19:32:34 -0500 Received: from localhost (unknown [IPv6:2804:14c:132:242d::1001]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: krisman) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id 4F75D1F44BBC; Tue, 8 Dec 2020 00:31:52 +0000 (GMT) From: Gabriel Krisman Bertazi To: dhowells@redhat.com Cc: viro@zeniv.linux.org.uk, tytso@mit.edu, khazhy@google.com, adilger.kernel@dilger.ca, linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org, Gabriel Krisman Bertazi , kernel@collabora.com Subject: [PATCH 5/8] vfs: Include origin of the SB error notification Date: Mon, 7 Dec 2020 21:31:14 -0300 Message-Id: <20201208003117.342047-6-krisman@collabora.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20201208003117.342047-1-krisman@collabora.com> References: <20201208003117.342047-1-krisman@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org When reporting a filesystem error, we really need to know where the error came from, therefore, include "function:line" information in the notification sent to userspace. There is no current users of notify_sb in the kernel, so there are no callers to update. Signed-off-by: Gabriel Krisman Bertazi --- include/linux/fs.h | 11 +++++++++-- include/uapi/linux/watch_queue.h | 3 +++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/include/linux/fs.h b/include/linux/fs.h index df588edc0a34..864d86fcc68c 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -3514,14 +3514,17 @@ static inline void notify_sb(struct super_block *s, /** * notify_sb_error: Post superblock error notification. * @s: The superblock the notification is about. + * @function: function name reported as source of the warning. + * @line: source code line reported as source of the warning. * @error: The error number to be recorded. * @inode: The inode the error refers to (if available, 0 otherwise) * @block: The block the error refers to (if available, 0 otherwise) * @fmt: Formating string for extra information appended to the notification * @args: arguments for extra information string appended to the notification */ -static inline int notify_sb_error(struct super_block *s, int error, u64 inode, - u64 block, const char *fmt, va_list *args) +static inline int notify_sb_error(struct super_block *s, const char *function, int line, + int error, u64 inode, u64 block, + const char *fmt, va_list *args) { #ifdef CONFIG_SB_NOTIFICATIONS if (unlikely(s->s_watchers)) { @@ -3534,8 +3537,12 @@ static inline int notify_sb_error(struct super_block *s, int error, u64 inode, .error_cookie = 0, .inode = inode, .block = block, + .line = line, }; + memcpy(&n.function, function, SB_NOTIFICATION_FNAME_LEN); + n.function[SB_NOTIFICATION_FNAME_LEN-1] = '\0'; + post_sb_notification(s, &n.s, fmt, args); } #endif diff --git a/include/uapi/linux/watch_queue.h b/include/uapi/linux/watch_queue.h index 937363d9f7b3..5fa5286c5cc7 100644 --- a/include/uapi/linux/watch_queue.h +++ b/include/uapi/linux/watch_queue.h @@ -114,6 +114,7 @@ enum superblock_notification_type { #define NOTIFY_SUPERBLOCK_IS_NOW_RO WATCH_INFO_FLAG_0 /* Superblock changed to R/O */ +#define SB_NOTIFICATION_FNAME_LEN 30 /* * Superblock notification record. * - watch.type = WATCH_TYPE_MOUNT_NOTIFY @@ -130,6 +131,8 @@ struct superblock_error_notification { __u32 error_cookie; __u64 inode; __u64 block; + char function[SB_NOTIFICATION_FNAME_LEN]; + __u16 line; char desc[0]; }; -- 2.29.2