fixup_kernel.sh: allow larger values in rw_verify_area()
commit1c6081e0b4000e1c84b578840fe6d355956ef058
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 10 Dec 2014 13:05:47 +0000 (10 16:05 +0300)
committerDan Carpenter <dan.carpenter@oracle.com>
Wed, 10 Dec 2014 13:05:47 +0000 (10 16:05 +0300)
treebda327a3b1c4e9e2054b08fdba5f7fa00f7e2ce3
parent9ef5c7a9c53387de634fa1ecc43e6e3efac49a65
fixup_kernel.sh: allow larger values in rw_verify_area()

I chose these values so that pos + count wouldn't overflow, so I just
randomly chose some largish values.  It turns out those values weren't
large enough.  The netxen_sysfs_validate_crb() function insists that the
offset be within a certain range that is outside the 0-1000000 range and
Smatch gets confused that it's not possible to get a successful return.

Anyway, 1000000000 + 1000000000 won't overflow the ints so it's ok to use
that here.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
smatch_data/db/fixup_kernel.sh