Lines Matching defs:options
8946 u32 *options;
8950 /* Don't bother trying to set diag options if locked up */
8954 options = kzalloc(sizeof(*options), GFP_KERNEL);
8955 if (!options)
8960 /* first, get the current diag options settings */
8961 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8971 *options |= HPSA_DIAG_OPTS_DISABLE_RLD_CACHING;
8973 if (fill_cmd(c, BMIC_SET_DIAG_OPTIONS, h, options, 4, 0,
8983 if (fill_cmd(c, BMIC_SENSE_DIAG_OPTIONS, h, options, 4, 0,
8992 if (*options & HPSA_DIAG_OPTS_DISABLE_RLD_CACHING)
9000 kfree(options);