Skip to content
Commit 2e2173df authored by Stefan Richter's avatar Stefan Richter
Browse files

ieee1394: eth1394: clean up fragment_overlap



offset > fi->offset + fi->len - 1  ==  !(offset < fi->offset + fi->len)
offset + len - 1 < fi->offset      ==  !(offset + len > fi->offset)
!(A || B)  ==  (!A && !B)

Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent 01590d20
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment