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

Commit c1d1d0d8 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

proc: task_mmu: fix up merge issue with 3.18.103



This fixes a merge issue with 3.18.103 and the android-3.18 branch.  I
took the merge in the incorrect order for this file.

Change-Id: I7b67efd0486114214d6aed673915a58b8cc1d56e
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 939e5727
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -373,13 +373,15 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
			goto done;
		}

		if (is_stack(priv, vma)) {
			name = "[stack]";
			goto done;
		}

		if (vma_get_anon_name(vma)) {
			seq_pad(m, ' ');
			seq_print_vma_name(m, vma);
		}

		if (is_stack(priv, vma))
			name = "[stack]";
	}

done: