* [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw
[not found] <201712171200.w6OAf5Jm%fengguang.wu@intel.com>
@ 2017-12-18 8:37 ` Christian Borntraeger
2017-12-18 8:49 ` Cornelia Huck
2017-12-18 8:52 ` Thomas Huth
0 siblings, 2 replies; 4+ messages in thread
From: Christian Borntraeger @ 2017-12-18 8:37 UTC (permalink / raw)
To: Halil Pasic, Cornelia Huck
Cc: linux-s390, virtualization, kvm, Thomas Huth, kbuild-all,
kbuild test robot, Christian Borntraeger
We need to disable the pm callbacks if CONFIG_PM is not set.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
---
Cornelia, you might want to squash this into the original commit.
drivers/s390/virtio/virtio_ccw.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
index 330b3fa3430a..985184ebda45 100644
--- a/drivers/s390/virtio/virtio_ccw.c
+++ b/drivers/s390/virtio/virtio_ccw.c
@@ -1315,6 +1315,7 @@ static struct ccw_device_id virtio_ids[] = {
{},
};
+#ifdef CONFIG_PM_SLEEP
static int virtio_ccw_freeze(struct ccw_device *cdev)
{
struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
@@ -1333,6 +1334,7 @@ static int virtio_ccw_restore(struct ccw_device *cdev)
return virtio_device_restore(&vcdev->vdev);
}
+#endif
static struct ccw_driver virtio_ccw_driver = {
.driver = {
@@ -1346,9 +1348,11 @@ static struct ccw_driver virtio_ccw_driver = {
.set_online = virtio_ccw_online,
.notify = virtio_ccw_cio_notify,
.int_class = IRQIO_VIR,
+#ifdef CONFIG_PM_SLEEP
.freeze = virtio_ccw_freeze,
.thaw = virtio_ccw_restore,
.restore = virtio_ccw_restore,
+#endif
};
static int __init pure_hex(char **cp, unsigned int *val, int min_digit,
--
2.13.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw
2017-12-18 8:37 ` [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw Christian Borntraeger
@ 2017-12-18 8:49 ` Cornelia Huck
2017-12-18 8:52 ` Thomas Huth
1 sibling, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2017-12-18 8:49 UTC (permalink / raw)
To: Christian Borntraeger
Cc: Halil Pasic, linux-s390, virtualization, kvm, Thomas Huth,
kbuild-all, kbuild test robot
On Mon, 18 Dec 2017 09:37:06 +0100
Christian Borntraeger <borntraeger@de.ibm.com> wrote:
> We need to disable the pm callbacks if CONFIG_PM is not set.
>
> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
> ---
> Cornelia, you might want to squash this into the original commit.
Thanks, will do.
>
> drivers/s390/virtio/virtio_ccw.c | 4 ++++
> 1 file changed, 4 insertions(+)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw
2017-12-18 8:37 ` [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw Christian Borntraeger
2017-12-18 8:49 ` Cornelia Huck
@ 2017-12-18 8:52 ` Thomas Huth
2017-12-18 8:59 ` Christian Borntraeger
1 sibling, 1 reply; 4+ messages in thread
From: Thomas Huth @ 2017-12-18 8:52 UTC (permalink / raw)
To: Christian Borntraeger, Halil Pasic, Cornelia Huck
Cc: linux-s390, virtualization, kvm, kbuild-all, kbuild test robot
On 18.12.2017 09:37, Christian Borntraeger wrote:
> We need to disable the pm callbacks if CONFIG_PM is not set.
>
> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
> ---
> Cornelia, you might want to squash this into the original commit.
>
> drivers/s390/virtio/virtio_ccw.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
> index 330b3fa3430a..985184ebda45 100644
> --- a/drivers/s390/virtio/virtio_ccw.c
> +++ b/drivers/s390/virtio/virtio_ccw.c
> @@ -1315,6 +1315,7 @@ static struct ccw_device_id virtio_ids[] = {
> {},
> };
>
> +#ifdef CONFIG_PM_SLEEP
> static int virtio_ccw_freeze(struct ccw_device *cdev)
> {
> struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
> @@ -1333,6 +1334,7 @@ static int virtio_ccw_restore(struct ccw_device *cdev)
>
> return virtio_device_restore(&vcdev->vdev);
> }
> +#endif
>
> static struct ccw_driver virtio_ccw_driver = {
> .driver = {
> @@ -1346,9 +1348,11 @@ static struct ccw_driver virtio_ccw_driver = {
> .set_online = virtio_ccw_online,
> .notify = virtio_ccw_cio_notify,
> .int_class = IRQIO_VIR,
> +#ifdef CONFIG_PM_SLEEP
> .freeze = virtio_ccw_freeze,
> .thaw = virtio_ccw_restore,
> .restore = virtio_ccw_restore,
> +#endif
> };
Some other drivers rather seem to test CONFIG_HIBERNATE_CALLBACKS ...
would that be a more appropriate config flag here?
Thomas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw
2017-12-18 8:52 ` Thomas Huth
@ 2017-12-18 8:59 ` Christian Borntraeger
0 siblings, 0 replies; 4+ messages in thread
From: Christian Borntraeger @ 2017-12-18 8:59 UTC (permalink / raw)
To: Thomas Huth, Halil Pasic, Cornelia Huck
Cc: linux-s390, virtualization, kvm, kbuild-all, kbuild test robot
On 12/18/2017 09:52 AM, Thomas Huth wrote:
> On 18.12.2017 09:37, Christian Borntraeger wrote:
>> We need to disable the pm callbacks if CONFIG_PM is not set.
>>
>> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
>> ---
>> Cornelia, you might want to squash this into the original commit.
>>
>> drivers/s390/virtio/virtio_ccw.c | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
>> index 330b3fa3430a..985184ebda45 100644
>> --- a/drivers/s390/virtio/virtio_ccw.c
>> +++ b/drivers/s390/virtio/virtio_ccw.c
>> @@ -1315,6 +1315,7 @@ static struct ccw_device_id virtio_ids[] = {
>> {},
>> };
>>
>> +#ifdef CONFIG_PM_SLEEP
>> static int virtio_ccw_freeze(struct ccw_device *cdev)
>> {
>> struct virtio_ccw_device *vcdev = dev_get_drvdata(&cdev->dev);
>> @@ -1333,6 +1334,7 @@ static int virtio_ccw_restore(struct ccw_device *cdev)
>>
>> return virtio_device_restore(&vcdev->vdev);
>> }
>> +#endif
>>
>> static struct ccw_driver virtio_ccw_driver = {
>> .driver = {
>> @@ -1346,9 +1348,11 @@ static struct ccw_driver virtio_ccw_driver = {
>> .set_online = virtio_ccw_online,
>> .notify = virtio_ccw_cio_notify,
>> .int_class = IRQIO_VIR,
>> +#ifdef CONFIG_PM_SLEEP
>> .freeze = virtio_ccw_freeze,
>> .thaw = virtio_ccw_restore,
>> .restore = virtio_ccw_restore,
>> +#endif
>> };
>
> Some other drivers rather seem to test CONFIG_HIBERNATE_CALLBACKS ...
> would that be a more appropriate config flag here?
The virtio code uses CONFIG_PM_SLEEP (and we call that code).
See
include/linux/virtio.h
c6716bae52f97 (Michael S. Tsirkin 2014-10-14 10:40:35 +1030 155) #ifdef CONFIG_PM_SLEEP
c6716bae52f97 (Michael S. Tsirkin 2014-10-14 10:40:35 +1030 156) int virtio_device_freeze(struct virtio_device *dev);
c6716bae52f97 (Michael S. Tsirkin 2014-10-14 10:40:35 +1030 157) int virtio_device_restore(struct virtio_device *dev);
c6716bae52f97 (Michael S. Tsirkin 2014-10-14 10:40:35 +1030 158) #endif
So I think CONFIG_PM_SLEEP is the best fit.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-12-18 8:59 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <201712171200.w6OAf5Jm%fengguang.wu@intel.com>
2017-12-18 8:37 ` [PATCH] virtio/s390: fixup for implement PM operations for virtio_ccw Christian Borntraeger
2017-12-18 8:49 ` Cornelia Huck
2017-12-18 8:52 ` Thomas Huth
2017-12-18 8:59 ` Christian Borntraeger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox