-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lib: Pulling in various updates made to opensea-libs
Updates include memory leak fixes, code cleanup to reduce possible bugs in common boiler-plate code, fixes to reading mdoe pages with mode sense 6 and interpretation of the output fields. Signed-off-by: Tyler Erickson <tyler.erickson@seagate.com>
- Loading branch information
1 parent
b9df0f6
commit 5fced2c
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule opensea-common
updated
21 files
+16 −0 | include/bit_manip.h | |
+18 −10 | include/code_attributes.h | |
+1 −1 | include/common_types.h | |
+8 −0 | include/io_utils.h | |
+14 −8 | include/memory_safety.h | |
+95 −0 | include/predef_env_detect.h | |
+1 −0 | include/secure_file.h | |
+1 −6 | include/string_utils.h | |
+295 −152 | src/bit_manip.c | |
+4 −27 | src/env_detect.c | |
+1 −1 | src/error_translation.c | |
+71 −1 | src/io_utils.c | |
+2 −4 | src/memory_safety.c | |
+1 −1 | src/posix_env_detect.c | |
+10 −7 | src/posix_secure_file.c | |
+9 −11 | src/secure_file.c | |
+2 −3 | src/secured_env_vars.c | |
+2 −2 | src/time_utils.c | |
+6 −4 | src/type_conversion.c | |
+6 −6 | src/windows_secure_file.c | |
+1 −1 | src/windows_version_detect.c |
Submodule opensea-operations
updated
19 files
+3 −1 | include/sector_repair.h | |
+18 −16 | src/defect.c | |
+4 −4 | src/depopulate.c | |
+2 −2 | src/device_statistics.c | |
+108 −76 | src/drive_info.c | |
+2 −2 | src/dst.c | |
+8 −8 | src/firmware_download.c | |
+13 −11 | src/format.c | |
+16 −14 | src/logs.c | |
+5 −5 | src/nvme_operations.c | |
+33 −26 | src/operations.c | |
+8 −8 | src/partition_info.c | |
+23 −15 | src/power_control.c | |
+6 −5 | src/reservations.c | |
+7 −6 | src/sanitize.c | |
+3 −2 | src/sata_phy.c | |
+5 −4 | src/seagate_operations.c | |
+2 −2 | src/sector_repair.c | |
+31 −31 | src/smart.c |
Submodule opensea-transport
updated
26 files
+761 −1 | include/ata_helper.h | |
+12 −5 | include/ata_helper_func.h | |
+19 −8 | include/scsi_helper.h | |
+1 −1 | include/scsi_helper_func.h | |
+6 −6 | src/aix_helper.c | |
+1 −1 | src/asmedia_nvme_helper.c | |
+471 −2,135 | src/ata_cmds.c | |
+5 −5 | src/ata_helper.c | |
+146 −712 | src/ata_legacy_cmds.c | |
+7 −7 | src/cam_helper.c | |
+2 −3 | src/ciss_helper.c | |
+2 −3 | src/cmds.c | |
+5 −5 | src/common_public.c | |
+23 −58 | src/csmi_helper.c | |
+3 −3 | src/intel_rst_helper.c | |
+12 −12 | src/nvme_cmds.c | |
+6 −6 | src/nvme_helper.c | |
+74 −69 | src/sat_helper.c | |
+5 −5 | src/scsi_cmds.c | |
+72 −375 | src/scsi_helper.c | |
+28 −29 | src/sg_helper.c | |
+14 −13 | src/sntl_helper.c | |
+5 −3 | src/uefi_helper.c | |
+3 −3 | src/uscsi_helper.c | |
+3 −3 | src/vm_helper.c | |
+112 −106 | src/win_helper.c |