summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-05-05 12:29:37 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-05-05 12:29:37 -0700
commit5a5bcd43d5bf9d553ebbf9bc3425a4e77439fdbe (patch)
treeea907bdbf3a56b81ac9fdb6ec537695825c8edd2 /lib
parentd8cb379cda885ac172454d7e680da65ebd6676b1 (diff)
parent7b1ae248279bea33af9e797a93c35f49601cb8a0 (diff)
downloadlinux-5a5bcd43d5bf9d553ebbf9bc3425a4e77439fdbe.tar.gz
linux-5a5bcd43d5bf9d553ebbf9bc3425a4e77439fdbe.tar.xz
Merge tag 'char-misc-5.13-rc1-round2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc driver fixes from Greg KH: "Here are two char/misc fixes for 5.13-rc1 to resolve reported issues. The first is a bugfix for the nitro_enclaves driver that fixed some important problems. The second was a dyndbg bugfix that resolved some reported problems in dynamic debugging control. Both have been in linux-next for a while with no reported issues" * tag 'char-misc-5.13-rc1-round2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: dyndbg: fix parsing file query without a line-range suffix nitro_enclaves: Fix stale file descriptors on failed usercopy
Diffstat (limited to 'lib')
-rw-r--r--lib/dynamic_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
index c70d6347afa2..921d0a654243 100644
--- a/lib/dynamic_debug.c
+++ b/lib/dynamic_debug.c
@@ -396,7 +396,7 @@ static int ddebug_parse_query(char *words[], int nwords,
/* tail :$info is function or line-range */
fline = strchr(query->filename, ':');
if (!fline)
- break;
+ continue;
*fline++ = '\0';
if (isalpha(*fline) || *fline == '*' || *fline == '?') {
/* take as function name */