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