Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1678972
| From | Jerry Hoemann <jerry.hoemann@hpe.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v4 6/6] nfit allow override of root dsm mask |
| Date | 2017-06-30 18:20 +0200 |
| Message-ID | <tY6Of-7ID-41@gated-at.bofh.it> (permalink) |
| References | <tY6Oe-7ID-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Have module parameter override_dsm_mask override the dsm_mask for root calls like it does for non-root dsm calls. Signed-off-by: Jerry Hoemann <jerry.hoemann@hpe.com> --- drivers/acpi/nfit/core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/acpi/nfit/core.c b/drivers/acpi/nfit/core.c index 4e24d69..87acaf2 100644 --- a/drivers/acpi/nfit/core.c +++ b/drivers/acpi/nfit/core.c @@ -1641,6 +1641,8 @@ static void acpi_nfit_init_dsms(struct acpi_nfit_desc *acpi_desc) set_bit(ND_CMD_CALL, &nd_desc->cmd_mask); dsm_mask = 0x3bf; + if (override_dsm_mask) + dsm_mask = override_dsm_mask; for_each_set_bit(i, &dsm_mask, BITS_PER_LONG) if (acpi_check_dsm(adev->handle, uuid, 1, 1ULL << i)) set_bit(i, &nd_desc->bus_dsm_mask); -- 1.8.5.6
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v3 0/7] Enable DSM pass thru for root functions Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-06-30 18:20 +0200
[PATCH v4 5/6] libnvdimm: New ACPI 6.2 DSM functions Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-06-30 18:20 +0200
[PATCH v4 6/6] nfit allow override of root dsm mask Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-06-30 18:20 +0200
Re: [PATCH v4 6/6] nfit allow override of root dsm mask Dan Williams <dan.j.williams@intel.com> - 2017-07-01 06:00 +0200
[PATCH v4 4/6] acpi, nfit: Show bus_dsm_mask in sysfs Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-06-30 18:20 +0200
[PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-06-30 18:20 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Dan Williams <dan.j.williams@intel.com> - 2017-07-01 06:00 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-07-01 22:00 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Dan Williams <dan.j.williams@intel.com> - 2017-07-01 22:10 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Dan Williams <dan.j.williams@intel.com> - 2017-07-01 22:20 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Jerry Hoemann <jerry.hoemann@hpe.com> - 2017-07-01 22:40 +0200
Re: [PATCH v4 3/6] libnvdimm, acpi, nfit: Add bus level dsm mask for pass thru. Dan Williams <dan.j.williams@intel.com> - 2017-07-01 22:50 +0200
csiph-web