K 10 svn:author V 8 mckusick K 8 svn:date V 27 2013-06-24T23:41:16.944873Z K 7 svn:log V 1157 MFC of 250891, 250892, 250894, 250895, 250897, and 250901 MFC 250891: Properly spell sentinel (not sintenel or sentinal). No functional changes. Spotted by: kib MFC 250892: Remove a bogus check for a NULL buffer pointer. Add a KASSERT that it is not NULL. Found by: Coverity Scan, CID 1009114 Reviewed by: kib MFC 250894: Null a pointer after it is freed so that when it is returned the return value is NULL. Based on the returned flags, the return value should never be inspected in the case where NULL is returned, but it is good coding practice not to return a pointer to freed memory. Found by: Coverity Scan, CID 1006096 Reviewed by: kib MFC 250895: Add missing 28th element to softdep types name array. Found by: Coverity Scan, CID 1007621 Reviewed by: kib MFC 250897: Add missing buffer releases (brelse) after bread calls that return an error. One could argue that returning a buffer even when it is not valid is incorrect, but bread has always returned a buffer valid or not. Reviewed by: kib MFC 250901: Properly spell sentinel (missed in 250891) No functional changes. Spotted by: Navdeep Parhar and Alexey Dokuchaev END