Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0855f310 authored by Sebastian Siewior's avatar Sebastian Siewior Committed by Artem Bityutskiy
Browse files

UBIFS: create the name of the background thread in every case



If the ubifs partition is mounted RO and then remounted RW we end
up with no thread name in ubifs_remount_rw() and the thread appears
nameless.

Signed-off-by: default avatarSebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent adee14b2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1024,14 +1024,13 @@ static int mount_ubifs(struct ubifs_info *c)
		goto out_dereg;
	}

	sprintf(c->bgt_name, BGT_NAME_PATTERN, c->vi.ubi_num, c->vi.vol_id);
	if (!mounted_read_only) {
		err = alloc_wbufs(c);
		if (err)
			goto out_cbuf;

		/* Create background thread */
		sprintf(c->bgt_name, BGT_NAME_PATTERN, c->vi.ubi_num,
			c->vi.vol_id);
		c->bgt = kthread_create(ubifs_bg_thread, c, c->bgt_name);
		if (!c->bgt)
			c->bgt = ERR_PTR(-EINVAL);