diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/afs/file.c | 2 | ||||
-rw-r--r-- | fs/fat/Kconfig | 3 | ||||
-rw-r--r-- | fs/splice.c | 3 |
3 files changed, 6 insertions, 2 deletions
diff --git a/fs/afs/file.c b/fs/afs/file.c index 7a1d942ef68d..0149dab365e7 100644 --- a/fs/afs/file.c +++ b/fs/afs/file.c | |||
@@ -102,6 +102,7 @@ int afs_release(struct inode *inode, struct file *file) | |||
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
104 | 104 | ||
105 | #ifdef CONFIG_AFS_FSCACHE | ||
105 | /* | 106 | /* |
106 | * deal with notification that a page was read from the cache | 107 | * deal with notification that a page was read from the cache |
107 | */ | 108 | */ |
@@ -117,6 +118,7 @@ static void afs_file_readpage_read_complete(struct page *page, | |||
117 | SetPageUptodate(page); | 118 | SetPageUptodate(page); |
118 | unlock_page(page); | 119 | unlock_page(page); |
119 | } | 120 | } |
121 | #endif | ||
120 | 122 | ||
121 | /* | 123 | /* |
122 | * AFS read page from file, directory or symlink | 124 | * AFS read page from file, directory or symlink |
diff --git a/fs/fat/Kconfig b/fs/fat/Kconfig index d0a69ff25375..182f9ffe2b51 100644 --- a/fs/fat/Kconfig +++ b/fs/fat/Kconfig | |||
@@ -95,3 +95,6 @@ config FAT_DEFAULT_IOCHARSET | |||
95 | Note that "utf8" is not recommended for FAT filesystems. | 95 | Note that "utf8" is not recommended for FAT filesystems. |
96 | If unsure, you shouldn't set "utf8" here. | 96 | If unsure, you shouldn't set "utf8" here. |
97 | See <file:Documentation/filesystems/vfat.txt> for more information. | 97 | See <file:Documentation/filesystems/vfat.txt> for more information. |
98 | |||
99 | Enable any character sets you need in File Systems/Native Language | ||
100 | Support. | ||
diff --git a/fs/splice.c b/fs/splice.c index 5384a90665d0..666953d59a35 100644 --- a/fs/splice.c +++ b/fs/splice.c | |||
@@ -614,7 +614,6 @@ static void wakeup_pipe_writers(struct pipe_inode_info *pipe) | |||
614 | * @actor: handler that splices the data | 614 | * @actor: handler that splices the data |
615 | * | 615 | * |
616 | * Description: | 616 | * Description: |
617 | |||
618 | * This function loops over the pipe and calls @actor to do the | 617 | * This function loops over the pipe and calls @actor to do the |
619 | * actual moving of a single struct pipe_buffer to the desired | 618 | * actual moving of a single struct pipe_buffer to the desired |
620 | * destination. It returns when there's no more buffers left in | 619 | * destination. It returns when there's no more buffers left in |
@@ -711,7 +710,7 @@ EXPORT_SYMBOL(splice_from_pipe_next); | |||
711 | 710 | ||
712 | /** | 711 | /** |
713 | * splice_from_pipe_begin - start splicing from pipe | 712 | * splice_from_pipe_begin - start splicing from pipe |
714 | * @pipe: pipe to splice from | 713 | * @sd: information about the splice operation |
715 | * | 714 | * |
716 | * Description: | 715 | * Description: |
717 | * This function should be called before a loop containing | 716 | * This function should be called before a loop containing |