aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-02-07 03:15:26 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-07 11:42:26 -0500
commite231c2ee64eb1c5cd3c63c31da9dac7d888dcf7f (patch)
treed4b17ef65960594681397a3acac02c2d248200b5 /crypto
parentd1bc8e95445224276d7896b8b08cbb0b28a0ca80 (diff)
Convert ERR_PTR(PTR_ERR(p)) instances to ERR_CAST(p)
Convert instances of ERR_PTR(PTR_ERR(p)) to ERR_CAST(p) using: perl -spi -e 's/ERR_PTR[(]PTR_ERR[(](.*)[)][)]/ERR_CAST(\1)/' `grep -rl 'ERR_PTR[(]*PTR_ERR' fs crypto net security` Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cbc.c2
-rw-r--r--crypto/cryptd.c4
-rw-r--r--crypto/ecb.c2
-rw-r--r--crypto/hmac.c2
-rw-r--r--crypto/lrw.c2
-rw-r--r--crypto/pcbc.c2
-rw-r--r--crypto/xcbc.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/crypto/cbc.c b/crypto/cbc.c
index 6affff882cf8..61ac42e1e32b 100644
--- a/crypto/cbc.c
+++ b/crypto/cbc.c
@@ -224,7 +224,7 @@ static struct crypto_instance *crypto_cbc_alloc(struct rtattr **tb)
224 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, 224 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
225 CRYPTO_ALG_TYPE_MASK); 225 CRYPTO_ALG_TYPE_MASK);
226 if (IS_ERR(alg)) 226 if (IS_ERR(alg))
227 return ERR_PTR(PTR_ERR(alg)); 227 return ERR_CAST(alg);
228 228
229 inst = ERR_PTR(-EINVAL); 229 inst = ERR_PTR(-EINVAL);
230 if (!is_power_of_2(alg->cra_blocksize)) 230 if (!is_power_of_2(alg->cra_blocksize))
diff --git a/crypto/cryptd.c b/crypto/cryptd.c
index 074298f2f8e3..250425263e00 100644
--- a/crypto/cryptd.c
+++ b/crypto/cryptd.c
@@ -230,7 +230,7 @@ static struct crypto_instance *cryptd_alloc_blkcipher(
230 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_BLKCIPHER, 230 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_BLKCIPHER,
231 CRYPTO_ALG_TYPE_MASK); 231 CRYPTO_ALG_TYPE_MASK);
232 if (IS_ERR(alg)) 232 if (IS_ERR(alg))
233 return ERR_PTR(PTR_ERR(alg)); 233 return ERR_CAST(alg);
234 234
235 inst = cryptd_alloc_instance(alg, state); 235 inst = cryptd_alloc_instance(alg, state);
236 if (IS_ERR(inst)) 236 if (IS_ERR(inst))
@@ -267,7 +267,7 @@ static struct crypto_instance *cryptd_alloc(struct rtattr **tb)
267 267
268 algt = crypto_get_attr_type(tb); 268 algt = crypto_get_attr_type(tb);
269 if (IS_ERR(algt)) 269 if (IS_ERR(algt))
270 return ERR_PTR(PTR_ERR(algt)); 270 return ERR_CAST(algt);
271 271
272 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) { 272 switch (algt->type & algt->mask & CRYPTO_ALG_TYPE_MASK) {
273 case CRYPTO_ALG_TYPE_BLKCIPHER: 273 case CRYPTO_ALG_TYPE_BLKCIPHER:
diff --git a/crypto/ecb.c b/crypto/ecb.c
index 6310387a872c..a46838e98a71 100644
--- a/crypto/ecb.c
+++ b/crypto/ecb.c
@@ -128,7 +128,7 @@ static struct crypto_instance *crypto_ecb_alloc(struct rtattr **tb)
128 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, 128 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
129 CRYPTO_ALG_TYPE_MASK); 129 CRYPTO_ALG_TYPE_MASK);
130 if (IS_ERR(alg)) 130 if (IS_ERR(alg))
131 return ERR_PTR(PTR_ERR(alg)); 131 return ERR_CAST(alg);
132 132
133 inst = crypto_alloc_instance("ecb", alg); 133 inst = crypto_alloc_instance("ecb", alg);
134 if (IS_ERR(inst)) 134 if (IS_ERR(inst))
diff --git a/crypto/hmac.c b/crypto/hmac.c
index a1d016a50e7d..b60c3c7aa320 100644
--- a/crypto/hmac.c
+++ b/crypto/hmac.c
@@ -213,7 +213,7 @@ static struct crypto_instance *hmac_alloc(struct rtattr **tb)
213 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_HASH, 213 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_HASH,
214 CRYPTO_ALG_TYPE_HASH_MASK); 214 CRYPTO_ALG_TYPE_HASH_MASK);
215 if (IS_ERR(alg)) 215 if (IS_ERR(alg))
216 return ERR_PTR(PTR_ERR(alg)); 216 return ERR_CAST(alg);
217 217
218 inst = crypto_alloc_instance("hmac", alg); 218 inst = crypto_alloc_instance("hmac", alg);
219 if (IS_ERR(inst)) 219 if (IS_ERR(inst))
diff --git a/crypto/lrw.c b/crypto/lrw.c
index 621095db28b3..9d52e580d10a 100644
--- a/crypto/lrw.c
+++ b/crypto/lrw.c
@@ -241,7 +241,7 @@ static struct crypto_instance *alloc(struct rtattr **tb)
241 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, 241 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
242 CRYPTO_ALG_TYPE_MASK); 242 CRYPTO_ALG_TYPE_MASK);
243 if (IS_ERR(alg)) 243 if (IS_ERR(alg))
244 return ERR_PTR(PTR_ERR(alg)); 244 return ERR_CAST(alg);
245 245
246 inst = crypto_alloc_instance("lrw", alg); 246 inst = crypto_alloc_instance("lrw", alg);
247 if (IS_ERR(inst)) 247 if (IS_ERR(inst))
diff --git a/crypto/pcbc.c b/crypto/pcbc.c
index fe704775f88f..d1b8bdfb5855 100644
--- a/crypto/pcbc.c
+++ b/crypto/pcbc.c
@@ -234,7 +234,7 @@ static struct crypto_instance *crypto_pcbc_alloc(struct rtattr **tb)
234 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, 234 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
235 CRYPTO_ALG_TYPE_MASK); 235 CRYPTO_ALG_TYPE_MASK);
236 if (IS_ERR(alg)) 236 if (IS_ERR(alg))
237 return ERR_PTR(PTR_ERR(alg)); 237 return ERR_CAST(alg);
238 238
239 inst = crypto_alloc_instance("pcbc", alg); 239 inst = crypto_alloc_instance("pcbc", alg);
240 if (IS_ERR(inst)) 240 if (IS_ERR(inst))
diff --git a/crypto/xcbc.c b/crypto/xcbc.c
index a82959df678c..86727403e5ab 100644
--- a/crypto/xcbc.c
+++ b/crypto/xcbc.c
@@ -301,7 +301,7 @@ static struct crypto_instance *xcbc_alloc(struct rtattr **tb)
301 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER, 301 alg = crypto_get_attr_alg(tb, CRYPTO_ALG_TYPE_CIPHER,
302 CRYPTO_ALG_TYPE_MASK); 302 CRYPTO_ALG_TYPE_MASK);
303 if (IS_ERR(alg)) 303 if (IS_ERR(alg))
304 return ERR_PTR(PTR_ERR(alg)); 304 return ERR_CAST(alg);
305 305
306 switch(alg->cra_blocksize) { 306 switch(alg->cra_blocksize) {
307 case 16: 307 case 16: