Fix some common typos in source code comments- s/struture/structure/- s/structre/structure/(cherry picked from commit 17db4b52fb41aeabeb945c68c1b5edd4db4eac31)
remove extraneous double ;s in sys/
Miscellaneous typo fixesSubmitted by: Gordon Bergling <gbergling_gmail.com>Differential Revision: https://reviews.freebsd.org/D23453
Fix a scribbler in the PMS driver.The ESGL bit was left uninitialized when executing the REPORT LUNSioctl. This could allow a zeroed data buffer to be treated as ascatter/gather list. The firmwar
Fix a scribbler in the PMS driver.The ESGL bit was left uninitialized when executing the REPORT LUNSioctl. This could allow a zeroed data buffer to be treated as ascatter/gather list. The firmware would eventually walk past the endof the data buffer, potentially find what looked like a validaddress/length pair, and write the result to semi-random memory.Obtained from: Dell EMC IsilonMFC after: 1 weekSponsored by: Dell EMC IsilonDifferential Revision: https://reviews.freebsd.org/D19398
show more ...
CID 1332000: Logically dead code in sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.cA pointer is first tested for NULL. If non-NULL, another pointer isset equal to the first. The second pointer is
CID 1332000: Logically dead code in sys/dev/pms/RefTisa/tisa/sassata/sas/ini/itdio.cA pointer is first tested for NULL. If non-NULL, another pointer isset equal to the first. The second pointer is then checked for NULLand an error path taken if so. This second test and the associatedpath is dead code as the pointer value, having just been checked forNULL, cannot be NULL at this point. Remove the dead code.Reported by: CoverityReviewed by: daniel.william.ryan_gmail.com, vangyzenSponsored by: Dell EMC IsilonDifferential Revision: https://reviews.freebsd.org/D19165
sys/dev: Replace zero with NULL for pointers.Makes things easier to read, plus architectures may set NULL to somethingdifferent than zero.Found with: devel/coccinelleMFC after: 3 weeks
Don't repeat the the word 'the'(one manual change to fix grammar)Confirmed With: dbApproved by: secteam (not really, but this is a comment typo fix)
Driver 'pmspcv' added. Supports PMC-Sierra PM8001/8081/8088/8089/8074/8076/8077 SAS/SATA HBA Controllers.