Are parities done automaticly by the CPU or should they be built-in to the kernel to ensure all messages are correct?
Within a computer, signals are stable enough not to get corrupted in any way (imagine your code randomly changing!) However media external to the computer may not necessarily be. CDs can be scratched, floppies dislike magnets, network cables can pick up noise. What you have to do about these things depends on how they work. Some may not give you corrupt data at all, some will check and correct the data for you, and only for the remaining set will you have to check the data's integrity yourself.
I am also interested in if anyone knows how to to find if there is an error with the parity bits? all we have touched on is error checking when the error is in the actual data rather than the parities, mainly because there is a higher possibility of that to get an error.
The problem with such scheme is that with one parity unit you can never detect the location of the error - you can always change exactly one of the units in the set at will to make the set appear correct again.
Also, if you know the location of the error, you can attempt to fix it as well, making anything of that sort no longer error checking, but rather error correction.
Try the following scheme with parity bits (one of the simplest forms of error correction):
Code: Select all
0 1 1 0 1 1 0 0 | 0
1 0 1 0 1 0 0 1 | 0
1 1 1 0 0 0 1 1 | 1
----------------+--
0 0 1 0 0 1 1 0 | 1
Now if there's exactly one bit off, you can locate it:
Code: Select all
0 1 1 0 1 1 0 0 | 0 <- ok
1 0 1 0 1 0 0 1 | 0 <- ok
1 1 1 0 0 0 1 1 | 1 <- ok
----------------+--
0 0 1 0 1 1 1 0 | 1 <- wrong
v v v v X v v v v
By checking each row and column, you can detect which lines are wrong, and therefore, where the error must lie. In this case, one of the parity bits was accidentally set:
Code: Select all
| | <- ok
| | <- ok
v | <- ok
------>(1)<-----|-- <- wrong
v v v v X v v v v
Note that when there are too many errors, you can not recover, or even find the wrong answer:
Code: Select all
0 1 1 0 1 1 0 0 | 0 <- ok
1 0 1 0 1 0 0 1 | 0 <- ok
1 1 1 1!1!0 1 1 | 1 <- ok
----------------+--
0 0 1 1!0 1 1 0 | 1 <- wrong
v v v v X v v v v
Of course, there are many alternative, more complex, and more effective algorithms around.