Lines Matching refs:error
77 "Enables firmware error code logging, default :1 high-severity"
512 * 3. If there are any error interrupts
647 * going to reset it soon. This enables IOA to preserv persistent error
812 * pmcraid_erp_done - Process completion of SCSI error response from device
1391 * 0 if success, error value in case of any failure.
1453 pmcraid_info("error (%x) sending aen event message\n", result);
1462 * 0 if success, error value in case of any failure
1477 * 0 if success, error value in case of any failure
1493 * 0 if success, error value in case of any failure
1655 * pmcraid_get_error_info - return error string for an ioasc
1683 /* log the error string */
1691 * pmcraid_handle_error_log - Handle a config change (error log) from the IOA
2101 * there are any error responses then IOA may require
2271 * ISR/tasklet during error interrupts including IOA unit check. If reset
2314 * error response handlers and interrupt handlers).
2458 /* request sense might be called as part of error response processing
2469 * pmcraid_cancel_all - cancel all outstanding IOARCBs as part of error recovery
2579 * 0 it caller can complete the request, otherwise 1 where in error
2644 /* if check_condition is not active return with error otherwise
2803 * caller need not worry about freeing command block as error handler
2835 * This function is invoked by tasklet/mid-layer error handler to completing
3479 * 0 on success, non-zero error code on failure
3538 * 0 on success, non-zero error code on failure
3566 * 0 on success, non-zero error code on failure
3602 /* If adapter is not in operational state, return error */
3836 * 0 in case of success, otherwise appropriate error code
3868 * negetive error code if there are access issues, otherwise zero.
3982 * pmcraid_show_log_level - Display adapter's error logging level
4001 * pmcraid_store_log_level - Change the adapter's error logging level
4162 /* Any error interrupts including unit_check,
4171 pmcraid_err("ISR: error interrupts: %x \
4236 /* Any error interrupts including unit_check, initiate IOA reset.
4247 pmcraid_err("ISR: error interrupts: %x initiating reset\n",
4483 * 0 on success, non-zero error code otherwise.
5109 /* Work-queue (Shared) for deferred processing error handling */
5168 int error;
5174 error = cdev_add(&pinstance->cdev, MKDEV(pmcraid_major, minor), 1);
5176 if (error)
5181 return error;
5643 * returns non-zero error code in case of any failure
5799 pmcraid_err("couldn't create mgmt interface, error: %x\n",
5855 int error;
5860 error = alloc_chrdev_region(&dev, 0,
5864 if (error) {
5873 error = PTR_ERR(pmcraid_class);
5874 pmcraid_err("failed to register with sysfs, error = %x\n",
5875 error);
5879 error = pmcraid_netlink_init();
5881 if (error) {
5886 error = pci_register_driver(&pmcraid_driver);
5888 if (error == 0)
5891 pmcraid_err("failed to register pmcraid driver, error = %x\n",
5892 error);
5900 return error;