aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/ia64/lib/csum_partial_copy.c2
-rw-r--r--fs/Kconfig1
-rw-r--r--fs/afs/internal.h2
-rw-r--r--fs/afs/rxrpc.c2
-rw-r--r--fs/afs/use-rtnetlink.c2
-rw-r--r--net/rxrpc/Kconfig5
-rw-r--r--net/rxrpc/rxkad.c1
7 files changed, 12 insertions, 3 deletions
diff --git a/arch/ia64/lib/csum_partial_copy.c b/arch/ia64/lib/csum_partial_copy.c
index 503dfe6d1450..118daf5a0632 100644
--- a/arch/ia64/lib/csum_partial_copy.c
+++ b/arch/ia64/lib/csum_partial_copy.c
@@ -128,6 +128,8 @@ csum_partial_copy_from_user(const void __user *src, void *dst,
128 return (__force __wsum)result; 128 return (__force __wsum)result;
129} 129}
130 130
131EXPORT_SYMBOL(csum_partial_copy_from_user);
132
131__wsum 133__wsum
132csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum) 134csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
133{ 135{
diff --git a/fs/Kconfig b/fs/Kconfig
index e33c08924572..a42f767dcdd5 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -2020,6 +2020,7 @@ config AFS_FS
2020 tristate "Andrew File System support (AFS) (EXPERIMENTAL)" 2020 tristate "Andrew File System support (AFS) (EXPERIMENTAL)"
2021 depends on INET && EXPERIMENTAL 2021 depends on INET && EXPERIMENTAL
2022 select AF_RXRPC 2022 select AF_RXRPC
2023 select KEYS
2023 help 2024 help
2024 If you say Y here, you will get an experimental Andrew File System 2025 If you say Y here, you will get an experimental Andrew File System
2025 driver. It currently only supports unsecured read-only AFS access. 2026 driver. It currently only supports unsecured read-only AFS access.
diff --git a/fs/afs/internal.h b/fs/afs/internal.h
index 6dd3197d1d8d..34665f7d7a19 100644
--- a/fs/afs/internal.h
+++ b/fs/afs/internal.h
@@ -367,7 +367,7 @@ struct afs_uuid {
367 u32 time_low; /* low part of timestamp */ 367 u32 time_low; /* low part of timestamp */
368 u16 time_mid; /* mid part of timestamp */ 368 u16 time_mid; /* mid part of timestamp */
369 u16 time_hi_and_version; /* high part of timestamp and version */ 369 u16 time_hi_and_version; /* high part of timestamp and version */
370#define AFS_UUID_TO_UNIX_TIME 0x01b21dd213814000 370#define AFS_UUID_TO_UNIX_TIME 0x01b21dd213814000ULL
371#define AFS_UUID_TIMEHI_MASK 0x0fff 371#define AFS_UUID_TIMEHI_MASK 0x0fff
372#define AFS_UUID_VERSION_TIME 0x1000 /* time-based UUID */ 372#define AFS_UUID_VERSION_TIME 0x1000 /* time-based UUID */
373#define AFS_UUID_VERSION_NAME 0x3000 /* name-based UUID */ 373#define AFS_UUID_VERSION_NAME 0x3000 /* name-based UUID */
diff --git a/fs/afs/rxrpc.c b/fs/afs/rxrpc.c
index e7b047328a39..222c1a3abbb8 100644
--- a/fs/afs/rxrpc.c
+++ b/fs/afs/rxrpc.c
@@ -772,7 +772,7 @@ int afs_extract_data(struct afs_call *call, struct sk_buff *skb,
772 772
773 if (call->offset < count) { 773 if (call->offset < count) {
774 if (last) { 774 if (last) {
775 _leave(" = -EBADMSG [%d < %lu]", call->offset, count); 775 _leave(" = -EBADMSG [%d < %zu]", call->offset, count);
776 return -EBADMSG; 776 return -EBADMSG;
777 } 777 }
778 _leave(" = -EAGAIN"); 778 _leave(" = -EAGAIN");
diff --git a/fs/afs/use-rtnetlink.c b/fs/afs/use-rtnetlink.c
index 82f0daa28970..f8991c700e02 100644
--- a/fs/afs/use-rtnetlink.c
+++ b/fs/afs/use-rtnetlink.c
@@ -243,7 +243,7 @@ static int afs_read_rtm(struct afs_rtm_desc *desc)
243 desc->datalen = kernel_recvmsg(desc->nlsock, &msg, iov, 1, 243 desc->datalen = kernel_recvmsg(desc->nlsock, &msg, iov, 1,
244 desc->datamax, 0); 244 desc->datamax, 0);
245 if (desc->datalen < 0) { 245 if (desc->datalen < 0) {
246 _leave(" = %ld [recv]", desc->datalen); 246 _leave(" = %zd [recv]", desc->datalen);
247 return desc->datalen; 247 return desc->datalen;
248 } 248 }
249 249
diff --git a/net/rxrpc/Kconfig b/net/rxrpc/Kconfig
index d72380e304ae..8750f6da6bc7 100644
--- a/net/rxrpc/Kconfig
+++ b/net/rxrpc/Kconfig
@@ -30,6 +30,11 @@ config AF_RXRPC_DEBUG
30config RXKAD 30config RXKAD
31 tristate "RxRPC Kerberos security" 31 tristate "RxRPC Kerberos security"
32 depends on AF_RXRPC && KEYS 32 depends on AF_RXRPC && KEYS
33 select CRYPTO
34 select CRYPTO_MANAGER
35 select CRYPTO_BLKCIPHER
36 select CRYPTO_PCBC
37 select CRYPTO_FCRYPT
33 help 38 help
34 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC 39 Provide kerberos 4 and AFS kaserver security handling for AF_RXRPC
35 through the use of the key retention service. 40 through the use of the key retention service.
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c
index 1eaf529efac1..5ec705144e10 100644
--- a/net/rxrpc/rxkad.c
+++ b/net/rxrpc/rxkad.c
@@ -18,6 +18,7 @@
18#include <linux/ctype.h> 18#include <linux/ctype.h>
19#include <net/sock.h> 19#include <net/sock.h>
20#include <net/af_rxrpc.h> 20#include <net/af_rxrpc.h>
21#define rxrpc_debug rxkad_debug
21#include "ar-internal.h" 22#include "ar-internal.h"
22 23
23#define RXKAD_VERSION 2 24#define RXKAD_VERSION 2