Lines Matching defs:options
8967 u32 *options;
8971 /* Don't bother trying to set diag options if locked up */
8975 options = kzalloc(sizeof(*options), GFP_KERNEL);
8976 if (!options)
8981 /* first, get the current diag options settings */
8982 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8992 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
8994 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
9004 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
9013 if (*options & HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
9021 kfree(options);