Merge branch 'master' into for-next
authorJiri Kosina <jkosina@suse.cz>
Tue, 1 Sep 2020 12:19:48 +0000 (14:19 +0200)
committerJiri Kosina <jkosina@suse.cz>
Tue, 1 Sep 2020 12:19:48 +0000 (14:19 +0200)
Sync with Linus' branch in order to be able to apply fixups
of more recent patches.

fs/vboxsf/dir.c
include/linux/scif.h
kernel/printk/printk_safe.c
lib/bitmap.c

index dd147b4..4d569f1 100644 (file)
@@ -134,7 +134,7 @@ try_next_entry:
                d_type = vboxsf_get_d_type(info->info.attr.mode);
 
                /*
-                * On 32 bit systems pos is 64 signed, while ino is 32 bit
+                * On 32-bit systems pos is 64-bit signed, while ino is 32-bit
                 * unsigned so fake_ino may overflow, check for this.
                 */
                if ((ino_t)(ctx->pos + 1) != (u64)(ctx->pos + 1)) {
index eeb250b..329e695 100644 (file)
@@ -657,7 +657,7 @@ int scif_unregister(scif_epd_t epd, off_t offset, size_t len);
  * the negative of one of the following errors is returned.
  *
  * Errors:
- * EACCESS - Attempt to write to a read-only range
+ * EACCES - Attempt to write to a read-only range
  * EBADF, ENOTTY - epd is not a valid endpoint descriptor
  * ECONNRESET - Connection reset by peer
  * EINVAL - rma_flags is invalid
@@ -733,7 +733,7 @@ int scif_readfrom(scif_epd_t epd, off_t loffset, size_t len, off_t
  * the negative of one of the following errors is returned.
  *
  * Errors:
- * EACCESS - Attempt to write to a read-only range
+ * EACCES - Attempt to write to a read-only range
  * EBADF, ENOTTY - epd is not a valid endpoint descriptor
  * ECONNRESET - Connection reset by peer
  * EINVAL - rma_flags is invalid
@@ -815,7 +815,7 @@ int scif_writeto(scif_epd_t epd, off_t loffset, size_t len, off_t
  * the negative of one of the following errors is returned.
  *
  * Errors:
- * EACCESS - Attempt to write to a read-only range
+ * EACCES - Attempt to write to a read-only range
  * EBADF, ENOTTY - epd is not a valid endpoint descriptor
  * ECONNRESET - Connection reset by peer
  * EINVAL - rma_flags is invalid
@@ -895,7 +895,7 @@ int scif_vreadfrom(scif_epd_t epd, void *addr, size_t len, off_t roffset,
  * the negative of one of the following errors is returned.
  *
  * Errors:
- * EACCESS - Attempt to write to a read-only range
+ * EACCES - Attempt to write to a read-only range
  * EBADF, ENOTTY - epd is not a valid endpoint descriptor
  * ECONNRESET - Connection reset by peer
  * EINVAL - rma_flags is invalid
index 50aeae7..e95d2a5 100644 (file)
@@ -22,7 +22,7 @@
  * is later flushed into the main ring buffer via IRQ work.
  *
  * The alternative implementation is chosen transparently
- * by examinig current printk() context mask stored in @printk_context
+ * by examining current printk() context mask stored in @printk_context
  * per-CPU variable.
  *
  * The implementation allows to flush the strings also from another CPU.
index c13d859..6139489 100644 (file)
@@ -552,7 +552,7 @@ static inline bool end_of_region(char c)
 }
 
 /*
- * The format allows commas and whitespases at the beginning
+ * The format allows commas and whitespaces at the beginning
  * of the region.
  */
 static const char *bitmap_find_region(const char *str)