diff options
Diffstat (limited to 'include/linux/lockd/lockd.h')
-rw-r--r-- | include/linux/lockd/lockd.h | 36 |
1 files changed, 32 insertions, 4 deletions
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h index b1dfa0b1d1bc..ec8af115843d 100644 --- a/include/linux/lockd/lockd.h +++ b/include/linux/lockd/lockd.h | |||
@@ -12,6 +12,8 @@ | |||
12 | #ifdef __KERNEL__ | 12 | #ifdef __KERNEL__ |
13 | 13 | ||
14 | #include <linux/in.h> | 14 | #include <linux/in.h> |
15 | #include <linux/in6.h> | ||
16 | #include <net/ipv6.h> | ||
15 | #include <linux/fs.h> | 17 | #include <linux/fs.h> |
16 | #include <linux/kref.h> | 18 | #include <linux/kref.h> |
17 | #include <linux/utsname.h> | 19 | #include <linux/utsname.h> |
@@ -272,13 +274,39 @@ static inline struct inode *nlmsvc_file_inode(struct nlm_file *file) | |||
272 | return file->f_file->f_path.dentry->d_inode; | 274 | return file->f_file->f_path.dentry->d_inode; |
273 | } | 275 | } |
274 | 276 | ||
277 | static inline int __nlm_cmp_addr4(const struct sockaddr *sap1, | ||
278 | const struct sockaddr *sap2) | ||
279 | { | ||
280 | const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sap1; | ||
281 | const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sap2; | ||
282 | return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr; | ||
283 | } | ||
284 | |||
285 | static inline int __nlm_cmp_addr6(const struct sockaddr *sap1, | ||
286 | const struct sockaddr *sap2) | ||
287 | { | ||
288 | const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sap1; | ||
289 | const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sap2; | ||
290 | return ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr); | ||
291 | } | ||
292 | |||
275 | /* | 293 | /* |
276 | * Compare two host addresses (needs modifying for ipv6) | 294 | * Compare two host addresses |
295 | * | ||
296 | * Return TRUE if the addresses are the same; otherwise FALSE. | ||
277 | */ | 297 | */ |
278 | static inline int nlm_cmp_addr(const struct sockaddr_in *sin1, | 298 | static inline int nlm_cmp_addr(const struct sockaddr *sap1, |
279 | const struct sockaddr_in *sin2) | 299 | const struct sockaddr *sap2) |
280 | { | 300 | { |
281 | return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr; | 301 | if (sap1->sa_family == sap2->sa_family) { |
302 | switch (sap1->sa_family) { | ||
303 | case AF_INET: | ||
304 | return __nlm_cmp_addr4(sap1, sap2); | ||
305 | case AF_INET6: | ||
306 | return __nlm_cmp_addr6(sap1, sap2); | ||
307 | } | ||
308 | } | ||
309 | return 0; | ||
282 | } | 310 | } |
283 | 311 | ||
284 | /* | 312 | /* |