Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 's390-5.15-6' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux

Pull s390 fixes from Vasily Gorbik:

- Maintainers and reviewers changes:

* Cornelia decided to free up her time and step down from vfio-ccw
maintainer and s390 kvm reviewer duties

* Add Alexander Gordeev as s390 arch code reviewer

- Fix broken strrchr implementation

* tag 's390-5.15-6' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux:
s390: add Alexander Gordeev as reviewer
s390: fix strrchr() implementation
vfio-ccw: step down as maintainer
KVM: s390: remove myself as reviewer

+7 -9
+1 -2
MAINTAINERS
··· 10279 10279 M: Christian Borntraeger <borntraeger@de.ibm.com> 10280 10280 M: Janosch Frank <frankja@linux.ibm.com> 10281 10281 R: David Hildenbrand <david@redhat.com> 10282 - R: Cornelia Huck <cohuck@redhat.com> 10283 10282 R: Claudio Imbrenda <imbrenda@linux.ibm.com> 10284 10283 L: kvm@vger.kernel.org 10285 10284 S: Supported ··· 16301 16302 M: Heiko Carstens <hca@linux.ibm.com> 16302 16303 M: Vasily Gorbik <gor@linux.ibm.com> 16303 16304 M: Christian Borntraeger <borntraeger@de.ibm.com> 16305 + R: Alexander Gordeev <agordeev@linux.ibm.com> 16304 16306 L: linux-s390@vger.kernel.org 16305 16307 S: Supported 16306 16308 W: http://www.ibm.com/developerworks/linux/linux390/ ··· 16380 16380 F: drivers/s390/crypto/vfio_ap_private.h 16381 16381 16382 16382 S390 VFIO-CCW DRIVER 16383 - M: Cornelia Huck <cohuck@redhat.com> 16384 16383 M: Eric Farman <farman@linux.ibm.com> 16385 16384 M: Matthew Rosato <mjrosato@linux.ibm.com> 16386 16385 R: Halil Pasic <pasic@linux.ibm.com>
+6 -7
arch/s390/lib/string.c
··· 259 259 #ifdef __HAVE_ARCH_STRRCHR 260 260 char *strrchr(const char *s, int c) 261 261 { 262 - size_t len = __strend(s) - s; 262 + ssize_t len = __strend(s) - s; 263 263 264 - if (len) 265 - do { 266 - if (s[len] == (char) c) 267 - return (char *) s + len; 268 - } while (--len > 0); 269 - return NULL; 264 + do { 265 + if (s[len] == (char)c) 266 + return (char *)s + len; 267 + } while (--len >= 0); 268 + return NULL; 270 269 } 271 270 EXPORT_SYMBOL(strrchr); 272 271 #endif