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