• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/edac/

Lines Matching defs:error_found

356 			u32 sec1_add, u16 sec1_syndrome, int *error_found,
359 *error_found = 1;
409 u32 ded_add, u32 scrb_add, int *error_found,
412 *error_found = 1;
419 int *error_found, int handle_error)
421 *error_found = 1;
450 u32 retry_add, int *error_found,
453 *error_found = 1;
460 int *error_found, int handle_error)
462 *error_found = 1;
504 static inline void global_error(int fatal, u32 errors, int *error_found,
507 *error_found = 1;
531 static inline void hub_error(int fatal, u8 errors, int *error_found,
534 *error_found = 1;
588 static inline void nsi_error(int fatal, u32 errors, int *error_found,
591 *error_found = 1;
615 static inline void membuf_error(u8 errors, int *error_found, int handle_error)
617 *error_found = 1;
646 static inline void sysbus_error(int fatal, u32 errors, int *error_found,
649 *error_found = 1;
656 int *error_found, int handle_error)
668 hub_error(1, stat8 & 0x2b, error_found, handle_error);
671 hub_error(0, stat8 & 0x54, error_found, handle_error);
681 hub_error(1, stat8 & 0x2b, error_found, handle_error);
684 hub_error(0, stat8 & 0x54, error_found, handle_error);
689 int *error_found, int handle_error)
696 nsi_error(1, stat32 & NSI_FATAL_MASK, error_found,
699 nsi_error(0, stat32 & NSI_NON_FATAL_MASK, error_found,
705 nsi_error(1, stat32 & NSI_FATAL_MASK, error_found,
708 nsi_error(0, stat32 & NSI_NON_FATAL_MASK, error_found,
714 int *error_found, int handle_error)
728 sysbus_error(1, stat32 & 0x087, error_found, handle_error);
731 sysbus_error(0, stat32 & 0x378, error_found, handle_error);
734 sysbus_error(1, error32 & 0x087, error_found, handle_error);
737 sysbus_error(0, error32 & 0x378, error_found, handle_error);
741 int *error_found, int handle_error)
749 membuf_error(stat8, error_found, handle_error);
756 membuf_error(stat8, error_found, handle_error);
761 struct e752x_error_info *info, int *error_found,
772 info->dram_sec1_syndrome, error_found, handle_error);
776 info->dram_sec2_syndrome, error_found, handle_error);
779 process_ue_no_info_wr(mci, error_found, handle_error);
782 process_ue_no_info_wr(mci, error_found, handle_error);
786 error_found, handle_error);
790 error_found, handle_error);
793 process_threshold_ce(mci, error_one, error_found, handle_error);
796 process_threshold_ce(mci, error_next, error_found,
801 info->dram_scrb_add, error_found, handle_error);
805 info->dram_scrb_add, error_found, handle_error);
920 int error_found;
922 error_found = 0;
927 global_error(1, error32, &error_found, handle_errors);
930 global_error(0, stat32, &error_found, handle_errors);
936 global_error(1, error32, &error_found, handle_errors);
939 global_error(0, stat32, &error_found, handle_errors);
941 e752x_check_hub_interface(info, &error_found, handle_errors);
942 e752x_check_ns_interface(info, &error_found, handle_errors);
943 e752x_check_sysbus(info, &error_found, handle_errors);
944 e752x_check_membuf(info, &error_found, handle_errors);
945 e752x_check_dram(mci, info, &error_found, handle_errors);
946 return error_found;