Displaying 4 results from an estimated 4 matches for "fence2".
Did you mean:
fence
2011 Nov 25
0
Failed to start a "virtual machine " service on RHCS in CentOS 6
...t; votes="1">
<fence>
<method name="fence1">
<device name="fence1"/>
</method>
</fence>
</clusternode>
<clusternode name="clusterB.RHCS" nodeid="2" votes="1">
<fence>
<method name="fence2">
<device name="fence2"/>
</method>
</fence>
</clusternode>
</clusternodes>
<cman expected_votes="1" two_node="1"/>
<fencedevices>
<fencedevice agent="fence_scsi" name="fence1" nodename="clus...
2017 Feb 28
2
[PATCH 0/2] gpu: drm: Use pr_cont and neaten logging
Joe Perches (2):
drm: Use pr_cont where appropriate
gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
drivers/gpu/drm/amd/amdgpu/amdgpu.h | 3 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c | 4 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.c | 4 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 +-
2017 Feb 28
0
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...evice *rdev, int flag)
out_cleanup:
kfree(gtt_obj);
if (r) {
- printk(KERN_WARNING "Error while testing BO move.\n");
+ pr_warn("Error while testing BO move\n");
}
}
@@ -394,7 +394,7 @@ void radeon_test_ring_sync(struct radeon_device *rdev,
radeon_fence_unref(&fence2);
if (r)
- printk(KERN_WARNING "Error while testing ring sync (%d).\n", r);
+ pr_warn("Error while testing ring sync (%d)\n", r);
}
static void radeon_test_ring_sync2(struct radeon_device *rdev,
@@ -504,7 +504,7 @@ static void radeon_test_ring_sync2(struct radeon_devic...
2017 Feb 28
8
[PATCH 2/2] gpu: drm: Convert printk(KERN_<LEVEL> to pr_<level>
...free(gtt_obj);
> if (r) {
> - printk(KERN_WARNING "Error while testing BO move.\n");
> + pr_warn("Error while testing BO move\n");
> }
> }
>
> @@ -394,7 +394,7 @@ void radeon_test_ring_sync(struct radeon_device *rdev,
> radeon_fence_unref(&fence2);
>
> if (r)
> - printk(KERN_WARNING "Error while testing ring sync (%d).\n", r);
> + pr_warn("Error while testing ring sync (%d)\n", r);
> }
>
> static void radeon_test_ring_sync2(struct radeon_device *rdev,
> @@ -504,7 +504,7 @@ static void ra...