CEPH filesystem development
 help / color / mirror / Atom feed
* [PATCH] ceph: uninitialized variable in debug output
@ 2022-03-07 14:21 Dan Carpenter
  2022-03-08  0:11 ` Xiubo Li
  2022-03-08  9:36 ` David Howells
  0 siblings, 2 replies; 6+ messages in thread
From: Dan Carpenter @ 2022-03-07 14:21 UTC (permalink / raw)
  To: Jeff Layton, David Howells
  Cc: Xiubo Li, Ilya Dryomov, ceph-devel, kernel-janitors

If read_mapping_folio() fails then "inline_version" is printed without
being initialized.

Fixes: 083db6fd3e73 ("ceph: uninline the data on a file opened for writing")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 fs/ceph/addr.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c
index 3c1257b09775..0d4120297ede 100644
--- a/fs/ceph/addr.c
+++ b/fs/ceph/addr.c
@@ -1632,9 +1632,10 @@ int ceph_uninline_data(struct file *file)
 	struct ceph_osd_request *req;
 	struct ceph_cap_flush *prealloc_cf;
 	struct folio *folio = NULL;
+	u64 inline_version = -1;
 	struct page *pages[1];
-	u64 len, inline_version;
 	int err = 0;
+	u64 len;
 
 	prealloc_cf = ceph_alloc_cap_flush();
 	if (!prealloc_cf)
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-03-08 13:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-07 14:21 [PATCH] ceph: uninitialized variable in debug output Dan Carpenter
2022-03-08  0:11 ` Xiubo Li
2022-03-08  9:36 ` David Howells
2022-03-08 13:24   ` Jeff Layton
2022-03-08 13:28     ` Jeff Layton
2022-03-08 13:30       ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox