[CIFS] missing break needed to handle < when mount option "mapchars" specified

Signed-off-by: Steve French (sfrench@us.ibm.com)

+3 -2
+2 -2
fs/cifs/README
··· 371 on newly created files, directories, and devices (create, 372 mkdir, mknod) which will result in the server setting the 373 uid and gid to the default (usually the server uid of the 374 - usern who mounted the share). Letting the server (rather than 375 the client) set the uid and gid is the default. This 376 parameter has no effect if the CIFS Unix Extensions are not 377 negotiated. ··· 384 client (e.g. when the application is doing large sequential 385 reads bigger than page size without rereading the same data) 386 this can provide better performance than the default 387 - behavior which caches reads (reaadahead) and writes 388 (writebehind) through the local Linux client pagecache 389 if oplock (caching token) is granted and held. Note that 390 direct allows write operations larger than page size
··· 371 on newly created files, directories, and devices (create, 372 mkdir, mknod) which will result in the server setting the 373 uid and gid to the default (usually the server uid of the 374 + user who mounted the share). Letting the server (rather than 375 the client) set the uid and gid is the default. This 376 parameter has no effect if the CIFS Unix Extensions are not 377 negotiated. ··· 384 client (e.g. when the application is doing large sequential 385 reads bigger than page size without rereading the same data) 386 this can provide better performance than the default 387 + behavior which caches reads (readahead) and writes 388 (writebehind) through the local Linux client pagecache 389 if oplock (caching token) is granted and held. Note that 390 direct allows write operations larger than page size
+1
fs/cifs/misc.c
··· 571 break; 572 case UNI_LESSTHAN: 573 target[j] = '<'; 574 default: 575 len = cp->uni2char(src_char, &target[j], 576 NLS_MAX_CHARSET_SIZE);
··· 571 break; 572 case UNI_LESSTHAN: 573 target[j] = '<'; 574 + break; 575 default: 576 len = cp->uni2char(src_char, &target[j], 577 NLS_MAX_CHARSET_SIZE);