Merge tag 'v4.9.180' of git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable into odroidg12-4.9.y

This is the 4.9.180 stable release
This commit is contained in:
Mauro (mdrjr) Ribeiro
2020-04-07 15:18:33 -03:00
140 changed files with 825 additions and 361 deletions

View File

@@ -149,6 +149,12 @@ __register_chrdev_region(unsigned int major, unsigned int baseminor,
ret = -EBUSY;
goto out;
}
if (new_min < old_min && new_max > old_max) {
ret = -EBUSY;
goto out;
}
}
cd->next = *cp;