Merge tag 'regulator-3.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/brooni...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / powerpc / lib / checksum_wrappers_64.c
blob08e3a3356c402f02145ef3f3c55a9627fb2cda1c
1 /*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 * Copyright (C) IBM Corporation, 2010
18 * Author: Anton Blanchard <anton@au.ibm.com>
20 #include <linux/export.h>
21 #include <linux/compiler.h>
22 #include <linux/types.h>
23 #include <asm/checksum.h>
24 #include <asm/uaccess.h>
26 __wsum csum_and_copy_from_user(const void __user *src, void *dst,
27 int len, __wsum sum, int *err_ptr)
29 unsigned int csum;
31 might_sleep();
33 *err_ptr = 0;
35 if (!len) {
36 csum = 0;
37 goto out;
40 if (unlikely((len < 0) || !access_ok(VERIFY_READ, src, len))) {
41 *err_ptr = -EFAULT;
42 csum = (__force unsigned int)sum;
43 goto out;
46 csum = csum_partial_copy_generic((void __force *)src, dst,
47 len, sum, err_ptr, NULL);
49 if (unlikely(*err_ptr)) {
50 int missing = __copy_from_user(dst, src, len);
52 if (missing) {
53 memset(dst + len - missing, 0, missing);
54 *err_ptr = -EFAULT;
55 } else {
56 *err_ptr = 0;
59 csum = csum_partial(dst, len, sum);
62 out:
63 return (__force __wsum)csum;
65 EXPORT_SYMBOL(csum_and_copy_from_user);
67 __wsum csum_and_copy_to_user(const void *src, void __user *dst, int len,
68 __wsum sum, int *err_ptr)
70 unsigned int csum;
72 might_sleep();
74 *err_ptr = 0;
76 if (!len) {
77 csum = 0;
78 goto out;
81 if (unlikely((len < 0) || !access_ok(VERIFY_WRITE, dst, len))) {
82 *err_ptr = -EFAULT;
83 csum = -1; /* invalid checksum */
84 goto out;
87 csum = csum_partial_copy_generic(src, (void __force *)dst,
88 len, sum, NULL, err_ptr);
90 if (unlikely(*err_ptr)) {
91 csum = csum_partial(src, len, sum);
93 if (copy_to_user(dst, src, len)) {
94 *err_ptr = -EFAULT;
95 csum = -1; /* invalid checksum */
99 out:
100 return (__force __wsum)csum;
102 EXPORT_SYMBOL(csum_and_copy_to_user);