Branch data Line data Source code
1 : : #include <linux/dcache.h> 2 : : #include "internal.h" 3 : : 4 : 7535 : unsigned name_to_int(const struct qstr *qstr) 5 : : { 6 : 7535 : const char *name = qstr->name; 7 : 7535 : int len = qstr->len; 8 : 7535 : unsigned n = 0; 9 : : 10 [ + + - + ]: 7535 : if (len > 1 && *name == '0') 11 : 0 : goto out; 12 : 13243 : do { 13 : 13243 : unsigned c = *name++ - '0'; 14 [ + + ]: 13243 : if (c > 9) 15 : 3220 : goto out; 16 [ - + ]: 10023 : if (n >= (~0U-9)/10) 17 : 0 : goto out; 18 : 10023 : n *= 10; 19 : 10023 : n += c; 20 [ + + ]: 10023 : } while (--len > 0); 21 : : return n; 22 : 7535 : out: 23 : : return ~0U; 24 : : }